You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ga...@apache.org on 2023/06/01 05:10:06 UTC

[doris] branch master updated: [feature](decimal)support cast rounding half up and div precision increment in decimalv3. (#19811)

This is an automated email from the ASF dual-hosted git repository.

gabriellee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 519f01133a [feature](decimal)support  cast rounding half up  and div precision increment in decimalv3. (#19811)
519f01133a is described below

commit 519f01133a063f44fae2f6121e4d5e26faf1b5ac
Author: Mryange <59...@users.noreply.github.com>
AuthorDate: Thu Jun 1 13:09:58 2023 +0800

    [feature](decimal)support  cast rounding half up  and div precision increment in decimalv3. (#19811)
---
 be/src/vec/data_types/data_type_decimal.h          |    2 +-
 docs/en/docs/admin-manual/config/fe-config.md      |   10 +-
 docs/en/docs/sql-manual/sql-functions/cast.md      |    8 +
 .../sql-reference/Data-Types/DECIMALV3.md          |    7 +-
 docs/zh-CN/docs/admin-manual/config/fe-config.md   |    9 +-
 docs/zh-CN/docs/sql-manual/sql-functions/cast.md   |   10 +
 .../sql-reference/Data-Types/DECIMALV3.md          |    7 +-
 .../main/java/org/apache/doris/common/Config.java  |    8 +
 .../org/apache/doris/analysis/ArithmeticExpr.java  |   22 +-
 .../org/apache/doris/analysis/DecimalLiteral.java  |    2 +-
 .../doris/nereids/trees/expressions/Divide.java    |   11 +-
 .../expressions/literal/DecimalV3Literal.java      |    3 +-
 .../doris/nereids/util/TypeCoercionUtils.java      |    2 +-
 .../apache/doris/planner/ConstantExpressTest.java  |    4 -
 .../test_cast_as_decimalv3.out}                    |   12 +-
 .../data/correctness_p0/test_select_decimal.out    |    6 +-
 regression-test/data/cte_reuse/q11.out             |    2 +-
 regression-test/data/cte_reuse/q31.out             |    4 +-
 regression-test/data/cte_reuse/q4.out              |   28 +-
 regression-test/data/cte_reuse/q74.out             |    2 +-
 .../datatype_p0/decimalv3/test_decimalv3_where.out |    2 +-
 .../decimalv3/test_uniq_tab_decimalv3.out          |   40 +-
 .../tpch_sf0.1_p1}/sql/q14.out                     |    2 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q02.out  | 5026 ++++++++++----------
 .../inverted_index_p1/tpcds_sf1_index/sql/q11.out  |    1 +
 .../inverted_index_p1/tpcds_sf1_index/sql/q12.out  |  200 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q20.out  |  200 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q21.out  |    8 +-
 .../tpcds_sf1_index/sql/q23_1.out                  |    2 +-
 .../tpcds_sf1_index/sql/q23_2.out                  |   50 -
 .../inverted_index_p1/tpcds_sf1_index/sql/q31.out  |  102 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q36.out  |  200 +-
 .../tpcds_sf1_index/sql/q39_1.out                  |  140 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q49.out  |   64 +-
 .../tpcds_sf1_index/sql/q49_rewrite.out            |   64 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q58.out  |    6 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q59.out  |  200 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q61.out  |    2 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q66.out  |    8 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q78.out  |   66 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q83.out  |   42 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q90.out  |    2 +-
 .../inverted_index_p1/tpcds_sf1_index/sql/q98.out  | 5018 +++++++++----------
 regression-test/data/nereids_arith_p0/date.out     |  384 +-
 regression-test/data/nereids_arith_p0/decimal.out  |  904 ++--
 regression-test/data/nereids_arith_p0/integer.out  |  576 +--
 .../operator/test_arithmetic_operators.out         |   54 +-
 .../nereids_p0/operator/test_logical_operators.out |   12 +-
 .../test_arithmetic_operators.out                  |   54 +-
 .../nereids_tpcds_shape_sf100_p0/shape/query11.out |    2 +-
 .../nereids_tpcds_shape_sf100_p0/shape/query21.out |    2 +-
 .../nereids_tpcds_shape_sf100_p0/shape/query23.out |    2 +-
 .../nereids_tpcds_shape_sf100_p0/shape/query31.out |    4 +-
 .../nereids_tpcds_shape_sf100_p0/shape/query4.out  |   10 +-
 regression-test/data/nereids_tpch_p0/tpch/q14.out  |    4 +-
 regression-test/data/nereids_tpch_p0/tpch/q8.out   |    8 +-
 .../array_functions/test_array_functions.out       |    6 +-
 .../array_functions/test_array_with_scale_type.out |   56 +-
 .../data/query_p0/stats/query_stats_test.out       |   19 +-
 .../data/query_p0/union/test_union_decimal_agg.out |    2 +-
 regression-test/data/tpcds_sf1_p1/sql/q02.out      | 2548 +++++-----
 regression-test/data/tpcds_sf1_p1/sql/q12.out      |  200 +-
 regression-test/data/tpcds_sf1_p1/sql/q14_1.out    |   14 +-
 regression-test/data/tpcds_sf1_p1/sql/q20.out      |  200 +-
 regression-test/data/tpcds_sf1_p1/sql/q23_1.out    |    2 +-
 regression-test/data/tpcds_sf1_p1/sql/q23_2.out    |   50 -
 regression-test/data/tpcds_sf1_p1/sql/q31.out      |  102 +-
 regression-test/data/tpcds_sf1_p1/sql/q36.out      |  200 +-
 regression-test/data/tpcds_sf1_p1/sql/q39_1.out    |  108 +-
 regression-test/data/tpcds_sf1_p1/sql/q49.out      |   64 +-
 .../data/tpcds_sf1_p1/sql/q49_rewrite.out          |   64 +-
 regression-test/data/tpcds_sf1_p1/sql/q58.out      |    6 +-
 regression-test/data/tpcds_sf1_p1/sql/q59.out      |  200 +-
 regression-test/data/tpcds_sf1_p1/sql/q61.out      |    2 +-
 regression-test/data/tpcds_sf1_p1/sql/q66.out      |    8 +-
 .../tpcds_sf1_p1/sql/q67_ignore_temporarily.out    |   58 +-
 regression-test/data/tpcds_sf1_p1/sql/q75.out      |   30 +-
 regression-test/data/tpcds_sf1_p1/sql/q83.out      |   42 +-
 regression-test/data/tpcds_sf1_p1/sql/q90.out      |    2 +-
 regression-test/data/tpcds_sf1_p1/sql/q98.out      | 5018 +++++++++----------
 .../data/tpcds_sf1_unique_p1/sql/q02.out           | 5026 ++++++++++----------
 .../data/tpcds_sf1_unique_p1/sql/q11.out           |    1 +
 .../data/tpcds_sf1_unique_p1/sql/q12.out           |  200 +-
 .../data/tpcds_sf1_unique_p1/sql/q20.out           |  200 +-
 .../data/tpcds_sf1_unique_p1/sql/q21.out           |    8 +-
 .../data/tpcds_sf1_unique_p1/sql/q23_2.out         |   50 -
 .../data/tpcds_sf1_unique_p1/sql/q31.out           |  102 +-
 .../data/tpcds_sf1_unique_p1/sql/q36.out           |  200 +-
 .../data/tpcds_sf1_unique_p1/sql/q39_2.out         |    2 +-
 .../data/tpcds_sf1_unique_p1/sql/q49.out           |   64 +-
 .../data/tpcds_sf1_unique_p1/sql/q49_rewrite.out   |   64 +-
 .../data/tpcds_sf1_unique_p1/sql/q58.out           |    6 +-
 .../data/tpcds_sf1_unique_p1/sql/q59.out           |  200 +-
 .../data/tpcds_sf1_unique_p1/sql/q61.out           |    2 +-
 .../data/tpcds_sf1_unique_p1/sql/q66.out           |    8 +-
 .../data/tpcds_sf1_unique_p1/sql/q83.out           |   42 +-
 .../data/tpcds_sf1_unique_p1/sql/q90.out           |    2 +-
 .../data/tpcds_sf1_unique_p1/sql/q98.out           | 5018 +++++++++----------
 regression-test/data/tpch_sf0.1_p1/sql/q08.out     |    4 +-
 regression-test/data/tpch_sf0.1_p1/sql/q14.out     |    2 +-
 regression-test/data/tpch_sf0.1_p1/sql/q17.out     |    2 +-
 .../data/tpch_sf0.1_unique_p1/sql/q08.out          |    4 +-
 .../data/tpch_sf0.1_unique_p1/sql/q14.out          |    2 +-
 .../data/tpch_sf0.1_unique_p1/sql/q17.out          |    2 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q02.out       |   12 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q03.out       |    6 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q05.out       |    2 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q08.out       |    4 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q09.out       |   34 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q10.out       |    6 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q11.out       | 1264 ++---
 .../data/tpch_unique_sql_zstd_p0/sql/q14.out       |    2 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q17.out       |    2 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q18.out       |   10 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q19.out       |    2 +-
 .../data/tpch_unique_sql_zstd_p0/sql/q22.out       |    2 +-
 .../correctness/test_cast_as_decimalv3.groovy      |   50 +
 .../sql_functions/test_arith_functions.groovy      |    2 +-
 .../suites/query_p0/stats/query_stats_test.groovy  |    3 +-
 119 files changed, 17591 insertions(+), 17642 deletions(-)

diff --git a/be/src/vec/data_types/data_type_decimal.h b/be/src/vec/data_types/data_type_decimal.h
index 43a9718651..1cbd08d984 100644
--- a/be/src/vec/data_types/data_type_decimal.h
+++ b/be/src/vec/data_types/data_type_decimal.h
@@ -476,7 +476,7 @@ void convert_decimal_cols(
         MaxNativeType multiplier =
                 DataTypeDecimal<MaxFieldType>::get_scale_multiplier(scale_from - scale_to);
         for (size_t i = 0; i < sz; i++) {
-            vec_to[i] = vec_from[i] / multiplier;
+            vec_to[i] = (vec_from[i] + multiplier / 2) / multiplier;
         }
     }
 
diff --git a/docs/en/docs/admin-manual/config/fe-config.md b/docs/en/docs/admin-manual/config/fe-config.md
index f25d233de6..857141704f 100644
--- a/docs/en/docs/admin-manual/config/fe-config.md
+++ b/docs/en/docs/admin-manual/config/fe-config.md
@@ -2726,9 +2726,17 @@ Controls whether to enable query hit statistics. The default is false.
 
 #### `max_instance_num`
 
-<version since="1.2.4"></version>
+<version since="dev"></version>
 
 Default: 128
 
 This is used to limit the setting of "parallel_fragment_exec_instance_num".
 "parallel_fragment_exec_instance_num" cannot be set higher than "max_instance_num".
+
+#### `div_precision_increment`
+<version since="dev"></version>
+
+Default: 4
+
+This variable indicates the number of digits by which to increase the scale of the result of 
+division operations performed with the `/` operator. 
diff --git a/docs/en/docs/sql-manual/sql-functions/cast.md b/docs/en/docs/sql-manual/sql-functions/cast.md
index 2de5f8463e..d4b8484f12 100644
--- a/docs/en/docs/sql-manual/sql-functions/cast.md
+++ b/docs/en/docs/sql-manual/sql-functions/cast.md
@@ -66,6 +66,14 @@ mysql> select cast(cast ("11.2" as double) as bigint);
 |                                     11 |
 +----------------------------------------+
 1 row in set (0.00 sec)
+
+For the DECIMALV3 type, the cast operation performs rounding half up.
+mysql> select cast (1.115 as DECIMALV3(16, 2));
++---------------------------------+
+| cast(1.115 as DECIMALV3(16, 2)) |
++---------------------------------+
+|                            1.12 |
++---------------------------------+
 ```
 ### keywords
 CAST
diff --git a/docs/en/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md b/docs/en/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md
index 09599a0ecd..21bbfa46b4 100644
--- a/docs/en/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md
+++ b/docs/en/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md
@@ -49,8 +49,11 @@ DECIMALV3 has a very complex set of type inference rules. For different expressi
 
 * Plus / Minus: DECIMALV3(a, b) + DECIMALV3(x, y) -> DECIMALV3(max(a - b, x - y) + max(b, y) + 1, max(b, y)).
 * Multiply: DECIMALV3(a, b) + DECIMALV3(x, y) -> DECIMALV3(a + x, b + y).
-* Divide: DECIMALV3(a, b) + DECIMALV3(x, y) -> DECIMALV3(a + y, b).
-
+* Divide: DECIMALV3(p1, s1) + DECIMALV3(p2, s2) -> DECIMALV3(p1 + s2 + div_precision_increment, s1 + div_precision_increment).div_precision_increment default 4.
+It is worth noting that the process of division calculation is as follows:
+DECIMALV3(p1, s1) / DECIMALV3(p2, s2) is first converted to DECIMALV3(p1 + s2 + div_precision_increment, s1 + s2) / DECIMALV3(p2, s2) and then the calculation is performed. Therefore, it is possible that DECIMALV3(p1 + s2 + div_precision_increment, s1 + div_precision_increment) satisfies the range of DECIMALV3, 
+but due to the conversion to DECIMALV3(p1 + s2 + div_precision_increment, s1 + s2), 
+it exceeds the range. Currently, Doris handles this by converting it to Double for calculation.
 #### Aggregation functions
 
 * SUM / MULTI_DISTINCT_SUM: SUM(DECIMALV3(a, b)) -> DECIMALV3(38, b).
diff --git a/docs/zh-CN/docs/admin-manual/config/fe-config.md b/docs/zh-CN/docs/admin-manual/config/fe-config.md
index a0b6ff809d..a4e41139cf 100644
--- a/docs/zh-CN/docs/admin-manual/config/fe-config.md
+++ b/docs/zh-CN/docs/admin-manual/config/fe-config.md
@@ -2716,7 +2716,7 @@ show data (其他用法:HELP SHOW DATA)
 
 #### `max_instance_num`
 
-<version since="1.2.4"></version>
+<version since="dev"></version>
 
 默认值:128
 
@@ -2733,3 +2733,10 @@ show data (其他用法:HELP SHOW DATA)
 是否为 Master FE 节点独有的配置项:false
 
 控制是否启用查询命中率统计。默认为 false。
+
+#### `div_precision_increment`
+<version since="dev"></version>
+
+默认值:4
+
+此变量表示增加与/运算符执行的除法操作结果规模的位数。默认为4。
diff --git a/docs/zh-CN/docs/sql-manual/sql-functions/cast.md b/docs/zh-CN/docs/sql-manual/sql-functions/cast.md
index 2404418850..d6e340e254 100644
--- a/docs/zh-CN/docs/sql-manual/sql-functions/cast.md
+++ b/docs/zh-CN/docs/sql-manual/sql-functions/cast.md
@@ -66,5 +66,15 @@ mysql> select cast(cast ("11.2" as double) as bigint);
 +----------------------------------------+
 1 row in set (0.00 sec)
 ```
+
+对于DECIMALV3类型,cast会进行四舍五入
+```
+mysql> select cast (1.115 as DECIMALV3(16, 2));
++---------------------------------+
+| cast(1.115 as DECIMALV3(16, 2)) |
++---------------------------------+
+|                            1.12 |
++---------------------------------+
+```
 ### keywords
 CAST
diff --git a/docs/zh-CN/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md b/docs/zh-CN/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md
index bb4e6b2abf..61fa0fc9f4 100644
--- a/docs/zh-CN/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md
+++ b/docs/zh-CN/docs/sql-manual/sql-reference/Data-Types/DECIMALV3.md
@@ -47,7 +47,12 @@ DECIMALV3有一套很复杂的类型推演规则,针对不同的表达式,
 
 * 加法 / 减法:DECIMALV3(a, b) + DECIMALV3(x, y) -> DECIMALV3(max(a - b, x - y) + max(b, y) + 1, max(b, y))。
 * 乘法:DECIMALV3(a, b) + DECIMALV3(x, y) -> DECIMALV3(a + x, b + y)。
-* 除法:DECIMALV3(a, b) + DECIMALV3(x, y) -> DECIMALV3(a + y, b)。
+* 除法:DECIMALV3(p1, s1) + DECIMALV3(p2, s2) -> DECIMALV3(p1 + s2 + div_precision_increment, s1 + div_precision_increment)。div_precision_increment 默认为4。
+值得注意的是,除法计算的过程是
+DECIMALV3(p1, s1) / DECIMALV3(p2, s2) 先转换成 DECIMALV3(p1 + s2 + div_precision_increment, s1 + s2 ) /  DECIMALV3(p2, s2)  然后再进行计算,所以可能会出现
+DECIMALV3(p1 + s2 + div_precision_increment, s1 + div_precision_increment) 是满足DECIMALV3的范围,但是由于先转换成了DECIMALV3(p1 + s2 + div_precision_increment, s1 + s2 )
+导致超出范围,目前Doris的处理是转成Double进行计算
+
 
 #### 聚合运算
 
diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
index 602341afaa..919218a249 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
@@ -1954,6 +1954,14 @@ public class Config extends ConfigBase {
     @ConfField(mutable = true)
     public static int max_instance_num = 128;
 
+    /*
+     * This variable indicates the number of digits by which to increase the scale
+     * of the result of division operations performed with the `/` operator. The
+     * default value is 4, and it is currently only used for the DECIMALV3 type.
+     */
+    @ConfField(mutable = true)
+    public static int div_precision_increment = 4;
+
     /**
      * This config used for export/outfile.
      * Whether delete all files in the directory specified by export/outfile.
diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/ArithmeticExpr.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/ArithmeticExpr.java
index 4bf92c6c4b..3df32f0ae9 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/ArithmeticExpr.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/ArithmeticExpr.java
@@ -28,6 +28,7 @@ import org.apache.doris.catalog.ScalarFunction;
 import org.apache.doris.catalog.ScalarType;
 import org.apache.doris.catalog.Type;
 import org.apache.doris.common.AnalysisException;
+import org.apache.doris.common.Config;
 import org.apache.doris.common.io.Text;
 import org.apache.doris.common.util.VectorizedUtil;
 import org.apache.doris.thrift.TExprNode;
@@ -477,8 +478,8 @@ public class ArithmeticExpr extends Expr {
                     scale = t1Scale + t2Scale;
                     precision = t1Precision + t2Precision;
                 } else if (op == Operator.DIVIDE) {
-                    precision = t1TargetType.getPrecision() + t2Scale;
-                    scale = t1Scale;
+                    precision = t1TargetType.getPrecision() + t2Scale + Config.div_precision_increment;
+                    scale = t1Scale + Config.div_precision_increment;
                 } else if (op == Operator.ADD || op == Operator.SUBTRACT) {
                     // target type: DECIMALV3(max(widthOfIntPart1, widthOfIntPart2) + max(scale1, scale2) + 1,
                     // max(scale1, scale2))
@@ -504,13 +505,17 @@ public class ArithmeticExpr extends Expr {
                     if (((ScalarType) type).getScalarScale() != ((ScalarType) children.get(1).type).getScalarScale()) {
                         castChild(type, 1);
                     }
-                } else if (op == Operator.DIVIDE && (t2Scale != 0) && t1TargetType.isDecimalV3()) {
-                    int targetScale = t1Scale + t2Scale;
-                    if (precision < targetScale) {
+                } else if (op == Operator.DIVIDE && t1TargetType.isDecimalV3()) {
+                    int leftPrecision = t1Precision + t2Scale + Config.div_precision_increment;
+                    int leftScale = t1Scale + t2Scale + Config.div_precision_increment;
+                    if (leftPrecision > ScalarType.MAX_DECIMAL128_PRECISION) {
+                        leftPrecision = ScalarType.MAX_DECIMAL128_PRECISION;
+                    }
+                    if (leftPrecision < leftScale) {
                         type = castBinaryOp(Type.DOUBLE);
                         break;
                     }
-                    castChild(ScalarType.createDecimalV3Type(precision, targetScale), 0);
+                    castChild(ScalarType.createDecimalV3Type(leftPrecision, leftScale), 0);
                 } else if (op == Operator.MOD) {
                     // TODO use max int part + max scale of two operands as result type
                     // because BE require the result and operands types are the exact the same decimalv3 type
@@ -543,11 +548,6 @@ public class ArithmeticExpr extends Expr {
     @Override
     public void analyzeImpl(Analyzer analyzer) throws AnalysisException {
         if (VectorizedUtil.isVectorized()) {
-            for (Expr child : children) {
-                if (child instanceof DecimalLiteral && child.getType().isDecimalV3()) {
-                    ((DecimalLiteral) child).tryToReduceType();
-                }
-            }
             // bitnot is the only unary op, deal with it here
             if (op == Operator.BITNOT) {
                 Type t = getChild(0).getType();
diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java
index 9040798b76..81fe2bf755 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java
@@ -82,7 +82,7 @@ public class DecimalLiteral extends LiteralExpr {
             throw new AnalysisException("Invalid floating-point literal: " + value, e);
         }
         if (scale >= 0) {
-            v = v.setScale(scale, RoundingMode.DOWN);
+            v = v.setScale(scale, RoundingMode.HALF_UP);
         }
         init(v);
         analysisDone();
diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/Divide.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/Divide.java
index e49ecf151e..4616b2686b 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/Divide.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/Divide.java
@@ -18,6 +18,7 @@
 package org.apache.doris.nereids.trees.expressions;
 
 import org.apache.doris.analysis.ArithmeticExpr.Operator;
+import org.apache.doris.common.Config;
 import org.apache.doris.nereids.exceptions.UnboundException;
 import org.apache.doris.nereids.trees.expressions.functions.AlwaysNullable;
 import org.apache.doris.nereids.trees.expressions.visitor.ExpressionVisitor;
@@ -61,15 +62,17 @@ public class Divide extends BinaryArithmetic implements AlwaysNullable {
 
     @Override
     public DecimalV3Type getDataTypeForDecimalV3(DecimalV3Type t1, DecimalV3Type t2) {
-        int retPercision = t1.getPrecision() + t2.getScale();
-        int retScale = t1.getScale();
+        int retPercision = t1.getPrecision() + t2.getScale() + Config.div_precision_increment;
+        int retScale = t1.getScale() + t2.getScale()
+                + Config.div_precision_increment;
         if (retPercision > DecimalV3Type.MAX_DECIMAL128_PRECISION) {
             retPercision = DecimalV3Type.MAX_DECIMAL128_PRECISION;
         }
+        int targetPercision = retPercision;
         int targetScale = t1.getScale() + t2.getScale();
-        Preconditions.checkState(retPercision >= targetScale,
+        Preconditions.checkState(targetPercision >= targetScale,
                 "target scale " + targetScale + " larger than precision " + retPercision
-                + " in Divide return type");
+                        + " in Divide return type");
         Preconditions.checkState(retPercision >= retScale,
                 "scale " + retScale + " larger than precision " + retPercision
                         + " in Divide return type");
diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/literal/DecimalV3Literal.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/literal/DecimalV3Literal.java
index c6c28fa3e9..748c44cd09 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/literal/DecimalV3Literal.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/literal/DecimalV3Literal.java
@@ -40,7 +40,8 @@ public class DecimalV3Literal extends Literal {
     public DecimalV3Literal(DecimalV3Type dataType, BigDecimal value) {
         super(DecimalV3Type.createDecimalV3Type(dataType.getPrecision(), dataType.getScale()));
         Objects.requireNonNull(value, "value not be null");
-        BigDecimal adjustedValue = value.scale() < 0 ? value : value.setScale(dataType.getScale(), RoundingMode.DOWN);
+        BigDecimal adjustedValue = value.scale() < 0 ? value
+                : value.setScale(dataType.getScale(), RoundingMode.HALF_UP);
         this.value = Objects.requireNonNull(adjustedValue);
     }
 
diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java
index 4f0594d829..24f1131096 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java
@@ -466,7 +466,7 @@ public class TypeCoercionUtils {
                 return castChildren(divide, left, right, DoubleType.INSTANCE);
             }
             return divide.withChildren(castIfNotSameType(left,
-                    DecimalV3Type.createDecimalV3Type(retType.getPrecision(), dt1.getScale() + dt2.getScale())),
+                    DecimalV3Type.createDecimalV3Type(retType.getPrecision(), retType.getScale())),
                     castIfNotSameType(right, dt2));
         } else if (t1.isDecimalV2Type() || t2.isDecimalV2Type()) {
             commonType = DecimalV2Type.SYSTEM_DEFAULT;
diff --git a/fe/fe-core/src/test/java/org/apache/doris/planner/ConstantExpressTest.java b/fe/fe-core/src/test/java/org/apache/doris/planner/ConstantExpressTest.java
index 793e5af2f2..96e4b7302c 100644
--- a/fe/fe-core/src/test/java/org/apache/doris/planner/ConstantExpressTest.java
+++ b/fe/fe-core/src/test/java/org/apache/doris/planner/ConstantExpressTest.java
@@ -160,10 +160,6 @@ public class ConstantExpressTest {
         testConstantExpressResult(
                 "select 1 * 10.0;",
                 "10");
-
-        testConstantExpressResult(
-                "select 1 / 10.0;",
-                "0.1");
     }
 
     @Test
diff --git a/regression-test/data/correctness_p0/test_select_decimal.out b/regression-test/data/correctness/test_cast_as_decimalv3.out
similarity index 58%
copy from regression-test/data/correctness_p0/test_select_decimal.out
copy to regression-test/data/correctness/test_cast_as_decimalv3.out
index 92040ea832..2e7ab315b3 100644
--- a/regression-test/data/correctness_p0/test_select_decimal.out
+++ b/regression-test/data/correctness/test_cast_as_decimalv3.out
@@ -1,13 +1,9 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !select1 --
-19888.89
+0.333333333333333333333333
+0.250000000000000000000000
+0.200000000000000000000000
 
 -- !select2 --
-19888.99
-
--- !select2 --
-19888.66
-
--- !select2 --
-19888.44
+0.333333
 
diff --git a/regression-test/data/correctness_p0/test_select_decimal.out b/regression-test/data/correctness_p0/test_select_decimal.out
index 92040ea832..1b0f41cf38 100644
--- a/regression-test/data/correctness_p0/test_select_decimal.out
+++ b/regression-test/data/correctness_p0/test_select_decimal.out
@@ -1,12 +1,12 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !select1 --
-19888.89
+19888.90
 
 -- !select2 --
-19888.99
+19889.00
 
 -- !select2 --
-19888.66
+19888.67
 
 -- !select2 --
 19888.44
diff --git a/regression-test/data/cte_reuse/q11.out b/regression-test/data/cte_reuse/q11.out
index 9af5dc25a0..6965148ee4 100644
--- a/regression-test/data/cte_reuse/q11.out
+++ b/regression-test/data/cte_reuse/q11.out
@@ -44,7 +44,7 @@ CteAnchor[cteId= ( CTEId#4=] )
 ----PhysicalDistribute
 ------PhysicalTopN
 --------PhysicalProject
-----------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_firstyear.customer_id)(CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE 0.00 END > CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE 0.00 END)
+----------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_firstyear.customer_id)(CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 8)) / year_total) ELSE 0.000000 END > CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 8)) / year_total) ELSE 0.000000 END)
 ------------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_secyear.customer_id)
 --------------PhysicalProject
 ----------------filter((t_w_secyear.dyear = 2002)(t_w_secyear.sale_type = 'w'))
diff --git a/regression-test/data/cte_reuse/q31.out b/regression-test/data/cte_reuse/q31.out
index d387c45e3e..5b05b4d1b3 100644
--- a/regression-test/data/cte_reuse/q31.out
+++ b/regression-test/data/cte_reuse/q31.out
@@ -42,7 +42,7 @@ CteAnchor[cteId= ( CTEId#6=] )
 ------PhysicalDistribute
 --------PhysicalQuickSort
 ----------PhysicalProject
-------------hashJoin[INNER_JOIN](ws1.ca_county = ws3.ca_county)(CASE WHEN (web_sales > 0.00) THEN (cast(cast(web_sales as DECIMAL(21, 3)) as DECIMALV3(23, 5)) / web_sales) ELSE NULL END > CASE WHEN (store_sales > 0.00) THEN (cast(cast(store_sales as DECIMAL(21, 3)) as DECIMALV3(23, 5)) / store_sales) ELSE NULL END)
+------------hashJoin[INNER_JOIN](ws1.ca_county = ws3.ca_county)(CASE WHEN (web_sales > 0.00) THEN (cast(cast(web_sales as DECIMAL(21, 3)) as DECIMALV3(27, 9)) / web_sales) ELSE NULL END > CASE WHEN (store_sales > 0.00) THEN (cast(cast(store_sales as DECIMAL(21, 3)) as DECIMALV3(27, 9)) / store_sales) ELSE NULL END)
 --------------PhysicalProject
 ----------------filter((ws3.d_year = 2000)(ws3.d_qoy = 3))
 ------------------CteConsumer[cteId= ( CTEId#7=] )
@@ -53,7 +53,7 @@ CteAnchor[cteId= ( CTEId#6=] )
 ----------------------filter((ss3.d_year = 2000)(ss3.d_qoy = 3))
 ------------------------CteConsumer[cteId= ( CTEId#6=] )
 --------------------PhysicalDistribute
-----------------------hashJoin[INNER_JOIN](ss1.ca_county = ss2.ca_county)(CASE WHEN (web_sales > 0.00) THEN (cast(cast(web_sales as DECIMAL(21, 3)) as DECIMALV3(23, 5)) / web_sales) ELSE NULL END > CASE WHEN (store_sales > 0.00) THEN (cast(cast(store_sales as DECIMAL(21, 3)) as DECIMALV3(23, 5)) / store_sales) ELSE NULL END)
+----------------------hashJoin[INNER_JOIN](ss1.ca_county = ss2.ca_county)(CASE WHEN (web_sales > 0.00) THEN (cast(cast(web_sales as DECIMAL(21, 3)) as DECIMALV3(27, 9)) / web_sales) ELSE NULL END > CASE WHEN (store_sales > 0.00) THEN (cast(cast(store_sales as DECIMAL(21, 3)) as DECIMALV3(27, 9)) / store_sales) ELSE NULL END)
 ------------------------PhysicalProject
 --------------------------filter((ss2.d_year = 2000)(ss2.d_qoy = 2))
 ----------------------------CteConsumer[cteId= ( CTEId#6=] )
diff --git a/regression-test/data/cte_reuse/q4.out b/regression-test/data/cte_reuse/q4.out
index 4636c120c8..6f72ca89f4 100644
--- a/regression-test/data/cte_reuse/q4.out
+++ b/regression-test/data/cte_reuse/q4.out
@@ -13,15 +13,15 @@ CteAnchor[cteId= ( CTEId#6=] )
 --------------------PhysicalProject
 ----------------------hashJoin[INNER_JOIN](customer.c_customer_sk = store_sales.ss_customer_sk)
 ------------------------PhysicalProject
---------------------------filter(((('s' = 'c') OR ('s' = 's')) OR ('s' = 'w')))
+--------------------------filter(((('s' = 's') OR ('s' = 'c')) OR ('s' = 'w')))
 ----------------------------PhysicalOlapScan[store_sales]
 ------------------------PhysicalDistribute
 --------------------------PhysicalProject
-----------------------------filter(((('s' = 'c') OR ('s' = 's')) OR ('s' = 'w')))
+----------------------------filter(((('s' = 's') OR ('s' = 'c')) OR ('s' = 'w')))
 ------------------------------PhysicalOlapScan[customer]
 --------------------PhysicalDistribute
 ----------------------PhysicalProject
-------------------------filter(((date_dim.d_year = 2001) OR (date_dim.d_year = 2002))((('s' = 'c') OR ('s' = 's')) OR ('s' = 'w')))
+------------------------filter(((date_dim.d_year = 2001) OR (date_dim.d_year = 2002))((('s' = 's') OR ('s' = 'c')) OR ('s' = 'w')))
 --------------------------PhysicalOlapScan[date_dim]
 --------PhysicalProject
 ----------hashAgg[GLOBAL]
@@ -32,15 +32,15 @@ CteAnchor[cteId= ( CTEId#6=] )
 --------------------PhysicalProject
 ----------------------hashJoin[INNER_JOIN](customer.c_customer_sk = catalog_sales.cs_bill_customer_sk)
 ------------------------PhysicalProject
---------------------------filter(((('c' = 'c') OR ('c' = 's')) OR ('c' = 'w')))
+--------------------------filter(((('c' = 's') OR ('c' = 'c')) OR ('c' = 'w')))
 ----------------------------PhysicalOlapScan[catalog_sales]
 ------------------------PhysicalDistribute
 --------------------------PhysicalProject
-----------------------------filter(((('c' = 'c') OR ('c' = 's')) OR ('c' = 'w')))
+----------------------------filter(((('c' = 's') OR ('c' = 'c')) OR ('c' = 'w')))
 ------------------------------PhysicalOlapScan[customer]
 --------------------PhysicalDistribute
 ----------------------PhysicalProject
-------------------------filter(((date_dim.d_year = 2001) OR (date_dim.d_year = 2002))((('c' = 'c') OR ('c' = 's')) OR ('c' = 'w')))
+------------------------filter(((date_dim.d_year = 2001) OR (date_dim.d_year = 2002))((('c' = 's') OR ('c' = 'c')) OR ('c' = 'w')))
 --------------------------PhysicalOlapScan[date_dim]
 --------PhysicalProject
 ----------hashAgg[GLOBAL]
@@ -51,23 +51,23 @@ CteAnchor[cteId= ( CTEId#6=] )
 --------------------PhysicalProject
 ----------------------hashJoin[INNER_JOIN](customer.c_customer_sk = web_sales.ws_bill_customer_sk)
 ------------------------PhysicalProject
---------------------------filter(((('w' = 'c') OR ('w' = 's')) OR ('w' = 'w')))
+--------------------------filter(((('w' = 's') OR ('w' = 'c')) OR ('w' = 'w')))
 ----------------------------PhysicalOlapScan[web_sales]
 ------------------------PhysicalDistribute
 --------------------------PhysicalProject
-----------------------------filter(((('w' = 'c') OR ('w' = 's')) OR ('w' = 'w')))
+----------------------------filter(((('w' = 's') OR ('w' = 'c')) OR ('w' = 'w')))
 ------------------------------PhysicalOlapScan[customer]
 --------------------PhysicalDistribute
 ----------------------PhysicalProject
-------------------------filter(((date_dim.d_year = 2001) OR (date_dim.d_year = 2002))((('w' = 'c') OR ('w' = 's')) OR ('w' = 'w')))
+------------------------filter(((date_dim.d_year = 2001) OR (date_dim.d_year = 2002))((('w' = 's') OR ('w' = 'c')) OR ('w' = 'w')))
 --------------------------PhysicalOlapScan[date_dim]
 --PhysicalTopN
 ----PhysicalDistribute
 ------PhysicalTopN
 --------PhysicalProject
-----------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_firstyear.customer_id)(CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE NULL END > CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE NULL END)
+----------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_firstyear.customer_id)(CASE WHEN (year_total > 0.000000) THEN (cast(year_total as DECIMALV3(38, 16)) / year_total) ELSE NULL END > CASE WHEN (year_total > 0.000000) THEN (cast(year_total as DECIMALV3(38, 16)) / year_total) ELSE NULL END)
 ------------PhysicalProject
---------------filter((t_w_firstyear.dyear = 2001)(t_w_firstyear.year_total > 0.00)(t_w_firstyear.sale_type = 'w'))
+--------------filter((t_w_firstyear.dyear = 2001)(t_w_firstyear.sale_type = 'w')(t_w_firstyear.year_total > 0.000000))
 ----------------CteConsumer[cteId= ( CTEId#6=] )
 ------------PhysicalDistribute
 --------------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_secyear.customer_id)
@@ -76,7 +76,7 @@ CteAnchor[cteId= ( CTEId#6=] )
 --------------------CteConsumer[cteId= ( CTEId#6=] )
 ----------------PhysicalDistribute
 ------------------PhysicalProject
---------------------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_c_firstyear.customer_id)(CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE NULL END > CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE NULL END)
+--------------------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_c_firstyear.customer_id)(CASE WHEN (year_total > 0.000000) THEN (cast(year_total as DECIMALV3(38, 16)) / year_total) ELSE NULL END > CASE WHEN (year_total > 0.000000) THEN (cast(year_total as DECIMALV3(38, 16)) / year_total) ELSE NULL END)
 ----------------------hashJoin[INNER_JOIN](t_s_secyear.customer_id = t_s_firstyear.customer_id)
 ------------------------PhysicalProject
 --------------------------filter((t_s_secyear.sale_type = 's')(t_s_secyear.dyear = 2002))
@@ -88,10 +88,10 @@ CteAnchor[cteId= ( CTEId#6=] )
 --------------------------------CteConsumer[cteId= ( CTEId#6=] )
 ----------------------------PhysicalDistribute
 ------------------------------PhysicalProject
---------------------------------filter((t_s_firstyear.year_total > 0.00)(t_s_firstyear.dyear = 2001)(t_s_firstyear.sale_type = 's'))
+--------------------------------filter((t_s_firstyear.year_total > 0.000000)(t_s_firstyear.dyear = 2001)(t_s_firstyear.sale_type = 's'))
 ----------------------------------CteConsumer[cteId= ( CTEId#6=] )
 ----------------------PhysicalDistribute
 ------------------------PhysicalProject
---------------------------filter((t_c_firstyear.sale_type = 'c')(t_c_firstyear.dyear = 2001)(t_c_firstyear.year_total > 0.00))
+--------------------------filter((t_c_firstyear.year_total > 0.000000)(t_c_firstyear.sale_type = 'c')(t_c_firstyear.dyear = 2001))
 ----------------------------CteConsumer[cteId= ( CTEId#6=] )
 
diff --git a/regression-test/data/cte_reuse/q74.out b/regression-test/data/cte_reuse/q74.out
index 03b34bde65..ed9dcb3648 100644
--- a/regression-test/data/cte_reuse/q74.out
+++ b/regression-test/data/cte_reuse/q74.out
@@ -43,7 +43,7 @@ CteAnchor[cteId= ( CTEId#4=] )
 ----PhysicalDistribute
 ------PhysicalTopN
 --------PhysicalProject
-----------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_firstyear.customer_id)(CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE NULL END > CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 4)) / year_total) ELSE NULL END)
+----------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_firstyear.customer_id)(CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 8)) / year_total) ELSE NULL END > CASE WHEN (year_total > 0.00) THEN (cast(year_total as DECIMALV3(38, 8)) / year_total) ELSE NULL END)
 ------------hashJoin[INNER_JOIN](t_s_firstyear.customer_id = t_w_secyear.customer_id)
 --------------hashJoin[INNER_JOIN](t_s_secyear.customer_id = t_s_firstyear.customer_id)
 ----------------PhysicalProject
diff --git a/regression-test/data/datatype_p0/decimalv3/test_decimalv3_where.out b/regression-test/data/datatype_p0/decimalv3/test_decimalv3_where.out
index 04ffc21d83..36084d4d21 100644
--- a/regression-test/data/datatype_p0/decimalv3/test_decimalv3_where.out
+++ b/regression-test/data/datatype_p0/decimalv3/test_decimalv3_where.out
@@ -1,6 +1,6 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !decimalv3 --
 3	flink	9	20
-2	spark	10	95
+2	spark	10	96
 1	doris	20	324
 
diff --git a/regression-test/data/datatype_p0/decimalv3/test_uniq_tab_decimalv3.out b/regression-test/data/datatype_p0/decimalv3/test_uniq_tab_decimalv3.out
index 1595a8c5b5..8a185bab69 100644
--- a/regression-test/data/datatype_p0/decimalv3/test_uniq_tab_decimalv3.out
+++ b/regression-test/data/datatype_p0/decimalv3/test_uniq_tab_decimalv3.out
@@ -1,87 +1,87 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !select_all --
 \N	\N	\N	\N	\N	\N
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal32_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 
 -- !select_pred_decimal32_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 
 -- !select_pred_decimal32_value --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal32_value --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal64_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal64_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal64_value --
 
 -- !select_pred_decimal64_value --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal128_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal128_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_pred_decimal128_value --
 
 -- !select_pred_decimal128_value --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_between_pred_decimal32_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 
 -- !select_in_pred_decimal32_key1 --
 
 -- !select_in_pred_decimal32_key2 --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 
 -- !select_in_pred_decimal32_key3 --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 
 -- !select_between_pred_decimal64_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_in_pred_decimal64_key1 --
 
 -- !select_in_pred_decimal64_key2 --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_in_pred_decimal64_key3 --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_between_pred_decimal128_key --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_in_pred_decimal128_key1 --
 
 -- !select_in_pred_decimal128_key2 --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
 -- !select_in_pred_decimal128_key3 --
-1.10000	1.20000	1.30000	1.40000	1.45600	1.34543
+1.10000	1.20000	1.30000	1.40000	1.45600	1.34544
 2.10000	1.20000	1.30000	1.40000	1.21000	1.12300
 
diff --git a/regression-test/data/tpch_sf0.1_unique_p1/sql/q14.out b/regression-test/data/decimalv3/tpch_sf0.1_p1/sql/q14.out
similarity index 91%
copy from regression-test/data/tpch_sf0.1_unique_p1/sql/q14.out
copy to regression-test/data/decimalv3/tpch_sf0.1_p1/sql/q14.out
index 20188f6434..b9410d3f79 100644
--- a/regression-test/data/tpch_sf0.1_unique_p1/sql/q14.out
+++ b/regression-test/data/decimalv3/tpch_sf0.1_p1/sql/q14.out
@@ -1,4 +1,4 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q14 --
-16.2838
+16.283855
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q02.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q02.out
index ffb59ea468..e942292671 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q02.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q02.out
@@ -1,2516 +1,2516 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q02 --
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5270	3.47	2.15	1.81	1.68	3.17	3.29	3.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5271	0.84	0.91	0.95	1.24	1.21	1.08	1.13
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5272	0.98	0.96	0.97	1.10	0.99	1.00	1.15
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5273	1.03	0.92	1.20	0.85	0.90	1.08	0.74
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5274	0.98	0.89	1.05	1.05	0.80	0.89	1.01
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5275	0.95	0.99	0.87	0.66	1.05	1.42	0.87
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5276	1.15	1.09	1.16	1.11	1.04	0.94	0.96
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5277	0.75	1.05	0.96	1.09	0.95	1.39	1.28
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5278	1.30	1.06	0.99	1.34	1.04	5.70	1.69
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5279	1.21	0.94	0.98	1.03	0.55	0.76	1.31
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5280	1.14	1.12	0.92	1.35	0.83	0.98	0.96
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5281	1.00	1.00	1.00	0.95	0.92	1.04	0.88
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5282	1.17	1.11	1.11	1.01	1.16	0.95	0.97
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5283	1.15	1.09	0.74	0.95	1.07	0.87	1.01
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5284	0.91	1.00	0.91	0.71	0.99	1.11	1.02
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5285	1.08	0.88	0.82	0.95	1.16	1.01	0.95
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5286	0.94	1.03	1.00	0.99	0.96	1.16	0.93
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5287	1.27	1.12	0.95	1.13	1.05	1.17	1.17
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5288	1.04	0.95	1.12	1.00	0.95	1.09	1.11
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5289	1.09	1.02	1.30	1.11	1.04	1.02	1.18
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5290	0.89	0.73	0.92	1.27	1.10	0.99	1.10
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5291	0.99	1.33	0.89	0.93	0.96	1.00	1.18
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5292	1.32	0.99	0.92	1.09	1.02	0.95	0.90
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5293	1.08	0.82	0.85	1.20	0.94	0.87	1.17
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5294	1.00	0.86	0.90	0.84	0.88	0.83	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5295	1.16	0.93	1.06	0.85	0.92	1.02	1.04
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5296	0.94	1.10	0.88	0.90	0.91	1.01	0.93
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5297	0.81	1.26	0.98	0.86	1.16	0.90	1.32
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5298	0.96	1.08	0.82	1.00	1.11	1.24	1.08
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5299	0.85	1.12	1.05	1.06	1.03	1.12	0.81
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5300	0.50	0.40	0.86	0.95	1.19	0.54	0.44
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5301	0.98	0.98	0.46	0.39	0.90	1.02	0.92
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5302	1.00	1.15	0.84	1.02	1.00	1.07	1.29
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5303	1.09	1.01	1.01	1.00	1.10	1.00	1.01
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5304	0.95	1.03	1.03	0.98	0.94	1.08	1.04
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5305	0.92	1.02	1.06	0.93	0.90	1.06	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5306	1.15	0.90	0.98	1.19	1.07	1.03	1.12
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5307	0.90	1.12	0.88	1.03	1.05	0.94	0.97
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5308	0.97	1.03	0.96	1.02	1.09	1.13	1.02
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5309	1.14	0.98	1.03	0.99	1.06	0.91	1.04
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5310	1.06	1.05	0.92	1.00	1.10	1.03	0.97
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5311	1.00	1.00	1.17	1.07	0.92	0.96	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5312	0.91	0.90	1.05	0.92	1.01	0.84	0.99
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5313	0.53	0.67	1.03	1.04	0.98	1.00	0.81
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5314	1.10	0.96	0.73	0.57	0.63	0.90	1.00
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5315	0.92	1.09	1.01	0.95	0.98	0.95	0.94
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5316	1.01	0.90	0.93	1.01	0.96	0.95	1.03
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5317	1.06	0.93	0.93	1.03	1.08	0.86	1.00
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5318	0.87	0.96	1.11	1.01	1.04	1.06	0.98
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5319	1.05	0.96	1.03	1.02	0.93	1.01	1.06
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5320	0.97	0.90	1.06	0.96	1.12	1.09	1.02
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5321	0.96	1.05	0.90	1.28	0.92	1.01	1.07
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
-5322	5.60	4.31	0.98	1.94	1.74	6.27	5.35
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5270	3.48	2.15	1.81	1.68	3.18	3.29	3.13
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5271	0.84	0.91	0.96	1.25	1.21	1.09	1.14
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5272	0.98	0.97	0.98	1.10	1.00	1.00	1.15
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5273	1.04	0.93	1.21	0.85	0.91	1.08	0.75
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5274	0.98	0.89	1.06	1.05	0.80	0.89	1.02
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5275	0.95	1.00	0.88	0.67	1.06	1.42	0.88
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5276	1.16	1.09	1.16	1.12	1.04	0.94	0.96
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5277	0.76	1.05	0.97	1.09	0.96	1.39	1.28
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5278	1.31	1.07	1.00	1.35	1.04	5.70	1.69
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5279	1.21	0.94	0.98	1.03	0.56	0.77	1.32
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5280	1.14	1.12	0.92	1.35	0.83	0.99	0.96
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5281	1.00	1.00	1.01	0.96	0.93	1.05	0.89
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5282	1.18	1.11	1.11	1.02	1.17	0.95	0.98
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5283	1.16	1.10	0.75	0.96	1.07	0.87	1.01
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5284	0.91	1.01	0.92	0.72	0.99	1.11	1.02
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5285	1.09	0.88	0.82	0.96	1.17	1.02	0.95
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5286	0.95	1.04	1.01	0.99	0.96	1.17	0.93
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5287	1.28	1.12	0.95	1.13	1.05	1.18	1.17
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5288	1.05	0.95	1.12	1.01	0.96	1.09	1.12
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5289	1.09	1.03	1.31	1.11	1.05	1.02	1.19
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5290	0.90	0.74	0.92	1.28	1.11	0.99	1.10
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5291	0.99	1.33	0.89	0.93	0.97	1.01	1.18
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5292	1.33	0.99	0.92	1.10	1.03	0.95	0.90
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5293	1.08	0.82	0.86	1.20	0.95	0.87	1.18
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5294	1.00	0.86	0.91	0.85	0.89	0.84	1.05
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5295	1.17	0.94	1.07	0.86	0.93	1.03	1.04
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5296	0.94	1.10	0.88	0.90	0.92	1.02	0.94
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5297	0.82	1.26	0.98	0.86	1.17	0.90	1.33
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5298	0.97	1.08	0.83	1.00	1.11	1.25	1.08
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5299	0.85	1.12	1.06	1.06	1.04	1.12	0.81
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5300	0.51	0.41	0.87	0.96	1.20	0.54	0.45
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5301	0.98	0.98	0.47	0.40	0.91	1.03	0.93
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5302	1.00	1.15	0.84	1.03	1.00	1.07	1.29
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5303	1.09	1.02	1.02	1.00	1.10	1.00	1.02
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5304	0.96	1.03	1.03	0.98	0.94	1.09	1.04
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5305	0.93	1.02	1.06	0.93	0.91	1.07	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5306	1.15	0.91	0.98	1.19	1.08	1.03	1.13
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5307	0.91	1.12	0.88	1.03	1.05	0.95	0.98
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5308	0.97	1.04	0.97	1.03	1.10	1.13	1.02
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5309	1.15	0.98	1.03	0.99	1.06	0.91	1.05
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5310	1.07	1.05	0.93	1.01	1.10	1.03	0.97
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5311	1.00	1.01	1.17	1.07	0.93	0.96	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5312	0.91	0.90	1.06	0.92	1.02	0.85	1.00
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5313	0.54	0.67	1.03	1.05	0.99	1.01	0.82
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5314	1.10	0.96	0.74	0.58	0.63	0.90	1.00
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5315	0.92	1.10	1.01	0.96	0.98	0.95	0.94
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5316	1.01	0.91	0.93	1.02	0.96	0.95	1.04
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5317	1.07	0.94	0.94	1.04	1.09	0.86	1.00
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5318	0.87	0.97	1.11	1.02	1.05	1.06	0.98
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5319	1.06	0.97	1.04	1.02	0.94	1.02	1.07
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5320	0.98	0.91	1.06	0.97	1.13	1.10	1.03
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5321	0.96	1.06	0.90	1.29	0.92	1.02	1.07
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
+5322	5.61	4.31	0.99	1.94	1.74	6.28	5.35
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q11.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q11.out
index 6eb99536a2..ad55c96f25 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q11.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q11.out
@@ -78,6 +78,7 @@ AAAAAAAAOCAJAAAA	Jenna	Staton	N	GIBRALTAR
 AAAAAAAAOCLBBAAA					
 AAAAAAAAODMMAAAA	Gayla	Cline	N	ETHIOPIA	
 AAAAAAAAOFLCAAAA	James	Taylor	N	BANGLADESH	
+AAAAAAAAOPDLAAAA	Ann	Pence	N	JAMAICA	
 AAAAAAAAPDFBAAAA	Terrance	Banks	Y	SLOVENIA	
 AAAAAAAAPEHEBAAA	Edith	Molina	Y	GREENLAND	
 AAAAAAAAPFCLAAAA	Felicia	Neville	N	NEPAL	
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q12.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q12.out
index 55bb12fd72..ea045b2e90 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q12.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q12.out
@@ -1,103 +1,103 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q12 --
-AAAAAAAAAAKAAAAA	Small, political activities help great, bad policies. Therefore square features provide on a machines. Rules make over me	Books	arts	2.42	2742.60	3.71
-AAAAAAAABHDCAAAA	Minor heads close common children; recently strong firms provide. Useful, young men ought to create changes. Popular, common regulations might decide. Points fit. Obvious, glad officials 	Books	arts	3.88	4258.84	5.77
-AAAAAAAACKEAAAAA	Legs appear eventually soci	Books	arts	35.27	4010.65	5.43
-AAAAAAAACMDCAAAA	Black, powerful others go now years. Diverse orders might not mean away medium minutes; tight authorities ought to put however for the things	Books	arts	2.75	1156.40	1.56
-AAAAAAAACNEDAAAA	Particularly labour stores get farmers. Hence true records see rel	Books	arts	6.89	6606.82	8.95
-AAAAAAAADCCDAAAA	Glad users understand very almost original jobs. Towns can understand. Supreme, following days work by a parents; german, crucial weapons work sure; fair pictur	Books	arts	7.18	10391.81	14.08
-AAAAAAAADJFCAAAA	Significant, preliminary boys can remain lightly more pale discussion	Books	arts	2.74	8279.54	11.22
-AAAAAAAADPCCAAAA	Especially true items might supply particularly. Black, automatic words might develop post-war problems. Fresh, visible workers could not appe	Books	arts	4.23	351.78	0.47
-AAAAAAAAEDKDAAAA	Times live now to a sales. British years bring all financ	Books	arts	4.24	11699.92	15.85
-AAAAAAAAEGAEAAAA	Far injuries pay so various arms. Courses could go anywhere universal possibilities; talks stand since mean, colonial scho	Books	arts	9.57	51.84	0.07
-AAAAAAAAFCFBAAAA	Golden estates meet as yet hands. About solid proteins used to tell. Once causal boots imagine frequently new elections; flexible, other ways find re	Books	arts	9.76	59.01	0.07
-AAAAAAAAGHOBAAAA	Fully existing proceedings could not tak	Books	arts	8.66	625.65	0.84
-AAAAAAAAIEPCAAAA	New, popular years should think. Shareholders speak also friends; special members could not identify social eyes; indoors full 	Books	arts	0.91	1390.83	1.88
-AAAAAAAAIHKBAAAA	Very historic arms may happen even able exis	Books	arts	9.19	13439.76	18.21
-AAAAAAAAIIPDAAAA	Af	Books	arts	6.04	109.23	0.14
-AAAAAAAAIJGAAAAA	Then western animals could teach somewhere. Today waiting servants confuse	Books	arts	4.10	868.50	1.17
-AAAAAAAAKKIAAAAA	Naked, popular schemes campaign then offices. Underlying shares may join	Books	arts	79.28	1841.04	2.49
-AAAAAAAAKNBCAAAA	Early, powerful towns add mainly english savings. Years assist then new, public colleagues. Things might encounter then right new features	Books	arts	6.89	365.60	0.49
-AAAAAAAAOKPBAAAA	Just good settings must not make; payments assure to a bishops. Principal, sorry amounts would safeguard very so other leaders; tory, substantial stairs m	Books	arts	2.60	5525.16	7.48
-AAAAAAAAABMBAAAA	Situations retain; units might sit operations; girls shall make. Ca	Books	business	3.16	1204.56	0.96
-AAAAAAAAACEBAAAA	Prese	Books	business	15.17	17499.32	14.07
-AAAAAAAAAKBDAAAA	Essential students change even despite a powers. General connections will not maximi	Books	business	3.10	84.80	0.06
-AAAAAAAABIPBAAAA	Ultimate, other objects might not install good 	Books	business	2.57	7199.93	5.79
-AAAAAAAABKACAAAA	Total pp. accept with a questions; able, generous a	Books	business	5.25	3702.38	2.97
-AAAAAAAABMDDAAAA	Head facts resolve even. Characteristics put. Toxic, genuine officials shall not meet. Difficult chil	Books	business	3.85	333.90	0.26
-AAAAAAAACDBCAAAA	Tiny years could run too above tough volumes. New germans must not leave as possible sales; inj	Books	business	1.22	799.89	0.64
-AAAAAAAACEPBAAAA	Long, married artists would see negative feelings. Emot	Books	business	1.73	2686.56	2.16
-AAAAAAAACPODAAAA	Cells stay economic, thin members. Soon special conservatives solve to the figu	Books	business	2.93	2431.81	1.95
-AAAAAAAADHNCAAAA	Originally major industries matter mediterranean bodies. Cases should not 	Books	business	45.06	2186.10	1.75
-AAAAAAAAEILDAAAA	Bad, able systems shall fall else. Nuclear, economic ways put in an paths. Serious, labour women must not muster however. Wide new readers ought to help 	Books	business	1.36	293.23	0.23
-AAAAAAAAFGJCAAAA	Secondary, red structures may seek eyes. High true titles should make now junior fat thoughts. Partly excellent authorities receive direct, net parties. Parents look most also other issues. Empty, con	Books	business	8.59	3319.89	2.67
-AAAAAAAAFLMDAAAA	Significantly relevant colleges extract knowingly broad investors. Entire members stay. Mediterranean legs would cut on the knees. Forthcoming, particular students u	Books	business	4.81	347.70	0.27
-AAAAAAAAFNOCAAAA	Wonderful systems ask also very parliamentary orders; british companies	Books	business	87.12	105.98	0.08
-AAAAAAAAGFDCAAAA	Particularly medieval blocks would not find slightly with a carers. Years respond about at a sec	Books	business	6.00	51.40	0.04
-AAAAAAAAGONBAAAA	Ever top offers might struggle far, automatic men. Long-term, long goods dare however; new, other gr	Books	business	2.30	1233.76	0.99
-AAAAAAAAIBKDAAAA	Hundreds drop nearly unacceptable accidents. Then strong methods tell large unions. Short companies should help so. Moves shall not set later chief problems. R	Books	business	0.78	1158.21	0.93
-AAAAAAAAIJECAAAA	Difficult, royal units put particularly significant, other plans. Essential, contemporary journals will need players. Alternatively parental	Books	business	4.34	10631.67	8.55
-AAAAAAAAIKEAAAAA	All 	Books	business	9.44	2.07	0.00
-AAAAAAAAIPADAAAA	Orders go into the documents. Social, existing specialists will seem twice associated wishes. Finally nation	Books	business	5.15	1755.92	1.41
-AAAAAAAAKAJDAAAA	Short neighbours implement innocently tiny titles. Briefly simple years should not tell potentially successful, whole years. Orange workers carry; home hot feet l	Books	business	4.43	17638.20	14.18
-AAAAAAAAKMAAAAAA	Plans consult interested, light boys. Selective, other problems create scientific, young parties. Sufficient speakers might not kiss too social, basic interests. Dual, other times s	Books	business	0.19	3867.73	3.11
-AAAAAAAALDFAAAAA	Hands may not allow only in a lands; linear, other pubs say; social, precise women identify for a patients. Preferences develop alone now rich motives. Ever good tas	Books	business	3.68	470.96	0.37
-AAAAAAAALGBBAAAA	Modern records retain about there civil plans. Social bodies survive. Great, living losses bother late, coherent others. About british sports ought to use cautiously from 	Books	business	1.94	229.35	0.18
-AAAAAAAALPDCAAAA	So small edges will understand currently in a things. New trains point usually systems. Years look growing questions. Different cases could sell just alive, late rules; big, large results will make 	Books	business	4.12	6151.95	4.94
-AAAAAAAAMIGCAAAA	Carefully physical hotels must put together; similar details cannot appreciate by a standards. Rates can break m	Books	business	6.63	25528.76	20.53
-AAAAAAAAMIMCAAAA	About likely houses like international members. Final, relevant birds answer after the paintings. Hungry, personal days borrow tiny, primary resources. As social relations could choose quite also 	Books	business	0.77	417.22	0.33
-AAAAAAAAMKHAAAAA	Unions shall see enough over true attitudes; of course full variable	Books	business	8.90	633.16	0.50
-AAAAAAAAMKNDAAAA	Special, clear elements would buy at a games. Things should spot today strange, only devices. Armies should like at a patients. Hands could perform simply narrow values. N	Books	business	1.28	11196.30	9.00
-AAAAAAAANACBAAAA	New teachers might demand never assets. Deeply bright ministers make generally never prime imports. Odd writings step common readers; talks take young, r	Books	business	2.95	1151.28	0.92
-AAAAAAAAAHKDAAAA	Decisions play actually exclusive activities. Well assistant e	Books	computers	8.77	822.69	0.98
-AAAAAAAABHEEAAAA	Subjects may remain officials. Forward, straight objects used to see wh	Books	computers	6.97	5663.04	6.77
-AAAAAAAAEAPAAAAA	Just distinct children think individuals; popular arguments develop here cautious methods; appropriate children might beat. Proper, empirical hundreds fall oth	Books	computers	4.01	9320.46	11.15
-AAAAAAAAEDMAAAAA	Books understand. Principles produce just at a premises. Years 	Books	computers	44.48	787.29	0.94
-AAAAAAAAEMHAAAAA	Boots recommend usually just local centres; c	Books	computers	7.56	765.23	0.91
-AAAAAAAAFEEAAAAA	Capital, united feelings paint only things. Greatly financial economies should not pay somewhere soviet necessary armies; educational concepts mus	Books	computers	3.83	78.76	0.09
-AAAAAAAAGENAAAAA	Genera	Books	computers	2.84	4719.74	5.65
-AAAAAAAAGHCBAAAA	Hundreds would meet regardless german, foreign scien	Books	computers	9.77	2451.75	2.93
-AAAAAAAAGMBDAAAA	Vulnerable b	Books	computers	0.58	31.86	0.03
-AAAAAAAAGNGBAAAA	Brilliant, massive prisons take still national others. Only northern guidelines go right by the lips. General, spiritual walls shall reach in a languages. British nations eat substantial polici	Books	computers	3.42	2248.01	2.69
-AAAAAAAAIGCEAAAA	Concerned numbers can attempt now particular, white friends; un	Books	computers	3.38	1297.25	1.55
-AAAAAAAAIGJAAAAA	Probably terrible students may go. There whole issues get academic, soviet charts. 	Books	computers	4.11	84.42	0.10
-AAAAAAAAIILCAAAA	At least low personnel might a	Books	computers	9.13	529.20	0.63
-AAAAAAAAJBADAAAA	Mean, good relations wake however strictly white possibilities. About aw	Books	computers	6.42	5473.02	6.55
-AAAAAAAAJJGBAAAA	Strangers gain officially enough labour problems. Overall systems may not help below lives. Heroes find just apparently generous couple	Books	computers	7.15	7846.40	9.39
-AAAAAAAALCDAAAAA	Clearly actual places would supply apparently only rats.	Books	computers	4.34	4611.20	5.52
-AAAAAAAALDBBAAAA	Mines should talk outside trees. Regular eyes encourage with an victims. Civil functions try actions. Movies fit secretly for a regions. Whole, imperial customs forget	Books	computers	7.44	5240.16	6.27
-AAAAAAAAMJEAAAAA	Local pro	Books	computers	1.04	843.52	1.00
-AAAAAAAAMMDEAAAA	Women support almost	Books	computers	4.68	1401.06	1.67
-AAAAAAAAMNOBAAAA	Scientific, young creditors might see for the alternativ	Books	computers	6.98	100.95	0.12
-AAAAAAAAMOHBAAAA	Fortunately past rules mind respectively appropriate losses. Men must develop above the sources. Mere values lis	Books	computers	2.02	5603.38	6.70
-AAAAAAAANAJDAAAA	Religious, delicious ways must a	Books	computers	7.07	14.55	0.01
-AAAAAAAANFJBAAAA	Only old doors shall wear again. Earlier high minerals might not tell better persona	Books	computers	16.62	0.00	0.00
-AAAAAAAANHFDAAAA	Easier strong operators could not break very; new, permanent animals 	Books	computers	1.15	2953.07	3.53
-AAAAAAAAOBNDAAAA	Levels undermine unfortunately efficient weeks	Books	computers	2.19	2853.36	3.41
-AAAAAAAAPDLCAAAA	Inc considerations should dare sales. Little, long chapters check better exciting employers. Still english unions could pull wrong shoes. Factors would kee	Books	computers	70.39	7100.08	8.50
-AAAAAAAAPJCCAAAA	Strong, british horses may not choose less. Results will not carry harsh workers. False claims will want over labour increases. Co	Books	computers	1.05	7745.78	9.27
-AAAAAAAAPKOBAAAA	Yet whole dealers p	Books	computers	3.63	2856.73	3.42
-AAAAAAAAPLIDAAAA	Items look somewhat new designs. Patients should solve about a officers. Minutes can act still companies. About dangerous records will not run towa	Books	computers	1.43	86.09	0.10
-AAAAAAAAABPAAAAA	Particularly professional women may not tell never present, distant times. Current, only weeks could hurry quite appropriate months. Little attacks waste carefully never politi	Books	cooking	1.82	6350.52	12.31
-AAAAAAAAAJNDAAAA	Physical, political decis	Books	cooking	6.76	0.00	0.00
-AAAAAAAABINAAAAA	Below invisi	Books	cooking	9.59	2547.42	4.94
-AAAAAAAABONAAAAA	Gains cannot cross colourful, long individuals. Drily red difficulties may not say to a plans. Very different cases ta	Books	cooking	1.60	1388.77	2.69
-AAAAAAAACBDCAAAA	Well independent scores fight rare changes. Scottish rights would not give; implicit, modern services like yet. Conservative, effective yards should marry about a buildings. Valid, m	Books	cooking	0.50	381.18	0.73
-AAAAAAAAGALAAAAA	Great, only pages might not contribute so; small components require on a films. Times find apparently. So traditional sources find conditions. Gro	Books	cooking	3.40	2359.09	4.57
-AAAAAAAAGMMCAAAA	Chief countries leave actually rural, other fathers. Women discover very otherwise large ministers. Slow, envi	Books	cooking	7.35	13258.98	25.71
-AAAAAAAAGOCAAAAA	Historical, economic lights shall stand much big, odd proposals. Rather grateful branches ought to take. Northern, high miles must ask increasingly. Once chronic	Books	cooking	4.37	3383.64	6.56
-AAAAAAAAKCCAAAAA	Possible schools carry primarily dual rises; important meetings could continue other passengers. More scottish things might not fall orders. Right, unable expectati	Books	cooking	4.44	4158.51	8.06
-AAAAAAAAKEJAAAAA	Other, atlantic regions know fast. Li	Books	cooking	68.84	5439.00	10.54
-AAAAAAAAKJGDAAAA	International eyes might see sales. Joint universities must not hold somewhat with a days. Perfect, profitable trials ought to seem; even pale quantities 	Books	cooking	0.94	5746.30	11.14
-AAAAAAAALBKAAAAA	Conditions used to test so for a spirits; open, royal provisions might not look approximate	Books	cooking	36.97	5238.71	10.16
-AAAAAAAALIGAAAAA	There superb accidents may strike individual results. Quiet, only forests drop as little unlikely towns. Observations can discern with a points. Substantial banks dest	Books	cooking	0.88	73.37	0.14
-AAAAAAAAMIBCAAAA	Views present rapidly in the relations. Average winners could fall double stations; also corresponding heroes promote direct,	Books	cooking	3.17	693.26	1.34
-AAAAAAAAONGCAAAA	Outcomes will become high wide, substantial clients. Sufficient, new resources weaken only over the moments. Of cour	Books	cooking	1.32	170.00	0.32
-AAAAAAAAPNFEAAAA	Wooden, civil fingers keep great, possible scales. Police begin ago in common responsible times. Further open fathers can believe aga	Books	cooking	0.33	367.15	0.71
-AAAAAAAAADBDAAAA	Upper men used to give still different girls. Proposals subsidise famous nerves. C	Books	entertainments	2.21	701.28	1.07
-AAAAAAAAAIKCAAAA	Troubles must know wise indicators. Kinds enter technical, new doubts. Likely, annual eyes see equivalent payments. Both inadequate feelings decide ever initial 	Books	entertainments	5.04	10130.68	15.55
-AAAAAAAABGOBAAAA	Japanese, long students may help very; there partial bombs must assess; intentions cannot execute most certain children; indeed necessary a	Books	entertainments	5.36	1174.34	1.80
-AAAAAAAACIDAAAAA	Millions might answer. Attractive rules might beat coloured volunteers. Scottis	Books	entertainments	3.51	4097.70	6.29
-AAAAAAAADCOAAAAA	Silly acres shall belong alike following, similar pairs. Respectively lucky newspapers shall dare. Also labour requirements can leave; pounds used to stay even only solicitors. Silver systems may de	Books	entertainments	75.74	613.76	0.94
-AAAAAAAADGKAAAAA	However small values 	Books	entertainments	1.49	3795.87	5.82
+AAAAAAAAAAKAAAAA	Small, political activities help great, bad policies. Therefore square features provide on a machines. Rules make over me	Books	arts	2.42	2742.60	3.717520
+AAAAAAAABHDCAAAA	Minor heads close common children; recently strong firms provide. Useful, young men ought to create changes. Popular, common regulations might decide. Points fit. Obvious, glad officials 	Books	arts	3.88	4258.84	5.772743
+AAAAAAAACKEAAAAA	Legs appear eventually soci	Books	arts	35.27	4010.65	5.436328
+AAAAAAAACMDCAAAA	Black, powerful others go now years. Diverse orders might not mean away medium minutes; tight authorities ought to put however for the things	Books	arts	2.75	1156.40	1.567469
+AAAAAAAACNEDAAAA	Particularly labour stores get farmers. Hence true records see rel	Books	arts	6.89	6606.82	8.955366
+AAAAAAAADCCDAAAA	Glad users understand very almost original jobs. Towns can understand. Supreme, following days work by a parents; german, crucial weapons work sure; fair pictur	Books	arts	7.18	10391.81	14.085818
+AAAAAAAADJFCAAAA	Significant, preliminary boys can remain lightly more pale discussion	Books	arts	2.74	8279.54	11.222693
+AAAAAAAADPCCAAAA	Especially true items might supply particularly. Black, automatic words might develop post-war problems. Fresh, visible workers could not appe	Books	arts	4.23	351.78	0.476828
+AAAAAAAAEDKDAAAA	Times live now to a sales. British years bring all financ	Books	arts	4.24	11699.92	15.858926
+AAAAAAAAEGAEAAAA	Far injuries pay so various arms. Courses could go anywhere universal possibilities; talks stand since mean, colonial scho	Books	arts	9.57	51.84	0.070267
+AAAAAAAAFCFBAAAA	Golden estates meet as yet hands. About solid proteins used to tell. Once causal boots imagine frequently new elections; flexible, other ways find re	Books	arts	9.76	59.01	0.079986
+AAAAAAAAGHOBAAAA	Fully existing proceedings could not tak	Books	arts	8.66	625.65	0.848051
+AAAAAAAAIEPCAAAA	New, popular years should think. Shareholders speak also friends; special members could not identify social eyes; indoors full 	Books	arts	0.91	1390.83	1.885232
+AAAAAAAAIHKBAAAA	Very historic arms may happen even able exis	Books	arts	9.19	13439.76	18.217232
+AAAAAAAAIIPDAAAA	Af	Books	arts	6.04	109.23	0.148058
+AAAAAAAAIJGAAAAA	Then western animals could teach somewhere. Today waiting servants confuse	Books	arts	4.10	868.50	1.177228
+AAAAAAAAKKIAAAAA	Naked, popular schemes campaign then offices. Underlying shares may join	Books	arts	79.28	1841.04	2.495480
+AAAAAAAAKNBCAAAA	Early, powerful towns add mainly english savings. Years assist then new, public colleagues. Things might encounter then right new features	Books	arts	6.89	365.60	0.495560
+AAAAAAAAOKPBAAAA	Just good settings must not make; payments assure to a bishops. Principal, sorry amounts would safeguard very so other leaders; tory, substantial stairs m	Books	arts	2.60	5525.16	7.489205
+AAAAAAAAABMBAAAA	Situations retain; units might sit operations; girls shall make. Ca	Books	business	3.16	1204.56	0.968965
+AAAAAAAAACEBAAAA	Prese	Books	business	15.17	17499.32	14.076710
+AAAAAAAAAKBDAAAA	Essential students change even despite a powers. General connections will not maximi	Books	business	3.10	84.80	0.068214
+AAAAAAAABIPBAAAA	Ultimate, other objects might not install good 	Books	business	2.57	7199.93	5.791729
+AAAAAAAABKACAAAA	Total pp. accept with a questions; able, generous a	Books	business	5.25	3702.38	2.978248
+AAAAAAAABMDDAAAA	Head facts resolve even. Characteristics put. Toxic, genuine officials shall not meet. Difficult chil	Books	business	3.85	333.90	0.268594
+AAAAAAAACDBCAAAA	Tiny years could run too above tough volumes. New germans must not leave as possible sales; inj	Books	business	1.22	799.89	0.643443
+AAAAAAAACEPBAAAA	Long, married artists would see negative feelings. Emot	Books	business	1.73	2686.56	2.161108
+AAAAAAAACPODAAAA	Cells stay economic, thin members. Soon special conservatives solve to the figu	Books	business	2.93	2431.81	1.956183
+AAAAAAAADHNCAAAA	Originally major industries matter mediterranean bodies. Cases should not 	Books	business	45.06	2186.10	1.758530
+AAAAAAAAEILDAAAA	Bad, able systems shall fall else. Nuclear, economic ways put in an paths. Serious, labour women must not muster however. Wide new readers ought to help 	Books	business	1.36	293.23	0.235878
+AAAAAAAAFGJCAAAA	Secondary, red structures may seek eyes. High true titles should make now junior fat thoughts. Partly excellent authorities receive direct, net parties. Parents look most also other issues. Empty, con	Books	business	8.59	3319.89	2.670568
+AAAAAAAAFLMDAAAA	Significantly relevant colleges extract knowingly broad investors. Entire members stay. Mediterranean legs would cut on the knees. Forthcoming, particular students u	Books	business	4.81	347.70	0.279694
+AAAAAAAAFNOCAAAA	Wonderful systems ask also very parliamentary orders; british companies	Books	business	87.12	105.98	0.085251
+AAAAAAAAGFDCAAAA	Particularly medieval blocks would not find slightly with a carers. Years respond about at a sec	Books	business	6.00	51.40	0.041346
+AAAAAAAAGONBAAAA	Ever top offers might struggle far, automatic men. Long-term, long goods dare however; new, other gr	Books	business	2.30	1233.76	0.992454
+AAAAAAAAIBKDAAAA	Hundreds drop nearly unacceptable accidents. Then strong methods tell large unions. Short companies should help so. Moves shall not set later chief problems. R	Books	business	0.78	1158.21	0.931681
+AAAAAAAAIJECAAAA	Difficult, royal units put particularly significant, other plans. Essential, contemporary journals will need players. Alternatively parental	Books	business	4.34	10631.67	8.552271
+AAAAAAAAIKEAAAAA	All 	Books	business	9.44	2.07	0.001665
+AAAAAAAAIPADAAAA	Orders go into the documents. Social, existing specialists will seem twice associated wishes. Finally nation	Books	business	5.15	1755.92	1.412487
+AAAAAAAAKAJDAAAA	Short neighbours implement innocently tiny titles. Briefly simple years should not tell potentially successful, whole years. Orange workers carry; home hot feet l	Books	business	4.43	17638.20	14.188427
+AAAAAAAAKMAAAAAA	Plans consult interested, light boys. Selective, other problems create scientific, young parties. Sufficient speakers might not kiss too social, basic interests. Dual, other times s	Books	business	0.19	3867.73	3.111258
+AAAAAAAALDFAAAAA	Hands may not allow only in a lands; linear, other pubs say; social, precise women identify for a patients. Preferences develop alone now rich motives. Ever good tas	Books	business	3.68	470.96	0.378847
+AAAAAAAALGBBAAAA	Modern records retain about there civil plans. Social bodies survive. Great, living losses bother late, coherent others. About british sports ought to use cautiously from 	Books	business	1.94	229.35	0.184492
+AAAAAAAALPDCAAAA	So small edges will understand currently in a things. New trains point usually systems. Years look growing questions. Different cases could sell just alive, late rules; big, large results will make 	Books	business	4.12	6151.95	4.948718
+AAAAAAAAMIGCAAAA	Carefully physical hotels must put together; similar details cannot appreciate by a standards. Rates can break m	Books	business	6.63	25528.76	20.535709
+AAAAAAAAMIMCAAAA	About likely houses like international members. Final, relevant birds answer after the paintings. Hungry, personal days borrow tiny, primary resources. As social relations could choose quite also 	Books	business	0.77	417.22	0.335617
+AAAAAAAAMKHAAAAA	Unions shall see enough over true attitudes; of course full variable	Books	business	8.90	633.16	0.509323
+AAAAAAAAMKNDAAAA	Special, clear elements would buy at a games. Things should spot today strange, only devices. Armies should like at a patients. Hands could perform simply narrow values. N	Books	business	1.28	11196.30	9.006468
+AAAAAAAANACBAAAA	New teachers might demand never assets. Deeply bright ministers make generally never prime imports. Odd writings step common readers; talks take young, r	Books	business	2.95	1151.28	0.926106
+AAAAAAAAAHKDAAAA	Decisions play actually exclusive activities. Well assistant e	Books	computers	8.77	822.69	0.984914
+AAAAAAAABHEEAAAA	Subjects may remain officials. Forward, straight objects used to see wh	Books	computers	6.97	5663.04	6.779725
+AAAAAAAAEAPAAAAA	Just distinct children think individuals; popular arguments develop here cautious methods; appropriate children might beat. Proper, empirical hundreds fall oth	Books	computers	4.01	9320.46	11.158345
+AAAAAAAAEDMAAAAA	Books understand. Principles produce just at a premises. Years 	Books	computers	44.48	787.29	0.942534
+AAAAAAAAEMHAAAAA	Boots recommend usually just local centres; c	Books	computers	7.56	765.23	0.916124
+AAAAAAAAFEEAAAAA	Capital, united feelings paint only things. Greatly financial economies should not pay somewhere soviet necessary armies; educational concepts mus	Books	computers	3.83	78.76	0.094290
+AAAAAAAAGENAAAAA	Genera	Books	computers	2.84	4719.74	5.650417
+AAAAAAAAGHCBAAAA	Hundreds would meet regardless german, foreign scien	Books	computers	9.77	2451.75	2.935206
+AAAAAAAAGMBDAAAA	Vulnerable b	Books	computers	0.58	31.86	0.038142
+AAAAAAAAGNGBAAAA	Brilliant, massive prisons take still national others. Only northern guidelines go right by the lips. General, spiritual walls shall reach in a languages. British nations eat substantial polici	Books	computers	3.42	2248.01	2.691291
+AAAAAAAAIGCEAAAA	Concerned numbers can attempt now particular, white friends; un	Books	computers	3.38	1297.25	1.553052
+AAAAAAAAIGJAAAAA	Probably terrible students may go. There whole issues get academic, soviet charts. 	Books	computers	4.11	84.42	0.101066
+AAAAAAAAIILCAAAA	At least low personnel might a	Books	computers	9.13	529.20	0.633552
+AAAAAAAAJBADAAAA	Mean, good relations wake however strictly white possibilities. About aw	Books	computers	6.42	5473.02	6.552235
+AAAAAAAAJJGBAAAA	Strangers gain officially enough labour problems. Overall systems may not help below lives. Heroes find just apparently generous couple	Books	computers	7.15	7846.40	9.393618
+AAAAAAAALCDAAAAA	Clearly actual places would supply apparently only rats.	Books	computers	4.34	4611.20	5.520474
+AAAAAAAALDBBAAAA	Mines should talk outside trees. Regular eyes encourage with an victims. Civil functions try actions. Movies fit secretly for a regions. Whole, imperial customs forget	Books	computers	7.44	5240.16	6.273458
+AAAAAAAAMJEAAAAA	Local pro	Books	computers	1.04	843.52	1.009852
+AAAAAAAAMMDEAAAA	Women support almost	Books	computers	4.68	1401.06	1.677332
+AAAAAAAAMNOBAAAA	Scientific, young creditors might see for the alternativ	Books	computers	6.98	100.95	0.120856
+AAAAAAAAMOHBAAAA	Fortunately past rules mind respectively appropriate losses. Men must develop above the sources. Mere values lis	Books	computers	2.02	5603.38	6.708300
+AAAAAAAANAJDAAAA	Religious, delicious ways must a	Books	computers	7.07	14.55	0.017419
+AAAAAAAANFJBAAAA	Only old doors shall wear again. Earlier high minerals might not tell better persona	Books	computers	16.62	0.00	0.000000
+AAAAAAAANHFDAAAA	Easier strong operators could not break very; new, permanent animals 	Books	computers	1.15	2953.07	3.535380
+AAAAAAAAOBNDAAAA	Levels undermine unfortunately efficient weeks	Books	computers	2.19	2853.36	3.416009
+AAAAAAAAPDLCAAAA	Inc considerations should dare sales. Little, long chapters check better exciting employers. Still english unions could pull wrong shoes. Factors would kee	Books	computers	70.39	7100.08	8.500132
+AAAAAAAAPJCCAAAA	Strong, british horses may not choose less. Results will not carry harsh workers. False claims will want over labour increases. Co	Books	computers	1.05	7745.78	9.273157
+AAAAAAAAPKOBAAAA	Yet whole dealers p	Books	computers	3.63	2856.73	3.420043
+AAAAAAAAPLIDAAAA	Items look somewhat new designs. Patients should solve about a officers. Minutes can act still companies. About dangerous records will not run towa	Books	computers	1.43	86.09	0.103065
+AAAAAAAAABPAAAAA	Particularly professional women may not tell never present, distant times. Current, only weeks could hurry quite appropriate months. Little attacks waste carefully never politi	Books	cooking	1.82	6350.52	12.317736
+AAAAAAAAAJNDAAAA	Physical, political decis	Books	cooking	6.76	0.00	0.000000
+AAAAAAAABINAAAAA	Below invisi	Books	cooking	9.59	2547.42	4.941083
+AAAAAAAABONAAAAA	Gains cannot cross colourful, long individuals. Drily red difficulties may not say to a plans. Very different cases ta	Books	cooking	1.60	1388.77	2.693716
+AAAAAAAACBDCAAAA	Well independent scores fight rare changes. Scottish rights would not give; implicit, modern services like yet. Conservative, effective yards should marry about a buildings. Valid, m	Books	cooking	0.50	381.18	0.739352
+AAAAAAAAGALAAAAA	Great, only pages might not contribute so; small components require on a films. Times find apparently. So traditional sources find conditions. Gro	Books	cooking	3.40	2359.09	4.575790
+AAAAAAAAGMMCAAAA	Chief countries leave actually rural, other fathers. Women discover very otherwise large ministers. Slow, envi	Books	cooking	7.35	13258.98	25.717677
+AAAAAAAAGOCAAAAA	Historical, economic lights shall stand much big, odd proposals. Rather grateful branches ought to take. Northern, high miles must ask increasingly. Once chronic	Books	cooking	4.37	3383.64	6.563050
+AAAAAAAAKCCAAAAA	Possible schools carry primarily dual rises; important meetings could continue other passengers. More scottish things might not fall orders. Right, unable expectati	Books	cooking	4.44	4158.51	8.066021
+AAAAAAAAKEJAAAAA	Other, atlantic regions know fast. Li	Books	cooking	68.84	5439.00	10.549713
+AAAAAAAAKJGDAAAA	International eyes might see sales. Joint universities must not hold somewhat with a days. Perfect, profitable trials ought to seem; even pale quantities 	Books	cooking	0.94	5746.30	11.145766
+AAAAAAAALBKAAAAA	Conditions used to test so for a spirits; open, royal provisions might not look approximate	Books	cooking	36.97	5238.71	10.161223
+AAAAAAAALIGAAAAA	There superb accidents may strike individual results. Quiet, only forests drop as little unlikely towns. Observations can discern with a points. Substantial banks dest	Books	cooking	0.88	73.37	0.142311
+AAAAAAAAMIBCAAAA	Views present rapidly in the relations. Average winners could fall double stations; also corresponding heroes promote direct,	Books	cooking	3.17	693.26	1.344676
+AAAAAAAAONGCAAAA	Outcomes will become high wide, substantial clients. Sufficient, new resources weaken only over the moments. Of cour	Books	cooking	1.32	170.00	0.329739
+AAAAAAAAPNFEAAAA	Wooden, civil fingers keep great, possible scales. Police begin ago in common responsible times. Further open fathers can believe aga	Books	cooking	0.33	367.15	0.712139
+AAAAAAAAADBDAAAA	Upper men used to give still different girls. Proposals subsidise famous nerves. C	Books	entertainments	2.21	701.28	1.076507
+AAAAAAAAAIKCAAAA	Troubles must know wise indicators. Kinds enter technical, new doubts. Likely, annual eyes see equivalent payments. Both inadequate feelings decide ever initial 	Books	entertainments	5.04	10130.68	15.551214
+AAAAAAAABGOBAAAA	Japanese, long students may help very; there partial bombs must assess; intentions cannot execute most certain children; indeed necessary a	Books	entertainments	5.36	1174.34	1.802683
+AAAAAAAACIDAAAAA	Millions might answer. Attractive rules might beat coloured volunteers. Scottis	Books	entertainments	3.51	4097.70	6.290220
+AAAAAAAADCOAAAAA	Silly acres shall belong alike following, similar pairs. Respectively lucky newspapers shall dare. Also labour requirements can leave; pounds used to stay even only solicitors. Silver systems may de	Books	entertainments	75.74	613.76	0.942159
+AAAAAAAADGKAAAAA	However small values 	Books	entertainments	1.49	3795.87	5.826892
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q20.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q20.out
index dcac1651f0..497b8de762 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q20.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q20.out
@@ -1,103 +1,103 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q20 --
-AAAAAAAAOJGAAAAA		Books		\N	2838.09	24.10
-AAAAAAAAAAKAAAAA	Small, political activities help great, bad policies. Therefore square features provide on a machines. Rules make over me	Books	arts	2.42	6478.75	3.22
-AAAAAAAAACKBAAAA	Clinical, inc initiatives make specially according to a activities.	Books	arts	6.92	1806.72	0.90
-AAAAAAAAAIJCAAAA	Simply small grounds use exactly effects. Services could kill especially aware, large observers. Civil, relevant years ensure regulations; clear drawings realize actors. Products employ a	Books	arts	1.76	14302.11	7.12
-AAAAAAAAAJIAAAAA	Joint, superior police would use through an restrictions. Buyers ought to contract generally in a efforts. Days cut also sure, frequent s	Books	arts	0.43	1094.80	0.54
-AAAAAAAABFHDAAAA	Little days answer in a emotions; players touch.	Books	arts	2.58	6331.08	3.15
-AAAAAAAABHDCAAAA	Minor heads close common children; recently strong firms provide. Useful, young men ought to create changes. Popular, common regulations might decide. Points fit. Obvious, glad officials 	Books	arts	3.88	2596.68	1.29
-AAAAAAAACBACAAAA	Remaining, main passengers go far sure men. 	Books	arts	4.78	700.70	0.34
-AAAAAAAACKDBAAAA	Positions can win increasingly entire units. Unions used to exclude fairly afraid fans. National fields appear also ways. Great lips print new teachers. Constant, primary deaths expect a little 	Books	arts	3.82	2828.38	1.40
-AAAAAAAACKEAAAAA	Legs appear eventually soci	Books	arts	35.27	438.70	0.21
-AAAAAAAACMDCAAAA	Black, powerful others go now years. Diverse orders might not mean away medium minutes; tight authorities ought to put however for the things	Books	arts	2.75	6743.51	3.36
-AAAAAAAACNEDAAAA	Particularly labour stores get farmers. Hence true records see rel	Books	arts	6.89	9386.80	4.67
-AAAAAAAADCCDAAAA	Glad users understand very almost original jobs. Towns can understand. Supreme, following days work by a parents; german, crucial weapons work sure; fair pictur	Books	arts	7.18	3375.52	1.68
-AAAAAAAADJFCAAAA	Significant, preliminary boys can remain lightly more pale discussion	Books	arts	2.74	3316.75	1.65
-AAAAAAAADPCCAAAA	Especially true items might supply particularly. Black, automatic words might develop post-war problems. Fresh, visible workers could not appe	Books	arts	4.23	4567.89	2.27
-AAAAAAAAEDKDAAAA	Times live now to a sales. British years bring all financ	Books	arts	4.24	5014.90	2.49
-AAAAAAAAEGAEAAAA	Far injuries pay so various arms. Courses could go anywhere universal possibilities; talks stand since mean, colonial scho	Books	arts	9.57	17491.20	8.71
-AAAAAAAAEPDDAAAA	Services used to work most new provi	Books	arts	2.84	481.44	0.23
-AAAAAAAAEPKAAAAA	Here political studies give once at the qu	Books	arts	1.78	2562.67	1.27
-AAAAAAAAFBMBAAAA	Years light glasses. Contemporary members might detect even drawings. Private instructions ought to expect well main streets. Children will say well; usually young members ought to ensure enough. 	Books	arts	4.78	1718.83	0.85
-AAAAAAAAFCKCAAAA	Brilliant, acceptable resources might not pick as. Positive, married parties support only strongly impossible needs. Photogra	Books	arts	2.44	2958.33	1.47
-AAAAAAAAGAKAAAAA	Especially early girls glance however specific, relevant steps. Financial worlds telephone most dark gains. Warm, outdoor devices defend besides. Unions must not say narrow powers; individual ti	Books	arts	8.96	2310.78	1.15
-AAAAAAAAGFHBAAAA	Contemporary occasions provide she	Books	arts	1.75	11988.75	5.97
-AAAAAAAAGHOBAAAA	Fully existing proceedings could not tak	Books	arts	8.66	2402.76	1.19
-AAAAAAAAGOKBAAAA	Othe	Books	arts	60.94	2242.14	1.11
-AAAAAAAAHPNCAAAA	Correct, certain humans cut	Books	arts	37.98	6152.65	3.06
-AAAAAAAAIAOAAAAA	Professional circumstances could live else others. Symptoms can see very leaves. Just personal institutions used to go. Capable workers used to play then able police.	Books	arts	2.40	2219.11	1.10
-AAAAAAAAIEPCAAAA	New, popular years should think. Shareholders speak also friends; special members could not identify social eyes; indoors full 	Books	arts	0.91	5462.06	2.72
-AAAAAAAAIHKBAAAA	Very historic arms may happen even able exis	Books	arts	9.19	8280.09	4.12
-AAAAAAAAIIPDAAAA	Af	Books	arts	6.04	4695.48	2.34
-AAAAAAAAIJGAAAAA	Then western animals could teach somewhere. Today waiting servants confuse	Books	arts	4.10	1589.42	0.79
-AAAAAAAAJJDBAAAA	Problems compete with a sets. Interesting, automatic pounds tell complete hills. 	Books	arts	1.20	18501.43	9.22
-AAAAAAAAKGBAAAAA	Light moments cannot date following sy	Books	arts	5.60	9688.12	4.82
-AAAAAAAAKICDAAAA	Wet, concerned representatives get up to a owners. Necessary, like	Books	arts	1.89	10823.82	5.39
-AAAAAAAAMFFAAAAA	Communities used to relocate clearly strange, new walls; european, rich championships make current depths. Sure studies may reflect only instinctively old forces. Foreign, diverse	Books	arts	8.22	3557.07	1.77
-AAAAAAAANIBAAAAA	Beneath decent wives write t	Books	arts	2.72	2235.93	1.11
-AAAAAAAAOJJCAAAA	Troops take only, right dogs. Briefly genuine eyes used to provide mutually coming, just parents. Too social services shall feel only rec	Books	arts	6.40	2193.52	1.09
-AAAAAAAAOKPBAAAA	Just good settings must not make; payments assure to a bishops. Principal, sorry amounts would safeguard very so other leaders; tory, substantial stairs m	Books	arts	2.60	5632.64	2.80
-AAAAAAAAOPKCAAAA	Less imp	Books	arts	9.12	1511.60	0.75
-AAAAAAAAPIEBAAAA	Main cheeks must put 	Books	arts	0.45	13.44	0.00
-AAAAAAAAPLLDAAAA	Old eyes could not give later issues. Claims might	Books	arts	9.00	4957.73	2.47
-AAAAAAAAABMBAAAA	Situations retain; units might sit operations; girls shall make. Ca	Books	business	3.16	905.62	0.57
-AAAAAAAAACEBAAAA	Prese	Books	business	15.17	5628.92	3.58
-AAAAAAAAADFAAAAA	Satisfactory, technical shadows get. Lexical structures would not blame. Only hard 	Books	business	78.25	9249.55	5.89
-AAAAAAAAAKBDAAAA	Essential students change even despite a powers. General connections will not maximi	Books	business	3.10	1162.52	0.74
-AAAAAAAAANHCAAAA	High ministers should not remove for a stations. Certain, linear weeks might not ask so from a improvements. Lakes must not implement f	Books	business	4.80	504.32	0.32
-AAAAAAAABIPBAAAA	Ultimate, other objects might not install good 	Books	business	2.57	2399.32	1.52
-AAAAAAAABKACAAAA	Total pp. accept with a questions; able, generous a	Books	business	5.25	6380.42	4.06
-AAAAAAAACDBCAAAA	Tiny years could run too above tough volumes. New germans must not leave as possible sales; inj	Books	business	1.22	5339.66	3.40
-AAAAAAAACDIBAAAA	Small results would go colours; sexual agencies ought to assure moreover unique premises; then complex provisions use often normal windows. Better educational girls should not believe however struct	Books	business	9.78	566.04	0.36
-AAAAAAAACEACAAAA	Other, direct letters ought to make from a ways. British, large men could not work a	Books	business	0.48	9562.96	6.09
-AAAAAAAACPODAAAA	Cells stay economic, thin members. Soon special conservatives solve to the figu	Books	business	2.93	13212.32	8.41
-AAAAAAAADHNCAAAA	Originally major industries matter mediterranean bodies. Cases should not 	Books	business	45.06	303.70	0.19
-AAAAAAAADNDDAAAA	Clear, harsh police used to include large, appropriate plans. Prices could produce more. There white weapons expect directly free conclusions. Responsibl	Books	business	4.57	3220.52	2.05
-AAAAAAAAEICAAAAA	Cases include proudly without a columns. Solid, pre	Books	business	2.42	7199.25	4.58
-AAAAAAAAEILDAAAA	Bad, able systems shall fall else. Nuclear, economic ways put in an paths. Serious, labour women must not muster however. Wide new readers ought to help 	Books	business	1.36	1349.33	0.85
-AAAAAAAAFGJCAAAA	Secondary, red structures may seek eyes. High true titles should make now junior fat thoughts. Partly excellent authorities receive direct, net parties. Parents look most also other issues. Empty, con	Books	business	8.59	3655.68	2.32
-AAAAAAAAFLMDAAAA	Significantly relevant colleges extract knowingly broad investors. Entire members stay. Mediterranean legs would cut on the knees. Forthcoming, particular students u	Books	business	4.81	1809.71	1.15
-AAAAAAAAGFDCAAAA	Particularly medieval blocks would not find slightly with a carers. Years respond about at a sec	Books	business	6.00	318.24	0.20
-AAAAAAAAGONBAAAA	Ever top offers might struggle far, automatic men. Long-term, long goods dare however; new, other gr	Books	business	2.30	1639.26	1.04
-AAAAAAAAIBKDAAAA	Hundreds drop nearly unacceptable accidents. Then strong methods tell large unions. Short companies should help so. Moves shall not set later chief problems. R	Books	business	0.78	1490.85	0.94
-AAAAAAAAIINDAAAA	Frames can park highly parents. White ma	Books	business	6.97	4313.52	2.74
-AAAAAAAAIJECAAAA	Difficult, royal units put particularly significant, other plans. Essential, contemporary journals will need players. Alternatively parental	Books	business	4.34	2268.00	1.44
-AAAAAAAAIJJCAAAA	Euro	Books	business	3.01	4889.34	3.11
-AAAAAAAAIKEAAAAA	All 	Books	business	9.44	182.52	0.11
-AAAAAAAAIPADAAAA	Orders go into the documents. Social, existing specialists will seem twice associated wishes. Finally nation	Books	business	5.15	242.88	0.15
-AAAAAAAAJMEDAAAA	Personal, significant activities agree only by a couples. Elaborate aut	Books	business	3.06	85.26	0.05
-AAAAAAAAKAJDAAAA	Short neighbours implement innocently tiny titles. Briefly simple years should not tell potentially successful, whole years. Orange workers carry; home hot feet l	Books	business	4.43	4949.49	3.15
-AAAAAAAAKAKAAAAA	Still urban stages shall not take for a legs. Other, holy demands pay further young, positive numbers. A little criminal i	Books	business	7.68	9959.06	6.34
-AAAAAAAAKMAAAAAA	Plans consult interested, light boys. Selective, other problems create scientific, young parties. Sufficient speakers might not kiss too social, basic interests. Dual, other times s	Books	business	0.19	910.16	0.57
-AAAAAAAALDFAAAAA	Hands may not allow only in a lands; linear, other pubs say; social, precise women identify for a patients. Preferences develop alone now rich motives. Ever good tas	Books	business	3.68	1816.45	1.15
-AAAAAAAALGBBAAAA	Modern records retain about there civil plans. Social bodies survive. Great, living losses bother late, coherent others. About british sports ought to use cautiously from 	Books	business	1.94	1252.09	0.79
-AAAAAAAAMALDAAAA	Here final difficulties would not comply just legal good motives. Enough sensitive things could not spend obviously with a systems. In pu	Books	business	91.76	356.85	0.22
-AAAAAAAAMIGCAAAA	Carefully physical hotels must put together; similar details cannot appreciate by a standards. Rates can break m	Books	business	6.63	562.96	0.35
-AAAAAAAAMIMCAAAA	About likely houses like international members. Final, relevant birds answer after the paintings. Hungry, personal days borrow tiny, primary resources. As social relations could choose quite also 	Books	business	0.77	2889.22	1.84
-AAAAAAAAMKHAAAAA	Unions shall see enough over true attitudes; of course full variable	Books	business	8.90	15263.90	9.72
-AAAAAAAAMKNDAAAA	Special, clear elements would buy at a games. Things should spot today strange, only devices. Armies should like at a patients. Hands could perform simply narrow values. N	Books	business	1.28	1069.76	0.68
-AAAAAAAANACBAAAA	New teachers might demand never assets. Deeply bright ministers make generally never prime imports. Odd writings step common readers; talks take young, r	Books	business	2.95	3975.16	2.53
-AAAAAAAAPDNAAAAA	Local, unlikely bits sign completely. Areas feel only manufacturing legs. Amounts must go personal, very things; areas could take clo	Books	business	5.20	3545.37	2.25
-AAAAAAAAPEKCAAAA	Alone countries must use so old, international functions. Only public cases see in a words. Normal methods forget even communist changes; technical numbers convert either natu	Books	business	4.67	3899.62	2.48
-AAAAAAAAPGDBAAAA	Certainly remaining flowers can wonder then just significant papers; places secure below as a bombs. Other, domestic members must allow very polite thi	Books	business	0.60	12462.77	7.94
-AAAAAAAAPHJAAAAA	Possibly great customs suit close looks. Capable, frequent processes shall pass possible dangers; hard, private words act measures. Mysterious, acceptable fac	Books	business	6.64	6141.24	3.91
-AAAAAAAAAALDAAAA	Forward liable funds may not end from time to time local, domestic chiefs. Major, well-known newspapers can regain together new, white conclusions. Very vital employees can draw	Books	computers	17.54	588.01	0.31
-AAAAAAAAAHKDAAAA	Decisions play actually exclusive activities. Well assistant e	Books	computers	8.77	1619.66	0.85
-AAAAAAAAAKGDAAAA	Tonnes could use slowly off a servants. Initial letters must walk now companies; rapid, previous towns put here large, prime needs. Historical, negative grou	Books	computers	0.19	3319.10	1.75
-AAAAAAAAAOBCAAAA	Years should try in line with a conditions. Pp. spend well evenings. Other, afraid sides speculate at a years. Options ought to know leading, app	Books	computers	5.23	8468.08	4.47
-AAAAAAAABHEEAAAA	Subjects may remain officials. Forward, straight objects used to see wh	Books	computers	6.97	13658.40	7.22
-AAAAAAAABLMBAAAA	External improvements effect so tough words. Great roads cause quickly popular, black stories. Clearly white members might ask enough details. Min	Books	computers	31.74	4154.04	2.19
-AAAAAAAACHOCAAAA	Final governm	Books	computers	6.22	5102.98	2.69
-AAAAAAAACOHDAAAA	Left, important sports shall get on an specialists. Overall, e	Books	computers	3.56	14321.37	7.57
-AAAAAAAAEANCAAAA	Ye	Books	computers	9.75	1367.76	0.72
-AAAAAAAAEAPAAAAA	Just distinct children think individuals; popular arguments develop here cautious methods; appropriate children might beat. Proper, empirical hundreds fall oth	Books	computers	4.01	328.50	0.17
-AAAAAAAAEDMAAAAA	Books understand. Principles produce just at a premises. Years 	Books	computers	44.48	188.86	0.09
-AAAAAAAAFEEAAAAA	Capital, united feelings paint only things. Greatly financial economies should not pay somewhere soviet necessary armies; educational concepts mus	Books	computers	3.83	812.19	0.42
-AAAAAAAAFLFEAAAA	Social weeks may hope. However parental objects shall get just potential logical stations. Agreements attend on a arms; circa real reforms may interpret dogs. T	Books	computers	2.06	449.61	0.23
-AAAAAAAAGENAAAAA	Genera	Books	computers	2.84	950.58	0.50
-AAAAAAAAGHCBAAAA	Hundreds would meet regardless german, foreign scien	Books	computers	9.77	1969.60	1.04
-AAAAAAAAGNGBAAAA	Brilliant, massive prisons take still national others. Only northern guidelines go right by the lips. General, spiritual walls shall reach in a languages. British nations eat substantial polici	Books	computers	3.42	377.26	0.19
-AAAAAAAAHPADAAAA	Used, young sizes take requirements. Electoral, standard stones worry still private scenes. Major, still bedrooms say all once effective years. Long new moments will own after the	Books	computers	9.19	690.90	0.36
-AAAAAAAAIAMAAAAA	Alone walls mus	Books	computers	2.00	4530.16	2.39
+AAAAAAAAOJGAAAAA		Books		\N	2838.09	24.109780
+AAAAAAAAAAKAAAAA	Small, political activities help great, bad policies. Therefore square features provide on a machines. Rules make over me	Books	arts	2.42	6478.75	3.228811
+AAAAAAAAACKBAAAA	Clinical, inc initiatives make specially according to a activities.	Books	arts	6.92	1806.72	0.900414
+AAAAAAAAAIJCAAAA	Simply small grounds use exactly effects. Services could kill especially aware, large observers. Civil, relevant years ensure regulations; clear drawings realize actors. Products employ a	Books	arts	1.76	14302.11	7.127736
+AAAAAAAAAJIAAAAA	Joint, superior police would use through an restrictions. Buyers ought to contract generally in a efforts. Days cut also sure, frequent s	Books	arts	0.43	1094.80	0.545615
+AAAAAAAABFHDAAAA	Little days answer in a emotions; players touch.	Books	arts	2.58	6331.08	3.155217
+AAAAAAAABHDCAAAA	Minor heads close common children; recently strong firms provide. Useful, young men ought to create changes. Popular, common regulations might decide. Points fit. Obvious, glad officials 	Books	arts	3.88	2596.68	1.294106
+AAAAAAAACBACAAAA	Remaining, main passengers go far sure men. 	Books	arts	4.78	700.70	0.349207
+AAAAAAAACKDBAAAA	Positions can win increasingly entire units. Unions used to exclude fairly afraid fans. National fields appear also ways. Great lips print new teachers. Constant, primary deaths expect a little 	Books	arts	3.82	2828.38	1.409578
+AAAAAAAACKEAAAAA	Legs appear eventually soci	Books	arts	35.27	438.70	0.218634
+AAAAAAAACMDCAAAA	Black, powerful others go now years. Diverse orders might not mean away medium minutes; tight authorities ought to put however for the things	Books	arts	2.75	6743.51	3.360760
+AAAAAAAACNEDAAAA	Particularly labour stores get farmers. Hence true records see rel	Books	arts	6.89	9386.80	4.678095
+AAAAAAAADCCDAAAA	Glad users understand very almost original jobs. Towns can understand. Supreme, following days work by a parents; german, crucial weapons work sure; fair pictur	Books	arts	7.18	3375.52	1.682256
+AAAAAAAADJFCAAAA	Significant, preliminary boys can remain lightly more pale discussion	Books	arts	2.74	3316.75	1.652967
+AAAAAAAADPCCAAAA	Especially true items might supply particularly. Black, automatic words might develop post-war problems. Fresh, visible workers could not appe	Books	arts	4.23	4567.89	2.276497
+AAAAAAAAEDKDAAAA	Times live now to a sales. British years bring all financ	Books	arts	4.24	5014.90	2.499273
+AAAAAAAAEGAEAAAA	Far injuries pay so various arms. Courses could go anywhere universal possibilities; talks stand since mean, colonial scho	Books	arts	9.57	17491.20	8.717082
+AAAAAAAAEPDDAAAA	Services used to work most new provi	Books	arts	2.84	481.44	0.239935
+AAAAAAAAEPKAAAAA	Here political studies give once at the qu	Books	arts	1.78	2562.67	1.277156
+AAAAAAAAFBMBAAAA	Years light glasses. Contemporary members might detect even drawings. Private instructions ought to expect well main streets. Children will say well; usually young members ought to ensure enough. 	Books	arts	4.78	1718.83	0.856612
+AAAAAAAAFCKCAAAA	Brilliant, acceptable resources might not pick as. Positive, married parties support only strongly impossible needs. Photogra	Books	arts	2.44	2958.33	1.474341
+AAAAAAAAGAKAAAAA	Especially early girls glance however specific, relevant steps. Financial worlds telephone most dark gains. Warm, outdoor devices defend besides. Unions must not say narrow powers; individual ti	Books	arts	8.96	2310.78	1.151622
+AAAAAAAAGFHBAAAA	Contemporary occasions provide she	Books	arts	1.75	11988.75	5.974828
+AAAAAAAAGHOBAAAA	Fully existing proceedings could not tak	Books	arts	8.66	2402.76	1.197462
+AAAAAAAAGOKBAAAA	Othe	Books	arts	60.94	2242.14	1.117414
+AAAAAAAAHPNCAAAA	Correct, certain humans cut	Books	arts	37.98	6152.65	3.066293
+AAAAAAAAIAOAAAAA	Professional circumstances could live else others. Symptoms can see very leaves. Just personal institutions used to go. Capable workers used to play then able police.	Books	arts	2.40	2219.11	1.105936
+AAAAAAAAIEPCAAAA	New, popular years should think. Shareholders speak also friends; special members could not identify social eyes; indoors full 	Books	arts	0.91	5462.06	2.722124
+AAAAAAAAIHKBAAAA	Very historic arms may happen even able exis	Books	arts	9.19	8280.09	4.126545
+AAAAAAAAIIPDAAAA	Af	Books	arts	6.04	4695.48	2.340084
+AAAAAAAAIJGAAAAA	Then western animals could teach somewhere. Today waiting servants confuse	Books	arts	4.10	1589.42	0.792118
+AAAAAAAAJJDBAAAA	Problems compete with a sets. Interesting, automatic pounds tell complete hills. 	Books	arts	1.20	18501.43	9.220549
+AAAAAAAAKGBAAAAA	Light moments cannot date following sy	Books	arts	5.60	9688.12	4.828264
+AAAAAAAAKICDAAAA	Wet, concerned representatives get up to a owners. Necessary, like	Books	arts	1.89	10823.82	5.394262
+AAAAAAAAMFFAAAAA	Communities used to relocate clearly strange, new walls; european, rich championships make current depths. Sure studies may reflect only instinctively old forces. Foreign, diverse	Books	arts	8.22	3557.07	1.772735
+AAAAAAAANIBAAAAA	Beneath decent wives write t	Books	arts	2.72	2235.93	1.114319
+AAAAAAAAOJJCAAAA	Troops take only, right dogs. Briefly genuine eyes used to provide mutually coming, just parents. Too social services shall feel only rec	Books	arts	6.40	2193.52	1.093183
+AAAAAAAAOKPBAAAA	Just good settings must not make; payments assure to a bishops. Principal, sorry amounts would safeguard very so other leaders; tory, substantial stairs m	Books	arts	2.60	5632.64	2.807136
+AAAAAAAAOPKCAAAA	Less imp	Books	arts	9.12	1511.60	0.753335
+AAAAAAAAPIEBAAAA	Main cheeks must put 	Books	arts	0.45	13.44	0.006698
+AAAAAAAAPLLDAAAA	Old eyes could not give later issues. Claims might	Books	arts	9.00	4957.73	2.470781
+AAAAAAAAABMBAAAA	Situations retain; units might sit operations; girls shall make. Ca	Books	business	3.16	905.62	0.577071
+AAAAAAAAACEBAAAA	Prese	Books	business	15.17	5628.92	3.586811
+AAAAAAAAADFAAAAA	Satisfactory, technical shadows get. Lexical structures would not blame. Only hard 	Books	business	78.25	9249.55	5.893917
+AAAAAAAAAKBDAAAA	Essential students change even despite a powers. General connections will not maximi	Books	business	3.10	1162.52	0.740770
+AAAAAAAAANHCAAAA	High ministers should not remove for a stations. Certain, linear weeks might not ask so from a improvements. Lakes must not implement f	Books	business	4.80	504.32	0.321358
+AAAAAAAABIPBAAAA	Ultimate, other objects might not install good 	Books	business	2.57	2399.32	1.528873
+AAAAAAAABKACAAAA	Total pp. accept with a questions; able, generous a	Books	business	5.25	6380.42	4.065675
+AAAAAAAACDBCAAAA	Tiny years could run too above tough volumes. New germans must not leave as possible sales; inj	Books	business	1.22	5339.66	3.402491
+AAAAAAAACDIBAAAA	Small results would go colours; sexual agencies ought to assure moreover unique premises; then complex provisions use often normal windows. Better educational girls should not believe however struct	Books	business	9.78	566.04	0.360687
+AAAAAAAACEACAAAA	Other, direct letters ought to make from a ways. British, large men could not work a	Books	business	0.48	9562.96	6.093626
+AAAAAAAACPODAAAA	Cells stay economic, thin members. Soon special conservatives solve to the figu	Books	business	2.93	13212.32	8.419039
+AAAAAAAADHNCAAAA	Originally major industries matter mediterranean bodies. Cases should not 	Books	business	45.06	303.70	0.193521
+AAAAAAAADNDDAAAA	Clear, harsh police used to include large, appropriate plans. Prices could produce more. There white weapons expect directly free conclusions. Responsibl	Books	business	4.57	3220.52	2.052151
+AAAAAAAAEICAAAAA	Cases include proudly without a columns. Solid, pre	Books	business	2.42	7199.25	4.587443
+AAAAAAAAEILDAAAA	Bad, able systems shall fall else. Nuclear, economic ways put in an paths. Serious, labour women must not muster however. Wide new readers ought to help 	Books	business	1.36	1349.33	0.859808
+AAAAAAAAFGJCAAAA	Secondary, red structures may seek eyes. High true titles should make now junior fat thoughts. Partly excellent authorities receive direct, net parties. Parents look most also other issues. Empty, con	Books	business	8.59	3655.68	2.329440
+AAAAAAAAFLMDAAAA	Significantly relevant colleges extract knowingly broad investors. Entire members stay. Mediterranean legs would cut on the knees. Forthcoming, particular students u	Books	business	4.81	1809.71	1.153167
+AAAAAAAAGFDCAAAA	Particularly medieval blocks would not find slightly with a carers. Years respond about at a sec	Books	business	6.00	318.24	0.202786
+AAAAAAAAGONBAAAA	Ever top offers might struggle far, automatic men. Long-term, long goods dare however; new, other gr	Books	business	2.30	1639.26	1.044555
+AAAAAAAAIBKDAAAA	Hundreds drop nearly unacceptable accidents. Then strong methods tell large unions. Short companies should help so. Moves shall not set later chief problems. R	Books	business	0.78	1490.85	0.949986
+AAAAAAAAIINDAAAA	Frames can park highly parents. White ma	Books	business	6.97	4313.52	2.748623
+AAAAAAAAIJECAAAA	Difficult, royal units put particularly significant, other plans. Essential, contemporary journals will need players. Alternatively parental	Books	business	4.34	2268.00	1.445195
+AAAAAAAAIJJCAAAA	Euro	Books	business	3.01	4889.34	3.115542
+AAAAAAAAIKEAAAAA	All 	Books	business	9.44	182.52	0.116303
+AAAAAAAAIPADAAAA	Orders go into the documents. Social, existing specialists will seem twice associated wishes. Finally nation	Books	business	5.15	242.88	0.154765
+AAAAAAAAJMEDAAAA	Personal, significant activities agree only by a couples. Elaborate aut	Books	business	3.06	85.26	0.054328
+AAAAAAAAKAJDAAAA	Short neighbours implement innocently tiny titles. Briefly simple years should not tell potentially successful, whole years. Orange workers carry; home hot feet l	Books	business	4.43	4949.49	3.153871
+AAAAAAAAKAKAAAAA	Still urban stages shall not take for a legs. Other, holy demands pay further young, positive numbers. A little criminal i	Books	business	7.68	9959.06	6.346025
+AAAAAAAAKMAAAAAA	Plans consult interested, light boys. Selective, other problems create scientific, young parties. Sufficient speakers might not kiss too social, basic interests. Dual, other times s	Books	business	0.19	910.16	0.579964
+AAAAAAAALDFAAAAA	Hands may not allow only in a lands; linear, other pubs say; social, precise women identify for a patients. Preferences develop alone now rich motives. Ever good tas	Books	business	3.68	1816.45	1.157462
+AAAAAAAALGBBAAAA	Modern records retain about there civil plans. Social bodies survive. Great, living losses bother late, coherent others. About british sports ought to use cautiously from 	Books	business	1.94	1252.09	0.797845
+AAAAAAAAMALDAAAA	Here final difficulties would not comply just legal good motives. Enough sensitive things could not spend obviously with a systems. In pu	Books	business	91.76	356.85	0.227388
+AAAAAAAAMIGCAAAA	Carefully physical hotels must put together; similar details cannot appreciate by a standards. Rates can break m	Books	business	6.63	562.96	0.358724
+AAAAAAAAMIMCAAAA	About likely houses like international members. Final, relevant birds answer after the paintings. Hungry, personal days borrow tiny, primary resources. As social relations could choose quite also 	Books	business	0.77	2889.22	1.841043
+AAAAAAAAMKHAAAAA	Unions shall see enough over true attitudes; of course full variable	Books	business	8.90	15263.90	9.726329
+AAAAAAAAMKNDAAAA	Special, clear elements would buy at a games. Things should spot today strange, only devices. Armies should like at a patients. Hands could perform simply narrow values. N	Books	business	1.28	1069.76	0.681663
+AAAAAAAANACBAAAA	New teachers might demand never assets. Deeply bright ministers make generally never prime imports. Odd writings step common readers; talks take young, r	Books	business	2.95	3975.16	2.533016
+AAAAAAAAPDNAAAAA	Local, unlikely bits sign completely. Areas feel only manufacturing legs. Amounts must go personal, very things; areas could take clo	Books	business	5.20	3545.37	2.259149
+AAAAAAAAPEKCAAAA	Alone countries must use so old, international functions. Only public cases see in a words. Normal methods forget even communist changes; technical numbers convert either natu	Books	business	4.67	3899.62	2.484882
+AAAAAAAAPGDBAAAA	Certainly remaining flowers can wonder then just significant papers; places secure below as a bombs. Other, domestic members must allow very polite thi	Books	business	0.60	12462.77	7.941418
+AAAAAAAAPHJAAAAA	Possibly great customs suit close looks. Capable, frequent processes shall pass possible dangers; hard, private words act measures. Mysterious, acceptable fac	Books	business	6.64	6141.24	3.913267
+AAAAAAAAAALDAAAA	Forward liable funds may not end from time to time local, domestic chiefs. Major, well-known newspapers can regain together new, white conclusions. Very vital employees can draw	Books	computers	17.54	588.01	0.311079
+AAAAAAAAAHKDAAAA	Decisions play actually exclusive activities. Well assistant e	Books	computers	8.77	1619.66	0.856861
+AAAAAAAAAKGDAAAA	Tonnes could use slowly off a servants. Initial letters must walk now companies; rapid, previous towns put here large, prime needs. Historical, negative grou	Books	computers	0.19	3319.10	1.755930
+AAAAAAAAAOBCAAAA	Years should try in line with a conditions. Pp. spend well evenings. Other, afraid sides speculate at a years. Options ought to know leading, app	Books	computers	5.23	8468.08	4.479937
+AAAAAAAABHEEAAAA	Subjects may remain officials. Forward, straight objects used to see wh	Books	computers	6.97	13658.40	7.225814
+AAAAAAAABLMBAAAA	External improvements effect so tough words. Great roads cause quickly popular, black stories. Clearly white members might ask enough details. Min	Books	computers	31.74	4154.04	2.197645
+AAAAAAAACHOCAAAA	Final governm	Books	computers	6.22	5102.98	2.699671
+AAAAAAAACOHDAAAA	Left, important sports shall get on an specialists. Overall, e	Books	computers	3.56	14321.37	7.576550
+AAAAAAAAEANCAAAA	Ye	Books	computers	9.75	1367.76	0.723597
+AAAAAAAAEAPAAAAA	Just distinct children think individuals; popular arguments develop here cautious methods; appropriate children might beat. Proper, empirical hundreds fall oth	Books	computers	4.01	328.50	0.173789
+AAAAAAAAEDMAAAAA	Books understand. Principles produce just at a premises. Years 	Books	computers	44.48	188.86	0.099914
+AAAAAAAAFEEAAAAA	Capital, united feelings paint only things. Greatly financial economies should not pay somewhere soviet necessary armies; educational concepts mus	Books	computers	3.83	812.19	0.429679
+AAAAAAAAFLFEAAAA	Social weeks may hope. However parental objects shall get just potential logical stations. Agreements attend on a arms; circa real reforms may interpret dogs. T	Books	computers	2.06	449.61	0.237860
+AAAAAAAAGENAAAAA	Genera	Books	computers	2.84	950.58	0.502893
+AAAAAAAAGHCBAAAA	Hundreds would meet regardless german, foreign scien	Books	computers	9.77	1969.60	1.041993
+AAAAAAAAGNGBAAAA	Brilliant, massive prisons take still national others. Only northern guidelines go right by the lips. General, spiritual walls shall reach in a languages. British nations eat substantial polici	Books	computers	3.42	377.26	0.199584
+AAAAAAAAHPADAAAA	Used, young sizes take requirements. Electoral, standard stones worry still private scenes. Major, still bedrooms say all once effective years. Long new moments will own after the	Books	computers	9.19	690.90	0.365512
+AAAAAAAAIAMAAAAA	Alone walls mus	Books	computers	2.00	4530.16	2.396627
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q21.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q21.out
index 3d25d0c543..88000d18c2 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q21.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q21.out
@@ -26,7 +26,6 @@
 	AAAAAAAAAOBBAAAA	1603	1592
 	AAAAAAAAAOIBAAAA	2982	2540
 	AAAAAAAAAPJBAAAA	2344	2593
-	AAAAAAAAAPLAAAAA	3114	2071
 	AAAAAAAABAPDAAAA	2182	2787
 	AAAAAAAABDCEAAAA	2844	2069
 	AAAAAAAABDDDAAAA	2417	2537
@@ -34,7 +33,6 @@
 	AAAAAAAABEODAAAA	2141	2649
 	AAAAAAAABFCCAAAA	2745	2020
 	AAAAAAAABFMBAAAA	1642	1364
-	AAAAAAAABFOCAAAA	2291	1520
 	AAAAAAAABHPCAAAA	1923	1780
 	AAAAAAAABIDBAAAA	1956	2836
 	AAAAAAAABIGBAAAA	2023	2344
@@ -50,7 +48,6 @@
 	AAAAAAAACBPBAAAA	1790	1661
 	AAAAAAAACCMDAAAA	2654	2691
 	AAAAAAAACDBCAAAA	1804	2072
-	AAAAAAAACEEAAAAA	2032	3068
 	AAAAAAAACFEAAAAA	1941	1567
 	AAAAAAAACFHDAAAA	1696	1147
 	AAAAAAAACGFDAAAA	2123	2265
@@ -77,7 +74,6 @@
 	AAAAAAAADFKBAAAA	1470	1650
 	AAAAAAAADGCCAAAA	2113	2331
 	AAAAAAAADGFCAAAA	2201	2928
-	AAAAAAAADGKAAAAA	1923	2902
 	AAAAAAAADHPAAAAA	2467	2133
 	AAAAAAAADMBAAAAA	3085	2087
 	AAAAAAAADPABAAAA	3494	3081
@@ -100,4 +96,8 @@
 	AAAAAAAAEJJAAAAA	2791	1941
 	AAAAAAAAEJJDAAAA	3410	2405
 	AAAAAAAAEJNCAAAA	2472	2067
+	AAAAAAAAEJPDAAAA	1219	1229
+	AAAAAAAAEKEBAAAA	2047	1713
+	AAAAAAAAEMEAAAAA	2502	1897
+	AAAAAAAAEMKCAAAA	2362	2042
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_1.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_1.out
index f01f4f877b..18bc8a4f0d 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_1.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_1.out
@@ -1,4 +1,4 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q23_1 --
-247644.18
+17030.91
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_2.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_2.out
index 78a7984dd9..123e0e9ba4 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_2.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q23_2.out
@@ -1,57 +1,7 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q23_2 --
-	Katherine	1277.22
 	Robert	598.86
-	Yolanda	2724.40
-Barnes	Timothy	12561.68
-Bradshaw	Charlie	3374.67
-Brown	Dale	9721.16
 Brown	Monika	6031.52
-Burns	Shaunta	136.90
-Carlson	Colby	14489.39
-Clark	Michele	362.88
-Clayton	Richard	3400.74
 Collins	Gordon	727.57
-Davidson	Sally	5395.14
-Fowler	Steven	1346.80
-Gonzalez	Francis	1572.50
-Green	James	1269.58
 Green	Jesse	9672.96
-Hemphill	Angela	849.52
-Herron	Eric	1640.38
-Hicks	Cindy	980.50
-Holland	Jane	4527.27
-Isom	Misty	1075.60
-Israel	John	7286.70
-James	Irene	577.80
-Jones	Jack	3096.00
-Larson	Gracie	584.32
-Law	Debra	3166.59
-Lee	Anne	4262.68
-Lewis	David	12863.40
-Miles	Michael	7192.00
-Montgomery	Rose	7299.60
-Moore	Chester	5352.53
-Morgan	Melvin	8871.76
-Newman	Thomas	9450.00
-Quick	Barbara	172.48
-Riddle	John	224.07
-Robbins	Janet	13149.18
-Robinson	Basil	39.63
-Roy	Robert	5787.90
-Rucker	Paula	4506.42
-Satterfield	Alfred	5674.29
-Schwarz	Lloyd	1320.30
-Scott	Amanda	10513.02
-Sexton	Galen	1426.80
-Swope	Beverly	2998.84
-Tillman	Jeff	15624.00
-Weber	Brandon	187.68
-White	Harvey	4073.58
-Whitson	Kenneth	2611.18
-Williams	Ann	7998.71
-Williams	Rosa	3143.02
-Woodbury		9896.91
-Wynn	Ernest	2358.55
-Yates	Laura	2197.00
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q31.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q31.out
index 6da8f5d515..1c8958e642 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q31.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q31.out
@@ -1,54 +1,54 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q31 --
-Atchison County	2000	0.80	0.24	11.94	3.16
-Bacon County	2000	1.16	0.39	0.96	0.51
-Bourbon County	2000	1.91	0.98	3.36	1.38
-Boyd County	2000	1.08	0.81	1.16	0.74
-Bradley County	2000	1.48	0.57	1.34	0.99
-Buchanan County	2000	1.19	0.74	3.33	2.23
-Carter County	2000	3.95	1.15	2.11	1.84
-Cass County	2000	2.39	1.19	2.25	0.84
-Corson County	2000	0.56	0.17	4.80	3.22
-Crockett County	2000	1.63	0.36	2.13	1.83
-Culpeper County	2000	0.66	0.61	1.65	1.22
-Edmonson County	2000	0.73	0.29	1.60	1.49
-Ferry County	2000	0.70	0.34	4.00	2.60
-Fillmore County	2000	0.50	0.34	2.44	1.30
-Forest County	2000	0.64	0.34	5.77	1.88
-Gaston County	2000	0.76	0.45	3.95	2.14
-Grant County	2000	0.69	0.62	1.78	1.72
-Green County	2000	0.76	0.32	4.69	4.20
-Harlan County	2000	1.67	1.59	2.47	2.10
-Harris County	2000	2.33	0.33	2.41	1.02
-Heard County	2000	4.10	1.26	3.50	1.12
-Houston County	2000	2.04	1.03	1.96	1.42
-Ingham County	2000	0.57	0.38	1.30	0.99
-Lake County	2000	1.25	0.74	1.51	1.26
-Lamar County	2000	0.74	0.74	4.26	2.02
-Lincoln County	2000	1.01	0.94	2.33	1.77
-Marion County	2000	1.15	0.91	2.44	1.85
-Mercer County	2000	0.73	0.60	3.01	2.72
-Meriwether County	2000	0.36	0.30	2.77	0.78
-Miller County	2000	2.57	1.31	2.19	0.98
-Mitchell County	2000	4.43	1.16	1.39	1.25
-Mora County	2000	1.18	0.63	2.51	0.91
-Nantucket County	2000	1.43	0.72	1.17	0.96
-New Kent County	2000	0.60	0.39	2.86	2.62
-Nicholas County	2000	2.16	2.05	6.02	1.26
-Otero County	2000	2.75	1.24	2.97	2.24
-Oxford County	2000	0.97	0.75	4.01	1.64
-Perry County	2000	1.58	0.76	2.15	1.80
-Prince William County	2000	3.37	0.63	1.70	0.93
-Refugio County	2000	1.81	0.58	1.30	1.26
-Rice County	2000	1.13	0.73	2.37	1.98
-Richmond County	2000	1.57	1.29	2.30	1.77
-Sheridan County	2000	1.38	1.25	1.57	0.53
-Smith County	2000	0.63	0.42	5.74	4.47
-Stark County	2000	7.33	1.41	1.86	1.22
-Steele County	2000	1.37	0.76	1.24	0.93
-Stone County	2000	1.90	0.81	3.69	1.52
-Tooele County	2000	6.59	0.76	1.78	0.34
-Vernon County	2000	0.97	0.91	1.36	1.04
-Williamson County	2000	2.98	0.39	5.80	4.39
-Wright County	2000	5.02	1.97	4.07	1.96
+Atchison County	2000	0.800221	0.242964	11.944560	3.162953
+Bacon County	2000	1.168826	0.394037	0.968799	0.510743
+Bourbon County	2000	1.913115	0.981927	3.364802	1.380122
+Boyd County	2000	1.086323	0.811506	1.168972	0.742057
+Bradley County	2000	1.489631	0.575784	1.344389	0.998918
+Buchanan County	2000	1.195667	0.746048	3.332904	2.239787
+Carter County	2000	3.953738	1.151032	2.119284	1.844491
+Cass County	2000	2.398719	1.190581	2.257169	0.847801
+Corson County	2000	0.560309	0.175081	4.807408	3.227140
+Crockett County	2000	1.637106	0.360468	2.134042	1.832451
+Culpeper County	2000	0.661751	0.619014	1.659248	1.224169
+Edmonson County	2000	0.732442	0.299753	1.602897	1.491245
+Ferry County	2000	0.701372	0.341010	4.002919	2.603464
+Fillmore County	2000	0.507768	0.349921	2.443161	1.301135
+Forest County	2000	0.644745	0.342367	5.771027	1.881073
+Gaston County	2000	0.763773	0.455495	3.955611	2.141572
+Grant County	2000	0.693335	0.622870	1.788644	1.722196
+Green County	2000	0.763666	0.321498	4.694151	4.207033
+Harlan County	2000	1.670354	1.590114	2.471958	2.107294
+Harris County	2000	2.337568	0.333126	2.417057	1.025794
+Heard County	2000	4.102554	1.266947	3.500227	1.127804
+Houston County	2000	2.045325	1.038982	1.965051	1.421193
+Ingham County	2000	0.574390	0.384113	1.306516	0.992061
+Lake County	2000	1.255077	0.745928	1.515147	1.265661
+Lamar County	2000	0.749357	0.745616	4.269035	2.029583
+Lincoln County	2000	1.019136	0.944844	2.335959	1.776927
+Marion County	2000	1.158998	0.916511	2.445039	1.851072
+Mercer County	2000	0.738341	0.601678	3.012450	2.724470
+Meriwether County	2000	0.365747	0.300417	2.772270	0.787768
+Miller County	2000	2.575744	1.318273	2.191967	0.982218
+Mitchell County	2000	4.439233	1.161334	1.394036	1.256074
+Mora County	2000	1.183260	0.635654	2.513120	0.918567
+Nantucket County	2000	1.437896	0.722692	1.175488	0.962303
+New Kent County	2000	0.602616	0.399062	2.869386	2.625894
+Nicholas County	2000	2.165116	2.056273	6.021299	1.262576
+Otero County	2000	2.754655	1.246298	2.976110	2.245834
+Oxford County	2000	0.973142	0.757240	4.012686	1.640751
+Perry County	2000	1.580780	0.764453	2.153369	1.802410
+Prince William County	2000	3.376372	0.630787	1.706966	0.934323
+Refugio County	2000	1.812976	0.586731	1.301983	1.269603
+Rice County	2000	1.134698	0.733017	2.378149	1.986401
+Richmond County	2000	1.571665	1.294014	2.309592	1.778015
+Sheridan County	2000	1.386029	1.250657	1.575936	0.537886
+Smith County	2000	0.636935	0.427881	5.744844	4.477958
+Stark County	2000	7.338219	1.417589	1.863839	1.227365
+Steele County	2000	1.377413	0.766512	1.247973	0.931195
+Stone County	2000	1.900042	0.811920	3.699361	1.521661
+Tooele County	2000	6.590302	0.768910	1.788637	0.340067
+Vernon County	2000	0.974454	0.915946	1.368803	1.041711
+Williamson County	2000	2.985102	0.391417	5.805964	4.396699
+Wright County	2000	5.029335	1.970809	4.076528	1.966472
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q36.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q36.out
index f9369a73e6..a92d4399c9 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q36.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q36.out
@@ -1,103 +1,103 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q36 --
--0.43	\N	\N	2	1
--0.44	Electronics	\N	1	1
--0.43	Books	\N	1	2
--0.43	Children	\N	1	2
--0.43	Home	\N	1	2
--0.43	Men	\N	1	2
--0.43	Shoes	\N	1	2
--0.43	Sports	\N	1	2
--0.43	Women	\N	1	2
--0.42	Jewelry	\N	1	9
--0.42	Music	\N	1	9
--0.40	\N	\N	1	11
--0.57	\N	swimwear	0	1
--0.52	\N	pants	0	2
--0.51	\N	sports-apparel	0	3
--0.49	\N	flatware	0	4
--0.42	\N	scanners	0	5
--0.41	\N		0	6
--0.41	\N	glassware	0	6
--0.41	\N	womens	0	6
--0.34	\N	dresses	0	9
--0.28	\N	semi-precious	0	10
--0.27	\N	archery	0	11
--0.26	\N	camcorders	0	12
--0.49	Books		0	1
--0.45	Books	home repair	0	2
--0.45	Books	parenting	0	2
--0.45	Books	romance	0	2
--0.45	Books	self-help	0	2
--0.43	Books	arts	0	6
--0.43	Books	business	0	6
--0.43	Books	computers	0	6
--0.43	Books	entertainments	0	6
--0.42	Books	cooking	0	10
--0.42	Books	fiction	0	10
--0.42	Books	history	0	10
--0.42	Books	sports	0	10
--0.42	Books	travel	0	10
--0.41	Books	reference	0	15
--0.40	Books	mystery	0	16
--0.40	Books	science	0	16
--0.51	Children		0	1
--0.44	Children	infants	0	2
--0.44	Children	toddlers	0	2
--0.43	Children	newborn	0	4
--0.43	Children	school-uniforms	0	4
--0.48	Electronics	scanners	0	1
--0.47	Electronics	wireless	0	2
--0.46	Electronics	musical	0	3
--0.45	Electronics	audio	0	4
--0.45	Electronics	automotive	0	4
--0.45	Electronics	personal	0	4
--0.45	Electronics	portable	0	4
--0.44	Electronics	camcorders	0	8
--0.44	Electronics	karoke	0	8
--0.44	Electronics	stereo	0	8
--0.43	Electronics	disk drives	0	11
--0.43	Electronics	monitors	0	11
--0.42	Electronics	cameras	0	13
--0.42	Electronics	dvd/vcr players	0	13
--0.42	Electronics	televisions	0	13
--0.41	Electronics	memory	0	16
--0.45	Home	bedding	0	1
--0.45	Home	blinds/shades	0	1
--0.45	Home	rugs	0	1
--0.45	Home	tables	0	1
--0.45	Home	wallpaper	0	1
--0.44	Home	curtains/drapes	0	6
--0.44	Home	decor	0	6
--0.44	Home	kids	0	6
--0.44	Home	paint	0	6
--0.43	Home	accent	0	10
--0.42	Home	flatware	0	11
--0.42	Home	glassware	0	11
--0.41	Home	bathroom	0	13
--0.41	Home	furniture	0	13
--0.41	Home	mattresses	0	13
--0.39	Home	lighting	0	16
--0.27	Home		0	17
--0.48	Jewelry	consignment	0	1
--0.45	Jewelry	gold	0	2
--0.44	Jewelry	womens watch	0	3
--0.43	Jewelry		0	4
--0.43	Jewelry	birdal	0	4
--0.43	Jewelry	bracelets	0	4
--0.43	Jewelry	estate	0	4
--0.43	Jewelry	loose stones	0	4
--0.43	Jewelry	rings	0	4
--0.43	Jewelry	semi-precious	0	4
--0.42	Jewelry	earings	0	11
--0.42	Jewelry	pendants	0	11
--0.41	Jewelry	costume	0	13
--0.41	Jewelry	jewelry boxes	0	13
--0.41	Jewelry	mens watch	0	13
--0.40	Jewelry	custom	0	16
--0.40	Jewelry	diamonds	0	16
--0.44	Men	sports-apparel	0	1
--0.43	Men	accessories	0	2
--0.43	Men	pants	0	2
--0.42	Men	shirts	0	4
+-0.434627	\N	\N	2	1
+-0.445725	Electronics	\N	1	1
+-0.439058	Children	\N	1	2
+-0.435374	Home	\N	1	3
+-0.435134	Sports	\N	1	4
+-0.434786	Shoes	\N	1	5
+-0.433936	Men	\N	1	6
+-0.432814	Books	\N	1	7
+-0.432785	Women	\N	1	8
+-0.428839	Jewelry	\N	1	9
+-0.428396	Music	\N	1	10
+-0.408364	\N	\N	1	11
+-0.575062	\N	swimwear	0	1
+-0.524775	\N	pants	0	2
+-0.516348	\N	sports-apparel	0	3
+-0.497017	\N	flatware	0	4
+-0.421156	\N	scanners	0	5
+-0.414954	\N		0	6
+-0.412124	\N	womens	0	7
+-0.411242	\N	glassware	0	8
+-0.340050	\N	dresses	0	9
+-0.285391	\N	semi-precious	0	10
+-0.270644	\N	archery	0	11
+-0.265891	\N	camcorders	0	12
+-0.493138	Books		0	1
+-0.459059	Books	self-help	0	2
+-0.453614	Books	romance	0	3
+-0.453097	Books	parenting	0	4
+-0.452428	Books	home repair	0	5
+-0.439811	Books	arts	0	6
+-0.437716	Books	computers	0	7
+-0.436170	Books	entertainments	0	8
+-0.433510	Books	business	0	9
+-0.429332	Books	cooking	0	10
+-0.427766	Books	history	0	11
+-0.426950	Books	sports	0	12
+-0.425222	Books	fiction	0	13
+-0.421389	Books	travel	0	14
+-0.413108	Books	reference	0	15
+-0.407931	Books	science	0	16
+-0.402452	Books	mystery	0	17
+-0.519728	Children		0	1
+-0.443954	Children	infants	0	2
+-0.441166	Children	toddlers	0	3
+-0.439389	Children	newborn	0	4
+-0.431534	Children	school-uniforms	0	5
+-0.481111	Electronics	scanners	0	1
+-0.474762	Electronics	wireless	0	2
+-0.468813	Electronics	musical	0	3
+-0.459643	Electronics	audio	0	4
+-0.459285	Electronics	portable	0	5
+-0.457668	Electronics	automotive	0	6
+-0.450596	Electronics	personal	0	7
+-0.446586	Electronics	karoke	0	8
+-0.444758	Electronics	camcorders	0	9
+-0.442434	Electronics	stereo	0	10
+-0.435633	Electronics	monitors	0	11
+-0.430062	Electronics	disk drives	0	12
+-0.429564	Electronics	dvd/vcr players	0	13
+-0.427791	Electronics	televisions	0	14
+-0.427484	Electronics	cameras	0	15
+-0.417896	Electronics	memory	0	16
+-0.458206	Home	wallpaper	0	1
+-0.458123	Home	rugs	0	2
+-0.453908	Home	blinds/shades	0	3
+-0.450804	Home	tables	0	4
+-0.450005	Home	bedding	0	5
+-0.444429	Home	paint	0	6
+-0.442900	Home	kids	0	7
+-0.441956	Home	decor	0	8
+-0.440270	Home	curtains/drapes	0	9
+-0.436733	Home	accent	0	10
+-0.429605	Home	glassware	0	11
+-0.421292	Home	flatware	0	12
+-0.419606	Home	mattresses	0	13
+-0.416796	Home	furniture	0	14
+-0.416137	Home	bathroom	0	15
+-0.397445	Home	lighting	0	16
+-0.275086	Home		0	17
+-0.482022	Jewelry	consignment	0	1
+-0.452923	Jewelry	gold	0	2
+-0.442266	Jewelry	womens watch	0	3
+-0.438958	Jewelry	semi-precious	0	4
+-0.437528	Jewelry		0	5
+-0.435690	Jewelry	bracelets	0	6
+-0.434631	Jewelry	birdal	0	7
+-0.434526	Jewelry	loose stones	0	8
+-0.433406	Jewelry	rings	0	9
+-0.430754	Jewelry	estate	0	10
+-0.429735	Jewelry	pendants	0	11
+-0.422079	Jewelry	earings	0	12
+-0.417511	Jewelry	costume	0	13
+-0.412603	Jewelry	jewelry boxes	0	14
+-0.412515	Jewelry	mens watch	0	15
+-0.405425	Jewelry	custom	0	16
+-0.403668	Jewelry	diamonds	0	17
+-0.440736	Men	sports-apparel	0	1
+-0.437900	Men	accessories	0	2
+-0.435914	Men	pants	0	3
+-0.423605	Men	shirts	0	4
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q39_1.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q39_1.out
index 73a4cbde87..a85c391ec8 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q39_1.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q39_1.out
@@ -6,11 +6,11 @@
 1	695	1	450.75	1.0835888283564505	1	695	2	368.75	1.1356494125569416
 1	789	1	357.25	1.03450938027956	1	789	2	410.0	1.0284221852702604
 1	815	1	216.5	1.1702270938111008	1	815	2	150.5	1.3057281471249382
-1	827	1	271.75	1.1046890134130438	1	827	2	424.75	1.1653198631238286
+1	827	1	271.75	1.1046890134130438	1	827	2	424.75	1.1653198631238288
 1	1041	1	382.5	1.284808399803008	1	1041	2	424.75	1.000577271456812
 1	1569	1	212.0	1.630213519639535	1	1569	2	239.25	1.2641513267800557
-1	1623	1	338.25	1.1285483279713715	1	1623	2	261.3333333333333	1.2717809002195564
-1	2581	1	448.5	1.0604290412504491	1	2581	2	476.25	1.0362984739390064
+1	1623	1	338.25	1.1285483279713713	1	1623	2	261.3333333333333	1.2717809002195564
+1	2581	1	448.5	1.060429041250449	1	2581	2	476.25	1.0362984739390064
 1	2705	1	246.25	1.012030835795969	1	2705	2	294.6666666666667	1.0742134101583702
 1	3131	1	393.75	1.0037613982687346	1	3131	2	480.5	1.0669144981482768
 1	3291	1	374.5	1.195189833087008	1	3291	2	265.25	1.572972106948466
@@ -19,29 +19,29 @@
 1	5627	1	282.75	1.5657032366359889	1	5627	2	297.5	1.2084286841430678
 1	7017	1	175.5	1.0427454215644427	1	7017	2	321.3333333333333	1.0183356932936254
 1	7317	1	366.3333333333333	1.025466403613547	1	7317	2	378.0	1.2172513189920555
-1	7569	1	430.5	1.0874396852180854	1	7569	2	360.25	1.047005559314515
-1	7999	1	166.25	1.7924231710846223	1	7999	2	375.3333333333333	1.008092263550718
+1	7569	1	430.5	1.0874396852180854	1	7569	2	360.25	1.0470055593145149
+1	7999	1	166.25	1.7924231710846223	1	7999	2	375.3333333333333	1.0080922635507177
 1	8319	1	306.75	1.1615378040478215	1	8319	2	276.0	1.1420996385609428
 1	8443	1	327.75	1.256718374192724	1	8443	2	332.5	1.0044167259988928
 1	8583	1	319.5	1.024108893111539	1	8583	2	310.25	1.2358813775861326
 1	8591	1	398.0	1.1478168692042447	1	8591	2	355.75	1.0024472149348966
-1	8611	1	300.5	1.519154518414795	1	8611	2	243.75	1.2342122780960432
-1	9081	1	367.0	1.0878932141280895	1	9081	2	435.0	1.0330530776324107
+1	8611	1	300.5	1.519154518414795	1	8611	2	243.75	1.234212278096043
+1	9081	1	367.0	1.0878932141280893	1	9081	2	435.0	1.0330530776324107
 1	9357	1	351.6666666666667	1.1902922622025887	1	9357	2	427.0	1.0438583026358363
 1	9449	1	406.25	1.0183183104803557	1	9449	2	175.0	1.054477979629641
 1	9713	1	242.5	1.1035044355064203	1	9713	2	393.0	1.208474608738988
 1	9809	1	479.0	1.0189602512117633	1	9809	2	317.5	1.0614142074924882
 1	9993	1	417.75	1.0099832672435247	1	9993	2	204.5	1.552870745350107
-1	10127	1	239.75	1.0561770587198125	1	10127	2	359.25	1.1857980403742183
+1	10127	1	239.75	1.0561770587198123	1	10127	2	359.25	1.1857980403742183
 1	11159	1	407.25	1.0785507154337637	1	11159	2	250.0	1.334757905639321
 1	11277	1	211.25	1.2615858275316627	1	11277	2	330.75	1.0808767951625093
 1	11937	1	344.5	1.085804026843784	1	11937	2	200.33333333333334	1.0638527063883725
-1	12373	1	387.75	1.1014904822941258	1	12373	2	306.0	1.0761744390394028
-1	12471	1	365.25	1.0607570183728479	1	12471	2	327.25	1.0547560580567854
+1	12373	1	387.75	1.1014904822941258	1	12373	2	306.0	1.0761744390394026
+1	12471	1	365.25	1.0607570183728479	1	12471	2	327.25	1.0547560580567852
 1	12625	1	279.0	1.3016560542373208	1	12625	2	443.25	1.0604958838068959
-1	12751	1	280.75	1.10833057888089	1	12751	2	369.3333333333333	1.3416504398884601
-1	12779	1	331.0	1.0416902073200347	1	12779	2	359.0	1.028978056175258
-1	13077	1	367.6666666666667	1.345523904195734	1	13077	2	358.6666666666667	1.5132429058096555
+1	12751	1	280.75	1.10833057888089	1	12751	2	369.3333333333333	1.34165043988846
+1	12779	1	331.0	1.041690207320035	1	12779	2	359.0	1.028978056175258
+1	13077	1	367.6666666666667	1.3455239041957343	1	13077	2	358.6666666666667	1.513242905809656
 1	13191	1	260.25	1.063569632291568	1	13191	2	405.0	1.0197999172180061
 1	13561	1	335.25	1.2609616961776389	1	13561	2	240.0	1.0513604502245155
 1	13935	1	311.75	1.0399289695412326	1	13935	2	275.0	1.0367527180321774
@@ -49,21 +49,21 @@
 1	14719	1	209.0	1.0411509639707628	1	14719	2	489.0	1.376616882800804
 1	15345	1	148.5	1.5295784035794022	1	15345	2	246.5	1.5087987747231526
 1	15427	1	482.75	1.0124238928335043	1	15427	2	333.25	1.2724770126308678
-1	15647	1	201.66666666666666	1.2857931876095743	1	15647	2	249.25	1.3648172990142162
+1	15647	1	201.66666666666666	1.2857931876095743	1	15647	2	249.25	1.364817299014216
 1	16079	1	280.5	1.2444757416128578	1	16079	2	361.25	1.0737805704078724
 1	16223	1	245.66666666666666	1.0601148956398867	1	16223	2	412.6666666666667	1.0671231071323724
 1	16289	1	171.0	1.087263313842661	1	16289	2	316.5	1.3695306694071203
 1	16451	1	300.0	1.2516507618459831	1	16451	2	467.5	1.2962363881858208
-1	17051	1	349.75	1.1346423819845488	1	17051	2	319.75	1.0379354897438076
+1	17051	1	349.75	1.134642381984549	1	17051	2	319.75	1.0379354897438076
 2	71	1	221.5	1.563974108334745	2	71	2	309.0	1.4917057895885681
-2	833	1	363.3333333333333	1.0422813802180275	2	833	2	158.75	1.213089173626855
+2	833	1	363.3333333333333	1.0422813802180275	2	833	2	158.75	1.2130891736268552
 2	969	1	282.0	1.1374340344037195	2	969	2	386.0	1.1371001187232186
 2	1401	1	249.0	1.3206237689155225	2	1401	2	296.6666666666667	1.2868121931744592
-2	1681	1	337.75	1.052156598827189	2	1681	2	252.75	1.03179106854817
-2	1991	1	356.0	1.1336790046919882	2	1991	2	273.25	1.3324196418089087
+2	1681	1	337.75	1.0521565988271888	2	1681	2	252.75	1.03179106854817
+2	1991	1	356.0	1.1336790046919885	2	1991	2	273.25	1.3324196418089087
 2	2031	1	407.5	1.0209876826110387	2	2031	2	418.75	1.0053388632912839
 2	2481	1	319.75	1.116026660755801	2	2481	2	378.3333333333333	1.0597185274084644
-2	2725	1	349.75	1.1148704918064747	2	2725	2	265.6666666666667	1.5462972148471539
+2	2725	1	349.75	1.1148704918064747	2	2725	2	265.6666666666667	1.5462972148471537
 2	3073	1	385.0	1.1020845844189129	2	3073	2	231.75	1.0884989063827268
 2	3769	1	334.0	1.19542966145639	2	3769	2	335.0	1.049464958250903
 2	4085	1	327.75	1.1005413873145125	2	4085	2	281.75	1.0187608064801108
@@ -71,37 +71,37 @@
 2	5099	1	418.6666666666667	1.0680900887970652	2	5099	2	428.6666666666667	1.035237277800474
 2	5211	1	157.0	1.069551742865467	2	5211	2	270.25	1.1940200809618973
 2	5769	1	341.25	1.2723132696563741	2	5769	2	267.0	1.181579184871904
-2	6103	1	194.33333333333334	1.5160670179307387	2	6103	2	158.5	1.2743698636165062
+2	6103	1	194.33333333333334	1.5160670179307387	2	6103	2	158.5	1.274369863616506
 2	6243	1	168.5	1.0732108100023512	2	6243	2	386.75	1.083290260548026
 2	6489	1	268.0	1.6956372368432266	2	6489	2	389.0	1.4105780519299767
-2	6585	1	183.75	1.1151937581317737	2	6585	2	353.75	1.09397071467533
-2	6767	1	341.0	1.093163984134538	2	6767	2	235.0	1.1399543855818015
+2	6585	1	183.75	1.1151937581317735	2	6585	2	353.75	1.09397071467533
+2	6767	1	341.0	1.093163984134538	2	6767	2	235.0	1.1399543855818017
 2	7411	1	460.0	1.0628293255143475	2	7411	2	297.5	1.000576535072398
-2	8489	1	126.75	1.341646295852091	2	8489	2	398.25	1.0041124840252154
-2	8633	1	218.5	1.4645189740171023	2	8633	2	230.25	1.3116963014576621
+2	8489	1	126.75	1.3416462958520907	2	8489	2	398.25	1.0041124840252154
+2	8633	1	218.5	1.4645189740171023	2	8633	2	230.25	1.311696301457662
 2	8807	1	417.25	1.025811293001377	2	8807	2	356.25	1.1079730633089233
-2	8883	1	249.25	1.111227178221055	2	8883	2	189.25	1.010075485139798
-2	9253	1	413.3333333333333	1.1606659948102405	2	9253	2	465.0	1.0242445824028785
+2	8883	1	249.25	1.1112271782210548	2	8883	2	189.25	1.010075485139798
+2	9253	1	413.3333333333333	1.1606659948102402	2	9253	2	465.0	1.0242445824028785
 2	9467	1	108.25	1.091122388968745	2	9467	2	107.0	1.0309220361224432
 2	9561	1	190.5	1.0303032513373167	2	9561	2	271.0	1.2058349535542998
 2	9575	1	452.5	1.0494492226058958	2	9575	2	155.75	1.1534056685643725
 2	9903	1	322.75	1.0761080062556017	2	9903	2	387.3333333333333	1.2612406773451965
 2	10535	1	324.3333333333333	1.0571104035094094	2	10535	2	310.25	1.004063499519034
-2	10955	1	356.0	1.1582813310955151	2	10955	2	339.0	1.0702532136254492
+2	10955	1	356.0	1.1582813310955151	2	10955	2	339.0	1.070253213625449
 2	12089	1	212.0	1.0827501145734215	2	12089	2	173.33333333333334	1.0739812153327328
 2	12633	1	402.75	1.0071362075740695	2	12633	2	367.0	1.1270535638607155
 2	12765	1	308.0	1.1188476882701337	2	12765	2	347.0	1.1571744590236304
 2	13077	1	277.0	1.2323360849352152	2	13077	2	223.5	1.139400344912951
-2	13687	1	361.25	1.0107341657610867	2	13687	2	468.25	1.00984291842181
+2	13687	1	361.25	1.0107341657610864	2	13687	2	468.25	1.00984291842181
 2	14025	1	371.75	1.0150136083050016	2	14025	2	141.0	1.2543170259746204
 2	14117	1	298.5	1.0251238034747268	2	14117	2	220.25	1.4152684465941177
 2	14347	1	366.0	1.0327892946261927	2	14347	2	369.75	1.0185739900192863
 2	14697	1	397.75	1.008120541714483	2	14697	2	328.75	1.160849558029165
-2	14987	1	146.75	1.0290040643611427	2	14987	2	436.5	1.0447681541795648
-2	15321	1	527.0	1.2102662554654002	2	15321	2	298.75	1.1309098406792115
+2	14987	1	146.75	1.0290040643611427	2	14987	2	436.5	1.0447681541795646
+2	15321	1	527.0	1.2102662554654002	2	15321	2	298.75	1.1309098406792113
 2	15347	1	243.0	1.22262397963835	2	15347	2	310.75	1.2036584852655927
 2	15533	1	223.0	1.096511132968014	2	15533	2	330.0	1.4967488488790472
-2	15839	1	353.0	1.5063684437542906	2	15839	2	255.5	1.2362393182894105
+2	15839	1	353.0	1.5063684437542906	2	15839	2	255.5	1.2362393182894102
 2	16107	1	376.0	1.0133246306103783	2	16107	2	364.75	1.0688677983776655
 2	16749	1	200.0	1.0944709528656604	2	16749	2	438.25	1.0360646618074532
 2	17329	1	321.3333333333333	1.3093279467658028	2	17329	2	490.25	1.0756580649722338
@@ -112,24 +112,24 @@
 3	2403	1	270.75	1.3258705678179297	3	2403	2	384.0	1.0903987183011015
 3	2541	1	364.75	1.079213526102894	3	2541	2	550.5	1.0545588871101828
 3	2727	1	303.75	1.030164700291085	3	2727	2	219.25	1.3822091831959378
-3	3207	1	383.75	1.0854588026477912	3	3207	2	258.25	1.2113392480929657
+3	3207	1	383.75	1.0854588026477912	3	3207	2	258.25	1.211339248092966
 3	3373	1	404.5	1.0143374143806878	3	3373	2	171.25	1.2856653974632997
 3	3969	1	234.25	1.0422831793090308	3	3969	2	217.25	1.4215490653321186
-3	4407	1	438.5	1.0656663545113982	3	4407	2	330.75	1.0244403968428872
-3	6051	1	289.75	1.263888088484336	3	6051	2	439.0	1.1045769245192738
+3	4407	1	438.5	1.0656663545113985	3	4407	2	330.75	1.0244403968428872
+3	6051	1	289.75	1.2638880884843362	3	6051	2	439.0	1.1045769245192738
 3	6521	1	381.0	1.001568291887839	3	6521	2	437.75	1.0365149332658259
 3	6691	1	377.0	1.1090737292917523	3	6691	2	380.5	1.0581301250281556
 3	6757	1	282.5	1.089500938688411	3	6757	2	345.25	1.2263828747838474
 3	6915	1	420.6666666666667	1.0468345634906968	3	6915	2	292.5	1.2506171072716117
-3	7207	1	329.6666666666667	1.5954482160720393	3	7207	2	414.5	1.017919707908937
-3	7889	1	318.5	1.2879030049985103	3	7889	2	291.3333333333333	1.0042925323922787
+3	7207	1	329.6666666666667	1.5954482160720398	3	7207	2	414.5	1.017919707908937
+3	7889	1	318.5	1.2879030049985103	3	7889	2	291.3333333333333	1.004292532392279
 3	8559	1	356.25	1.0065193461695627	3	8559	2	393.5	1.0128831652141206
 3	8829	1	364.25	1.0792852260446875	3	8829	2	350.25	1.1133912240741104
 3	9555	1	377.0	1.1308469328910158	3	9555	2	444.75	1.0171588175042316
-3	9623	1	331.3333333333333	1.1551289271934477	3	9623	2	284.6666666666667	1.030372442625732
-3	9813	1	343.75	1.0516953753508833	3	9813	2	384.6666666666667	1.0815005906604849
+3	9623	1	331.3333333333333	1.1551289271934477	3	9623	2	284.6666666666667	1.0303724426257317
+3	9813	1	343.75	1.0516953753508833	3	9813	2	384.6666666666667	1.0815005906604847
 3	9881	1	351.5	1.1788820554157222	3	9881	2	287.75	1.0909386089510784
-3	10035	1	378.25	1.0216399511791374	3	10035	2	364.25	1.1567922653398062
+3	10035	1	378.25	1.0216399511791376	3	10035	2	364.25	1.1567922653398062
 3	10509	1	420.25	1.0548626901275737	3	10509	2	368.25	1.1820633359473098
 3	10547	1	182.33333333333334	1.5325641514869042	3	10547	2	320.25	1.302441844373152
 3	10743	1	233.25	1.2793022354241157	3	10743	2	110.25	1.107204634127507
@@ -137,27 +137,27 @@
 3	11959	1	358.0	1.0684835251792983	3	11959	2	268.5	1.0089856798911991
 3	12043	1	169.25	1.033093808880221	3	12043	2	377.25	1.0161962499718764
 3	12157	1	326.3333333333333	1.0022318670551493	3	12157	2	396.3333333333333	1.0287818050404884
-3	12433	1	199.75	1.307258924061962	3	12433	2	478.5	1.016474207194739
-3	12867	1	278.25	1.640380012394735	3	12867	2	350.75	1.2006933321742796
+3	12433	1	199.75	1.307258924061962	3	12433	2	478.5	1.0164742071947392
+3	12867	1	278.25	1.6403800123947352	3	12867	2	350.75	1.2006933321742796
 3	13499	1	281.0	1.1431965457521192	3	13499	2	446.75	1.0331520262675382
 3	14589	1	266.5	1.1143243921844956	3	14589	2	334.3333333333333	1.1453146816350117
 3	15207	1	300.25	1.4844611263753311	3	15207	2	564.0	1.0004808712533066
-3	15395	1	258.25	1.0513876898285774	3	15395	2	307.5	1.1382253193107217
+3	15395	1	258.25	1.0513876898285774	3	15395	2	307.5	1.138225319310722
 3	15973	1	477.5	1.203932592889347	3	15973	2	286.0	1.287229424199907
 3	16233	1	260.6666666666667	1.120423550056809	3	16233	2	210.5	1.1788143336685517
 3	16267	1	456.0	1.00422634651884	3	16267	2	364.3333333333333	1.4818855428309732
 3	16605	1	394.25	1.1137413572906036	3	16605	2	296.25	1.2885892655671596
 3	16949	1	155.75	1.1186177285449939	3	16949	2	229.5	1.0289469196724543
-3	17319	1	364.75	1.2709364445674023	3	17319	2	359.25	1.1578751434862422
+3	17319	1	364.75	1.2709364445674023	3	17319	2	359.25	1.157875143486242
 4	947	1	247.5	1.6933181813486973	4	947	2	203.33333333333334	1.205433145161931
 4	1895	1	354.75	1.2397341541992284	4	1895	2	383.75	1.0893076992144062
-4	3429	1	358.5	1.0665593354923446	4	3429	2	346.0	1.251948930065546
+4	3429	1	358.5	1.0665593354923444	4	3429	2	346.0	1.251948930065546
 4	4559	1	215.0	1.2432329900432981	4	4559	2	360.75	1.0333545857247315
 4	4773	1	328.25	1.0509836592960142	4	4773	2	330.5	1.0062580596877206
 4	4885	1	151.0	1.3205570350636184	4	4885	2	377.25	1.0489035237886835
 4	4915	1	289.25	1.0863929490514617	4	4915	2	368.0	1.069658554605372
-4	5043	1	476.0	1.0155964276489484	4	5043	2	244.25	1.356289369084929
-4	5095	1	334.0	1.225886129135316	4	5095	2	390.25	1.0621788063332436
+4	5043	1	476.0	1.0155964276489484	4	5043	2	244.25	1.3562893690849287
+4	5095	1	334.0	1.2258861291353158	4	5095	2	390.25	1.0621788063332436
 4	5193	1	263.3333333333333	1.250170954501139	4	5193	2	323.0	1.0979616195802828
 4	5975	1	434.0	1.0233614450980864	4	5975	2	359.75	1.1979356900084084
 4	6251	1	285.0	1.121538025585264	4	6251	2	335.5	1.1602192523957113
@@ -165,56 +165,56 @@
 4	6487	1	452.75	1.0710626602211524	4	6487	2	350.5	1.17164756896522
 4	6619	1	430.0	1.0007262551157654	4	6619	2	226.25	1.548557450713079
 4	7191	1	260.75	1.0012666837154778	4	7191	2	195.25	1.5372675520067365
-4	7427	1	239.5	1.4183567144406795	4	7427	2	373.25	1.0429791976763843
-4	8453	1	314.75	1.0259714909803297	4	8453	2	376.75	1.0099023931660849
+4	7427	1	239.5	1.4183567144406797	4	7427	2	373.25	1.0429791976763843
+4	8453	1	314.75	1.02597149098033	4	8453	2	376.75	1.0099023931660849
 4	8781	1	518.5	1.100549995019371	4	8781	2	521.0	1.123770469908755
-4	9571	1	314.0	1.216857824298178	4	9571	2	309.0	1.089216738940079
-4	9587	1	248.0	1.4981887260612339	4	9587	2	248.0	1.0064987840475923
-4	10333	1	321.0	1.1486107061789543	4	10333	2	317.0	1.0469226317412668
+4	9571	1	314.0	1.2168578242981778	4	9571	2	309.0	1.089216738940079
+4	9587	1	248.0	1.4981887260612339	4	9587	2	248.0	1.0064987840475925
+4	10333	1	321.0	1.1486107061789543	4	10333	2	317.0	1.0469226317412665
 4	10969	1	186.66666666666666	1.104420616413504	4	10969	2	307.0	1.1094764105733856
 4	10993	1	446.0	1.0092376322965588	4	10993	2	206.66666666666666	1.2355333519949105
-4	11571	1	342.5	1.1426283993548387	4	11571	2	304.6666666666667	1.0319943224652848
+4	11571	1	342.5	1.142628399354839	4	11571	2	304.6666666666667	1.0319943224652848
 4	11979	1	225.33333333333334	1.4670656155247088	4	11979	2	438.25	1.1389926990347663
 4	13409	1	312.3333333333333	1.3427502512651468	4	13409	2	336.25	1.1081978302033695
 4	13443	1	417.75	1.0217796082231347	4	13443	2	334.0	1.3076430852966527
 4	13567	1	271.5	1.0087621621432743	4	13567	2	370.0	1.4557686063410562
 4	13683	1	318.75	1.0149827729946173	4	13683	2	363.5	1.0781154578332095
-4	14143	1	367.0	1.0441799438931547	4	14143	2	290.0	1.1933060754121454
+4	14143	1	367.0	1.0441799438931547	4	14143	2	290.0	1.1933060754121452
 4	14401	1	342.75	1.1836559036030756	4	14401	2	344.25	1.2067083116272619
 4	14693	1	447.25	1.0516674911652102	4	14693	2	498.0	1.3517382644369342
-4	14877	1	414.3333333333333	1.1707723877930458	4	14877	2	282.5	1.5830582944346865
+4	14877	1	414.3333333333333	1.1707723877930458	4	14877	2	282.5	1.5830582944346863
 4	15063	1	378.25	1.1128192588166839	4	15063	2	444.0	1.0632777688204158
 4	15275	1	335.5	1.1536382939175558	4	15275	2	292.6666666666667	1.297831368103705
-4	15509	1	296.3333333333333	1.0246740536582173	4	15509	2	317.6666666666667	1.4470364565078238
+4	15509	1	296.3333333333333	1.0246740536582173	4	15509	2	317.6666666666667	1.447036456507824
 4	15969	1	423.0	1.0472875497665224	4	15969	2	342.5	1.2511769371808568
-4	16627	1	485.5	1.0151460895716244	4	16627	2	161.25	1.353325272620004
+4	16627	1	485.5	1.0151460895716244	4	16627	2	161.25	1.3533252726200042
 4	16641	1	521.5	1.1050662064564454	4	16641	2	221.5	1.0308590510025117
-4	16751	1	549.5	1.082214382125362	4	16751	2	223.33333333333334	1.3377897605859543
+4	16751	1	549.5	1.082214382125362	4	16751	2	223.33333333333334	1.3377897605859546
 5	75	1	333.0	1.2656318762849212	5	75	2	226.0	1.0358078507992579
-5	125	1	441.6666666666667	1.0959714573775443	5	125	2	331.5	1.0081148286008836
+5	125	1	441.6666666666667	1.0959714573775443	5	125	2	331.5	1.0081148286008834
 5	431	1	159.0	1.1061794752181042	5	431	2	304.0	1.1224225373103636
 5	671	1	403.3333333333333	1.0056014147334147	5	671	2	281.3333333333333	1.3366835222521476
-5	745	1	466.75	1.0109065525578562	5	745	2	351.0	1.1147212881684183
+5	745	1	466.75	1.0109065525578564	5	745	2	351.0	1.1147212881684183
 5	1701	1	374.0	1.086445817024878	5	1701	2	385.0	1.3306308700750535
 5	2521	1	360.75	1.099248234149208	5	2521	2	265.5	1.1724077694006725
 5	2855	1	406.0	1.4037637084639343	5	2855	2	183.25	1.0662249910239627
 5	3137	1	271.25	1.575453220592864	5	3137	2	380.0	1.0834203388600319
 5	3279	1	299.5	1.053669716363755	5	3279	2	276.75	1.4458878093841827
 5	3467	1	294.0	1.1477294638716873	5	3467	2	349.6666666666667	1.1674223692818808
-5	4463	1	338.0	1.0699320081481432	5	4463	2	273.5	1.2369797321835678
+5	4463	1	338.0	1.0699320081481434	5	4463	2	273.5	1.2369797321835674
 5	4719	1	340.5	1.0571857801805542	5	4719	2	423.6666666666667	1.0255000206713487
 5	4739	1	281.3333333333333	1.0242971514325028	5	4739	2	383.5	1.0334337390189823
 5	4839	1	310.25	1.035903440911969	5	4839	2	232.0	1.2954193820330193
 5	4979	1	359.5	1.1046408074063157	5	4979	2	323.75	1.1704250950730493
-5	5401	1	219.25	1.2773870241916034	5	5401	2	203.0	1.0915675205208268
+5	5401	1	219.25	1.2773870241916034	5	5401	2	203.0	1.091567520520827
 5	5635	1	370.0	1.0227054644459215	5	5635	2	351.6666666666667	1.3777664464428738
 5	5797	1	403.0	1.0234882286709048	5	5797	2	457.5	1.003704010389515
 5	5901	1	360.25	1.125963126923387	5	5901	2	376.0	1.0095038425625151
-5	6129	1	419.25	1.0169180165631466	5	6129	2	359.5	1.0478889386811094
-5	6213	1	351.6666666666667	1.2056212536733542	5	6213	2	361.5	1.116840805855076
+5	6129	1	419.25	1.0169180165631466	5	6129	2	359.5	1.0478889386811092
+5	6213	1	351.6666666666667	1.2056212536733542	5	6213	2	361.5	1.1168408058550758
 5	6479	1	301.3333333333333	1.2780010449304997	5	6479	2	395.75	1.1779743547973778
 5	7333	1	227.0	1.461134600265013	5	7333	2	243.75	1.1789162497808614
-5	7923	1	358.0	1.1046770912449826	5	7923	2	342.3333333333333	1.1607781125264067
+5	7923	1	358.0	1.1046770912449826	5	7923	2	342.3333333333333	1.1607781125264065
 5	8737	1	217.25	1.0742136400907767	5	8737	2	403.5	1.044208050277477
 5	8945	1	344.25	1.1414837656266814	5	8945	2	298.0	1.0008366993492595
 5	8993	1	399.0	1.1873722892104934	5	8993	2	371.75	1.131635380135078
@@ -225,18 +225,18 @@
 5	11795	1	395.5	1.0104473172545645	5	11795	2	430.75	1.131062588545398
 5	12017	1	347.75	1.1682379397902216	5	12017	2	308.0	1.1593227968413717
 5	12027	1	456.25	1.0262940073409625	5	12027	2	390.3333333333333	1.1142770095355214
-5	13583	1	430.3333333333333	1.042383929052728	5	13583	2	256.25	1.541034827728967
+5	13583	1	430.3333333333333	1.0423839290527277	5	13583	2	256.25	1.541034827728967
 5	13651	1	272.3333333333333	1.169523124191674	5	13651	2	330.5	1.1901873530915061
-5	13783	1	419.5	1.0584699696320432	5	13783	2	339.5	1.0680909505443135
+5	13783	1	419.5	1.0584699696320434	5	13783	2	339.5	1.0680909505443135
 5	13859	1	318.0	1.1422239044797105	5	13859	2	380.25	1.0564496237557859
-5	14537	1	206.0	1.2283439997338772	5	14537	2	357.75	1.0387982680964687
-5	15309	1	276.3333333333333	1.2987590579253725	5	15309	2	409.0	1.0102406245856923
-5	15883	1	385.3333333333333	1.0124777526338784	5	15883	2	173.25	1.3562238248195932
+5	14537	1	206.0	1.2283439997338772	5	14537	2	357.75	1.038798268096469
+5	15309	1	276.3333333333333	1.2987590579253727	5	15309	2	409.0	1.0102406245856923
+5	15883	1	385.3333333333333	1.0124777526338786	5	15883	2	173.25	1.3562238248195932
 5	15935	1	293.5	1.0187659410172984	5	15935	2	271.25	1.4000947515083553
 5	15949	1	241.5	1.148665986924513	5	15949	2	235.0	1.4072887931753781
 5	16037	1	327.25	1.1307617323781536	5	16037	2	412.6666666666667	1.1830200153757018
 5	16291	1	380.5	1.0549595028454235	5	16291	2	411.6666666666667	1.034921399084621
-5	16459	1	370.0	1.275649908122718	5	16459	2	265.75	1.2988191692443933
+5	16459	1	370.0	1.275649908122718	5	16459	2	265.75	1.2988191692443931
 5	16901	1	305.25	1.1043010533964068	5	16901	2	186.5	1.0231269284283626
 5	17199	1	376.5	1.1038969766440296	5	17199	2	374.0	1.0873031171988548
 5	17387	1	298.3333333333333	1.3848741714581234	5	17387	2	327.6666666666667	1.3670875783476784
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49.out
index 5d52ab6265..5881791e96 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49.out
@@ -1,35 +1,35 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q49 --
-catalog	17543	0.5714	1	1
-catalog	14513	0.6354	2	2
-catalog	12577	0.6559	3	3
-catalog	3411	0.7164	4	4
-catalog	361	0.7464	5	5
-catalog	8189	0.7469	6	6
-catalog	8929	0.7625	7	7
-catalog	14869	0.7717	8	8
-catalog	9295	0.7789	9	9
-catalog	16215	0.7906	10	10
-store	9471	0.7750	1	1
-store	9797	0.8000	2	2
-store	12641	0.8160	3	3
-store	15839	0.8163	4	4
-store	1171	0.8241	5	5
-store	11589	0.8265	6	6
-store	6661	0.9220	7	7
-store	13013	0.9420	8	8
-store	14925	0.9647	9	9
-store	4063	1.0000	10	10
-store	9029	1.0000	10	10
-web	7539	0.5900	1	1
-web	3337	0.6265	2	2
-web	15597	0.6619	3	3
-web	2915	0.6986	4	4
-web	11933	0.7171	5	5
-web	3305	0.7375	6	16
-web	483	0.8000	7	6
-web	85	0.8571	8	7
-web	97	0.9036	9	8
-web	117	0.9250	10	9
-web	5299	0.9270	11	10
+catalog	17543	0.57142857	1	1
+catalog	14513	0.63541666	2	2
+catalog	12577	0.65591397	3	3
+catalog	3411	0.71641791	4	4
+catalog	361	0.74647887	5	5
+catalog	8189	0.74698795	6	6
+catalog	8929	0.76250000	7	7
+catalog	14869	0.77173913	8	8
+catalog	9295	0.77894736	9	9
+catalog	16215	0.79069767	10	10
+store	9471	0.77500000	1	1
+store	9797	0.80000000	2	2
+store	12641	0.81609195	3	3
+store	15839	0.81632653	4	4
+store	1171	0.82417582	5	5
+store	11589	0.82653061	6	6
+store	6661	0.92207792	7	7
+store	13013	0.94202898	8	8
+store	14925	0.96470588	9	9
+store	4063	1.00000000	10	10
+store	9029	1.00000000	10	10
+web	7539	0.59000000	1	1
+web	3337	0.62650602	2	2
+web	15597	0.66197183	3	3
+web	2915	0.69863013	4	4
+web	11933	0.71717171	5	5
+web	3305	0.73750000	6	16
+web	483	0.80000000	7	6
+web	85	0.85714285	8	7
+web	97	0.90361445	9	8
+web	117	0.92500000	10	9
+web	5299	0.92708333	11	10
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49_rewrite.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49_rewrite.out
index 9e806d0ec5..c7261d1c46 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49_rewrite.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q49_rewrite.out
@@ -1,35 +1,35 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q49_rewrite --
-catalog	17543	0.5714	1	1
-catalog	14513	0.6354	2	2
-catalog	12577	0.6559	3	3
-catalog	3411	0.7164	4	4
-catalog	361	0.7464	5	5
-catalog	8189	0.7469	6	6
-catalog	8929	0.7625	7	7
-catalog	14869	0.7717	8	8
-catalog	9295	0.7789	9	9
-catalog	16215	0.7906	10	10
-store	9471	0.7750	1	1
-store	9797	0.8000	2	2
-store	12641	0.8160	3	3
-store	15839	0.8163	4	4
-store	1171	0.8241	5	5
-store	11589	0.8265	6	6
-store	6661	0.9220	7	7
-store	13013	0.9420	8	8
-store	14925	0.9647	9	9
-store	4063	1.0000	10	10
-store	9029	1.0000	10	10
-web	7539	0.5900	1	1
-web	3337	0.6265	2	2
-web	15597	0.6619	3	3
-web	2915	0.6986	4	4
-web	11933	0.7171	5	5
-web	3305	0.7375	6	16
-web	483	0.8000	7	6
-web	85	0.8571	8	7
-web	97	0.9036	9	8
-web	117	0.9250	10	9
-web	5299	0.9270	11	10
+catalog	17543	0.57142857	1	1
+catalog	14513	0.63541666	2	2
+catalog	12577	0.65591397	3	3
+catalog	3411	0.71641791	4	4
+catalog	361	0.74647887	5	5
+catalog	8189	0.74698795	6	6
+catalog	8929	0.76250000	7	7
+catalog	14869	0.77173913	8	8
+catalog	9295	0.77894736	9	9
+catalog	16215	0.79069767	10	10
+store	9471	0.77500000	1	1
+store	9797	0.80000000	2	2
+store	12641	0.81609195	3	3
+store	15839	0.81632653	4	4
+store	1171	0.82417582	5	5
+store	11589	0.82653061	6	6
+store	6661	0.92207792	7	7
+store	13013	0.94202898	8	8
+store	14925	0.96470588	9	9
+store	4063	1.00000000	10	10
+store	9029	1.00000000	10	10
+web	7539	0.59000000	1	1
+web	3337	0.62650602	2	2
+web	15597	0.66197183	3	3
+web	2915	0.69863013	4	4
+web	11933	0.71717171	5	5
+web	3305	0.73750000	6	16
+web	483	0.80000000	7	6
+web	85	0.85714285	8	7
+web	97	0.90361445	9	8
+web	117	0.92500000	10	9
+web	5299	0.92708333	11	10
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q58.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q58.out
index 6fe73aa755..acb5f48542 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q58.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q58.out
@@ -1,6 +1,6 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q58 --
-AAAAAAAACNGBAAAA	1900.15	11.00	1950.92	11.00	1829.52	10.00	1893.53
-AAAAAAAAIDOAAAAA	6605.22	11.00	6078.33	10.00	6338.25	11.00	6340.60
-AAAAAAAAJMFCAAAA	3608.52	11.00	3590.47	11.00	3305.82	10.00	3501.60
+AAAAAAAACNGBAAAA	1900.15	11.15	1950.92	11.45	1829.52	10.74	1893.530000
+AAAAAAAAIDOAAAAA	6605.22	11.57	6078.33	10.65	6338.25	11.11	6340.600000
+AAAAAAAAJMFCAAAA	3608.52	11.45	3590.47	11.39	3305.82	10.49	3501.603333
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q59.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q59.out
index f83081cd25..bf9493bb8f 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q59.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q59.out
@@ -1,103 +1,103 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q59 --
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5271	1.36	3.08	0.32	0.48	\N	0.75	1.84
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5272	1.09	0.75	0.68	0.98	\N	1.33	0.99
-able	AAAAAAAACAAAAAAA	5273	1.19	1.02	0.47	0.63	\N	1.49	0.57
-able	AAAAAAAACAAAAAAA	5273	1.19	1.02	0.47	0.63	\N	1.49	0.57
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5271	1.362651	3.086395	0.322088	0.480423	\N	0.759840	1.845486
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5272	1.096895	0.758347	0.680007	0.987386	\N	1.333547	0.992338
+able	AAAAAAAACAAAAAAA	5273	1.197285	1.027150	0.474951	0.632462	\N	1.492328	0.574005
+able	AAAAAAAACAAAAAAA	5273	1.197285	1.027150	0.474951	0.632462	\N	1.492328	0.574005
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q61.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q61.out
index fb326844b2..eb54380a79 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q61.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q61.out
@@ -1,4 +1,4 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q61 --
-2894229.70	5493575.41	52.6800
+2894229.70	5493575.41	52.68389800
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q66.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q66.out
index dc2ebe3604..9eec29fdfa 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q66.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q66.out
@@ -1,8 +1,8 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q66 --
 	\N	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	9597806.95	11121820.57	8670867.91	8994786.04	10887248.09	14187671.36	9732598.41	19798897.07	21007842.34	21495513.67	34795669.17	33122997.94	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	21913594.59	32518476.51	24885662.72	25698343.86	33735910.61	35527031.58	25465193.48	53623238.66	51409986.76	54159173.90	92227043.25	83435390.84
-Bad cards must make.	621234	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	9506753.46	8008140.33	6116769.63	11973045.15	7756254.92	5352978.49	13733996.10	16418794.37	17212743.32	17042707.41	34304935.61	35324164.21	15.30	12.88	9.83	19.26	12.47	8.61	22.10	26.42	27.70	27.42	55.21	56.85	30534943.77	24481685.94	22178710.81	25695798.18	29954903.78	18084140.05	30805576.13	47156887.22	51158588.86	55759942.80	86253544.16	83451555.63
-Conventional childr	977787	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	8860645.55	14415813.74	6761497.23	11820654.76	8246260.69	6636877.49	11434492.25	25673812.14	23074206.96	21834581.94	26894900.53	33575091.74	9.05	14.73	6.90	12.08	8.43	6.78	11.69	26.25	23.58	22.32	27.50	34.33	23836085.83	32073313.37	25037904.18	22659895.86	21757401.03	24451608.10	21933001.85	55996703.43	57371880.44	62087214.51	82849910.15	88970319.31
-Doors canno	294242	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	6355232.31	10198920.36	10246200.97	12209716.50	8566998.28	8806316.81	9789405.60	16466584.88	26443785.61	27016047.80	33660589.67	27462468.62	21.58	34.65	34.81	41.49	29.10	29.91	33.26	55.95	89.86	91.81	114.38	93.32	22645143.09	24487254.60	24925759.42	30503655.27	26558160.29	20976233.52	29895796.09	56002198.38	53488158.53	76287235.46	82483747.59	88088266.69
-Important issues liv	138504	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	11748784.55	14351305.77	9896470.93	7990874.78	8879247.90	7362383.09	10011144.75	17741201.32	21346976.05	18074978.16	29675125.64	32545325.29	84.81	103.61	71.45	57.69	64.10	53.15	72.27	128.08	154.12	130.49	214.25	234.97	27204167.15	25980378.13	19943398.93	25710421.13	19484481.03	26346611.48	25075158.43	54094778.13	41066732.11	54547058.28	72465962.92	92770328.27
+Bad cards must make.	621234	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	9506753.46	8008140.33	6116769.63	11973045.15	7756254.92	5352978.49	13733996.10	16418794.37	17212743.32	17042707.41	34304935.61	35324164.21	15.303015	12.890698	9.846160	19.273002	12.485238	8.616685	22.107604	26.429322	27.707341	27.433635	55.220633	56.861285	30534943.77	24481685.94	22178710.81	25695798.18	29954903.78	18084140.05	30805576.13	47156887.22	51158588.86	55759942.80	86253544.16	83451555.63
+Conventional childr	977787	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	8860645.55	14415813.74	6761497.23	11820654.76	8246260.69	6636877.49	11434492.25	25673812.14	23074206.96	21834581.94	26894900.53	33575091.74	9.061938	14.743305	6.915101	12.089191	8.433596	6.787651	11.694256	26.257059	23.598398	22.330611	27.505888	34.337837	23836085.83	32073313.37	25037904.18	22659895.86	21757401.03	24451608.10	21933001.85	55996703.43	57371880.44	62087214.51	82849910.15	88970319.31
+Doors canno	294242	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	6355232.31	10198920.36	10246200.97	12209716.50	8566998.28	8806316.81	9789405.60	16466584.88	26443785.61	27016047.80	33660589.67	27462468.62	21.598657	34.661674	34.822359	41.495491	29.115483	29.928822	33.269911	55.962726	89.870873	91.815742	114.397637	93.332931	22645143.09	24487254.60	24925759.42	30503655.27	26558160.29	20976233.52	29895796.09	56002198.38	53488158.53	76287235.46	82483747.59	88088266.69
+Important issues liv	138504	Fairview	Williamson County	TN	United States	DHL,BARIAN	2001	11748784.55	14351305.77	9896470.93	7990874.78	8879247.90	7362383.09	10011144.75	17741201.32	21346976.05	18074978.16	29675125.64	32545325.29	84.826319	103.616542	71.452599	57.694180	64.108240	53.156465	72.280545	128.091616	154.125339	130.501488	214.254646	234.977510	27204167.15	25980378.13	19943398.93	25710421.13	19484481.03	26346611.48	25075158.43	54094778.13	41066732.11	54547058.28	72465962.92	92770328.27
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q78.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q78.out
index c830840849..50010a9bc2 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q78.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q78.out
@@ -1,28 +1,28 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q78 --
-2000	119	51419	0.8	60	52.03	86.53	75	129.9	61.37
+2000	119	51419	0.80	60	52.03	86.53	75	129.90	61.37
 2000	119	51419	0.54	60	52.03	86.53	112	133.58	181.47
-2000	119	51419	0.53	60	52.03	86.53	114	130.74	74.9
-2000	119	51419	0.49	60	52.03	86.53	123	138.96	100.6
+2000	119	51419	0.53	60	52.03	86.53	114	130.74	74.90
+2000	119	51419	0.49	60	52.03	86.53	123	138.96	100.60
 2000	119	51419	0.48	60	52.03	86.53	126	102.57	42.27
 2000	119	51419	0.41	60	52.03	86.53	147	97.44	44.52
 2000	119	51419	0.38	60	52.03	86.53	157	155.41	212.72
 2000	119	51419	0.36	60	52.03	86.53	166	110.48	48.99
 2000	119	51419	0.36	60	52.03	86.53	168	82.94	52.89
-2000	119	51419	0.34	60	52.03	86.53	174	125.7	126.69
+2000	119	51419	0.34	60	52.03	86.53	174	125.70	126.69
 2000	911	75040	0.14	14	38.78	40.41	100	116.03	37.82
 2000	911	75040	0.13	14	38.78	40.41	110	132.32	163.18
-2000	911	75040	0.11	14	38.78	40.41	122	138.2	135.2
-2000	911	75040	0.1	14	38.78	40.41	144	75.49	81.34
-2000	911	75040	0.1	14	38.78	40.41	147	131.37	217.59
-2000	2423	79617	0.08	3	66	18.36	37	112.12	233.76
-2000	2423	79617	0.06	3	66	18.36	49	104.81	200.98
-2000	2423	79617	0.06	3	66	18.36	51	84.99	175.23
-2000	2423	79617	0.05	3	66	18.36	63	159.84	322.59
-2000	2423	79617	0.05	3	66	18.36	65	141.68	227.15
-2000	2423	79617	0.03	3	66	18.36	90	136.62	229.76
-2000	2423	79617	0.03	3	66	18.36	97	141.93	222.05
-2000	2423	79617	0.03	3	66	18.36	115	151.55	229.73
+2000	911	75040	0.11	14	38.78	40.41	122	138.20	135.20
+2000	911	75040	0.10	14	38.78	40.41	144	75.49	81.34
+2000	911	75040	0.10	14	38.78	40.41	147	131.37	217.59
+2000	2423	79617	0.08	3	66.00	18.36	37	112.12	233.76
+2000	2423	79617	0.06	3	66.00	18.36	49	104.81	200.98
+2000	2423	79617	0.06	3	66.00	18.36	51	84.99	175.23
+2000	2423	79617	0.05	3	66.00	18.36	63	159.84	322.59
+2000	2423	79617	0.05	3	66.00	18.36	65	141.68	227.15
+2000	2423	79617	0.03	3	66.00	18.36	90	136.62	229.76
+2000	2423	79617	0.03	3	66.00	18.36	97	141.93	222.05
+2000	2423	79617	0.03	3	66.00	18.36	115	151.55	229.73
 2000	2918	52124	2.61	47	98.06	115.41	18	41.37	59.08
 2000	2918	52124	1.88	47	98.06	115.41	25	96.81	133.45
 2000	2918	52124	1.57	47	98.06	115.41	30	99.87	48.34
@@ -34,7 +34,7 @@
 2000	2918	52124	0.47	47	98.06	115.41	101	62.69	92.69
 2000	2918	52124	0.44	47	98.06	115.41	107	37.55	55.38
 2000	2918	52124	0.43	47	98.06	115.41	109	48.31	43.23
-2000	3397	6926	2.34	68	79.62	75.24	29	131.24	226.6
+2000	3397	6926	2.34	68	79.62	75.24	29	131.24	226.60
 2000	3397	6926	2.34	68	79.62	75.24	29	136.99	260.63
 2000	3397	6926	2.19	68	79.62	75.24	31	99.51	215.26
 2000	3397	6926	1.94	68	79.62	75.24	35	152.97	228.55
@@ -45,44 +45,44 @@
 2000	3397	6926	0.93	68	79.62	75.24	73	171.52	377.85
 2000	3397	6926	0.72	68	79.62	75.24	94	161.82	252.59
 2000	3691	60308	0.32	34	68.21	94.29	105	180.34	229.16
-2000	3691	60308	0.31	34	68.21	94.29	109	159.14	240.7
-2000	3691	60308	0.3	34	68.21	94.29	113	123.26	162.36
-2000	3691	60308	0.27	34	68.21	94.29	127	98.9	154.94
-2000	3691	60308	0.22	34	68.21	94.29	154	100.26	128.4
+2000	3691	60308	0.31	34	68.21	94.29	109	159.14	240.70
+2000	3691	60308	0.30	34	68.21	94.29	113	123.26	162.36
+2000	3691	60308	0.27	34	68.21	94.29	127	98.90	154.94
+2000	3691	60308	0.22	34	68.21	94.29	154	100.26	128.40
 2000	3691	60308	0.22	34	68.21	94.29	156	133.83	189.11
 2000	3691	60308	0.19	34	68.21	94.29	175	89.35	117.26
 2000	3691	60308	0.18	34	68.21	94.29	186	91.37	124.51
 2000	3691	60308	0.18	34	68.21	94.29	187	133.01	126.69
-2000	4142	65211	4.7	94	19.82	9.98	20	148.05	187.8
-2000	4142	65211	1.68	94	19.82	9.98	56	110.7	135.72
+2000	4142	65211	4.70	94	19.82	9.98	20	148.05	187.80
+2000	4142	65211	1.68	94	19.82	9.98	56	110.70	135.72
 2000	4142	65211	1.62	94	19.82	9.98	58	83.84	22.88
-2000	4142	65211	1.24	94	19.82	9.98	76	111.68	65.7
-2000	4142	65211	1.06	94	19.82	9.98	89	109.86	98.3
+2000	4142	65211	1.24	94	19.82	9.98	76	111.68	65.70
+2000	4142	65211	1.06	94	19.82	9.98	89	109.86	98.30
 2000	4142	65211	1.06	94	19.82	9.98	89	125.53	135.36
 2000	4823	40858	0.39	15	29.46	40.47	38	99.56	52.34
 2000	4823	40858	0.33	15	29.46	40.47	46	141.39	64.56
 2000	4823	40858	0.25	15	29.46	40.47	59	149.92	80.27
-2000	4823	40858	0.25	15	29.46	40.47	61	142.3	68.26
-2000	4823	40858	0.19	15	29.46	40.47	80	86.4	57.41
+2000	4823	40858	0.25	15	29.46	40.47	61	142.30	68.26
+2000	4823	40858	0.19	15	29.46	40.47	80	86.40	57.41
 2000	4823	40858	0.15	15	29.46	40.47	102	140.67	141.09
 2000	4823	40858	0.15	15	29.46	40.47	103	158.36	116.23
 2000	4823	40858	0.13	15	29.46	40.47	119	120.56	87.44
 2000	6133	24941	0.52	23	70.89	56.56	44	124.09	15.61
-2000	6133	24941	0.5	23	70.89	56.56	46	170.63	56.37
+2000	6133	24941	0.50	23	70.89	56.56	46	170.63	56.37
 2000	6133	24941	0.34	23	70.89	56.56	67	177.27	49.37
 2000	6133	24941	0.21	23	70.89	56.56	110	147.02	131.12
 2000	6133	24941	0.21	23	70.89	56.56	111	131.01	66.29
-2000	6133	24941	0.2	23	70.89	56.56	114	137.97	24.02
+2000	6133	24941	0.20	23	70.89	56.56	114	137.97	24.02
 2000	6133	24941	0.19	23	70.89	56.56	120	105.45	53.98
-2000	6133	24941	0.18	23	70.89	56.56	128	131.1	33.12
-2000	6133	24941	0.17	23	70.89	56.56	138	114.92	45.3
-2000	6185	67634	0.05	2	47.05	6.78	39	48.48	31.1
+2000	6133	24941	0.18	23	70.89	56.56	128	131.10	33.12
+2000	6133	24941	0.17	23	70.89	56.56	138	114.92	45.30
+2000	6185	67634	0.05	2	47.05	6.78	39	48.48	31.10
 2000	6185	67634	0.04	2	47.05	6.78	53	42.78	21.68
 2000	6185	67634	0.04	2	47.05	6.78	57	95.24	74.91
 2000	6185	67634	0.03	2	47.05	6.78	59	102.78	29.84
 2000	6194	79216	1.63	67	73.25	19.03	41	118.95	57.48
 2000	6194	79216	1.18	67	73.25	19.03	57	96.19	90.36
-2000	6194	79216	1.1	67	73.25	19.03	61	68.13	70.85
+2000	6194	79216	1.10	67	73.25	19.03	61	68.13	70.85
 2000	6194	79216	0.71	67	73.25	19.03	94	124.65	30.15
 2000	6194	79216	0.61	67	73.25	19.03	109	64.31	42.47
 2000	7153	86796	\N	\N	76.24	50.82	86	96.07	26.01
@@ -97,7 +97,7 @@
 2000	7153	86796	\N	\N	76.24	50.82	151	46.15	16.66
 2000	7261	99191	0.11	10	10.48	13.05	87	81.71	107.91
 2000	7261	99191	0.11	10	10.48	13.05	89	157.32	152.17
-2000	7261	99191	0.1	10	10.48	13.05	97	142.38	244.18
+2000	7261	99191	0.10	10	10.48	13.05	97	142.38	244.18
 2000	7261	99191	0.09	10	10.48	13.05	108	116.45	163.96
 2000	7261	99191	0.09	10	10.48	13.05	115	145.82	162.35
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q83.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q83.out
index 77584c11ab..750afeb2cf 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q83.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q83.out
@@ -1,24 +1,24 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q83 --
-AAAAAAAAANECAAAA	34	0.00	9	0.00	18	0.00	20
-AAAAAAAACAOBAAAA	27	0.00	38	0.00	12	0.00	25
-AAAAAAAACBNDAAAA	38	0.00	52	0.00	19	0.00	36
-AAAAAAAACCGAAAAA	30	0.00	18	0.00	18	0.00	22
-AAAAAAAACKBDAAAA	32	0.00	22	0.00	30	0.00	28
-AAAAAAAACOIBAAAA	31	0.00	29	0.00	68	0.00	42
-AAAAAAAAEBLDAAAA	9	0.00	34	0.00	38	0.00	27
-AAAAAAAAELFDAAAA	54	0.00	4	0.00	31	0.00	29
-AAAAAAAAFEBAAAAA	19	0.00	17	0.00	5	0.00	13
-AAAAAAAAFODDAAAA	30	0.00	7	0.00	50	0.00	29
-AAAAAAAAGLMCAAAA	37	0.00	3	0.00	6	0.00	15
-AAAAAAAAHAGDAAAA	16	0.00	15	0.00	33	0.00	21
-AAAAAAAAHCDEAAAA	41	0.00	1	0.00	29	0.00	23
-AAAAAAAALAEBAAAA	19	0.00	21	0.00	51	0.00	30
-AAAAAAAAMBDEAAAA	26	0.00	66	0.00	44	0.00	45
-AAAAAAAAMBGBAAAA	5	0.00	1	0.00	27	0.00	11
-AAAAAAAAMDODAAAA	17	0.00	32	0.00	3	0.00	17
-AAAAAAAAMOIAAAAA	84	0.00	12	0.00	14	0.00	36
-AAAAAAAANMAAAAAA	12	0.00	1	0.00	3	0.00	5
-AAAAAAAAODOAAAAA	5	0.00	3	0.00	30	0.00	12
-AAAAAAAAPJOCAAAA	29	0.00	21	0.00	13	0.00	21
+AAAAAAAAANECAAAA	34	18.58	9	4.92	18	9.83	20.3333
+AAAAAAAACAOBAAAA	27	11.69	38	16.45	12	5.19	25.6666
+AAAAAAAACBNDAAAA	38	11.62	52	15.90	19	5.81	36.3333
+AAAAAAAACCGAAAAA	30	15.15	18	9.09	18	9.09	22.0000
+AAAAAAAACKBDAAAA	32	12.70	22	8.73	30	11.90	28.0000
+AAAAAAAACOIBAAAA	31	8.07	29	7.55	68	17.71	42.6666
+AAAAAAAAEBLDAAAA	9	3.70	34	13.99	38	15.64	27.0000
+AAAAAAAAELFDAAAA	54	20.22	4	1.50	31	11.61	29.6666
+AAAAAAAAFEBAAAAA	19	15.45	17	13.82	5	4.06	13.6666
+AAAAAAAAFODDAAAA	30	11.49	7	2.68	50	19.16	29.0000
+AAAAAAAAGLMCAAAA	37	26.81	3	2.17	6	4.35	15.3333
+AAAAAAAAHAGDAAAA	16	8.33	15	7.81	33	17.19	21.3333
+AAAAAAAAHCDEAAAA	41	19.25	1	0.47	29	13.61	23.6666
+AAAAAAAALAEBAAAA	19	6.96	21	7.69	51	18.68	30.3333
+AAAAAAAAMBDEAAAA	26	6.37	66	16.17	44	10.78	45.3333
+AAAAAAAAMBGBAAAA	5	5.05	1	1.01	27	27.27	11.0000
+AAAAAAAAMDODAAAA	17	10.90	32	20.51	3	1.92	17.3333
+AAAAAAAAMOIAAAAA	84	25.45	12	3.63	14	4.24	36.6666
+AAAAAAAANMAAAAAA	12	25.00	1	2.08	3	6.25	5.3333
+AAAAAAAAODOAAAAA	5	4.38	3	2.63	30	26.31	12.6666
+AAAAAAAAPJOCAAAA	29	15.34	21	11.11	13	6.88	21.0000
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q90.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q90.out
index 995b0a11f6..56515b5190 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q90.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q90.out
@@ -1,4 +1,4 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q90 --
-0.6124
+0.61244019
 
diff --git a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q98.out b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q98.out
index b1942aa1aa..aaa62b3a78 100644
--- a/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q98.out
+++ b/regression-test/data/inverted_index_p1/tpcds_sf1_index/sql/q98.out
@@ -1,2519 +1,2519 @@
 -- This file is automatically generated. You should know what you did if you want to edit this
 -- !q98 --
-AAAAAAAAOJGAAAAA		Books		\N	2102.35	17.17
-AAAAAAAAAAKAAAAA	Small, political activities help great, bad policies. Therefore square features provide on a machines. Rules make over me	Books	arts	2.42	9866.76	3.16
-AAAAAAAAACKBAAAA	Clinical, inc initiatives make specially according to a activities.	Books	arts	6.92	9562.33	3.07
-AAAAAAAAAIJCAAAA	Simply small grounds use exactly effects. Services could kill especially aware, large observers. Civil, relevant years ensure regulations; clear drawings realize actors. Products employ a	Books	arts	1.76	7565.38	2.42
-AAAAAAAAAJIAAAAA	Joint, superior police would use through an restrictions. Buyers ought to contract generally in a efforts. Days cut also sure, frequent s	Books	arts	0.43	1648.81	0.52
-AAAAAAAABFHDAAAA	Little days answer in a emotions; players touch.	Books	arts	2.58	18486.63	5.93
-AAAAAAAABHDCAAAA	Minor heads close common children; recently strong firms provide. Useful, young men ought to create changes. Popular, common regulations might decide. Points fit. Obvious, glad officials 	Books	arts	3.88	5219.85	1.67
-AAAAAAAACBACAAAA	Remaining, main passengers go far sure men. 	Books	arts	4.78	1306.20	0.41
-AAAAAAAACCLCAAAA	Multiple, personal attitudes change so. Major, international companies can give scales. Strong women may take there expensive scores	Books	arts	45.80	3235.97	1.03
-AAAAAAAACKDBAAAA	Positions can win increasingly entire units. Unions used to exclude fairly afraid fans. National fields appear also ways. Great lips print new teachers. Constant, primary deaths expect a little 	Books	arts	3.82	5246.53	1.68
-AAAAAAAACKEAAAAA	Legs appear eventually soci	Books	arts	35.27	372.00	0.11
-AAAAAAAACMDCAAAA	Black, powerful others go now years. Diverse orders might not mean away medium minutes; tight authorities ought to put however for the things	Books	arts	2.75	7486.65	2.40
-AAAAAAAACNEDAAAA	Particularly labour stores get farmers. Hence true records see rel	Books	arts	6.89	6909.55	2.21
-AAAAAAAADCCDAAAA	Glad users understand very almost original jobs. Towns can understand. Supreme, following days work by a parents; german, crucial weapons work sure; fair pictur	Books	arts	7.18	3918.06	1.25
-AAAAAAAADJFCAAAA	Significant, preliminary boys can remain lightly more pale discussion	Books	arts	2.74	4388.55	1.40
-AAAAAAAADPCCAAAA	Especially true items might supply particularly. Black, automatic words might develop post-war problems. Fresh, visible workers could not appe	Books	arts	4.23	4697.04	1.50
-AAAAAAAAEDKDAAAA	Times live now to a sales. British years bring all financ	Books	arts	4.24	1275.30	0.40
-AAAAAAAAEGAEAAAA	Far injuries pay so various arms. Courses could go anywhere universal possibilities; talks stand since mean, colonial scho	Books	arts	9.57	15285.33	4.90
-AAAAAAAAEPDDAAAA	Services used to work most new provi	Books	arts	2.84	21563.43	6.92
-AAAAAAAAEPKAAAAA	Here political studies give once at the qu	Books	arts	1.78	1382.17	0.44
-AAAAAAAAFBMBAAAA	Years light glasses. Contemporary members might detect even drawings. Private instructions ought to expect well main streets. Children will say well; usually young members ought to ensure enough. 	Books	arts	4.78	17.00	0.00
-AAAAAAAAFCFBAAAA	Golden estates meet as yet hands. About solid proteins used to tell. Once causal boots imagine frequently new elections; flexible, other ways find re	Books	arts	9.76	5418.45	1.74
-AAAAAAAAFCKCAAAA	Brilliant, acceptable resources might not pick as. Positive, married parties support only strongly impossible needs. Photogra	Books	arts	2.44	1415.82	0.45
-AAAAAAAAGAKAAAAA	Especially early girls glance however specific, relevant steps. Financial worlds telephone most dark gains. Warm, outdoor devices defend besides. Unions must not say narrow powers; individual ti	Books	arts	8.96	6984.06	2.24
-AAAAAAAAGFHBAAAA	Contemporary occasions provide she	Books	arts	1.75	3241.40	1.04
-AAAAAAAAGHOBAAAA	Fully existing proceedings could not tak	Books	arts	8.66	4170.81	1.33
-AAAAAAAAGOKBAAAA	Othe	Books	arts	60.94	6652.80	2.13
-AAAAAAAAHPNCAAAA	Correct, certain humans cut	Books	arts	37.98	9798.84	3.14
-AAAAAAAAIAOAAAAA	Professional circumstances could live else others. Symptoms can see very leaves. Just personal institutions used to go. Capable workers used to play then able police.	Books	arts	2.40	4537.62	1.45
-AAAAAAAAIEPCAAAA	New, popular years should think. Shareholders speak also friends; special members could not identify social eyes; indoors full 	Books	arts	0.91	5051.97	1.62
-AAAAAAAAIHKBAAAA	Very historic arms may happen even able exis	Books	arts	9.19	2354.36	0.75
-AAAAAAAAIIPDAAAA	Af	Books	arts	6.04	4187.03	1.34
-AAAAAAAAIJGAAAAA	Then western animals could teach somewhere. Today waiting servants confuse	Books	arts	4.10	482.94	0.15
-AAAAAAAAJJDBAAAA	Problems compete with a sets. Interesting, automatic pounds tell complete hills. 	Books	arts	1.20	5101.56	1.63
-AAAAAAAAKGBAAAAA	Light moments cannot date following sy	Books	arts	5.60	12613.35	4.05
-AAAAAAAAKICDAAAA	Wet, concerned representatives get up to a owners. Necessary, like	Books	arts	1.89	9408.31	3.02
-AAAAAAAAKKIAAAAA	Naked, popular schemes campaign then offices. Underlying shares may join	Books	arts	79.28	19283.43	6.19
-AAAAAAAAKNBCAAAA	Early, powerful towns add mainly english savings. Years assist then new, public colleagues. Things might encounter then right new features	Books	arts	6.89	726.18	0.23
-AAAAAAAAMFFAAAAA	Communities used to relocate clearly strange, new walls; european, rich championships make current depths. Sure studies may reflect only instinctively old forces. Foreign, diverse	Books	arts	8.22	4909.04	1.57
-AAAAAAAANIBAAAAA	Beneath decent wives write t	Books	arts	2.72	13655.65	4.38
-AAAAAAAAOEIDAAAA	Electoral occupations assemble exchanges; als	Books	arts	2.20	12221.89	3.92
-AAAAAAAAOJJCAAAA	Troops take only, right dogs. Briefly genuine eyes used to provide mutually coming, just parents. Too social services shall feel only rec	Books	arts	6.40	1381.38	0.44
-AAAAAAAAOKPBAAAA	Just good settings must not make; payments assure to a bishops. Principal, sorry amounts would safeguard very so other leaders; tory, substantial stairs m	Books	arts	2.60	11430.27	3.67
-AAAAAAAAOPKCAAAA	Less imp	Books	arts	9.12	21212.29	6.81
-AAAAAAAAPIEBAAAA	Main cheeks must put 	Books	arts	0.45	6256.69	2.00
-AAAAAAAAPLLDAAAA	Old eyes could not give later issues. Claims might	Books	arts	9.00	9406.36	3.02
-AAAAAAAAABMBAAAA	Situations retain; units might sit operations; girls shall make. Ca	Books	business	3.16	16355.93	6.73
-AAAAAAAAACEBAAAA	Prese	Books	business	15.17	2637.41	1.08
-AAAAAAAAAKBDAAAA	Essential students change even despite a powers. General connections will not maximi	Books	business	3.10	4074.80	1.67
-AAAAAAAAANHCAAAA	High ministers should not remove for a stations. Certain, linear weeks might not ask so from a improvements. Lakes must not implement f	Books	business	4.80	3539.41	1.45
-AAAAAAAABIPBAAAA	Ultimate, other objects might not install good 	Books	business	2.57	4776.44	1.96
-AAAAAAAABKACAAAA	Total pp. accept with a questions; able, generous a	Books	business	5.25	1316.93	0.54
-AAAAAAAABMDDAAAA	Head facts resolve even. Characteristics put. Toxic, genuine officials shall not meet. Difficult chil	Books	business	3.85	3023.83	1.24
-AAAAAAAACDBCAAAA	Tiny years could run too above tough volumes. New germans must not leave as possible sales; inj	Books	business	1.22	52.80	0.02
-AAAAAAAACDIBAAAA	Small results would go colours; sexual agencies ought to assure moreover unique premises; then complex provisions use often normal windows. Better educational girls should not believe however struct	Books	business	9.78	8105.34	3.33
-AAAAAAAACEACAAAA	Other, direct letters ought to make from a ways. British, large men could not work a	Books	business	0.48	14335.55	5.90
-AAAAAAAACEPBAAAA	Long, married artists would see negative feelings. Emot	Books	business	1.73	7909.27	3.25
-AAAAAAAADHNCAAAA	Originally major industries matter mediterranean bodies. Cases should not 	Books	business	45.06	473.11	0.19
-AAAAAAAADNDDAAAA	Clear, harsh police used to include large, appropriate plans. Prices could produce more. There white weapons expect directly free conclusions. Responsibl	Books	business	4.57	14429.31	5.94
-AAAAAAAAEICAAAAA	Cases include proudly without a columns. Solid, pre	Books	business	2.42	8853.82	3.64
-AAAAAAAAEILDAAAA	Bad, able systems shall fall else. Nuclear, economic ways put in an paths. Serious, labour women must not muster however. Wide new readers ought to help 	Books	business	1.36	4211.38	1.73
-AAAAAAAAFGJCAAAA	Secondary, red structures may seek eyes. High true titles should make now junior fat thoughts. Partly excellent authorities receive direct, net parties. Parents look most also other issues. Empty, con	Books	business	8.59	11006.14	4.53
-AAAAAAAAFLMDAAAA	Significantly relevant colleges extract knowingly broad investors. Entire members stay. Mediterranean legs would cut on the knees. Forthcoming, particular students u	Books	business	4.81	6614.94	2.72
-AAAAAAAAFNOCAAAA	Wonderful systems ask also very parliamentary orders; british companies	Books	business	87.12	1370.57	0.56
-AAAAAAAAGFDCAAAA	Particularly medieval blocks would not find slightly with a carers. Years respond about at a sec	Books	business	6.00	5441.25	2.24
-AAAAAAAAGLMCAAAA	Crossly local relations know surely old excep	Books	business	37.62	1577.14	0.64
-AAAAAAAAGONBAAAA	Ever top offers might struggle far, automatic men. Long-term, long goods dare however; new, other gr	Books	business	2.30	4793.37	1.97
-AAAAAAAAIBKDAAAA	Hundreds drop nearly unacceptable accidents. Then strong methods tell large unions. Short companies should help so. Moves shall not set later chief problems. R	Books	business	0.78	12116.59	4.99
-AAAAAAAAIINDAAAA	Frames can park highly parents. White ma	Books	business	6.97	20464.05	8.42
-AAAAAAAAIJECAAAA	Difficult, royal units put particularly significant, other plans. Essential, contemporary journals will need players. Alternatively parental	Books	business	4.34	90.23	0.03
-AAAAAAAAIJJCAAAA	Euro	Books	business	3.01	3615.47	1.48
-AAAAAAAAIKEAAAAA	All 	Books	business	9.44	2769.66	1.14
-AAAAAAAAIPADAAAA	Orders go into the documents. Social, existing specialists will seem twice associated wishes. Finally nation	Books	business	5.15	661.44	0.27
-AAAAAAAAJMEDAAAA	Personal, significant activities agree only by a couples. Elaborate aut	Books	business	3.06	3702.60	1.52
-AAAAAAAAKAJDAAAA	Short neighbours implement innocently tiny titles. Briefly simple years should not tell potentially successful, whole years. Orange workers carry; home hot feet l	Books	business	4.43	1885.01	0.77
-AAAAAAAAKAKAAAAA	Still urban stages shall not take for a legs. Other, holy demands pay further young, positive numbers. A little criminal i	Books	business	7.68	3467.43	1.42
-AAAAAAAAKLHBAAAA	Types support already forms. So appropriate substances must not control perhaps nervous young years. Communist services must go decisive, conside	Books	business	5.43	7299.56	3.00
-AAAAAAAAKMAAAAAA	Plans consult interested, light boys. Selective, other problems create scientific, young parties. Sufficient speakers might not kiss too social, basic interests. Dual, other times s	Books	business	0.19	4191.90	1.72
-AAAAAAAALDFAAAAA	Hands may not allow only in a lands; linear, other pubs say; social, precise women identify for a patients. Preferences develop alone now rich motives. Ever good tas	Books	business	3.68	911.15	0.37
-AAAAAAAALGBBAAAA	Modern records retain about there civil plans. Social bodies survive. Great, living losses bother late, coherent others. About british sports ought to use cautiously from 	Books	business	1.94	1039.45	0.42
-AAAAAAAALPDCAAAA	So small edges will understand currently in a things. New trains point usually systems. Years look growing questions. Different cases could sell just alive, late rules; big, large results will make 	Books	business	4.12	109.02	0.04
-AAAAAAAAMALDAAAA	Here final difficulties would not comply just legal good motives. Enough sensitive things could not spend obviously with a systems. In pu	Books	business	91.76	7163.72	2.95
-AAAAAAAAMIGCAAAA	Carefully physical hotels must put together; similar details cannot appreciate by a standards. Rates can break m	Books	business	6.63	7276.79	2.99
-AAAAAAAAMIMCAAAA	About likely houses like international members. Final, relevant birds answer after the paintings. Hungry, personal days borrow tiny, primary resources. As social relations could choose quite also 	Books	business	0.77	3400.78	1.40
-AAAAAAAAMKHAAAAA	Unions shall see enough over true attitudes; of course full variable	Books	business	8.90	3586.20	1.47
-AAAAAAAAMKNDAAAA	Special, clear elements would buy at a games. Things should spot today strange, only devices. Armies should like at a patients. Hands could perform simply narrow values. N	Books	business	1.28	7240.08	2.98
-AAAAAAAANACBAAAA	New teachers might demand never assets. Deeply bright ministers make generally never prime imports. Odd writings step common readers; talks take young, r	Books	business	2.95	4731.57	1.94
-AAAAAAAAPEKCAAAA	Alone countries must use so old, international functions. Only public cases see in a words. Normal methods forget even communist changes; technical numbers convert either natu	Books	business	4.67	14868.48	6.12
-AAAAAAAAPGDBAAAA	Certainly remaining flowers can wonder then just significant papers; places secure below as a bombs. Other, domestic members must allow very polite thi	Books	business	0.60	5434.01	2.23
-AAAAAAAAPHJAAAAA	Possibly great customs suit close looks. Capable, frequent processes shall pass possible dangers; hard, private words act measures. Mysterious, acceptable fac	Books	business	6.64	1871.38	0.77
-AAAAAAAAAALDAAAA	Forward liable funds may not end from time to time local, domestic chiefs. Major, well-known newspapers can regain together new, white conclusions. Very vital employees can draw	Books	computers	17.54	1323.92	0.40
-AAAAAAAAAHKDAAAA	Decisions play actually exclusive activities. Well assistant e	Books	computers	8.77	12999.66	3.97
-AAAAAAAAAOBCAAAA	Years should try in line with a conditions. Pp. spend well evenings. Other, afraid sides speculate at a years. Options ought to know leading, app	Books	computers	5.23	2591.64	0.79
-AAAAAAAABHEEAAAA	Subjects may remain officials. Forward, straight objects used to see wh	Books	computers	6.97	8533.58	2.60
-AAAAAAAABLMBAAAA	External improvements effect so tough words. Great roads cause quickly popular, black stories. Clearly white members might ask enough details. Min	Books	computers	31.74	2742.24	0.83
-AAAAAAAACHOCAAAA	Final governm	Books	computers	6.22	4453.71	1.36
-AAAAAAAACOHDAAAA	Left, important sports shall get on an specialists. Overall, e	Books	computers	3.56	3276.00	1.00
-AAAAAAAAEANCAAAA	Ye	Books	computers	9.75	6814.84	2.08
-AAAAAAAAEAPAAAAA	Just distinct children think individuals; popular arguments develop here cautious methods; appropriate children might beat. Proper, empirical hundreds fall oth	Books	computers	4.01	11065.91	3.38
-AAAAAAAAECFCAAAA	Prepared others convey elsewhere environmental, british tactics. Sorry adults hear. So working texts release wor	Books	computers	1.98	3527.15	1.07
-AAAAAAAAEMHAAAAA	Boots recommend usually just local centres; c	Books	computers	7.56	6635.76	2.02
-AAAAAAAAFEEAAAAA	Capital, united feelings paint only things. Greatly financial economies should not pay somewhere soviet necessary armies; educational concepts mus	Books	computers	3.83	1365.45	0.41
-AAAAAAAAFLFEAAAA	Social weeks may hope. However parental objects shall get just potential logical stations. Agreements attend on a arms; circa real reforms may interpret dogs. T	Books	computers	2.06	18115.81	5.53
-AAAAAAAAGCFEAAAA	Quickly bare factors wear early as a meetings. Physical conventions could not survive. However european bands get due, national paintings. Significant, net facilities initi	Books	computers	33.10	6825.15	2.08
-AAAAAAAAGDOCAAAA	Various changes must shorten together heavy lessons. Doors make later british initiatives. Recently senior courses regret months. Regular, senior children might encounter merely procedures. Then avail	Books	computers	65.54	4671.44	1.42
-AAAAAAAAGENAAAAA	Genera	Books	computers	2.84	60.00	0.01
-AAAAAAAAGHCBAAAA	Hundreds would meet regardless german, foreign scien	Books	computers	9.77	894.48	0.27
-AAAAAAAAGMCAAAAA	More important names induce; now similar standards will train correctly times. Ex	Books	computers	9.23	4356.46	1.33
-AAAAAAAAGNGBAAAA	Brilliant, massive prisons take still national others. Only northern guidelines go right by the lips. General, spiritual walls shall reach in a languages. British nations eat substantial polici	Books	computers	3.42	169.80	0.05
-AAAAAAAAHPADAAAA	Used, young sizes take requirements. Electoral, standard stones worry still private scenes. Major, still bedrooms say all once effective years. Long new moments will own after the	Books	computers	9.19	2663.93	0.81
-AAAAAAAAIAMAAAAA	Alone walls mus	Books	computers	2.00	8957.82	2.73
-AAAAAAAAIGCEAAAA	Concerned numbers can attempt now particular, white friends; un	Books	computers	3.38	8336.53	2.54
-AAAAAAAAIGJAAAAA	Probably terrible students may go. There whole issues get academic, soviet charts. 	Books	computers	4.11	5316.51	1.62
-AAAAAAAAIHEEAAAA	Personal, liable years shall not start dramatic, dema	Books	computers	4.92	45631.68	13.94
-AAAAAAAAIILCAAAA	At least low personnel might a	Books	computers	9.13	7777.26	2.37
-AAAAAAAAJBADAAAA	Mean, good relations wake however strictly white possibilities. About aw	Books	computers	6.42	7851.07	2.39
-AAAAAAAAJJGBAAAA	Strangers gain officially enough labour problems. Overall systems may not help below lives. Heroes find just apparently generous couple	Books	computers	7.15	5084.71	1.55
-AAAAAAAAJMCCAAAA	Interesting programmes used to appear even. Symbolic prices go beautifu	Books	computers	97.63	10140.48	3.09
-AAAAAAAAJMGBAAAA	Complete, head ways entail additional books; social letters drive perfect ends. Supporters should undermine therefore relat	Books	computers	4.15	97.46	0.02
-AAAAAAAALCDAAAAA	Clearly actual places would supply apparently only rats.	Books	computers	4.34	2215.00	0.67
-AAAAAAAALDBBAAAA	Mines should talk outside trees. Regular eyes encourage with an victims. Civil functions try actions. Movies fit secretly for a regions. Whole, imperial customs forget	Books	computers	7.44	1401.25	0.42
-AAAAAAAALNHDAAAA	Friendly judges act between a parties. Asian, bloody hotels isolat	Books	computers	0.39	1776.00	0.54
-AAAAAAAALPPCAAAA	Political ingredients exercise once in order less	Books	computers	4.95	6424.14	1.96
-AAAAAAAAMGEEAAAA	Reservations would meet longer easy, daily lights. Exactly critical ref	Books	computers	9.27	8076.59	2.46
-AAAAAAAAMJEAAAAA	Local pro	Books	computers	1.04	3400.92	1.03
-AAAAAAAAMMDEAAAA	Women support almost	Books	computers	4.68	8124.94	2.48
-AAAAAAAAMNOBAAAA	Scientific, young creditors might see for the alternativ	Books	computers	6.98	12883.72	3.93
-AAAAAAAAMOHBAAAA	Fortunately past rules mind respectively appropriate losses. Men must develop above the sources. Mere values lis	Books	computers	2.02	3518.02	1.07
-AAAAAAAANCFCAAAA	Scientific courses set different questions. Various, likely surfaces prevent also vague days. Critical, grand clothes save from a duties; powerful	Books	computers	1.45	6240.57	1.90
-AAAAAAAANFJBAAAA	Only old doors shall wear again. Earlier high minerals might not tell better persona	Books	computers	16.62	3360.39	1.02
-AAAAAAAANNIAAAAA	Dear patients give again able directors. Modest terms think. For example assistant	Books	computers	1.89	3096.66	0.94
-AAAAAAAANOJBAAAA	Growing, small aims might begin 	Books	computers	2.75	647.50	0.19
-AAAAAAAAOBIDAAAA	Great, mixed bits utilise however quickly comprehensive sales. Near ne	Books	computers	1.23	11402.48	3.48
-AAAAAAAAOBNDAAAA	Levels undermine unfortunately efficient weeks	Books	computers	2.19	5478.32	1.67
-AAAAAAAAOGFAAAAA	Real kids give rather lips. Pure, hungry sides might not resolve both impressive attacks; over large friends refuse. Guilty, sp	Books	computers	99.41	6486.48	1.98
-AAAAAAAAOKBBAAAA	Votes can relieve then key sales; social, new proc	Books	computers	8.03	1360.10	0.41
-AAAAAAAAOMDAAAAA	Together hot rights 	Books	computers	4.99	1742.88	0.53
-AAAAAAAAOMPCAAAA	Now complex carers must use here therefore personal arms. Ideas could gather weapons. Dif	Books	computers	3.56	7129.63	2.17
-AAAAAAAAPADEAAAA	Goals should not make in	Books	computers	4.09	3597.48	1.09
-AAAAAAAAPDLCAAAA	Inc considerations should dare sales. Little, long chapters check better exciting employers. Still english unions could pull wrong shoes. Factors would kee	Books	computers	70.39	7342.58	2.24
-AAAAAAAAPENCAAAA	Authorities retain with a authorities. Warm, commercial things can bring. Eyes buy also for the minds. P	Books	computers	9.54	4801.27	1.46
-AAAAAAAAPHADAAAA	Desirable, important methods make thus observations. Most different tasks may live always traditional, concerned beings. Bad sales would lose. Long, linguistic pairs could not make. Chem	Books	computers	8.20	2715.24	0.82
-AAAAAAAAPJCCAAAA	Strong, british horses may not choose less. Results will not carry harsh workers. False claims will want over labour increases. Co	Books	computers	1.05	3040.40	0.92
-AAAAAAAAPKOBAAAA	Yet whole dealers p	Books	computers	3.63	2790.97	0.85
-AAAAAAAAPLIDAAAA	Items look somewhat new designs. Patients should solve about a officers. Minutes can act still companies. About dangerous records will not run towa	Books	computers	1.43	5985.52	1.82
-AAAAAAAAABPAAAAA	Particularly professional women may not tell never present, distant times. Current, only weeks could hurry quite appropriate months. Little attacks waste carefully never politi	Books	cooking	1.82	670.95	0.25
-AAAAAAAAADIDAAAA	Literary movies will include actually at a models. Else other areas would develop then on a consequences; responsibilities must exercise most average, fin	Books	cooking	3.29	2472.84	0.92
-AAAAAAAAAHKCAAAA	Somewhere hot arms touch however before a members. New developers ought to deal polish cells. Days achieve into an interests. Bodie	Books	cooking	5.86	6965.58	2.61
-AAAAAAAAAHPAAAAA	Surveys shall not ne	Books	cooking	4.61	8126.46	3.04
-AAAAAAAAAHPDAAAA	Efforts used to perpetuate about various researchers; political days must fight rather than the days. Standards used to rush towards a ends. Slow, short signals used to show seemingly. Figures wo	Books	cooking	91.23	3094.41	1.15
-AAAAAAAAAJNDAAAA	Physical, political decis	Books	cooking	6.76	1630.37	0.61
-AAAAAAAAAMACAAAA	Best national participants forget. Usually clear efforts can operate on	Books	cooking	2.20	10381.99	3.89
-AAAAAAAAAOLAAAAA	Near educational cases shall become big hotels. Periods should not	Books	cooking	5.92	1932.24	0.72
-AAAAAAAABINAAAAA	Below invisi	Books	cooking	9.59	6854.08	2.56
-AAAAAAAABONAAAAA	Gains cannot cross colourful, long individuals. Drily red difficulties may not say to a plans. Very different cases ta	Books	cooking	1.60	2682.59	1.00
-AAAAAAAACBDCAAAA	Well independent scores fight rare changes. Scottish rights would not give; implicit, modern services like yet. Conservative, effective yards should marry about a buildings. Valid, m	Books	cooking	0.50	8850.95	3.31
-AAAAAAAACDKBAAAA	Unique, commercial discussions mark then social, top states; organizations will not hit never still traditional programmes. Social, afraid papers ought to meet english egg	Books	cooking	2.98	3583.18	1.34
-AAAAAAAADEIBAAAA	Then attractive practices establish also at a issues; more independent records can inject even weak confidential bands. General parts will come culturally national standards.	Books	cooking	8.90	1781.95	0.66
-AAAAAAAAECPBAAAA	Alone, following police will not expect mentally clothes. Dramatic, american weeks will not leap so central images. Costs remedy below black, easy letters. Parties ought to come more for a 	Books	cooking	17.66	2891.75	1.08
-AAAAAAAAEHIDAAAA	Potential years would lay in order strong jobs. Times cannot allow specif	Books	cooking	3.65	6197.62	2.32
-AAAAAAAAEPJDAAAA	Over demanding subjects may not look of course after a pos	Books	cooking	6.49	15543.46	5.82
-AAAAAAAAGADEAAAA	Girls may use chri	Books	cooking	4.37	736.80	0.27
-AAAAAAAAGALAAAAA	Great, only pages might not contribute so; small components require on a films. Times find apparently. So traditional sources find conditions. Gro	Books	cooking	3.40	11257.89	4.21
-AAAAAAAAGBGBAAAA	Somehow revolutionary sh	Books	cooking	7.10	5940.50	2.22
-AAAAAAAAGEDDAAAA	Available workshops might direct directly. Conditions must satisfy also upper reactions. Sufficient words must see young considerations. Terrible, only expres	Books	cooking	8.24	3600.68	1.34
-AAAAAAAAGMMCAAAA	Chief countries leave actually rural, other fathers. Women discover very otherwise large ministers. Slow, envi	Books	cooking	7.35	2158.00	0.80
-AAAAAAAAGOCAAAAA	Historical, economic lights shall stand much big, odd proposals. Rather grateful branches ought to take. Northern, high miles must ask increasingly. Once chronic	Books	cooking	4.37	5136.88	1.92
-AAAAAAAAGPPBAAAA	Able, widespread elections could not apply to the powers. Minimal, pleasant fruits used to feed still flexible, new institutions; relationships	Books	cooking	6.47	8428.60	3.15
-AAAAAAAAHDIBAAAA	Books give simply again technical terms. Fun deaths must not take below carefully true sons. Expensive arts could receive just about leaves. Central, payable reform	Books	cooking	0.86	1271.14	0.47
-AAAAAAAAHFDEAAAA	Substantial, afraid effects must close. Areas could make only	Books	cooking	6.37	21494.23	8.05
-AAAAAAAAHKLAAAAA	Purel	Books	cooking	4.62	4512.72	1.69
-AAAAAAAAIHGCAAAA	About competitive members could not screen; however free performances could not give here in the studies; soft laws deal plans. Bodies complete all right fem	Books	cooking	1.18	9980.61	3.74
-AAAAAAAAIOCCAAAA	Technological characters want a	Books	cooking	4.64	4752.36	1.78
-AAAAAAAAIOICAAAA	Contributions move obviously now recent losses. Develo	Books	cooking	3.67	6311.34	2.36
-AAAAAAAAJBFBAAAA	Too productive points would leave material ministers. Public, objective elections loosen no longer children; political, central movements speak 	Books	cooking	9.42	1847.54	0.69
-AAAAAAAAJFKBAAAA	Meanwhile wet products ascerta	Books	cooking	5.40	5658.87	2.12
-AAAAAAAAJHGAAAAA	Recent tools should spee	Books	cooking	20.16	6532.08	2.44
-AAAAAAAAKCCAAAAA	Possible schools carry primarily dual rises; important meetings could continue other passengers. More scottish things might not fall orders. Right, unable expectati	Books	cooking	4.44	2945.69	1.10
-AAAAAAAAKEJAAAAA	Other, atlantic regions know fast. Li	Books	cooking	68.84	11613.62	4.35
-AAAAAAAAKFMCAAAA	Endless, vocational contracts would not stabilise churches. French, good cities light somehow on a offices. Now serious things raise for a walls; certain, c	Books	cooking	0.23	3226.22	1.20
-AAAAAAAAKJGDAAAA	International eyes might see sales. Joint universities must not hold somewhat with a days. Perfect, profitable trials ought to seem; even pale quantities 	Books	cooking	0.94	1936.79	0.72
-AAAAAAAAKNIBAAAA	Subjects will read too. Reduced, identical patients like through a animals. At least unable c	Books	cooking	0.12	1530.24	0.57
-AAAAAAAALBKAAAAA	Conditions used to test so for a spirits; open, royal provisions might not look approximate	Books	cooking	36.97	4187.77	1.56
-AAAAAAAALIGAAAAA	There superb accidents may strike individual results. Quiet, only forests drop as little unlikely towns. Observations can discern with a points. Substantial banks dest	Books	cooking	0.88	8104.81	3.03
-AAAAAAAAMBCCAAAA	Schools ought to consider married sources. Then opening modules matter generally this apparent deals; times shall read units. Steps may stop. About modern others alter 	Books	cooking	8.40	11030.92	4.13
-AAAAAAAAMHIBAAAA	Labour, happy rates stop details. Purposes say small, dead times; tickets will act hopefully yesterday considerable products. Competitive others stay with an purposes. Always personal guns might ri	Books	cooking	2.78	12683.38	4.75
-AAAAAAAAMMIDAAAA	Technical proportions might perform poor jeans. All right subjects see alternative, big hundreds. Likely months guarantee always especially lon	Books	cooking	8.87	380.76	0.14
-AAAAAAAAOBBBAAAA	Main meetings can burst certain, parliamentary heroes. Much happy journals learn	Books	cooking	2.61	1585.09	0.59
-AAAAAAAAOCFBAAAA	Amounts feel as parents. Loud old assumptions can end no longer friendly p	Books	cooking	3.64	1417.21	0.53
-AAAAAAAAODNBAAAA	Regulations will tell eventually extra pounds	Books	cooking	0.62	2637.22	0.98
-AAAAAAAAOIOBAAAA	There pale members try a little cheap feet. Golden, o	Books	cooking	65.21	5762.14	2.15
-AAAAAAAAONGCAAAA	Outcomes will become high wide, substantial clients. Sufficient, new resources weaken only over the moments. Of cour	Books	cooking	1.32	1121.34	0.42
-AAAAAAAAPDGEAAAA	African lives must n	Books	cooking	0.88	13101.34	4.91
-AAAAAAAAPNFEAAAA	Wooden, civil fingers keep great, possible scales. Police begin ago in common responsible times. Further open fathers can believe aga	Books	cooking	0.33	282.92	0.10
-AAAAAAAAADBDAAAA	Upper men used to give still different girls. Proposals subsidise famous nerves. C	Books	entertainments	2.21	3266.76	1.63
-AAAAAAAAAIKCAAAA	Troubles must know wise indicators. Kinds enter technical, new doubts. Likely, annual eyes see equivalent payments. Both inadequate feelings decide ever initial 	Books	entertainments	5.04	2592.74	1.29
-AAAAAAAABGCEAAAA	Absolute proteins will happen huge, important unions. Varieties might not climb old, dead memories. Social, efficient governments form especially. Deputies may encourage for ever years. 	Books	entertainments	0.79	3539.20	1.77
-AAAAAAAABGMDAAAA		Books	entertainments	\N	10168.52	5.09
-AAAAAAAABGOBAAAA	Japanese, long students may help very; there partial bombs must assess; intentions cannot execute most certain children; indeed necessary a	Books	entertainments	5.36	1803.90	0.90
-AAAAAAAACGMDAAAA	Aware sentences used to find very by the months; difficulties bring finally. Years turn maybe shots. Apparent, bad lives try more. Physical, voluntary activ	Books	entertainments	6.55	1235.50	0.61
-AAAAAAAACIDAAAAA	Millions might answer. Attractive rules might beat coloured volunteers. Scottis	Books	entertainments	3.51	11940.70	5.97
-AAAAAAAACLAEAAAA	As direct shoes cannot guarantee there regular given specialists. Teachers say even eyes. True re	Books	entertainments	1.33	8646.39	4.32
-AAAAAAAACNOAAAAA	Terms will happen today after a arguments. Most physical flowers doubt just. Other authorities would like still	Books	entertainments	4.15	2195.94	1.09
-AAAAAAAACOFBAAAA	British, corporate years used to land all poor sequences. Lights ought to get wide real, everyday performances. Ears know essentially. C	Books	entertainments	5.45	9164.29	4.58
-AAAAAAAADCOAAAAA	Silly acres shall belong alike following, similar pairs. Respectively lucky newspapers shall dare. Also labour requirements can leave; pounds used to stay even only solicitors. Silver systems may de	Books	entertainments	75.74	9674.08	4.84
-AAAAAAAADFBBAAAA	Social, popular leaves could not ca	Books	entertainments	2.61	8216.66	4.11
-AAAAAAAADGKAAAAA	However small values 	Books	entertainments	1.49	10944.45	5.48
-AAAAAAAADHJDAAAA	Public hands might not	Books	entertainments	2.74	7787.48	3.89
-AAAAAAAAEAPDAAAA	Implications imagine alive groups. Applications ought to meet steadily royal ideas. Able, efficient shoes shou	Books	entertainments	7.80	1342.26	0.67
-AAAAAAAAECMCAAAA	Rather vast companies pose quiet, actual carers. Close times take only simple possibilities. Current events might say only on a foundation	Books	entertainments	67.28	1401.63	0.70
-AAAAAAAAEHHBAAAA	Prepared, necessary others will let above for a stocks. Clearly new studies know. Final, social doubts worry certainly conclusions. Essential, severe attitudes respond sufficiently 	Books	entertainments	8.82	9367.84	4.69
-AAAAAAAAFOCBAAAA	However new	Books	entertainments	2.06	1060.15	0.53
-AAAAAAAAGABBAAAA	Lives may convey fair, popular industries; sure main records will take please with a restrictions. Illegally tough rights might not return never at the waters. Sensitive standards could take completel	Books	entertainments	2.68	2822.83	1.41
-AAAAAAAAGEECAAAA	Other, human years used to give simply. Words may carry for the pictures; general month	Books	entertainments	4.85	12733.45	6.37
-AAAAAAAAGHKDAAAA	Organisations shall guide tory organizations. Social, modest systems gro	Books	entertainments	7.74	434.88	0.21
-AAAAAAAAGNKAAAAA	Resources comply cheap, ready places. Different, other lights will pay well. Days assume more large courts. Recordings could not design also at the members. Yards can let still political others	Books	entertainments	73.05	3326.52	1.66
-AAAAAAAAGOLDAAAA	Generally ideal lips must reach beautiful, top patterns. Disabled methods find commercial things. Less happy co	Books	entertainments	6.19	6104.76	3.05
-AAAAAAAAHDGDAAAA	Laws go shortly british, clear carers. Inner, available aspirations ought to abolish most armed strings. Activities gain then less high banks; never future reactions include so in a powers. Popular, 	Books	entertainments	9.69	2287.64	1.14
-AAAAAAAAIDODAAAA	Positive, deep pounds might trust just national, financial sheets; answers will take nice, early degrees. Very other votes ought to meet soon international various towns. Changes understand. Delib	Books	entertainments	7.72	1520.07	0.76
-AAAAAAAAIFABAAAA	Men shall tolerate easily too keen children. Relevant, full-time leaves cannot say presumably from the gods. Large, careful subjects sit pro	Books	entertainments	7.63	7686.65	3.84
-AAAAAAAAJCGCAAAA	Annual, remote details would know only to a eyes. Laws construct teachers. Little armed prices used to charge economic, associated masters. Home available firms may tell however 	Books	entertainments	3.30	3145.04	1.57
-AAAAAAAAJFEBAAAA	Too necessary dreams should not co	Books	entertainments	3.75	4680.81	2.34
-AAAAAAAAJKGAAAAA	Lights allow. Things go white, available 	Books	entertainments	4.92	2308.80	1.15
-AAAAAAAAJNFEAAAA	Men lift fit letters. Recent shares can give main, new substances. Chains help at the rights. Straightforward things show just european, useful shelves. Healthy combinati	Books	entertainments	0.77	3988.56	1.99
-AAAAAAAAKDEAAAAA	Yet national bodies could answer on behalf of a hours. Features use later workers. Fortunes placa	Books	entertainments	6.46	4101.09	2.05
-AAAAAAAAKELBAAAA	However fair pressures realise twice walls. Days bring both. Dreadful syste	Books	entertainments	17.28	4678.96	2.34
-AAAAAAAAKJNAAAAA	Pp. should build white circumstances. Institutions cannot rest hardly. Minimum, personal goals will experi	Books	entertainments	2.86	1873.92	0.93
-AAAAAAAAKLEEAAAA	Guilty, mathematical contents used to join as. Ashamed, traditional months go as within a principles. Forward free cases could seek very colleagu	Books	entertainments	9.61	640.02	0.32
-AAAAAAAAKPABAAAA	Companies must not use especially other sentences. Just roman years benefit particular effects. Sometimes only factors imitate groups. Big processes would not require public, particular banks. 	Books	entertainments	1.75	669.30	0.33
-AAAAAAAALGMCAAAA	Flowers cultivate still so-called, available	Books	entertainments	3.84	511.75	0.25
-AAAAAAAAMAACAAAA	Specialists could not depend within the needs. Indian, specified mechanisms should perform together young towns. Seats understand always with a strings. New aspects secure. Report	Books	entertainments	6.36	3096.87	1.55
-AAAAAAAAMAHDAAAA	Jol	Books	entertainments	14.38	5937.80	2.97
-AAAAAAAAMFMAAAAA	Legal tasks could keep somewhat black experiences. Groups would expect characters. Also steep concerns might cost for a volunteers. W	Books	entertainments	2.70	54.16	0.02
-AAAAAAAAMMDBAAAA	Methods secure commentators. Once full-time co	Books	entertainments	5.73	2061.90	1.03
-AAAAAAAANJFEAAAA	Very, new trends should not des	Books	entertainments	3.14	4743.41	2.37
-AAAAAAAAOAJCAAAA	Heavy plans ought to sound too just young users; further traditional eyes welcome neither too el	Books	entertainments	3.45	1068.35	0.53
-AAAAAAAAOOEAAAAA	Companies reveal national reforms; kinds initiate in a languages. Positive miles ought to hesitate thick priorities. Large, cons	Books	entertainments	1.45	5085.84	2.54
-AAAAAAAAPNIBAAAA	Very good prisoners go against a rules. 	Books	entertainments	3.20	9776.11	4.89
-AAAAAAAAABNCAAAA	Services will let meetings. Following cuts used to belong actually thorough, comfortable products. Famous lights find since a lands.	Books	fiction	3.74	8142.46	2.25
-AAAAAAAAAHICAAAA	Particular, concerned odds should see conditions. Limited, existing	Books	fiction	7.71	5250.85	1.45
-AAAAAAAAAJFCAAAA	Real, brown girls used to go across a effects. Legal questions may assess able, false others. Policies put about; capable provisions get at a opportunities; prime, b	Books	fiction	7.98	3032.61	0.84
-AAAAAAAAAKEDAAAA	Original, large kinds suit	Books	fiction	9.86	192.06	0.05
-AAAAAAAAALOAAAAA	Teams would lead now through a eggs. Explanations think good, alone questions; liberal, religious plans alter then. True sports reduce eagerly racial, direct t	Books	fiction	2.73	8823.33	2.44
-AAAAAAAAAMNBAAAA	Local, direct times can go also. American lines mention further calculations. Russian devices advise sources. Political initiatives may learn just new machines. 	Books	fiction	3.42	12602.81	3.49
-AAAAAAAAAPEBAAAA	Words think as the police. Only companies shall speak anyway sure, present pairs. Small days may not beat short-term things. Well constant	Books	fiction	3.13	7820.63	2.16
-AAAAAAAABCPBAAAA	Equal, human roads break hard topics. So political feet should fail away relative publications. Final, industrial areas may leave however by a police. Realistica	Books	fiction	30.09	2166.28	0.60
-AAAAAAAABDPAAAAA	Keen years fight much. Concerned, vital kings get downstairs new, worthy millions. Else full gam	Books	fiction	2.95	834.15	0.23
-AAAAAAAABGAAAAAA	Quite different services promote all the same. Private, marginal colleagues play of course similar, different girls. French, local girls reap here. Bad movies shorten relatively. Terms	Books	fiction	57.09	769.64	0.21
-AAAAAAAABMLBAAAA	Factors could stimulate always. Public, local reactions might bring very. Sufficien	Books	fiction	3.49	2812.85	0.77
-AAAAAAAACEFAAAAA	Important years participate indeed. Hands make so. Great, environmental lives ought to exist so national, free	Books	fiction	4.25	4189.26	1.16
-AAAAAAAACENDAAAA	Key, other cases maintain special men. Words would cause significantly good, interesting arguments; plants would not bel	Books	fiction	6.71	20125.67	5.58
-AAAAAAAACFFBAAAA	Main, ltd. flames continue firmly. European spirits used to endure true with a features. Others tell never moral, normal writers. Li	Books	fiction	0.77	4100.91	1.13
-AAAAAAAACNLDAAAA	Profoundly useless women might go desperate, international remarks. Different, subject lines can arrange. Personal conditions should fin	Books	fiction	9.50	7033.39	1.95
-AAAAAAAADCIDAAAA	National women find major, able shows. Direct visitors must not want indian clothes. Years must run slowly in the costs. Months mak	Books	fiction	8.93	25454.69	7.05
-AAAAAAAADDDEAAAA	Male terms may provide laws; friends add truly rare points. Separate, whole hours may change over. Prime interests could not pretend indeed by a goods. Just past countries get how	Books	fiction	2.27	6298.10	1.74
-AAAAAAAADEAAAAAA	So fair schools must go problems. Children should not paint in a photographs. Great, late senten	Books	fiction	1.47	1344.56	0.37
-AAAAAAAADOKBAAAA	Much inner companies could not look nowadays managerial actual detectives. Great days 	Books	fiction	5.84	6859.72	1.90
-AAAAAAAAECBDAAAA	Forces can testify happy, international levels. Performances pay right bands. Items could discourage even in a months; readers simplify ea	Books	fiction	0.09	4305.74	1.19
-AAAAAAAAEEFEAAAA	Sufficient, only samples indicate still. Streets take clouds. Services know probably royal times. Old, international seconds must not mean clearly now rich managers. Legs est	Books	fiction	6.90	6816.68	1.89
-AAAAAAAAEGGBAAAA	Enough average men keep conditions. Smooth magistrates kill only increasingly labour numbers. Numbers beat for a positions. Villages could make yet except for a thoughts. Little, cold prices think; d	Books	fiction	1.41	2850.60	0.79
-AAAAAAAAEJPDAAAA	Appropriate rates shall eliminate the	Books	fiction	2.51	2774.19	0.76
-AAAAAAAAENBCAAAA	Agencies will pick different authorities. Whole, academic moments will include again perhaps other profits. Months can lay in a effects. Feet must want gentle, central sections. Even visible he	Books	fiction	5.71	9516.94	2.63
-AAAAAAAAFNFCAAAA	Years make recent leaves. Perhaps far kinds respond just. Glorious forces matter. Grounds shall not give just oth	Books	fiction	0.32	1950.84	0.54
-AAAAAAAAFOCEAAAA	Very only cases help. Mere, dangerous figures could not note quickly political wea	Books	fiction	1.92	6142.46	1.70
-AAAAAAAAGEJBAAAA	Endless, small hills cope again as ready forces. Ideal windows would not repeat so interested shoes. Really interesting stars suppress functional, local farmers. Leaves obtai	Books	fiction	9.02	2050.03	0.56
-AAAAAAAAGEPDAAAA	Appointed, awful corners respond frequently. Northern friends may not call loudly vertical patients. Just	Books	fiction	82.50	2609.28	0.72
-AAAAAAAAGJFDAAAA	Aspects appoint eligible, black authorities. Levels may not act far old, immediate stations. Left, critical hea	Books	fiction	8.11	1085.85	0.30
-AAAAAAAAGNOBAAAA	Colleges cannot create quickly great relations; significant methods pour as educational, constant po	Books	fiction	5.95	2341.60	0.64
-AAAAAAAAHDDAAAAA	Remote, japanese things would not need at all	Books	fiction	45.99	3782.68	1.04
-AAAAAAAAHMADAAAA	Willingly left requests declare changes; old lists ought to apply again in a arms. Students eat german, individual ships. Weak goods 	Books	fiction	5.83	10040.62	2.78
-AAAAAAAAHMGDAAAA	Fair, modern services assess to a	Books	fiction	4.50	6316.82	1.75
-AAAAAAAAIMNCAAAA	Applications could make similar observations. Pp. would disappear english units. Mothers start instead in the makers. Empty, public fruits 	Books	fiction	3.09	2197.05	0.60
-AAAAAAAAJEBCAAAA	Fundamental arms could depend. Members shall see other project	Books	fiction	2.43	13675.74	3.79
-AAAAAAAAJJKAAAAA	Elsewher	Books	fiction	2.23	15758.25	4.36
-AAAAAAAAKDOBAAAA	Just dead blocks cou	Books	fiction	1.67	1266.16	0.35
-AAAAAAAAKFBEAAAA	Usually present societies should not hear regularly on a characteristics. Qualifications can 	Books	fiction	2.47	8585.24	2.38
-AAAAAAAAKGNDAAAA	There different aspects stay often middle, special police. Molecular, scientific efforts define long without the years. Appropriate companies abide doubtless 	Books	fiction	6.99	14589.55	4.04
-AAAAAAAAKNFBAAAA	Publi	Books	fiction	1.56	5440.65	1.50
-AAAAAAAAKPNCAAAA	New, sure systems will not make respectiv	Books	fiction	0.84	4675.77	1.29
-AAAAAAAALIAAAAAA	Clothes can get also; home financial premises should not give proudly. Disabled, urgent tears would not run. Previous, electric schools shall qualify usefully real heads. Very, 	Books	fiction	2.99	1837.12	0.50
-AAAAAAAAMCHCAAAA	English germans anger systematically for the plans. Lights attract only leading sides. Points conceal. Widely other levels require political t	Books	fiction	4.86	1147.45	0.31
-AAAAAAAAMDGBAAAA	Accounts used to matter crucially. More than useful ha	Books	fiction	8.72	388.44	0.10
-AAAAAAAAMGBBAAAA	Inner, encouraging features should sue here to a terms. Patients will seem all slight members. Complex banks take apparently games. Able, irish patients used	Books	fiction	7.27	1376.10	0.38
-AAAAAAAAMLAAAAAA	Central, principal men a	Books	fiction	0.47	2017.32	0.55
-AAAAAAAANAMDAAAA	Average services could try unfortunately plants; extensive procedures must	Books	fiction	4.94	5734.05	1.58
-AAAAAAAANDDAAAAA	Plants should manage slowly on a managers. Trials could stop never also obvious awards; true, attractive controls determine psychiatric, bad relations. Keys follow. Positions coul	Books	fiction	2.73	4345.24	1.20
-AAAAAAAANEOAAAAA	Working dangers must follow british, wealthy governments. Possible magistrates ought to mean old, major facilities. Contents int	Books	fiction	3.42	12060.94	3.34
-AAAAAAAANJGDAAAA	Concerned, working children feel politically real texts. Scientists take probably better concerned forms; here negative things comply recently french reactions. Briti	Books	fiction	9.47	19440.81	5.39
-AAAAAAAANMFEAAAA	Low meals c	Books	fiction	6.53	3925.96	1.08
-AAAAAAAANNEEAAAA	Quite linguistic cells ask already permanent, valuable players. Colours place hastily happy, short bacteria; int	Books	fiction	1.59	7110.63	1.97
-AAAAAAAANOKAAAAA	So ethnic championships think totally soft, appropriate customers. Perfect, military enterprises used to reach away essential authorities. Stages	Books	fiction	5.77	4086.66	1.13
-AAAAAAAAOCGAAAAA	Well different problems must not disrupt	Books	fiction	8.69	1985.29	0.55
-AAAAAAAAOFECAAAA	Later high interests 	Books	fiction	5.61	9818.74	2.72
-AAAAAAAAOGEEAAAA	Free processes can wake now still important institutions. Traditional, open plans serve better live years. Women should not pack by the experts. Competitors can miss hence op	Books	fiction	7.63	6537.27	1.81
-AAAAAAAAOHHAAAAA	Private children used to stop really national, mate	Books	fiction	2.82	1432.82	0.39
-AAAAAAAAOJCEAAAA	Approaches used to worsen forwards yellow, effective days. Personal, musical dreams appreciate in a claims; future, natural doors make thus. Empirical,	Books	fiction	3.81	4949.10	1.37
+AAAAAAAAOJGAAAAA		Books		\N	2102.35	17.177591
+AAAAAAAAAAKAAAAA	Small, political activities help great, bad policies. Therefore square features provide on a machines. Rules make over me	Books	arts	2.42	9866.76	3.169167
+AAAAAAAAACKBAAAA	Clinical, inc initiatives make specially according to a activities.	Books	arts	6.92	9562.33	3.071385
+AAAAAAAAAIJCAAAA	Simply small grounds use exactly effects. Services could kill especially aware, large observers. Civil, relevant years ensure regulations; clear drawings realize actors. Products employ a	Books	arts	1.76	7565.38	2.429972
+AAAAAAAAAJIAAAAA	Joint, superior police would use through an restrictions. Buyers ought to contract generally in a efforts. Days cut also sure, frequent s	Books	arts	0.43	1648.81	0.529591
+AAAAAAAABFHDAAAA	Little days answer in a emotions; players touch.	Books	arts	2.58	18486.63	5.937838
+AAAAAAAABHDCAAAA	Minor heads close common children; recently strong firms provide. Useful, young men ought to create changes. Popular, common regulations might decide. Points fit. Obvious, glad officials 	Books	arts	3.88	5219.85	1.676596
+AAAAAAAACBACAAAA	Remaining, main passengers go far sure men. 	Books	arts	4.78	1306.20	0.419546
+AAAAAAAACCLCAAAA	Multiple, personal attitudes change so. Major, international companies can give scales. Strong women may take there expensive scores	Books	arts	45.80	3235.97	1.039381
+AAAAAAAACKDBAAAA	Positions can win increasingly entire units. Unions used to exclude fairly afraid fans. National fields appear also ways. Great lips print new teachers. Constant, primary deaths expect a little 	Books	arts	3.82	5246.53	1.685166
+AAAAAAAACKEAAAAA	Legs appear eventually soci	Books	arts	35.27	372.00	0.119485
+AAAAAAAACMDCAAAA	Black, powerful others go now years. Diverse orders might not mean away medium minutes; tight authorities ought to put however for the things	Books	arts	2.75	7486.65	2.404684
+AAAAAAAACNEDAAAA	Particularly labour stores get farmers. Hence true records see rel	Books	arts	6.89	6909.55	2.219322
+AAAAAAAADCCDAAAA	Glad users understand very almost original jobs. Towns can understand. Supreme, following days work by a parents; german, crucial weapons work sure; fair pictur	Books	arts	7.18	3918.06	1.258466
+AAAAAAAADJFCAAAA	Significant, preliminary boys can remain lightly more pale discussion	Books	arts	2.74	4388.55	1.409586
+AAAAAAAADPCCAAAA	Especially true items might supply particularly. Black, automatic words might develop post-war problems. Fresh, visible workers could not appe	Books	arts	4.23	4697.04	1.508672
+AAAAAAAAEDKDAAAA	Times live now to a sales. British years bring all financ	Books	arts	4.24	1275.30	0.409621
+AAAAAAAAEGAEAAAA	Far injuries pay so various arms. Courses could go anywhere universal possibilities; talks stand since mean, colonial scho	Books	arts	9.57	15285.33	4.909592
+AAAAAAAAEPDDAAAA	Services used to work most new provi	Books	arts	2.84	21563.43	6.926095
+AAAAAAAAEPKAAAAA	Here political studies give once at the qu	Books	arts	1.78	1382.17	0.443947
+AAAAAAAAFBMBAAAA	Years light glasses. Contemporary members might detect even drawings. Private instructions ought to expect well main streets. Children will say well; usually young members ought to ensure enough. 	Books	arts	4.78	17.00	0.005460
+AAAAAAAAFCFBAAAA	Golden estates meet as yet hands. About solid proteins used to tell. Once causal boots imagine frequently new elections; flexible, other ways find re	Books	arts	9.76	5418.45	1.740386
+AAAAAAAAFCKCAAAA	Brilliant, acceptable resources might not pick as. Positive, married parties support only strongly impossible needs. Photogra	Books	arts	2.44	1415.82	0.454756
+AAAAAAAAGAKAAAAA	Especially early girls glance however specific, relevant steps. Financial worlds telephone most dark gains. Warm, outdoor devices defend besides. Unions must not say narrow powers; individual ti	Books	arts	8.96	6984.06	2.243254
+AAAAAAAAGFHBAAAA	Contemporary occasions provide she	Books	arts	1.75	3241.40	1.041125
+AAAAAAAAGHOBAAAA	Fully existing proceedings could not tak	Books	arts	8.66	4170.81	1.339648
+AAAAAAAAGOKBAAAA	Othe	Books	arts	60.94	6652.80	2.136855
+AAAAAAAAHPNCAAAA	Correct, certain humans cut	Books	arts	37.98	9798.84	3.147351
+AAAAAAAAIAOAAAAA	Professional circumstances could live else others. Symptoms can see very leaves. Just personal institutions used to go. Capable workers used to play then able police.	Books	arts	2.40	4537.62	1.457466
+AAAAAAAAIEPCAAAA	New, popular years should think. Shareholders speak also friends; special members could not identify social eyes; indoors full 	Books	arts	0.91	5051.97	1.622674
+AAAAAAAAIHKBAAAA	Very historic arms may happen even able exis	Books	arts	9.19	2354.36	0.756211
+AAAAAAAAIIPDAAAA	Af	Books	arts	6.04	4187.03	1.344858
+AAAAAAAAIJGAAAAA	Then western animals could teach somewhere. Today waiting servants confuse	Books	arts	4.10	482.94	0.155118
+AAAAAAAAJJDBAAAA	Problems compete with a sets. Interesting, automatic pounds tell complete hills. 	Books	arts	1.20	5101.56	1.638602
+AAAAAAAAKGBAAAAA	Light moments cannot date following sy	Books	arts	5.60	12613.35	4.051361
+AAAAAAAAKICDAAAA	Wet, concerned representatives get up to a owners. Necessary, like	Books	arts	1.89	9408.31	3.021914
+AAAAAAAAKKIAAAAA	Naked, popular schemes campaign then offices. Underlying shares may join	Books	arts	79.28	19283.43	6.193767
+AAAAAAAAKNBCAAAA	Early, powerful towns add mainly english savings. Years assist then new, public colleagues. Things might encounter then right new features	Books	arts	6.89	726.18	0.233246
+AAAAAAAAMFFAAAAA	Communities used to relocate clearly strange, new walls; european, rich championships make current depths. Sure studies may reflect only instinctively old forces. Foreign, diverse	Books	arts	8.22	4909.04	1.576765
+AAAAAAAANIBAAAAA	Beneath decent wives write t	Books	arts	2.72	13655.65	4.386144
+AAAAAAAAOEIDAAAA	Electoral occupations assemble exchanges; als	Books	arts	2.20	12221.89	3.925626
+AAAAAAAAOJJCAAAA	Troops take only, right dogs. Briefly genuine eyes used to provide mutually coming, just parents. Too social services shall feel only rec	Books	arts	6.40	1381.38	0.443694
+AAAAAAAAOKPBAAAA	Just good settings must not make; payments assure to a bishops. Principal, sorry amounts would safeguard very so other leaders; tory, substantial stairs m	Books	arts	2.60	11430.27	3.671361
+AAAAAAAAOPKCAAAA	Less imp	Books	arts	9.12	21212.29	6.813310
+AAAAAAAAPIEBAAAA	Main cheeks must put 	Books	arts	0.45	6256.69	2.009625
+AAAAAAAAPLLDAAAA	Old eyes could not give later issues. Claims might	Books	arts	9.00	9406.36	3.021288
+AAAAAAAAABMBAAAA	Situations retain; units might sit operations; girls shall make. Ca	Books	business	3.16	16355.93	6.736509
+AAAAAAAAACEBAAAA	Prese	Books	business	15.17	2637.41	1.086268
+AAAAAAAAAKBDAAAA	Essential students change even despite a powers. General connections will not maximi	Books	business	3.10	4074.80	1.678286
+AAAAAAAAANHCAAAA	High ministers should not remove for a stations. Certain, linear weeks might not ask so from a improvements. Lakes must not implement f	Books	business	4.80	3539.41	1.457775
+AAAAAAAABIPBAAAA	Ultimate, other objects might not install good 	Books	business	2.57	4776.44	1.967270
+AAAAAAAABKACAAAA	Total pp. accept with a questions; able, generous a	Books	business	5.25	1316.93	0.542403
+AAAAAAAABMDDAAAA	Head facts resolve even. Characteristics put. Toxic, genuine officials shall not meet. Difficult chil	Books	business	3.85	3023.83	1.245423
+AAAAAAAACDBCAAAA	Tiny years could run too above tough volumes. New germans must not leave as possible sales; inj	Books	business	1.22	52.80	0.021746
+AAAAAAAACDIBAAAA	Small results would go colours; sexual agencies ought to assure moreover unique premises; then complex provisions use often normal windows. Better educational girls should not believe however struct	Books	business	9.78	8105.34	3.338342
+AAAAAAAACEACAAAA	Other, direct letters ought to make from a ways. British, large men could not work a	Books	business	0.48	14335.55	5.904376
+AAAAAAAACEPBAAAA	Long, married artists would see negative feelings. Emot	Books	business	1.73	7909.27	3.257587
+AAAAAAAADHNCAAAA	Originally major industries matter mediterranean bodies. Cases should not 	Books	business	45.06	473.11	0.194859
+AAAAAAAADNDDAAAA	Clear, harsh police used to include large, appropriate plans. Prices could produce more. There white weapons expect directly free conclusions. Responsibl	Books	business	4.57	14429.31	5.942993
+AAAAAAAAEICAAAAA	Cases include proudly without a columns. Solid, pre	Books	business	2.42	8853.82	3.646619
+AAAAAAAAEILDAAAA	Bad, able systems shall fall else. Nuclear, economic ways put in an paths. Serious, labour women must not muster however. Wide new readers ought to help 	Books	business	1.36	4211.38	1.734539
+AAAAAAAAFGJCAAAA	Secondary, red structures may seek eyes. High true titles should make now junior fat thoughts. Partly excellent authorities receive direct, net parties. Parents look most also other issues. Empty, con	Books	business	8.59	11006.14	4.533094
+AAAAAAAAFLMDAAAA	Significantly relevant colleges extract knowingly broad investors. Entire members stay. Mediterranean legs would cut on the knees. Forthcoming, particular students u	Books	business	4.81	6614.94	2.724492
+AAAAAAAAFNOCAAAA	Wonderful systems ask also very parliamentary orders; british companies	Books	business	87.12	1370.57	0.564496
+AAAAAAAAGFDCAAAA	Particularly medieval blocks would not find slightly with a carers. Years respond about at a sec	Books	business	6.00	5441.25	2.241085
+AAAAAAAAGLMCAAAA	Crossly local relations know surely old excep	Books	business	37.62	1577.14	0.649575
+AAAAAAAAGONBAAAA	Ever top offers might struggle far, automatic men. Long-term, long goods dare however; new, other gr	Books	business	2.30	4793.37	1.974243
+AAAAAAAAIBKDAAAA	Hundreds drop nearly unacceptable accidents. Then strong methods tell large unions. Short companies should help so. Moves shall not set later chief problems. R	Books	business	0.78	12116.59	4.990454
+AAAAAAAAIINDAAAA	Frames can park highly parents. White ma	Books	business	6.97	20464.05	8.428519
+AAAAAAAAIJECAAAA	Difficult, royal units put particularly significant, other plans. Essential, contemporary journals will need players. Alternatively parental	Books	business	4.34	90.23	0.037162
+AAAAAAAAIJJCAAAA	Euro	Books	business	3.01	3615.47	1.489102
+AAAAAAAAIKEAAAAA	All 	Books	business	9.44	2769.66	1.140738
+AAAAAAAAIPADAAAA	Orders go into the documents. Social, existing specialists will seem twice associated wishes. Finally nation	Books	business	5.15	661.44	0.272427
+AAAAAAAAJMEDAAAA	Personal, significant activities agree only by a couples. Elaborate aut	Books	business	3.06	3702.60	1.524988
+AAAAAAAAKAJDAAAA	Short neighbours implement innocently tiny titles. Briefly simple years should not tell potentially successful, whole years. Orange workers carry; home hot feet l	Books	business	4.43	1885.01	0.776378
+AAAAAAAAKAKAAAAA	Still urban stages shall not take for a legs. Other, holy demands pay further young, positive numbers. A little criminal i	Books	business	7.68	3467.43	1.428128
+AAAAAAAAKLHBAAAA	Types support already forms. So appropriate substances must not control perhaps nervous young years. Communist services must go decisive, conside	Books	business	5.43	7299.56	3.006466
+AAAAAAAAKMAAAAAA	Plans consult interested, light boys. Selective, other problems create scientific, young parties. Sufficient speakers might not kiss too social, basic interests. Dual, other times s	Books	business	0.19	4191.90	1.726516
+AAAAAAAALDFAAAAA	Hands may not allow only in a lands; linear, other pubs say; social, precise women identify for a patients. Preferences develop alone now rich motives. Ever good tas	Books	business	3.68	911.15	0.375274
+AAAAAAAALGBBAAAA	Modern records retain about there civil plans. Social bodies survive. Great, living losses bother late, coherent others. About british sports ought to use cautiously from 	Books	business	1.94	1039.45	0.428117
+AAAAAAAALPDCAAAA	So small edges will understand currently in a things. New trains point usually systems. Years look growing questions. Different cases could sell just alive, late rules; big, large results will make 	Books	business	4.12	109.02	0.044902
+AAAAAAAAMALDAAAA	Here final difficulties would not comply just legal good motives. Enough sensitive things could not spend obviously with a systems. In pu	Books	business	91.76	7163.72	2.950518
+AAAAAAAAMIGCAAAA	Carefully physical hotels must put together; similar details cannot appreciate by a standards. Rates can break m	Books	business	6.63	7276.79	2.997088
+AAAAAAAAMIMCAAAA	About likely houses like international members. Final, relevant birds answer after the paintings. Hungry, personal days borrow tiny, primary resources. As social relations could choose quite also 	Books	business	0.77	3400.78	1.400677
+AAAAAAAAMKHAAAAA	Unions shall see enough over true attitudes; of course full variable	Books	business	8.90	3586.20	1.477046
+AAAAAAAAMKNDAAAA	Special, clear elements would buy at a games. Things should spot today strange, only devices. Armies should like at a patients. Hands could perform simply narrow values. N	Books	business	1.28	7240.08	2.981968
+AAAAAAAANACBAAAA	New teachers might demand never assets. Deeply bright ministers make generally never prime imports. Odd writings step common readers; talks take young, r	Books	business	2.95	4731.57	1.948789
+AAAAAAAAPEKCAAAA	Alone countries must use so old, international functions. Only public cases see in a words. Normal methods forget even communist changes; technical numbers convert either natu	Books	business	4.67	14868.48	6.123874
+AAAAAAAAPGDBAAAA	Certainly remaining flowers can wonder then just significant papers; places secure below as a bombs. Other, domestic members must allow very polite thi	Books	business	0.60	5434.01	2.238103
+AAAAAAAAPHJAAAAA	Possibly great customs suit close looks. Capable, frequent processes shall pass possible dangers; hard, private words act measures. Mysterious, acceptable fac	Books	business	6.64	1871.38	0.770764
+AAAAAAAAAALDAAAA	Forward liable funds may not end from time to time local, domestic chiefs. Major, well-known newspapers can regain together new, white conclusions. Very vital employees can draw	Books	computers	17.54	1323.92	0.404473
+AAAAAAAAAHKDAAAA	Decisions play actually exclusive activities. Well assistant e	Books	computers	8.77	12999.66	3.971550
+AAAAAAAAAOBCAAAA	Years should try in line with a conditions. Pp. spend well evenings. Other, afraid sides speculate at a years. Options ought to know leading, app	Books	computers	5.23	2591.64	0.791776
+AAAAAAAABHEEAAAA	Subjects may remain officials. Forward, straight objects used to see wh	Books	computers	6.97	8533.58	2.607110
+AAAAAAAABLMBAAAA	External improvements effect so tough words. Great roads cause quickly popular, black stories. Clearly white members might ask enough details. Min	Books	computers	31.74	2742.24	0.837786
+AAAAAAAACHOCAAAA	Final governm	Books	computers	6.22	4453.71	1.360661
+AAAAAAAACOHDAAAA	Left, important sports shall get on an specialists. Overall, e	Books	computers	3.56	3276.00	1.000856
+AAAAAAAAEANCAAAA	Ye	Books	computers	9.75	6814.84	2.082014
+AAAAAAAAEAPAAAAA	Just distinct children think individuals; popular arguments develop here cautious methods; appropriate children might beat. Proper, empirical hundreds fall oth	Books	computers	4.01	11065.91	3.380767
+AAAAAAAAECFCAAAA	Prepared others convey elsewhere environmental, british tactics. Sorry adults hear. So working texts release wor	Books	computers	1.98	3527.15	1.077586
+AAAAAAAAEMHAAAAA	Boots recommend usually just local centres; c	Books	computers	7.56	6635.76	2.027303
+AAAAAAAAFEEAAAAA	Capital, united feelings paint only things. Greatly financial economies should not pay somewhere soviet necessary armies; educational concepts mus	Books	computers	3.83	1365.45	0.417161
+AAAAAAAAFLFEAAAA	Social weeks may hope. However parental objects shall get just potential logical stations. Agreements attend on a arms; circa real reforms may interpret dogs. T	Books	computers	2.06	18115.81	5.534595
+AAAAAAAAGCFEAAAA	Quickly bare factors wear early as a meetings. Physical conventions could not survive. However european bands get due, national paintings. Significant, net facilities initi	Books	computers	33.10	6825.15	2.085164
+AAAAAAAAGDOCAAAA	Various changes must shorten together heavy lessons. Doors make later british initiatives. Recently senior courses regret months. Regular, senior children might encounter merely procedures. Then avail	Books	computers	65.54	4671.44	1.427180
+AAAAAAAAGENAAAAA	Genera	Books	computers	2.84	60.00	0.018330
+AAAAAAAAGHCBAAAA	Hundreds would meet regardless german, foreign scien	Books	computers	9.77	894.48	0.273274
+AAAAAAAAGMCAAAAA	More important names induce; now similar standards will train correctly times. Ex	Books	computers	9.23	4356.46	1.330950
+AAAAAAAAGNGBAAAA	Brilliant, massive prisons take still national others. Only northern guidelines go right by the lips. General, spiritual walls shall reach in a languages. British nations eat substantial polici	Books	computers	3.42	169.80	0.051875
+AAAAAAAAHPADAAAA	Used, young sizes take requirements. Electoral, standard stones worry still private scenes. Major, still bedrooms say all once effective years. Long new moments will own after the	Books	computers	9.19	2663.93	0.813862
+AAAAAAAAIAMAAAAA	Alone walls mus	Books	computers	2.00	8957.82	2.736720
+AAAAAAAAIGCEAAAA	Concerned numbers can attempt now particular, white friends; un	Books	computers	3.38	8336.53	2.546909
+AAAAAAAAIGJAAAAA	Probably terrible students may go. There whole issues get academic, soviet charts. 	Books	computers	4.11	5316.51	1.624257
+AAAAAAAAIHEEAAAA	Personal, liable years shall not start dramatic, dema	Books	computers	4.92	45631.68	13.941020
+AAAAAAAAIILCAAAA	At least low personnel might a	Books	computers	9.13	7777.26	2.376045
+AAAAAAAAJBADAAAA	Mean, good relations wake however strictly white possibilities. About aw	Books	computers	6.42	7851.07	2.398595
+AAAAAAAAJJGBAAAA	Strangers gain officially enough labour problems. Overall systems may not help below lives. Heroes find just apparently generous couple	Books	computers	7.15	5084.71	1.553439
+AAAAAAAAJMCCAAAA	Interesting programmes used to appear even. Symbolic prices go beautifu	Books	computers	97.63	10140.48	3.098037
+AAAAAAAAJMGBAAAA	Complete, head ways entail additional books; social letters drive perfect ends. Supporters should undermine therefore relat	Books	computers	4.15	97.46	0.029775
+AAAAAAAALCDAAAAA	Clearly actual places would supply apparently only rats.	Books	computers	4.34	2215.00	0.676708
+AAAAAAAALDBBAAAA	Mines should talk outside trees. Regular eyes encourage with an victims. Civil functions try actions. Movies fit secretly for a regions. Whole, imperial customs forget	Books	computers	7.44	1401.25	0.428098
+AAAAAAAALNHDAAAA	Friendly judges act between a parties. Asian, bloody hotels isolat	Books	computers	0.39	1776.00	0.542589
+AAAAAAAALPPCAAAA	Political ingredients exercise once in order less	Books	computers	4.95	6424.14	1.962651
+AAAAAAAAMGEEAAAA	Reservations would meet longer easy, daily lights. Exactly critical ref	Books	computers	9.27	8076.59	2.467494
+AAAAAAAAMJEAAAAA	Local pro	Books	computers	1.04	3400.92	1.039021
+AAAAAAAAMMDEAAAA	Women support almost	Books	computers	4.68	8124.94	2.482265
+AAAAAAAAMNOBAAAA	Scientific, young creditors might see for the alternativ	Books	computers	6.98	12883.72	3.936129
+AAAAAAAAMOHBAAAA	Fortunately past rules mind respectively appropriate losses. Men must develop above the sources. Mere values lis	Books	computers	2.02	3518.02	1.074796
+AAAAAAAANCFCAAAA	Scientific courses set different questions. Various, likely surfaces prevent also vague days. Critical, grand clothes save from a duties; powerful	Books	computers	1.45	6240.57	1.906568
+AAAAAAAANFJBAAAA	Only old doors shall wear again. Earlier high minerals might not tell better persona	Books	computers	16.62	3360.39	1.026639
+AAAAAAAANNIAAAAA	Dear patients give again able directors. Modest terms think. For example assistant	Books	computers	1.89	3096.66	0.946066
+AAAAAAAANOJBAAAA	Growing, small aims might begin 	Books	computers	2.75	647.50	0.197818
+AAAAAAAAOBIDAAAA	Great, mixed bits utilise however quickly comprehensive sales. Near ne	Books	computers	1.23	11402.48	3.483593
+AAAAAAAAOBNDAAAA	Levels undermine unfortunately efficient weeks	Books	computers	2.19	5478.32	1.673691
+AAAAAAAAOGFAAAAA	Real kids give rather lips. Pure, hungry sides might not resolve both impressive attacks; over large friends refuse. Guilty, sp	Books	computers	99.41	6486.48	1.981696
+AAAAAAAAOKBBAAAA	Votes can relieve then key sales; social, new proc	Books	computers	8.03	1360.10	0.415526
+AAAAAAAAOMDAAAAA	Together hot rights 	Books	computers	4.99	1742.88	0.532470
+AAAAAAAAOMPCAAAA	Now complex carers must use here therefore personal arms. Ideas could gather weapons. Dif	Books	computers	3.56	7129.63	2.178186
+AAAAAAAAPADEAAAA	Goals should not make in	Books	computers	4.09	3597.48	1.099072
+AAAAAAAAPDLCAAAA	Inc considerations should dare sales. Little, long chapters check better exciting employers. Still english unions could pull wrong shoes. Factors would kee	Books	computers	70.39	7342.58	2.243245
+AAAAAAAAPENCAAAA	Authorities retain with a authorities. Warm, commercial things can bring. Eyes buy also for the minds. P	Books	computers	9.54	4801.27	1.466845
+AAAAAAAAPHADAAAA	Desirable, important methods make thus observations. Most different tasks may live always traditional, concerned beings. Bad sales would lose. Long, linguistic pairs could not make. Chem	Books	computers	8.20	2715.24	0.829538
+AAAAAAAAPJCCAAAA	Strong, british horses may not choose less. Results will not carry harsh workers. False claims will want over labour increases. Co	Books	computers	1.05	3040.40	0.928878
+AAAAAAAAPKOBAAAA	Yet whole dealers p	Books	computers	3.63	2790.97	0.852674
+AAAAAAAAPLIDAAAA	Items look somewhat new designs. Patients should solve about a officers. Minutes can act still companies. About dangerous records will not run towa	Books	computers	1.43	5985.52	1.828647
+AAAAAAAAABPAAAAA	Particularly professional women may not tell never present, distant times. Current, only weeks could hurry quite appropriate months. Little attacks waste carefully never politi	Books	cooking	1.82	670.95	0.251454
+AAAAAAAAADIDAAAA	Literary movies will include actually at a models. Else other areas would develop then on a consequences; responsibilities must exercise most average, fin	Books	cooking	3.29	2472.84	0.926753
+AAAAAAAAAHKCAAAA	Somewhere hot arms touch however before a members. New developers ought to deal polish cells. Days achieve into an interests. Bodie	Books	cooking	5.86	6965.58	2.610511
+AAAAAAAAAHPAAAAA	Surveys shall not ne	Books	cooking	4.61	8126.46	3.045578
+AAAAAAAAAHPDAAAA	Efforts used to perpetuate about various researchers; political days must fight rather than the days. Standards used to rush towards a ends. Slow, short signals used to show seemingly. Figures wo	Books	cooking	91.23	3094.41	1.159701
+AAAAAAAAAJNDAAAA	Physical, political decis	Books	cooking	6.76	1630.37	0.611018
+AAAAAAAAAMACAAAA	Best national participants forget. Usually clear efforts can operate on	Books	cooking	2.20	10381.99	3.890890
+AAAAAAAAAOLAAAAA	Near educational cases shall become big hotels. Periods should not	Books	cooking	5.92	1932.24	0.724151
+AAAAAAAABINAAAAA	Below invisi	Books	cooking	9.59	6854.08	2.568724
+AAAAAAAABONAAAAA	Gains cannot cross colourful, long individuals. Drily red difficulties may not say to a plans. Very different cases ta	Books	cooking	1.60	2682.59	1.005362
+AAAAAAAACBDCAAAA	Well independent scores fight rare changes. Scottish rights would not give; implicit, modern services like yet. Conservative, effective yards should marry about a buildings. Valid, m	Books	cooking	0.50	8850.95	3.317097
+AAAAAAAACDKBAAAA	Unique, commercial discussions mark then social, top states; organizations will not hit never still traditional programmes. Social, afraid papers ought to meet english egg	Books	cooking	2.98	3583.18	1.342879
+AAAAAAAADEIBAAAA	Then attractive practices establish also at a issues; more independent records can inject even weak confidential bands. General parts will come culturally national standards.	Books	cooking	8.90	1781.95	0.667826
+AAAAAAAAECPBAAAA	Alone, following police will not expect mentally clothes. Dramatic, american weeks will not leap so central images. Costs remedy below black, easy letters. Parties ought to come more for a 	Books	cooking	17.66	2891.75	1.083750
+AAAAAAAAEHIDAAAA	Potential years would lay in order strong jobs. Times cannot allow specif	Books	cooking	3.65	6197.62	2.322701
+AAAAAAAAEPJDAAAA	Over demanding subjects may not look of course after a pos	Books	cooking	6.49	15543.46	5.825270
+AAAAAAAAGADEAAAA	Girls may use chri	Books	cooking	4.37	736.80	0.276132
+AAAAAAAAGALAAAAA	Great, only pages might not contribute so; small components require on a films. Times find apparently. So traditional sources find conditions. Gro	Books	cooking	3.40	11257.89	4.219154
+AAAAAAAAGBGBAAAA	Somehow revolutionary sh	Books	cooking	7.10	5940.50	2.226339
+AAAAAAAAGEDDAAAA	Available workshops might direct directly. Conditions must satisfy also upper reactions. Sufficient words must see young considerations. Terrible, only expres	Books	cooking	8.24	3600.68	1.349437
+AAAAAAAAGMMCAAAA	Chief countries leave actually rural, other fathers. Women discover very otherwise large ministers. Slow, envi	Books	cooking	7.35	2158.00	0.808760
+AAAAAAAAGOCAAAAA	Historical, economic lights shall stand much big, odd proposals. Rather grateful branches ought to take. Northern, high miles must ask increasingly. Once chronic	Books	cooking	4.37	5136.88	1.925164
+AAAAAAAAGPPBAAAA	Able, widespread elections could not apply to the powers. Minimal, pleasant fruits used to feed still flexible, new institutions; relationships	Books	cooking	6.47	8428.60	3.158812
+AAAAAAAAHDIBAAAA	Books give simply again technical terms. Fun deaths must not take below carefully true sons. Expensive arts could receive just about leaves. Central, payable reform	Books	cooking	0.86	1271.14	0.476389
+AAAAAAAAHFDEAAAA	Substantial, afraid effects must close. Areas could make only	Books	cooking	6.37	21494.23	8.055459
+AAAAAAAAHKLAAAAA	Purel	Books	cooking	4.62	4512.72	1.691246
+AAAAAAAAIHGCAAAA	About competitive members could not screen; however free performances could not give here in the studies; soft laws deal plans. Bodies complete all right fem	Books	cooking	1.18	9980.61	3.740464
+AAAAAAAAIOCCAAAA	Technological characters want a	Books	cooking	4.64	4752.36	1.781056
+AAAAAAAAIOICAAAA	Contributions move obviously now recent losses. Develo	Books	cooking	3.67	6311.34	2.365320
+AAAAAAAAJBFBAAAA	Too productive points would leave material ministers. Public, objective elections loosen no longer children; political, central movements speak 	Books	cooking	9.42	1847.54	0.692408
+AAAAAAAAJFKBAAAA	Meanwhile wet products ascerta	Books	cooking	5.40	5658.87	2.120792
+AAAAAAAAJHGAAAAA	Recent tools should spee	Books	cooking	20.16	6532.08	2.448047
+AAAAAAAAKCCAAAAA	Possible schools carry primarily dual rises; important meetings could continue other passengers. More scottish things might not fall orders. Right, unable expectati	Books	cooking	4.44	2945.69	1.103965
+AAAAAAAAKEJAAAAA	Other, atlantic regions know fast. Li	Books	cooking	68.84	11613.62	4.352472
+AAAAAAAAKFMCAAAA	Endless, vocational contracts would not stabilise churches. French, good cities light somehow on a offices. Now serious things raise for a walls; certain, c	Books	cooking	0.23	3226.22	1.209100
+AAAAAAAAKJGDAAAA	International eyes might see sales. Joint universities must not hold somewhat with a days. Perfect, profitable trials ought to seem; even pale quantities 	Books	cooking	0.94	1936.79	0.725856
+AAAAAAAAKNIBAAAA	Subjects will read too. Reduced, identical patients like through a animals. At least unable c	Books	cooking	0.12	1530.24	0.573492
+AAAAAAAALBKAAAAA	Conditions used to test so for a spirits; open, royal provisions might not look approximate	Books	cooking	36.97	4187.77	1.569463
+AAAAAAAALIGAAAAA	There superb accidents may strike individual results. Quiet, only forests drop as little unlikely towns. Observations can discern with a points. Substantial banks dest	Books	cooking	0.88	8104.81	3.037464
+AAAAAAAAMBCCAAAA	Schools ought to consider married sources. Then opening modules matter generally this apparent deals; times shall read units. Steps may stop. About modern others alter 	Books	cooking	8.40	11030.92	4.134092
+AAAAAAAAMHIBAAAA	Labour, happy rates stop details. Purposes say small, dead times; tickets will act hopefully yesterday considerable products. Competitive others stay with an purposes. Always personal guns might ri	Books	cooking	2.78	12683.38	4.753389
+AAAAAAAAMMIDAAAA	Technical proportions might perform poor jeans. All right subjects see alternative, big hundreds. Likely months guarantee always especially lon	Books	cooking	8.87	380.76	0.142698
+AAAAAAAAOBBBAAAA	Main meetings can burst certain, parliamentary heroes. Much happy journals learn	Books	cooking	2.61	1585.09	0.594049
+AAAAAAAAOCFBAAAA	Amounts feel as parents. Loud old assumptions can end no longer friendly p	Books	cooking	3.64	1417.21	0.531132
+AAAAAAAAODNBAAAA	Regulations will tell eventually extra pounds	Books	cooking	0.62	2637.22	0.988359
+AAAAAAAAOIOBAAAA	There pale members try a little cheap feet. Golden, o	Books	cooking	65.21	5762.14	2.159495
+AAAAAAAAONGCAAAA	Outcomes will become high wide, substantial clients. Sufficient, new resources weaken only over the moments. Of cour	Books	cooking	1.32	1121.34	0.420248
+AAAAAAAAPDGEAAAA	African lives must n	Books	cooking	0.88	13101.34	4.910029
+AAAAAAAAPNFEAAAA	Wooden, civil fingers keep great, possible scales. Police begin ago in common responsible times. Further open fathers can believe aga	Books	cooking	0.33	282.92	0.106030
+AAAAAAAAADBDAAAA	Upper men used to give still different girls. Proposals subsidise famous nerves. C	Books	entertainments	2.21	3266.76	1.635932
+AAAAAAAAAIKCAAAA	Troubles must know wise indicators. Kinds enter technical, new doubts. Likely, annual eyes see equivalent payments. Both inadequate feelings decide ever initial 	Books	entertainments	5.04	2592.74	1.298395
+AAAAAAAABGCEAAAA	Absolute proteins will happen huge, important unions. Varieties might not climb old, dead memories. Social, efficient governments form especially. Deputies may encourage for ever years. 	Books	entertainments	0.79	3539.20	1.772365
+AAAAAAAABGMDAAAA		Books	entertainments	\N	10168.52	5.092204
+AAAAAAAABGOBAAAA	Japanese, long students may help very; there partial bombs must assess; intentions cannot execute most certain children; indeed necessary a	Books	entertainments	5.36	1803.90	0.903359
+AAAAAAAACGMDAAAA	Aware sentences used to find very by the months; difficulties bring finally. Years turn maybe shots. Apparent, bad lives try more. Physical, voluntary activ	Books	entertainments	6.55	1235.50	0.618715
+AAAAAAAACIDAAAAA	Millions might answer. Attractive rules might beat coloured volunteers. Scottis	Books	entertainments	3.51	11940.70	5.979678
+AAAAAAAACLAEAAAA	As direct shoes cannot guarantee there regular given specialists. Teachers say even eyes. True re	Books	entertainments	1.33	8646.39	4.329950
+AAAAAAAACNOAAAAA	Terms will happen today after a arguments. Most physical flowers doubt just. Other authorities would like still	Books	entertainments	4.15	2195.94	1.099685
+AAAAAAAACOFBAAAA	British, corporate years used to land all poor sequences. Lights ought to get wide real, everyday performances. Ears know essentially. C	Books	entertainments	5.45	9164.29	4.589304
+AAAAAAAADCOAAAAA	Silly acres shall belong alike following, similar pairs. Respectively lucky newspapers shall dare. Also labour requirements can leave; pounds used to stay even only solicitors. Silver systems may de	Books	entertainments	75.74	9674.08	4.844598
+AAAAAAAADFBBAAAA	Social, popular leaves could not ca	Books	entertainments	2.61	8216.66	4.114749
+AAAAAAAADGKAAAAA	However small values 	Books	entertainments	1.49	10944.45	5.480775
+AAAAAAAADHJDAAAA	Public hands might not	Books	entertainments	2.74	7787.48	3.899824
+AAAAAAAAEAPDAAAA	Implications imagine alive groups. Applications ought to meet steadily royal ideas. Able, efficient shoes shou	Books	entertainments	7.80	1342.26	0.672178
+AAAAAAAAECMCAAAA	Rather vast companies pose quiet, actual carers. Close times take only simple possibilities. Current events might say only on a foundation	Books	entertainments	67.28	1401.63	0.701910
+AAAAAAAAEHHBAAAA	Prepared, necessary others will let above for a stocks. Clearly new studies know. Final, social doubts worry certainly conclusions. Essential, severe attitudes respond sufficiently 	Books	entertainments	8.82	9367.84	4.691238
+AAAAAAAAFOCBAAAA	However new	Books	entertainments	2.06	1060.15	0.530903
+AAAAAAAAGABBAAAA	Lives may convey fair, popular industries; sure main records will take please with a restrictions. Illegally tough rights might not return never at the waters. Sensitive standards could take completel	Books	entertainments	2.68	2822.83	1.413620
+AAAAAAAAGEECAAAA	Other, human years used to give simply. Words may carry for the pictures; general month	Books	entertainments	4.85	12733.45	6.376673
+AAAAAAAAGHKDAAAA	Organisations shall guide tory organizations. Social, modest systems gro	Books	entertainments	7.74	434.88	0.217779
+AAAAAAAAGNKAAAAA	Resources comply cheap, ready places. Different, other lights will pay well. Days assume more large courts. Recordings could not design also at the members. Yards can let still political others	Books	entertainments	73.05	3326.52	1.665858
+AAAAAAAAGOLDAAAA	Generally ideal lips must reach beautiful, top patterns. Disabled methods find commercial things. Less happy co	Books	entertainments	6.19	6104.76	3.057149
+AAAAAAAAHDGDAAAA	Laws go shortly british, clear carers. Inner, available aspirations ought to abolish most armed strings. Activities gain then less high banks; never future reactions include so in a powers. Popular, 	Books	entertainments	9.69	2287.64	1.145607
+AAAAAAAAIDODAAAA	Positive, deep pounds might trust just national, financial sheets; answers will take nice, early degrees. Very other votes ought to meet soon international various towns. Changes understand. Delib	Books	entertainments	7.72	1520.07	0.761222
+AAAAAAAAIFABAAAA	Men shall tolerate easily too keen children. Relevant, full-time leaves cannot say presumably from the gods. Large, careful subjects sit pro	Books	entertainments	7.63	7686.65	3.849330
+AAAAAAAAJCGCAAAA	Annual, remote details would know only to a eyes. Laws construct teachers. Little armed prices used to charge economic, associated masters. Home available firms may tell however 	Books	entertainments	3.30	3145.04	1.574977
+AAAAAAAAJFEBAAAA	Too necessary dreams should not co	Books	entertainments	3.75	4680.81	2.344061
+AAAAAAAAJKGAAAAA	Lights allow. Things go white, available 	Books	entertainments	4.92	2308.80	1.156203
+AAAAAAAAJNFEAAAA	Men lift fit letters. Recent shares can give main, new substances. Chains help at the rights. Straightforward things show just european, useful shelves. Healthy combinati	Books	entertainments	0.77	3988.56	1.997396
+AAAAAAAAKDEAAAAA	Yet national bodies could answer on behalf of a hours. Features use later workers. Fortunes placa	Books	entertainments	6.46	4101.09	2.053749
+AAAAAAAAKELBAAAA	However fair pressures realise twice walls. Days bring both. Dreadful syste	Books	entertainments	17.28	4678.96	2.343135
+AAAAAAAAKJNAAAAA	Pp. should build white circumstances. Institutions cannot rest hardly. Minimum, personal goals will experi	Books	entertainments	2.86	1873.92	0.938424
+AAAAAAAAKLEEAAAA	Guilty, mathematical contents used to join as. Ashamed, traditional months go as within a principles. Forward free cases could seek very colleagu	Books	entertainments	9.61	640.02	0.320510
+AAAAAAAAKPABAAAA	Companies must not use especially other sentences. Just roman years benefit particular effects. Sometimes only factors imitate groups. Big processes would not require public, particular banks. 	Books	entertainments	1.75	669.30	0.335172
+AAAAAAAALGMCAAAA	Flowers cultivate still so-called, available	Books	entertainments	3.84	511.75	0.256274
+AAAAAAAAMAACAAAA	Specialists could not depend within the needs. Indian, specified mechanisms should perform together young towns. Seats understand always with a strings. New aspects secure. Report	Books	entertainments	6.36	3096.87	1.550854
+AAAAAAAAMAHDAAAA	Jol	Books	entertainments	14.38	5937.80	2.973539
+AAAAAAAAMFMAAAAA	Legal tasks could keep somewhat black experiences. Groups would expect characters. Also steep concerns might cost for a volunteers. W	Books	entertainments	2.70	54.16	0.027122
+AAAAAAAAMMDBAAAA	Methods secure commentators. Once full-time co	Books	entertainments	5.73	2061.90	1.032560
+AAAAAAAANJFEAAAA	Very, new trends should not des	Books	entertainments	3.14	4743.41	2.375410
+AAAAAAAAOAJCAAAA	Heavy plans ought to sound too just young users; further traditional eyes welcome neither too el	Books	entertainments	3.45	1068.35	0.535009
+AAAAAAAAOOEAAAAA	Companies reveal national reforms; kinds initiate in a languages. Positive miles ought to hesitate thick priorities. Large, cons	Books	entertainments	1.45	5085.84	2.546893
+AAAAAAAAPNIBAAAA	Very good prisoners go against a rules. 	Books	entertainments	3.20	9776.11	4.895692
+AAAAAAAAABNCAAAA	Services will let meetings. Following cuts used to belong actually thorough, comfortable products. Famous lights find since a lands.	Books	fiction	3.74	8142.46	2.257782
+AAAAAAAAAHICAAAA	Particular, concerned odds should see conditions. Limited, existing	Books	fiction	7.71	5250.85	1.455982
+AAAAAAAAAJFCAAAA	Real, brown girls used to go across a effects. Legal questions may assess able, false others. Policies put about; capable provisions get at a opportunities; prime, b	Books	fiction	7.98	3032.61	0.840897
+AAAAAAAAAKEDAAAA	Original, large kinds suit	Books	fiction	9.86	192.06	0.053255
+AAAAAAAAALOAAAAA	Teams would lead now through a eggs. Explanations think good, alone questions; liberal, religious plans alter then. True sports reduce eagerly racial, direct t	Books	fiction	2.73	8823.33	2.446577
+AAAAAAAAAMNBAAAA	Local, direct times can go also. American lines mention further calculations. Russian devices advise sources. Political initiatives may learn just new machines. 	Books	fiction	3.42	12602.81	3.494570
+AAAAAAAAAPEBAAAA	Words think as the police. Only companies shall speak anyway sure, present pairs. Small days may not beat short-term things. Well constant	Books	fiction	3.13	7820.63	2.168543
+AAAAAAAABCPBAAAA	Equal, human roads break hard topics. So political feet should fail away relative publications. Final, industrial areas may leave however by a police. Realistica	Books	fiction	30.09	2166.28	0.600677
+AAAAAAAABDPAAAAA	Keen years fight much. Concerned, vital kings get downstairs new, worthy millions. Else full gam	Books	fiction	2.95	834.15	0.231297
+AAAAAAAABGAAAAAA	Quite different services promote all the same. Private, marginal colleagues play of course similar, different girls. French, local girls reap here. Bad movies shorten relatively. Terms	Books	fiction	57.09	769.64	0.213409
+AAAAAAAABMLBAAAA	Factors could stimulate always. Public, local reactions might bring very. Sufficien	Books	fiction	3.49	2812.85	0.779961
+AAAAAAAACEFAAAAA	Important years participate indeed. Hands make so. Great, environmental lives ought to exist so national, free	Books	fiction	4.25	4189.26	1.161619
+AAAAAAAACENDAAAA	Key, other cases maintain special men. Words would cause significantly good, interesting arguments; plants would not bel	Books	fiction	6.71	20125.67	5.580547
+AAAAAAAACFFBAAAA	Main, ltd. flames continue firmly. European spirits used to endure true with a features. Others tell never moral, normal writers. Li	Books	fiction	0.77	4100.91	1.137121
+AAAAAAAACNLDAAAA	Profoundly useless women might go desperate, international remarks. Different, subject lines can arrange. Personal conditions should fin	Books	fiction	9.50	7033.39	1.950253
+AAAAAAAADCIDAAAA	National women find major, able shows. Direct visitors must not want indian clothes. Years must run slowly in the costs. Months mak	Books	fiction	8.93	25454.69	7.058205
+AAAAAAAADDDEAAAA	Male terms may provide laws; friends add truly rare points. Separate, whole hours may change over. Prime interests could not pretend indeed by a goods. Just past countries get how	Books	fiction	2.27	6298.10	1.746369
+AAAAAAAADEAAAAAA	So fair schools must go problems. Children should not paint in a photographs. Great, late senten	Books	fiction	1.47	1344.56	0.372826
+AAAAAAAADOKBAAAA	Much inner companies could not look nowadays managerial actual detectives. Great days 	Books	fiction	5.84	6859.72	1.902097
+AAAAAAAAECBDAAAA	Forces can testify happy, international levels. Performances pay right bands. Items could discourage even in a months; readers simplify ea	Books	fiction	0.09	4305.74	1.193917
+AAAAAAAAEEFEAAAA	Sufficient, only samples indicate still. Streets take clouds. Services know probably royal times. Old, international seconds must not mean clearly now rich managers. Legs est	Books	fiction	6.90	6816.68	1.890163
+AAAAAAAAEGGBAAAA	Enough average men keep conditions. Smooth magistrates kill only increasingly labour numbers. Numbers beat for a positions. Villages could make yet except for a thoughts. Little, cold prices think; d	Books	fiction	1.41	2850.60	0.790428
+AAAAAAAAEJPDAAAA	Appropriate rates shall eliminate the	Books	fiction	2.51	2774.19	0.769241
+AAAAAAAAENBCAAAA	Agencies will pick different authorities. Whole, academic moments will include again perhaps other profits. Months can lay in a effects. Feet must want gentle, central sections. Even visible he	Books	fiction	5.71	9516.94	2.638905
+AAAAAAAAFNFCAAAA	Years make recent leaves. Perhaps far kinds respond just. Glorious forces matter. Grounds shall not give just oth	Books	fiction	0.32	1950.84	0.540938
+AAAAAAAAFOCEAAAA	Very only cases help. Mere, dangerous figures could not note quickly political wea	Books	fiction	1.92	6142.46	1.703212
+AAAAAAAAGEJBAAAA	Endless, small hills cope again as ready forces. Ideal windows would not repeat so interested shoes. Really interesting stars suppress functional, local farmers. Leaves obtai	Books	fiction	9.02	2050.03	0.568442
+AAAAAAAAGEPDAAAA	Appointed, awful corners respond frequently. Northern friends may not call loudly vertical patients. Just	Books	fiction	82.50	2609.28	0.723514
+AAAAAAAAGJFDAAAA	Aspects appoint eligible, black authorities. Levels may not act far old, immediate stations. Left, critical hea	Books	fiction	8.11	1085.85	0.301089
+AAAAAAAAGNOBAAAA	Colleges cannot create quickly great relations; significant methods pour as educational, constant po	Books	fiction	5.95	2341.60	0.649290
+AAAAAAAAHDDAAAAA	Remote, japanese things would not need at all	Books	fiction	45.99	3782.68	1.048880
+AAAAAAAAHMADAAAA	Willingly left requests declare changes; old lists ought to apply again in a arms. Students eat german, individual ships. Weak goods 	Books	fiction	5.83	10040.62	2.784113
+AAAAAAAAHMGDAAAA	Fair, modern services assess to a	Books	fiction	4.50	6316.82	1.751559
+AAAAAAAAIMNCAAAA	Applications could make similar observations. Pp. would disappear english units. Mothers start instead in the makers. Empty, public fruits 	Books	fiction	3.09	2197.05	0.609209
+AAAAAAAAJEBCAAAA	Fundamental arms could depend. Members shall see other project	Books	fiction	2.43	13675.74	3.792078
+AAAAAAAAJJKAAAAA	Elsewher	Books	fiction	2.23	15758.25	4.369527
+AAAAAAAAKDOBAAAA	Just dead blocks cou	Books	fiction	1.67	1266.16	0.351087
+AAAAAAAAKFBEAAAA	Usually present societies should not hear regularly on a characteristics. Qualifications can 	Books	fiction	2.47	8585.24	2.380558
+AAAAAAAAKGNDAAAA	There different aspects stay often middle, special police. Molecular, scientific efforts define long without the years. Appropriate companies abide doubtless 	Books	fiction	6.99	14589.55	4.045464
+AAAAAAAAKNFBAAAA	Publi	Books	fiction	1.56	5440.65	1.508610
+AAAAAAAAKPNCAAAA	New, sure systems will not make respectiv	Books	fiction	0.84	4675.77	1.296521
+AAAAAAAALIAAAAAA	Clothes can get also; home financial premises should not give proudly. Disabled, urgent tears would not run. Previous, electric schools shall qualify usefully real heads. Very, 	Books	fiction	2.99	1837.12	0.509405
+AAAAAAAAMCHCAAAA	English germans anger systematically for the plans. Lights attract only leading sides. Points conceal. Widely other levels require political t	Books	fiction	4.86	1147.45	0.318170
+AAAAAAAAMDGBAAAA	Accounts used to matter crucially. More than useful ha	Books	fiction	8.72	388.44	0.107708
+AAAAAAAAMGBBAAAA	Inner, encouraging features should sue here to a terms. Patients will seem all slight members. Complex banks take apparently games. Able, irish patients used	Books	fiction	7.27	1376.10	0.381571
+AAAAAAAAMLAAAAAA	Central, principal men a	Books	fiction	0.47	2017.32	0.559372
+AAAAAAAANAMDAAAA	Average services could try unfortunately plants; extensive procedures must	Books	fiction	4.94	5734.05	1.589966
+AAAAAAAANDDAAAAA	Plants should manage slowly on a managers. Trials could stop never also obvious awards; true, attractive controls determine psychiatric, bad relations. Keys follow. Positions coul	Books	fiction	2.73	4345.24	1.204870
+AAAAAAAANEOAAAAA	Working dangers must follow british, wealthy governments. Possible magistrates ought to mean old, major facilities. Contents int	Books	fiction	3.42	12060.94	3.344318
+AAAAAAAANJGDAAAA	Concerned, working children feel politically real texts. Scientists take probably better concerned forms; here negative things comply recently french reactions. Briti	Books	fiction	9.47	19440.81	5.390646
+AAAAAAAANMFEAAAA	Low meals c	Books	fiction	6.53	3925.96	1.088610
+AAAAAAAANNEEAAAA	Quite linguistic cells ask already permanent, valuable players. Colours place hastily happy, short bacteria; int	Books	fiction	1.59	7110.63	1.971671
+AAAAAAAANOKAAAAA	So ethnic championships think totally soft, appropriate customers. Perfect, military enterprises used to reach away essential authorities. Stages	Books	fiction	5.77	4086.66	1.133169
+AAAAAAAAOCGAAAAA	Well different problems must not disrupt	Books	fiction	8.69	1985.29	0.550491
+AAAAAAAAOFECAAAA	Later high interests 	Books	fiction	5.61	9818.74	2.722589
+AAAAAAAAOGEEAAAA	Free processes can wake now still important institutions. Traditional, open plans serve better live years. Women should not pack by the experts. Competitors can miss hence op	Books	fiction	7.63	6537.27	1.812687
+AAAAAAAAOHHAAAAA	Private children used to stop really national, mate	Books	fiction	2.82	1432.82	0.397299
+AAAAAAAAOJCEAAAA	Approaches used to worsen forwards yellow, effective days. Personal, musical dreams appreciate in a claims; future, natural doors make thus. Empirical,	Books	fiction	3.81	4949.10	1.372311
 AAAAAAAAPCEBAAAA	Th	Books	fiction	0.34	\N	\N
-AAAAAAAAPGDEAAAA	Appointed others must trace yesterday with the members. Disabled animals talk also isolated, entire soldiers. Signs join at all lega	Books	fiction	0.97	7324.52	2.03
-AAAAAAAAPMBAAAAA	Exactly financial games may find effective, delight	Books	fiction	8.79	8029.03	2.22
-AAAAAAAAPOACAAAA	Major deaths swing later books; particularly expected problems give. High, high tools must see big areas. Major, informal passengers devise; windows cannot think further nice doors. Small	Books	fiction	4.56	465.50	0.12
-AAAAAAAAAFIBAAAA	Different, fresh structures used to mean big schools; small, opposite findings drag 	Books	history	6.99	7291.12	1.92
-AAAAAAAAAJFAAAAA	Normal cases call into a rates. Easy royal police cannot assert long records. Young, scottish exceptions kill more ce	Books	history	2.50	2666.31	0.70
-AAAAAAAAAMEAAAAA	Very, true women eat. Left institutions may agree towards the kids; national, other terms open there then different prices; others settle however. Apparently normal 	Books	history	9.64	12533.18	3.31
-AAAAAAAAAMJBAAAA	Flowers will look respectable negotiations. Standards see and so on social men. Points could play in the steps	Books	history	8.23	3648.46	0.96
-AAAAAAAAAOFBAAAA	Also independent documents can answer approximately. Negotiations drop never. Similar, likely panels take parents. Ordinary, financial requirements could not match short, international p	Books	history	3.95	1478.52	0.39
-AAAAAAAABADDAAAA	Protective, different police wish. So free standards could develop as for a respondents. Surprising, famous goods cannot fire only othe	Books	history	1.74	935.90	0.24
-AAAAAAAABHCDAAAA	Also academic schemes might not think in a ingredients. Running, red papers come. Then prop	Books	history	9.69	3556.29	0.93
-AAAAAAAABHJCAAAA	More weak months believe today unnecessary sources. Years tread difficult emissions. Intermediate, personal farms could sail as without a causes. New offices illust	Books	history	1.75	7880.37	2.08
-AAAAAAAABMJDAAAA	Lines shall talk usually blue, vague cards. Popular years increa	Books	history	59.09	836.67	0.22
-AAAAAAAABODEAAAA	Cruel presents shall not stay brothers. Indian, minor wages carry always significantly sorry employees. Right new looks wil	Books	history	3.76	4975.56	1.31
-AAAAAAAABPFEAAAA	Serious, big changes might find populations; leaders make helplessly on a policies; great, likely departments try somehow changes; very right bags pretend new, central villages. No longer 	Books	history	2.64	42.27	0.01
-AAAAAAAACBLCAAAA	Right difficulties feed too directly medieval years. Vocational services see here; abroad sure relationships would sit against the principles; injuries would not assist bare, safe adve	Books	history	5.98	1059.57	0.27
-AAAAAAAACIBAAAAA	Surely specific clubs must remember necessary, big duties. There final words learn practically standard lands. Private, clear companies must see	Books	history	4.94	811.68	0.21
-AAAAAAAACJHBAAAA	Good children shall pass fairly free, current cards. German tactics know	Books	history	1.13	8970.57	2.37
-AAAAAAAACLNAAAAA	At all public areas object 	Books	history	75.67	152.32	0.04
-AAAAAAAADCDCAAAA	Recent, unable partners may continue good, blac	Books	history	0.69	1302.85	0.34
-AAAAAAAADDFCAAAA	Misleading, royal orders ought to attempt away single schools. Fat generations could not get h	Books	history	5.94	11450.72	3.02
-AAAAAAAADHIBAAAA	Eyes must not sound. Classes take. Best pleased methods provi	Books	history	0.17	697.92	0.18
-AAAAAAAADLPCAAAA	Patient trains will happen even good, central steps. New equations will include by a exercises. Key, psychological deaths apply mainly also foreign bodies. Assistant, inap	Books	history	9.95	12236.37	3.23
-AAAAAAAAECIDAAAA	Unemployed attacks may not take both later social circumstances. Wide, other owners must not explore teach	Books	history	3.98	3016.53	0.79
-AAAAAAAAEEMCAAAA	Extra, annual kinds produce other lights. Successful pp. should not tell home in a husbands. Centres ho	Books	history	87.93	4408.70	1.16
-AAAAAAAAEJNDAAAA	Also public times make flat, personal instances. Almost old remains used to reverse yesterday wryly lucky 	Books	history	1.94	7302.98	1.92
-AAAAAAAAEKFEAAAA	Afraid, grey officers mean costly institutions. Societi	Books	history	9.13	4121.85	1.08
-AAAAAAAAFBFCAAAA	Mechanisms make. Most small colleagues remember only. Previous, clear years measure at once. Words find already representatives. Lucky restaurants mark parts. Local, prime grants cannot find so	Books	history	3.98	7776.53	2.05
-AAAAAAAAFCCEAAAA	Whole companies teach more subsequent, similar priests. From time to time united tests should talk men. Fine standards come to	Books	history	7.77	3200.84	0.84
-AAAAAAAAFJKBAAAA	Roads clear. General exceptions give capable, free times; patients ought 	Books	history	4.41	4555.90	1.20
-AAAAAAAAGDNDAAAA	Shareholders should buy blue aspirations. Known, formal colleagues remain instead english minutes. Benefits operate always miles. Su	Books	history	3.87	1085.96	0.28
-AAAAAAAAGECBAAAA	However dead stars shall not think lately only ordinary dates. Day	Books	history	9.88	4869.71	1.28
-AAAAAAAAGHHDAAAA	Futures should enjoy able galleries. Late blue tickets pass longer urgently dead types. Shoulders will see rigidly institutions. Other con	Books	history	2.64	6413.60	1.69
-AAAAAAAAGICDAAAA	Great sounds might shake just extremely important men. Paintings 	Books	history	1.73	3273.90	0.86
-AAAAAAAAGIIDAAAA	Factors want. Events declare here excellent	Books	history	2.30	5544.72	1.46
-AAAAAAAAGLMAAAAA	Comprehensive kinds may c	Books	history	9.43	9512.55	2.51
-AAAAAAAAHBJCAAAA	Vast, lively periods will not treat new, average r	Books	history	6.01	2002.74	0.52
-AAAAAAAAHDDDAAAA	Very questions will not come changes. Famous things used to go very personal muscles. Marvellous methods shall ask so large, twin citizens; purposes kill so. Rough tears used to concentrate in 	Books	history	8.39	19376.75	5.11
-AAAAAAAAIEODAAAA	Likely findings can maintain suddenly into the aspects; ideas would n	Books	history	8.74	985.24	0.26
-AAAAAAAAIGPAAAAA	Happy procedures will make flat, single teachers. Coloured, economic concepts	Books	history	4.08	4623.37	1.22
-AAAAAAAAIIHAAAAA	Expensive services ensur	Books	history	2.88	3273.09	0.86
-AAAAAAAAIIJBAAAA	Already unexpected relations must investigate sooner new fair 	Books	history	26.55	767.89	0.20
-AAAAAAAAIIOBAAAA	Marvellous, high hands for	Books	history	6.07	6573.13	1.73
-AAAAAAAAIKIDAAAA	Handsome trees could not become over lucky, human circumstances. Possible causes shall not make by a proposals. Only effective owners can like at least rates; sure, able	Books	history	4.36	7791.99	2.05
-AAAAAAAAILPBAAAA	Incredible films may not restrain as. Central fields will not defer in	Books	history	6.15	1078.56	0.28
-AAAAAAAAIMNBAAAA	Black, necessary acts will claim over. Just painful lines prove national, detailed activiti	Books	history	4.78	552.00	0.14
-AAAAAAAAINPCAAAA	Significant, traditional soldiers sacrifice shortly. Hands could not get new details; uncomfortable police will block. Total, significant galleries assist 	Books	history	3.35	3386.59	0.89
-AAAAAAAAIONDAAAA	Central nights shall note acutely patients. National years take about an sets. Only critical cattle press very as a effects. Most occasional devices ought to work ab	Books	history	7.83	14300.44	3.77
-AAAAAAAAJGEAAAAA	Fully powerful qualities pinpoint thus movements. Domestic officers continue in a cases. Teachers shall introduce indeed other, good	Books	history	0.65	6334.78	1.67
-AAAAAAAAKFLAAAAA	Everyd	Books	history	1.79	7069.46	1.86
-AAAAAAAAKLLDAAAA	Partners could contact from a efforts. Mysterious, royal reports could suffer excellent, other divisions. Strong elements may enable for example small things. Judges used to make. Suffi	Books	history	58.19	2628.31	0.69
-AAAAAAAAKMKCAAAA	Sometimes physical theories allow ever differences. Crucial, common things can land often high, increased children. Apart european troops pay easily problems. More clear descriptions m	Books	history	4.09	6056.36	1.60
-AAAAAAAAKNBEAAAA	Tall animals swim extra commercial, special politicians; requirements punish; services relate always 	Books	history	45.77	6612.35	1.74
-AAAAAAAALAFAAAAA	New plants bring however on a years. Economic, british needs go of course. Children shall not benefit. Dangerous, whole patients ought to let. Camps shall not seek merely modest hearts. Hands like	Books	history	5.91	8789.94	2.32
-AAAAAAAALANBAAAA	Chief objects look teachers. Already empi	Books	history	1.13	26641.81	7.03
-AAAAAAAALJCDAAAA	Limited, just centres move carefully fundamental females. Flowers might use never. New, advisory rules 	Books	history	1.27	7584.28	2.00
-AAAAAAAAMBFCAAAA	Private, democratic hands could not compete now anxious levels; pure supporters would not question furt	Books	history	7.76	3705.35	0.97
-AAAAAAAAMBPDAAAA	Gothic pockets see cognitive, agricultural years. As important men account good, old hands. Pretty, old laws break quickly to a	Books	history	8.85	700.32	0.18
-AAAAAAAAMGICAAAA	Arms get at most more alone troops. Singl	Books	history	6.16	1834.70	0.48
-AAAAAAAAMHMBAAAA	Only supplies might remember again. Forces agree thus of course human areas. Budgets should pay similar, local procedures. Following, able things help elderly, american volu	Books	history	3.98	1461.84	0.38
-AAAAAAAAMKEDAAAA	States provide better values. Massive backs will play just underneath relevant procedures. Invariably labour legs insert sti	Books	history	1.75	436.80	0.11
-AAAAAAAAMPPCAAAA	Categories shall	Books	history	8.98	3439.98	0.90
-AAAAAAAANELDAAAA	Middle areas should respond appropriate, other plans. Stories escape somewha	Books	history	5.35	2308.02	0.60
-AAAAAAAANIBDAAAA	Other, convincing readers shall talk rapidly parents. De	Books	history	4.31	19220.00	5.07
-AAAAAAAANMCBAAAA	Policies compensate more long eyes. Terrible, single res	Books	history	6.60	9284.67	2.45
-AAAAAAAANNHBAAAA	Old, casual cards appear large, industrial areas. There chinese profits receive well safe words. Contemporary centuries consider particularly	Books	history	9.83	1717.86	0.45
-AAAAAAAAOCJBAAAA	Resources might benefit yesterday relations. Urban boats demonstrate main, following sales. Materials accept therefore thoughts. Short, particular paymen	Books	history	8.95	3852.80	1.01
-AAAAAAAAOEKAAAAA	Bad commentators should not happen; furious 	Books	history	0.55	3600.00	0.95
-AAAAAAAAOGGAAAAA	Temporary, beautiful negotiations carry holy, electric gentlemen. Else large fingers should sail museums. Orders take profoundly high, international arms; often able	Books	history	0.66	8298.62	2.19
-AAAAAAAAOLDBAAAA	Special chee	Books	history	49.12	29083.38	7.68
-AAAAAAAAPNLBAAAA	National members sue inner tasks. Other, dark windows sleep notably burning arrangements. Lightly industrial ships may recognise alone a	Books	history	0.13	5470.68	1.44
-AAAAAAAAADPBAAAA	Then specific supporters know years. Flowers start deliberately lucky dealers. Much english trades want. Errors vary from a years. Only absolute women might lower material centres. White, civil j	Books	home repair	6.98	47.79	0.01
-AAAAAAAAAMKBAAAA	Scottish, broken pupils must not wait high just terms. International, european miles might think; areas may get true feet. Certain authorities can eliminate	Books	home repair	3.89	13388.47	3.88
-AAAAAAAAANMDAAAA	Professional, great girls shall not understand then. Living, old eyes take genuinely schools. Further recent drivers recover properties; wrong, fresh policies swim. Pregnant, full appl	Books	home repair	43.55	8865.73	2.56
-AAAAAAAABFDEAAAA	Efficient, bad commitments ought to form grounds. Alone vast competitors might	Books	home repair	19.40	2154.45	0.62
-AAAAAAAABIKAAAAA	Rough conservatives function easily views; modern, corresponding texts improve wide, faint experiments. Duties cannot support similarly pages. Shows should discuss apart scenes. Ye	Books	home repair	34.30	11259.71	3.26
-AAAAAAAABJJAAAAA	Very european writers ought to swim so efficient, proud opponents. Quickly medical si	Books	home repair	3.61	459.93	0.13
-AAAAAAAABODBAAAA	Governments shall light just. Mediterranean, russian differences would adjust perhaps methods. Holes answer largely commercially optimistic fees. Available houses used to help later scotti	Books	home repair	1.89	4790.66	1.38
-AAAAAAAACDFDAAAA	Whole, thin items 	Books	home repair	1.75	18262.68	5.29
-AAAAAAAACLADAAAA	Full problems might not split political, serious legs. Also particular minutes transmit thus healthy minute	Books	home repair	6.75	10082.03	2.92
-AAAAAAAACOHAAAAA	Again parliamentary stocks may generate typically unnecessary external arrangements. Funds fight again sole, rural contributions. Public fires	Books	home repair	6.21	8374.65	2.42
-AAAAAAAADAKAAAAA	Following, other respects must not come new,	Books	home repair	6.10	11471.54	3.32
-AAAAAAAADECEAAAA	Open, other words include a little sharply anxious soldiers. Conditions mean now rules. Patients shall vary around a problems. Difficult edges take stil	Books	home repair	7.66	12933.23	3.74
-AAAAAAAADLEEAAAA	Professional, delicate settings must raise partially generally common heads. Either	Books	home repair	1.78	289.30	0.08
-AAAAAAAAEADEAAAA	Ships should help private, possible societies. C	Books	home repair	8.10	11201.35	3.24
-AAAAAAAAEIBAAAAA	Then human details	Books	home repair	0.82	2109.69	0.61
-AAAAAAAAEJCBAAAA	Young, whi	Books	home repair	5.38	1079.51	0.31
-AAAAAAAAEJDDAAAA	Unknown minutes must not override especially significant flowers. Northern problems mean on the objections. Words mean later econo	Books	home repair	2.50	1600.14	0.46
-AAAAAAAAFAFDAAAA	As available citizens shall know. Unlikely, social men require. Leaves would make now on a years. Yet industrial interest	Books	home repair	9.91	16111.32	4.66
-AAAAAAAAFDFAAAAA	All right used men must demand. Visual companies take entirely inhabitants; forward common hands hear here local customers. So traditional questions shal	Books	home repair	7.18	603.13	0.17
-AAAAAAAAFIHCAAAA	Hard specialists could deal now royal beds. Now high vehicles boycott fingers. National, british students operate pop	Books	home repair	2.46	4067.36	1.17
-AAAAAAAAFKDEAAAA	Western, great eyes return unknown tensions. European years might not signal asleep, reduced countries. S	Books	home repair	7.29	573.54	0.16
-AAAAAAAAGBEAAAAA	Later wonderful authorities must get famous terms. Articles shall vary to a shoulders. Exhibitions replace far good councillors. Feet can increase rarely later high sales. Open c	Books	home repair	2.10	5190.70	1.50
-AAAAAAAAGCOBAAAA	Vital colleagues allow very letters; recent, dramatic resources tell very thousands. Royal, sexual aspirations will earn almost on a legs. We	Books	home repair	4.05	3114.46	0.90
-AAAAAAAAGDEBAAAA	Probably british interests could not arrange considerable sources; newspapers speak aback by a negotiations. 	Books	home repair	4.16	4441.55	1.28
-AAAAAAAAGPOCAAAA	Widespread, comprehen	Books	home repair	2.89	5969.32	1.73
-AAAAAAAAHGMAAAAA	Variables arrange hostile democrats. Original habits know as certain horses. Firm, technical pupils must see also never other	Books	home repair	9.17	2756.10	0.79
-AAAAAAAAHPJDAAAA	Services prepare always conventional conditions. British children ought to see seconds. Regional rivers preserve much royal, eligible millions; anxious, past customers shall not accompany. Names c	Books	home repair	1.77	435.75	0.12
-AAAAAAAAIKODAAAA	Final, final wives show between an rocks. Final, local participants might sue at all blue hours. Kinds move always generally benefic	Books	home repair	4.05	2041.92	0.59
-AAAAAAAAILKCAAAA	Possible, advisory conclusions could not reply. Preliminary rooms should provide initiatives. Still constitutional women should take into a chemicals. Well good effects must a	Books	home repair	74.38	1283.39	0.37
-AAAAAAAAIMCDAAAA	Different ties woul	Books	home repair	1.64	4975.45	1.44
-AAAAAAAAINCDAAAA	Chinese dreams cannot tell how	Books	home repair	0.53	16303.25	4.72
-AAAAAAAAINLAAAAA	Common colonies tell british, regular me	Books	home repair	4.31	2360.53	0.68
-AAAAAAAAIPHBAAAA	Narrow eyes shall affect in a goods. Addit	Books	home repair	0.45	8478.03	2.45
-AAAAAAAAJACCAAAA	Even rural schemes lead bombs. Ready minutes expect quite matters. Old flowers s	Books	home repair	4.45	1861.31	0.53
-AAAAAAAAJAICAAAA	Too good effects telephone too crazy students. Specific, scottish elements might not tell nuclear variables. Following stations receive more responsible	Books	home repair	8.80	1283.82	0.37
-AAAAAAAAJKFBAAAA	Events stop a little. Northern, white walls welcome at all businesses. Governors must see from a 	Books	home repair	1.96	2145.98	0.62
-AAAAAAAAKCDCAAAA	So alternative bones make very blind, foreign things. Policies find main, industrial cases. Funds must buy enough quite quiet years. Much different photographs clear serious	Books	home repair	7.09	5403.68	1.56
-AAAAAAAAKDBDAAAA	Firm towns may come only clear, main companies. Enough old groups appoint. Children know in a co	Books	home repair	2.74	14467.49	4.19
-AAAAAAAAKFHBAAAA	Offences would not tell ideas. Required neighbours would create previously. Human processes become suddenly specific casualties; things used to propose closely. Substantial views may claim 	Books	home repair	8.16	3073.31	0.89
-AAAAAAAAKPNDAAAA	Slowly small communicat	Books	home repair	6.35	41.86	0.01
-AAAAAAAALALAAAAA	Important months sing then remaining ways; national tears seem other, com	Books	home repair	0.95	1598.49	0.46
-AAAAAAAALCCEAAAA	Daily lines must say as. Ready conditions avoid police. Girls ought to reveal however managerial affairs;	Books	home repair	19.65	4979.65	1.44
-AAAAAAAALOCEAAAA	Public, crucial institutions get. Years could materialise. Nice plans involve; details must not see about a sounds. Very medical activities may remain offices. Yet high lovers carry only future p	Books	home repair	29.87	4356.99	1.26
-AAAAAAAALPGCAAAA	Free, relevant facilities used to include on a assumpt	Books	home repair	0.21	8613.92	2.49
+AAAAAAAAPGDEAAAA	Appointed others must trace yesterday with the members. Disabled animals talk also isolated, entire soldiers. Signs join at all lega	Books	fiction	0.97	7324.52	2.030979
+AAAAAAAAPMBAAAAA	Exactly financial games may find effective, delight	Books	fiction	8.79	8029.03	2.226330
+AAAAAAAAPOACAAAA	Major deaths swing later books; particularly expected problems give. High, high tools must see big areas. Major, informal passengers devise; windows cannot think further nice doors. Small	Books	fiction	4.56	465.50	0.129076
+AAAAAAAAAFIBAAAA	Different, fresh structures used to mean big schools; small, opposite findings drag 	Books	history	6.99	7291.12	1.926551
+AAAAAAAAAJFAAAAA	Normal cases call into a rates. Easy royal police cannot assert long records. Young, scottish exceptions kill more ce	Books	history	2.50	2666.31	0.704525
+AAAAAAAAAMEAAAAA	Very, true women eat. Left institutions may agree towards the kids; national, other terms open there then different prices; others settle however. Apparently normal 	Books	history	9.64	12533.18	3.311674
+AAAAAAAAAMJBAAAA	Flowers will look respectable negotiations. Standards see and so on social men. Points could play in the steps	Books	history	8.23	3648.46	0.964041
+AAAAAAAAAOFBAAAA	Also independent documents can answer approximately. Negotiations drop never. Similar, likely panels take parents. Ordinary, financial requirements could not match short, international p	Books	history	3.95	1478.52	0.390673
+AAAAAAAABADDAAAA	Protective, different police wish. So free standards could develop as for a respondents. Surprising, famous goods cannot fire only othe	Books	history	1.74	935.90	0.247295
+AAAAAAAABHCDAAAA	Also academic schemes might not think in a ingredients. Running, red papers come. Then prop	Books	history	9.69	3556.29	0.939687
+AAAAAAAABHJCAAAA	More weak months believe today unnecessary sources. Years tread difficult emissions. Intermediate, personal farms could sail as without a causes. New offices illust	Books	history	1.75	7880.37	2.082250
+AAAAAAAABMJDAAAA	Lines shall talk usually blue, vague cards. Popular years increa	Books	history	59.09	836.67	0.221075
+AAAAAAAABODEAAAA	Cruel presents shall not stay brothers. Indian, minor wages carry always significantly sorry employees. Right new looks wil	Books	history	3.76	4975.56	1.314704
+AAAAAAAABPFEAAAA	Serious, big changes might find populations; leaders make helplessly on a policies; great, likely departments try somehow changes; very right bags pretend new, central villages. No longer 	Books	history	2.64	42.27	0.011169
+AAAAAAAACBLCAAAA	Right difficulties feed too directly medieval years. Vocational services see here; abroad sure relationships would sit against the principles; injuries would not assist bare, safe adve	Books	history	5.98	1059.57	0.279972
+AAAAAAAACIBAAAAA	Surely specific clubs must remember necessary, big duties. There final words learn practically standard lands. Private, clear companies must see	Books	history	4.94	811.68	0.214472
+AAAAAAAACJHBAAAA	Good children shall pass fairly free, current cards. German tactics know	Books	history	1.13	8970.57	2.370316
+AAAAAAAACLNAAAAA	At all public areas object 	Books	history	75.67	152.32	0.040247
+AAAAAAAADCDCAAAA	Recent, unable partners may continue good, blac	Books	history	0.69	1302.85	0.344255
+AAAAAAAADDFCAAAA	Misleading, royal orders ought to attempt away single schools. Fat generations could not get h	Books	history	5.94	11450.72	3.025652
+AAAAAAAADHIBAAAA	Eyes must not sound. Classes take. Best pleased methods provi	Books	history	0.17	697.92	0.184413
+AAAAAAAADLPCAAAA	Patient trains will happen even good, central steps. New equations will include by a exercises. Key, psychological deaths apply mainly also foreign bodies. Assistant, inap	Books	history	9.95	12236.37	3.233247
+AAAAAAAAECIDAAAA	Unemployed attacks may not take both later social circumstances. Wide, other owners must not explore teach	Books	history	3.98	3016.53	0.797065
+AAAAAAAAEEMCAAAA	Extra, annual kinds produce other lights. Successful pp. should not tell home in a husbands. Centres ho	Books	history	87.93	4408.70	1.164922
+AAAAAAAAEJNDAAAA	Also public times make flat, personal instances. Almost old remains used to reverse yesterday wryly lucky 	Books	history	1.94	7302.98	1.929684
+AAAAAAAAEKFEAAAA	Afraid, grey officers mean costly institutions. Societi	Books	history	9.13	4121.85	1.089126
+AAAAAAAAFBFCAAAA	Mechanisms make. Most small colleagues remember only. Previous, clear years measure at once. Words find already representatives. Lucky restaurants mark parts. Local, prime grants cannot find so	Books	history	3.98	7776.53	2.054812
+AAAAAAAAFCCEAAAA	Whole companies teach more subsequent, similar priests. From time to time united tests should talk men. Fine standards come to	Books	history	7.77	3200.84	0.845766
+AAAAAAAAFJKBAAAA	Roads clear. General exceptions give capable, free times; patients ought 	Books	history	4.41	4555.90	1.203817
+AAAAAAAAGDNDAAAA	Shareholders should buy blue aspirations. Known, formal colleagues remain instead english minutes. Benefits operate always miles. Su	Books	history	3.87	1085.96	0.286945
+AAAAAAAAGECBAAAA	However dead stars shall not think lately only ordinary dates. Day	Books	history	9.88	4869.71	1.286735
+AAAAAAAAGHHDAAAA	Futures should enjoy able galleries. Late blue tickets pass longer urgently dead types. Shoulders will see rigidly institutions. Other con	Books	history	2.64	6413.60	1.694681
+AAAAAAAAGICDAAAA	Great sounds might shake just extremely important men. Paintings 	Books	history	1.73	3273.90	0.865070
+AAAAAAAAGIIDAAAA	Factors want. Events declare here excellent	Books	history	2.30	5544.72	1.465095
+AAAAAAAAGLMAAAAA	Comprehensive kinds may c	Books	history	9.43	9512.55	2.513525
+AAAAAAAAHBJCAAAA	Vast, lively periods will not treat new, average r	Books	history	6.01	2002.74	0.529189
+AAAAAAAAHDDDAAAA	Very questions will not come changes. Famous things used to go very personal muscles. Marvellous methods shall ask so large, twin citizens; purposes kill so. Rough tears used to concentrate in 	Books	history	8.39	19376.75	5.119967
+AAAAAAAAIEODAAAA	Likely findings can maintain suddenly into the aspects; ideas would n	Books	history	8.74	985.24	0.260332
+AAAAAAAAIGPAAAAA	Happy procedures will make flat, single teachers. Coloured, economic concepts	Books	history	4.08	4623.37	1.221644
+AAAAAAAAIIHAAAAA	Expensive services ensur	Books	history	2.88	3273.09	0.864856
+AAAAAAAAIIJBAAAA	Already unexpected relations must investigate sooner new fair 	Books	history	26.55	767.89	0.202901
+AAAAAAAAIIOBAAAA	Marvellous, high hands for	Books	history	6.07	6573.13	1.736834
+AAAAAAAAIKIDAAAA	Handsome trees could not become over lucky, human circumstances. Possible causes shall not make by a proposals. Only effective owners can like at least rates; sure, able	Books	history	4.36	7791.99	2.058897
+AAAAAAAAILPBAAAA	Incredible films may not restrain as. Central fields will not defer in	Books	history	6.15	1078.56	0.284990
+AAAAAAAAIMNBAAAA	Black, necessary acts will claim over. Just painful lines prove national, detailed activiti	Books	history	4.78	552.00	0.145856
+AAAAAAAAINPCAAAA	Significant, traditional soldiers sacrifice shortly. Hands could not get new details; uncomfortable police will block. Total, significant galleries assist 	Books	history	3.35	3386.59	0.894847
+AAAAAAAAIONDAAAA	Central nights shall note acutely patients. National years take about an sets. Only critical cattle press very as a effects. Most occasional devices ought to work ab	Books	history	7.83	14300.44	3.778641
+AAAAAAAAJGEAAAAA	Fully powerful qualities pinpoint thus movements. Domestic officers continue in a cases. Teachers shall introduce indeed other, good	Books	history	0.65	6334.78	1.673855
+AAAAAAAAKFLAAAAA	Everyd	Books	history	1.79	7069.46	1.867981
+AAAAAAAAKLLDAAAA	Partners could contact from a efforts. Mysterious, royal reports could suffer excellent, other divisions. Strong elements may enable for example small things. Judges used to make. Suffi	Books	history	58.19	2628.31	0.694485
+AAAAAAAAKMKCAAAA	Sometimes physical theories allow ever differences. Crucial, common things can land often high, increased children. Apart european troops pay easily problems. More clear descriptions m	Books	history	4.09	6056.36	1.600287
+AAAAAAAAKNBEAAAA	Tall animals swim extra commercial, special politicians; requirements punish; services relate always 	Books	history	45.77	6612.35	1.747198
+AAAAAAAALAFAAAAA	New plants bring however on a years. Economic, british needs go of course. Children shall not benefit. Dangerous, whole patients ought to let. Camps shall not seek merely modest hearts. Hands like	Books	history	5.91	8789.94	2.322588
+AAAAAAAALANBAAAA	Chief objects look teachers. Already empi	Books	history	1.13	26641.81	7.039633
+AAAAAAAALJCDAAAA	Limited, just centres move carefully fundamental females. Flowers might use never. New, advisory rules 	Books	history	1.27	7584.28	2.004013
+AAAAAAAAMBFCAAAA	Private, democratic hands could not compete now anxious levels; pure supporters would not question furt	Books	history	7.76	3705.35	0.979074
+AAAAAAAAMBPDAAAA	Gothic pockets see cognitive, agricultural years. As important men account good, old hands. Pretty, old laws break quickly to a	Books	history	8.85	700.32	0.185047
+AAAAAAAAMGICAAAA	Arms get at most more alone troops. Singl	Books	history	6.16	1834.70	0.484787
+AAAAAAAAMHMBAAAA	Only supplies might remember again. Forces agree thus of course human areas. Budgets should pay similar, local procedures. Following, able things help elderly, american volu	Books	history	3.98	1461.84	0.386265
+AAAAAAAAMKEDAAAA	States provide better values. Massive backs will play just underneath relevant procedures. Invariably labour legs insert sti	Books	history	1.75	436.80	0.115416
+AAAAAAAAMPPCAAAA	Categories shall	Books	history	8.98	3439.98	0.908954
+AAAAAAAANELDAAAA	Middle areas should respond appropriate, other plans. Stories escape somewha	Books	history	5.35	2308.02	0.609853
+AAAAAAAANIBDAAAA	Other, convincing readers shall talk rapidly parents. De	Books	history	4.31	19220.00	5.078549
+AAAAAAAANMCBAAAA	Policies compensate more long eyes. Terrible, single res	Books	history	6.60	9284.67	2.453311
+AAAAAAAANNHBAAAA	Old, casual cards appear large, industrial areas. There chinese profits receive well safe words. Contemporary centuries consider particularly	Books	history	9.83	1717.86	0.453914
+AAAAAAAAOCJBAAAA	Resources might benefit yesterday relations. Urban boats demonstrate main, following sales. Materials accept therefore thoughts. Short, particular paymen	Books	history	8.95	3852.80	1.018035
+AAAAAAAAOEKAAAAA	Bad commentators should not happen; furious 	Books	history	0.55	3600.00	0.951237
+AAAAAAAAOGGAAAAA	Temporary, beautiful negotiations carry holy, electric gentlemen. Else large fingers should sail museums. Orders take profoundly high, international arms; often able	Books	history	0.66	8298.62	2.192765
+AAAAAAAAOLDBAAAA	Special chee	Books	history	49.12	29083.38	7.684775
+AAAAAAAAPNLBAAAA	National members sue inner tasks. Other, dark windows sleep notably burning arrangements. Lightly industrial ships may recognise alone a	Books	history	0.13	5470.68	1.445531
+AAAAAAAAADPBAAAA	Then specific supporters know years. Flowers start deliberately lucky dealers. Much english trades want. Errors vary from a years. Only absolute women might lower material centres. White, civil j	Books	home repair	6.98	47.79	0.013851
+AAAAAAAAAMKBAAAA	Scottish, broken pupils must not wait high just terms. International, european miles might think; areas may get true feet. Certain authorities can eliminate	Books	home repair	3.89	13388.47	3.880470
+AAAAAAAAANMDAAAA	Professional, great girls shall not understand then. Living, old eyes take genuinely schools. Further recent drivers recover properties; wrong, fresh policies swim. Pregnant, full appl	Books	home repair	43.55	8865.73	2.569613
+AAAAAAAABFDEAAAA	Efficient, bad commitments ought to form grounds. Alone vast competitors might	Books	home repair	19.40	2154.45	0.624438
+AAAAAAAABIKAAAAA	Rough conservatives function easily views; modern, corresponding texts improve wide, faint experiments. Duties cannot support similarly pages. Shows should discuss apart scenes. Ye	Books	home repair	34.30	11259.71	3.263477
+AAAAAAAABJJAAAAA	Very european writers ought to swim so efficient, proud opponents. Quickly medical si	Books	home repair	3.61	459.93	0.133304
+AAAAAAAABODBAAAA	Governments shall light just. Mediterranean, russian differences would adjust perhaps methods. Holes answer largely commercially optimistic fees. Available houses used to help later scotti	Books	home repair	1.89	4790.66	1.388509
+AAAAAAAACDFDAAAA	Whole, thin items 	Books	home repair	1.75	18262.68	5.293195
+AAAAAAAACLADAAAA	Full problems might not split political, serious legs. Also particular minutes transmit thus healthy minute	Books	home repair	6.75	10082.03	2.922142
+AAAAAAAACOHAAAAA	Again parliamentary stocks may generate typically unnecessary external arrangements. Funds fight again sole, rural contributions. Public fires	Books	home repair	6.21	8374.65	2.427280
+AAAAAAAADAKAAAAA	Following, other respects must not come new,	Books	home repair	6.10	11471.54	3.324873
+AAAAAAAADECEAAAA	Open, other words include a little sharply anxious soldiers. Conditions mean now rules. Patients shall vary around a problems. Difficult edges take stil	Books	home repair	7.66	12933.23	3.748524
+AAAAAAAADLEEAAAA	Professional, delicate settings must raise partially generally common heads. Either	Books	home repair	1.78	289.30	0.083849
+AAAAAAAAEADEAAAA	Ships should help private, possible societies. C	Books	home repair	8.10	11201.35	3.246562
+AAAAAAAAEIBAAAAA	Then human details	Books	home repair	0.82	2109.69	0.611465
+AAAAAAAAEJCBAAAA	Young, whi	Books	home repair	5.38	1079.51	0.312881
+AAAAAAAAEJDDAAAA	Unknown minutes must not override especially significant flowers. Northern problems mean on the objections. Words mean later econo	Books	home repair	2.50	1600.14	0.463779
+AAAAAAAAFAFDAAAA	As available citizens shall know. Unlikely, social men require. Leaves would make now on a years. Yet industrial interest	Books	home repair	9.91	16111.32	4.669651
+AAAAAAAAFDFAAAAA	All right used men must demand. Visual companies take entirely inhabitants; forward common hands hear here local customers. So traditional questions shal	Books	home repair	7.18	603.13	0.174809
+AAAAAAAAFIHCAAAA	Hard specialists could deal now royal beds. Now high vehicles boycott fingers. National, british students operate pop	Books	home repair	2.46	4067.36	1.178870
+AAAAAAAAFKDEAAAA	Western, great eyes return unknown tensions. European years might not signal asleep, reduced countries. S	Books	home repair	7.29	573.54	0.166232
+AAAAAAAAGBEAAAAA	Later wonderful authorities must get famous terms. Articles shall vary to a shoulders. Exhibitions replace far good councillors. Feet can increase rarely later high sales. Open c	Books	home repair	2.10	5190.70	1.504455
+AAAAAAAAGCOBAAAA	Vital colleagues allow very letters; recent, dramatic resources tell very thousands. Royal, sexual aspirations will earn almost on a legs. We	Books	home repair	4.05	3114.46	0.902684
+AAAAAAAAGDEBAAAA	Probably british interests could not arrange considerable sources; newspapers speak aback by a negotiations. 	Books	home repair	4.16	4441.55	1.287324
+AAAAAAAAGPOCAAAA	Widespread, comprehen	Books	home repair	2.89	5969.32	1.730128
+AAAAAAAAHGMAAAAA	Variables arrange hostile democrats. Original habits know as certain horses. Firm, technical pupils must see also never other	Books	home repair	9.17	2756.10	0.798818
+AAAAAAAAHPJDAAAA	Services prepare always conventional conditions. British children ought to see seconds. Regional rivers preserve much royal, eligible millions; anxious, past customers shall not accompany. Names c	Books	home repair	1.77	435.75	0.126296
+AAAAAAAAIKODAAAA	Final, final wives show between an rocks. Final, local participants might sue at all blue hours. Kinds move always generally benefic	Books	home repair	4.05	2041.92	0.591823
+AAAAAAAAILKCAAAA	Possible, advisory conclusions could not reply. Preliminary rooms should provide initiatives. Still constitutional women should take into a chemicals. Well good effects must a	Books	home repair	74.38	1283.39	0.371973
+AAAAAAAAIMCDAAAA	Different ties woul	Books	home repair	1.64	4975.45	1.442068
+AAAAAAAAINCDAAAA	Chinese dreams cannot tell how	Books	home repair	0.53	16303.25	4.725280
+AAAAAAAAINLAAAAA	Common colonies tell british, regular me	Books	home repair	4.31	2360.53	0.684168
+AAAAAAAAIPHBAAAA	Narrow eyes shall affect in a goods. Addit	Books	home repair	0.45	8478.03	2.457244
+AAAAAAAAJACCAAAA	Even rural schemes lead bombs. Ready minutes expect quite matters. Old flowers s	Books	home repair	4.45	1861.31	0.539475
+AAAAAAAAJAICAAAA	Too good effects telephone too crazy students. Specific, scottish elements might not tell nuclear variables. Following stations receive more responsible	Books	home repair	8.80	1283.82	0.372098
+AAAAAAAAJKFBAAAA	Events stop a little. Northern, white walls welcome at all businesses. Governors must see from a 	Books	home repair	1.96	2145.98	0.621983
+AAAAAAAAKCDCAAAA	So alternative bones make very blind, foreign things. Policies find main, industrial cases. Funds must buy enough quite quiet years. Much different photographs clear serious	Books	home repair	7.09	5403.68	1.566184
+AAAAAAAAKDBDAAAA	Firm towns may come only clear, main companies. Enough old groups appoint. Children know in a co	Books	home repair	2.74	14467.49	4.193209
+AAAAAAAAKFHBAAAA	Offences would not tell ideas. Required neighbours would create previously. Human processes become suddenly specific casualties; things used to propose closely. Substantial views may claim 	Books	home repair	8.16	3073.31	0.890758
+AAAAAAAAKPNDAAAA	Slowly small communicat	Books	home repair	6.35	41.86	0.012132
+AAAAAAAALALAAAAA	Important months sing then remaining ways; national tears seem other, com	Books	home repair	0.95	1598.49	0.463301
+AAAAAAAALCCEAAAA	Daily lines must say as. Ready conditions avoid police. Girls ought to reveal however managerial affairs;	Books	home repair	19.65	4979.65	1.443285
+AAAAAAAALOCEAAAA	Public, crucial institutions get. Years could materialise. Nice plans involve; details must not see about a sounds. Very medical activities may remain offices. Yet high lovers carry only future p	Books	home repair	29.87	4356.99	1.262815
+AAAAAAAALPGCAAAA	Free, relevant facilities used to include on a assumpt	Books	home repair	0.21	8613.92	2.496630
 AAAAAAAAMBGAAAAA	Regulatory, financial words would obtain yet at a relatives. Also main lines should bel	Books	home repair	3.33	\N	\N
-AAAAAAAAMCADAAAA	Much certain gardens shall not result quick sounds. Of course outer opportunities see very. Recent terms might take a	Books	home repair	7.12	1197.79	0.34
-AAAAAAAAMGPCAAAA	Wonderful, public offices might carry ordinary rivers; girls stay supreme hands; right wide forces afford too internationally impossible lovers. Fresh, social teeth grow. Other, permanent	Books	home repair	1.47	1447.85	0.41
-AAAAAAAAMJDCAAAA	Average features detect instead in a consequences; single organisations 	Books	home repair	3.98	238.38	0.06
-AAAAAAAAMKGDAAAA	Gay, safe banks must not live sure markets; spanish, possible environments hold gradually. Large, desperate defendants should take commonly wide horses. P	Books	home repair	0.60	3710.97	1.07
-AAAAAAAAMLNCAAAA	Appropriate, special fans may not talk best rather real feet. Generally mass systems define so. Today tragic towns ensure only established, serious players. Good at	Books	home repair	6.74	7388.24	2.14
-AAAAAAAANAOBAAAA	In general high russians sound easily police. Organisers can produce just off	Books	home repair	35.14	9200.97	2.66
-AAAAAAAANCBDAAAA	White times examine products. Alone, square examples used to get highly. Willing chairs must not conjure immediately recent members; northern societies may seem properly p	Books	home repair	3.44	8972.70	2.60
-AAAAAAAANOAEAAAA	Labour, h	Books	home repair	35.82	4334.42	1.25
-AAAAAAAAOHHBAAAA	Subjects sit only usually financial drugs; either joint months eat at a changes. Unpleasant gardens gain sad, new values. Articles give similarly ideally strange others. As responsible c	Books	home repair	6.71	5509.44	1.59
-AAAAAAAAOIFCAAAA	Only final contributions could take though specialist experiments. There possible arrangements respect emotions. Public groups seem peaceful spirits. Criminal conservatives ought to give as in 	Books	home repair	7.48	1530.85	0.44
-AAAAAAAAOJIAAAAA	Redundant children will not replace at all useful hospitals; technical	Books	home repair	1.32	7630.43	2.21
-AAAAAAAAOONCAAAA	Away central others argu	Books	home repair	3.39	8232.26	2.38
-AAAAAAAAPEDDAAAA	Influential, major levels like. Secondary divisions may give factories. There little	Books	home repair	1.96	1506.72	0.43
-AAAAAAAAPHIBAAAA	Suddenly toxic trials indicate tender, light shares. 	Books	home repair	5.02	12184.82	3.53
-AAAAAAAAPKPAAAAA	Techniques sink very thinking examples. Still innocent spirits face eventually little products. Video-taped reports exceed far processes. New org	Books	home repair	2.42	15339.28	4.44
-AAAAAAAAPNGAAAAA	Unusually small programmes would lift recently social, small workshops. Offices s	Books	home repair	1.73	11693.58	3.38
-AAAAAAAAADCAAAAA	Nice knees help be	Books	mystery	1.55	2196.44	1.28
-AAAAAAAAADDBAAAA	Numbers take serious, christian lips. Blue objects flow only quite immediate countr	Books	mystery	7.65	3764.47	2.20
-AAAAAAAAAIJDAAAA	Central, entire generations like poor, indian loans. Gentle, powerful buildings adopt again activities. Married sounds will write in the organizations. Bodies appear to the days. Already bro	Books	mystery	4.06	4820.07	2.82
-AAAAAAAAAPIAAAAA	Ministers should fail never ears; civil, biological problems will re	Books	mystery	6.70	859.50	0.50
-AAAAAAAABONDAAAA	Joint, foreign relationships ring other, physical representations. Illustrations will not understand more flat pupils. Soft, grateful constraints train little, short par	Books	mystery	0.09	4407.35	2.58
-AAAAAAAACECAAAAA	Human, possible rumours buy then both following sides; continuous hands use again in the writers; distinctive others increase afterwards wild s	Books	mystery	4.92	7175.75	4.21
-AAAAAAAACLBAAAAA	Common, logical babies must take somehow general months. Costs drag. Big, british areas give dramatic, effective clot	Books	mystery	3.00	834.09	0.48
-AAAAAAAACOOCAAAA	Only excellent concentrations shall want more monthly, blind subsid	Books	mystery	8.38	26196.44	15.37
-AAAAAAAADPJBAAAA	Human years improve broadly poli	Books	mystery	3.93	7206.32	4.22
-AAAAAAAAEKGDAAAA	Houses should 	Books	mystery	1.77	3341.80	1.96
-AAAAAAAAFFDDAAAA	French, civil hours must report essential values. Reasonable, complete judges vary clearly homes; often pleasant women would watch. Poor,	Books	mystery	2.79	4237.23	2.48
-AAAAAAAAFGACAAAA	Fe	Books	mystery	8.45	8868.51	5.20
-AAAAAAAAFINCAAAA	Words want just to the allegations; sometimes clear thousands shall belong up to an views; oth	Books	mystery	4.62	11058.27	6.48
-AAAAAAAAGJICAAAA	Written leaders could help by a buildings; symbols could take more far isolated patients. Other, different stages flow new words. Rightly american thousands ought to contact away only	Books	mystery	6.88	4311.47	2.53
-AAAAAAAAGOCDAAAA	Estimates give true bi	Books	mystery	8.51	1958.69	1.14
-AAAAAAAAHCAEAAAA	Most medium weeks look under the families. Women could mould bare states. Disciplinary, big meetings stand only materials. Practical requirem	Books	mystery	1.70	6075.82	3.56
-AAAAAAAAHGPAAAAA	Historic, level to	Books	mystery	29.30	9950.91	5.83
-AAAAAAAAHHIAAAAA	Evenings go simply central conditions. Small, other characters must not sha	Books	mystery	2.79	2810.85	1.64
-AAAAAAAAHLKAAAAA	New centuries seem too. Wide, possible fathers shall rise in addition in a homes. Parti	Books	mystery	51.60	6137.08	3.60
-AAAAAAAAIGAAAAAA	Rapidly difficult films realize. Deep electronic parents calculate remaining affairs	Books	mystery	2.33	694.84	0.40
-AAAAAAAAIGBBAAAA	Patients must sanction however examples. Electronic, executive patients may indicate at least american studies. Children might not give worldwide administ	Books	mystery	61.27	1488.27	0.87
-AAAAAAAAIJBBAAAA	Ships achieve as old, considerable members. New, key characters could not play n	Books	mystery	0.98	5339.52	3.13
-AAAAAAAAIPCEAAAA	Short working places might w	Books	mystery	1.12	7288.21	4.27
-AAAAAAAAJFACAAAA	Mistakes prove slowly most big companies. Eggs make even in a relations. Heavily little crops reach in a procedures. New, nuclear deposits reduce even of	Books	mystery	4.93	2992.30	1.75
-AAAAAAAAJFEEAAAA	Quite welsh costs agree specially results. Goth	Books	mystery	1.83	11.52	0.00
-AAAAAAAAKDMBAAAA	Welsh, electoral points shall fix more approximately possible claims. T	Books	mystery	2.83	7833.83	4.59
+AAAAAAAAMCADAAAA	Much certain gardens shall not result quick sounds. Of course outer opportunities see very. Recent terms might take a	Books	home repair	7.12	1197.79	0.347163
+AAAAAAAAMGPCAAAA	Wonderful, public offices might carry ordinary rivers; girls stay supreme hands; right wide forces afford too internationally impossible lovers. Fresh, social teeth grow. Other, permanent	Books	home repair	1.47	1447.85	0.419640
+AAAAAAAAMJDCAAAA	Average features detect instead in a consequences; single organisations 	Books	home repair	3.98	238.38	0.069091
+AAAAAAAAMKGDAAAA	Gay, safe banks must not live sure markets; spanish, possible environments hold gradually. Large, desperate defendants should take commonly wide horses. P	Books	home repair	0.60	3710.97	1.075575
+AAAAAAAAMLNCAAAA	Appropriate, special fans may not talk best rather real feet. Generally mass systems define so. Today tragic towns ensure only established, serious players. Good at	Books	home repair	6.74	7388.24	2.141383
+AAAAAAAANAOBAAAA	In general high russians sound easily police. Organisers can produce just off	Books	home repair	35.14	9200.97	2.666778
+AAAAAAAANCBDAAAA	White times examine products. Alone, square examples used to get highly. Willing chairs must not conjure immediately recent members; northern societies may seem properly p	Books	home repair	3.44	8972.70	2.600617
+AAAAAAAANOAEAAAA	Labour, h	Books	home repair	35.82	4334.42	1.256274
+AAAAAAAAOHHBAAAA	Subjects sit only usually financial drugs; either joint months eat at a changes. Unpleasant gardens gain sad, new values. Articles give similarly ideally strange others. As responsible c	Books	home repair	6.71	5509.44	1.596837
+AAAAAAAAOIFCAAAA	Only final contributions could take though specialist experiments. There possible arrangements respect emotions. Public groups seem peaceful spirits. Criminal conservatives ought to give as in 	Books	home repair	7.48	1530.85	0.443696
+AAAAAAAAOJIAAAAA	Redundant children will not replace at all useful hospitals; technical	Books	home repair	1.32	7630.43	2.211578
+AAAAAAAAOONCAAAA	Away central others argu	Books	home repair	3.39	8232.26	2.386011
+AAAAAAAAPEDDAAAA	Influential, major levels like. Secondary divisions may give factories. There little	Books	home repair	1.96	1506.72	0.436702
+AAAAAAAAPHIBAAAA	Suddenly toxic trials indicate tender, light shares. 	Books	home repair	5.02	12184.82	3.531608
+AAAAAAAAPKPAAAAA	Techniques sink very thinking examples. Still innocent spirits face eventually little products. Video-taped reports exceed far processes. New org	Books	home repair	2.42	15339.28	4.445886
+AAAAAAAAPNGAAAAA	Unusually small programmes would lift recently social, small workshops. Offices s	Books	home repair	1.73	11693.58	3.389228
+AAAAAAAAADCAAAAA	Nice knees help be	Books	mystery	1.55	2196.44	1.288998
+AAAAAAAAADDBAAAA	Numbers take serious, christian lips. Blue objects flow only quite immediate countr	Books	mystery	7.65	3764.47	2.209209
+AAAAAAAAAIJDAAAA	Central, entire generations like poor, indian loans. Gentle, powerful buildings adopt again activities. Married sounds will write in the organizations. Bodies appear to the days. Already bro	Books	mystery	4.06	4820.07	2.828696
+AAAAAAAAAPIAAAAA	Ministers should fail never ears; civil, biological problems will re	Books	mystery	6.70	859.50	0.504404
+AAAAAAAABONDAAAA	Joint, foreign relationships ring other, physical representations. Illustrations will not understand more flat pupils. Soft, grateful constraints train little, short par	Books	mystery	0.09	4407.35	2.586488
+AAAAAAAACECAAAAA	Human, possible rumours buy then both following sides; continuous hands use again in the writers; distinctive others increase afterwards wild s	Books	mystery	4.92	7175.75	4.211146
+AAAAAAAACLBAAAAA	Common, logical babies must take somehow general months. Costs drag. Big, british areas give dramatic, effective clot	Books	mystery	3.00	834.09	0.489492
+AAAAAAAACOOCAAAA	Only excellent concentrations shall want more monthly, blind subsid	Books	mystery	8.38	26196.44	15.373590
+AAAAAAAADPJBAAAA	Human years improve broadly poli	Books	mystery	3.93	7206.32	4.229086
+AAAAAAAAEKGDAAAA	Houses should 	Books	mystery	1.77	3341.80	1.961162
+AAAAAAAAFFDDAAAA	French, civil hours must report essential values. Reasonable, complete judges vary clearly homes; often pleasant women would watch. Poor,	Books	mystery	2.79	4237.23	2.486652
+AAAAAAAAFGACAAAA	Fe	Books	mystery	8.45	8868.51	5.204556
+AAAAAAAAFINCAAAA	Words want just to the allegations; sometimes clear thousands shall belong up to an views; oth	Books	mystery	4.62	11058.27	6.489634
+AAAAAAAAGJICAAAA	Written leaders could help by a buildings; symbols could take more far isolated patients. Other, different stages flow new words. Rightly american thousands ought to contact away only	Books	mystery	6.88	4311.47	2.530220
+AAAAAAAAGOCDAAAA	Estimates give true bi	Books	mystery	8.51	1958.69	1.149472
+AAAAAAAAHCAEAAAA	Most medium weeks look under the families. Women could mould bare states. Disciplinary, big meetings stand only materials. Practical requirem	Books	mystery	1.70	6075.82	3.565643
+AAAAAAAAHGPAAAAA	Historic, level to	Books	mystery	29.30	9950.91	5.839771
+AAAAAAAAHHIAAAAA	Evenings go simply central conditions. Small, other characters must not sha	Books	mystery	2.79	2810.85	1.649569
+AAAAAAAAHLKAAAAA	New centuries seem too. Wide, possible fathers shall rise in addition in a homes. Parti	Books	mystery	51.60	6137.08	3.601594
+AAAAAAAAIGAAAAAA	Rapidly difficult films realize. Deep electronic parents calculate remaining affairs	Books	mystery	2.33	694.84	0.407772
+AAAAAAAAIGBBAAAA	Patients must sanction however examples. Electronic, executive patients may indicate at least american studies. Children might not give worldwide administ	Books	mystery	61.27	1488.27	0.873403
+AAAAAAAAIJBBAAAA	Ships achieve as old, considerable members. New, key characters could not play n	Books	mystery	0.98	5339.52	3.133540
+AAAAAAAAIPCEAAAA	Short working places might w	Books	mystery	1.12	7288.21	4.277144
+AAAAAAAAJFACAAAA	Mistakes prove slowly most big companies. Eggs make even in a relations. Heavily little crops reach in a procedures. New, nuclear deposits reduce even of	Books	mystery	4.93	2992.30	1.756055
+AAAAAAAAJFEEAAAA	Quite welsh costs agree specially results. Goth	Books	mystery	1.83	11.52	0.006760
+AAAAAAAAKDMBAAAA	Welsh, electoral points shall fix more approximately possible claims. T	Books	mystery	2.83	7833.83	4.597345
 AAAAAAAAKJAEAAAA	Cautiously fair arms find a little plans. Years ought to react common arms. Wrong structures reflect effectively countries. Human ways may get just capital, regional animals; similar, senior pl	Books	mystery	2.75	\N	\N
-AAAAAAAAKMNCAAAA	Yet complex diff	Books	mystery	6.10	1442.68	0.84
-AAAAAAAAKNLBAAAA	Sisters go seemingly tall, special fragments; straightforward grounds make all	Books	mystery	7.67	1378.73	0.80
-AAAAAAAALEPBAAAA	Especially correct courts en	Books	mystery	2.92	1425.08	0.83
-AAAAAAAAMABAAAAA	Small designs may not guide sure single things	Books	mystery	3.73	2586.34	1.51
-AAAAAAAAMMKAAAAA	Widespread, mental authorities go less than new symptoms. 	Books	mystery	3.63	6301.51	3.69
-AAAAAAAANHBEAAAA	Clean pictures would become through a clients. Legs sell up to a effects. Powerful, german areas may come in general at least little changes. Too medical years may suck probably soon pub	Books	mystery	6.36	1659.84	0.97
-AAAAAAAAOFBAAAAA	Real, correct drinks deny carefully. Good subjects shall not contribute home highly mediterranean ideas; whole workers should affect by a dishes. Eyes can believe productive, total eyes. Databa	Books	mystery	3.10	2329.80	1.36
-AAAAAAAAOGODAAAA	Bizarre months furnish other, central words. Wide orders might end. Other,	Books	mystery	2.25	8600.32	5.04
-AAAAAAAAONIDAAAA	So serious weeks might come weak members. At all young boxes imagine armed girls; fairly political services work technical, local authorities; actu	Books	mystery	51.11	2815.12	1.65
-AAAAAAAAACDDAAAA	Parents may affect perfect conten	Books	parenting	0.98	4697.24	1.93
-AAAAAAAAADOCAAAA	Hands know european, absolu	Books	parenting	1.88	3032.67	1.25
-AAAAAAAAAIEEAAAA	New results used to lead soon african, true penalties. Popular trains follow environmentally classical gates. Final crews will indica	Books	parenting	0.41	11256.20	4.64
-AAAAAAAAALFBAAAA	Beaches make 	Books	parenting	0.44	1510.40	0.62
-AAAAAAAABHGCAAAA	Girls become from a intervals. Changes shall crash further very initial families. Total, possible systems advertise	Books	parenting	5.34	4131.30	1.70
-AAAAAAAACFCEAAAA	Additional, terrible characters shall examine. Ago lexical conditions get into a weeks. Barely trying results perform still hot men. Great kinds end also committees. Police should live only on the 	Books	parenting	4.46	1505.79	0.62
-AAAAAAAACLKCAAAA	Distinctive, narrow members will think too rules. Teenage, rigid patients occur steadily public, local databases	Books	parenting	1.50	8666.56	3.57
-AAAAAAAADAGEAAAA	Environmental businesses behave settlements. Students might make of course almost organisational goals. Eyes brush on	Books	parenting	7.79	5382.48	2.22
-AAAAAAAADIEEAAAA	Previous, other details will talk ahead. Children hear here; true services require children; partly lucky members must make at first uncertain	Books	parenting	1.85	8637.81	3.56
-AAAAAAAADLDCAAAA	Political, lucky standards learn appeals. Eventual, influential services involve numerous, coming scientists. Eyes play less	Books	parenting	9.95	18505.53	7.63
-AAAAAAAADOODAAAA	Major feet must prevent other, able problems. Provisions attract. Daughters accept in pri	Books	parenting	2.06	5288.92	2.18
-AAAAAAAAEBFAAAAA	Small companies develop vehemently. Past, great rights would get so ways. Soon national members achieve. Professional, stupid properties can tell m	Books	parenting	99.89	10199.20	4.20
-AAAAAAAAEEHBAAAA	Generally communist workers ought to speak to a quantities. Male, english decades take. Explanations retain comparatively large, enormous patterns. Mediterranean budget	Books	parenting	5.73	525.26	0.21
-AAAAAAAAEPHDAAAA	More clear charges dry both. More fat days research often strong skills. Now old features admit too good minerals. Abo	Books	parenting	1.05	5748.19	2.37
-AAAAAAAAFDHBAAAA	Ages see both to an supporters. Creative sides will not make always. Groups grow therefore expensive talks. Apparent citizens survive across new, single minutes; previous, dark rivers qualify.	Books	parenting	7.04	4281.84	1.76
-AAAAAAAAFDMCAAAA	Long walls may clarify cases. New chairs will attract legal patients. Functions disc	Books	parenting	8.06	721.21	0.29
-AAAAAAAAGFCAAAAA	Departmen	Books	parenting	2.09	8636.38	3.56
-AAAAAAAAGNPBAAAA	B	Books	parenting	0.89	129.54	0.05
-AAAAAAAAICKCAAAA	Fears take sudden developments. Central cells might try forward for instance special banks. Feet must not mean also. Flat times shall ask over the days. Regulations may consider; 	Books	parenting	7.20	12010.46	4.95
-AAAAAAAAIFFEAAAA	Else ashamed temperatures sue negative things. Groups will	Books	parenting	41.35	2974.92	1.22
-AAAAAAAAIFNAAAAA	Acute, important performances afford. New, nuclear men used to assess again small results.	Books	parenting	10.11	14724.17	6.07
-AAAAAAAAIHFAAAAA	Significantly small suggestions will not come more new blue terms. Fundamentally previous soldiers understand alone huge contracts. Religious, professional miles must ap	Books	parenting	4.64	5046.48	2.08
-AAAAAAAAIMJCAAAA	Usually different views shall serve personally unknown symbols. Countries prove methods. Necessary men consider also to a communications. Always inner hundreds will not share suddenly from a shops. P	Books	parenting	8.94	220.25	0.09
-AAAAAAAAJDHAAAAA	Continued ideas reflect only still other prices. Actually historical weeks help low, appropriate companies; recent provisions widen du	Books	parenting	2.16	1105.75	0.45
-AAAAAAAAJLNBAAAA	Subjects may think on a times. New, back services will keep along a runs; trees engage financial models; again limited men might join certainly. R	Books	parenting	4.12	2508.75	1.03
-AAAAAAAAJNFBAAAA	Instead certain attempts would fit even medical natural rates. Aware, critical newspapers say wit	Books	parenting	71.58	10076.22	4.15
-AAAAAAAAKGLBAAAA	Clear approaches should take alone daughters. Complex, small materials provide also by a groups. Americans discuss so. Cons	Books	parenting	3.34	390.37	0.16
-AAAAAAAAKHAAAAAA	Generally french beds will ask amounts. Difficult, difficult workers would come once again in a resources. So inc	Books	parenting	2.62	8339.40	3.44
-AAAAAAAAKHEBAAAA	New, busy years think potentially to a lights. Much apparent individuals find still other places. Speakers could 	Books	parenting	4.76	10612.15	4.37
-AAAAAAAAKILDAAAA	Also parental feet must suggest now relationships	Books	parenting	1.19	1021.77	0.42
-AAAAAAAALODDAAAA	As generous germans mean almost eastern variables. Long years must not face really good, atomic relations; chemical, corporate bills must honour seasons. Artificial, gold materials determine	Books	parenting	4.51	894.70	0.36
-AAAAAAAAMANDAAAA	French	Books	parenting	4.98	15486.40	6.38
-AAAAAAAAMECBAAAA	Provisions go too. Sad others contain italian branches. Keys k	Books	parenting	2.08	446.00	0.18
-AAAAAAAAMFBEAAAA	Hopes should not remember more consistent colours. Really new techniques could not consider then forms	Books	parenting	5.58	20249.86	8.35
-AAAAAAAAMFKBAAAA	Most modern concentrations may direct e	Books	parenting	0.56	2622.96	1.08
-AAAAAAAAMHABAAAA	Features might not get as pounds. Names should indicate ages. Police used to see ele	Books	parenting	2.79	7738.10	3.19
-AAAAAAAAMNNAAAAA	Rightly responsible documents laugh other candidates. Educational times hide specific, famous elections. Styles cannot go to the sides	Books	parenting	0.70	1084.32	0.44
-AAAAAAAAMNNDAAAA	Theoretical degrees sho	Books	parenting	3.90	731.52	0.30
-AAAAAAAAMOPDAAAA	Studies go of course unable friends; here brilliant techniques understand radical, passive	Books	parenting	70.67	160.48	0.06
-AAAAAAAANBLDAAAA	Other, correct points pick. Policies shall regard of course just major topics; white, popular wome	Books	parenting	0.42	480.20	0.19
-AAAAAAAANMAAAAAA	Over wide attacks agree i	Books	parenting	7.30	497.35	0.20
-AAAAAAAAOAIAAAAA	Possible, concerned facilities would not show also most due opinions. Empty students maintain of course possible, particular years. 	Books	parenting	8.67	1180.36	0.48
-AAAAAAAAOFNDAAAA	Anywhere proper men will not run remarkable, revolutionary libraries. Poor rates used to hear also. Huge years see structural churches.	Books	parenting	7.36	2344.16	0.96
-AAAAAAAAONMCAAAA	Spanish, likely professionals should te	Books	parenting	5.56	10391.64	4.28
-AAAAAAAAPAICAAAA	Other ambitions seek aloud to a measurements; other hands could provide children; also particular pp. could push fine, huge mines. Just coun	Books	parenting	4.72	555.56	0.22
-AAAAAAAAPMHAAAAA	Right social years would fit indirectly creatures. Very suspicious words should not write particular, typical views. Rarely evident hours wish more lucky others. So racial loans imitate a	Books	parenting	6.39	5658.92	2.33
-AAAAAAAAAEGDAAAA	Important, large lips warrant. Only old solutions live lovely ingredients. Angles ought to marry central, white banks. Threats follow.	Books	reference	1.85	5201.12	1.72
-AAAAAAAAAHHCAAAA	However other lines could afford just for the groups. Tenants must purchase. British arrangements continue domestic, quick tasks. Traditiona	Books	reference	1.65	10890.80	3.61
-AAAAAAAAALMAAAAA	Back, social names gather known experiences. Tough problems shall gain. Powerful, far stones cou	Books	reference	3.50	3501.82	1.16
-AAAAAAAAAODAAAAA	Secondary, economic pupils loo	Books	reference	3.68	2726.82	0.90
-AAAAAAAABDFEAAAA	Magnetic students respond small figures. Tasks may not know less european, scottish months. Characters shall concentrate yesterday still usual systems. Projects	Books	reference	4.91	6302.00	2.08
-AAAAAAAABDJDAAAA	Primary, curious reports feel late of course waste weeks; yellow arts imagine still prices; unpleasant, remote forms differ rather than 	Books	reference	2.91	5200.56	1.72
-AAAAAAAABEHBAAAA	Steep, labour clubs achieve less hands; often great towns mean tall, new maps. Conditions occur following men. Costs should coordinate; objectives know modest details. Child	Books	reference	2.13	3695.28	1.22
-AAAAAAAABLHAAAAA	Perhaps old sources disappear. Small, bright enterprises used to take by a systems. Local proteins could not try then. Blank, special colleges appear.	Books	reference	7.38	14646.94	4.85
-AAAAAAAABNJCAAAA	At least assistant bands can address certainly black trees. Terms ought to knock ex	Books	reference	0.49	471.36	0.15
-AAAAAAAABOBDAAAA	Immediately professional cells may ship properly forward political members. Daily, direct trains can choose clearly. Partners answer everywhere at a chara	Books	reference	0.18	16491.62	5.46
-AAAAAAAACFGDAAAA	Even other windows ought to appear very scientists. Models close. Certain actions might press soon by the programs. Ultimate, ill de	Books	reference	8.20	2172.73	0.72
-AAAAAAAACIBCAAAA	At once good friends limit. Too simple stations	Books	reference	1.88	558.14	0.18
-AAAAAAAACKJCAAAA	Possibilities should not fit almost eggs; seriously little members del	Books	reference	3.40	9476.74	3.14
-AAAAAAAACKNBAAAA	Today labour characters used to like quite black difficult papers; ages catch low, common matters. Sick judges might make both opposite seeds. Public, foreign proceedings must not rescue of c	Books	reference	3.30	2429.21	0.80
-AAAAAAAACLGAAAAA	Rather suitable weapons could prosecute ago labour, large users. Affairs use normally at the unions; emotions can say; armed,	Books	reference	2.23	2328.47	0.77
-AAAAAAAACLPBAAAA	Officials can include more. Trades imagine still in a words. That is american systems should not demonstrate even for a characters. Electrical members should not think able, foreign finger	Books	reference	9.55	601.20	0.19
-AAAAAAAADBOBAAAA	Notions shall say major journals; economic standards make at once old requirements. So corporate numbers ask now in a images; surely closed feelings m	Books	reference	1.80	5327.56	1.76
-AAAAAAAADIKBAAAA	Rural, strong dollars can go in a students; nice restrictions leave afield spectacular, royal experts; decisions ought to defend about early effective pp.; russian, national relations shall deli	Books	reference	9.64	3655.37	1.21
-AAAAAAAAEEJCAAAA	Soldiers may look generally specific forces. Functions shall provide even negative pensioners. Real, soviet opportunities cry no lon	Books	reference	52.92	6544.32	2.16
-AAAAAAAAEJDEAAAA	Natural communities create original youngsters; as beautiful children smooth legal, big agreements. Special, other heads make regularly la	Books	reference	6.41	8590.84	2.84
-AAAAAAAAEKFDAAAA	Young blacks might answer here great factors. Shares will not cond	Books	reference	0.35	3766.67	1.24
-AAAAAAAAGJHDAAAA	Effective needs may not improve old bonds. Courts cannot come only with a sources. Before proud files like just partial authorities. Parliam	Books	reference	0.97	966.50	0.32
-AAAAAAAAGKMBAAAA	Front markets ought to reach very academic ways. Then possible words open entirely public products. Softly origin	Books	reference	4.07	4860.86	1.61
-AAAAAAAAGOPCAAAA	Concerned agreements may imagine forward large demonstrations. Primary, excellent months would not think clearly by a hopes. Open firms wipe men. Impor	Books	reference	2.27	3976.69	1.31
-AAAAAAAAHFBAAAAA	Old places avoid certain, typical hands; here original arms see in a ideas. Good	Books	reference	38.26	3993.95	1.32
-AAAAAAAAHLNDAAAA	Markets must say for ever then green weeks. Better fresh forces find also similar restaurants; proposals materialise for a procedures. Here other results 	Books	reference	2.44	2428.67	0.80
-AAAAAAAAHMGAAAAA	Words bear international, expected countries. Apparent, misleading years get ever rich grounds. Over atomic feet could forgive ultimate, educational bishops; current, vas	Books	reference	4.95	2101.32	0.69
-AAAAAAAAHOHDAAAA	Educational reasons know also through an economies. Countries hope constitutional, rough ministers. Relations would not say also likely gue	Books	reference	6.23	3994.17	1.32
-AAAAAAAAIAMCAAAA	Very financial ministers eat vigorously. Other questions may research upside down blue matters. Weak, electronic forces relax military keys. Especially enormous police collapse per	Books	reference	7.85	389.64	0.12
-AAAAAAAAIGBCAAAA	Liberal, civil customers refuse. For the most part real areas should ask mainly carefully	Books	reference	6.46	4308.11	1.42
-AAAAAAAAINJBAAAA	Young, working horses see mentally 	Books	reference	1.27	5566.78	1.84
-AAAAAAAAKGKAAAAA	Competitors may pin including the 	Books	reference	0.82	2136.19	0.70
-AAAAAAAAKIEEAAAA	Essential interests can discover luckily from a activities. Righ	Books	reference	21.45	10159.85	3.36
-AAAAAAAAKKJCAAAA	Wages	Books	reference	5.92	5010.76	1.66
-AAAAAAAAKNGCAAAA	Levels could say pointedly original, happy sessions; immense, technological decisions might discourage basic difficulties. Officials find. Simple, 	Books	reference	8.70	8242.17	2.73
-AAAAAAAAKOFCAAAA	Unusual years might buy others. Enough mutual facilities could not respond views. Differences s	Books	reference	1.01	5857.89	1.94
-AAAAAAAALCFBAAAA	English 	Books	reference	3.87	3969.62	1.31
-AAAAAAAALIDAAAAA	Largely substantial contracts facilitate. Yet full values can advise extremely plants. Men classify empty contacts. Private, common events can want more just central patients. Enti	Books	reference	1.55	2435.84	0.80
-AAAAAAAALIOBAAAA	So no	Books	reference	73.22	1488.48	0.49
-AAAAAAAALNGBAAAA	Levels will l	Books	reference	3.87	13388.03	4.43
-AAAAAAAAMBFEAAAA	Else incredible women must tackle smoothly neverthe	Books	reference	2.99	9050.98	3.00
-AAAAAAAAMIHCAAAA	Clients could attempt that is to say now warm days; national problems would not belong for a stars. Issues write thereafter cases. Successful years add together perhaps easy ye	Books	reference	9.95	6398.40	2.12
-AAAAAAAAMKPAAAAA	Blue findings used to assess by a relatives. International, important qualities shall stay spanish, active roses; solid villages will stand in order certain members.	Books	reference	96.43	12441.19	4.12
-AAAAAAAAMNICAAAA	Efficient, good eyes last more friendly, famous ideas. Letters could go. Financial, central eyes can find then ready courses. Common horses work inter	Books	reference	9.08	4496.30	1.49
-AAAAAAAANIABAAAA	Prospective, other jeans must set short old women. 	Books	reference	1.46	4902.61	1.62
-AAAAAAAANJAAAAAA	Young, white workers may not wreck british, statistical explanations. New complaints leave no longer only wide doors; shops beat new restrictions. Horses must not test by now anonym	Books	reference	2.21	3352.26	1.11
-AAAAAAAANKKBAAAA	Now usual others shall express again books. Inevitable sales cannot take good. Significantly long words finish continuous, good duties. Countries can run in a branches; even s	Books	reference	6.03	10533.60	3.49
-AAAAAAAAOGIBAAAA	Social democrats begin more inside the results. Important, particular minutes make in front of the relations. 	Books	reference	52.52	8592.19	2.84
-AAAAAAAAOHKBAAAA	Well efficient schools will include indeed areas. Maybe wrong years can like early 	Books	reference	80.48	16574.03	5.49
-AAAAAAAAOMBBAAAA	Statistically warm resources keep too up to a p	Books	reference	6.39	14301.76	4.74
-AAAAAAAAOMJCAAAA	Good ships get young points. Rarely extra countries like. Women rise better. Further permanent representatives ought to say substantial buildings. Less typical pre	Books	reference	4.76	73.77	0.02
-AAAAAAAAOMLAAAAA	Disabled relations express doubtfully common hours; very inappropriate ideas make bad, light theorie	Books	reference	28.84	482.76	0.16
-AAAAAAAAONDCAAAA	Libraries will result too cond	Books	reference	0.63	509.76	0.16
-AAAAAAAAPECBAAAA	Sides will not make very working influences. Assistant clothes carry quite benefits. Available part	Books	reference	25.23	10081.79	3.34
-AAAAAAAAAANDAAAA	Ashamed eyes go european years. Major, modern patients	Books	romance	1.22	14955.95	4.03
-AAAAAAAAAGKDAAAA	Free eyes talk biolog	Books	romance	6.75	3412.47	0.92
-AAAAAAAAAPFCAAAA	Little, particular jobs become most hard symptoms. Regular, everyday systems cannot benefit in the diseases. International, flexible stones return for a elements. Future tables wou	Books	romance	1.59	390.03	0.10
-AAAAAAAABHLDAAAA	Rules can come largely deep wings; soviet, yellow kilometres could eat never bright, entire proposals. More pleased museums may n	Books	romance	9.78	10231.74	2.76
-AAAAAAAABNNBAAAA	For example used comments could conduct still. Tab	Books	romance	0.36	9861.48	2.66
-AAAAAAAABOBAAAAA	Old, revolutionary eyes may not serve fully by	Books	romance	2.38	7109.76	1.92
-AAAAAAAACHBDAAAA	Spare, american sports see even posts; views think at the bands; men flow 	Books	romance	2.58	1267.84	0.34
-AAAAAAAACJLAAAAA	Very huge councils will not stay elected, outstanding criticisms. Comfortable, financial rivers ought to follow on a men; children may not g	Books	romance	2.63	1236.83	0.33
-AAAAAAAACLABAAAA	Minor, obvi	Books	romance	1.53	2828.17	0.76
-AAAAAAAADLEBAAAA	Responsibilities require ships. Women ought to accept as to the pp.; huge children could hold wonderful, wil	Books	romance	0.66	14822.01	4.00
-AAAAAAAAEGDEAAAA	Capable interests should not make sorry, free courses. Offences should discuss 	Books	romance	2.82	1809.93	0.48
-AAAAAAAAEKFBAAAA	Other others provide simple descriptions. 	Books	romance	76.52	11952.32	3.22
-AAAAAAAAFCDAAAAA	Live, late activities feel principles. In	Books	romance	4.50	4341.92	1.17
-AAAAAAAAGAKBAAAA	Small babies must get. Women drive individuals	Books	romance	8.65	5632.03	1.52
-AAAAAAAAGCLAAAAA	Schools could change carefully then national courses. Vaguely capable others shall not say right arms. Goals know still products. Agencies would not drop ahead 	Books	romance	57.12	1025.83	0.27
-AAAAAAAAGGAEAAAA	Copies light unfortunately by a periods. Properly desirable leads must go between a windows. New years must take. New contents like much symbolic users. So short-term wheel	Books	romance	4.07	7648.84	2.06
-AAAAAAAAGIHBAAAA	Right joint uses cannot provide less labour, final windows. Ori	Books	romance	5.83	4286.08	1.15
-AAAAAAAAGLLDAAAA	Prov	Books	romance	2.61	4503.02	1.21
-AAAAAAAAGMIDAAAA	Anyway initial depths ought to raise over expenses. Little years ought to buy new sides. Phrases see across the folk. Barely considerable workers shall turn ev	Books	romance	2.54	526.08	0.14
-AAAAAAAAGNBCAAAA	Kids must not know sharp, post-war babies. Democratic alternatives result quite at a activities. Deep, various institutions might not return extremely special,	Books	romance	1.85	10864.92	2.93
-AAAAAAAAGNICAAAA	Results highlight as patterns; so right years show. Sometimes suitable lips move with the critics. English, old mothers ought to lift now perhaps future managers. Active, single ch	Books	romance	2.88	9733.14	2.62
-AAAAAAAAGNMBAAAA	Later anxious detectives might not see. Only bonds improve even interests. Other, common bands go here rural sections. Relative daughters m	Books	romance	47.10	312.70	0.08
-AAAAAAAAGPBEAAAA	Above upper shares should recall from a emotions. Books could not help british, 	Books	romance	1.23	4995.27	1.34
-AAAAAAAAHDJDAAAA	Even irrelevant acres like very through a readers. Already concerned ministers shrink please. Evident findings used to eat about unique	Books	romance	88.04	9277.24	2.50
-AAAAAAAAHGCEAAAA	Digital patients gain to a colours. Years make tem	Books	romance	16.58	2465.84	0.66
-AAAAAAAAICLBAAAA	Special words say little supreme, bare chapte	Books	romance	2.98	8297.43	2.24
-AAAAAAAAIDPDAAAA	Thoughts allow actually chiefly soviet environments. Even aware businessmen should persist very. Once more alone pilots will guess very. Public, disabled times judge. Likely uses s	Books	romance	1.44	9412.82	2.54
-AAAAAAAAIEBDAAAA	Opposite, original differences wait considerably vehic	Books	romance	6.34	2173.38	0.58
-AAAAAAAAILAEAAAA	Alm	Books	romance	6.14	16369.67	4.42
-AAAAAAAAILNCAAAA	Inevitably good years must understand operations. Originally regular systems help good, skilled sons. Museums could find national parents. Plants find into the needs. Following	Books	romance	7.85	4778.91	1.29
-AAAAAAAAIMADAAAA	Names use hard months. Traditional, irish groups could want markedly operations. Islamic, great facilities choose. Possible s	Books	romance	4.34	1911.19	0.51
-AAAAAAAAJAOCAAAA	That right mines used to contribute more in order mathematical items. Possible representatives s	Books	romance	8.05	4337.28	1.17
-AAAAAAAAJFDCAAAA	Great authorities can hear thus sheets. R	Books	romance	2.74	6392.84	1.72
-AAAAAAAAJHJDAAAA	At all silent aspects find properly apart expected trusts. Offices ought to meet also sweet lights. Yesterday environmental factors could doubt very significant f	Books	romance	4.42	3439.22	0.92
-AAAAAAAAKCEEAAAA	Kings could grow just however safe achievements. Always local resources shall freeze so other victims. Trying, material office	Books	romance	3.89	12178.88	3.28
-AAAAAAAAKDFCAAAA	Blue children can get grim, central eyes. New, reasonable meetings me	Books	romance	7.03	2197.07	0.59
-AAAAAAAAKJECAAAA	Stud	Books	romance	3.37	4311.85	1.16
-AAAAAAAAKLODAAAA	Inner, unable students would continue sexual, deep things. Managers cannot make generally; recent, big pupils need among the children. Possible, steep movem	Books	romance	4.42	4697.61	1.26
-AAAAAAAAKPOBAAAA	Public visitors might think however private companies. Corporate, final damages need good, other fires. British guests tell as round schools; extraordinary, military y	Books	romance	7.65	9063.07	2.44
-AAAAAAAALCOBAAAA	Cases cannot resign indeed. New types used to prejudice often industrial votes. Honest	Books	romance	9.69	10235.63	2.76
-AAAAAAAALDACAAAA	Otherwise local relations would fly between a women. Whole costs make even from the types	Books	romance	0.62	709.65	0.19
-AAAAAAAALFCEAAAA	Modern, natural prisoners should establish as modern weaknesses. Long, economic modules wish almost matters. Momen	Books	romance	4.47	4091.35	1.10
-AAAAAAAALLDAAAAA	Personal days see large, important parents. Children 	Books	romance	90.72	9585.93	2.58
-AAAAAAAAMGODAAAA	Local women will recognize depending on a leads. Fees might result dry, am	Books	romance	3.11	14015.32	3.78
-AAAAAAAAMLHBAAAA	Valu	Books	romance	1.87	4397.36	1.18
-AAAAAAAAMOAAAAAA	Sympathetically scottish things should take regularly on a programmes. Suitable, high stars could find above in a gains; wrong orders see for the speakers. English, grand groups shall not m	Books	romance	0.75	5274.42	1.42
-AAAAAAAAMPEAAAAA	Relations marry in a attacks. Prime books ma	Books	romance	2.81	2976.02	0.80
-AAAAAAAANCNAAAAA	Super, aware taxes used to expect. Available, active falls provide. Awful hands may play ever	Books	romance	7.90	8551.75	2.30
-AAAAAAAANDOBAAAA	Limited, sharp hours look available proportions. Especially public ties object basic reductions; institutional sales apply; preferably territorial pp. used to pr	Books	romance	9.88	7408.89	2.00
-AAAAAAAANFHDAAAA	Accessible, sure opportunities used to help; too good films would not see 	Books	romance	9.91	3998.50	1.07
-AAAAAAAANPDAAAAA	Years teach then at once right heads. Agencies will say by a suppliers. Most permanent blacks should not promote as other, legal eyes. Courses get so double, light flowers. Eastern, british times c	Books	romance	2.90	4740.25	1.28
-AAAAAAAAOCJAAAAA	Married, appropriate minutes shall not get more big problems. Odd authorities cannot believe military effects. Prices shall not mean always natural,	Books	romance	2.17	3521.31	0.95
-AAAAAAAAODECAAAA	Indian, recent occupations mind too effects; days will discuss today also significant meanings; short foreign services shall direct early, electrical children. Else old years say latterly complete co	Books	romance	4.36	2078.76	0.56
-AAAAAAAAOFHAAAAA	Simple, ideal images ought to stand accid	Books	romance	7.19	5764.42	1.55
-AAAAAAAAOGGDAAAA	At least quiet students will kick by a practices; english beaches try again main meetings. Simple, narrow policies m	Books	romance	4.39	14404.18	3.89
-AAAAAAAAOJACAAAA	New, certain conditions use. Appropriate, good miles lift ne	Books	romance	8.68	2985.60	0.80
-AAAAAAAAOKCAAAAA	There welcome references must lower. Legal, broken houses may not note both large efforts; technical, agricultural patterns must not make strategic children. 	Books	romance	2.33	16509.31	4.45
-AAAAAAAAOKFDAAAA	Silver, rural children get sometimes. Children cannot limit circumstances. Still similar players should work highest able agricultural techniq	Books	romance	7.04	1869.41	0.50
-AAAAAAAAOLBCAAAA	Able services know books. Little new coins might not protect; social, young affairs account too into the	Books	romance	7.57	6156.24	1.66
-AAAAAAAAOOECAAAA	Foreign scenes qualify of course objectively	Books	romance	3.63	3374.70	0.91
-AAAAAAAAOPMAAAAA	Selective years may dispense especially dual schools. Carefully concrete tan	Books	romance	52.25	2531.27	0.68
-AAAAAAAAADJCAAAA	Brothers would count other partners; private patients know. Never joint farmers c	Books	science	3.21	9474.14	2.99
-AAAAAAAAAGMBAAAA	True regulations may not restore with a magistrates. Critical results take once white, large prisoners; political,	Books	science	1.54	8024.10	2.53
-AAAAAAAAAIHBAAAA	Valuable, young ways make at all years. Mo	Books	science	3.67	13305.96	4.20
-AAAAAAAAAIJAAAAA	Complex, different boats pick only. Objectives assess on the bands; full, effective arts must mis	Books	science	6.70	4666.56	1.47
-AAAAAAAAAKCCAAAA	Responses find up to faint rates. Hours should not expire at a	Books	science	9.54	4713.74	1.49
-AAAAAAAABNMCAAAA	Machines taste always top, likely interests. Results must bring only apart from a studies; true issues tell now poor procedures; long rules become almost secret diffi	Books	science	1.28	8189.57	2.59
-AAAAAAAACDFAAAAA	Asleep, philos	Books	science	4.18	2847.46	0.90
-AAAAAAAACHBBAAAA	Relatively sad accidents happen secondary, other sons; organisatio	Books	science	3.19	11344.35	3.58
-AAAAAAAACKNDAAAA	Nice instructions will not laugh really scientific users. More temporary leaders u	Books	science	1.60	7592.00	2.40
-AAAAAAAACMFDAAAA	Central vehicles matter now at a companies; r	Books	science	1.11	1098.99	0.34
-AAAAAAAACPCAAAAA	Only, s	Books	science	0.31	19345.48	6.12
-AAAAAAAADAHAAAAA	Forces require more new examples. Also narrow students take files. Native, important objectives ought to release still legs. Difficulties might say mainly. Years	Books	science	2.33	1815.50	0.57
-AAAAAAAADGCCAAAA	Deep parent	Books	science	1.30	15194.47	4.80
-AAAAAAAADNPDAAAA	Fol	Books	science	1.79	10320.77	3.26
-AAAAAAAADPEAAAAA	Catholic years st	Books	science	0.45	3035.02	0.96
-AAAAAAAAENFAAAAA	Outstanding shows would produce all english hearts; deep, strange relations will help bars. At last available operations should not dry long alternative gl	Books	science	1.51	2004.47	0.63
-AAAAAAAAEPHAAAAA	Ago social details will gain mothers. Actively regional reports remain	Books	science	0.14	6145.19	1.94
-AAAAAAAAFOPAAAAA	Moments use above local studies. More ordinary columns point now considerable services. At	Books	science	1.46	4199.46	1.32
-AAAAAAAAFPEEAAAA	New, enthusiastic shares embrace. Averag	Books	science	2.00	578.34	0.18
-AAAAAAAAGGICAAAA	Nowhere new points will not go places. Capable, local courses explore both barely distinctive numbers. Seriously recent areas begin rare, reas	Books	science	2.21	10413.61	3.29
-AAAAAAAAGJLDAAAA	Single, professional tenants co	Books	science	\N	7704.65	2.43
-AAAAAAAAGNHCAAAA	Central scientists shall not keep also in the countries. Other, financial authorities could not experience deep, other banks. Cells may avoid on the animals;	Books	science	4.28	6338.81	2.00
-AAAAAAAAGOPDAAAA	Overseas, back workers make humans. Final, difficult parties kiss over within an metals; possible men ought to work further military meetin	Books	science	3.25	10456.69	3.30
-AAAAAAAAHIPBAAAA	Yet small groups feature earnings. Young engines would try t	Books	science	0.75	6821.76	2.15
-AAAAAAAAICLCAAAA	Letters may produce quite natural, available elections. Important, white sides 	Books	science	7.28	14476.65	4.58
-AAAAAAAAIENBAAAA	Experiences help by a goods. Black prices live all sure, technological employers. Short, clever breasts play old memories. Strong refugees tell basically feet. Things earn in a persons.	Books	science	6.52	5876.66	1.85
-AAAAAAAAIPFAAAAA	Extra, public branches shall list rather international police. Little v	Books	science	2.51	2456.91	0.77
-AAAAAAAAJBMDAAAA	Presumably social provisions see photographs; other prices might not decide unduly european, unusual levels. Illegal, military men shall choose here high birds. Key drawi	Books	science	3.35	3904.01	1.23
-AAAAAAAAJOGCAAAA	Pounds would fit very significant weeks. Open, single churches provide. Meetings lose financial members. Things reduce too. Waters place usually determined agents. 	Books	science	4.57	8847.64	2.79
-AAAAAAAAKBPCAAAA	Round, open details put laboratories. Essential eyes see as again small opponents; ever sophisticated products congratulate also as great changes. Also young agents locate almost by a affairs. E	Books	science	8.45	8052.40	2.54
-AAAAAAAAKHGDAAAA	Probably contrary schools meet really short daught	Books	science	6.65	5200.35	1.64
-AAAAAAAAKJPDAAAA	Joint girls should keep with the agencies. Different, familiar ga	Books	science	0.75	2296.48	0.72
-AAAAAAAAKLKBAAAA	Very wrong marks would like in particular new, african quantities; local barriers return. Things used to see. Dead clients must not say studies. There good studies start appropriat	Books	science	4.54	1738.61	0.55
-AAAAAAAALEABAAAA	Always black matters say together on the explanations. Central problems get. Intervals favour severely disastrous reserves. Talks must retain scottish, fundamental years; other, fine 	Books	science	7.19	7835.40	2.47
-AAAAAAAALJLAAAAA	Students shall want. Competitive parents can need. Big, kind children should relax also potential interviews. As available offenders must not continue too random, econo	Books	science	8.70	1050.54	0.33
-AAAAAAAALMGCAAAA	Enough financial clients may figure now old problems. Real funds hear at least also tall schools. Quite new authorities mu	Books	science	4.28	5155.25	1.63
-AAAAAAAAMAEAAAAA	Civil sites overlap conditions. More high interests send. Real, human cases provide straight enquiries. Months collect again just specifi	Books	science	7.92	4764.68	1.50
-AAAAAAAAMAIDAAAA	Mental, vast persons must not cancel wrong photographs; close difficulties redeem letters. Symbols may ensure demands	Books	science	2.94	3625.10	1.14
-AAAAAAAAMEKCAAAA	So international methods hold hence as senior glasses. So direct complaints will not attract far. Even narrow members must happen in a vehicles. Institution	Books	science	3.31	7136.50	2.25
-AAAAAAAAMNPBAAAA	Wrong heads used to get too buildings. Slig	Books	science	2.46	239.24	0.07
-AAAAAAAANBODAAAA	Only obvious profits produce now. Swiftly necessary times used to formulate here circles. Primary drugs inform doubtless low cases; too previous concessions pay. V	Books	science	3.96	6222.82	1.96
-AAAAAAAAODFDAAAA	Marked, large years	Books	science	0.95	3439.80	1.08
-AAAAAAAAODOBAAAA	Services shall make just never average rights; actual, high walls manufacture. Human, italian wars obtain then l	Books	science	9.76	14755.75	4.66
-AAAAAAAAOFEDAAAA	Standards feel over young arts. Various customers suit just alive, original students. Very, good agents could drive once local, other troops. Below automatic oc	Books	science	34.76	7254.37	2.29
-AAAAAAAAOKJBAAAA	Only rapid powers used to translate voluntary, angry degrees. As new backs would not know subsequently other tasks. Tight capital teams used to go perhaps essential, pos	Books	science	4.12	1493.25	0.47
-AAAAAAAAONOAAAAA	Issues should quote worth a children. All social years stand men. Problems consider to a errors. Old groups cost permanently; pink, normal goods consider. Particularly oth	Books	science	6.23	13046.45	4.12
-AAAAAAAAONPCAAAA	Economic roles should treat. Tall, soft rocks would assess together. Unique lectures would not 	Books	science	0.13	1744.21	0.55
-AAAAAAAAOOBCAAAA	Formerly huge doubts raise alone periods. Soon appropriate winners avoid quite. Concerns arouse even old, christian groups. Less	Books	science	4.05	1392.02	0.44
-AAAAAAAAPFACAAAA	Twice part-time songs will end certainly free charges. Schools would make particularly terms; more fresh services change too. Books may secure in order artists; students should look right tired at	Books	science	5.32	8424.73	2.66
-AAAAAAAAAAGCAAAA	Longer other prices give here old examples. Much silent police might go including a perceptions. Early, new programmes promote too for a laws. Actors should not speak as relationships. Children cou	Books	self-help	6.28	8151.64	3.11
-AAAAAAAAAGGBAAAA	Totally individual patients examine. New, appropriate things lik	Books	self-help	2.49	11352.14	4.33
-AAAAAAAAAIMCAAAA	Planned, principal months could play excellent, immediate ideas. Little, hostile services will not react slowly by a features. R	Books	self-help	6.76	2320.04	0.88
-AAAAAAAABJAAAAAA	Members begin together industrial, re	Books	self-help	59.77	5535.05	2.11
-AAAAAAAACCFEAAAA	Lightly right	Books	self-help	7.86	4806.98	1.83
-AAAAAAAACCPBAAAA	Much correct benefits might allow in the teachers. Official, external states can pur	Books	self-help	9.06	951.12	0.36
-AAAAAAAACHODAAAA	Successful jobs 	Books	self-help	9.97	7320.40	2.79
-AAAAAAAACIKCAAAA	Refugees rise then expert, orange boys. Young 	Books	self-help	5.17	5423.53	2.07
-AAAAAAAACKIAAAAA	Also important gardens reflect above samples. Geographical protests date quite; brothers used to go pretty by a ma	Books	self-help	0.99	1601.26	0.61
-AAAAAAAACLCBAAAA	Old inches may not become just. T	Books	self-help	3.53	2412.06	0.92
-AAAAAAAADJHDAAAA	Har	Books	self-help	0.70	26516.21	10.13
-AAAAAAAAEDDBAAAA	Chemicals circumvent only other police. Leading, strong groups make respectively gently great events. Immediat	Books	self-help	1.97	1633.85	0.62
-AAAAAAAAEEIAAAAA	Democratic, american days damage still employers. Able banks could suggest full-time elements; daughters care minister	Books	self-help	2.04	11253.33	4.30
-AAAAAAAAEMGAAAAA	Decent times will exist increasingly. Hospitals stand medical tears; families cover years. Foreign firms would	Books	self-help	27.81	8404.59	3.21
-AAAAAAAAEONBAAAA	Either sudden centuries will not grant even historica	Books	self-help	4.55	3517.78	1.34
-AAAAAAAAEPCBAAAA	Patient services will find also developing, social developers. Othe	Books	self-help	0.55	6777.46	2.59
-AAAAAAAAEPNDAAAA	Actual incidents improve never terrible, gentle factors. Impatie	Books	self-help	2.63	3057.90	1.16
-AAAAAAAAFAIDAAAA	Ready, sound players may not handle together with a	Books	self-help	1.75	4766.37	1.82
-AAAAAAAAFGCAAAAA	At last involved stages look sharply allies. Ini	Books	self-help	1.89	15499.32	5.92
-AAAAAAAAGEHCAAAA	Somehow new conditions start more particularly sexual words; most british men may mask very constant, discipli	Books	self-help	2.01	5956.08	2.27
-AAAAAAAAHKOAAAAA	Physically natural times used to improve models. Significantly close years ought to build ahead linguistic habi	Books	self-help	0.27	3915.38	1.49
-AAAAAAAAIACBAAAA	Deaths provide corresponding expenses. Days must publish. Mental, private ma	Books	self-help	1.77	5453.88	2.08
-AAAAAAAAIAIAAAAA	Aware, public materials can supply for a firms. Delicious sets should move hence in a kids. Nuclear, able sessions may 	Books	self-help	59.67	2282.96	0.87
-AAAAAAAAICMBAAAA	Neatly hard theories turn by the females. Only fresh facilities should feed nicely. Simi	Books	self-help	74.30	12154.56	4.64
-AAAAAAAAIMDDAAAA	Mad, positive circumstances find keen teams. Years account to a efforts. Upper maps would govern additio	Books	self-help	3.75	1750.60	0.66
-AAAAAAAAIMOBAAAA	Easily dry communities meet much harsh tears. Heavy minutes damage members. Industrial securiti	Books	self-help	6.81	7851.96	3.00
-AAAAAAAAIOJBAAAA	Good, closed languages include b	Books	self-help	6.42	6489.64	2.48
-AAAAAAAAJHAAAAAA	Alre	Books	self-help	38.79	1662.56	0.63
-AAAAAAAAKGEAAAAA	There possible efforts might bring yet brief, kind days. Oddly white dangers could like maximum things. Hours might 	Books	self-help	9.23	7579.90	2.89
-AAAAAAAALCFEAAAA	Concerned inhabitants study additionally modern miles. Sanctions miss interesting, other records; possible, great police lead on a eyes. Years kill howev	Books	self-help	0.70	2328.38	0.88
-AAAAAAAAMAKDAAAA	Then available arms should generate by a mac	Books	self-help	5.54	662.06	0.25
-AAAAAAAAMBOBAAAA	Details could argue; high sales should not 	Books	self-help	3.55	1876.62	0.71
-AAAAAAAAMFOBAAAA	Reliable, free miles may speak dates. Managers explain else. Alone short police raise up to periods. Books can invest serious months. Thinking, followi	Books	self-help	6.59	1671.12	0.63
-AAAAAAAAMGHBAAAA	Total, bad lines shall not bring in a weeks; healthy, pub	Books	self-help	9.14	18821.34	7.19
-AAAAAAAAMPBAAAAA	Able, strong pictures understand especially. Similar years feed sometimes close, bri	Books	self-help	2.94	700.56	0.26
-AAAAAAAAMPKBAAAA	Countries may tell major, dangerous rules. French offers make here at a terms. Less new doctors go patients. Level countries may not examine also large teachers; once scientific men coul	Books	self-help	8.61	1824.96	0.69
-AAAAAAAANANCAAAA	Also little lines see upo	Books	self-help	5.67	6036.41	2.30
-AAAAAAAANBEBAAAA	Social, mi	Books	self-help	2.25	2221.27	0.84
-AAAAAAAANLPBAAAA	Western attitudes play more general, blue trains; current women watch still expert ways; very royal amounts cannot get so capi	Books	self-help	9.20	4206.70	1.60
-AAAAAAAANNNBAAAA	Hills stimulate together heroes. Fundamental, following relations join particularly times. Political acts might notice. Concer	Books	self-help	7.16	16435.64	6.28
-AAAAAAAANPJAAAAA	International, important addresses earn now associations. Well vast developments encourage all in a cases. Social arms lose things. Strong shoulders will earn s	Books	self-help	3.28	4656.50	1.77
-AAAAAAAAOGEBAAAA	Free businessmen cause too basic, nice ideas. Great paintings used to advise now clothes; feelings shall occur just positive, assistant others. L	Books	self-help	5.85	6257.72	2.39
-AAAAAAAAOIDBAAAA	Local findings should give local quarters. Perfect, other museums run clearly famous images. Courses believe soft	Books	self-help	1.77	150.48	0.05
-AAAAAAAAOPADAAAA	Right futures announce to a decisions; immense, structural shoulders make italian, gold conditions. Activities roam mo	Books	self-help	2.80	4833.26	1.84
-AAAAAAAAPFGCAAAA	Now total stations prefer anywhere more imperial times. Particular, international years carry as to a criteria. Qualifications determine with a others. Villages shall not go directly versio	Books	self-help	2.43	1993.64	0.76
-AAAAAAAAPGNAAAAA	Partly available qualificat	Books	self-help	0.96	598.92	0.22
-AAAAAAAAAEJBAAAA	European deals should suppress then full boots; then dead prayers must emphasize just; children will feel high satisfactory troops. Elections overcome as well busy years. 	Books	sports	79.77	859.18	0.27
-AAAAAAAAAFMCAAAA	Initial, neat initiatives cannot adapt in a views. Permanent patients control then more familiar kids. Current, rich matters will use. Too able systems define pages	Books	sports	82.29	3130.11	1.01
-AAAAAAAAAGAEAAAA	Other, pink characteristics ought to use never national places. Big miles talk with a unions. Thus particu	Books	sports	3.67	2032.27	0.65
-AAAAAAAAAGCAAAAA	Old heroes ought to seek wildly glorious cultures. Prepared events might support inside. Factors should argue suitable cat	Books	sports	7.52	4850.28	1.56
-AAAAAAAAAGNBAAAA	Institutions will get; values would go eventually worried chapters. Opposite at	Books	sports	75.91	1515.37	0.48
-AAAAAAAAAJBDAAAA	Industrial women would make once. Gastric, wrong rumours used 	Books	sports	2.41	5059.40	1.63
-AAAAAAAAALCDAAAA	Future leaders shall take too top, clear steps. Types vote national societies. Tonight red authors save usually on a quantities. B	Books	sports	0.41	5144.72	1.66
-AAAAAAAABLGBAAAA	Simple, ec	Books	sports	7.35	3308.52	1.06
-AAAAAAAACGHBAAAA	Other foods w	Books	sports	1.39	4385.79	1.41
-AAAAAAAACGIAAAAA	Fresh, poor lives may work strong, sm	Books	sports	3.92	5056.44	1.63
-AAAAAAAACJDCAAAA	Regulatory managers may use at a indians. Poems can begin new, back conditions. Soon proper committees used to prosecute highly there old eyes. Nearly new seats would not address from no days. Importa	Books	sports	1.84	7094.52	2.29
-AAAAAAAACMGCAAAA	Ho	Books	sports	3.04	667.70	0.21
-AAAAAAAADAHDAAAA	However irish police could marry naked feet. Agricultural, clinical foundations can ensure friendly readers. Authorit	Books	sports	4.46	6272.85	2.02
-AAAAAAAAECGEAAAA	Otherwise beautiful courts might say so more wide flames. Particular doors might find even legitimate times; more white times discourage approx	Books	sports	4.24	7294.72	2.35
-AAAAAAAAEKKBAAAA	Only single	Books	sports	1.98	2633.56	0.85
-AAAAAAAAGAFCAAAA	Meanwhile certai	Books	sports	6.87	15540.41	5.02
-AAAAAAAAGFBEAAAA	Specifically honest pp. would ensure wide for a miles. Different families put then western, certain children. Only exciting commitments say f	Books	sports	0.51	3380.07	1.09
-AAAAAAAAGGKBAAAA	Therefore safe tec	Books	sports	5.97	2224.98	0.71
-AAAAAAAAGHECAAAA	Changes set even on a subsidies. Exactly severe soldiers must not prevent now then free h	Books	sports	7.85	938.84	0.30
-AAAAAAAAGKBDAAAA	Buyers should not review therefore important homes; super, beneficial statements	Books	sports	2.97	1162.54	0.37
-AAAAAAAAGMABAAAA	Then possible devices can conclude. Important drugs should stop much; ot	Books	sports	1.09	25187.18	8.13
-AAAAAAAAHBACAAAA	Effects withstand companies. Rules may not return technical signs. White intervals talk actually grey sons. Workers license most. At least great clothes see much relatively chea	Books	sports	6.98	3263.92	1.05
-AAAAAAAAHNFDAAAA	Surely elderly gains send further friends. Real, uncertain materials use hard	Books	sports	8.64	8933.54	2.88
-AAAAAAAAICCEAAAA	Most present groups will matter already about a players; happy, e	Books	sports	4.26	822.63	0.26
-AAAAAAAAIDJDAAAA	Much angry clothes need practically muscles. As appropriate author	Books	sports	7.99	5143.90	1.66
-AAAAAAAAIEKDAAAA	Main hours spe	Books	sports	9.76	8641.62	2.79
-AAAAAAAAJICDAAAA	Principles see sides. Girls would not establish more worthwhile, swiss risks. Then top courts follow words. Judges believe more increasing, large patterns. 	Books	sports	1.75	1713.67	0.55
-AAAAAAAAJIMCAAAA	Furthermore royal developments may not unload later huge c	Books	sports	0.84	7359.03	2.37
-AAAAAAAAJPAEAAAA	Natural times shall not anticipate black, possible hands	Books	sports	4.16	18787.45	6.06
-AAAAAAAAKACBAAAA	Light acts prepare later copies; technical, just departments would see almost possibl	Books	sports	8.76	5054.92	1.63
-AAAAAAAAKHFBAAAA	Tenants cope against the guns. Ever particular fears explain numerous players. Agencies give early economic securities. National probl	Books	sports	3.78	706.00	0.22
-AAAAAAAAKJLCAAAA	Afraid, old meals will get chronic, strong applicants. Arms could look with a needs. Hence wor	Books	sports	7.02	5142.16	1.66
-AAAAAAAAKNOAAAAA	Golden foundations buy elsewhere areas. Numerous prices achieve then hard, difficult users. Main dreams ought to plant fortunately fore	Books	sports	13.58	7366.81	2.37
-AAAAAAAALBGEAAAA	Services put usual, unemployed persons. Desperate, normal functions think at all bl	Books	sports	39.93	5386.03	1.73
-AAAAAAAALDFDAAAA	Internal years may not pr	Books	sports	3.46	10719.00	3.46
-AAAAAAAALHKDAAAA	Costs send more schools. Causes start later. Both human 	Books	sports	5.13	3902.29	1.26
-AAAAAAAALLPAAAAA	Rapid, physical lips must think other, exclusive parts. Enough elegant results build. Just right wishes ought to join go	Books	sports	7.79	8404.89	2.71
-AAAAAAAAMBHDAAAA	Small points examine rightly situations. Curre	Books	sports	1.04	11376.18	3.67
-AAAAAAAAMCLAAAAA	Considerable, real colleagues change. Seriously american letters know high differently systematic lists. Promptly major studies worry. Emotional features look. Soon chinese pages arr	Books	sports	6.48	11783.46	3.80
-AAAAAAAAMNJBAAAA	Universities obey moments. Extraordinary, actual scots ought to give english materials; yet private abilities need so new developments. Radically	Books	sports	3.66	11116.47	3.59
-AAAAAAAAMOKCAAAA	Fa	Books	sports	7.37	232.54	0.07
-AAAAAAAAOCHCAAAA	Agencies shall not consider false in a others. Obviously interesting authorities come anyway men. Small, 	Books	sports	6.57	8460.16	2.73
-AAAAAAAAOFHCAAAA	Mainly isolated ends justify from a shots; occupat	Books	sports	2.06	7766.57	2.50
-AAAAAAAAOIBDAAAA	Presidential efforts could look. Low workers mean easy	Books	sports	3.78	8672.48	2.80
-AAAAAAAAOJLDAAAA	Forms take very electoral witnesses. Then effective examples will not win other, continuous workers. Very small books may retain certai	Books	sports	8.27	3242.39	1.04
-AAAAAAAAOOIBAAAA	Final, final children know on a securities. Succe	Books	sports	1.73	11889.27	3.84
-AAAAAAAAPBPAAAAA	Wrong countries see countries; lengths will see possible sc	Books	sports	3.38	262.80	0.08
-AAAAAAAAPCIDAAAA	Goods mention from a hours; red, sweet procedures say	Books	sports	1.70	4448.61	1.43
-AAAAAAAAPGPBAAAA	Women could head then even old tenants. Almost causal points can watch differently mental, previous cases. 	Books	sports	2.25	10975.77	3.54
-AAAAAAAAPLFDAAAA	Supporters may not ge	Books	sports	0.62	10252.85	3.31
-AAAAAAAAAHDAAAAA	New others keep roughly polite engines. Male questions decide in the papers. Both other users may see today young, past decision	Books	travel	4.02	3432.57	1.46
-AAAAAAAABFABAAAA	Windows flow just magnetic terms. Branches would possess 	Books	travel	4.33	2154.01	0.91
-AAAAAAAABGGDAAAA	Right, medieval efforts should trust b	Books	travel	83.15	10505.78	4.47
-AAAAAAAABPGDAAAA	Extensive assets can adapt now fair things. White, other talks trouble sufficient teachers. Helpful days will not vot	Books	travel	4.62	2212.94	0.94
-AAAAAAAACDIAAAAA	Handsome, common ministers shall not find 	Books	travel	7.12	4441.63	1.89
-AAAAAAAACDPAAAAA	Old, immediate months see especially different leaders. Other, pale charges influence even english, middle-class others; pregnant, wrong eyes help by way of the activ	Books	travel	3.61	6892.14	2.93
-AAAAAAAADDOCAAAA	Girls lead badly reasonable regions. Also cultural levels suffer best liable, big feet. Open voters make in order expectations. False, regional ports may see years. Quite l	Books	travel	2.74	6136.02	2.61
-AAAAAAAADFBEAAAA	Sharp pools strike e	Books	travel	3.96	1569.92	0.66
-AAAAAAAADJEAAAAA	Specific, temporary goals take. Ideas might reduce economic authorities. Fundamentally external prayers matter really	Books	travel	84.79	2641.25	1.12
-AAAAAAAAEFPBAAAA	Particularly internal times could not achieve as yet indeed english phases. Good windows can become technically personal firms. Details need well for a miles. N	Books	travel	1.16	8710.00	3.70
-AAAAAAAAEGECAAAA	Hot products signal together big, working roads. Now funny universities	Books	travel	2.53	5811.92	2.47
-AAAAAAAAEKADAAAA	Happily good children maintain now classes. Political, old years see houses; of course new standards may find so sorry sounds; also 	Books	travel	8.48	82.56	0.03
-AAAAAAAAELFCAAAA	Objective	Books	travel	1.28	545.37	0.23
-AAAAAAAAELHBAAAA	Eyes could not	Books	travel	4.34	23586.52	10.04
-AAAAAAAAFBJBAAAA	Home contemporary places work. Growing banks may leave clearly special, beautiful ot	Books	travel	3.70	1812.65	0.77
-AAAAAAAAGDGCAAAA	Traditional waters may afford there	Books	travel	1.27	12026.10	5.12
-AAAAAAAAGFHCAAAA	New, hot terms would end probabl	Books	travel	7.81	1935.60	0.82
-AAAAAAAAGKABAAAA	Never special sentences look small aspects. Eng	Books	travel	4.85	2543.14	1.08
-AAAAAAAAHEHBAAAA	Payments make imperial sources. Gmt left pensions would not come moreover new public terms; certain teachers may rest finally; certain flowers used to look. Friendly friends must conv	Books	travel	3.86	12351.66	5.26
-AAAAAAAAICNAAAAA	Capital shoulders live vari	Books	travel	56.18	1724.89	0.73
-AAAAAAAAIJGDAAAA	Favorite, sure others must receive. Well sexual recommendations stay in the industries. Women will disturb in public again continuing flats; 	Books	travel	4.60	4014.69	1.70
-AAAAAAAAIJKBAAAA	Cultural months carry. Categories will not ensure already national glasses. Researchers will not move only industries. Rich, rigid texts live by a girls. Proud, front views	Books	travel	5.42	621.85	0.26
-AAAAAAAAINNBAAAA	Mad, overall patients may not keep then; pounds used to allow freshly foreign, western changes. Critical, fresh consequences should 	Books	travel	2.83	6712.59	2.85
-AAAAAAAAIPFBAAAA	Yesterday splendid authorities refuse at once late moments. Available lips could result old vehicles. Issues shall see due cases. Other, standard equations would go simultaneously effects; democratic 	Books	travel	1.31	1218.48	0.51
-AAAAAAAAJKMDAAAA	Designs shall not deal. Ideal, alternative aims say further changes. Often contemporary techniques used t	Books	travel	1.92	11413.42	4.86
-AAAAAAAAJLCDAAAA	Considerable guidelines recapture; br	Books	travel	3.38	2440.01	1.03
-AAAAAAAAKHIBAAAA	Fundamental, other studies buy formerly from a services. Psyc	Books	travel	2.63	8951.26	3.81
-AAAAAAAAKHOBAAAA	Then good students should put only functional figures. Equal years ought to secure. And so on certain legs must not provide similar, current children. New skills	Books	travel	1.52	77.28	0.03
-AAAAAAAAKPAAAAAA	Effects ought	Books	travel	4.16	5500.91	2.34
-AAAAAAAALBLCAAAA	Occasions can view so customers. Likely hospitals jo	Books	travel	74.97	9371.91	3.99
-AAAAAAAALCAAAAAA	Thus present women should hear for a shares; leaders must come early; immediate men will want exactly young groups. Insects may ask narrow variations. New leaders should deal 	Books	travel	6.08	8925.21	3.80
-AAAAAAAALCLBAAAA	Quickly vital descriptions drink almost gardens. Green hands used to assist with a projects. Exactly crazy statements should try concerned results. Courses open just in a causes. Differ	Books	travel	6.13	26.88	0.01
-AAAAAAAALFGAAAAA	Bc able groups shall vote 	Books	travel	3.95	177.00	0.07
-AAAAAAAALLOBAAAA	Obvious problems may find 	Books	travel	4.50	215.85	0.09
-AAAAAAAAMEAAAAAA	Around single relations clear heavily over a controls. Arms could leave signs. T	Books	travel	3.84	307.82	0.13
-AAAAAAAAMEBCAAAA	Weeks might not find original elections. Active hands might enjoy occasional, young proposals. Slight, necessary studies prevent frequently industrial, private reasons. Inherently single effects o	Books	travel	0.62	4650.98	1.98
-AAAAAAAAMGBAAAAA	Home certain acts adopt then new women. Statements reinforce thus mainly new rates. Real, other men must find. Late new children should not achieve years. Extr	Books	travel	8.58	1743.27	0.74
-AAAAAAAAMIKCAAAA	Commonly economic visitors promote. Aside other voices may make. Outer animals shall cut. Other, solid patients confirm hospitals. Indeed foreign companies work in order. Joint y	Books	travel	2.44	943.02	0.40
-AAAAAAAAMKMDAAAA	Children aid ever pictures. Abstract, ra	Books	travel	0.28	12721.61	5.41
-AAAAAAAAMNLBAAAA	Specific, medium strings co	Books	travel	4.80	6283.68	2.67
-AAAAAAAAMODAAAAA	Critically green vegetables continue just men. White cases must take by a attitudes. Good, true costs explain over implicit shares. Commercial, following cells feel available crimes. Ini	Books	travel	0.23	6733.48	2.86
-AAAAAAAANGFEAAAA	Financial terms show again; more full pictures shall meet there. Regional, 	Books	travel	3.80	6457.44	2.75
-AAAAAAAANHLAAAAA	Warm areas shall agree automatically mostly original pieces. Past domestic approaches post	Books	travel	3.72	10.35	0.00
-AAAAAAAAODCEAAAA	Similar, only groups meet long. Poems shall like	Books	travel	9.98	2592.00	1.10
-AAAAAAAAOMEBAAAA	Students cannot teach only shares. Common, logical results might not 	Books	travel	0.32	9079.44	3.86
-AAAAAAAAONGBAAAA	Loans realise requirements. Full contracts will replace even sorry, ideal explanations. Crazy, major researc	Books	travel	9.46	38.67	0.01
-AAAAAAAAOOPBAAAA	Trees suggest in the notes. Estimates think rather common, other hands; smooth me	Books	travel	6.42	5431.32	2.31
-AAAAAAAAPCCAAAAA	Tall relationships may not determine upon a relations. Again popular children would base cold, old boundaries;	Books	travel	3.30	6088.69	2.59
-AAAAAAAAPMKAAAAA	Trying types could not follow oddly autonomous walls. Gmt different others will build maybe able parameters. Private, main dealers shall not watch unfortunately also different novel	Books	travel	2.78	840.48	0.35
-AAAAAAAAPNMAAAAA	Further excessive reactions will provide quickly types. Lucky colleagues seem for a 	Books	travel	8.47	90.24	0.03
-AAAAAAAAHLPBAAAA		Home		\N	9647.64	78.82
-AAAAAAAAAAGBAAAA	Biological moments mean cold suggestions. True stages give better long-term, busy areas. Ties ask now. Bad figures kiss. Hard, legal sales act only signals. Lives may not pretend. Leading, posi	Home	accent	1.56	6762.74	2.18
-AAAAAAAAABDAAAAA	Goods mean so correct, legal systems. Just alternative banks tend then more concrete edges. Close, united chapters get only rus	Home	accent	1.06	370.50	0.11
-AAAAAAAAACEEAAAA	Thus great foreigners would supervise therefore also likely developments. Crucial years could break this large	Home	accent	1.81	865.00	0.27
-AAAAAAAAADNBAAAA	Net, regional lawyers would construct well different, different tools. Soon free meals distinguish pretty, sweet services. Horizontal contributions help. Again big supplies replace conc	Home	accent	3.03	2709.95	0.87
-AAAAAAAAAKIBAAAA	Long independent elections used to work all right new, main elements; directly effective hospitals shall produce payments. Only controversia	Home	accent	2.53	1498.37	0.48
-AAAAAAAAAKLCAAAA	Regulations go almost. Complex operations may stay at present countries. Widely special modules can rest also in ne	Home	accent	7.23	1386.95	0.44
-AAAAAAAAAONBAAAA	Over identical centuries might make then native conflicts; teams co-operate reluctantly should	Home	accent	32.58	4.49	0.00
-AAAAAAAAAPKDAAAA	Following friends exceed bodies; small stages look on a lines. Comfortable books send in a numb	Home	accent	59.78	19496.04	6.30
-AAAAAAAABBGCAAAA	About existing results ensure as foreign so	Home	accent	15.86	12892.82	4.16
-AAAAAAAABCICAAAA	Below specific feelings take close cases. British systems might get again different guests; forces remember socialist, visual minutes; continued characters need alive copies; fresh, broke	Home	accent	4.41	1004.40	0.32
-AAAAAAAABGFEAAAA	Cultural, excellent years shall not ame	Home	accent	0.68	1014.83	0.32
-AAAAAAAACFHAAAAA	Asleep, regular month	Home	accent	0.91	899.15	0.29
-AAAAAAAADANAAAAA	Fixed, able books write extraordinarily figures. Walls would not guarantee	Home	accent	1.94	15956.72	5.15
-AAAAAAAADGBDAAAA	Political months shall stay in a cells. Only certain states get particularly eastern, crazy days. Again good years will understand from time to time developments. Still othe	Home	accent	0.41	1483.06	0.47
-AAAAAAAADOBBAAAA	Tight definite videos shall not go in a ma	Home	accent	2.50	214.76	0.06
-AAAAAAAADOOAAAAA	Imperial, terrible windows commit exactly new premises; now various days can distract often. Poor rates produce good foods. Available, lab	Home	accent	2.33	8756.75	2.83
-AAAAAAAAEAGAAAAA	Dynamic, available memories may go abstract years; presumably high members stay faster industries. Offices give thus. Carers ought to pay well fields. Obvious	Home	accent	9.45	5997.26	1.93
-AAAAAAAAEKODAAAA	Directly modest processes could think full	Home	accent	4.05	2201.64	0.71
-AAAAAAAAELDEAAAA	Shortly current classes enter automatically national ministers. Warm, wrong seats would operate only. Readily major days shall develop. Anyway neat specimens may keep then adults. Functions might not	Home	accent	7.84	3484.07	1.12
-AAAAAAAAENACAAAA	Reliable firms fly. More new bases understand here on a powers. Measurements ought to know quite findings. Early southern views must consider other children. Good, growing needs stic	Home	accent	0.15	3032.30	0.98
-AAAAAAAAEPECAAAA	Sentences loose; available, similar yards will not re	Home	accent	7.56	6489.60	2.09
-AAAAAAAAFMFDAAAA	Arbitrary police dem	Home	accent	7.88	471.11	0.15
-AAAAAAAAGDGEAAAA	Top libraries make well for the problems. Vague papers install immensely from a talks. Often aware children should allow more in a problems. 	Home	accent	9.89	9644.75	3.11
-AAAAAAAAGEBDAAAA	Away new residents could not mean big poli	Home	accent	2.77	2918.72	0.94
-AAAAAAAAGEOBAAAA	Too usual techniques would not know so relevant techniques. However other sons get more corporate examples. Always large tanks lay for example. Still short processes sho	Home	accent	0.82	17.98	0.00
-AAAAAAAAGHBAAAAA	Doubts could not think. Acres shall live tired ways. Obvious interests pay seldom severe images. Quick officials should no	Home	accent	8.82	4275.50	1.38
-AAAAAAAAGPFAAAAA	Small, bare solicitors may take for 	Home	accent	3.20	9316.15	3.01
-AAAAAAAAIEJBAAAA	Securities might lie only national hands. Spatial businesses enquire women. Vital records stop ill; below correct children 	Home	accent	8.26	2542.89	0.82
-AAAAAAAAIGKCAAAA	Local, total restrictions must claim only apparently different times. Inches cannot thank just empty minutes. Able, bare generation	Home	accent	9.23	3098.14	1.00
-AAAAAAAAIHOAAAAA	Quickly clear attitudes vote purely atomic senses; poor, concerned patterns achieve almost bright, european skills. Foreign, socialist individuals should not permit very just 	Home	accent	8.94	12277.93	3.96
-AAAAAAAAKAPDAAAA	Either male men may know on a men. Federal, young forms distract again. Fairly vast days come yet. Visits ought to eat then european, suitable	Home	accent	2.69	19510.26	6.30
-AAAAAAAAKKBBAAAA	Days ought to fall definitely hard principles. Social limits may demonstrate here. Faintly electoral documents secure careful, ancient women	Home	accent	3.11	1863.09	0.60
-AAAAAAAAKKMDAAAA	Co	Home	accent	2.71	26367.53	8.52
-AAAAAAAAKOABAAAA	Months go indian books. National, royal hands must care huge losses; attitudes support immediately great, developing cells. Complex times will sit certainly visitors. Afraid seeds attribute over gl	Home	accent	4.39	4188.11	1.35
-AAAAAAAAMAEEAAAA	Now mad clouds could not ask closely. Acute, new hundreds should recycle here; angry, simple affairs could dis	Home	accent	7.47	8504.23	2.74
-AAAAAAAAMFPCAAAA	Speakers could catch. Other, different branches will cut specifically 	Home	accent	0.32	1009.22	0.32
-AAAAAAAAMKAEAAAA	Major, major vegetables play recently true cells. Numerous, previous schools cannot assess about only ultimate skills. As alon	Home	accent	5.27	17916.33	5.79
-AAAAAAAAMMBEAAAA	Poor waves might encompass slowly about a members. Famous concerns could not provoke always neighbouring, electoral schemes. Events may not investigate d	Home	accent	7.07	19767.45	6.39
-AAAAAAAAMOODAAAA	Full, following books merge alive, urban farms. Boys take certainly eventually future trees	Home	accent	4.69	6775.86	2.19
-AAAAAAAANKODAAAA	Only certain creatures cater about independent issues. Over present lines might work by the personnel. Visitors scrap. Old, e	Home	accent	4.58	5751.72	1.85
-AAAAAAAANNPCAAAA	Early chief models conclude typically central, suitable rates. Long, unlikely cities tell journals. Chapters shall study later natural, intense chiefs. Co	Home	accent	2.12	4028.93	1.30
-AAAAAAAANOKDAAAA	Too contemporary ideas measure now as a teeth. Only modern problems concentrate local animals. Whole regulations shall put as texts; also magnetic homes could not explain also types. Car	Home	accent	6.02	7989.07	2.58
-AAAAAAAANPPAAAAA	Tears	Home	accent	2.49	3654.39	1.18
-AAAAAAAAOCKAAAAA	Annual theories will not sleep particular colleagues. Inherent trees put partners. Other layers place there backs. Effects would know often for an guns. Certain, bitter	Home	accent	4.28	6407.51	2.07
-AAAAAAAAOCMDAAAA	Issues will give. Even executive differences discover somewhere high, recent days. Doors may not save then members. 	Home	accent	3.45	33.60	0.01
-AAAAAAAAODACAAAA	However wild beliefs	Home	accent	3.91	1519.68	0.49
-AAAAAAAAODGCAAAA	Bizarre, national goods pass in the police. Isolated colours use always prices. Also creative patients say even in the numbers. Proposed brothers find services. Crazy, whole aspects woul	Home	accent	54.41	1246.75	0.40
-AAAAAAAAOJECAAAA	British regulations will block at all improvements; visual, managerial assumptions should examine in a fears. Effects become sensitive firms	Home	accent	9.88	6406.20	2.07
-AAAAAAAAOLDAAAAA	Sales know in a meanings. International, professional figures may get in a statement	Home	accent	0.48	3425.24	1.10
-AAAAAAAAOOBDAAAA	Green, low houses must not explain in a rules; other miles reduce beautiful, successfu	Home	accent	47.64	2569.26	0.83
-AAAAAAAAOOKDAAAA	Real, human elections find auditors. Black employees would comply. Bad eyes sell recent lines. Obvious issues describe	Home	accent	7.40	2663.84	0.86
-AAAAAAAAPAKAAAAA	Unique developments should guess once at the assumptions. Letters might not provide especially 	Home	accent	4.38	7861.02	2.54
-AAAAAAAAPBMAAAAA	Yea	Home	accent	1.36	8742.72	2.82
-AAAAAAAAACFDAAAA	British, familiar cups sho	Home	bathroom	97.01	7038.84	2.38
-AAAAAAAAADEAAAAA	Days stick fairly big, integrated women. Much other fortunes ought to work so to the losses. Subsidies take 	Home	bathroom	2.57	1134.78	0.38
-AAAAAAAAAGODAAAA	Following rows might not ring real differences. Afraid children must ensure. Generous, large sheets tell there before 	Home	bathroom	0.54	12924.86	4.38
-AAAAAAAAAMFCAAAA	Permanent, horizontal workers tell bad in a concepts. Indeed familiar parents should make under a researchers. Trees ought to get surely now sound soldiers. Negotiations will talk 	Home	bathroom	4.19	4566.20	1.54
-AAAAAAAAAOLDAAAA	Certain individuals shall race safely cruelly necessary terms; young, high guns take to a hands. Vali	Home	bathroom	2.84	5911.80	2.00
-AAAAAAAACAPDAAAA	So other firms come shortly; domestic liabilities used to absorb years. Awful days emp	Home	bathroom	3.62	3184.35	1.08
-AAAAAAAACBNDAAAA	Much legal restaurants explain once provincial magistrates. Possible hours betray enough to a computers. Stable, massive services comply blindly full, local women. Scottish firms 	Home	bathroom	2.79	378.96	0.12
-AAAAAAAACDOBAAAA	British, possible solicitors fall still in a indians. Perfect names should not cost still. Redundant, mild opponents give just military specialists. Here great 	Home	bathroom	0.10	16765.16	5.68
-AAAAAAAACEFDAAAA	Ago total goods see similar organizations. Explicitly old regions adapt together. Here p	Home	bathroom	8.40	1624.14	0.55
-AAAAAAAACJJCAAAA	Men would not welcome sure very rem	Home	bathroom	60.55	2769.05	0.93
-AAAAAAAACLICAAAA	American, other activities lower often rational services; collections exist. Competent reasons ough	Home	bathroom	2.42	5276.67	1.78
-AAAAAAAAEGCCAAAA	Still corporate departments make pressures. Workers shall not last much out of a walls. Successful ideas snap. Public candidates shall tell. Human, entire prob	Home	bathroom	4.43	4350.04	1.47
-AAAAAAAAEIACAAAA	Other, slim days try 	Home	bathroom	6.22	8619.01	2.92
-AAAAAAAAEIMCAAAA	Particularly new cases join. Military, christian eyes lead widely suspicious players; finally special beings shall date at a trees; narrow aspects 	Home	bathroom	9.61	2207.52	0.74
-AAAAAAAAFABEAAAA	Houses design	Home	bathroom	4.80	6543.35	2.21
-AAAAAAAAFDEEAAAA	Feelings sleep at a details. Also competitive devices shall object early in every sales. Almost other ways offer once free tools. Significant, german sheets keep hardl	Home	bathroom	7.15	8001.07	2.71
-AAAAAAAAFGFDAAAA	Ec	Home	bathroom	4.86	4935.12	1.67
-AAAAAAAAFGGCAAAA	As territorial fingers develop then humans. Industries put then extra, anxious pairs. Letters give of course voluntary, central times. Committees join thus. Areas produce so long gold eyes. Taxes c	Home	bathroom	36.14	16986.96	5.76
-AAAAAAAAFHDBAAAA	Then christian rules should take here new choices; hard, pale changes avoid sections. Now main metres can need necessarily in spite of a stories; late colours keep now into the charts. Seque	Home	bathroom	3.59	12017.36	4.07
-AAAAAAAAGFFDAAAA	Horizontal nerves will not study just. Issues shall not imagine workshops. Relevant industries provide british, fresh others. Commercial, new houses give with the 	Home	bathroom	3.34	2802.39	0.95
-AAAAAAAAGHLCAAAA	Clients must not feel also ever private cars; names think. Concerned meals used to go still chapters; remarkable, minimal terms get at first. Obvious articles must 	Home	bathroom	0.71	2655.54	0.90
-AAAAAAAAGIMCAAAA	Traditional times buy on a operations. Clear, ne	Home	bathroom	9.63	3165.58	1.07
-AAAAAAAAGLFBAAAA	Claims choose rarely too armed differences. Personal, wise goods build ill n	Home	bathroom	1.06	5867.34	1.98
-AAAAAAAAGPMCAAAA	Almost central words will take. International pupils see manufacturing boxes. Possible positions might hold magistrates; duties exert strong fields. Neverthele	Home	bathroom	0.90	4567.64	1.54
-AAAAAAAAHBFAAAAA	Dollars prove everywhere o	Home	bathroom	7.89	4037.25	1.36
-AAAAAAAAHKBEAAAA	Significant, fa	Home	bathroom	4.86	2662.40	0.90
-AAAAAAAAIBMCAAAA	Literally experienced women le	Home	bathroom	3.83	3405.70	1.15
-AAAAAAAAIHDCAAAA	Adverse, early members build only small numbers. Head feet must sink profitable books. Friends kick thus in a jobs. Little, complicated departments 	Home	bathroom	0.58	4116.92	1.39
-AAAAAAAAIHEDAAAA	Northern, possible courses would admit. National arms conduct times. Attractive, operational comparisons worry studies. At leas	Home	bathroom	6.98	2665.61	0.90
-AAAAAAAAIHIAAAAA	Economic things determine. However overseas teachers listen clearly by a types; signs telephone probably. Environmental ty	Home	bathroom	16.26	9591.84	3.25
-AAAAAAAAIJFBAAAA	Once more parliamentary sizes separate fairly executive movements. Positive years would get there open units; left governments used to show new police. 	Home	bathroom	2.74	28245.68	9.57
-AAAAAAAAJBPDAAAA	Supplies accept; below inc spirits know at least correct, chief policies; grants used to stay by a words; basic, public differences use centrally then strange policies; adeq	Home	bathroom	4.13	10306.89	3.49
-AAAAAAAAJMDEAAAA	Home warm authorities might recognise overseas. Easy, adequate processes could address about well local styles. Ministers will take. Obviou	Home	bathroom	8.75	2112.25	0.71
-AAAAAAAAKDGBAAAA	Possibly environmental links must hurt faster bright, cultural lovers. Rooms could	Home	bathroom	2.09	10205.43	3.46
-AAAAAAAAKDKAAAAA	Free, different divisions ought to see more whole terms. So substantial schools will measure others. British classes consider though dishes. Pupils mount. Ugly, economic schemes cannot erect 	Home	bathroom	4.43	10794.90	3.66
-AAAAAAAAKFKDAAAA	Free, expensive rivers can mind. Jobs change otherwise charming issues. Children cannot look generally careers; reforms take into a blacks. Aware, attractive grounds will add as yet econom	Home	bathroom	30.34	8803.45	2.98
-AAAAAAAAMFADAAAA	New, poor friends should not remember lines. Generally present techniques will not damage then good problems. Names remove as true questions. Outstanding subjects would reflect tonight	Home	bathroom	60.22	11422.92	3.87
-AAAAAAAAMMNBAAAA	Years	Home	bathroom	0.97	10497.66	3.56
-AAAAAAAAMPHAAAAA	Payments appear forces. New proceedings pursue at least financial, current angles. Remarkable, main documents comply unusual, solid aspects. Wrong, just films ask different, l	Home	bathroom	9.49	2156.36	0.73
-AAAAAAAAMPJBAAAA	Present, dangerous courts might send 	Home	bathroom	1.93	158.10	0.05
-AAAAAAAANEODAAAA	Single, successive birds involve really in a poets. Various, public colours build over. Level, grey troops relax average, sensible clergy. Proud authorities read prayers. Stores may shoo	Home	bathroom	6.65	5152.04	1.74
-AAAAAAAAOBHDAAAA	Large shares die rather. Members produce aside plans; muscles should not say earnings. Mammals know there somewhat major situations. Ever private countries should try gates. Workers impro	Home	bathroom	3.09	6633.12	2.24
-AAAAAAAAOJGCAAAA	Cases produce always developments. Genuine facilities would give away weeks. Rows can concentrate maximum hills. Romant	Home	bathroom	4.31	4796.88	1.62
-AAAAAAAAONBDAAAA	Old, national lessons seek more spanish worlds. Nights apply here 	Home	bathroom	9.64	2068.56	0.70
-AAAAAAAAONJCAAAA	Especially other parts could make over blank choices; subjects constrain only social, new respects. Brown, particular reports m	Home	bathroom	6.82	1031.11	0.34
-AAAAAAAAOPFEAAAA	Heavy, recent decades think finally. Outstanding, average det	Home	bathroom	3.45	2515.92	0.85
-AAAAAAAAPOKBAAAA	Chemical, elegant influences should pray certainly with a mo	Home	bathroom	6.10	7169.30	2.43
-AAAAAAAAAABDAAAA	Good, other flats forget literally physical years. Indeed complete sales shall not	Home	bedding	4.98	287.08	0.08
-AAAAAAAAACIAAAAA	Original, active users might draw for a associatio	Home	bedding	2.36	13079.50	3.81
-AAAAAAAAAHNAAAAA	Moreover social skills may go more long responses. Following eve	Home	bedding	7.54	5852.19	1.70
-AAAAAAAAAMLDAAAA	Yellow, important supplies will not take; more safe months would go here almost disabled hands. Blocks would com	Home	bedding	6.59	4985.94	1.45
-AAAAAAAAANJBAAAA	New writers understand final restaura	Home	bedding	4.74	716.55	0.20
-AAAAAAAAAOGAAAAA	Foreign, good things must get eyes. Low, thin members must rest. International looks allow. Senses should not touch. Limited, single backs would not walk opportunities; high	Home	bedding	3.51	9085.72	2.65
-AAAAAAAABAKCAAAA	Teams waste very back children. Wide, private years might help cells. Heavy,	Home	bedding	0.57	853.76	0.24
-AAAAAAAACFNDAAAA	Independent premises could not demonstrate then perhaps white users; democratic risks regain good provi	Home	bedding	2.83	1429.78	0.41
-AAAAAAAACHKDAAAA	Unlikely costs should risk low whole, new officials. Other eyes carry in the students. Main, lovely feelings must not allow	Home	bedding	4.66	13345.14	3.89
-AAAAAAAACOBCAAAA	Proper effects could not seem much royal others. Loyal transactions will replace legal, identical days. At	Home	bedding	0.91	675.45	0.19
-AAAAAAAADACCAAAA	Reduced connections will justify at the users. Easy, human girls can stay further dead, various shares. Big, french	Home	bedding	16.50	200.43	0.05
-AAAAAAAADBFBAAAA	Members shall not notice drastically in a standards. Concerned yea	Home	bedding	3.22	3565.45	1.04
-AAAAAAAADJMBAAAA	Young categories look grossly so colourfu	Home	bedding	3.36	2588.53	0.75
-AAAAAAAAEBGDAAAA	Main, due rooms would come fairly likely, relevant cattle; players avoid otherwise eyes. Fans will not ban potentially. Literally religious peasants can endeavou	Home	bedding	1.82	12041.40	3.51
-AAAAAAAAEHLDAAAA	Obvious, afraid poli	Home	bedding	4.05	2309.36	0.67
-AAAAAAAAEKDAAAAA	Now short views cannot include. Real, northern interests may build. Fresh	Home	bedding	1.78	31671.89	9.24
-AAAAAAAAEMLCAAAA	Only familiar shareholders could ensure very military electoral needs. Troubles imagine at fi	Home	bedding	0.84	2210.61	0.64
-AAAAAAAAEOKDAAAA	Almost subject men could add more huge, current customers. Major colours 	Home	bedding	0.22	4921.66	1.43
-AAAAAAAAFFCEAAAA	Imports must communicate on a women. Level difficulties c	Home	bedding	3.93	1444.56	0.42
-AAAAAAAAFIKCAAAA	Masters help in terms of the hours. Still different details used to find always long black savings. Now free shares demonstrate behind. Extended, empty sentences ask ago 	Home	bedding	9.52	7353.86	2.14
-AAAAAAAAFOFEAAAA	Symbolic cells would generate branches. Relations might find potentially; central, loyal 	Home	bedding	7.39	5503.24	1.60
+AAAAAAAAKMNCAAAA	Yet complex diff	Books	mystery	6.10	1442.68	0.846648
+AAAAAAAAKNLBAAAA	Sisters go seemingly tall, special fragments; straightforward grounds make all	Books	mystery	7.67	1378.73	0.809118
+AAAAAAAALEPBAAAA	Especially correct courts en	Books	mystery	2.92	1425.08	0.836319
+AAAAAAAAMABAAAAA	Small designs may not guide sure single things	Books	mystery	3.73	2586.34	1.517814
+AAAAAAAAMMKAAAAA	Widespread, mental authorities go less than new symptoms. 	Books	mystery	3.63	6301.51	3.698091
+AAAAAAAANHBEAAAA	Clean pictures would become through a clients. Legs sell up to a effects. Powerful, german areas may come in general at least little changes. Too medical years may suck probably soon pub	Books	mystery	6.36	1659.84	0.974090
+AAAAAAAAOFBAAAAA	Real, correct drinks deny carefully. Good subjects shall not contribute home highly mediterranean ideas; whole workers should affect by a dishes. Eyes can believe productive, total eyes. Databa	Books	mystery	3.10	2329.80	1.367261
+AAAAAAAAOGODAAAA	Bizarre months furnish other, central words. Wide orders might end. Other,	Books	mystery	2.25	8600.32	5.047166
+AAAAAAAAONIDAAAA	So serious weeks might come weak members. At all young boxes imagine armed girls; fairly political services work technical, local authorities; actu	Books	mystery	51.11	2815.12	1.652075
+AAAAAAAAACDDAAAA	Parents may affect perfect conten	Books	parenting	0.98	4697.24	1.937727
+AAAAAAAAADOCAAAA	Hands know european, absolu	Books	parenting	1.88	3032.67	1.251051
+AAAAAAAAAIEEAAAA	New results used to lead soon african, true penalties. Popular trains follow environmentally classical gates. Final crews will indica	Books	parenting	0.41	11256.20	4.643460
+AAAAAAAAALFBAAAA	Beaches make 	Books	parenting	0.44	1510.40	0.623077
+AAAAAAAABHGCAAAA	Girls become from a intervals. Changes shall crash further very initial families. Total, possible systems advertise	Books	parenting	5.34	4131.30	1.704263
+AAAAAAAACFCEAAAA	Additional, terrible characters shall examine. Ago lexical conditions get into a weeks. Barely trying results perform still hot men. Great kinds end also committees. Police should live only on the 	Books	parenting	4.46	1505.79	0.621175
+AAAAAAAACLKCAAAA	Distinctive, narrow members will think too rules. Teenage, rigid patients occur steadily public, local databases	Books	parenting	1.50	8666.56	3.575169
+AAAAAAAADAGEAAAA	Environmental businesses behave settlements. Students might make of course almost organisational goals. Eyes brush on	Books	parenting	7.79	5382.48	2.220405
+AAAAAAAADIEEAAAA	Previous, other details will talk ahead. Children hear here; true services require children; partly lucky members must make at first uncertain	Books	parenting	1.85	8637.81	3.563309
+AAAAAAAADLDCAAAA	Political, lucky standards learn appeals. Eventual, influential services involve numerous, coming scientists. Eyes play less	Books	parenting	9.95	18505.53	7.633987
+AAAAAAAADOODAAAA	Major feet must prevent other, able problems. Provisions attract. Daughters accept in pri	Books	parenting	2.06	5288.92	2.181810
+AAAAAAAAEBFAAAAA	Small companies develop vehemently. Past, great rights would get so ways. Soon national members achieve. Professional, stupid properties can tell m	Books	parenting	99.89	10199.20	4.207421
+AAAAAAAAEEHBAAAA	Generally communist workers ought to speak to a quantities. Male, english decades take. Explanations retain comparatively large, enormous patterns. Mediterranean budget	Books	parenting	5.73	525.26	0.216682
+AAAAAAAAEPHDAAAA	More clear charges dry both. More fat days research often strong skills. Now old features admit too good minerals. Abo	Books	parenting	1.05	5748.19	2.371270
+AAAAAAAAFDHBAAAA	Ages see both to an supporters. Creative sides will not make always. Groups grow therefore expensive talks. Apparent citizens survive across new, single minutes; previous, dark rivers qualify.	Books	parenting	7.04	4281.84	1.766364
+AAAAAAAAFDMCAAAA	Long walls may clarify cases. New chairs will attract legal patients. Functions disc	Books	parenting	8.06	721.21	0.297516
+AAAAAAAAGFCAAAAA	Departmen	Books	parenting	2.09	8636.38	3.562719
+AAAAAAAAGNPBAAAA	B	Books	parenting	0.89	129.54	0.053438
+AAAAAAAAICKCAAAA	Fears take sudden developments. Central cells might try forward for instance special banks. Feet must not mean also. Flat times shall ask over the days. Regulations may consider; 	Books	parenting	7.20	12010.46	4.954611
+AAAAAAAAIFFEAAAA	Else ashamed temperatures sue negative things. Groups will	Books	parenting	41.35	2974.92	1.227227
+AAAAAAAAIFNAAAAA	Acute, important performances afford. New, nuclear men used to assess again small results.	Books	parenting	10.11	14724.17	6.074083
+AAAAAAAAIHFAAAAA	Significantly small suggestions will not come more new blue terms. Fundamentally previous soldiers understand alone huge contracts. Religious, professional miles must ap	Books	parenting	4.64	5046.48	2.081797
+AAAAAAAAIMJCAAAA	Usually different views shall serve personally unknown symbols. Countries prove methods. Necessary men consider also to a communications. Always inner hundreds will not share suddenly from a shops. P	Books	parenting	8.94	220.25	0.090858
+AAAAAAAAJDHAAAAA	Continued ideas reflect only still other prices. Actually historical weeks help low, appropriate companies; recent provisions widen du	Books	parenting	2.16	1105.75	0.456149
+AAAAAAAAJLNBAAAA	Subjects may think on a times. New, back services will keep along a runs; trees engage financial models; again limited men might join certainly. R	Books	parenting	4.12	2508.75	1.034921
+AAAAAAAAJNFBAAAA	Instead certain attempts would fit even medical natural rates. Aware, critical newspapers say wit	Books	parenting	71.58	10076.22	4.156689
+AAAAAAAAKGLBAAAA	Clear approaches should take alone daughters. Complex, small materials provide also by a groups. Americans discuss so. Cons	Books	parenting	3.34	390.37	0.161037
+AAAAAAAAKHAAAAAA	Generally french beds will ask amounts. Difficult, difficult workers would come once again in a resources. So inc	Books	parenting	2.62	8339.40	3.440208
+AAAAAAAAKHEBAAAA	New, busy years think potentially to a lights. Much apparent individuals find still other places. Speakers could 	Books	parenting	4.76	10612.15	4.377773
+AAAAAAAAKILDAAAA	Also parental feet must suggest now relationships	Books	parenting	1.19	1021.77	0.421505
+AAAAAAAALODDAAAA	As generous germans mean almost eastern variables. Long years must not face really good, atomic relations; chemical, corporate bills must honour seasons. Artificial, gold materials determine	Books	parenting	4.51	894.70	0.369085
+AAAAAAAAMANDAAAA	French	Books	parenting	4.98	15486.40	6.388522
+AAAAAAAAMECBAAAA	Provisions go too. Sad others contain italian branches. Keys k	Books	parenting	2.08	446.00	0.183986
+AAAAAAAAMFBEAAAA	Hopes should not remember more consistent colours. Really new techniques could not consider then forms	Books	parenting	5.58	20249.86	8.353566
+AAAAAAAAMFKBAAAA	Most modern concentrations may direct e	Books	parenting	0.56	2622.96	1.082035
+AAAAAAAAMHABAAAA	Features might not get as pounds. Names should indicate ages. Police used to see ele	Books	parenting	2.79	7738.10	3.192157
+AAAAAAAAMNNAAAAA	Rightly responsible documents laugh other candidates. Educational times hide specific, famous elections. Styles cannot go to the sides	Books	parenting	0.70	1084.32	0.447308
+AAAAAAAAMNNDAAAA	Theoretical degrees sho	Books	parenting	3.90	731.52	0.301770
+AAAAAAAAMOPDAAAA	Studies go of course unable friends; here brilliant techniques understand radical, passive	Books	parenting	70.67	160.48	0.066201
+AAAAAAAANBLDAAAA	Other, correct points pick. Policies shall regard of course just major topics; white, popular wome	Books	parenting	0.42	480.20	0.198094
+AAAAAAAANMAAAAAA	Over wide attacks agree i	Books	parenting	7.30	497.35	0.205169
+AAAAAAAAOAIAAAAA	Possible, concerned facilities would not show also most due opinions. Empty students maintain of course possible, particular years. 	Books	parenting	8.67	1180.36	0.486927
+AAAAAAAAOFNDAAAA	Anywhere proper men will not run remarkable, revolutionary libraries. Poor rates used to hear also. Huge years see structural churches.	Books	parenting	7.36	2344.16	0.967023
+AAAAAAAAONMCAAAA	Spanish, likely professionals should te	Books	parenting	5.56	10391.64	4.286807
+AAAAAAAAPAICAAAA	Other ambitions seek aloud to a measurements; other hands could provide children; also particular pp. could push fine, huge mines. Just coun	Books	parenting	4.72	555.56	0.229182
+AAAAAAAAPMHAAAAA	Right social years would fit indirectly creatures. Very suspicious words should not write particular, typical views. Rarely evident hours wish more lucky others. So racial loans imitate a	Books	parenting	6.39	5658.92	2.334444
+AAAAAAAAAEGDAAAA	Important, large lips warrant. Only old solutions live lovely ingredients. Angles ought to marry central, white banks. Threats follow.	Books	reference	1.85	5201.12	1.724243
+AAAAAAAAAHHCAAAA	However other lines could afford just for the groups. Tenants must purchase. British arrangements continue domestic, quick tasks. Traditiona	Books	reference	1.65	10890.80	3.610451
+AAAAAAAAALMAAAAA	Back, social names gather known experiences. Tough problems shall gain. Powerful, far stones cou	Books	reference	3.50	3501.82	1.160901
+AAAAAAAAAODAAAAA	Secondary, economic pupils loo	Books	reference	3.68	2726.82	0.903978
+AAAAAAAABDFEAAAA	Magnetic students respond small figures. Tasks may not know less european, scottish months. Characters shall concentrate yesterday still usual systems. Projects	Books	reference	4.91	6302.00	2.089200
+AAAAAAAABDJDAAAA	Primary, curious reports feel late of course waste weeks; yellow arts imagine still prices; unpleasant, remote forms differ rather than 	Books	reference	2.91	5200.56	1.724057
+AAAAAAAABEHBAAAA	Steep, labour clubs achieve less hands; often great towns mean tall, new maps. Conditions occur following men. Costs should coordinate; objectives know modest details. Child	Books	reference	2.13	3695.28	1.225036
+AAAAAAAABLHAAAAA	Perhaps old sources disappear. Small, bright enterprises used to take by a systems. Local proteins could not try then. Blank, special colleges appear.	Books	reference	7.38	14646.94	4.855663
+AAAAAAAABNJCAAAA	At least assistant bands can address certainly black trees. Terms ought to knock ex	Books	reference	0.49	471.36	0.156262
+AAAAAAAABOBDAAAA	Immediately professional cells may ship properly forward political members. Daily, direct trains can choose clearly. Partners answer everywhere at a chara	Books	reference	0.18	16491.62	5.467201
+AAAAAAAACFGDAAAA	Even other windows ought to appear very scientists. Models close. Certain actions might press soon by the programs. Ultimate, ill de	Books	reference	8.20	2172.73	0.720290
+AAAAAAAACIBCAAAA	At once good friends limit. Too simple stations	Books	reference	1.88	558.14	0.185031
+AAAAAAAACKJCAAAA	Possibilities should not fit almost eggs; seriously little members del	Books	reference	3.40	9476.74	3.141670
+AAAAAAAACKNBAAAA	Today labour characters used to like quite black difficult papers; ages catch low, common matters. Sick judges might make both opposite seeds. Public, foreign proceedings must not rescue of c	Books	reference	3.30	2429.21	0.805316
+AAAAAAAACLGAAAAA	Rather suitable weapons could prosecute ago labour, large users. Affairs use normally at the unions; emotions can say; armed,	Books	reference	2.23	2328.47	0.771920
+AAAAAAAACLPBAAAA	Officials can include more. Trades imagine still in a words. That is american systems should not demonstrate even for a characters. Electrical members should not think able, foreign finger	Books	reference	9.55	601.20	0.199306
+AAAAAAAADBOBAAAA	Notions shall say major journals; economic standards make at once old requirements. So corporate numbers ask now in a images; surely closed feelings m	Books	reference	1.80	5327.56	1.766160
+AAAAAAAADIKBAAAA	Rural, strong dollars can go in a students; nice restrictions leave afield spectacular, royal experts; decisions ought to defend about early effective pp.; russian, national relations shall deli	Books	reference	9.64	3655.37	1.211805
+AAAAAAAAEEJCAAAA	Soldiers may look generally specific forces. Functions shall provide even negative pensioners. Real, soviet opportunities cry no lon	Books	reference	52.92	6544.32	2.169532
+AAAAAAAAEJDEAAAA	Natural communities create original youngsters; as beautiful children smooth legal, big agreements. Special, other heads make regularly la	Books	reference	6.41	8590.84	2.847982
+AAAAAAAAEKFDAAAA	Young blacks might answer here great factors. Shares will not cond	Books	reference	0.35	3766.67	1.248703
+AAAAAAAAGJHDAAAA	Effective needs may not improve old bonds. Courts cannot come only with a sources. Before proud files like just partial authorities. Parliam	Books	reference	0.97	966.50	0.320408
+AAAAAAAAGKMBAAAA	Front markets ought to reach very academic ways. Then possible words open entirely public products. Softly origin	Books	reference	4.07	4860.86	1.611442
+AAAAAAAAGOPCAAAA	Concerned agreements may imagine forward large demonstrations. Primary, excellent months would not think clearly by a hopes. Open firms wipe men. Impor	Books	reference	2.27	3976.69	1.318327
+AAAAAAAAHFBAAAAA	Old places avoid certain, typical hands; here original arms see in a ideas. Good	Books	reference	38.26	3993.95	1.324049
+AAAAAAAAHLNDAAAA	Markets must say for ever then green weeks. Better fresh forces find also similar restaurants; proposals materialise for a procedures. Here other results 	Books	reference	2.44	2428.67	0.805137
+AAAAAAAAHMGAAAAA	Words bear international, expected countries. Apparent, misleading years get ever rich grounds. Over atomic feet could forgive ultimate, educational bishops; current, vas	Books	reference	4.95	2101.32	0.696616
+AAAAAAAAHOHDAAAA	Educational reasons know also through an economies. Countries hope constitutional, rough ministers. Relations would not say also likely gue	Books	reference	6.23	3994.17	1.324122
+AAAAAAAAIAMCAAAA	Very financial ministers eat vigorously. Other questions may research upside down blue matters. Weak, electronic forces relax military keys. Especially enormous police collapse per	Books	reference	7.85	389.64	0.129171
+AAAAAAAAIGBCAAAA	Liberal, civil customers refuse. For the most part real areas should ask mainly carefully	Books	reference	6.46	4308.11	1.428198
+AAAAAAAAINJBAAAA	Young, working horses see mentally 	Books	reference	1.27	5566.78	1.845464
+AAAAAAAAKGKAAAAA	Competitors may pin including the 	Books	reference	0.82	2136.19	0.708176
+AAAAAAAAKIEEAAAA	Essential interests can discover luckily from a activities. Righ	Books	reference	21.45	10159.85	3.368131
+AAAAAAAAKKJCAAAA	Wages	Books	reference	5.92	5010.76	1.661136
+AAAAAAAAKNGCAAAA	Levels could say pointedly original, happy sessions; immense, technological decisions might discourage basic difficulties. Officials find. Simple, 	Books	reference	8.70	8242.17	2.732393
+AAAAAAAAKOFCAAAA	Unusual years might buy others. Enough mutual facilities could not respond views. Differences s	Books	reference	1.01	5857.89	1.941971
+AAAAAAAALCFBAAAA	English 	Books	reference	3.87	3969.62	1.315984
+AAAAAAAALIDAAAAA	Largely substantial contracts facilitate. Yet full values can advise extremely plants. Men classify empty contacts. Private, common events can want more just central patients. Enti	Books	reference	1.55	2435.84	0.807514
+AAAAAAAALIOBAAAA	So no	Books	reference	73.22	1488.48	0.493451
+AAAAAAAALNGBAAAA	Levels will l	Books	reference	3.87	13388.03	4.438317
+AAAAAAAAMBFEAAAA	Else incredible women must tackle smoothly neverthe	Books	reference	2.99	9050.98	3.000525
+AAAAAAAAMIHCAAAA	Clients could attempt that is to say now warm days; national problems would not belong for a stars. Issues write thereafter cases. Successful years add together perhaps easy ye	Books	reference	9.95	6398.40	2.121158
+AAAAAAAAMKPAAAAA	Blue findings used to assess by a relatives. International, important qualities shall stay spanish, active roses; solid villages will stand in order certain members.	Books	reference	96.43	12441.19	4.124427
+AAAAAAAAMNICAAAA	Efficient, good eyes last more friendly, famous ideas. Letters could go. Financial, central eyes can find then ready courses. Common horses work inter	Books	reference	9.08	4496.30	1.490585
+AAAAAAAANIABAAAA	Prospective, other jeans must set short old women. 	Books	reference	1.46	4902.61	1.625283
+AAAAAAAANJAAAAAA	Young, white workers may not wreck british, statistical explanations. New complaints leave no longer only wide doors; shops beat new restrictions. Horses must not test by now anonym	Books	reference	2.21	3352.26	1.111320
+AAAAAAAANKKBAAAA	Now usual others shall express again books. Inevitable sales cannot take good. Significantly long words finish continuous, good duties. Countries can run in a branches; even s	Books	reference	6.03	10533.60	3.492034
+AAAAAAAAOGIBAAAA	Social democrats begin more inside the results. Important, particular minutes make in front of the relations. 	Books	reference	52.52	8592.19	2.848430
+AAAAAAAAOHKBAAAA	Well efficient schools will include indeed areas. Maybe wrong years can like early 	Books	reference	80.48	16574.03	5.494521
+AAAAAAAAOMBBAAAA	Statistically warm resources keep too up to a p	Books	reference	6.39	14301.76	4.741232
+AAAAAAAAOMJCAAAA	Good ships get young points. Rarely extra countries like. Women rise better. Further permanent representatives ought to say substantial buildings. Less typical pre	Books	reference	4.76	73.77	0.024455
+AAAAAAAAOMLAAAAA	Disabled relations express doubtfully common hours; very inappropriate ideas make bad, light theorie	Books	reference	28.84	482.76	0.160041
+AAAAAAAAONDCAAAA	Libraries will result too cond	Books	reference	0.63	509.76	0.168992
+AAAAAAAAPECBAAAA	Sides will not make very working influences. Assistant clothes carry quite benefits. Available part	Books	reference	25.23	10081.79	3.342253
+AAAAAAAAAANDAAAA	Ashamed eyes go european years. Major, modern patients	Books	romance	1.22	14955.95	4.039605
+AAAAAAAAAGKDAAAA	Free eyes talk biolog	Books	romance	6.75	3412.47	0.921708
+AAAAAAAAAPFCAAAA	Little, particular jobs become most hard symptoms. Regular, everyday systems cannot benefit in the diseases. International, flexible stones return for a elements. Future tables wou	Books	romance	1.59	390.03	0.105347
+AAAAAAAABHLDAAAA	Rules can come largely deep wings; soviet, yellow kilometres could eat never bright, entire proposals. More pleased museums may n	Books	romance	9.78	10231.74	2.763595
+AAAAAAAABNNBAAAA	For example used comments could conduct still. Tab	Books	romance	0.36	9861.48	2.663588
+AAAAAAAABOBAAAAA	Old, revolutionary eyes may not serve fully by	Books	romance	2.38	7109.76	1.920347
+AAAAAAAACHBDAAAA	Spare, american sports see even posts; views think at the bands; men flow 	Books	romance	2.58	1267.84	0.342443
+AAAAAAAACJLAAAAA	Very huge councils will not stay elected, outstanding criticisms. Comfortable, financial rivers ought to follow on a men; children may not g	Books	romance	2.63	1236.83	0.334068
+AAAAAAAACLABAAAA	Minor, obvi	Books	romance	1.53	2828.17	0.763889
+AAAAAAAADLEBAAAA	Responsibilities require ships. Women ought to accept as to the pp.; huge children could hold wonderful, wil	Books	romance	0.66	14822.01	4.003428
+AAAAAAAAEGDEAAAA	Capable interests should not make sorry, free courses. Offences should discuss 	Books	romance	2.82	1809.93	0.488862
+AAAAAAAAEKFBAAAA	Other others provide simple descriptions. 	Books	romance	76.52	11952.32	3.228324
+AAAAAAAAFCDAAAAA	Live, late activities feel principles. In	Books	romance	4.50	4341.92	1.172753
+AAAAAAAAGAKBAAAA	Small babies must get. Women drive individuals	Books	romance	8.65	5632.03	1.521212
+AAAAAAAAGCLAAAAA	Schools could change carefully then national courses. Vaguely capable others shall not say right arms. Goals know still products. Agencies would not drop ahead 	Books	romance	57.12	1025.83	0.277076
+AAAAAAAAGGAEAAAA	Copies light unfortunately by a periods. Properly desirable leads must go between a windows. New years must take. New contents like much symbolic users. So short-term wheel	Books	romance	4.07	7648.84	2.065953
+AAAAAAAAGIHBAAAA	Right joint uses cannot provide less labour, final windows. Ori	Books	romance	5.83	4286.08	1.157671
+AAAAAAAAGLLDAAAA	Prov	Books	romance	2.61	4503.02	1.216266
+AAAAAAAAGMIDAAAA	Anyway initial depths ought to raise over expenses. Little years ought to buy new sides. Phrases see across the folk. Barely considerable workers shall turn ev	Books	romance	2.54	526.08	0.142094
+AAAAAAAAGNBCAAAA	Kids must not know sharp, post-war babies. Democratic alternatives result quite at a activities. Deep, various institutions might not return extremely special,	Books	romance	1.85	10864.92	2.934617
+AAAAAAAAGNICAAAA	Results highlight as patterns; so right years show. Sometimes suitable lips move with the critics. English, old mothers ought to lift now perhaps future managers. Active, single ch	Books	romance	2.88	9733.14	2.628923
+AAAAAAAAGNMBAAAA	Later anxious detectives might not see. Only bonds improve even interests. Other, common bands go here rural sections. Relative daughters m	Books	romance	47.10	312.70	0.084460
+AAAAAAAAGPBEAAAA	Above upper shares should recall from a emotions. Books could not help british, 	Books	romance	1.23	4995.27	1.349223
+AAAAAAAAHDJDAAAA	Even irrelevant acres like very through a readers. Already concerned ministers shrink please. Evident findings used to eat about unique	Books	romance	88.04	9277.24	2.505784
+AAAAAAAAHGCEAAAA	Digital patients gain to a colours. Years make tem	Books	romance	16.58	2465.84	0.666023
+AAAAAAAAICLBAAAA	Special words say little supreme, bare chapte	Books	romance	2.98	8297.43	2.241137
+AAAAAAAAIDPDAAAA	Thoughts allow actually chiefly soviet environments. Even aware businessmen should persist very. Once more alone pilots will guess very. Public, disabled times judge. Likely uses s	Books	romance	1.44	9412.82	2.542404
+AAAAAAAAIEBDAAAA	Opposite, original differences wait considerably vehic	Books	romance	6.34	2173.38	0.587030
+AAAAAAAAILAEAAAA	Alm	Books	romance	6.14	16369.67	4.421451
+AAAAAAAAILNCAAAA	Inevitably good years must understand operations. Originally regular systems help good, skilled sons. Museums could find national parents. Plants find into the needs. Following	Books	romance	7.85	4778.91	1.290784
+AAAAAAAAIMADAAAA	Names use hard months. Traditional, irish groups could want markedly operations. Islamic, great facilities choose. Possible s	Books	romance	4.34	1911.19	0.516212
+AAAAAAAAJAOCAAAA	That right mines used to contribute more in order mathematical items. Possible representatives s	Books	romance	8.05	4337.28	1.171500
+AAAAAAAAJFDCAAAA	Great authorities can hear thus sheets. R	Books	romance	2.74	6392.84	1.726707
+AAAAAAAAJHJDAAAA	At all silent aspects find properly apart expected trusts. Offices ought to meet also sweet lights. Yesterday environmental factors could doubt very significant f	Books	romance	4.42	3439.22	0.928934
+AAAAAAAAKCEEAAAA	Kings could grow just however safe achievements. Always local resources shall freeze so other victims. Trying, material office	Books	romance	3.89	12178.88	3.289518
+AAAAAAAAKDFCAAAA	Blue children can get grim, central eyes. New, reasonable meetings me	Books	romance	7.03	2197.07	0.593429
+AAAAAAAAKJECAAAA	Stud	Books	romance	3.37	4311.85	1.164631
+AAAAAAAAKLODAAAA	Inner, unable students would continue sexual, deep things. Managers cannot make generally; recent, big pupils need among the children. Possible, steep movem	Books	romance	4.42	4697.61	1.268825
+AAAAAAAAKPOBAAAA	Public visitors might think however private companies. Corporate, final damages need good, other fires. British guests tell as round schools; extraordinary, military y	Books	romance	7.65	9063.07	2.447937
+AAAAAAAALCOBAAAA	Cases cannot resign indeed. New types used to prejudice often industrial votes. Honest	Books	romance	9.69	10235.63	2.764646
+AAAAAAAALDACAAAA	Otherwise local relations would fly between a women. Whole costs make even from the types	Books	romance	0.62	709.65	0.191676
+AAAAAAAALFCEAAAA	Modern, natural prisoners should establish as modern weaknesses. Long, economic modules wish almost matters. Momen	Books	romance	4.47	4091.35	1.105074
+AAAAAAAALLDAAAAA	Personal days see large, important parents. Children 	Books	romance	90.72	9585.93	2.589161
+AAAAAAAAMGODAAAA	Local women will recognize depending on a leads. Fees might result dry, am	Books	romance	3.11	14015.32	3.785541
+AAAAAAAAMLHBAAAA	Valu	Books	romance	1.87	4397.36	1.187727
+AAAAAAAAMOAAAAAA	Sympathetically scottish things should take regularly on a programmes. Suitable, high stars could find above in a gains; wrong orders see for the speakers. English, grand groups shall not m	Books	romance	0.75	5274.42	1.424622
+AAAAAAAAMPEAAAAA	Relations marry in a attacks. Prime books ma	Books	romance	2.81	2976.02	0.803823
+AAAAAAAANCNAAAAA	Super, aware taxes used to expect. Available, active falls provide. Awful hands may play ever	Books	romance	7.90	8551.75	2.309829
+AAAAAAAANDOBAAAA	Limited, sharp hours look available proportions. Especially public ties object basic reductions; institutional sales apply; preferably territorial pp. used to pr	Books	romance	9.88	7408.89	2.001142
+AAAAAAAANFHDAAAA	Accessible, sure opportunities used to help; too good films would not see 	Books	romance	9.91	3998.50	1.079995
+AAAAAAAANPDAAAAA	Years teach then at once right heads. Agencies will say by a suppliers. Most permanent blacks should not promote as other, legal eyes. Courses get so double, light flowers. Eastern, british times c	Books	romance	2.90	4740.25	1.280342
+AAAAAAAAOCJAAAAA	Married, appropriate minutes shall not get more big problems. Odd authorities cannot believe military effects. Prices shall not mean always natural,	Books	romance	2.17	3521.31	0.951106
+AAAAAAAAODECAAAA	Indian, recent occupations mind too effects; days will discuss today also significant meanings; short foreign services shall direct early, electrical children. Else old years say latterly complete co	Books	romance	4.36	2078.76	0.561473
+AAAAAAAAOFHAAAAA	Simple, ideal images ought to stand accid	Books	romance	7.19	5764.42	1.556971
+AAAAAAAAOGGDAAAA	At least quiet students will kick by a practices; english beaches try again main meetings. Simple, narrow policies m	Books	romance	4.39	14404.18	3.890572
+AAAAAAAAOJACAAAA	New, certain conditions use. Appropriate, good miles lift ne	Books	romance	8.68	2985.60	0.806411
+AAAAAAAAOKCAAAAA	There welcome references must lower. Legal, broken houses may not note both large efforts; technical, agricultural patterns must not make strategic children. 	Books	romance	2.33	16509.31	4.459168
+AAAAAAAAOKFDAAAA	Silver, rural children get sometimes. Children cannot limit circumstances. Still similar players should work highest able agricultural techniq	Books	romance	7.04	1869.41	0.504928
+AAAAAAAAOLBCAAAA	Able services know books. Little new coins might not protect; social, young affairs account too into the	Books	romance	7.57	6156.24	1.662801
+AAAAAAAAOOECAAAA	Foreign scenes qualify of course objectively	Books	romance	3.63	3374.70	0.911507
+AAAAAAAAOPMAAAAA	Selective years may dispense especially dual schools. Carefully concrete tan	Books	romance	52.25	2531.27	0.683696
+AAAAAAAAADJCAAAA	Brothers would count other partners; private patients know. Never joint farmers c	Books	science	3.21	9474.14	2.997567
+AAAAAAAAAGMBAAAA	True regulations may not restore with a magistrates. Critical results take once white, large prisoners; political,	Books	science	1.54	8024.10	2.538782
+AAAAAAAAAIHBAAAA	Valuable, young ways make at all years. Mo	Books	science	3.67	13305.96	4.209935
+AAAAAAAAAIJAAAAA	Complex, different boats pick only. Objectives assess on the bands; full, effective arts must mis	Books	science	6.70	4666.56	1.476474
+AAAAAAAAAKCCAAAA	Responses find up to faint rates. Hours should not expire at a	Books	science	9.54	4713.74	1.491402
+AAAAAAAABNMCAAAA	Machines taste always top, likely interests. Results must bring only apart from a studies; true issues tell now poor procedures; long rules become almost secret diffi	Books	science	1.28	8189.57	2.591136
+AAAAAAAACDFAAAAA	Asleep, philos	Books	science	4.18	2847.46	0.900921
+AAAAAAAACHBBAAAA	Relatively sad accidents happen secondary, other sons; organisatio	Books	science	3.19	11344.35	3.589292
+AAAAAAAACKNDAAAA	Nice instructions will not laugh really scientific users. More temporary leaders u	Books	science	1.60	7592.00	2.402068
+AAAAAAAACMFDAAAA	Central vehicles matter now at a companies; r	Books	science	1.11	1098.99	0.347714
+AAAAAAAACPCAAAAA	Only, s	Books	science	0.31	19345.48	6.120807
+AAAAAAAADAHAAAAA	Forces require more new examples. Also narrow students take files. Native, important objectives ought to release still legs. Difficulties might say mainly. Years	Books	science	2.33	1815.50	0.574414
+AAAAAAAADGCCAAAA	Deep parent	Books	science	1.30	15194.47	4.807449
+AAAAAAAADNPDAAAA	Fol	Books	science	1.79	10320.77	3.265437
+AAAAAAAADPEAAAAA	Catholic years st	Books	science	0.45	3035.02	0.960264
+AAAAAAAAENFAAAAA	Outstanding shows would produce all english hearts; deep, strange relations will help bars. At last available operations should not dry long alternative gl	Books	science	1.51	2004.47	0.634203
+AAAAAAAAEPHAAAAA	Ago social details will gain mothers. Actively regional reports remain	Books	science	0.14	6145.19	1.944305
+AAAAAAAAFOPAAAAA	Moments use above local studies. More ordinary columns point now considerable services. At	Books	science	1.46	4199.46	1.328686
+AAAAAAAAFPEEAAAA	New, enthusiastic shares embrace. Averag	Books	science	2.00	578.34	0.182983
+AAAAAAAAGGICAAAA	Nowhere new points will not go places. Capable, local courses explore both barely distinctive numbers. Seriously recent areas begin rare, reas	Books	science	2.21	10413.61	3.294811
+AAAAAAAAGJLDAAAA	Single, professional tenants co	Books	science	\N	7704.65	2.437710
+AAAAAAAAGNHCAAAA	Central scientists shall not keep also in the countries. Other, financial authorities could not experience deep, other banks. Cells may avoid on the animals;	Books	science	4.28	6338.81	2.005565
+AAAAAAAAGOPDAAAA	Overseas, back workers make humans. Final, difficult parties kiss over within an metals; possible men ought to work further military meetin	Books	science	3.25	10456.69	3.308441
+AAAAAAAAHIPBAAAA	Yet small groups feature earnings. Young engines would try t	Books	science	0.75	6821.76	2.158368
+AAAAAAAAICLCAAAA	Letters may produce quite natural, available elections. Important, white sides 	Books	science	7.28	14476.65	4.580335
+AAAAAAAAIENBAAAA	Experiences help by a goods. Black prices live all sure, technological employers. Short, clever breasts play old memories. Strong refugees tell basically feet. Things earn in a persons.	Books	science	6.52	5876.66	1.859344
+AAAAAAAAIPFAAAAA	Extra, public branches shall list rather international police. Little v	Books	science	2.51	2456.91	0.777353
+AAAAAAAAJBMDAAAA	Presumably social provisions see photographs; other prices might not decide unduly european, unusual levels. Illegal, military men shall choose here high birds. Key drawi	Books	science	3.35	3904.01	1.235208
+AAAAAAAAJOGCAAAA	Pounds would fit very significant weeks. Open, single churches provide. Meetings lose financial members. Things reduce too. Waters place usually determined agents. 	Books	science	4.57	8847.64	2.799346
+AAAAAAAAKBPCAAAA	Round, open details put laboratories. Essential eyes see as again small opponents; ever sophisticated products congratulate also as great changes. Also young agents locate almost by a affairs. E	Books	science	8.45	8052.40	2.547736
+AAAAAAAAKHGDAAAA	Probably contrary schools meet really short daught	Books	science	6.65	5200.35	1.645363
+AAAAAAAAKJPDAAAA	Joint girls should keep with the agencies. Different, familiar ga	Books	science	0.75	2296.48	0.726594
+AAAAAAAAKLKBAAAA	Very wrong marks would like in particular new, african quantities; local barriers return. Things used to see. Dead clients must not say studies. There good studies start appropriat	Books	science	4.54	1738.61	0.550087
+AAAAAAAALEABAAAA	Always black matters say together on the explanations. Central problems get. Intervals favour severely disastrous reserves. Talks must retain scottish, fundamental years; other, fine 	Books	science	7.19	7835.40	2.479079
+AAAAAAAALJLAAAAA	Students shall want. Competitive parents can need. Big, kind children should relax also potential interviews. As available offenders must not continue too random, econo	Books	science	8.70	1050.54	0.332385
+AAAAAAAALMGCAAAA	Enough financial clients may figure now old problems. Real funds hear at least also tall schools. Quite new authorities mu	Books	science	4.28	5155.25	1.631093
+AAAAAAAAMAEAAAAA	Civil sites overlap conditions. More high interests send. Real, human cases provide straight enquiries. Months collect again just specifi	Books	science	7.92	4764.68	1.507519
+AAAAAAAAMAIDAAAA	Mental, vast persons must not cancel wrong photographs; close difficulties redeem letters. Symbols may ensure demands	Books	science	2.94	3625.10	1.146962
+AAAAAAAAMEKCAAAA	So international methods hold hence as senior glasses. So direct complaints will not attract far. Even narrow members must happen in a vehicles. Institution	Books	science	3.31	7136.50	2.257950
+AAAAAAAAMNPBAAAA	Wrong heads used to get too buildings. Slig	Books	science	2.46	239.24	0.075694
+AAAAAAAANBODAAAA	Only obvious profits produce now. Swiftly necessary times used to formulate here circles. Primary drugs inform doubtless low cases; too previous concessions pay. V	Books	science	3.96	6222.82	1.968867
+AAAAAAAAODFDAAAA	Marked, large years	Books	science	0.95	3439.80	1.088334
+AAAAAAAAODOBAAAA	Services shall make just never average rights; actual, high walls manufacture. Human, italian wars obtain then l	Books	science	9.76	14755.75	4.668641
+AAAAAAAAOFEDAAAA	Standards feel over young arts. Various customers suit just alive, original students. Very, good agents could drive once local, other troops. Below automatic oc	Books	science	34.76	7254.37	2.295244
+AAAAAAAAOKJBAAAA	Only rapid powers used to translate voluntary, angry degrees. As new backs would not know subsequently other tasks. Tight capital teams used to go perhaps essential, pos	Books	science	4.12	1493.25	0.472456
+AAAAAAAAONOAAAAA	Issues should quote worth a children. All social years stand men. Problems consider to a errors. Old groups cost permanently; pink, normal goods consider. Particularly oth	Books	science	6.23	13046.45	4.127827
+AAAAAAAAONPCAAAA	Economic roles should treat. Tall, soft rocks would assess together. Unique lectures would not 	Books	science	0.13	1744.21	0.551858
+AAAAAAAAOOBCAAAA	Formerly huge doubts raise alone periods. Soon appropriate winners avoid quite. Concerns arouse even old, christian groups. Less	Books	science	4.05	1392.02	0.440427
+AAAAAAAAPFACAAAA	Twice part-time songs will end certainly free charges. Schools would make particularly terms; more fresh services change too. Books may secure in order artists; students should look right tired at	Books	science	5.32	8424.73	2.665540
+AAAAAAAAAAGCAAAA	Longer other prices give here old examples. Much silent police might go including a perceptions. Early, new programmes promote too for a laws. Actors should not speak as relationships. Children cou	Books	self-help	6.28	8151.64	3.115187
+AAAAAAAAAGGBAAAA	Totally individual patients examine. New, appropriate things lik	Books	self-help	2.49	11352.14	4.338273
+AAAAAAAAAIMCAAAA	Planned, principal months could play excellent, immediate ideas. Little, hostile services will not react slowly by a features. R	Books	self-help	6.76	2320.04	0.886614
+AAAAAAAABJAAAAAA	Members begin together industrial, re	Books	self-help	59.77	5535.05	2.115245
+AAAAAAAACCFEAAAA	Lightly right	Books	self-help	7.86	4806.98	1.837010
+AAAAAAAACCPBAAAA	Much correct benefits might allow in the teachers. Official, external states can pur	Books	self-help	9.06	951.12	0.363474
+AAAAAAAACHODAAAA	Successful jobs 	Books	self-help	9.97	7320.40	2.797525
+AAAAAAAACIKCAAAA	Refugees rise then expert, orange boys. Young 	Books	self-help	5.17	5423.53	2.072627
+AAAAAAAACKIAAAAA	Also important gardens reflect above samples. Geographical protests date quite; brothers used to go pretty by a ma	Books	self-help	0.99	1601.26	0.611929
+AAAAAAAACLCBAAAA	Old inches may not become just. T	Books	self-help	3.53	2412.06	0.921780
+AAAAAAAADJHDAAAA	Har	Books	self-help	0.70	26516.21	10.133294
+AAAAAAAAEDDBAAAA	Chemicals circumvent only other police. Leading, strong groups make respectively gently great events. Immediat	Books	self-help	1.97	1633.85	0.624383
+AAAAAAAAEEIAAAAA	Democratic, american days damage still employers. Able banks could suggest full-time elements; daughters care minister	Books	self-help	2.04	11253.33	4.300513
+AAAAAAAAEMGAAAAA	Decent times will exist increasingly. Hospitals stand medical tears; families cover years. Foreign firms would	Books	self-help	27.81	8404.59	3.211853
+AAAAAAAAEONBAAAA	Either sudden centuries will not grant even historica	Books	self-help	4.55	3517.78	1.344336
+AAAAAAAAEPCBAAAA	Patient services will find also developing, social developers. Othe	Books	self-help	0.55	6777.46	2.590038
+AAAAAAAAEPNDAAAA	Actual incidents improve never terrible, gentle factors. Impatie	Books	self-help	2.63	3057.90	1.168590
+AAAAAAAAFAIDAAAA	Ready, sound players may not handle together with a	Books	self-help	1.75	4766.37	1.821490
+AAAAAAAAFGCAAAAA	At last involved stages look sharply allies. Ini	Books	self-help	1.89	15499.32	5.923138
+AAAAAAAAGEHCAAAA	Somehow new conditions start more particularly sexual words; most british men may mask very constant, discipli	Books	self-help	2.01	5956.08	2.276143
+AAAAAAAAHKOAAAAA	Physically natural times used to improve models. Significantly close years ought to build ahead linguistic habi	Books	self-help	0.27	3915.38	1.496280
+AAAAAAAAIACBAAAA	Deaths provide corresponding expenses. Days must publish. Mental, private ma	Books	self-help	1.77	5453.88	2.084225
+AAAAAAAAIAIAAAAA	Aware, public materials can supply for a firms. Delicious sets should move hence in a kids. Nuclear, able sessions may 	Books	self-help	59.67	2282.96	0.872443
+AAAAAAAAICMBAAAA	Neatly hard theories turn by the females. Only fresh facilities should feed nicely. Simi	Books	self-help	74.30	12154.56	4.644922
+AAAAAAAAIMDDAAAA	Mad, positive circumstances find keen teams. Years account to a efforts. Upper maps would govern additio	Books	self-help	3.75	1750.60	0.669000
+AAAAAAAAIMOBAAAA	Easily dry communities meet much harsh tears. Heavy minutes damage members. Industrial securiti	Books	self-help	6.81	7851.96	3.000663
+AAAAAAAAIOJBAAAA	Good, closed languages include b	Books	self-help	6.42	6489.64	2.480046
+AAAAAAAAJHAAAAAA	Alre	Books	self-help	38.79	1662.56	0.635355
+AAAAAAAAKGEAAAAA	There possible efforts might bring yet brief, kind days. Oddly white dangers could like maximum things. Hours might 	Books	self-help	9.23	7579.90	2.896694
+AAAAAAAALCFEAAAA	Concerned inhabitants study additionally modern miles. Sanctions miss interesting, other records; possible, great police lead on a eyes. Years kill howev	Books	self-help	0.70	2328.38	0.889801
+AAAAAAAAMAKDAAAA	Then available arms should generate by a mac	Books	self-help	5.54	662.06	0.253009
+AAAAAAAAMBOBAAAA	Details could argue; high sales should not 	Books	self-help	3.55	1876.62	0.717159
+AAAAAAAAMFOBAAAA	Reliable, free miles may speak dates. Managers explain else. Alone short police raise up to periods. Books can invest serious months. Thinking, followi	Books	self-help	6.59	1671.12	0.638626
+AAAAAAAAMGHBAAAA	Total, bad lines shall not bring in a weeks; healthy, pub	Books	self-help	9.14	18821.34	7.192663
+AAAAAAAAMPBAAAAA	Able, strong pictures understand especially. Similar years feed sometimes close, bri	Books	self-help	2.94	700.56	0.267722
+AAAAAAAAMPKBAAAA	Countries may tell major, dangerous rules. French offers make here at a terms. Less new doctors go patients. Level countries may not examine also large teachers; once scientific men coul	Books	self-help	8.61	1824.96	0.697417
+AAAAAAAANANCAAAA	Also little lines see upo	Books	self-help	5.67	6036.41	2.306842
+AAAAAAAANBEBAAAA	Social, mi	Books	self-help	2.25	2221.27	0.848868
+AAAAAAAANLPBAAAA	Western attitudes play more general, blue trains; current women watch still expert ways; very royal amounts cannot get so capi	Books	self-help	9.20	4206.70	1.607610
+AAAAAAAANNNBAAAA	Hills stimulate together heroes. Fundamental, following relations join particularly times. Political acts might notice. Concer	Books	self-help	7.16	16435.64	6.280957
+AAAAAAAANPJAAAAA	International, important addresses earn now associations. Well vast developments encourage all in a cases. Social arms lose things. Strong shoulders will earn s	Books	self-help	3.28	4656.50	1.779503
+AAAAAAAAOGEBAAAA	Free businessmen cause too basic, nice ideas. Great paintings used to advise now clothes; feelings shall occur just positive, assistant others. L	Books	self-help	5.85	6257.72	2.391417
+AAAAAAAAOIDBAAAA	Local findings should give local quarters. Perfect, other museums run clearly famous images. Courses believe soft	Books	self-help	1.77	150.48	0.057506
+AAAAAAAAOPADAAAA	Right futures announce to a decisions; immense, structural shoulders make italian, gold conditions. Activities roam mo	Books	self-help	2.80	4833.26	1.847053
+AAAAAAAAPFGCAAAA	Now total stations prefer anywhere more imperial times. Particular, international years carry as to a criteria. Qualifications determine with a others. Villages shall not go directly versio	Books	self-help	2.43	1993.64	0.761878
+AAAAAAAAPGNAAAAA	Partly available qualificat	Books	self-help	0.96	598.92	0.228880
+AAAAAAAAAEJBAAAA	European deals should suppress then full boots; then dead prayers must emphasize just; children will feel high satisfactory troops. Elections overcome as well busy years. 	Books	sports	79.77	859.18	0.277542
+AAAAAAAAAFMCAAAA	Initial, neat initiatives cannot adapt in a views. Permanent patients control then more familiar kids. Current, rich matters will use. Too able systems define pages	Books	sports	82.29	3130.11	1.011125
+AAAAAAAAAGAEAAAA	Other, pink characteristics ought to use never national places. Big miles talk with a unions. Thus particu	Books	sports	3.67	2032.27	0.656488
+AAAAAAAAAGCAAAAA	Old heroes ought to seek wildly glorious cultures. Prepared events might support inside. Factors should argue suitable cat	Books	sports	7.52	4850.28	1.566795
+AAAAAAAAAGNBAAAA	Institutions will get; values would go eventually worried chapters. Opposite at	Books	sports	75.91	1515.37	0.489512
+AAAAAAAAAJBDAAAA	Industrial women would make once. Gastric, wrong rumours used 	Books	sports	2.41	5059.40	1.634348
+AAAAAAAAALCDAAAA	Future leaders shall take too top, clear steps. Types vote national societies. Tonight red authors save usually on a quantities. B	Books	sports	0.41	5144.72	1.661909
+AAAAAAAABLGBAAAA	Simple, ec	Books	sports	7.35	3308.52	1.068757
+AAAAAAAACGHBAAAA	Other foods w	Books	sports	1.39	4385.79	1.416750
+AAAAAAAACGIAAAAA	Fresh, poor lives may work strong, sm	Books	sports	3.92	5056.44	1.633391
+AAAAAAAACJDCAAAA	Regulatory managers may use at a indians. Poems can begin new, back conditions. Soon proper committees used to prosecute highly there old eyes. Nearly new seats would not address from no days. Importa	Books	sports	1.84	7094.52	2.291756
+AAAAAAAACMGCAAAA	Ho	Books	sports	3.04	667.70	0.215688
+AAAAAAAADAHDAAAA	However irish police could marry naked feet. Agricultural, clinical foundations can ensure friendly readers. Authorit	Books	sports	4.46	6272.85	2.026331
+AAAAAAAAECGEAAAA	Otherwise beautiful courts might say so more wide flames. Particular doors might find even legitimate times; more white times discourage approx	Books	sports	4.24	7294.72	2.356427
+AAAAAAAAEKKBAAAA	Only single	Books	sports	1.98	2633.56	0.850724
+AAAAAAAAGAFCAAAA	Meanwhile certai	Books	sports	6.87	15540.41	5.020049
+AAAAAAAAGFBEAAAA	Specifically honest pp. would ensure wide for a miles. Different families put then western, certain children. Only exciting commitments say f	Books	sports	0.51	3380.07	1.091870
+AAAAAAAAGGKBAAAA	Therefore safe tec	Books	sports	5.97	2224.98	0.718739
+AAAAAAAAGHECAAAA	Changes set even on a subsidies. Exactly severe soldiers must not prevent now then free h	Books	sports	7.85	938.84	0.303275
+AAAAAAAAGKBDAAAA	Buyers should not review therefore important homes; super, beneficial statements	Books	sports	2.97	1162.54	0.375537
+AAAAAAAAGMABAAAA	Then possible devices can conclude. Important drugs should stop much; ot	Books	sports	1.09	25187.18	8.136264
+AAAAAAAAHBACAAAA	Effects withstand companies. Rules may not return technical signs. White intervals talk actually grey sons. Workers license most. At least great clothes see much relatively chea	Books	sports	6.98	3263.92	1.054350
+AAAAAAAAHNFDAAAA	Surely elderly gains send further friends. Real, uncertain materials use hard	Books	sports	8.64	8933.54	2.885819
+AAAAAAAAICCEAAAA	Most present groups will matter already about a players; happy, e	Books	sports	4.26	822.63	0.265735
+AAAAAAAAIDJDAAAA	Much angry clothes need practically muscles. As appropriate author	Books	sports	7.99	5143.90	1.661644
+AAAAAAAAIEKDAAAA	Main hours spe	Books	sports	9.76	8641.62	2.791519
+AAAAAAAAJICDAAAA	Principles see sides. Girls would not establish more worthwhile, swiss risks. Then top courts follow words. Judges believe more increasing, large patterns. 	Books	sports	1.75	1713.67	0.553570
+AAAAAAAAJIMCAAAA	Furthermore royal developments may not unload later huge c	Books	sports	0.84	7359.03	2.377202
+AAAAAAAAJPAEAAAA	Natural times shall not anticipate black, possible hands	Books	sports	4.16	18787.45	6.068947
+AAAAAAAAKACBAAAA	Light acts prepare later copies; technical, just departments would see almost possibl	Books	sports	8.76	5054.92	1.632900
+AAAAAAAAKHFBAAAA	Tenants cope against the guns. Ever particular fears explain numerous players. Agencies give early economic securities. National probl	Books	sports	3.78	706.00	0.228060
+AAAAAAAAKJLCAAAA	Afraid, old meals will get chronic, strong applicants. Arms could look with a needs. Hence wor	Books	sports	7.02	5142.16	1.661082
+AAAAAAAAKNOAAAAA	Golden foundations buy elsewhere areas. Numerous prices achieve then hard, difficult users. Main dreams ought to plant fortunately fore	Books	sports	13.58	7366.81	2.379715
+AAAAAAAALBGEAAAA	Services put usual, unemployed persons. Desperate, normal functions think at all bl	Books	sports	39.93	5386.03	1.739860
+AAAAAAAALDFDAAAA	Internal years may not pr	Books	sports	3.46	10719.00	3.462579
+AAAAAAAALHKDAAAA	Costs send more schools. Causes start later. Both human 	Books	sports	5.13	3902.29	1.260564
+AAAAAAAALLPAAAAA	Rapid, physical lips must think other, exclusive parts. Enough elegant results build. Just right wishes ought to join go	Books	sports	7.79	8404.89	2.715048
+AAAAAAAAMBHDAAAA	Small points examine rightly situations. Curre	Books	sports	1.04	11376.18	3.674870
+AAAAAAAAMCLAAAAA	Considerable, real colleagues change. Seriously american letters know high differently systematic lists. Promptly major studies worry. Emotional features look. Soon chinese pages arr	Books	sports	6.48	11783.46	3.806434
+AAAAAAAAMNJBAAAA	Universities obey moments. Extraordinary, actual scots ought to give english materials; yet private abilities need so new developments. Radically	Books	sports	3.66	11116.47	3.590975
+AAAAAAAAMOKCAAAA	Fa	Books	sports	7.37	232.54	0.075117
+AAAAAAAAOCHCAAAA	Agencies shall not consider false in a others. Obviously interesting authorities come anyway men. Small, 	Books	sports	6.57	8460.16	2.732902
+AAAAAAAAOFHCAAAA	Mainly isolated ends justify from a shots; occupat	Books	sports	2.06	7766.57	2.508850
+AAAAAAAAOIBDAAAA	Presidential efforts could look. Low workers mean easy	Books	sports	3.78	8672.48	2.801488
+AAAAAAAAOJLDAAAA	Forms take very electoral witnesses. Then effective examples will not win other, continuous workers. Very small books may retain certai	Books	sports	8.27	3242.39	1.047395
+AAAAAAAAOOIBAAAA	Final, final children know on a securities. Succe	Books	sports	1.73	11889.27	3.840614
+AAAAAAAAPBPAAAAA	Wrong countries see countries; lengths will see possible sc	Books	sports	3.38	262.80	0.084892
+AAAAAAAAPCIDAAAA	Goods mention from a hours; red, sweet procedures say	Books	sports	1.70	4448.61	1.437043
+AAAAAAAAPGPBAAAA	Women could head then even old tenants. Almost causal points can watch differently mental, previous cases. 	Books	sports	2.25	10975.77	3.545524
+AAAAAAAAPLFDAAAA	Supporters may not ge	Books	sports	0.62	10252.85	3.311998
+AAAAAAAAAHDAAAAA	New others keep roughly polite engines. Male questions decide in the papers. Both other users may see today young, past decision	Books	travel	4.02	3432.57	1.461934
+AAAAAAAABFABAAAA	Windows flow just magnetic terms. Branches would possess 	Books	travel	4.33	2154.01	0.917394
+AAAAAAAABGGDAAAA	Right, medieval efforts should trust b	Books	travel	83.15	10505.78	4.474419
+AAAAAAAABPGDAAAA	Extensive assets can adapt now fair things. White, other talks trouble sufficient teachers. Helpful days will not vot	Books	travel	4.62	2212.94	0.942492
+AAAAAAAACDIAAAAA	Handsome, common ministers shall not find 	Books	travel	7.12	4441.63	1.891693
+AAAAAAAACDPAAAAA	Old, immediate months see especially different leaders. Other, pale charges influence even english, middle-class others; pregnant, wrong eyes help by way of the activ	Books	travel	3.61	6892.14	2.935367
+AAAAAAAADDOCAAAA	Girls lead badly reasonable regions. Also cultural levels suffer best liable, big feet. Open voters make in order expectations. False, regional ports may see years. Quite l	Books	travel	2.74	6136.02	2.613335
+AAAAAAAADFBEAAAA	Sharp pools strike e	Books	travel	3.96	1569.92	0.668630
+AAAAAAAADJEAAAAA	Specific, temporary goals take. Ideas might reduce economic authorities. Fundamentally external prayers matter really	Books	travel	84.79	2641.25	1.124910
+AAAAAAAAEFPBAAAA	Particularly internal times could not achieve as yet indeed english phases. Good windows can become technically personal firms. Details need well for a miles. N	Books	travel	1.16	8710.00	3.709595
+AAAAAAAAEGECAAAA	Hot products signal together big, working roads. Now funny universities	Books	travel	2.53	5811.92	2.475300
+AAAAAAAAEKADAAAA	Happily good children maintain now classes. Political, old years see houses; of course new standards may find so sorry sounds; also 	Books	travel	8.48	82.56	0.035162
+AAAAAAAAELFCAAAA	Objective	Books	travel	1.28	545.37	0.232273
+AAAAAAAAELHBAAAA	Eyes could not	Books	travel	4.34	23586.52	10.045516
+AAAAAAAAFBJBAAAA	Home contemporary places work. Growing banks may leave clearly special, beautiful ot	Books	travel	3.70	1812.65	0.772008
+AAAAAAAAGDGCAAAA	Traditional waters may afford there	Books	travel	1.27	12026.10	5.121924
+AAAAAAAAGFHCAAAA	New, hot terms would end probabl	Books	travel	7.81	1935.60	0.824373
+AAAAAAAAGKABAAAA	Never special sentences look small aspects. Eng	Books	travel	4.85	2543.14	1.083125
+AAAAAAAAHEHBAAAA	Payments make imperial sources. Gmt left pensions would not come moreover new public terms; certain teachers may rest finally; certain flowers used to look. Friendly friends must conv	Books	travel	3.86	12351.66	5.260580
+AAAAAAAAICNAAAAA	Capital shoulders live vari	Books	travel	56.18	1724.89	0.734631
+AAAAAAAAIJGDAAAA	Favorite, sure others must receive. Well sexual recommendations stay in the industries. Women will disturb in public again continuing flats; 	Books	travel	4.60	4014.69	1.709859
+AAAAAAAAIJKBAAAA	Cultural months carry. Categories will not ensure already national glasses. Researchers will not move only industries. Rich, rigid texts live by a girls. Proud, front views	Books	travel	5.42	621.85	0.264846
+AAAAAAAAINNBAAAA	Mad, overall patients may not keep then; pounds used to allow freshly foreign, western changes. Critical, fresh consequences should 	Books	travel	2.83	6712.59	2.858896
+AAAAAAAAIPFBAAAA	Yesterday splendid authorities refuse at once late moments. Available lips could result old vehicles. Issues shall see due cases. Other, standard equations would go simultaneously effects; democratic 	Books	travel	1.31	1218.48	0.518951
+AAAAAAAAJKMDAAAA	Designs shall not deal. Ideal, alternative aims say further changes. Often contemporary techniques used t	Books	travel	1.92	11413.42	4.860983
+AAAAAAAAJLCDAAAA	Considerable guidelines recapture; br	Books	travel	3.38	2440.01	1.039202
+AAAAAAAAKHIBAAAA	Fundamental, other studies buy formerly from a services. Psyc	Books	travel	2.63	8951.26	3.812348
+AAAAAAAAKHOBAAAA	Then good students should put only functional figures. Equal years ought to secure. And so on certain legs must not provide similar, current children. New skills	Books	travel	1.52	77.28	0.032913
+AAAAAAAAKPAAAAAA	Effects ought	Books	travel	4.16	5500.91	2.342841
+AAAAAAAALBLCAAAA	Occasions can view so customers. Likely hospitals jo	Books	travel	74.97	9371.91	3.991503
+AAAAAAAALCAAAAAA	Thus present women should hear for a shares; leaders must come early; immediate men will want exactly young groups. Insects may ask narrow variations. New leaders should deal 	Books	travel	6.08	8925.21	3.801253
+AAAAAAAALCLBAAAA	Quickly vital descriptions drink almost gardens. Green hands used to assist with a projects. Exactly crazy statements should try concerned results. Courses open just in a causes. Differ	Books	travel	6.13	26.88	0.011448
+AAAAAAAALFGAAAAA	Bc able groups shall vote 	Books	travel	3.95	177.00	0.075384
+AAAAAAAALLOBAAAA	Obvious problems may find 	Books	travel	4.50	215.85	0.091930
+AAAAAAAAMEAAAAAA	Around single relations clear heavily over a controls. Arms could leave signs. T	Books	travel	3.84	307.82	0.131100
+AAAAAAAAMEBCAAAA	Weeks might not find original elections. Active hands might enjoy occasional, young proposals. Slight, necessary studies prevent frequently industrial, private reasons. Inherently single effects o	Books	travel	0.62	4650.98	1.980855
+AAAAAAAAMGBAAAAA	Home certain acts adopt then new women. Statements reinforce thus mainly new rates. Real, other men must find. Late new children should not achieve years. Extr	Books	travel	8.58	1743.27	0.742459
+AAAAAAAAMIKCAAAA	Commonly economic visitors promote. Aside other voices may make. Outer animals shall cut. Other, solid patients confirm hospitals. Indeed foreign companies work in order. Joint y	Books	travel	2.44	943.02	0.401632
+AAAAAAAAMKMDAAAA	Children aid ever pictures. Abstract, ra	Books	travel	0.28	12721.61	5.418142
+AAAAAAAAMNLBAAAA	Specific, medium strings co	Books	travel	4.80	6283.68	2.676223
+AAAAAAAAMODAAAAA	Critically green vegetables continue just men. White cases must take by a attitudes. Good, true costs explain over implicit shares. Commercial, following cells feel available crimes. Ini	Books	travel	0.23	6733.48	2.867794
+AAAAAAAANGFEAAAA	Financial terms show again; more full pictures shall meet there. Regional, 	Books	travel	3.80	6457.44	2.750228
+AAAAAAAANHLAAAAA	Warm areas shall agree automatically mostly original pieces. Past domestic approaches post	Books	travel	3.72	10.35	0.004408
+AAAAAAAAODCEAAAA	Similar, only groups meet long. Poems shall like	Books	travel	9.98	2592.00	1.103934
+AAAAAAAAOMEBAAAA	Students cannot teach only shares. Common, logical results might not 	Books	travel	0.32	9079.44	3.866940
+AAAAAAAAONGBAAAA	Loans realise requirements. Full contracts will replace even sorry, ideal explanations. Crazy, major researc	Books	travel	9.46	38.67	0.016469
+AAAAAAAAOOPBAAAA	Trees suggest in the notes. Estimates think rather common, other hands; smooth me	Books	travel	6.42	5431.32	2.313203
+AAAAAAAAPCCAAAAA	Tall relationships may not determine upon a relations. Again popular children would base cold, old boundaries;	Books	travel	3.30	6088.69	2.593177
+AAAAAAAAPMKAAAAA	Trying types could not follow oddly autonomous walls. Gmt different others will build maybe able parameters. Private, main dealers shall not watch unfortunately also different novel	Books	travel	2.78	840.48	0.357961
+AAAAAAAAPNMAAAAA	Further excessive reactions will provide quickly types. Lucky colleagues seem for a 	Books	travel	8.47	90.24	0.038433
+AAAAAAAAHLPBAAAA		Home		\N	9647.64	78.827608
+AAAAAAAAAAGBAAAA	Biological moments mean cold suggestions. True stages give better long-term, busy areas. Ties ask now. Bad figures kiss. Hard, legal sales act only signals. Lives may not pretend. Leading, posi	Home	accent	1.56	6762.74	2.186561
+AAAAAAAAABDAAAAA	Goods mean so correct, legal systems. Just alternative banks tend then more concrete edges. Close, united chapters get only rus	Home	accent	1.06	370.50	0.119791
+AAAAAAAAACEEAAAA	Thus great foreigners would supervise therefore also likely developments. Crucial years could break this large	Home	accent	1.81	865.00	0.279675
+AAAAAAAAADNBAAAA	Net, regional lawyers would construct well different, different tools. Soon free meals distinguish pretty, sweet services. Horizontal contributions help. Again big supplies replace conc	Home	accent	3.03	2709.95	0.876193
+AAAAAAAAAKIBAAAA	Long independent elections used to work all right new, main elements; directly effective hospitals shall produce payments. Only controversia	Home	accent	2.53	1498.37	0.484460
+AAAAAAAAAKLCAAAA	Regulations go almost. Complex operations may stay at present countries. Widely special modules can rest also in ne	Home	accent	7.23	1386.95	0.448435
+AAAAAAAAAONBAAAA	Over identical centuries might make then native conflicts; teams co-operate reluctantly should	Home	accent	32.58	4.49	0.001451
+AAAAAAAAAPKDAAAA	Following friends exceed bodies; small stages look on a lines. Comfortable books send in a numb	Home	accent	59.78	19496.04	6.303551
+AAAAAAAABBGCAAAA	About existing results ensure as foreign so	Home	accent	15.86	12892.82	4.168567
+AAAAAAAABCICAAAA	Below specific feelings take close cases. British systems might get again different guests; forces remember socialist, visual minutes; continued characters need alive copies; fresh, broke	Home	accent	4.41	1004.40	0.324747
+AAAAAAAABGFEAAAA	Cultural, excellent years shall not ame	Home	accent	0.68	1014.83	0.328119
+AAAAAAAACFHAAAAA	Asleep, regular month	Home	accent	0.91	899.15	0.290717
+AAAAAAAADANAAAAA	Fixed, able books write extraordinarily figures. Walls would not guarantee	Home	accent	1.94	15956.72	5.159202
+AAAAAAAADGBDAAAA	Political months shall stay in a cells. Only certain states get particularly eastern, crazy days. Again good years will understand from time to time developments. Still othe	Home	accent	0.41	1483.06	0.479509
+AAAAAAAADOBBAAAA	Tight definite videos shall not go in a ma	Home	accent	2.50	214.76	0.069437
+AAAAAAAADOOAAAAA	Imperial, terrible windows commit exactly new premises; now various days can distract often. Poor rates produce good foods. Available, lab	Home	accent	2.33	8756.75	2.831273
+AAAAAAAAEAGAAAAA	Dynamic, available memories may go abstract years; presumably high members stay faster industries. Offices give thus. Carers ought to pay well fields. Obvious	Home	accent	9.45	5997.26	1.939062
+AAAAAAAAEKODAAAA	Directly modest processes could think full	Home	accent	4.05	2201.64	0.711844
+AAAAAAAAELDEAAAA	Shortly current classes enter automatically national ministers. Warm, wrong seats would operate only. Readily major days shall develop. Anyway neat specimens may keep then adults. Functions might not	Home	accent	7.84	3484.07	1.126485
+AAAAAAAAENACAAAA	Reliable firms fly. More new bases understand here on a powers. Measurements ought to know quite findings. Early southern views must consider other children. Good, growing needs stic	Home	accent	0.15	3032.30	0.980417
+AAAAAAAAEPECAAAA	Sentences loose; available, similar yards will not re	Home	accent	7.56	6489.60	2.098248
+AAAAAAAAFMFDAAAA	Arbitrary police dem	Home	accent	7.88	471.11	0.152321
+AAAAAAAAGDGEAAAA	Top libraries make well for the problems. Vague papers install immensely from a talks. Often aware children should allow more in a problems. 	Home	accent	9.89	9644.75	3.118386
+AAAAAAAAGEBDAAAA	Away new residents could not mean big poli	Home	accent	2.77	2918.72	0.943694
+AAAAAAAAGEOBAAAA	Too usual techniques would not know so relevant techniques. However other sons get more corporate examples. Always large tanks lay for example. Still short processes sho	Home	accent	0.82	17.98	0.005813
+AAAAAAAAGHBAAAAA	Doubts could not think. Acres shall live tired ways. Obvious interests pay seldom severe images. Quick officials should no	Home	accent	8.82	4275.50	1.382374
+AAAAAAAAGPFAAAAA	Small, bare solicitors may take for 	Home	accent	3.20	9316.15	3.012141
+AAAAAAAAIEJBAAAA	Securities might lie only national hands. Spatial businesses enquire women. Vital records stop ill; below correct children 	Home	accent	8.26	2542.89	0.822179
+AAAAAAAAIGKCAAAA	Local, total restrictions must claim only apparently different times. Inches cannot thank just empty minutes. Able, bare generation	Home	accent	9.23	3098.14	1.001705
+AAAAAAAAIHOAAAAA	Quickly clear attitudes vote purely atomic senses; poor, concerned patterns achieve almost bright, european skills. Foreign, socialist individuals should not permit very just 	Home	accent	8.94	12277.93	3.969758
+AAAAAAAAKAPDAAAA	Either male men may know on a men. Federal, young forms distract again. Fairly vast days come yet. Visits ought to eat then european, suitable	Home	accent	2.69	19510.26	6.308149
+AAAAAAAAKKBBAAAA	Days ought to fall definitely hard principles. Social limits may demonstrate here. Faintly electoral documents secure careful, ancient women	Home	accent	3.11	1863.09	0.602383
+AAAAAAAAKKMDAAAA	Co	Home	accent	2.71	26367.53	8.525274
+AAAAAAAAKOABAAAA	Months go indian books. National, royal hands must care huge losses; attitudes support immediately great, developing cells. Complex times will sit certainly visitors. Afraid seeds attribute over gl	Home	accent	4.39	4188.11	1.354119
+AAAAAAAAMAEEAAAA	Now mad clouds could not ask closely. Acute, new hundreds should recycle here; angry, simple affairs could dis	Home	accent	7.47	8504.23	2.749627
+AAAAAAAAMFPCAAAA	Speakers could catch. Other, different branches will cut specifically 	Home	accent	0.32	1009.22	0.326305
+AAAAAAAAMKAEAAAA	Major, major vegetables play recently true cells. Numerous, previous schools cannot assess about only ultimate skills. As alon	Home	accent	5.27	17916.33	5.792792
+AAAAAAAAMMBEAAAA	Poor waves might encompass slowly about a members. Famous concerns could not provoke always neighbouring, electoral schemes. Events may not investigate d	Home	accent	7.07	19767.45	6.391305
+AAAAAAAAMOODAAAA	Full, following books merge alive, urban farms. Boys take certainly eventually future trees	Home	accent	4.69	6775.86	2.190803
+AAAAAAAANKODAAAA	Only certain creatures cater about independent issues. Over present lines might work by the personnel. Visitors scrap. Old, e	Home	accent	4.58	5751.72	1.859673
+AAAAAAAANNPCAAAA	Early chief models conclude typically central, suitable rates. Long, unlikely cities tell journals. Chapters shall study later natural, intense chiefs. Co	Home	accent	2.12	4028.93	1.302652
+AAAAAAAANOKDAAAA	Too contemporary ideas measure now as a teeth. Only modern problems concentrate local animals. Whole regulations shall put as texts; also magnetic homes could not explain also types. Car	Home	accent	6.02	7989.07	2.583063
+AAAAAAAANPPAAAAA	Tears	Home	accent	2.49	3654.39	1.181554
+AAAAAAAAOCKAAAAA	Annual theories will not sleep particular colleagues. Inherent trees put partners. Other layers place there backs. Effects would know often for an guns. Certain, bitter	Home	accent	4.28	6407.51	2.071706
+AAAAAAAAOCMDAAAA	Issues will give. Even executive differences discover somewhere high, recent days. Doors may not save then members. 	Home	accent	3.45	33.60	0.010863
+AAAAAAAAODACAAAA	However wild beliefs	Home	accent	3.91	1519.68	0.491350
+AAAAAAAAODGCAAAA	Bizarre, national goods pass in the police. Isolated colours use always prices. Also creative patients say even in the numbers. Proposed brothers find services. Crazy, whole aspects woul	Home	accent	54.41	1246.75	0.403105
+AAAAAAAAOJECAAAA	British regulations will block at all improvements; visual, managerial assumptions should examine in a fears. Effects become sensitive firms	Home	accent	9.88	6406.20	2.071282
+AAAAAAAAOLDAAAAA	Sales know in a meanings. International, professional figures may get in a statement	Home	accent	0.48	3425.24	1.107464
+AAAAAAAAOOBDAAAA	Green, low houses must not explain in a rules; other miles reduce beautiful, successfu	Home	accent	47.64	2569.26	0.830705
+AAAAAAAAOOKDAAAA	Real, human elections find auditors. Black employees would comply. Bad eyes sell recent lines. Obvious issues describe	Home	accent	7.40	2663.84	0.861285
+AAAAAAAAPAKAAAAA	Unique developments should guess once at the assumptions. Letters might not provide especially 	Home	accent	4.38	7861.02	2.541662
+AAAAAAAAPBMAAAAA	Yea	Home	accent	1.36	8742.72	2.826737
+AAAAAAAAACFDAAAA	British, familiar cups sho	Home	bathroom	97.01	7038.84	2.387309
+AAAAAAAAADEAAAAA	Days stick fairly big, integrated women. Much other fortunes ought to work so to the losses. Subsidies take 	Home	bathroom	2.57	1134.78	0.384874
+AAAAAAAAAGODAAAA	Following rows might not ring real differences. Afraid children must ensure. Generous, large sheets tell there before 	Home	bathroom	0.54	12924.86	4.383626
+AAAAAAAAAMFCAAAA	Permanent, horizontal workers tell bad in a concepts. Indeed familiar parents should make under a researchers. Trees ought to get surely now sound soldiers. Negotiations will talk 	Home	bathroom	4.19	4566.20	1.548683
+AAAAAAAAAOLDAAAA	Certain individuals shall race safely cruelly necessary terms; young, high guns take to a hands. Vali	Home	bathroom	2.84	5911.80	2.005060
+AAAAAAAACAPDAAAA	So other firms come shortly; domestic liabilities used to absorb years. Awful days emp	Home	bathroom	3.62	3184.35	1.080011
+AAAAAAAACBNDAAAA	Much legal restaurants explain once provincial magistrates. Possible hours betray enough to a computers. Stable, massive services comply blindly full, local women. Scottish firms 	Home	bathroom	2.79	378.96	0.128528
+AAAAAAAACDOBAAAA	British, possible solicitors fall still in a indians. Perfect names should not cost still. Redundant, mild opponents give just military specialists. Here great 	Home	bathroom	0.10	16765.16	5.686111
+AAAAAAAACEFDAAAA	Ago total goods see similar organizations. Explicitly old regions adapt together. Here p	Home	bathroom	8.40	1624.14	0.550847
+AAAAAAAACJJCAAAA	Men would not welcome sure very rem	Home	bathroom	60.55	2769.05	0.939157
+AAAAAAAACLICAAAA	American, other activities lower often rational services; collections exist. Competent reasons ough	Home	bathroom	2.42	5276.67	1.789647
+AAAAAAAAEGCCAAAA	Still corporate departments make pressures. Workers shall not last much out of a walls. Successful ideas snap. Public candidates shall tell. Human, entire prob	Home	bathroom	4.43	4350.04	1.475369
+AAAAAAAAEIACAAAA	Other, slim days try 	Home	bathroom	6.22	8619.01	2.923243
+AAAAAAAAEIMCAAAA	Particularly new cases join. Military, christian eyes lead widely suspicious players; finally special beings shall date at a trees; narrow aspects 	Home	bathroom	9.61	2207.52	0.748707
+AAAAAAAAFABEAAAA	Houses design	Home	bathroom	4.80	6543.35	2.219258
+AAAAAAAAFDEEAAAA	Feelings sleep at a details. Also competitive devices shall object early in every sales. Almost other ways offer once free tools. Significant, german sheets keep hardl	Home	bathroom	7.15	8001.07	2.713661
+AAAAAAAAFGFDAAAA	Ec	Home	bathroom	4.86	4935.12	1.673807
+AAAAAAAAFGGCAAAA	As territorial fingers develop then humans. Industries put then extra, anxious pairs. Letters give of course voluntary, central times. Committees join thus. Areas produce so long gold eyes. Taxes c	Home	bathroom	36.14	16986.96	5.761337
+AAAAAAAAFHDBAAAA	Then christian rules should take here new choices; hard, pale changes avoid sections. Now main metres can need necessarily in spite of a stories; late colours keep now into the charts. Seque	Home	bathroom	3.59	12017.36	4.075836
+AAAAAAAAGFFDAAAA	Horizontal nerves will not study just. Issues shall not imagine workshops. Relevant industries provide british, fresh others. Commercial, new houses give with the 	Home	bathroom	3.34	2802.39	0.950465
+AAAAAAAAGHLCAAAA	Clients must not feel also ever private cars; names think. Concerned meals used to go still chapters; remarkable, minimal terms get at first. Obvious articles must 	Home	bathroom	0.71	2655.54	0.900659
+AAAAAAAAGIMCAAAA	Traditional times buy on a operations. Clear, ne	Home	bathroom	9.63	3165.58	1.073645
+AAAAAAAAGLFBAAAA	Claims choose rarely too armed differences. Personal, wise goods build ill n	Home	bathroom	1.06	5867.34	1.989981
+AAAAAAAAGPMCAAAA	Almost central words will take. International pupils see manufacturing boxes. Possible positions might hold magistrates; duties exert strong fields. Neverthele	Home	bathroom	0.90	4567.64	1.549171
+AAAAAAAAHBFAAAAA	Dollars prove everywhere o	Home	bathroom	7.89	4037.25	1.369283
+AAAAAAAAHKBEAAAA	Significant, fa	Home	bathroom	4.86	2662.40	0.902985
+AAAAAAAAIBMCAAAA	Literally experienced women le	Home	bathroom	3.83	3405.70	1.155085
+AAAAAAAAIHDCAAAA	Adverse, early members build only small numbers. Head feet must sink profitable books. Friends kick thus in a jobs. Little, complicated departments 	Home	bathroom	0.58	4116.92	1.396304
+AAAAAAAAIHEDAAAA	Northern, possible courses would admit. National arms conduct times. Attractive, operational comparisons worry studies. At leas	Home	bathroom	6.98	2665.61	0.904074
+AAAAAAAAIHIAAAAA	Economic things determine. However overseas teachers listen clearly by a types; signs telephone probably. Environmental ty	Home	bathroom	16.26	9591.84	3.253191
+AAAAAAAAIJFBAAAA	Once more parliamentary sizes separate fairly executive movements. Positive years would get there open units; left governments used to show new police. 	Home	bathroom	2.74	28245.68	9.579872
+AAAAAAAAJBPDAAAA	Supplies accept; below inc spirits know at least correct, chief policies; grants used to stay by a words; basic, public differences use centrally then strange policies; adeq	Home	bathroom	4.13	10306.89	3.495709
+AAAAAAAAJMDEAAAA	Home warm authorities might recognise overseas. Easy, adequate processes could address about well local styles. Ministers will take. Obviou	Home	bathroom	8.75	2112.25	0.716395
+AAAAAAAAKDGBAAAA	Possibly environmental links must hurt faster bright, cultural lovers. Rooms could	Home	bathroom	2.09	10205.43	3.461297
+AAAAAAAAKDKAAAAA	Free, different divisions ought to see more whole terms. So substantial schools will measure others. British classes consider though dishes. Pupils mount. Ugly, economic schemes cannot erect 	Home	bathroom	4.43	10794.90	3.661223
+AAAAAAAAKFKDAAAA	Free, expensive rivers can mind. Jobs change otherwise charming issues. Children cannot look generally careers; reforms take into a blacks. Aware, attractive grounds will add as yet econom	Home	bathroom	30.34	8803.45	2.985799
+AAAAAAAAMFADAAAA	New, poor friends should not remember lines. Generally present techniques will not damage then good problems. Names remove as true questions. Outstanding subjects would reflect tonight	Home	bathroom	60.22	11422.92	3.874224
+AAAAAAAAMMNBAAAA	Years	Home	bathroom	0.97	10497.66	3.560411
+AAAAAAAAMPHAAAAA	Payments appear forces. New proceedings pursue at least financial, current angles. Remarkable, main documents comply unusual, solid aspects. Wrong, just films ask different, l	Home	bathroom	9.49	2156.36	0.731356
+AAAAAAAAMPJBAAAA	Present, dangerous courts might send 	Home	bathroom	1.93	158.10	0.053621
+AAAAAAAANEODAAAA	Single, successive birds involve really in a poets. Various, public colours build over. Level, grey troops relax average, sensible clergy. Proud authorities read prayers. Stores may shoo	Home	bathroom	6.65	5152.04	1.747378
+AAAAAAAAOBHDAAAA	Large shares die rather. Members produce aside plans; muscles should not say earnings. Mammals know there somewhat major situations. Ever private countries should try gates. Workers impro	Home	bathroom	3.09	6633.12	2.249704
+AAAAAAAAOJGCAAAA	Cases produce always developments. Genuine facilities would give away weeks. Rows can concentrate maximum hills. Romant	Home	bathroom	4.31	4796.88	1.626921
+AAAAAAAAONBDAAAA	Old, national lessons seek more spanish worlds. Nights apply here 	Home	bathroom	9.64	2068.56	0.701577
+AAAAAAAAONJCAAAA	Especially other parts could make over blank choices; subjects constrain only social, new respects. Brown, particular reports m	Home	bathroom	6.82	1031.11	0.349713
+AAAAAAAAOPFEAAAA	Heavy, recent decades think finally. Outstanding, average det	Home	bathroom	3.45	2515.92	0.853305
+AAAAAAAAPOKBAAAA	Chemical, elegant influences should pray certainly with a mo	Home	bathroom	6.10	7169.30	2.431556
+AAAAAAAAAABDAAAA	Good, other flats forget literally physical years. Indeed complete sales shall not	Home	bedding	4.98	287.08	0.083755
+AAAAAAAAACIAAAAA	Original, active users might draw for a associatio	Home	bedding	2.36	13079.50	3.815925
+AAAAAAAAAHNAAAAA	Moreover social skills may go more long responses. Following eve	Home	bedding	7.54	5852.19	1.707368
+AAAAAAAAAMLDAAAA	Yellow, important supplies will not take; more safe months would go here almost disabled hands. Blocks would com	Home	bedding	6.59	4985.94	1.454640
+AAAAAAAAANJBAAAA	New writers understand final restaura	Home	bedding	4.74	716.55	0.209052
+AAAAAAAAAOGAAAAA	Foreign, good things must get eyes. Low, thin members must rest. International looks allow. Senses should not touch. Limited, single backs would not walk opportunities; high	Home	bedding	3.51	9085.72	2.650746
+AAAAAAAABAKCAAAA	Teams waste very back children. Wide, private years might help cells. Heavy,	Home	bedding	0.57	853.76	0.249083
+AAAAAAAACFNDAAAA	Independent premises could not demonstrate then perhaps white users; democratic risks regain good provi	Home	bedding	2.83	1429.78	0.417136
+AAAAAAAACHKDAAAA	Unlikely costs should risk low whole, new officials. Other eyes carry in the students. Main, lovely feelings must not allow	Home	bedding	4.66	13345.14	3.893425
+AAAAAAAACOBCAAAA	Proper effects could not seem much royal others. Loyal transactions will replace legal, identical days. At	Home	bedding	0.91	675.45	0.197061
+AAAAAAAADACCAAAA	Reduced connections will justify at the users. Easy, human girls can stay further dead, various shares. Big, french	Home	bedding	16.50	200.43	0.058475
+AAAAAAAADBFBAAAA	Members shall not notice drastically in a standards. Concerned yea	Home	bedding	3.22	3565.45	1.040215
+AAAAAAAADJMBAAAA	Young categories look grossly so colourfu	Home	bedding	3.36	2588.53	0.755199
+AAAAAAAAEBGDAAAA	Main, due rooms would come fairly likely, relevant cattle; players avoid otherwise eyes. Fans will not ban potentially. Literally religious peasants can endeavou	Home	bedding	1.82	12041.40	3.513061
+AAAAAAAAEHLDAAAA	Obvious, afraid poli	Home	bedding	4.05	2309.36	0.673752
+AAAAAAAAEKDAAAAA	Now short views cannot include. Real, northern interests may build. Fresh	Home	bedding	1.78	31671.89	9.240229
+AAAAAAAAEMLCAAAA	Only familiar shareholders could ensure very military electoral needs. Troubles imagine at fi	Home	bedding	0.84	2210.61	0.644942
+AAAAAAAAEOKDAAAA	Almost subject men could add more huge, current customers. Major colours 	Home	bedding	0.22	4921.66	1.435887
+AAAAAAAAFFCEAAAA	Imports must communicate on a women. Level difficulties c	Home	bedding	3.93	1444.56	0.421448
+AAAAAAAAFIKCAAAA	Masters help in terms of the hours. Still different details used to find always long black savings. Now free shares demonstrate behind. Extended, empty sentences ask ago 	Home	bedding	9.52	7353.86	2.145478
+AAAAAAAAFOFEAAAA	Symbolic cells would generate branches. Relations might find potentially; central, loyal 	Home	bedding	7.39	5503.24	1.605562
 AAAAAAAAGHNAAAAA	Atomic pp. might disappear as. Figures discuss men. Specific, local rivers might replace eyes. Safe cars take final services; old troops	Home	bedding	6.29	\N	\N
-AAAAAAAAGNNCAAAA	Voters learn both young arms. Victims need less however front cases; shapes can cover	Home	bedding	5.46	0.00	0.00
-AAAAAAAAHGDDAAAA	Terms used to comprehend to a things. Really busy competitors stop women. Normally certain libraries remain considerably from a centres. Glad countries cannot try together groups. There powerful	Home	bedding	4.30	6885.82	2.00
-AAAAAAAAHHCAAAAA	Old, cultural workers ought to take both now everyday budgets. Nearer interesting hours could not assure very centuries	Home	bedding	1.65	6096.81	1.77
-AAAAAAAAIJCEAAAA	Patients stand still respective possibilities	Home	bedding	2.66	7777.47	2.26
-AAAAAAAAIOECAAAA	Ag	Home	bedding	8.22	3885.84	1.13
-AAAAAAAAJEECAAAA	Children used to mean contracts. Difficult runs spot here. Aspects ought to take unfortunately prepared women. Groups believe very public patients. Low terms must stop as different, political cou	Home	bedding	4.94	9167.85	2.67
-AAAAAAAAJINBAAAA	That central men know independent authorities. Just new rights can make only such as a companies. Studies can stay a	Home	bedding	9.89	8831.14	2.57
-AAAAAAAAJKPDAAAA	Now recent feelings skip particularly clear	Home	bedding	9.34	3697.23	1.07
-AAAAAAAAJNJAAAAA	Places take rules. For example scientific buildings may not maintain notably developers. Prime, other heads limit marginal places. Good, part-tim	Home	bedding	9.77	11273.10	3.28
-AAAAAAAAJOEEAAAA	Acute seasons thank alternative, early pages. Full variations can enter problems. Central stories shall give complete servants. Common ston	Home	bedding	7.38	850.85	0.24
-AAAAAAAAJPKDAAAA	Recent 	Home	bedding	0.35	256.88	0.07
-AAAAAAAAKCCCAAAA	English, western services may not place less separate, new injuries. Wings might not refine. M	Home	bedding	0.73	10543.56	3.07
-AAAAAAAAKFABAAAA	Significantly simple rules could face especially lively, popular employers. Days catc	Home	bedding	1.96	2465.30	0.71
-AAAAAAAAKGJDAAAA	Contracts explain so possible, basic rooms; problems can think then	Home	bedding	4.07	588.50	0.17
-AAAAAAAAKIDBAAAA	Holidays may attract local days. Low, sympathetic teachers might not provide especially resources. Soviet matt	Home	bedding	2.12	7518.47	2.19
-AAAAAAAAKIIAAAAA	For example new children shall take general jobs. British, proposed government	Home	bedding	5.52	1309.50	0.38
-AAAAAAAALGBEAAAA	Inland memories c	Home	bedding	9.31	21344.75	6.22
-AAAAAAAALMJCAAAA	Beautiful incomes could not spread apart wooden talks. Hopefully short individuals might say stil	Home	bedding	4.48	3857.71	1.12
-AAAAAAAALMODAAAA	Aside smooth secrets would come both. Suddenly big officials can pay too problems; programmes seem. Unable times play. Very indian failures use s	Home	bedding	3.03	10438.54	3.04
-AAAAAAAALPKBAAAA	Inappropriate, chief systems would not help in a offices; dangerous proportions might ins	Home	bedding	3.08	2512.57	0.73
-AAAAAAAALPLDAAAA	Quite annual missiles refute later years; as dead materials include smoothly examples. Major, independent standards could not mean extra, young points. Different coloni	Home	bedding	3.06	6846.62	1.99
-AAAAAAAAMDFAAAAA	Black, old things prove. Even rural businesses used to control really from the decisions; strange colle	Home	bedding	1.79	6272.59	1.83
-AAAAAAAAMDMBAAAA	Easier ashamed implications will care. Exceptional men must not enjoy social, rural deposits. Upw	Home	bedding	3.79	3998.23	1.16
-AAAAAAAAMIGDAAAA	Then brief plants use fair, white women; outer, long prop	Home	bedding	40.09	6619.96	1.93
-AAAAAAAAMIIDAAAA	Slim characters will take common, psychological features. Reasons think economically. Good, geographical parties throw committees. Southern costs increa	Home	bedding	3.04	12366.48	3.60
-AAAAAAAAMNFEAAAA	Only public results become by a days; concerned, dead sales lose confidently from a ar	Home	bedding	87.43	406.77	0.11
-AAAAAAAAMPFAAAAA	Clear artists stay so that is limited causes; innocent, unusual claims make to a horses. Concerns will see almost in a centres. Seriously great maste	Home	bedding	79.19	7613.70	2.22
-AAAAAAAANFCCAAAA	Companies would protect greatly firms. Exceptions disagree highly; wrong difficulties put once aga	Home	bedding	2.22	32.96	0.00
-AAAAAAAANJMAAAAA	Minutes find by a others. Then new firms	Home	bedding	3.93	2304.48	0.67
-AAAAAAAANMADAAAA	Things help usually. Policemen get strong rivals. Powers wait. Public police would file today nuclear users. Public, able indicators must perform however beside a conditions. V	Home	bedding	6.93	4421.67	1.29
-AAAAAAAAOAFBAAAA	Upper windows can hurt high, able corners. Applicants shrink once trying trees. About other hands settle too other eyes. Suddenly major d	Home	bedding	0.31	7105.12	2.07
-AAAAAAAAODKCAAAA	Almost critical firms ought to encourage previously meetings. Also british reports come even nice beans. Free children change over hostile limitations. De	Home	bedding	8.26	2360.40	0.68
-AAAAAAAAOELAAAAA	Competitors improve obviously as political police. By now new prisoners may arrive by a strings. Natural, short-term associations reduce so new cha	Home	bedding	7.55	2213.70	0.64
-AAAAAAAAOPEBAAAA	Nonetheless united materials talk individuals; inc, effec	Home	bedding	5.48	13117.60	3.82
-AAAAAAAAPDGBAAAA	Mistakes preserve there impossible, new customers. Also french vegetables ought to decide possible others. Just young girls administer individual disputes. Extensive, 	Home	bedding	7.59	1828.67	0.53
-AAAAAAAAPMAEAAAA	Great, political methods adapt in a characters. Slowly different cases fight	Home	bedding	0.81	12963.87	3.78
-AAAAAAAAPMMBAAAA	Important, tall responsibilities may not operate rather exact, empty folk. Numbers dump political teachers. L	Home	bedding	7.70	3145.81	0.91
-AAAAAAAAPOODAAAA	Presidential, open books shall not recognize merely fair styles. Signs check most happy, similar rules. Fat demands must see blac	Home	bedding	6.91	5718.24	1.66
-AAAAAAAAAAHBAAAA	Od	Home	blinds/shades	6.56	5059.48	3.37
-AAAAAAAAAGIAAAAA	Debts may react birds. Officials will establish e	Home	blinds/shades	2.48	6200.00	4.13
-AAAAAAAAAPLDAAAA	Times would miss low, national methods. Versions stick real partners; sports characterize spatial, upper grounds. Values might reveal togeth	Home	blinds/shades	1.46	3060.81	2.03
-AAAAAAAABAPDAAAA	Slightly delightful schools could decide about annually large boxes; now young pubs shall not escape perhaps horrible consciou	Home	blinds/shades	1.01	723.52	0.48
-AAAAAAAACAFAAAAA	Catholic, favorite interests may decide agents. Extraordinary office	Home	blinds/shades	29.09	4414.19	2.94
-AAAAAAAACBODAAAA	Hospitals lose. Able children smoke still in the earnings. Central cases	Home	blinds/shades	0.86	1092.00	0.72
-AAAAAAAACIOCAAAA	Rich powers can look in a reports. Also new towns must read just. Now likely sets help somewhat into a architects. Married, extensive views pay assessments; months lift briti	Home	blinds/shades	2.30	1526.88	1.01
-AAAAAAAADHHCAAAA	Holes ought to offer much severe, suitable ministers. For example independent steps pick approximately huge relations. Alone, available boats might express in a years; level pati	Home	blinds/shades	5.70	6285.37	4.18
-AAAAAAAADOFAAAAA	Both early efforts must dispose simply on a men. Real workshops say properly from a possibiliti	Home	blinds/shades	2.08	204.98	0.13
-AAAAAAAAEDGEAAAA	Never japanese miners put afraid rates; requirements must not arise seriously there double comments. Free years will not identify in order prime winners; services used to displace today o	Home	blinds/shades	1.72	2001.48	1.33
+AAAAAAAAGNNCAAAA	Voters learn both young arms. Victims need less however front cases; shapes can cover	Home	bedding	5.46	0.00	0.000000
+AAAAAAAAHGDDAAAA	Terms used to comprehend to a things. Really busy competitors stop women. Normally certain libraries remain considerably from a centres. Glad countries cannot try together groups. There powerful	Home	bedding	4.30	6885.82	2.008928
+AAAAAAAAHHCAAAAA	Old, cultural workers ought to take both now everyday budgets. Nearer interesting hours could not assure very centuries	Home	bedding	1.65	6096.81	1.778735
+AAAAAAAAIJCEAAAA	Patients stand still respective possibilities	Home	bedding	2.66	7777.47	2.269065
+AAAAAAAAIOECAAAA	Ag	Home	bedding	8.22	3885.84	1.133688
+AAAAAAAAJEECAAAA	Children used to mean contracts. Difficult runs spot here. Aspects ought to take unfortunately prepared women. Groups believe very public patients. Low terms must stop as different, political cou	Home	bedding	4.94	9167.85	2.674707
+AAAAAAAAJINBAAAA	That central men know independent authorities. Just new rights can make only such as a companies. Studies can stay a	Home	bedding	9.89	8831.14	2.576472
+AAAAAAAAJKPDAAAA	Now recent feelings skip particularly clear	Home	bedding	9.34	3697.23	1.078661
+AAAAAAAAJNJAAAAA	Places take rules. For example scientific buildings may not maintain notably developers. Prime, other heads limit marginal places. Good, part-tim	Home	bedding	9.77	11273.10	3.288911
+AAAAAAAAJOEEAAAA	Acute seasons thank alternative, early pages. Full variations can enter problems. Central stories shall give complete servants. Common ston	Home	bedding	7.38	850.85	0.248234
+AAAAAAAAJPKDAAAA	Recent 	Home	bedding	0.35	256.88	0.074944
+AAAAAAAAKCCCAAAA	English, western services may not place less separate, new injuries. Wings might not refine. M	Home	bedding	0.73	10543.56	3.076068
+AAAAAAAAKFABAAAA	Significantly simple rules could face especially lively, popular employers. Days catc	Home	bedding	1.96	2465.30	0.719247
+AAAAAAAAKGJDAAAA	Contracts explain so possible, basic rooms; problems can think then	Home	bedding	4.07	588.50	0.171694
+AAAAAAAAKIDBAAAA	Holidays may attract local days. Low, sympathetic teachers might not provide especially resources. Soviet matt	Home	bedding	2.12	7518.47	2.193503
+AAAAAAAAKIIAAAAA	For example new children shall take general jobs. British, proposed government	Home	bedding	5.52	1309.50	0.382044
+AAAAAAAALGBEAAAA	Inland memories c	Home	bedding	9.31	21344.75	6.227300
+AAAAAAAALMJCAAAA	Beautiful incomes could not spread apart wooden talks. Hopefully short individuals might say stil	Home	bedding	4.48	3857.71	1.125481
+AAAAAAAALMODAAAA	Aside smooth secrets would come both. Suddenly big officials can pay too problems; programmes seem. Unable times play. Very indian failures use s	Home	bedding	3.03	10438.54	3.045429
+AAAAAAAALPKBAAAA	Inappropriate, chief systems would not help in a offices; dangerous proportions might ins	Home	bedding	3.08	2512.57	0.733038
+AAAAAAAALPLDAAAA	Quite annual missiles refute later years; as dead materials include smoothly examples. Major, independent standards could not mean extra, young points. Different coloni	Home	bedding	3.06	6846.62	1.997491
+AAAAAAAAMDFAAAAA	Black, old things prove. Even rural businesses used to control really from the decisions; strange colle	Home	bedding	1.79	6272.59	1.830019
+AAAAAAAAMDMBAAAA	Easier ashamed implications will care. Exceptional men must not enjoy social, rural deposits. Upw	Home	bedding	3.79	3998.23	1.166477
+AAAAAAAAMIGDAAAA	Then brief plants use fair, white women; outer, long prop	Home	bedding	40.09	6619.96	1.931364
+AAAAAAAAMIIDAAAA	Slim characters will take common, psychological features. Reasons think economically. Good, geographical parties throw committees. Southern costs increa	Home	bedding	3.04	12366.48	3.607903
+AAAAAAAAMNFEAAAA	Only public results become by a days; concerned, dead sales lose confidently from a ar	Home	bedding	87.43	406.77	0.118674
+AAAAAAAAMPFAAAAA	Clear artists stay so that is limited causes; innocent, unusual claims make to a horses. Concerns will see almost in a centres. Seriously great maste	Home	bedding	79.19	7613.70	2.221286
+AAAAAAAANFCCAAAA	Companies would protect greatly firms. Exceptions disagree highly; wrong difficulties put once aga	Home	bedding	2.22	32.96	0.009616
+AAAAAAAANJMAAAAA	Minutes find by a others. Then new firms	Home	bedding	3.93	2304.48	0.672328
+AAAAAAAANMADAAAA	Things help usually. Policemen get strong rivals. Powers wait. Public police would file today nuclear users. Public, able indicators must perform however beside a conditions. V	Home	bedding	6.93	4421.67	1.290016
+AAAAAAAAOAFBAAAA	Upper windows can hurt high, able corners. Applicants shrink once trying trees. About other hands settle too other eyes. Suddenly major d	Home	bedding	0.31	7105.12	2.072908
+AAAAAAAAODKCAAAA	Almost critical firms ought to encourage previously meetings. Also british reports come even nice beans. Free children change over hostile limitations. De	Home	bedding	8.26	2360.40	0.688643
+AAAAAAAAOELAAAAA	Competitors improve obviously as political police. By now new prisoners may arrive by a strings. Natural, short-term associations reduce so new cha	Home	bedding	7.55	2213.70	0.645843
+AAAAAAAAOPEBAAAA	Nonetheless united materials talk individuals; inc, effec	Home	bedding	5.48	13117.60	3.827041
+AAAAAAAAPDGBAAAA	Mistakes preserve there impossible, new customers. Also french vegetables ought to decide possible others. Just young girls administer individual disputes. Extensive, 	Home	bedding	7.59	1828.67	0.533511
+AAAAAAAAPMAEAAAA	Great, political methods adapt in a characters. Slowly different cases fight	Home	bedding	0.81	12963.87	3.782190
+AAAAAAAAPMMBAAAA	Important, tall responsibilities may not operate rather exact, empty folk. Numbers dump political teachers. L	Home	bedding	7.70	3145.81	0.917785
+AAAAAAAAPOODAAAA	Presidential, open books shall not recognize merely fair styles. Signs check most happy, similar rules. Fat demands must see blac	Home	bedding	6.91	5718.24	1.668288
+AAAAAAAAAAHBAAAA	Od	Home	blinds/shades	6.56	5059.48	3.371778
+AAAAAAAAAGIAAAAA	Debts may react birds. Officials will establish e	Home	blinds/shades	2.48	6200.00	4.131853
+AAAAAAAAAPLDAAAA	Times would miss low, national methods. Versions stick real partners; sports characterize spatial, upper grounds. Values might reveal togeth	Home	blinds/shades	1.46	3060.81	2.039809
+AAAAAAAABAPDAAAA	Slightly delightful schools could decide about annually large boxes; now young pubs shall not escape perhaps horrible consciou	Home	blinds/shades	1.01	723.52	0.482173
+AAAAAAAACAFAAAAA	Catholic, favorite interests may decide agents. Extraordinary office	Home	blinds/shades	29.09	4414.19	2.941739
+AAAAAAAACBODAAAA	Hospitals lose. Able children smoke still in the earnings. Central cases	Home	blinds/shades	0.86	1092.00	0.727739
+AAAAAAAACIOCAAAA	Rich powers can look in a reports. Also new towns must read just. Now likely sets help somewhat into a architects. Married, extensive views pay assessments; months lift briti	Home	blinds/shades	2.30	1526.88	1.017555
+AAAAAAAADHHCAAAA	Holes ought to offer much severe, suitable ministers. For example independent steps pick approximately huge relations. Alone, available boats might express in a years; level pati	Home	blinds/shades	5.70	6285.37	4.188745
+AAAAAAAADOFAAAAA	Both early efforts must dispose simply on a men. Real workshops say properly from a possibiliti	Home	blinds/shades	2.08	204.98	0.136604
+AAAAAAAAEDGEAAAA	Never japanese miners put afraid rates; requirements must not arise seriously there double comments. Free years will not identify in order prime winners; services used to displace today o	Home	blinds/shades	1.72	2001.48	1.333842
 AAAAAAAAEHLAAAAA	Pretty bloody countr	Home	blinds/shades	6.45	\N	\N
-AAAAAAAAEJAEAAAA	Labour powers might not explain slightly basic students. Dealers become too for the opponents. Likely, civil stations cannot improve now able, glorious problems. Other phases should make greatly in a	Home	blinds/shades	1.45	5161.66	3.43
-AAAAAAAAEJEDAAAA	Once financial years fight totally now financial skills. Significant, crazy provisions feel into a railways. So-called jobs land only supplies. Re	Home	blinds/shades	8.79	3453.90	2.30
-AAAAAAAAEJGAAAAA	Careful houses put right odds. Open, unchanged examples must light well things. Once great days enter even weakly medium routes. Old-fashioned, economic implications try. Ever left courts decide dev	Home	blinds/shades	5.49	9325.30	6.21
-AAAAAAAAELODAAAA	Sure russian critics require usually groups. Strong, difficult balls get thus base men. So cold shares sati	Home	blinds/shades	9.75	101.44	0.06
-AAAAAAAAEMBCAAAA	Right areas tell off the events. Dangerous, other loans might not investigate small children. Large offices might happen right. Static, new expressions used to de	Home	blinds/shades	6.39	10684.04	7.12
-AAAAAAAAEODCAAAA	Terribly necessary systems take other, difficult improvements. Effective, simple places make at all. Minds might 	Home	blinds/shades	9.60	5538.64	3.69
-AAAAAAAAEPBDAAAA	Private, average clouds yield political, alive runs. Finally interested creatures might rescue. Public years want recently wild figures. Simply economic products should hit as.	Home	blinds/shades	8.38	424.86	0.28
-AAAAAAAAFDNBAAAA	Large, necessary companies make delib	Home	blinds/shades	1.37	1922.85	1.28
-AAAAAAAAFOAAAAAA	Pink, continuous courts solve inevitably short future problems. Broad plans pass as a drawings. Only bad negotiations come	Home	blinds/shades	3.20	3191.29	2.12
-AAAAAAAAGHDAAAAA	In common academic pupils know highly joint sites. Twin, safe methods introduce most possible others; times fall most effects. Highest parliamentary performances used 	Home	blinds/shades	6.97	7080.17	4.71
-AAAAAAAAHMNCAAAA	As great eyes ought to talk then. Natural drawings shall not generate to a hands. Artistic seconds 	Home	blinds/shades	9.23	9100.70	6.06
-AAAAAAAAIDECAAAA	Late levels move statutory, level offices. Golden, classic trees treat little including a patients. Ideas grab actual	Home	blinds/shades	43.01	4326.30	2.88
-AAAAAAAAIDNBAAAA	Expensive reasons shall not carry hardly ri	Home	blinds/shades	4.59	3511.94	2.34
-AAAAAAAAIJFAAAAA	Nice things would coincide still satisfactory students. Now oth	Home	blinds/shades	1.08	110.32	0.07
-AAAAAAAAILGBAAAA	Offices would dare then 	Home	blinds/shades	4.39	2524.07	1.68
-AAAAAAAAILKDAAAA	High, real differences continue. Relatively electronic yards find for a months. Anyw	Home	blinds/shades	6.11	3081.74	2.05
-AAAAAAAAIPLBAAAA	And so on hot trends pick really even initial concerns. Arrang	Home	blinds/shades	16.14	3705.24	2.46
-AAAAAAAAJOIDAAAA	Incredi	Home	blinds/shades	0.22	10710.19	7.13
-AAAAAAAAKHBBAAAA	Specific, slow notes prevent now then oral parts. Serious, curren	Home	blinds/shades	3.17	4152.79	2.76
-AAAAAAAAKHJCAAAA	Famous tourists will make. Sensible, potential teams lead armed, democratic types. Social, growing recommendations get in 	Home	blinds/shades	1.26	1094.76	0.72
-AAAAAAAAKJKAAAAA	Certain pensions lay therefore. Then fair tears occur ago. Directors used to respect more others. Direct clothes must guarantee environmental traders. Later rich developments would know. Total, incre	Home	blinds/shades	9.90	1984.43	1.32
-AAAAAAAALBNDAAAA	Demanding, aware studies should keep consequently for a increases. Definitions mak	Home	blinds/shades	2.90	6887.57	4.59
-AAAAAAAAMCECAAAA	Large students may not show simply nuclear countries. Kee	Home	blinds/shades	61.63	2191.94	1.46
-AAAAAAAAMDPBAAAA	Also personal or	Home	blinds/shades	0.14	5675.53	3.78
-AAAAAAAAMNKAAAAA	Payments mean there at a spots. At all bottom hands implement predominantly to a conditions. Stones enrich twice important members. Mere	Home	blinds/shades	0.49	4464.69	2.97
-AAAAAAAANGNCAAAA	Young, british parents can recall a	Home	blinds/shades	5.24	2375.74	1.58
-AAAAAAAAOPEEAAAA	Terrible years see also yesterday 	Home	blinds/shades	44.30	4475.81	2.98
-AAAAAAAAPOCAAAAA	Bishops could confirm; rates rot very pp.. Prisoners will want old countries. Too po	Home	blinds/shades	3.71	2227.12	1.48
-AAAAAAAAACAAAAAA	Different numbers might not visit; rights used to remember. Labour students must put as slowly possible children. Never	Home	curtains/drapes	1.77	11032.09	3.39
-AAAAAAAAAEJAAAAA	Important relationships want. Questions might not make papers. Panels end. 	Home	curtains/drapes	5.31	9566.60	2.94
-AAAAAAAAAFGDAAAA	Relations give in the services. Lessons perform long savings. Invariably comme	Home	curtains/drapes	9.22	2686.86	0.82
-AAAAAAAAAGEAAAAA	Foreign conditions could not think scientists. Big, applicable jobs could not perform social, high profits. Even young orde	Home	curtains/drapes	7.02	11788.96	3.62
-AAAAAAAAAIAAAAAA	Wrong limits could not accompany now perhaps lonely customers. Anxious, neighbouring principles might arise molecules. Useful, short nerves think advantages. Angry, parental prices fly t	Home	curtains/drapes	4.06	174.00	0.05
-AAAAAAAAAILDAAAA	Thirdly christian fragments shave very well large structures. Young, coming attitudes may i	Home	curtains/drapes	9.17	2029.52	0.62
-AAAAAAAAALDDAAAA	Just social temperatures should like english networks. Together financial collections must 	Home	curtains/drapes	6.24	10260.73	3.15
-AAAAAAAACCPAAAAA	Still old sides keep really save for a police. Big, foreign things enable. Other children illustrate distinct, distingui	Home	curtains/drapes	0.46	418.22	0.12
-AAAAAAAACDCEAAAA	Girls exceed so. Evenings shall not come so american, british shares. Interesting interests mark retail, historic studies; h	Home	curtains/drapes	88.60	6379.60	1.96
-AAAAAAAACGJCAAAA	Social, new members reply stations. Different years can break areas. Never gre	Home	curtains/drapes	3.22	697.21	0.21
-AAAAAAAACMFAAAAA	However remote members talk indeed no longer local costs. Irish plans shou	Home	curtains/drapes	42.98	8275.43	2.54
-AAAAAAAACMLDAAAA	Purposes appear well eyes. Of course possible ways used	Home	curtains/drapes	3.54	2733.76	0.84
-AAAAAAAADBLBAAAA	British, accurate objects move.	Home	curtains/drapes	7.59	9608.16	2.95
-AAAAAAAADCPCAAAA	Men must	Home	curtains/drapes	1.07	5724.65	1.76
-AAAAAAAADHFBAAAA	Accused, black forms would not obtain eventually for a groups. 	Home	curtains/drapes	5.68	39.60	0.01
-AAAAAAAADHJAAAAA	Other, western grounds must save nervously up a boxes. Again local couples ought to fall again industrial boards. True, natural assets would advance extra hills. Underlying 	Home	curtains/drapes	0.49	609.47	0.18
-AAAAAAAAECLAAAAA	Words use up a documents. Collections may	Home	curtains/drapes	3.67	5845.56	1.79
-AAAAAAAAEDJBAAAA	Nuclear cards cannot use. Straight generations hear suddenly. Special charts live seriously directors; either technological offices might not begin more thus double cards. Growing, red entries c	Home	curtains/drapes	65.88	4475.44	1.37
-AAAAAAAAEGCBAAAA	Very long engines may clarify. Other principles could confirm merely good lovers; s	Home	curtains/drapes	63.15	14656.15	4.51
-AAAAAAAAEINDAAAA	German, thin experiences will not contribute. Issues must not explain later again democr	Home	curtains/drapes	0.70	842.00	0.25
-AAAAAAAAEMABAAAA	More original questions might weave very on behalf of the events. Economic standards go at a sheets. Around recent patterns see then actively massive hands. New, social women will	Home	curtains/drapes	6.61	6091.31	1.87
-AAAAAAAAFHFCAAAA	R	Home	curtains/drapes	2.46	14037.99	4.32
-AAAAAAAAFOLBAAAA	So other issues might protect late private friends; still mental suggestions establish in a drugs. Various d	Home	curtains/drapes	2.15	1776.48	0.54
-AAAAAAAAGGCCAAAA	English pictures evolve either to a factors. Detailed, ultimate months manage never mild eyes. High commi	Home	curtains/drapes	5.86	5616.91	1.72
-AAAAAAAAGGHBAAAA	Only difficult children permit also. Ends must up	Home	curtains/drapes	3.77	6772.81	2.08
-AAAAAAAAGJIDAAAA	Strong, other eyes address. Expectations ought to need	Home	curtains/drapes	3.16	1048.21	0.32
-AAAAAAAAGKDAAAAA	More expensive men used to become most current offices. There royal areas shall not study particularly important, remain	Home	curtains/drapes	0.46	1399.75	0.43
-AAAAAAAAGKOCAAAA	Now good walls deal currently physical proceedings. Important buildings swear around 	Home	curtains/drapes	5.54	1416.16	0.43
-AAAAAAAAHEIDAAAA	Ideal talks might not think within the strengths; actions can change probably; names provide later in a jews; busy pr	Home	curtains/drapes	8.79	1369.83	0.42
-AAAAAAAAHJLBAAAA	Even poor women come much acceptable heads. Then similar trees live much circumstances. Then legal hours may walk eastern, simple cases; respectable	Home	curtains/drapes	6.41	3197.32	0.98
-AAAAAAAAIAGAAAAA	Social wor	Home	curtains/drapes	0.79	2324.23	0.71
-AAAAAAAAICDBAAAA	Average, above sentences should not care home years. Reactions come unfortunately full, capable sessions; dom	Home	curtains/drapes	0.61	9928.74	3.05
-AAAAAAAAIEDBAAAA	Questions can dry almost together northern prop	Home	curtains/drapes	0.64	88.09	0.02
-AAAAAAAAIJLBAAAA	Light cases used to prevent always co	Home	curtains/drapes	37.58	692.78	0.21
-AAAAAAAAIKEBAAAA	More running months ought to estab	Home	curtains/drapes	1.24	6584.17	2.02
-AAAAAAAAIKEEAAAA	For example available women enter greatly mental principles. In general crucial hospitals s	Home	curtains/drapes	0.52	13744.05	4.23
-AAAAAAAAIKNBAAAA	Chief payments used to decorate 	Home	curtains/drapes	5.08	150.60	0.04
-AAAAAAAAILCCAAAA	Able, actual men contribute beautiful, national orders. Days get just subsequently useful differences. Generally useful doctors look nations. Heavy minutes celebrate as good te	Home	curtains/drapes	9.69	351.40	0.10
-AAAAAAAAILIBAAAA	Letters bring that is to say primarily local lines; true, necessary metres can talk more regional, regular years; losses spo	Home	curtains/drapes	4.42	2786.07	0.85
-AAAAAAAAIMGCAAAA	However little parties open straightforward months; new judges used t	Home	curtains/drapes	7.23	11205.18	3.44
-AAAAAAAAINFAAAAA	Much trying boys play really seconds. Clear cases cannot stop only so social types. Areas see 	Home	curtains/drapes	5.48	14421.75	4.44
-AAAAAAAAJEKCAAAA	Years win probably after the teams. More possible teachers shall hand	Home	curtains/drapes	7.22	1655.36	0.50
-AAAAAAAAJKOBAAAA	Big, similar lines will give states. Other, whole functions keep carefully. Customers cannot change especially wide origins. Planned police will not 	Home	curtains/drapes	3.05	9781.50	3.01
-AAAAAAAAJLACAAAA	Well tiny gove	Home	curtains/drapes	4.74	566.88	0.17
-AAAAAAAAJLBBAAAA	Courts pay far american towns; more greek circumstances prevent so to a cars; sports read importantly also public lights. Strings grow short large, interesting interests. About good	Home	curtains/drapes	7.06	7550.49	2.32
-AAAAAAAAJPABAAAA	Small, marked museums ought to validate. Ready circles disclose ahead on a months;	Home	curtains/drapes	1.95	3453.85	1.06
-AAAAAAAAKDABAAAA	Social eyes might complete at least customs. Very grea	Home	curtains/drapes	7.73	223.88	0.06
-AAAAAAAAKGCBAAAA	Normal, mental machines take. Real,	Home	curtains/drapes	4.25	3853.74	1.18
-AAAAAAAAKIBEAAAA	Parts see little notes; almost dead spots	Home	curtains/drapes	1.38	495.74	0.15
-AAAAAAAAKIOAAAAA	Western, successful levels 	Home	curtains/drapes	5.31	2693.58	0.82
-AAAAAAAALBEDAAAA	Less tiny farmers help efforts. Fast building	Home	curtains/drapes	3.72	8974.69	2.76
-AAAAAAAALGEEAAAA	More bad titles get. Earlier economic minu	Home	curtains/drapes	3.64	11434.55	3.52
-AAAAAAAALJHBAAAA	Standards could not exploit total communities; extraordinary, young laws go there. Boys must not	Home	curtains/drapes	1.65	4004.65	1.23
-AAAAAAAALNAEAAAA	Vegetables sell of course carefully peaceful proceedings. Necessary revenues should criticise much; public regulations must see mild pr	Home	curtains/drapes	2.81	3392.40	1.04
-AAAAAAAAMCPCAAAA	Isolated times need everywhere uncer	Home	curtains/drapes	1.65	3821.61	1.17
-AAAAAAAAMHMAAAAA	Real, other chiefs may not participate then frequent wives. Names provide figures. Right full workers used to withstand; later complex systems appear	Home	curtains/drapes	8.03	4516.80	1.39
-AAAAAAAAMMBAAAAA	Boys might not work yet then fast clothes. Simply large elements think in a factors. Royal charges happen at least on a children. Holy prospects think individu	Home	curtains/drapes	8.88	11619.39	3.57
-AAAAAAAAMPCDAAAA	Basic circumstances take exactly surpris	Home	curtains/drapes	0.73	11547.45	3.55
-AAAAAAAANEIDAAAA	Relations d	Home	curtains/drapes	8.44	5643.90	1.73
-AAAAAAAAOMCDAAAA	Quietly reliable parties create. Common laws may turn for the details. There potential product	Home	curtains/drapes	7.60	3031.29	0.93
-AAAAAAAAOPFAAAAA	Enough labour days watch to a shops. Residents sharpen now scottish, complete expressions; time and again painful others shall not reduce for a enemies. Images visit bef	Home	curtains/drapes	4.92	31.52	0.00
-AAAAAAAAOPNBAAAA	Special, eligible c	Home	curtains/drapes	2.03	2832.18	0.87
-AAAAAAAAPBECAAAA	Places look; students sell especially. Right black tests make once again	Home	curtains/drapes	2.18	5899.96	1.81
-AAAAAAAAPEMDAAAA	Also black patterns may call other others. Pressures must come so; there young relations can want towards a galleries; new, left services at	Home	curtains/drapes	8.37	716.28	0.22
-AAAAAAAAPILDAAAA	Special matters may not forget a little other drugs. Also possible standards might retain sales. Difficult, small prices forget frequently for a hours. Explicit, true things may exchange modern cases	Home	curtains/drapes	0.66	4223.56	1.30
-AAAAAAAAAILBAAAA	Important functions can offer rather items. Christian ears preserve therefore additional, new foods. Now whole men make only black,	Home	decor	2.76	1548.94	0.54
-AAAAAAAAAOBBAAAA	Normal authorities understand more small expenses; copies 	Home	decor	77.78	9608.31	3.39
-AAAAAAAABJGAAAAA	Radical degrees may hear just. Christian terms disguise quickly rows. Bad, semantic companies want. Clear, perfect dogs please years. Cells sho	Home	decor	2.87	585.32	0.20
-AAAAAAAACFMAAAAA	Appropriate savings approach. Good charges gain. Primary tourists take pretty employees. Following, average arguments ought to matter possibly like women; specialist, black days us	Home	decor	2.97	2589.06	0.91
-AAAAAAAAEDFCAAAA	Decent things borrow well times. H	Home	decor	4.95	23730.54	8.39
-AAAAAAAAEFEBAAAA	Old, personal difficulties shall not exist much terrible governments; in addition likely parties might not go probably wonderful, model uses. Christian, usual influences would tell mo	Home	decor	4.95	4898.94	1.73
-AAAAAAAAEJCCAAAA	English, good complaints ought to counteract past democr	Home	decor	17.77	935.97	0.33
-AAAAAAAAEOAEAAAA	Old, final citizens lose long distinguished conditions. National, little authorities get already; correctly dramatic communities repeat better local, intense months. Even thin years 	Home	decor	0.33	1833.58	0.64
-AAAAAAAAEPIBAAAA	Available	Home	decor	2.19	2145.41	0.75
-AAAAAAAAGBMBAAAA	Only, guilty changes ought to remember just different specimens. Hap	Home	decor	0.24	4264.39	1.50
-AAAAAAAAGDKBAAAA	However pleasant years should imitate as impossible, new districts. Urgent, major residen	Home	decor	8.51	426.86	0.15
-AAAAAAAAGEABAAAA	Similar years should not attribute anyway now combined streets; important, convenient others represent moreover. Appropriate trousers provide more communications. Cultural comments would e	Home	decor	3.01	2268.91	0.80
-AAAAAAAAGEHDAAAA	Emissions will tick social, likely institutions. Specific customs wash still general, financial years. Open nurses could hurt; carefully current troubles must not invest als	Home	decor	4.98	7352.90	2.60
-AAAAAAAAGMJBAAAA	Electronic, protective ties cannot install temporarily opportunities. Likely experiments see so implicit patie	Home	decor	1.08	6818.47	2.41
-AAAAAAAAHAFBAAAA	Ultimate, normal shareholders shall bu	Home	decor	9.07	3846.33	1.36
-AAAAAAAAHMPDAAAA	Black modules reach more in the implications. Almost empty obligations must want broadly for the methods. Figures summarize then. Christian, local men disturb still. Scenes should appear girls. 	Home	decor	4.92	3511.65	1.24
-AAAAAAAAIDNCAAAA	Wonderful servants must not resolve once physical lives. Later significant an	Home	decor	0.33	5327.28	1.88
-AAAAAAAAILFEAAAA	Present, nervous schools look transactions.	Home	decor	4.02	19483.43	6.89
-AAAAAAAAJKDDAAAA	Involunta	Home	decor	6.52	3664.04	1.29
-AAAAAAAAJKLBAAAA	Young, smart dogs vote ever; needs replace; homes must marry just on a residents; 	Home	decor	1.32	6.65	0.00
-AAAAAAAAJNGAAAAA	Boys measure else towns. Advertisements challenge just prominent, local areas; other, singl	Home	decor	4.49	24238.02	8.57
-AAAAAAAAKEMAAAAA	Appropriate disputes shall not strike effectively at a parents. Then ill strategies must submit of course brilli	Home	decor	3.23	2413.20	0.85
-AAAAAAAAKKGDAAAA	Empirical, willing ar	Home	decor	2.80	8351.11	2.95
-AAAAAAAAKPGAAAAA	Just direct bills co-ordinate by a troops. Clothes belong old, essent	Home	decor	4.76	3679.50	1.30
-AAAAAAAALCDDAAAA	Other, old services violate yet for a schools. Casualties should reappear again by a females. Employees illustrate well never clean fields. Imperial, important appointments consider really orange, 	Home	decor	8.46	3780.31	1.33
-AAAAAAAALDODAAAA	Then long times hope wide sole, new legs. Students might not dig more swiss, isolated children. Real words may negotiate so. Left circumstances repeat; stil	Home	decor	0.81	66.04	0.02
-AAAAAAAALEKDAAAA	Too particular sites look regularly catholic spots; subjects drive in a children. Cheeks exist now specific lights. Average forces will max	Home	decor	3.75	1992.25	0.70
-AAAAAAAALGFDAAAA	Officials resume about. Ever human arts take at least. Decent cases reply now during a	Home	decor	0.38	6790.65	2.40
-AAAAAAAALLGAAAAA	Pp. consider to the men; hot, old cases take certainly just military agents; full, financial 	Home	decor	3.23	4136.91	1.46
-AAAAAAAAMBEAAAAA	Clearly local bars put still. 	Home	decor	0.69	3685.14	1.30
-AAAAAAAAMKMBAAAA	Economic ways reach really at the models. Scientists might draw even major markets. Daily o	Home	decor	7.07	12859.65	4.54
-AAAAAAAAMNMDAAAA	Meetings know policies. Elderly, big practitioners wait outside along the books. Average hand	Home	decor	8.54	4782.93	1.69
-AAAAAAAAMOFAAAAA	Political shares become then firmly english men. Hardly young police 	Home	decor	1.89	10448.72	3.69
-AAAAAAAAMOPAAAAA	Geographical, obvious conditions leave rather successful, new feelings. Here present friends would stop. New, positive terms shou	Home	decor	5.69	2682.17	0.94
-AAAAAAAANKJCAAAA	Questions see by a representatives. Short questions pass respectively progressive pp.. Sufficiently 	Home	decor	27.90	10133.26	3.58
-AAAAAAAAOHBEAAAA	Children write true, old seasons. Stupid, nationa	Home	decor	5.97	35822.55	12.67
-AAAAAAAAOHDBAAAA	High, happy funds would not change more minutes; ancient representations ca	Home	decor	4.12	5232.00	1.85
-AAAAAAAAOJFEAAAA	Thereby 	Home	decor	31.17	3065.16	1.08
-AAAAAAAAPAPBAAAA	Seconds should tolerate certainly large stairs. Large, foreign months shall pa	Home	decor	0.94	11186.84	3.95
-AAAAAAAAPBDAAAAA	Clear, top associations can activate all national factors. Items could think sure skills. Fine, thin classes must not help simply only statutory	Home	decor	6.27	3917.10	1.38
-AAAAAAAAPIBEAAAA	New buildings should visit forcefully certainly fine aspects. Shows must not take totally lights. Full teachers say still. Today local units shall know exactly by a services. Patient	Home	decor	8.39	446.81	0.15
-AAAAAAAAPLIAAAAA	Real, fair sales used to lend much drawings. Tanks believe new, present minutes. Contemporary, lovely contributions happen stairs. Problems keep. However sha	Home	decor	1.13	17259.93	6.10
-AAAAAAAAPLLAAAAA	Only	Home	decor	3.96	877.92	0.31
-AAAAAAAAADOAAAAA	Only detailed memories can tackle free, good members. For example artistic women bec	Home	flatware	4.37	1677.52	0.37
-AAAAAAAAAKMDAAAA	Sexual markets might not miss central plants. Physical relationships can leave probably p	Home	flatware	2.87	670.69	0.15
-AAAAAAAAANDAAAAA	Beautiful areas know ever actually chief patterns. International, simple feelings like in a russians. National methods would not agree new, other practices; remote, small respects 	Home	flatware	7.13	18656.44	4.19
-AAAAAAAAAOODAAAA	Digita	Home	flatware	98.92	4233.13	0.95
-AAAAAAAABDOBAAAA	Times fall buildings. Causal yards will not survive over at the	Home	flatware	11.60	4653.17	1.04
-AAAAAAAABNCAAAAA	Criminal companies may emerge sometimes children. Urban, other efforts dominate policies. Very right fans drive briti	Home	flatware	9.67	1616.85	0.36
-AAAAAAAACBLDAAAA	Obvious, clini	Home	flatware	0.71	3849.41	0.86
-AAAAAAAACCKAAAAA	Effective wives ought to adopt even golden sports; various shows cannot feel	Home	flatware	3.70	10411.31	2.34
-AAAAAAAACFNCAAAA	Poor, small things might care as characters. Comp	Home	flatware	2.42	18603.86	4.18
-AAAAAAAACGCDAAAA	Dominant flames ought to hold truly most joint criticisms; equal strategies wander. Strangers ought to realise clear, unknown illustrations. Other products would come. Norther	Home	flatware	1.13	2686.30	0.60
-AAAAAAAACGODAAAA	Ever excellent towns used to try hard current private services. International, new minutes follow powerful recordings. Schools must not h	Home	flatware	9.52	23644.59	5.31
-AAAAAAAACNKBAAAA	European, happy homes shall not share. Double calls can cover just in order regular developments; inevitable rooms ought to promise according to a eyes. Normal attempts grow only, complex goods	Home	flatware	8.03	7517.17	1.69
-AAAAAAAACPNCAAAA	Comprehensive terms would not deceive maybe between a things.	Home	flatware	1.82	6021.26	1.35
-AAAAAAAADGDEAAAA	Late partners get now from a weeks. Thus signifi	Home	flatware	4.55	1168.20	0.26
-AAAAAAAADLJCAAAA	Major authorities ought to penetrate so banks. Bills will 	Home	flatware	9.36	10463.32	2.35
-AAAAAAAADNNCAAAA	Thick orders would allow a bit negative forms. Increasingly good studies spend with the cases. British, independent devices tackle direct, italian things; tomorrow new members ought t	Home	flatware	0.16	0.00	0.00
-AAAAAAAAEBGAAAAA	Police should not expect material, acceptable shares. Houses should not hold alread	Home	flatware	6.97	5961.52	1.34
-AAAAAAAAECODAAAA	Long minutes may lead only mostly private buildings. O	Home	flatware	0.72	4563.91	1.02
-AAAAAAAAEDLBAAAA	Women take even reasonable causes; physical, medium buildings contain great operations. Ever other nights pin	Home	flatware	75.25	8551.48	1.92
-AAAAAAAAEIODAAAA	Patient, white wounds should not take years. Artists allow also just brilliant levels. Proposals go then by a towns. Capable schools relax now bla	Home	flatware	5.06	2798.88	0.62
-AAAAAAAAELIDAAAA	Jewish others might sort defendants; general events decide physically respective for	Home	flatware	9.92	11729.82	2.63
-AAAAAAAAFKGBAAAA	Social policies experience as immense, other organizations. New products will ensure other allowances. Good	Home	flatware	5.07	8008.67	1.80
-AAAAAAAAGEOCAAAA	Poor problems satisfy surprisingly right, administrative prices. Sad dishes talk full, negative rivals. Even 	Home	flatware	0.91	12565.96	2.82
-AAAAAAAAGILAAAAA	There political guidelines must rise actually small new roads. Temperatures should not cry new victims. Very possible cal	Home	flatware	3.68	9306.76	2.09
-AAAAAAAAGKJAAAAA	Old things should not regulate. African walls could not say incidents. Great days keep always different women. Previous provisions may want	Home	flatware	1.26	14768.99	3.32
-AAAAAAAAGMACAAAA	Real minds shall	Home	flatware	5.95	6534.86	1.46
-AAAAAAAAGMOCAAAA	Ordinary issues dry only numerous, substantial sheets. Numbers may carry so increased feet; even human peoples drift too; unlikely,	Home	flatware	7.54	3910.06	0.87
-AAAAAAAAGOGCAAAA	Immense fields find on a measures. Followers may not want on a details. Occasions look also worthw	Home	flatware	2.40	6586.82	1.48
-AAAAAAAAHGADAAAA	Even usual teachers ought to sing even different likely males. Universal services expect kindly enou	Home	flatware	2.32	2917.15	0.65
-AAAAAAAAHPFEAAAA	Dark times play between a variations. Years would explain very positive reasons. 	Home	flatware	16.82	13783.02	3.10
-AAAAAAAAICNCAAAA	Clear, accurate areas would not find at least. Seriously young s	Home	flatware	6.61	14025.13	3.15
-AAAAAAAAIIFBAAAA	Equal areas show. Police admit below overseas, educational levels. Trees leave circumstances. Technological organisations would go by the margins. Available police would not appea	Home	flatware	6.91	8803.96	1.98
-AAAAAAAAJCJCAAAA	Probably local years will live tonnes. Step	Home	flatware	4.89	7588.57	1.70
-AAAAAAAAJGHDAAAA	Meetings achieve rational, young wages. W	Home	flatware	3.42	1405.25	0.31
-AAAAAAAAJNBCAAAA	Common branches ought to 	Home	flatware	9.13	13116.08	2.95
-AAAAAAAAKBCBAAAA	Other, sorry countries must help rather teachers. Specific, sensitive police will feel by a ministers; new terms build indeed months. Black i	Home	flatware	6.07	6032.62	1.35
-AAAAAAAAKCEBAAAA	Simple others repres	Home	flatware	3.34	1967.80	0.44
-AAAAAAAAKCGCAAAA	Notably other chemicals might carry again there interesting problems. Electronic, new foods recall legs.	Home	flatware	2.81	5880.00	1.32
-AAAAAAAAKDHAAAAA	National, wrong sources must rot. Cases take often for a words. Hours shall tell particularly popular nurses; special, serious gr	Home	flatware	5.00	4929.26	1.10
-AAAAAAAAKGFBAAAA	Boundaries will take almost familiar loans. Below public services shall keep early schools. Issues sti	Home	flatware	7.45	10431.52	2.34
-AAAAAAAAKGPBAAAA	Again appropriate months could give young activities. Particularly alternative arms could not believe black, growing patterns. Mathematical, public candidates ought to see even only cheap ser	Home	flatware	51.46	3801.64	0.85
-AAAAAAAALAPCAAAA	Police improve here profe	Home	flatware	3.37	10172.79	2.28
-AAAAAAAALEDEAAAA	Villages shall vary in order formal, able moments. Old figures will happen significantly in a incidents. Working-class pow	Home	flatware	6.75	21262.54	4.78
-AAAAAAAALJIDAAAA	Major, important features buy also oral, secondary motives. Physical mechanisms watch firmly possible, awful mea	Home	flatware	2.29	1085.70	0.24
-AAAAAAAAMANBAAAA	Students would take; better expected matters clear then private streets. Holy studies might not indicate in the books. Full, acceptable boo	Home	flatware	72.59	8012.16	1.80
-AAAAAAAAMCDAAAAA	Other, british benefits begin over about the participants. Legal, short contracts receive for a procedures. Openly unlikely countries need both planes. Lines should not get very ago historical 	Home	flatware	9.51	10400.94	2.33
-AAAAAAAAMEABAAAA	Tiny conditions may not clear about wonderful leaders. New, british miles may like outside even lega	Home	flatware	57.26	1345.56	0.30
-AAAAAAAAMHNCAAAA	Women would not appear very then small parents. C	Home	flatware	2.88	6706.40	1.50
-AAAAAAAAMIECAAAA	Le	Home	flatware	9.98	11828.71	2.66
-AAAAAAAAMJLCAAAA	Male patients say on a plans. Silent orders support. Other, normal levels work strongly in the brothers. Rights cannot walk now french, goo	Home	flatware	7.31	3556.42	0.79
-AAAAAAAAMNKDAAAA	Payments used to understand about mothers. 	Home	flatware	3.19	4126.04	0.92
-AAAAAAAANMDAAAAA	Major, spanish limits cover too in the group	Home	flatware	2.03	442.02	0.09
-AAAAAAAAOAMCAAAA	Specific, possible sentences ought to run pictures. Parents should summarize and so on fine households. Other concepts explore too years. Honest stars must cost psychologi	Home	flatware	3.18	11969.24	2.69
-AAAAAAAAOCKCAAAA	Provincial statements shall expect other, dead eyes. Perfect differences must lose too musical events. Competitive, goo	Home	flatware	1.86	208.08	0.04
-AAAAAAAAOCKDAAAA	Active, different governments used to keep unable, chief things. Subtle, releva	Home	flatware	3.70	6043.95	1.35
-AAAAAAAAODFAAAAA	Illegal, beautiful points know forward in a banks. Here good details should last today key doctors. Practical rooms cost responsible colonies; twice clear parents should thi	Home	flatware	9.22	1297.24	0.29
-AAAAAAAAOEABAAAA	Demonstrations shall miss exact, labour thanks. Nuclear, rapid issues undermine vital provinces. Political, dark deals may get problems. Authori	Home	flatware	5.36	8931.94	2.00
-AAAAAAAAOELCAAAA	Buses break maybe. International varieties would die new clients. Real preferences shall date however in a others. Individuals get almost safe counties. Specific, suspicious friends s	Home	flatware	61.51	16140.96	3.63
-AAAAAAAAOFDEAAAA	Expected, only experiences distinguish clearly ideal artists; relatively future regions guide now about a authorities. So	Home	flatware	9.64	2193.21	0.49
-AAAAAAAAOKKAAAAA	Beings 	Home	flatware	5.41	3057.71	0.68
-AAAAAAAAPCIAAAAA	Arrangements might not go on a lawyers. Too small legs may explain most officer	Home	flatware	6.07	9935.08	2.23
-AAAAAAAAPLEEAAAA	References carry enough; little duties will not restore full, new boards. Advanced manufacturers remain in a wo	Home	flatware	2.00	10.34	0.00
-AAAAAAAAABBAAAAA	Ways share electronic benefits. Just effective groups repeat social relations. Always coming deaths would treat so ideas. Effective, grand patterns would hold more. Capable feet	Home	furniture	1.71	48.60	0.01
-AAAAAAAAABEAAAAA	Now good legs find from the ideas. Available courts must risk eventually more complex strangers. Sections	Home	furniture	8.76	23271.50	6.11
-AAAAAAAAABGAAAAA	Otherwise suitable products consider too technical techniques; common women spend quickly assessments; chemical habits develop more. Very universal processes determine gingerly; months may discover mo	Home	furniture	4.64	9189.84	2.41
-AAAAAAAAACJDAAAA	M	Home	furniture	3.93	248.02	0.06
-AAAAAAAAADGBAAAA	Forces can live mostly. Again indian stars ought to establish just. So british y	Home	furniture	6.35	11955.53	3.14
-AAAAAAAAAFADAAAA	Other, new contracts want easy vehicles. Smooth industries should ask high students. Facts	Home	furniture	1.41	1899.70	0.49
-AAAAAAAAAFDAAAAA	New relations should get ideal shapes. Revolutionary settings forget however soviet institutions. Guests might disguise probably miners; immediate, local barriers destroy exactly pol	Home	furniture	0.85	4977.30	1.30
-AAAAAAAAAKCEAAAA	Regrettably deep rivers make absolutely then major demands. Cold dangers open of course less essential stories. Legal, statistical studies amount more well sovi	Home	furniture	4.23	297.00	0.07
-AAAAAAAABAADAAAA	Jeans may not represent relatively young provinces. More other studi	Home	furniture	17.10	749.41	0.19
-AAAAAAAABNKBAAAA	Minutes can expect outside strong, alternative developers. Proper movemen	Home	furniture	7.15	3444.28	0.90
-AAAAAAAACBBAAAAA	Guns provide changes. Ago new references used to accompany on the eyes. Forward supreme patients cannot ask real, spiritual channels. Interest	Home	furniture	4.69	9809.12	2.57
-AAAAAAAACDJCAAAA	Thirdly urb	Home	furniture	0.28	28473.03	7.48
-AAAAAAAACEABAAAA	Important values shall say	Home	furniture	1.94	9328.32	2.45
-AAAAAAAACFOBAAAA	Specimens enjoy exactly other areas. Names mean just in a operati	Home	furniture	63.63	915.90	0.24
-AAAAAAAACHGBAAAA	Suitable, new be	Home	furniture	2.69	3079.77	0.80
-AAAAAAAACJIDAAAA	Southern, physical forms may inherit long forms. Directors find suddenly. Standards should not say under just difficult reasons. Paths join a bit scientific issues. Onl	Home	furniture	7.95	9195.94	2.41
-AAAAAAAADHAAAAAA	Enough apparent elements reverse actu	Home	furniture	2.68	10398.28	2.73
-AAAAAAAADOCDAAAA	Matters wander various institutions; social shares ought to ensure only important women. Only concrete pictures bring female e	Home	furniture	3.65	5846.76	1.53
-AAAAAAAADPNDAAAA	Controversial funds dictate forward, national girls. Future, sharp years discuss special, envi	Home	furniture	4.92	3589.05	0.94
-AAAAAAAAEADAAAAA	So good choices accept good events; mean, effective birds remember away of course mixed vegetables. Requirements concede quite worth the steps. Heavy, big war	Home	furniture	2.70	4319.56	1.13
-AAAAAAAAEHPCAAAA	Surroundings lead offices. Red, technical employers shall phone english, formidable interests. Already other songs used to not	Home	furniture	4.50	2912.82	0.76
-AAAAAAAAEIIAAAAA	Independent, other conclusions ought to die hands. Proposed, lovely days celebrate doubtless children. Correct, eastern kinds used to teach across social, gradual years; here seriou	Home	furniture	41.55	4068.11	1.06
-AAAAAAAAEOEEAAAA	Now political pages will refer active frie	Home	furniture	7.81	17063.04	4.48
-AAAAAAAAFGBBAAAA	So inc clients may tell as. Mothers could point points. Increasing, alone gifts 	Home	furniture	1.23	1731.98	0.45
-AAAAAAAAFGKBAAAA	Perhaps original notes 	Home	furniture	0.75	5460.46	1.43
-AAAAAAAAFNBAAAAA	Happy laws sit on the powers. Quickly convenient newspapers 	Home	furniture	0.16	265.44	0.06
-AAAAAAAAFPKBAAAA	Perfectly coming moments used to rely industrial things. Private, other fig	Home	furniture	0.65	2941.40	0.77
-AAAAAAAAGFPAAAAA	Profits deliver. Even possible guidelines ought to cry new teeth; necessary events will hear quickly counties. Pocket	Home	furniture	7.31	9136.04	2.40
-AAAAAAAAGJBEAAAA	Elaborate periods bother also considerable republics. Streets cannot serve freshly 	Home	furniture	2.34	7225.31	1.89
-AAAAAAAAGNKDAAAA	At least literary months might arise incomes. Just industrial fingers use only precise agreements. Also spanish hands could perform through the communications. So as beautiful 	Home	furniture	1.39	25907.70	6.80
-AAAAAAAAGPJCAAAA	Very, great fingers shall not receive open experiences. Back years grow extensive, eng	Home	furniture	9.36	11962.72	3.14
-AAAAAAAAHACBAAAA	Institutions ought to need projects. As possible citizens used to like here british male estates. Long, essential exceptions must win national, original outcomes; correspondi	Home	furniture	3.58	2589.31	0.68
-AAAAAAAAHJIBAAAA	Systems could go drugs. Forces say more; wings shall not tell too relatively small scientists. Then mad blues flow. Complete, tremendous officers would not explain indeed years. Exc	Home	furniture	9.66	8975.86	2.35
-AAAAAAAAHNBEAAAA	Tomorrow able reasons might take grey, major activities. Sensitive, so-called factors must sho	Home	furniture	4.12	43.16	0.01
-AAAAAAAAHPIBAAAA	English, effective children teach reluctantly popular, sad successes. Heroes must not sing both unchange	Home	furniture	7.49	5366.27	1.40
-AAAAAAAAIBDCAAAA	Contacts mak	Home	furniture	4.56	8994.14	2.36
-AAAAAAAAICIBAAAA	Never regional years may get absently greatly red services. Dangerously fascinating profits must return very hands. Unlikely, 	Home	furniture	3.84	8700.48	2.28
-AAAAAAAAIIABAAAA	Religious, new movements learn successive magistrates. Comfortable, 	Home	furniture	2.01	2138.52	0.56
-AAAAAAAAJDEDAAAA	Ro	Home	furniture	3.69	420.40	0.11
-AAAAAAAAKBOAAAAA	Extraordinary churches increase thereby little orders. Measu	Home	furniture	3.41	8903.93	2.33
-AAAAAAAAKCIDAAAA	Total efforts communicate horribly primary circumstances. Times should meet severely to the resources. Full, economic residents must manipu	Home	furniture	2.94	3820.68	1.00
-AAAAAAAAKFMBAAAA	Other, elaborate organisations throw for a communists. Prime, dead programmes secure ready, glad beds. Main, big animals dry. Secondary months study quickly global troops. Situ	Home	furniture	9.94	1238.00	0.32
-AAAAAAAAKHFAAAAA	Subsequent, serious gene	Home	furniture	4.93	15927.08	4.18
-AAAAAAAAKNECAAAA	Likely, fine manage	Home	furniture	9.60	4645.66	1.22
-AAAAAAAAKOIDAAAA	Rights pay	Home	furniture	4.07	4771.20	1.25
-AAAAAAAAKPEDAAAA	Other, top words hurt visitors. Given neighbours cut in particular main, functional changes. Perhaps primary terms will devote later other, natural offi	Home	furniture	1.63	18237.78	4.79
-AAAAAAAALIPDAAAA	Star differences ought to lose similarly in the merchants. Everyday, high values will see particularly. Clear men can put just. Degrees stick ever over new parties. Willing, equal customers can ta	Home	furniture	4.93	3821.68	1.00
-AAAAAAAAMCDCAAAA	Other others must seem increasingly despite a exhibitions. Literary types enable quite by no means criminal pictures. Marks obtain around savings; average, quiet years attack also. Well separate pric	Home	furniture	5.99	7966.45	2.09
-AAAAAAAAMDHAAAAA	Asleep rights continue over papers. Yesterday poor combinations ought to like votes. Hardly similar manufacturers used to see groups. Rel	Home	furniture	65.51	16215.45	4.25
-AAAAAAAAMOCAAAAA	Weeks will claim at a hands. Cuts meet smart, relevant lawyers. Enormous sides should 	Home	furniture	23.89	1318.20	0.34
-AAAAAAAANPFBAAAA	Good, vulnerable worlds could take recently actually estimated agents. Unusual ideas work else sentences. More wide fortunes may embrace even black difficult tasks. Deep,	Home	furniture	6.59	1384.29	0.36
-AAAAAAAAOAGDAAAA	Streets stare only much respective twins. National, important branches move today outside upper children. Areas oug	Home	furniture	3.81	12377.22	3.25
-AAAAAAAAODDDAAAA	Ni	Home	furniture	0.83	1902.40	0.49
-AAAAAAAAOEDEAAAA	National, new hotels mean for a variables. Countries may not spend on the quarters. Else common differences used to call much on a months. New events perform too. Immense, perfect things reform	Home	furniture	0.27	242.76	0.06
-AAAAAAAAOKGBAAAA	Total, various theories can mean that is too religious men. Administrative men m	Home	furniture	4.99	3683.97	0.96
-AAAAAAAAONEAAAAA	Social, young days guide presumably. Somehow old servants return so	Home	furniture	2.18	6558.95	1.72
-AAAAAAAAOPMCAAAA	Things require quite western authors. Charges alert in order famous activities. Aware products put. Women may not back rarely thus difficult features. Misleading missiles 	Home	furniture	98.71	693.10	0.18
-AAAAAAAAACMCAAAA	In particular explicit publications used to like well babies. Participants used to	Home	glassware	26.87	1521.32	0.44
-AAAAAAAAAKMAAAAA	Proper things ought to come sometime	Home	glassware	3.56	1682.70	0.48
-AAAAAAAABECDAAAA	Workers remember more in a programs. Other, real matters will not outline usually on a assets. Regional rules may make therefore both necessary hours. Seconds finance alw	Home	glassware	9.42	6255.90	1.81
-AAAAAAAABHBBAAAA	Divine, physical teachers 	Home	glassware	9.87	6419.73	1.86
-AAAAAAAABJJDAAAA	Final office	Home	glassware	86.90	809.50	0.23
-AAAAAAAACALAAAAA	Relations should influence merely normal reactions. Empty comments clean really fa	Home	glassware	21.40	10300.76	2.99
-AAAAAAAACCDEAAAA	Crucial, familiar positions ought to occupy trees;	Home	glassware	8.11	10877.81	3.16
-AAAAAAAACELDAAAA	Rules complain chosen, 	Home	glassware	1.35	10828.60	3.14
-AAAAAAAACGDDAAAA	Always regular rules used to keep finally. Small phenomena shall disturb thereby. Well late schools may afford increasingly e	Home	glassware	7.31	2143.49	0.62
-AAAAAAAACHLAAAAA	Sad profits get independently with a women. Discussions drive schools. Then basic beliefs find generally traditionally funny sectors. French, certain lawyers would see. Good, black nations promote ex	Home	glassware	9.53	981.72	0.28
-AAAAAAAACIHCAAAA	English words ought to achieve much about a laws. Strong, british areas expect here major modules. Ethnic, liable lengths see equally terms. Large neighbours will hope minutes; o	Home	glassware	0.74	5720.20	1.66
-AAAAAAAACLJDAAAA	Techniques sense; times blame by the hands. Much scottish executives would need powerful years. Growing hotels shall take meanwhi	Home	glassware	3.09	13028.88	3.78
-AAAAAAAACMLAAAAA	Years make otherwise others. Windows accept. Black, contemporary appointments study 	Home	glassware	2.21	8303.46	2.41
-AAAAAAAADFEBAAAA	Professional eyes listen. Yet beautiful charges might drive roughly. Audiences play less cases. Existing, initial others should not help; left, partial tools ought to work partly there wrong person	Home	glassware	4.82	7441.50	2.16
-AAAAAAAADKJDAAAA	Neither nice aspects will express contrary, old sets. For example financial problems will attract roughly; subsequently early relationships ought to wait o	Home	glassware	7.85	15609.44	4.53
-AAAAAAAAEDCBAAAA	Main problems proceed then 	Home	glassware	7.57	5771.10	1.67
-AAAAAAAAEIFDAAAA	Illegally british days ought to create only. Open notes climb mostly just natural areas. Brief savings get months. Familiar, exclusive women enable critical powers. New, functional ports would	Home	glassware	19.85	6360.23	1.84
-AAAAAAAAEJMAAAAA	Kinds mean never different weeks. Likely areas ask perhaps. Beautiful rights may not celebrate working-c	Home	glassware	3.81	1557.40	0.45
-AAAAAAAAELNDAAAA	Scores could make even commercial days; final, good studies shall look really low, fine districts. Months like even agricultural systems. Others look industrial things; bas	Home	glassware	15.38	2310.12	0.67
-AAAAAAAAFFFEAAAA	Wings hesitate well great gaps. Firm texts know very on a men; territo	Home	glassware	23.04	7748.89	2.25
-AAAAAAAAFFMDAAAA	Working, gold proteins lie wide possi	Home	glassware	17.12	9562.36	2.77
-AAAAAAAAFJODAAAA	Even effective schools may make ways. Years raise hence main, public countries. Usual, national arguments must tend old, poor masses. Open big 	Home	glassware	3.60	7800.56	2.26
-AAAAAAAAFKKDAAAA	Governments could see also. Policies used to rely only new dealers. Boats used to participate then for a forests. Front banks breathe behind a wings; i	Home	glassware	7.46	9538.00	2.77
-AAAAAAAAGEAEAAAA	Full, wrong intervals attend simple teachers; more early 	Home	glassware	0.77	1031.25	0.29
-AAAAAAAAGHDBAAAA	Even royal packages stop in a minutes. Possible purposes	Home	glassware	8.13	7998.05	2.32
-AAAAAAAAGHMBAAAA	Main, nervous preferences find certainly constant reasons. Open, primary boys zero rats	Home	glassware	1.78	6638.55	1.92
-AAAAAAAAGIJAAAAA	Techniques expand however activities. Clergy sustain young boys. Sufficient parts ask representatives; very poor years would slip at least low directors. Required estates join too. Pub	Home	glassware	8.06	13080.85	3.80
-AAAAAAAAGLFAAAAA	Extremely level sources hear; months make less above common materials. Main, unpleasant parts allow workers. Foreign, yellow interests go teeth. Academic yards would not 	Home	glassware	2.84	7046.23	2.04
-AAAAAAAAGPDBAAAA	Personnel need actually	Home	glassware	33.93	4770.05	1.38
-AAAAAAAAGPEDAAAA	Almost comprehensive cases know unfortunately hard courses; there determined rules shall make even hard, close years. Existing, red sentences name. Experts help slowly players. 	Home	glassware	78.89	2097.81	0.60
-AAAAAAAAHGOBAAAA	Royal things think that clearly free prayers. Temporary errors used to collect catholic, colourful pains. Eggs turn instead units. Even separate farms say soon to a considerati	Home	glassware	9.91	3555.97	1.03
-AAAAAAAAHIDEAAAA	Political paths should go inc years. New materials shall represent results. Very, actual trees will make that is new, la	Home	glassware	6.93	5472.80	1.59
-AAAAAAAAIAGDAAAA	B	Home	glassware	2.51	6669.44	1.93
-AAAAAAAAINMBAAAA	Expensive workers should not say accurately old ideas. Later arab types will last still reforms. Ev	Home	glassware	1.29	5640.78	1.63
-AAAAAAAAIPOAAAAA	Comprehensive plans must plan even in a rules. Intermittently good children can form notions. Negative, likely sectors open even devices. Invisible,	Home	glassware	6.21	5888.76	1.71
-AAAAAAAAJFFAAAAA	Exact jews make again regional times	Home	glassware	0.82	3742.98	1.08
-AAAAAAAAJNMDAAAA	Reports ask as physical maps; keen, temporary hotels would stick now direct details. Only, notable developments ought to hear technically ruling forces; at least 	Home	glassware	4.60	4751.98	1.38
-AAAAAAAAKHECAAAA	Only, subsequent minerals should exist just f	Home	glassware	4.69	335.94	0.09
-AAAAAAAAKMOCAAAA	Chiefly closed characteristics avoid automatically very men. Certain, new years run poor, continuing hours. Expressions operate acts. Key objections should 	Home	glassware	81.00	3851.81	1.11
-AAAAAAAAKPICAAAA	Easily adv	Home	glassware	4.25	9484.34	2.75
-AAAAAAAALIBCAAAA	Prices want near flo	Home	glassware	1.92	9191.51	2.67
-AAAAAAAALPIAAAAA	Full directions confer about very active figures. Delicious keys could not call for 	Home	glassware	3.65	302.96	0.08
-AAAAAAAAMAGBAAAA	Full observations might not undertake high. Councils should not bear years. Complex circumstances mean for long statistical, empty years	Home	glassware	8.29	5825.82	1.69
-AAAAAAAAMFJAAAAA	Contents include at the friends. Men might result severe, desirable vegetables. Traditional	Home	glassware	0.74	4864.97	1.41
-AAAAAAAAMHDDAAAA	Goods go further recent words. Special, specific rights used to challenge then. Tomorrow concerned musicians must not lend from a shelves. Once	Home	glassware	9.65	9352.86	2.71
-AAAAAAAAMLBEAAAA	Further dirty police cannot think universally committees. Genuine soldiers might not cancel urgently additional, vast participants; only hot years take usually sums; materials cannot shake	Home	glassware	2.32	308.31	0.08
-AAAAAAAAMPLCAAAA	Welsh, red hours shall not agree public, certain components; then exciting minutes should avoid quite white blank organisers. That real systems will put at last measures. Never	Home	glassware	0.81	7536.62	2.18
-AAAAAAAANAKCAAAA	False concerns shall concentrate either useful animals. Companies requ	Home	glassware	5.38	1115.12	0.32
-AAAAAAAANCAEAAAA	Well complete users may not appear men. Recent mechanisms would pr	Home	glassware	4.16	178.36	0.05
-AAAAAAAANDECAAAA	French detectives might discuss as objective rewards; trees should not allocate. Civil images cause here year	Home	glassware	8.44	6843.91	1.98
-AAAAAAAANICCAAAA	Possible services can think in addition in a institutions. Able, hard grounds will choose mixed kilometres	Home	glassware	4.44	1529.66	0.44
-AAAAAAAANNACAAAA	Long, good regions shall make under institutional societies. Disciplinary, unique clubs shall calm only more awkward females. Theories come hardly inappropriate issues;	Home	glassware	1.67	8034.73	2.33
-AAAAAAAANNODAAAA	Businesses profit probably monetary neighbours. Too important members would produce. Careful tales used to believe far, primary plans. Workers accept again 	Home	glassware	4.52	317.65	0.09
-AAAAAAAAOACEAAAA	Grand years must not provide c	Home	glassware	5.39	2062.53	0.59
-AAAAAAAAOAPCAAAA	Very offers isolate also long runs. Police find now new newspapers. Types ought to base there national 	Home	glassware	4.89	2360.69	0.68
-AAAAAAAAOFKCAAAA	Years give maybe bright, domestic variations; public standards may use especially necessary	Home	glassware	2.27	5078.67	1.47
-AAAAAAAAOGFEAAAA	As small boundaries might move however consumers. Just brothers allow relatively later tired	Home	glassware	3.98	4731.58	1.37
-AAAAAAAAOOAAAAAA	High, japanese terms recapture far from tightly similar sections; widespread, romantic teeth shall sort so elabo	Home	glassware	2.39	6427.89	1.86
-AAAAAAAAPAGEAAAA	Anyway hard actors ought to transport often accurate significant limits. Others should try. Only italian words will not make fresh officers; quickly correct operations could recognise just 	Home	glassware	1.61	81.34	0.02
-AAAAAAAAPCLAAAAA	Different shops will hear far strong, physical purposes. Ages should g	Home	glassware	3.91	15492.80	4.50
-AAAAAAAAPMDEAAAA	Earlier educational solicitors shall not want long societies. Skills must not d	Home	glassware	8.66	7876.70	2.28
-AAAAAAAAAFGCAAAA	Hands may not take in a affairs. Early details shall keep often weekly, relevant months. Local, informal companie	Home	kids	2.29	1215.27	0.48
-AAAAAAAAANKDAAAA	Perfectly other documents respect almost; wide capital prices put quiet months. Please professi	Home	kids	4.01	627.93	0.25
-AAAAAAAAAOMCAAAA	Public, simple eyes can say forever against a opportunities. About outside police u	Home	kids	9.04	3291.90	1.32
-AAAAAAAAAPPCAAAA	True, red 	Home	kids	9.30	714.26	0.28
-AAAAAAAABBFDAAAA	Substantially slight tests used to convert national facilities.	Home	kids	2.21	13011.51	5.22
-AAAAAAAABIDBAAAA	Workers let pr	Home	kids	1.17	8583.68	3.45
-AAAAAAAACFCCAAAA	Military streets prove much easy toys; women deal particular, musical men. Black, great minutes used to live just skills. Basic, great tasks earn extremely wonderful chiefs; local, nat	Home	kids	3.01	323.37	0.12
-AAAAAAAACFPBAAAA	Babies ought to take yesterday. Females will pretend often neigh	Home	kids	9.78	12169.00	4.89
-AAAAAAAADHPAAAAA	Hundreds will not stop great years. Methods ought to last vaguely plants. 	Home	kids	1.35	2173.08	0.87
-AAAAAAAAEELAAAAA	Years want as a whole. Public eyes shall win against a books. Special minutes intensify stones. Alone, right fingers spring men. Ho	Home	kids	1.73	1370.04	0.55
-AAAAAAAAEHFAAAAA	Actively fair matches will like even; brit	Home	kids	3.14	7479.82	3.00
-AAAAAAAAEJJDAAAA	New, average legs find long effects. Junior principles could cause for ever historical, equal movements; domest	Home	kids	2.31	1378.45	0.55
-AAAAAAAAFCJDAAAA	Urban, upper forces may see alone commercial, other terms. Hopes support. St	Home	kids	2.98	5454.85	2.19
-AAAAAAAAGELCAAAA	Marked, liberal boys develop regular creditors. Regional police cope up to a incidents. Good, aggressive forces go thus. Net, brit	Home	kids	8.27	11969.69	4.81
-AAAAAAAAGINBAAAA	Much funny candidates smell by a weeks. Forms know please for a classes. There important la	Home	kids	1.74	7539.69	3.03
-AAAAAAAAIEJCAAAA	Days make there great, firm voters. Friends listen now lively tenants; also italian views used to know	Home	kids	8.41	14060.53	5.65
-AAAAAAAAILJAAAAA	Detailed companies may facilitate in the suggestions; scottish hopes lead more good shelves. Long, increased years drive perhaps elderly pressures; all good game	Home	kids	9.84	1439.68	0.57
-AAAAAAAAIPOBAAAA	Molecules bear early affairs. Plans obscure efficiently. Police can keep silently new countries. Democratic, head years change min	Home	kids	2.62	6670.96	2.68
-AAAAAAAAJILDAAAA	Birds feel no longer much general cattle. Right, various cameras get closer. Resources could not offer just times. Only schemes should see so cards. Extreme, open girl	Home	kids	6.02	4173.46	1.67
-AAAAAAAAKBEEAAAA	Accurate children will help only european claims. Delighted assets wou	Home	kids	7.67	2367.65	0.95
-AAAAAAAAKBPDAAAA	Whole, hard terms used to put pretty in a resources. Surpr	Home	kids	7.66	1079.39	0.43
-AAAAAAAAKCNBAAAA	Almost unable supporters go others. Empty parties enter no lo	Home	kids	2.31	8537.94	3.43
-AAAAAAAALBABAAAA	Social, grand services appear already sounds. Later national positions ought to grow available hours. Offenders ca	Home	kids	8.02	12132.98	4.87
-AAAAAAAALBDBAAAA	Fo	Home	kids	1.39	6140.28	2.46
-AAAAAAAALOBCAAAA	Edges come most high residents. Opponents may not provide perhaps at a details. English, specific minutes obtain from a parts. More able holidays happen deeply. Natural o	Home	kids	2.33	29004.04	11.65
-AAAAAAAALPCAAAAA	Sorts might think full birds. New packages shall exceed sad arrangements. Problems cannot come together other employees.	Home	kids	1.54	3775.80	1.51
-AAAAAAAAMCFEAAAA	Yet public men wo	Home	kids	6.27	3429.73	1.37
-AAAAAAAAMDBEAAAA	Children must not carry concerned, only costs. Important powers would store bright meals; as bloody men talk also terms. Rare forms may mind with a assessments. Yesterday 	Home	kids	4.92	1476.31	0.59
-AAAAAAAAMDDBAAAA	Motives may not avoid animals; comparative contents must make in a customers. Similar women chase also interests. I	Home	kids	1.06	376.96	0.15
-AAAAAAAAMDEEAAAA	Total children used to find men. Carers build. Important, statutory heads write at the points; mar	Home	kids	6.59	7804.41	3.13
-AAAAAAAAMKCEAAAA	So small heads ought to help parents. Second	Home	kids	9.32	3379.22	1.35
-AAAAAAAAMKGBAAAA	So white republics squeeze however new days; effectively whole minutes cannot give more never alternative years. Natural changes would disc	Home	kids	1.23	2680.86	1.07
-AAAAAAAAMLJAAAAA	Industrial funds must stuff now weak men;	Home	kids	5.61	829.95	0.33
-AAAAAAAAMOIAAAAA	Small, awful foods may not want only successful, succes	Home	kids	1.56	1571.80	0.63
-AAAAAAAANABCAAAA	Democrats follow mostly available,	Home	kids	0.59	739.06	0.29
-AAAAAAAANCNDAAAA	Satisfactory, serious workers would come previous, africa	Home	kids	3.18	236.88	0.09
-AAAAAAAAOGMAAAAA	Rich, deep types go. Safe premises differ particul	Home	kids	5.55	11810.32	4.74
-AAAAAAAAOMIBAAAA	Bad files make below bad occasions. Local days grow now for a years. Only royal years should look again correct fears. Creatures seem new conditions. Trials keep. Branches wa	Home	kids	9.13	2346.24	0.94
-AAAAAAAAOPDCAAAA	Especially local thousands withdraw as workers. Else direct teams renew long indu	Home	kids	3.03	5971.02	2.39
-AAAAAAAAOPPCAAAA	Things must wait obvious, other drugs; behind difficult activities shall clarify realistically available, likely partners. Buses go beds. Troops would al	Home	kids	8.50	10631.61	4.27
-AAAAAAAAPEADAAAA	For example decent routes shall give specially ethnic common explanations. Aware animals shoul	Home	kids	1.28	4251.26	1.70
-AAAAAAAAPHAAAAAA	Private islands will complete large homes. Parts illustrate most in a operations; labour games could not use. Leaders feel. New groups shall not devote too pale characteristics. Mad thanks may not 	Home	kids	3.66	17378.77	6.98
-AAAAAAAAPIGCAAAA	So important pounds would not score precisely at a cells. Clear campaigns would fall now monthly databases. Processes ought to stand in par	Home	kids	37.00	6087.17	2.44
-AAAAAAAAPOBBAAAA	Already european mothers ought to impose big ever fixed parents. Dominant groups say even. Here basic weeks set as winners. Modern, young prayers release very environ	Home	kids	7.48	1114.96	0.44
-AAAAAAAAAAIDAAAA	General, planned allowances ought to confuse recommendations. Direct, foreign details should not to	Home	lighting	3.14	12421.28	3.76
-AAAAAAAAABBDAAAA	Unnecessary years appear free members. Texts 	Home	lighting	1.49	5431.02	1.64
-AAAAAAAAACPCAAAA	Extended, local books calm now likely companies. Sometime rich instances improve spanish countries. Crucial flames take further. Rapidly big proposals may not photograph in the opt	Home	lighting	0.55	811.46	0.24
-AAAAAAAAALLDAAAA	Poor, evolutionary cases might understand much white stars. High stages should not move terms. Lines ought to find firmly universal members. Gastric ages help doors; cheerful, old fees fall; nation	Home	lighting	9.74	4243.16	1.28
-AAAAAAAABMADAAAA	Other offers demand across on a gates. Also natural employers look sensitive obje	Home	lighting	3.83	3588.28	1.08
-AAAAAAAABMHCAAAA	Forces might place home. Professional lawyers might not grant for the schools. Competiti	Home	lighting	92.40	1235.50	0.37
-AAAAAAAACCHCAAAA	Quickly able ways 	Home	lighting	3.10	1547.56	0.46
-AAAAAAAACCMDAAAA	Realistic communities know times. Soft days might not stop rights. General g	Home	lighting	2.83	21163.05	6.41
-AAAAAAAACLOCAAAA	Regional times must seem immediate amounts. Full schools shall record great, respo	Home	lighting	0.80	3939.66	1.19
-AAAAAAAACMCBAAAA	Again other changes woul	Home	lighting	0.52	4270.23	1.29
-AAAAAAAACPKBAAAA	Years say from a deaths. Polite jeans see standards. Parties check elderly mice. Long young values would disguise before	Home	lighting	9.58	7904.23	2.39
-AAAAAAAADELBAAAA	Quickly hungry bills ought to cope errors. Professional pp. pay americans. Days allow. Ver	Home	lighting	0.36	9045.82	2.74
-AAAAAAAADFKBAAAA	Young, following parameters provide too clear customers. Possible, maximum services fall always new feelings. Scottish, communist projects benefit 	Home	lighting	1.47	345.00	0.10
-AAAAAAAADJOCAAAA	Rather proper personnel vie	Home	lighting	0.67	17311.20	5.24
-AAAAAAAAEBFBAAAA	Reduced, new persons must support journalists. Projects involve actually anonymous, conscious references. 	Home	lighting	0.77	1814.53	0.55
-AAAAAAAAECMBAAAA	A	Home	lighting	6.73	3212.00	0.97
-AAAAAAAAEDECAAAA	Local comments would appear failures. Sim	Home	lighting	0.55	10605.02	3.21
-AAAAAAAAEHFBAAAA	Strong, social authors speak fully still lucky results. Colonial groups used to satisfy ever open stages; words begin also about a patients. Chronic, noble allegations used to insist 	Home	lighting	7.24	1867.90	0.56
-AAAAAAAAEHJCAAAA	Small agents used to approve most finally simple words. Horses check dangerous, typical cuts. Clear polls can come only around central lines. Perhaps heavy officers tell involved sch	Home	lighting	5.88	7620.58	2.30
-AAAAAAAAFHDEAAAA	Keys should meet parties. Ministers leave members. Small, new students may take always individual letters. Video-taped levels think russian ingredients. Evident pieces secure merely biological, safe c	Home	lighting	1.63	9964.77	3.02
-AAAAAAAAGEPAAAAA	Social men build also national, key parents; boys may take particularly here lost reasons. Opportunities used to i	Home	lighting	56.67	13192.64	3.99
-AAAAAAAAGFMCAAAA	Later warm sports might not believe once; miners cannot take apparently never true rules. Talks used to seem even stable ideas. Intimate, coherent payments help. Years see	Home	lighting	3.31	5099.94	1.54
-AAAAAAAAGKBAAAAA	As other folk can remain quickly methods. Easy, othe	Home	lighting	1.87	5126.04	1.55
-AAAAAAAAGLDCAAAA	National, other ministers should spend more than increased programmes. Now psychological goods could change h	Home	lighting	3.09	1400.70	0.42
-AAAAAAAAHJADAAAA	Often contemporary strategies shall not afford terms. Cities sit. Constitutional companies get now natural target	Home	lighting	80.52	7683.20	2.32
-AAAAAAAAHOEAAAAA	Main, aware rights will not escape under the systems. Circumstances must introduce just as a children. Publ	Home	lighting	1.46	3116.94	0.94
-AAAAAAAAICAAAAAA	Deep good activities should resist to a substances; that is beautiful businessmen like problems. Late huge meet	Home	lighting	9.93	611.18	0.18
-AAAAAAAAIHDEAAAA	Parliamentary shareholders must not want very in a parts. Rich, national conditions might provide finally economic, difficu	Home	lighting	5.16	1480.98	0.44
-AAAAAAAAIIECAAAA	Green patients will tell impossible skills. Seconds might write sadly ove	Home	lighting	1.51	8830.92	2.67
-AAAAAAAAIIEDAAAA	Less right powers come fast on a writers. Particularly different numbers cannot tackle personal, top studies. Women can want early inherent, british streets. Soon young card	Home	lighting	1.45	478.06	0.14
-AAAAAAAAIOBDAAAA	Problems might not get also current minutes. Women wear happily values. Resul	Home	lighting	4.65	14550.92	4.41
-AAAAAAAAJGKDAAAA	Main weeks surrender more beyond a views. Popular, payable agencies cannot c	Home	lighting	6.05	739.08	0.22
-AAAAAAAAJKIBAAAA	Comments may not form. Similar clothes cannot know even through a kids; surprising, adjacent matters upset namely standards. Especially new words make. Immediately wooden reasons read to a findi	Home	lighting	9.57	4248.79	1.28
-AAAAAAAAKAFBAAAA	Possible, white matters may overcome twice distinct projects. Digital shares will like silent loans. Difficult, other children cannot know goa	Home	lighting	0.46	7074.05	2.14
-AAAAAAAAKBKCAAAA	Years will not avoid times. Actual, outer texts would live. Little, sufficient attempts used to give finally governmen	Home	lighting	2.67	7727.41	2.34
-AAAAAAAAKEJDAAAA	In particular small principles reach with the rights; rows should look effective, available words. Northern, thin lists may see more liberal elections. Too necessary figu	Home	lighting	5.99	709.92	0.21
-AAAAAAAAKJMAAAAA	Imaginative games distinguish ambitio	Home	lighting	2.46	457.92	0.13
-AAAAAAAALBBAAAAA	New, labour players must start subsequently magnetic values. Dark problems laugh; accountants	Home	lighting	9.13	2519.13	0.76
-AAAAAAAALBEAAAAA	Proposed facilities might prefer. Pages can go appropriate, friendly titles. Doctors m	Home	lighting	48.57	3568.05	1.08
-AAAAAAAALCGAAAAA	R	Home	lighting	3.18	11394.38	3.45
-AAAAAAAAMJBDAAAA	Different states teach beneath royal houses. British countries could express residents; more educatio	Home	lighting	5.66	10865.56	3.29
-AAAAAAAAMMIAAAAA	Scenes should	Home	lighting	8.25	549.90	0.16
-AAAAAAAAMMJCAAAA	Sexual strangers should eat around horrible observations. Applications 	Home	lighting	6.23	9864.00	2.99
-AAAAAAAAMPGBAAAA	Phases would sell scarcely. Seats work here secret variations. Reports order no	Home	lighting	35.49	330.53	0.10
-AAAAAAAANEKBAAAA	Hardly continental possibilities might proceed most for a values. Then following groups face. Loud other patients will approach only. Current practices will say nice, productive languages. Reportedly	Home	lighting	0.78	20387.00	6.17
-AAAAAAAAOAECAAAA	Perhaps other hands indulge. Classes identify especially important issues. Chief, full pounds try present problems. Categories summarise then national women. Unable children might no	Home	lighting	9.45	4379.10	1.32
-AAAAAAAAOAIBAAAA	Terms kiss now to a names. Bottles may not make also new, certain problems. Pregnant, special traditions would not capture purely. Definitely large others	Home	lighting	2.70	6783.81	2.05
-AAAAAAAAOCDDAAAA	Apart supreme teams shall see as a angles. Courses would not sell me	Home	lighting	0.96	21953.50	6.65
-AAAAAAAAOHBBAAAA	Grounds could not advise sophisticated, economic members. Firm roads regard home	Home	lighting	7.17	12896.16	3.90
-AAAAAAAAOJAAAAAA	General personnel should take by the pictures; personal, ol	Home	lighting	9.17	7131.41	2.16
-AAAAAAAAPDBDAAAA	Orders satisfy all colleges. Years resist warm, invis	Home	lighting	6.29	6401.87	1.94
-AAAAAAAAABKCAAAA	Assessments get barely simple, pro	Home	mattresses	0.10	5540.53	1.62
-AAAAAAAAABNAAAAA	Motives shall inform current, potential contracts. Natural, official centres spend more than here free libraries. Poor, other possibilities want behind a knees. Still st	Home	mattresses	2.41	12828.63	3.75
-AAAAAAAAAEGBAAAA	Leaves register important observers. Genuine authorities ought to fire then standard, heavy wives; sure significant shadows gain high. Mental, great seats work other, low resources. Busy, scot	Home	mattresses	9.67	7826.30	2.29
-AAAAAAAAAHAEAAAA	Around back institutio	Home	mattresses	39.85	3034.90	0.88
-AAAAAAAAAKJBAAAA	Social, back times might not call. Capable men go therefore at the banks. Officially hot actions show very. Whole writers ought to get. Over crude levels wo	Home	mattresses	0.94	6924.42	2.02
-AAAAAAAAAMBDAAAA	Personal, back colleagues work	Home	mattresses	18.69	13695.56	4.00
-AAAAAAAABHIDAAAA	Nearly large-scale score	Home	mattresses	34.83	3827.77	1.12
-AAAAAAAACJBEAAAA	Scientists stay small patients; easy, thin authorities kill; cases must settle other stocks; employees ought to acquire together men. For instance obvious	Home	mattresses	4.46	14706.12	4.30
-AAAAAAAACMBEAAAA	Only hard years would take just. Only proud men matter again less interested days; video-taped, unlikely shares bear now into the rivers	Home	mattresses	1.95	2509.69	0.73
-AAAAAAAADDGBAAAA	Almost new charges prove necessary provinces. Days lose almost	Home	mattresses	4.20	9185.48	2.68
-AAAAAAAADGKDAAAA	Senior days shift. Annua	Home	mattresses	8.94	5745.46	1.68
-AAAAAAAAEENBAAAA	Rounds ought to ask doubtful c	Home	mattresses	4.72	4799.06	1.40
-AAAAAAAAEFHDAAAA	Female birds like still years; 	Home	mattresses	2.27	2342.50	0.68
-AAAAAAAAEGADAAAA	Individuals act. Merely other phrases notice on a sanctions. Courses can embody. Relatively creative subjects hear very at a letters; financial, useful eyes c	Home	mattresses	6.23	1991.78	0.58
-AAAAAAAAEGDDAAAA	Just personal gardens love other services. Catholic years judge so. Other, other eyes improve seriously 	Home	mattresses	0.74	9278.72	2.71
-AAAAAAAAEGOCAAAA	Primary sentences go in a arguments; eventually tiny shows should see. Very present parents say however equal, visible markets. Other,	Home	mattresses	1.44	7748.63	2.26
-AAAAAAAAELDCAAAA	Lucky, new buses place aged a packages; new forces	Home	mattresses	2.33	4153.52	1.21
-AAAAAAAAENLAAAAA	Adverse prayers promote open, main limitations. Women cou	Home	mattresses	4.08	359.66	0.10
-AAAAAAAAFKCCAAAA	Main conditions can form further 	Home	mattresses	7.56	9673.94	2.83
-AAAAAAAAFLLBAAAA	Open, special levels cannot shut of course at a interests. Much main months alleviate married arms. Months produce drinks. Worlds find now twice other studies	Home	mattresses	4.35	14494.02	4.24
-AAAAAAAAFLNCAAAA	Surprisingly additional dogs go without a glasses; examinations consider schools. Clear workers may not complete ago local nu	Home	mattresses	4.63	3845.81	1.12
-AAAAAAAAGHDDAAAA	Endless, interested eyes can unde	Home	mattresses	5.12	16766.17	4.90
-AAAAAAAAGHKAAAAA	Good spatial othe	Home	mattresses	6.71	449.79	0.13
-AAAAAAAAHAKCAAAA	Personal, economic shares could hear wide in a girls. Books might not contemplate words. Details experience. Economic refugees walk only economic, main parts. P	Home	mattresses	57.39	3407.38	0.99
-AAAAAAAAHICCAAAA	Low, difficult services disarm nowhere by the tests. Observations will evolve scientific weeks. Good, easy pu	Home	mattresses	3.73	2273.62	0.66
-AAAAAAAAIEAEAAAA	Difficult, low needs ought to notice into a mammals. Towns will support also efficient glasses; common workshops would ch	Home	mattresses	9.94	10317.35	3.01
-AAAAAAAAIEEDAAAA	Well interesting symbols receive scenes. Especially equal communities ought to listen directly by a words; following, dramatic c	Home	mattresses	1.55	1075.25	0.31
-AAAAAAAAIEEEAAAA	Firms lead by the followers. Estimated, rigid probl	Home	mattresses	16.16	462.86	0.13
-AAAAAAAAIEHDAAAA	Relations must not want. Generally econo	Home	mattresses	1.21	1041.50	0.30
-AAAAAAAAIJGCAAAA	Officers help all. Personal duties conflict well as a others; affairs elect between a sales; respective mammals begin with a official	Home	mattresses	0.59	5785.83	1.69
-AAAAAAAAIJIBAAAA	New, total organizations call at a aspects. Rates go often details. Local, magic services choose much with a police. Authorities push for a windows. Lovers must believe currently ltd. 	Home	mattresses	28.77	45.87	0.01
-AAAAAAAAIKBEAAAA	Thick	Home	mattresses	8.85	7911.90	2.31
-AAAAAAAAJCODAAAA	Professionally alive documents examine thin, industrial pages; european, dark effects use rivers. Difficult, simple rules must build lawyers. Video-taped departments test also upp	Home	mattresses	6.86	1199.96	0.35
-AAAAAAAAJGNDAAAA	Other shoulders ought to seek at a cou	Home	mattresses	30.96	276.50	0.08
-AAAAAAAAKADDAAAA	Also indian facilities satisfy often absolutely free things. Separate, blu	Home	mattresses	7.14	1771.20	0.51
-AAAAAAAAKBIDAAAA	Available, particular seats should question in response to a police. Discussions may visit stand	Home	mattresses	2.27	3059.10	0.89
-AAAAAAAAKIDCAAAA	Well different centuries mean also foreign, large years; agents can draw almost in respect of a qualities. Left produc	Home	mattresses	2.46	1321.00	0.38
-AAAAAAAAKKOBAAAA	Hours woul	Home	mattresses	2.11	12633.62	3.69
-AAAAAAAAKPPBAAAA	Prime 	Home	mattresses	0.60	5227.40	1.52
-AAAAAAAAKPPDAAAA	Events go ago enterprises. Yet senior men must not wander true, local pieces. Comparative standards could use however at a wars. Fo	Home	mattresses	0.16	8994.37	2.63
-AAAAAAAALFBCAAAA	Separate boys light only national samples. Other, given lengths include only under natural circumstance	Home	mattresses	1.71	9279.28	2.71
-AAAAAAAALGCAAAAA	Voters cause already urban, formal children. Medieval shares must not spare human, crazy things; so public 	Home	mattresses	9.27	4863.71	1.42
-AAAAAAAAMAOCAAAA	Gates might press here solid applicants; novel, probable minutes get basic processes. Happy bonds might admit even for the words. Only, royal languages used to back again yesterday 	Home	mattresses	7.31	530.46	0.15
-AAAAAAAAMELCAAAA	Single charges stand eventually then mental wines. Flexible days find through the men; surprising producers improve for a churches; mental officials might not oust particularly m	Home	mattresses	9.99	3016.88	0.88
-AAAAAAAAMFFBAAAA	Relative reactions begin completely today shy proposals. United, good feelings should get nearly 	Home	mattresses	1.82	7981.60	2.33
-AAAAAAAAMHFEAAAA	Again afraid friends expose pairs; women tend additional churches. Only good criticisms think welcome, appropriate points. More private packages choose less relati	Home	mattresses	3.36	7984.75	2.33
-AAAAAAAAMILDAAAA	So thick services might leave very only retail c	Home	mattresses	2.84	3939.79	1.15
-AAAAAAAAMJHAAAAA	Officials calculate in the images. Military, olympic services throw apparently old photographs; exotic, wonderful children benefit	Home	mattresses	9.36	2765.00	0.80
-AAAAAAAAMLIDAAAA	Fo	Home	mattresses	0.33	3335.98	0.97
-AAAAAAAAMLLAAAAA	There high houses live only educational troops. Quickly marve	Home	mattresses	3.26	4137.92	1.21
-AAAAAAAAMOFDAAAA	Wrong, vague margins rise good, efficient powers. New, single particles ought to demonstrate again young, cheerful drugs; probably old years view so. Mental purposes ought to continue appr	Home	mattresses	9.35	3227.01	0.94
-AAAAAAAANCOCAAAA	Most fine carers o	Home	mattresses	1.67	1075.19	0.31
-AAAAAAAANFMBAAAA	Usually desperat	Home	mattresses	1.51	9118.22	2.66
-AAAAAAAANPECAAAA	Officials help home through a problems. Positive heads might reach also here difficult machines. Countries might lead french, liab	Home	mattresses	3.60	360.71	0.10
-AAAAAAAAOBNAAAAA	Never lucky windows go mature aspects. Studies might run subsequently; likely, industrial facilities should not carve sufficient eyes; early, english benefits invi	Home	mattresses	1.41	19891.47	5.82
-AAAAAAAAODPDAAAA	Criteria would not adjust a bit dominant cars. British weeks could not c	Home	mattresses	4.31	4578.06	1.33
-AAAAAAAAOFMAAAAA	Brown states read responsible, s	Home	mattresses	4.81	18258.81	5.34
-AAAAAAAAOMBEAAAA	Known, american talks can direct. Outer, apparent tools play still great, ma	Home	mattresses	1.30	1057.98	0.30
-AAAAAAAAPPAEAAAA	Bad, new 	Home	mattresses	2.23	7808.15	2.28
-AAAAAAAAACODAAAA	Satisfactory, careful ways would move however common, clear windows. Yesterday existing hours thin	Home	paint	6.21	5874.04	1.48
-AAAAAAAAAJEDAAAA	Also different others might take great, only problems. Then i	Home	paint	1.32	3350.89	0.84
-AAAAAAAAANABAAAA	Signs would repeat enough economic, annual books. 	Home	paint	67.01	9168.83	2.31
-AAAAAAAAAOBEAAAA	Large, western bodies match already sensitive, overall others. General, willing duties reach assistant parents. Emotional representations would not assure. Alternative, crucial sales may make runnin	Home	paint	4.69	3104.66	0.78
-AAAAAAAAAOOAAAAA	Small ways get usually then physical processes; important ministers will not perform else over a features. Relations like years. New, elegant holes should roll soviet, social plan	Home	paint	4.37	4306.60	1.08
-AAAAAAAABDGAAAAA	Blue, financial opportunities could hope social humans. Lights must vote states. Then new companies make important, a	Home	paint	4.83	375.21	0.09
-AAAAAAAABEIDAAAA	Just, different women will realise then to a months. Different documents will go far poor areas. 	Home	paint	1.57	15707.19	3.96
-AAAAAAAABOHDAAAA	Yet early inches used to inquire very variable, friendly repor	Home	paint	8.38	1844.61	0.46
... 29403 lines suppressed ...


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org