You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by sh...@apache.org on 2020/11/06 04:54:28 UTC

[asterixdb] branch master updated: [ASTERIXDB-2784] Handling large objects in join

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 638dbd8  [ASTERIXDB-2784] Handling large objects in join
638dbd8 is described below

commit 638dbd8bdb2bfa8c98d9f08f1e6f6bded63aa80d
Author: Shiva <sh...@uci.edu>
AuthorDate: Thu Nov 5 10:39:30 2020 -0800

    [ASTERIXDB-2784] Handling large objects in join
    
        - user model changes: no
        - storage format changes: no
        - interface changes: no
    
        Details:
        - Do not allow the spilled partitions to get more than one regular
        frame in hybrid hash join and flush the big objects mapped to
        spilled partitions directly to the disk.
        - Decreasing the join memory to the value before change
        8123:[ASTERIXDB-2783] Fix hash collision for hash join/groupby.
    
    Change-Id: I9b5a2d25cd95e880264d70624aeb88302714989f
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/8463
    Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Reviewed-by: Ali Alsuliman <al...@gmail.com>
---
 asterixdb/asterix-app/src/main/resources/cc.conf   |    2 +-
 asterixdb/asterix-app/src/main/resources/cc3.conf  |    2 +-
 .../src/test/resources/cc-compression.conf         |    2 +-
 .../asterix-app/src/test/resources/cc-ssl.conf     |    2 +-
 .../big_object_join/big_object_join.4.query.sqlpp  |   34 +
 .../api/cluster_state_1/cluster_state_1.1.regexadm |    2 +-
 .../cluster_state_1_less.1.regexadm                |    2 +-
 .../results/big-object/big_object_join/join.2.adm  | 1500 ++++++++++++++++++++
 .../big_object_join/big_object_join.4.ast          |   85 ++
 .../IPartitionedTupleBufferManager.java            |    1 +
 .../VPartitionTupleBufferManager.java              |   16 +-
 .../dataflow/std/join/OptimizedHybridHashJoin.java |   50 +-
 12 files changed, 1674 insertions(+), 24 deletions(-)

diff --git a/asterixdb/asterix-app/src/main/resources/cc.conf b/asterixdb/asterix-app/src/main/resources/cc.conf
index a8ff2a9..e8f9897 100644
--- a/asterixdb/asterix-app/src/main/resources/cc.conf
+++ b/asterixdb/asterix-app/src/main/resources/cc.conf
@@ -55,7 +55,7 @@ log.level = INFO
 compiler.framesize=32KB
 compiler.sortmemory=320KB
 compiler.groupmemory=160KB
-compiler.joinmemory=768KB
+compiler.joinmemory=256KB
 compiler.textsearchmemory=160KB
 compiler.windowmemory=192KB
 compiler.sort.parallel=false
diff --git a/asterixdb/asterix-app/src/main/resources/cc3.conf b/asterixdb/asterix-app/src/main/resources/cc3.conf
index 6d69b75..121ed85 100644
--- a/asterixdb/asterix-app/src/main/resources/cc3.conf
+++ b/asterixdb/asterix-app/src/main/resources/cc3.conf
@@ -51,7 +51,7 @@ log.level = WARN
 compiler.framesize=32KB
 compiler.sortmemory=320KB
 compiler.groupmemory=160KB
-compiler.joinmemory=1024KB
+compiler.joinmemory=256KB
 compiler.textsearchmemory=160KB
 compiler.windowmemory=192KB
 compiler.parallelism=3
diff --git a/asterixdb/asterix-app/src/test/resources/cc-compression.conf b/asterixdb/asterix-app/src/test/resources/cc-compression.conf
index 60b0197..bd7f1d0 100644
--- a/asterixdb/asterix-app/src/test/resources/cc-compression.conf
+++ b/asterixdb/asterix-app/src/test/resources/cc-compression.conf
@@ -50,7 +50,7 @@ log.level = INFO
 compiler.framesize=32KB
 compiler.sortmemory=320KB
 compiler.groupmemory=160KB
-compiler.joinmemory=768KB
+compiler.joinmemory=256KB
 compiler.textsearchmemory=160KB
 compiler.windowmemory=192KB
 messaging.frame.size=4096
diff --git a/asterixdb/asterix-app/src/test/resources/cc-ssl.conf b/asterixdb/asterix-app/src/test/resources/cc-ssl.conf
index d67da13..47171e0 100644
--- a/asterixdb/asterix-app/src/test/resources/cc-ssl.conf
+++ b/asterixdb/asterix-app/src/test/resources/cc-ssl.conf
@@ -62,7 +62,7 @@ log.level = INFO
 compiler.framesize=32KB
 compiler.sortmemory=320KB
 compiler.groupmemory=160KB
-compiler.joinmemory=768KB
+compiler.joinmemory=256KB
 compiler.textsearchmemory=160KB
 compiler.windowmemory=192KB
 messaging.frame.size=4096
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.4.query.sqlpp b/asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.4.query.sqlpp
new file mode 100644
index 0000000..7cf7242
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.4.query.sqlpp
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/*
+* Description  : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+                 This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date         : Jun 16 2015
+*/
+
+use test;
+SET `compiler.joinmemory` "256KB";
+
+select element {'c_custkey':c.c_custkey,'o_orderkey':o.o_orderkey,'len_c_comment':test.`string-length`(c.c_comment),'len_o_comment':test.`string-length`(o.o_comment),'c_comment':c.c_comment}
+from  Customer as c,
+      `Order` as o
+where (c.c_custkey = o.o_custkey)
+order by o.o_orderkey, c.c_custkey
+;
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm
index 08532d6..9e8fb29 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm
@@ -13,7 +13,7 @@
     "compiler\.groupmemory" : 163840,
     "compiler\.indexonly" : true,
     "compiler\.internal\.sanitycheck" : true,
-    "compiler\.joinmemory" : 786432,
+    "compiler\.joinmemory" : 262144,
     "compiler\.parallelism" : 0,
     "compiler\.sort\.parallel" : false,
     "compiler\.sort\.samples" : 100,
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm
index 869e9c7..e1cbd5d 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm
@@ -13,7 +13,7 @@
     "compiler\.groupmemory" : 163840,
     "compiler\.indexonly" : true,
     "compiler\.internal\.sanitycheck" : false,
-    "compiler\.joinmemory" : 1048576,
+    "compiler\.joinmemory" : 262144,
     "compiler\.parallelism" : 3,
     "compiler\.sort\.parallel" : true,
     "compiler\.sort\.samples" : 100,
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/big-object/big_object_join/join.2.adm b/asterixdb/asterix-app/src/test/resources/runtimets/results/big-object/big_object_join/join.2.adm
new file mode 100644
index 0000000..78b8798
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/big-object/big_object_join/join.2.adm
@@ -0,0 +1,1500 @@
+{ "c_custkey": 37, "o_orderkey": 1, "len_c_comment": 57, "len_o_comment": 32768, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 79, "o_orderkey": 2, "len_c_comment": 115, "len_o_comment": 56, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 124, "o_orderkey": 3, "len_c_comment": 40, "len_o_comment": 73, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 137, "o_orderkey": 4, "len_c_comment": 55, "len_o_comment": 70, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 46, "o_orderkey": 5, "len_c_comment": 109, "len_o_comment": 54, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 56, "o_orderkey": 6, "len_c_comment": 93, "len_o_comment": 62, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 40, "o_orderkey": 7, "len_c_comment": 64, "len_o_comment": 20, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 131, "o_orderkey": 32, "len_c_comment": 32768, "len_o_comment": 56, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole speci [...]
+{ "c_custkey": 67, "o_orderkey": 33, "len_c_comment": 34, "len_o_comment": 33, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 62, "o_orderkey": 34, "len_c_comment": 85, "len_o_comment": 67, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 128, "o_orderkey": 35, "len_c_comment": 111, "len_o_comment": 43, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 116, "o_orderkey": 36, "len_c_comment": 113, "len_o_comment": 59, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 88, "o_orderkey": 37, "len_c_comment": 99, "len_o_comment": 62, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 125, "o_orderkey": 38, "len_c_comment": 52, "len_o_comment": 77, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 82, "o_orderkey": 39, "len_c_comment": 54, "len_o_comment": 32, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 34, "o_orderkey": 64, "len_c_comment": 45, "len_o_comment": 61, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 17, "o_orderkey": 65, "len_c_comment": 33, "len_o_comment": 77, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 130, "o_orderkey": 66, "len_c_comment": 96, "len_o_comment": 28, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 58, "o_orderkey": 67, "len_c_comment": 94, "len_o_comment": 48, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 29, "o_orderkey": 68, "len_c_comment": 54, "len_o_comment": 76, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 85, "o_orderkey": 69, "len_c_comment": 39, "len_o_comment": 76, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 65, "o_orderkey": 70, "len_c_comment": 67, "len_o_comment": 25, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 4, "o_orderkey": 71, "len_c_comment": 49, "len_o_comment": 42, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 109, "o_orderkey": 96, "len_c_comment": 113, "len_o_comment": 21, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 22, "o_orderkey": 97, "len_c_comment": 50, "len_o_comment": 72, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 106, "o_orderkey": 98, "len_c_comment": 102, "len_o_comment": 60, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 89, "o_orderkey": 99, "len_c_comment": 77, "len_o_comment": 36, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 148, "o_orderkey": 100, "len_c_comment": 103, "len_o_comment": 44, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 28, "o_orderkey": 101, "len_c_comment": 48, "len_o_comment": 45, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 1, "o_orderkey": 102, "len_c_comment": 32768, "len_o_comment": 78, "c_comment": "to the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular pla [...]
+{ "c_custkey": 31, "o_orderkey": 103, "len_c_comment": 32768, "len_o_comment": 60, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely  [...]
+{ "c_custkey": 74, "o_orderkey": 128, "len_c_comment": 65, "len_o_comment": 78, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 73, "o_orderkey": 129, "len_c_comment": 53, "len_o_comment": 72, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 37, "o_orderkey": 130, "len_c_comment": 57, "len_o_comment": 56, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 94, "o_orderkey": 131, "len_c_comment": 109, "len_o_comment": 44, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 28, "o_orderkey": 132, "len_c_comment": 48, "len_o_comment": 73, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 44, "o_orderkey": 133, "len_c_comment": 37, "len_o_comment": 22, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 7, "o_orderkey": 134, "len_c_comment": 78, "len_o_comment": 20, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 61, "o_orderkey": 135, "len_c_comment": 32768, "len_o_comment": 27, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 83, "o_orderkey": 160, "len_c_comment": 111, "len_o_comment": 39, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 17, "o_orderkey": 161, "len_c_comment": 33, "len_o_comment": 35, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 16, "o_orderkey": 162, "len_c_comment": 67, "len_o_comment": 66, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 88, "o_orderkey": 163, "len_c_comment": 99, "len_o_comment": 52, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 1, "o_orderkey": 164, "len_c_comment": 32768, "len_o_comment": 78, "c_comment": "to the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular pla [...]
+{ "c_custkey": 28, "o_orderkey": 165, "len_c_comment": 48, "len_o_comment": 42, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 109, "o_orderkey": 166, "len_c_comment": 113, "len_o_comment": 36, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 121, "o_orderkey": 167, "len_c_comment": 32768, "len_o_comment": 43, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. car [...]
+{ "c_custkey": 83, "o_orderkey": 192, "len_c_comment": 111, "len_o_comment": 62, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 80, "o_orderkey": 193, "len_c_comment": 78, "len_o_comment": 23, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 62, "o_orderkey": 194, "len_c_comment": 85, "len_o_comment": 68, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 136, "o_orderkey": 195, "len_c_comment": 84, "len_o_comment": 42, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 65, "o_orderkey": 196, "len_c_comment": 67, "len_o_comment": 38, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 34, "o_orderkey": 197, "len_c_comment": 45, "len_o_comment": 74, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 112, "o_orderkey": 198, "len_c_comment": 81, "len_o_comment": 59, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 53, "o_orderkey": 199, "len_c_comment": 73, "len_o_comment": 29, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 4, "o_orderkey": 224, "len_c_comment": 49, "len_o_comment": 36, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 34, "o_orderkey": 225, "len_c_comment": 45, "len_o_comment": 61, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 128, "o_orderkey": 226, "len_c_comment": 111, "len_o_comment": 42, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 10, "o_orderkey": 227, "len_c_comment": 31, "len_o_comment": 34, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 46, "o_orderkey": 228, "len_c_comment": 109, "len_o_comment": 65, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 112, "o_orderkey": 229, "len_c_comment": 81, "len_o_comment": 42, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 103, "o_orderkey": 230, "len_c_comment": 107, "len_o_comment": 30, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 91, "o_orderkey": 231, "len_c_comment": 32768, "len_o_comment": 58, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boos [...]
+{ "c_custkey": 125, "o_orderkey": 256, "len_c_comment": 52, "len_o_comment": 61, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 124, "o_orderkey": 257, "len_c_comment": 40, "len_o_comment": 50, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 43, "o_orderkey": 258, "len_c_comment": 102, "len_o_comment": 66, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 44, "o_orderkey": 259, "len_c_comment": 37, "len_o_comment": 78, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 106, "o_orderkey": 260, "len_c_comment": 102, "len_o_comment": 50, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 47, "o_orderkey": 261, "len_c_comment": 69, "len_o_comment": 42, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 31, "o_orderkey": 262, "len_c_comment": 32768, "len_o_comment": 49, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely  [...]
+{ "c_custkey": 118, "o_orderkey": 263, "len_c_comment": 113, "len_o_comment": 34, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 8, "o_orderkey": 288, "len_c_comment": 113, "len_o_comment": 46, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 104, "o_orderkey": 289, "len_c_comment": 32, "len_o_comment": 26, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 118, "o_orderkey": 290, "len_c_comment": 113, "len_o_comment": 30, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 142, "o_orderkey": 291, "len_c_comment": 31, "len_o_comment": 44, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 23, "o_orderkey": 292, "len_c_comment": 87, "len_o_comment": 34, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 31, "o_orderkey": 293, "len_c_comment": 32768, "len_o_comment": 37, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely  [...]
+{ "c_custkey": 52, "o_orderkey": 294, "len_c_comment": 73, "len_o_comment": 57, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 19, "o_orderkey": 295, "len_c_comment": 80, "len_o_comment": 47, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 1, "o_orderkey": 320, "len_c_comment": 32768, "len_o_comment": 21, "c_comment": "to the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular pla [...]
+{ "c_custkey": 124, "o_orderkey": 321, "len_c_comment": 40, "len_o_comment": 70, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 134, "o_orderkey": 322, "len_c_comment": 37, "len_o_comment": 76, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 40, "o_orderkey": 323, "len_c_comment": 64, "len_o_comment": 59, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 106, "o_orderkey": 324, "len_c_comment": 102, "len_o_comment": 68, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 41, "o_orderkey": 325, "len_c_comment": 32768, "len_o_comment": 23, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above th [...]
+{ "c_custkey": 76, "o_orderkey": 326, "len_c_comment": 116, "len_o_comment": 75, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 145, "o_orderkey": 327, "len_c_comment": 54, "len_o_comment": 52, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 107, "o_orderkey": 352, "len_c_comment": 98, "len_o_comment": 68, "c_comment": "counts cajole slyly. regular requests wake. furiously regular deposits about the blithely final fo" }
+{ "c_custkey": 2, "o_orderkey": 353, "len_c_comment": 63, "len_o_comment": 64, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 139, "o_orderkey": 354, "len_c_comment": 55, "len_o_comment": 73, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 71, "o_orderkey": 355, "len_c_comment": 32768, "len_o_comment": 65, "c_comment": "g courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto bean [...]
+{ "c_custkey": 148, "o_orderkey": 356, "len_c_comment": 103, "len_o_comment": 39, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 61, "o_orderkey": 357, "len_c_comment": 32768, "len_o_comment": 52, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 4, "o_orderkey": 358, "len_c_comment": 49, "len_o_comment": 50, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 79, "o_orderkey": 359, "len_c_comment": 115, "len_o_comment": 66, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 115, "o_orderkey": 384, "len_c_comment": 49, "len_o_comment": 56, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 34, "o_orderkey": 385, "len_c_comment": 45, "len_o_comment": 31, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 61, "o_orderkey": 386, "len_c_comment": 32768, "len_o_comment": 78, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 4, "o_orderkey": 387, "len_c_comment": 49, "len_o_comment": 68, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 46, "o_orderkey": 388, "len_c_comment": 109, "len_o_comment": 66, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 127, "o_orderkey": 389, "len_c_comment": 84, "len_o_comment": 32768, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 103, "o_orderkey": 390, "len_c_comment": 107, "len_o_comment": 54, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 112, "o_orderkey": 391, "len_c_comment": 81, "len_o_comment": 20, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 41, "o_orderkey": 416, "len_c_comment": 32768, "len_o_comment": 33, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above th [...]
+{ "c_custkey": 55, "o_orderkey": 417, "len_c_comment": 110, "len_o_comment": 77, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 95, "o_orderkey": 418, "len_c_comment": 100, "len_o_comment": 26, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 118, "o_orderkey": 419, "len_c_comment": 113, "len_o_comment": 51, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 91, "o_orderkey": 420, "len_c_comment": 32768, "len_o_comment": 78, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boos [...]
+{ "c_custkey": 40, "o_orderkey": 421, "len_c_comment": 64, "len_o_comment": 48, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 74, "o_orderkey": 422, "len_c_comment": 65, "len_o_comment": 64, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 104, "o_orderkey": 423, "len_c_comment": 32, "len_o_comment": 65, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 149, "o_orderkey": 448, "len_c_comment": 47, "len_o_comment": 42, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 97, "o_orderkey": 449, "len_c_comment": 73, "len_o_comment": 47, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 49, "o_orderkey": 450, "len_c_comment": 64, "len_o_comment": 47, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 100, "o_orderkey": 451, "len_c_comment": 78, "len_o_comment": 46, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 61, "o_orderkey": 452, "len_c_comment": 32768, "len_o_comment": 52, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 46, "o_orderkey": 453, "len_c_comment": 109, "len_o_comment": 54, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 49, "o_orderkey": 454, "len_c_comment": 64, "len_o_comment": 64, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 13, "o_orderkey": 455, "len_c_comment": 98, "len_o_comment": 36, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 73, "o_orderkey": 480, "len_c_comment": 53, "len_o_comment": 77, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 31, "o_orderkey": 481, "len_c_comment": 32768, "len_o_comment": 40, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely  [...]
+{ "c_custkey": 127, "o_orderkey": 482, "len_c_comment": 84, "len_o_comment": 29, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 35, "o_orderkey": 483, "len_c_comment": 54, "len_o_comment": 27, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 55, "o_orderkey": 484, "len_c_comment": 110, "len_o_comment": 70, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 101, "o_orderkey": 485, "len_c_comment": 32768, "len_o_comment": 37, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack s [...]
+{ "c_custkey": 52, "o_orderkey": 486, "len_c_comment": 73, "len_o_comment": 38, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 109, "o_orderkey": 487, "len_c_comment": 113, "len_o_comment": 33, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 64, "o_orderkey": 512, "len_c_comment": 57, "len_o_comment": 65, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 61, "o_orderkey": 513, "len_c_comment": 32768, "len_o_comment": 63, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 76, "o_orderkey": 514, "len_c_comment": 116, "len_o_comment": 74, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 142, "o_orderkey": 515, "len_c_comment": 31, "len_o_comment": 64, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 44, "o_orderkey": 516, "len_c_comment": 37, "len_o_comment": 77, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 10, "o_orderkey": 517, "len_c_comment": 31, "len_o_comment": 54, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 145, "o_orderkey": 518, "len_c_comment": 54, "len_o_comment": 57, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 64, "o_orderkey": 519, "len_c_comment": 57, "len_o_comment": 33, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 94, "o_orderkey": 544, "len_c_comment": 109, "len_o_comment": 44, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 64, "o_orderkey": 545, "len_c_comment": 57, "len_o_comment": 42, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 145, "o_orderkey": 546, "len_c_comment": 54, "len_o_comment": 47, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 100, "o_orderkey": 547, "len_c_comment": 78, "len_o_comment": 41, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 124, "o_orderkey": 548, "len_c_comment": 40, "len_o_comment": 23, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 110, "o_orderkey": 549, "len_c_comment": 111, "len_o_comment": 19, "c_comment": "nto beans cajole around the even, final deposits. quickly bold packages according to the furiously regular dept" }
+{ "c_custkey": 25, "o_orderkey": 550, "len_c_comment": 108, "len_o_comment": 21, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 91, "o_orderkey": 551, "len_c_comment": 32768, "len_o_comment": 26, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boos [...]
+{ "c_custkey": 31, "o_orderkey": 576, "len_c_comment": 32768, "len_o_comment": 48, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely  [...]
+{ "c_custkey": 56, "o_orderkey": 577, "len_c_comment": 93, "len_o_comment": 26, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 94, "o_orderkey": 578, "len_c_comment": 109, "len_o_comment": 53, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 68, "o_orderkey": 579, "len_c_comment": 56, "len_o_comment": 38, "c_comment": " pending pinto beans impress realms. final dependencies " }
+{ "c_custkey": 61, "o_orderkey": 580, "len_c_comment": 32768, "len_o_comment": 30, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 70, "o_orderkey": 581, "len_c_comment": 90, "len_o_comment": 52, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 50, "o_orderkey": 582, "len_c_comment": 66, "len_o_comment": 21, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 49, "o_orderkey": 583, "len_c_comment": 64, "len_o_comment": 26, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 26, "o_orderkey": 608, "len_c_comment": 70, "len_o_comment": 33, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 127, "o_orderkey": 609, "len_c_comment": 84, "len_o_comment": 35, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 52, "o_orderkey": 610, "len_c_comment": 73, "len_o_comment": 29, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 106, "o_orderkey": 611, "len_c_comment": 102, "len_o_comment": 25, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 82, "o_orderkey": 612, "len_c_comment": 54, "len_o_comment": 65, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 139, "o_orderkey": 613, "len_c_comment": 55, "len_o_comment": 51, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 134, "o_orderkey": 614, "len_c_comment": 37, "len_o_comment": 31, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 67, "o_orderkey": 615, "len_c_comment": 34, "len_o_comment": 65, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 97, "o_orderkey": 640, "len_c_comment": 73, "len_o_comment": 67, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 133, "o_orderkey": 641, "len_c_comment": 104, "len_o_comment": 50, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 40, "o_orderkey": 642, "len_c_comment": 64, "len_o_comment": 46, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 58, "o_orderkey": 643, "len_c_comment": 94, "len_o_comment": 33, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 8, "o_orderkey": 644, "len_c_comment": 113, "len_o_comment": 72, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 115, "o_orderkey": 645, "len_c_comment": 49, "len_o_comment": 42, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 52, "o_orderkey": 646, "len_c_comment": 73, "len_o_comment": 26, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 143, "o_orderkey": 647, "len_c_comment": 50, "len_o_comment": 61, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 109, "o_orderkey": 672, "len_c_comment": 113, "len_o_comment": 43, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 80, "o_orderkey": 673, "len_c_comment": 78, "len_o_comment": 55, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 34, "o_orderkey": 674, "len_c_comment": 45, "len_o_comment": 76, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 13, "o_orderkey": 675, "len_c_comment": 98, "len_o_comment": 25, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 38, "o_orderkey": 676, "len_c_comment": 110, "len_o_comment": 36, "c_comment": "lar excuses. closely even asymptotes cajole blithely excuses. carefully silent pinto beans sleep carefully fin" }
+{ "c_custkey": 124, "o_orderkey": 677, "len_c_comment": 40, "len_o_comment": 49, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 131, "o_orderkey": 678, "len_c_comment": 32768, "len_o_comment": 32, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spec [...]
+{ "c_custkey": 49, "o_orderkey": 679, "len_c_comment": 64, "len_o_comment": 78, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 85, "o_orderkey": 704, "len_c_comment": 39, "len_o_comment": 60, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 43, "o_orderkey": 705, "len_c_comment": 102, "len_o_comment": 73, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 148, "o_orderkey": 706, "len_c_comment": 103, "len_o_comment": 28, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 118, "o_orderkey": 707, "len_c_comment": 113, "len_o_comment": 51, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 32, "o_orderkey": 708, "len_c_comment": 48, "len_o_comment": 21, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 37, "o_orderkey": 709, "len_c_comment": 57, "len_o_comment": 45, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 133, "o_orderkey": 710, "len_c_comment": 104, "len_o_comment": 45, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 64, "o_orderkey": 711, "len_c_comment": 57, "len_o_comment": 36, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 47, "o_orderkey": 736, "len_c_comment": 69, "len_o_comment": 23, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 121, "o_orderkey": 737, "len_c_comment": 32768, "len_o_comment": 70, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. car [...]
+{ "c_custkey": 22, "o_orderkey": 738, "len_c_comment": 50, "len_o_comment": 51, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 1, "o_orderkey": 739, "len_c_comment": 32768, "len_o_comment": 51, "c_comment": "to the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular pla [...]
+{ "c_custkey": 44, "o_orderkey": 740, "len_c_comment": 37, "len_o_comment": 47, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 106, "o_orderkey": 741, "len_c_comment": 102, "len_o_comment": 48, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 103, "o_orderkey": 742, "len_c_comment": 107, "len_o_comment": 65, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 79, "o_orderkey": 743, "len_c_comment": 115, "len_o_comment": 61, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 98, "o_orderkey": 768, "len_c_comment": 77, "len_o_comment": 43, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 80, "o_orderkey": 769, "len_c_comment": 78, "len_o_comment": 68, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 32, "o_orderkey": 770, "len_c_comment": 48, "len_o_comment": 52, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 46, "o_orderkey": 771, "len_c_comment": 109, "len_o_comment": 50, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 97, "o_orderkey": 772, "len_c_comment": 73, "len_o_comment": 55, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 133, "o_orderkey": 773, "len_c_comment": 104, "len_o_comment": 73, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 80, "o_orderkey": 774, "len_c_comment": 78, "len_o_comment": 21, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 134, "o_orderkey": 775, "len_c_comment": 37, "len_o_comment": 62, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 56, "o_orderkey": 800, "len_c_comment": 93, "len_o_comment": 72, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 118, "o_orderkey": 801, "len_c_comment": 113, "len_o_comment": 32768, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 137, "o_orderkey": 802, "len_c_comment": 55, "len_o_comment": 53, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 16, "o_orderkey": 803, "len_c_comment": 67, "len_o_comment": 76, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 50, "o_orderkey": 804, "len_c_comment": 66, "len_o_comment": 44, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 127, "o_orderkey": 805, "len_c_comment": 84, "len_o_comment": 28, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 131, "o_orderkey": 806, "len_c_comment": 32768, "len_o_comment": 40, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spec [...]
+{ "c_custkey": 145, "o_orderkey": 807, "len_c_comment": 54, "len_o_comment": 47, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 29, "o_orderkey": 832, "len_c_comment": 54, "len_o_comment": 63, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 56, "o_orderkey": 833, "len_c_comment": 93, "len_o_comment": 33, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 43, "o_orderkey": 834, "len_c_comment": 102, "len_o_comment": 71, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 65, "o_orderkey": 835, "len_c_comment": 67, "len_o_comment": 60, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 70, "o_orderkey": 836, "len_c_comment": 90, "len_o_comment": 73, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 116, "o_orderkey": 837, "len_c_comment": 113, "len_o_comment": 48, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 17, "o_orderkey": 838, "len_c_comment": 33, "len_o_comment": 28, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 28, "o_orderkey": 839, "len_c_comment": 48, "len_o_comment": 50, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 139, "o_orderkey": 864, "len_c_comment": 55, "len_o_comment": 71, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 4, "o_orderkey": 865, "len_c_comment": 49, "len_o_comment": 76, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 40, "o_orderkey": 866, "len_c_comment": 64, "len_o_comment": 45, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 26, "o_orderkey": 867, "len_c_comment": 70, "len_o_comment": 25, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 104, "o_orderkey": 868, "len_c_comment": 32, "len_o_comment": 48, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 136, "o_orderkey": 869, "len_c_comment": 84, "len_o_comment": 74, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 34, "o_orderkey": 870, "len_c_comment": 45, "len_o_comment": 33, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 16, "o_orderkey": 871, "len_c_comment": 67, "len_o_comment": 27, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 2, "o_orderkey": 896, "len_c_comment": 63, "len_o_comment": 73, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 49, "o_orderkey": 897, "len_c_comment": 64, "len_o_comment": 22, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 55, "o_orderkey": 898, "len_c_comment": 110, "len_o_comment": 44, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 109, "o_orderkey": 899, "len_c_comment": 113, "len_o_comment": 39, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 46, "o_orderkey": 900, "len_c_comment": 109, "len_o_comment": 39, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 13, "o_orderkey": 901, "len_c_comment": 98, "len_o_comment": 73, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 10, "o_orderkey": 902, "len_c_comment": 31, "len_o_comment": 44, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 11, "o_orderkey": 903, "len_c_comment": 32768, "len_o_comment": 26, "c_comment": "ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto be [...]
+{ "c_custkey": 67, "o_orderkey": 928, "len_c_comment": 34, "len_o_comment": 28, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 83, "o_orderkey": 929, "len_c_comment": 111, "len_o_comment": 78, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 131, "o_orderkey": 930, "len_c_comment": 32768, "len_o_comment": 57, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spec [...]
+{ "c_custkey": 103, "o_orderkey": 931, "len_c_comment": 107, "len_o_comment": 63, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 41, "o_orderkey": 932, "len_c_comment": 32768, "len_o_comment": 43, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above th [...]
+{ "c_custkey": 97, "o_orderkey": 933, "len_c_comment": 73, "len_o_comment": 73, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 52, "o_orderkey": 934, "len_c_comment": 73, "len_o_comment": 48, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 50, "o_orderkey": 935, "len_c_comment": 66, "len_o_comment": 53, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 35, "o_orderkey": 960, "len_c_comment": 54, "len_o_comment": 26, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 56, "o_orderkey": 961, "len_c_comment": 93, "len_o_comment": 34, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 37, "o_orderkey": 962, "len_c_comment": 57, "len_o_comment": 37, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 26, "o_orderkey": 963, "len_c_comment": 70, "len_o_comment": 68, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 76, "o_orderkey": 964, "len_c_comment": 116, "len_o_comment": 40, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 70, "o_orderkey": 965, "len_c_comment": 90, "len_o_comment": 62, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 14, "o_orderkey": 966, "len_c_comment": 33, "len_o_comment": 25, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 110, "o_orderkey": 967, "len_c_comment": 111, "len_o_comment": 31, "c_comment": "nto beans cajole around the even, final deposits. quickly bold packages according to the furiously regular dept" }
+{ "c_custkey": 55, "o_orderkey": 992, "len_c_comment": 110, "len_o_comment": 43, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 80, "o_orderkey": 993, "len_c_comment": 78, "len_o_comment": 48, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 2, "o_orderkey": 994, "len_c_comment": 63, "len_o_comment": 33, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 116, "o_orderkey": 995, "len_c_comment": 113, "len_o_comment": 72, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 71, "o_orderkey": 996, "len_c_comment": 32768, "len_o_comment": 64, "c_comment": "g courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto bean [...]
+{ "c_custkey": 109, "o_orderkey": 997, "len_c_comment": 113, "len_o_comment": 68, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 32, "o_orderkey": 998, "len_c_comment": 48, "len_o_comment": 59, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 61, "o_orderkey": 999, "len_c_comment": 32768, "len_o_comment": 38, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pack [...]
+{ "c_custkey": 4, "o_orderkey": 1024, "len_c_comment": 49, "len_o_comment": 56, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 103, "o_orderkey": 1025, "len_c_comment": 107, "len_o_comment": 23, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 73, "o_orderkey": 1026, "len_c_comment": 53, "len_o_comment": 29, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 128, "o_orderkey": 1027, "len_c_comment": 111, "len_o_comment": 38, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 70, "o_orderkey": 1028, "len_c_comment": 90, "len_o_comment": 47, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 130, "o_orderkey": 1029, "len_c_comment": 96, "len_o_comment": 66, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 134, "o_orderkey": 1030, "len_c_comment": 37, "len_o_comment": 78, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 4, "o_orderkey": 1031, "len_c_comment": 49, "len_o_comment": 44, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 28, "o_orderkey": 1056, "len_c_comment": 48, "len_o_comment": 47, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 76, "o_orderkey": 1057, "len_c_comment": 116, "len_o_comment": 72, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 53, "o_orderkey": 1058, "len_c_comment": 73, "len_o_comment": 74, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 127, "o_orderkey": 1059, "len_c_comment": 84, "len_o_comment": 68, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 140, "o_orderkey": 1060, "len_c_comment": 62, "len_o_comment": 60, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 103, "o_orderkey": 1061, "len_c_comment": 107, "len_o_comment": 32, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 106, "o_orderkey": 1062, "len_c_comment": 102, "len_o_comment": 21, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 37, "o_orderkey": 1063, "len_c_comment": 57, "len_o_comment": 45, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 148, "o_orderkey": 1088, "len_c_comment": 103, "len_o_comment": 48, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 49, "o_orderkey": 1089, "len_c_comment": 64, "len_o_comment": 52, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 19, "o_orderkey": 1090, "len_c_comment": 80, "len_o_comment": 67, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 83, "o_orderkey": 1091, "len_c_comment": 111, "len_o_comment": 53, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 124, "o_orderkey": 1092, "len_c_comment": 40, "len_o_comment": 27, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 101, "o_orderkey": 1093, "len_c_comment": 32768, "len_o_comment": 76, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 145, "o_orderkey": 1094, "len_c_comment": 54, "len_o_comment": 69, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 145, "o_orderkey": 1095, "len_c_comment": 54, "len_o_comment": 47, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 140, "o_orderkey": 1120, "len_c_comment": 62, "len_o_comment": 70, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 29, "o_orderkey": 1121, "len_c_comment": 54, "len_o_comment": 58, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 121, "o_orderkey": 1122, "len_c_comment": 32768, "len_o_comment": 68, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 73, "o_orderkey": 1123, "len_c_comment": 53, "len_o_comment": 52, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 80, "o_orderkey": 1124, "len_c_comment": 78, "len_o_comment": 54, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 25, "o_orderkey": 1125, "len_c_comment": 108, "len_o_comment": 24, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 145, "o_orderkey": 1126, "len_c_comment": 54, "len_o_comment": 74, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 58, "o_orderkey": 1127, "len_c_comment": 94, "len_o_comment": 64, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 49, "o_orderkey": 1152, "len_c_comment": 64, "len_o_comment": 20, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 121, "o_orderkey": 1153, "len_c_comment": 32768, "len_o_comment": 26, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 37, "o_orderkey": 1154, "len_c_comment": 57, "len_o_comment": 75, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 149, "o_orderkey": 1155, "len_c_comment": 47, "len_o_comment": 77, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 133, "o_orderkey": 1156, "len_c_comment": 104, "len_o_comment": 42, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 97, "o_orderkey": 1157, "len_c_comment": 73, "len_o_comment": 57, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 142, "o_orderkey": 1158, "len_c_comment": 31, "len_o_comment": 40, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 70, "o_orderkey": 1159, "len_c_comment": 90, "len_o_comment": 39, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 89, "o_orderkey": 1184, "len_c_comment": 77, "len_o_comment": 41, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 74, "o_orderkey": 1185, "len_c_comment": 65, "len_o_comment": 28, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 59, "o_orderkey": 1186, "len_c_comment": 71, "len_o_comment": 36, "c_comment": "ously final packages haggle blithely after the express deposits. furiou" }
+{ "c_custkey": 134, "o_orderkey": 1187, "len_c_comment": 37, "len_o_comment": 58, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 20, "o_orderkey": 1188, "len_c_comment": 69, "len_o_comment": 26, "c_comment": "g alongside of the special excuses-- fluffily enticing packages wake " }
+{ "c_custkey": 46, "o_orderkey": 1189, "len_c_comment": 109, "len_o_comment": 32768, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 13, "o_orderkey": 1190, "len_c_comment": 98, "len_o_comment": 54, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 112, "o_orderkey": 1191, "len_c_comment": 81, "len_o_comment": 44, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 122, "o_orderkey": 1216, "len_c_comment": 79, "len_o_comment": 22, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 7, "o_orderkey": 1217, "len_c_comment": 78, "len_o_comment": 56, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 10, "o_orderkey": 1218, "len_c_comment": 31, "len_o_comment": 49, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 28, "o_orderkey": 1219, "len_c_comment": 48, "len_o_comment": 59, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 49, "o_orderkey": 1220, "len_c_comment": 64, "len_o_comment": 55, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 14, "o_orderkey": 1221, "len_c_comment": 33, "len_o_comment": 59, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 10, "o_orderkey": 1222, "len_c_comment": 31, "len_o_comment": 62, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 10, "o_orderkey": 1223, "len_c_comment": 31, "len_o_comment": 22, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 49, "o_orderkey": 1248, "len_c_comment": 64, "len_o_comment": 34, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 149, "o_orderkey": 1249, "len_c_comment": 47, "len_o_comment": 36, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 37, "o_orderkey": 1250, "len_c_comment": 57, "len_o_comment": 64, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 38, "o_orderkey": 1251, "len_c_comment": 110, "len_o_comment": 43, "c_comment": "lar excuses. closely even asymptotes cajole blithely excuses. carefully silent pinto beans sleep carefully fin" }
+{ "c_custkey": 149, "o_orderkey": 1252, "len_c_comment": 47, "len_o_comment": 69, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 115, "o_orderkey": 1253, "len_c_comment": 49, "len_o_comment": 53, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 70, "o_orderkey": 1254, "len_c_comment": 90, "len_o_comment": 39, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 122, "o_orderkey": 1255, "len_c_comment": 79, "len_o_comment": 32, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 97, "o_orderkey": 1280, "len_c_comment": 73, "len_o_comment": 58, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 62, "o_orderkey": 1281, "len_c_comment": 85, "len_o_comment": 39, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 116, "o_orderkey": 1282, "len_c_comment": 113, "len_o_comment": 47, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 118, "o_orderkey": 1283, "len_c_comment": 113, "len_o_comment": 27, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 134, "o_orderkey": 1284, "len_c_comment": 37, "len_o_comment": 29, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 11, "o_orderkey": 1285, "len_c_comment": 32768, "len_o_comment": 49, "c_comment": "ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto b [...]
+{ "c_custkey": 109, "o_orderkey": 1286, "len_c_comment": 113, "len_o_comment": 54, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 19, "o_orderkey": 1287, "len_c_comment": 80, "len_o_comment": 67, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 112, "o_orderkey": 1312, "len_c_comment": 81, "len_o_comment": 37, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 148, "o_orderkey": 1313, "len_c_comment": 103, "len_o_comment": 76, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 143, "o_orderkey": 1314, "len_c_comment": 50, "len_o_comment": 75, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 22, "o_orderkey": 1315, "len_c_comment": 50, "len_o_comment": 41, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 16, "o_orderkey": 1316, "len_c_comment": 67, "len_o_comment": 40, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 100, "o_orderkey": 1317, "len_c_comment": 78, "len_o_comment": 40, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 128, "o_orderkey": 1318, "len_c_comment": 111, "len_o_comment": 33, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 32, "o_orderkey": 1319, "len_c_comment": 48, "len_o_comment": 46, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 17, "o_orderkey": 1344, "len_c_comment": 33, "len_o_comment": 64, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 95, "o_orderkey": 1345, "len_c_comment": 100, "len_o_comment": 34, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 76, "o_orderkey": 1346, "len_c_comment": 116, "len_o_comment": 29, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 41, "o_orderkey": 1347, "len_c_comment": 32768, "len_o_comment": 49, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 19, "o_orderkey": 1348, "len_c_comment": 80, "len_o_comment": 24, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 64, "o_orderkey": 1349, "len_c_comment": 57, "len_o_comment": 54, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 52, "o_orderkey": 1350, "len_c_comment": 73, "len_o_comment": 35, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 106, "o_orderkey": 1351, "len_c_comment": 102, "len_o_comment": 28, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 47, "o_orderkey": 1376, "len_c_comment": 69, "len_o_comment": 42, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 20, "o_orderkey": 1377, "len_c_comment": 69, "len_o_comment": 77, "c_comment": "g alongside of the special excuses-- fluffily enticing packages wake " }
+{ "c_custkey": 20, "o_orderkey": 1378, "len_c_comment": 69, "len_o_comment": 51, "c_comment": "g alongside of the special excuses-- fluffily enticing packages wake " }
+{ "c_custkey": 65, "o_orderkey": 1379, "len_c_comment": 67, "len_o_comment": 20, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 137, "o_orderkey": 1380, "len_c_comment": 55, "len_o_comment": 64, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 127, "o_orderkey": 1381, "len_c_comment": 84, "len_o_comment": 68, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 133, "o_orderkey": 1382, "len_c_comment": 104, "len_o_comment": 23, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 121, "o_orderkey": 1383, "len_c_comment": 32768, "len_o_comment": 34, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 55, "o_orderkey": 1408, "len_c_comment": 110, "len_o_comment": 39, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 143, "o_orderkey": 1409, "len_c_comment": 50, "len_o_comment": 73, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 113, "o_orderkey": 1410, "len_c_comment": 68, "len_o_comment": 74, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 95, "o_orderkey": 1411, "len_c_comment": 100, "len_o_comment": 69, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 53, "o_orderkey": 1412, "len_c_comment": 73, "len_o_comment": 23, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 91, "o_orderkey": 1413, "len_c_comment": 32768, "len_o_comment": 53, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 77, "o_orderkey": 1414, "len_c_comment": 101, "len_o_comment": 32, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 79, "o_orderkey": 1415, "len_c_comment": 115, "len_o_comment": 39, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 98, "o_orderkey": 1440, "len_c_comment": 77, "len_o_comment": 28, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 122, "o_orderkey": 1441, "len_c_comment": 79, "len_o_comment": 38, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 112, "o_orderkey": 1442, "len_c_comment": 81, "len_o_comment": 41, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 44, "o_orderkey": 1443, "len_c_comment": 37, "len_o_comment": 78, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 134, "o_orderkey": 1444, "len_c_comment": 37, "len_o_comment": 43, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 115, "o_orderkey": 1445, "len_c_comment": 49, "len_o_comment": 28, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 41, "o_orderkey": 1446, "len_c_comment": 32768, "len_o_comment": 62, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 91, "o_orderkey": 1447, "len_c_comment": 32768, "len_o_comment": 54, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 149, "o_orderkey": 1472, "len_c_comment": 47, "len_o_comment": 59, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 94, "o_orderkey": 1473, "len_c_comment": 109, "len_o_comment": 22, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 70, "o_orderkey": 1474, "len_c_comment": 90, "len_o_comment": 40, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 5, "o_orderkey": 1475, "len_c_comment": 50, "len_o_comment": 49, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 145, "o_orderkey": 1476, "len_c_comment": 54, "len_o_comment": 68, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 76, "o_orderkey": 1477, "len_c_comment": 116, "len_o_comment": 37, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 50, "o_orderkey": 1478, "len_c_comment": 66, "len_o_comment": 25, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 16, "o_orderkey": 1479, "len_c_comment": 67, "len_o_comment": 45, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 2, "o_orderkey": 1504, "len_c_comment": 63, "len_o_comment": 25, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 37, "o_orderkey": 1505, "len_c_comment": 57, "len_o_comment": 67, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 148, "o_orderkey": 1506, "len_c_comment": 103, "len_o_comment": 78, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 121, "o_orderkey": 1507, "len_c_comment": 32768, "len_o_comment": 19, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 103, "o_orderkey": 1508, "len_c_comment": 107, "len_o_comment": 65, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 64, "o_orderkey": 1509, "len_c_comment": 57, "len_o_comment": 24, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 53, "o_orderkey": 1510, "len_c_comment": 73, "len_o_comment": 57, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 79, "o_orderkey": 1511, "len_c_comment": 115, "len_o_comment": 19, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 94, "o_orderkey": 1536, "len_c_comment": 109, "len_o_comment": 45, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 109, "o_orderkey": 1537, "len_c_comment": 113, "len_o_comment": 47, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 29, "o_orderkey": 1538, "len_c_comment": 54, "len_o_comment": 28, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 112, "o_orderkey": 1539, "len_c_comment": 81, "len_o_comment": 20, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 16, "o_orderkey": 1540, "len_c_comment": 67, "len_o_comment": 21, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 94, "o_orderkey": 1541, "len_c_comment": 109, "len_o_comment": 52, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 143, "o_orderkey": 1542, "len_c_comment": 50, "len_o_comment": 39, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 52, "o_orderkey": 1543, "len_c_comment": 73, "len_o_comment": 20, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 17, "o_orderkey": 1568, "len_c_comment": 33, "len_o_comment": 22, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 104, "o_orderkey": 1569, "len_c_comment": 32, "len_o_comment": 78, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 124, "o_orderkey": 1570, "len_c_comment": 40, "len_o_comment": 27, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 103, "o_orderkey": 1571, "len_c_comment": 107, "len_o_comment": 70, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 11, "o_orderkey": 1572, "len_c_comment": 32768, "len_o_comment": 77, "c_comment": "ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto b [...]
+{ "c_custkey": 148, "o_orderkey": 1573, "len_c_comment": 103, "len_o_comment": 41, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 134, "o_orderkey": 1574, "len_c_comment": 37, "len_o_comment": 42, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 145, "o_orderkey": 1575, "len_c_comment": 54, "len_o_comment": 23, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 94, "o_orderkey": 1600, "len_c_comment": 109, "len_o_comment": 66, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 53, "o_orderkey": 1601, "len_c_comment": 73, "len_o_comment": 32768, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 1, "o_orderkey": 1602, "len_c_comment": 32768, "len_o_comment": 58, "c_comment": "to the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular platelets. regular, ironic epitaphs nag eto the even, regular pl [...]
+{ "c_custkey": 2, "o_orderkey": 1603, "len_c_comment": 63, "len_o_comment": 28, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 113, "o_orderkey": 1604, "len_c_comment": 68, "len_o_comment": 59, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 58, "o_orderkey": 1605, "len_c_comment": 94, "len_o_comment": 44, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 53, "o_orderkey": 1606, "len_c_comment": 73, "len_o_comment": 63, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 149, "o_orderkey": 1607, "len_c_comment": 47, "len_o_comment": 42, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 67, "o_orderkey": 1632, "len_c_comment": 34, "len_o_comment": 34, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 16, "o_orderkey": 1633, "len_c_comment": 67, "len_o_comment": 20, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 70, "o_orderkey": 1634, "len_c_comment": 90, "len_o_comment": 71, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 4, "o_orderkey": 1635, "len_c_comment": 49, "len_o_comment": 37, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 79, "o_orderkey": 1636, "len_c_comment": 115, "len_o_comment": 46, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 73, "o_orderkey": 1637, "len_c_comment": 53, "len_o_comment": 73, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 139, "o_orderkey": 1638, "len_c_comment": 55, "len_o_comment": 25, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 5, "o_orderkey": 1639, "len_c_comment": 50, "len_o_comment": 47, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 64, "o_orderkey": 1664, "len_c_comment": 57, "len_o_comment": 72, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 76, "o_orderkey": 1665, "len_c_comment": 116, "len_o_comment": 59, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 95, "o_orderkey": 1666, "len_c_comment": 100, "len_o_comment": 66, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 5, "o_orderkey": 1667, "len_c_comment": 50, "len_o_comment": 45, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 142, "o_orderkey": 1668, "len_c_comment": 31, "len_o_comment": 45, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 2, "o_orderkey": 1669, "len_c_comment": 63, "len_o_comment": 47, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 25, "o_orderkey": 1670, "len_c_comment": 108, "len_o_comment": 54, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 35, "o_orderkey": 1671, "len_c_comment": 54, "len_o_comment": 41, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 4, "o_orderkey": 1696, "len_c_comment": 49, "len_o_comment": 44, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 76, "o_orderkey": 1697, "len_c_comment": 116, "len_o_comment": 20, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 40, "o_orderkey": 1698, "len_c_comment": 64, "len_o_comment": 32, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 85, "o_orderkey": 1699, "len_c_comment": 39, "len_o_comment": 27, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 65, "o_orderkey": 1700, "len_c_comment": 67, "len_o_comment": 73, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 130, "o_orderkey": 1701, "len_c_comment": 96, "len_o_comment": 34, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 67, "o_orderkey": 1702, "len_c_comment": 34, "len_o_comment": 71, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 134, "o_orderkey": 1703, "len_c_comment": 37, "len_o_comment": 67, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 64, "o_orderkey": 1728, "len_c_comment": 57, "len_o_comment": 61, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 133, "o_orderkey": 1729, "len_c_comment": 104, "len_o_comment": 28, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 124, "o_orderkey": 1730, "len_c_comment": 40, "len_o_comment": 69, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 128, "o_orderkey": 1731, "len_c_comment": 111, "len_o_comment": 71, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 146, "o_orderkey": 1732, "len_c_comment": 60, "len_o_comment": 29, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 148, "o_orderkey": 1733, "len_c_comment": 103, "len_o_comment": 75, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 7, "o_orderkey": 1734, "len_c_comment": 78, "len_o_comment": 68, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 22, "o_orderkey": 1735, "len_c_comment": 50, "len_o_comment": 26, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 115, "o_orderkey": 1760, "len_c_comment": 49, "len_o_comment": 76, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 106, "o_orderkey": 1761, "len_c_comment": 102, "len_o_comment": 41, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 77, "o_orderkey": 1762, "len_c_comment": 101, "len_o_comment": 24, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 121, "o_orderkey": 1763, "len_c_comment": 32768, "len_o_comment": 45, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 29, "o_orderkey": 1764, "len_c_comment": 54, "len_o_comment": 47, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 73, "o_orderkey": 1765, "len_c_comment": 53, "len_o_comment": 27, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 139, "o_orderkey": 1766, "len_c_comment": 55, "len_o_comment": 53, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 25, "o_orderkey": 1767, "len_c_comment": 108, "len_o_comment": 78, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 49, "o_orderkey": 1792, "len_c_comment": 64, "len_o_comment": 59, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 19, "o_orderkey": 1793, "len_c_comment": 80, "len_o_comment": 75, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 140, "o_orderkey": 1794, "len_c_comment": 62, "len_o_comment": 40, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 94, "o_orderkey": 1795, "len_c_comment": 109, "len_o_comment": 51, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 47, "o_orderkey": 1796, "len_c_comment": 69, "len_o_comment": 28, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 125, "o_orderkey": 1797, "len_c_comment": 52, "len_o_comment": 57, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 52, "o_orderkey": 1798, "len_c_comment": 73, "len_o_comment": 19, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 61, "o_orderkey": 1799, "len_c_comment": 32768, "len_o_comment": 64, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 49, "o_orderkey": 1824, "len_c_comment": 64, "len_o_comment": 19, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 148, "o_orderkey": 1825, "len_c_comment": 103, "len_o_comment": 19, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 82, "o_orderkey": 1826, "len_c_comment": 54, "len_o_comment": 72, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 106, "o_orderkey": 1827, "len_c_comment": 102, "len_o_comment": 32, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 32, "o_orderkey": 1828, "len_c_comment": 48, "len_o_comment": 21, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 112, "o_orderkey": 1829, "len_c_comment": 81, "len_o_comment": 68, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 133, "o_orderkey": 1830, "len_c_comment": 104, "len_o_comment": 22, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 71, "o_orderkey": 1831, "len_c_comment": 32768, "len_o_comment": 74, "c_comment": "g courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto bea [...]
+{ "c_custkey": 106, "o_orderkey": 1856, "len_c_comment": 102, "len_o_comment": 29, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 133, "o_orderkey": 1857, "len_c_comment": 104, "len_o_comment": 21, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 143, "o_orderkey": 1858, "len_c_comment": 50, "len_o_comment": 33, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 61, "o_orderkey": 1859, "len_c_comment": 32768, "len_o_comment": 59, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 10, "o_orderkey": 1860, "len_c_comment": 31, "len_o_comment": 42, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 70, "o_orderkey": 1861, "len_c_comment": 90, "len_o_comment": 37, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 34, "o_orderkey": 1862, "len_c_comment": 45, "len_o_comment": 25, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 74, "o_orderkey": 1863, "len_c_comment": 65, "len_o_comment": 25, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 121, "o_orderkey": 1888, "len_c_comment": 32768, "len_o_comment": 65, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 25, "o_orderkey": 1889, "len_c_comment": 108, "len_o_comment": 47, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 10, "o_orderkey": 1890, "len_c_comment": 31, "len_o_comment": 43, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 61, "o_orderkey": 1891, "len_c_comment": 32768, "len_o_comment": 63, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 25, "o_orderkey": 1892, "len_c_comment": 108, "len_o_comment": 55, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 125, "o_orderkey": 1893, "len_c_comment": 52, "len_o_comment": 77, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 76, "o_orderkey": 1894, "len_c_comment": 116, "len_o_comment": 76, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 7, "o_orderkey": 1895, "len_c_comment": 78, "len_o_comment": 72, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 110, "o_orderkey": 1920, "len_c_comment": 111, "len_o_comment": 31, "c_comment": "nto beans cajole around the even, final deposits. quickly bold packages according to the furiously regular dept" }
+{ "c_custkey": 88, "o_orderkey": 1921, "len_c_comment": 99, "len_o_comment": 71, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 56, "o_orderkey": 1922, "len_c_comment": 93, "len_o_comment": 29, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 136, "o_orderkey": 1923, "len_c_comment": 84, "len_o_comment": 19, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 76, "o_orderkey": 1924, "len_c_comment": 116, "len_o_comment": 58, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 17, "o_orderkey": 1925, "len_c_comment": 33, "len_o_comment": 36, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 94, "o_orderkey": 1926, "len_c_comment": 109, "len_o_comment": 40, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 140, "o_orderkey": 1927, "len_c_comment": 62, "len_o_comment": 76, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 67, "o_orderkey": 1952, "len_c_comment": 34, "len_o_comment": 23, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 149, "o_orderkey": 1953, "len_c_comment": 47, "len_o_comment": 43, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 56, "o_orderkey": 1954, "len_c_comment": 93, "len_o_comment": 70, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 13, "o_orderkey": 1955, "len_c_comment": 98, "len_o_comment": 34, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 127, "o_orderkey": 1956, "len_c_comment": 84, "len_o_comment": 74, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 31, "o_orderkey": 1957, "len_c_comment": 32768, "len_o_comment": 24, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 53, "o_orderkey": 1958, "len_c_comment": 73, "len_o_comment": 21, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 43, "o_orderkey": 1959, "len_c_comment": 102, "len_o_comment": 65, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 52, "o_orderkey": 1984, "len_c_comment": 73, "len_o_comment": 78, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 7, "o_orderkey": 1985, "len_c_comment": 78, "len_o_comment": 33, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 149, "o_orderkey": 1986, "len_c_comment": 47, "len_o_comment": 29, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 100, "o_orderkey": 1987, "len_c_comment": 78, "len_o_comment": 26, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 109, "o_orderkey": 1988, "len_c_comment": 113, "len_o_comment": 50, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 118, "o_orderkey": 1989, "len_c_comment": 113, "len_o_comment": 32768, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 119, "o_orderkey": 1990, "len_c_comment": 57, "len_o_comment": 29, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 19, "o_orderkey": 1991, "len_c_comment": 80, "len_o_comment": 74, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 8, "o_orderkey": 2016, "len_c_comment": 113, "len_o_comment": 48, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 101, "o_orderkey": 2017, "len_c_comment": 32768, "len_o_comment": 21, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 19, "o_orderkey": 2018, "len_c_comment": 80, "len_o_comment": 23, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 136, "o_orderkey": 2019, "len_c_comment": 84, "len_o_comment": 37, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 73, "o_orderkey": 2020, "len_c_comment": 53, "len_o_comment": 76, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 70, "o_orderkey": 2021, "len_c_comment": 90, "len_o_comment": 73, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 62, "o_orderkey": 2022, "len_c_comment": 85, "len_o_comment": 66, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 118, "o_orderkey": 2023, "len_c_comment": 113, "len_o_comment": 35, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 17, "o_orderkey": 2048, "len_c_comment": 33, "len_o_comment": 45, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 31, "o_orderkey": 2049, "len_c_comment": 32768, "len_o_comment": 74, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 28, "o_orderkey": 2050, "len_c_comment": 48, "len_o_comment": 57, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 40, "o_orderkey": 2051, "len_c_comment": 64, "len_o_comment": 36, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 91, "o_orderkey": 2052, "len_c_comment": 32768, "len_o_comment": 78, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 142, "o_orderkey": 2053, "len_c_comment": 31, "len_o_comment": 59, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 41, "o_orderkey": 2054, "len_c_comment": 32768, "len_o_comment": 54, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 97, "o_orderkey": 2055, "len_c_comment": 73, "len_o_comment": 58, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 95, "o_orderkey": 2080, "len_c_comment": 100, "len_o_comment": 78, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 121, "o_orderkey": 2081, "len_c_comment": 32768, "len_o_comment": 20, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 49, "o_orderkey": 2082, "len_c_comment": 64, "len_o_comment": 72, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 101, "o_orderkey": 2083, "len_c_comment": 32768, "len_o_comment": 70, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 80, "o_orderkey": 2084, "len_c_comment": 78, "len_o_comment": 61, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 49, "o_orderkey": 2085, "len_c_comment": 64, "len_o_comment": 26, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 142, "o_orderkey": 2086, "len_c_comment": 31, "len_o_comment": 20, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 50, "o_orderkey": 2087, "len_c_comment": 66, "len_o_comment": 56, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 64, "o_orderkey": 2112, "len_c_comment": 57, "len_o_comment": 25, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 32, "o_orderkey": 2113, "len_c_comment": 48, "len_o_comment": 22, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 79, "o_orderkey": 2114, "len_c_comment": 115, "len_o_comment": 64, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 106, "o_orderkey": 2115, "len_c_comment": 102, "len_o_comment": 73, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 23, "o_orderkey": 2116, "len_c_comment": 87, "len_o_comment": 41, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 22, "o_orderkey": 2117, "len_c_comment": 50, "len_o_comment": 50, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 134, "o_orderkey": 2118, "len_c_comment": 37, "len_o_comment": 47, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 64, "o_orderkey": 2119, "len_c_comment": 57, "len_o_comment": 37, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 136, "o_orderkey": 2144, "len_c_comment": 84, "len_o_comment": 57, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 134, "o_orderkey": 2145, "len_c_comment": 37, "len_o_comment": 41, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 118, "o_orderkey": 2146, "len_c_comment": 113, "len_o_comment": 36, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 100, "o_orderkey": 2147, "len_c_comment": 78, "len_o_comment": 77, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 130, "o_orderkey": 2148, "len_c_comment": 96, "len_o_comment": 52, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 101, "o_orderkey": 2149, "len_c_comment": 32768, "len_o_comment": 44, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 82, "o_orderkey": 2150, "len_c_comment": 54, "len_o_comment": 78, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 58, "o_orderkey": 2151, "len_c_comment": 94, "len_o_comment": 71, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 104, "o_orderkey": 2176, "len_c_comment": 32, "len_o_comment": 24, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 136, "o_orderkey": 2177, "len_c_comment": 84, "len_o_comment": 75, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 8, "o_orderkey": 2178, "len_c_comment": 113, "len_o_comment": 44, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 41, "o_orderkey": 2179, "len_c_comment": 32768, "len_o_comment": 53, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 76, "o_orderkey": 2180, "len_c_comment": 116, "len_o_comment": 44, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 76, "o_orderkey": 2181, "len_c_comment": 116, "len_o_comment": 26, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 23, "o_orderkey": 2182, "len_c_comment": 87, "len_o_comment": 52, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 113, "o_orderkey": 2183, "len_c_comment": 68, "len_o_comment": 68, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 68, "o_orderkey": 2208, "len_c_comment": 56, "len_o_comment": 47, "c_comment": " pending pinto beans impress realms. final dependencies " }
+{ "c_custkey": 91, "o_orderkey": 2209, "len_c_comment": 32768, "len_o_comment": 49, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 32, "o_orderkey": 2210, "len_c_comment": 48, "len_o_comment": 54, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 92, "o_orderkey": 2211, "len_c_comment": 43, "len_o_comment": 19, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 118, "o_orderkey": 2212, "len_c_comment": 113, "len_o_comment": 45, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 122, "o_orderkey": 2213, "len_c_comment": 79, "len_o_comment": 23, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 115, "o_orderkey": 2214, "len_c_comment": 49, "len_o_comment": 72, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 40, "o_orderkey": 2215, "len_c_comment": 64, "len_o_comment": 66, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 56, "o_orderkey": 2240, "len_c_comment": 93, "len_o_comment": 69, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 103, "o_orderkey": 2241, "len_c_comment": 107, "len_o_comment": 71, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 82, "o_orderkey": 2242, "len_c_comment": 54, "len_o_comment": 61, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 49, "o_orderkey": 2243, "len_c_comment": 64, "len_o_comment": 34, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 127, "o_orderkey": 2244, "len_c_comment": 84, "len_o_comment": 65, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 58, "o_orderkey": 2245, "len_c_comment": 94, "len_o_comment": 44, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 113, "o_orderkey": 2246, "len_c_comment": 68, "len_o_comment": 19, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 95, "o_orderkey": 2247, "len_c_comment": 100, "len_o_comment": 38, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 139, "o_orderkey": 2272, "len_c_comment": 55, "len_o_comment": 49, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 136, "o_orderkey": 2273, "len_c_comment": 84, "len_o_comment": 43, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 104, "o_orderkey": 2274, "len_c_comment": 32, "len_o_comment": 22, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 149, "o_orderkey": 2275, "len_c_comment": 47, "len_o_comment": 47, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 43, "o_orderkey": 2276, "len_c_comment": 102, "len_o_comment": 19, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 89, "o_orderkey": 2277, "len_c_comment": 77, "len_o_comment": 23, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 142, "o_orderkey": 2278, "len_c_comment": 31, "len_o_comment": 63, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 80, "o_orderkey": 2279, "len_c_comment": 78, "len_o_comment": 36, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 46, "o_orderkey": 2304, "len_c_comment": 109, "len_o_comment": 74, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 43, "o_orderkey": 2305, "len_c_comment": 102, "len_o_comment": 27, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 28, "o_orderkey": 2306, "len_c_comment": 48, "len_o_comment": 70, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 106, "o_orderkey": 2307, "len_c_comment": 102, "len_o_comment": 53, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 25, "o_orderkey": 2308, "len_c_comment": 108, "len_o_comment": 20, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 100, "o_orderkey": 2309, "len_c_comment": 78, "len_o_comment": 71, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 31, "o_orderkey": 2310, "len_c_comment": 32768, "len_o_comment": 63, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 73, "o_orderkey": 2311, "len_c_comment": 53, "len_o_comment": 44, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 142, "o_orderkey": 2336, "len_c_comment": 31, "len_o_comment": 62, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 142, "o_orderkey": 2337, "len_c_comment": 31, "len_o_comment": 53, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 140, "o_orderkey": 2338, "len_c_comment": 62, "len_o_comment": 69, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 109, "o_orderkey": 2339, "len_c_comment": 113, "len_o_comment": 21, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 65, "o_orderkey": 2340, "len_c_comment": 67, "len_o_comment": 74, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 82, "o_orderkey": 2341, "len_c_comment": 54, "len_o_comment": 75, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 37, "o_orderkey": 2342, "len_c_comment": 57, "len_o_comment": 60, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 73, "o_orderkey": 2343, "len_c_comment": 53, "len_o_comment": 48, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 13, "o_orderkey": 2368, "len_c_comment": 98, "len_o_comment": 43, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 110, "o_orderkey": 2369, "len_c_comment": 111, "len_o_comment": 41, "c_comment": "nto beans cajole around the even, final deposits. quickly bold packages according to the furiously regular dept" }
+{ "c_custkey": 142, "o_orderkey": 2370, "len_c_comment": 31, "len_o_comment": 49, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 19, "o_orderkey": 2371, "len_c_comment": 80, "len_o_comment": 19, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 31, "o_orderkey": 2372, "len_c_comment": 32768, "len_o_comment": 49, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 28, "o_orderkey": 2373, "len_c_comment": 48, "len_o_comment": 44, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 4, "o_orderkey": 2374, "len_c_comment": 49, "len_o_comment": 43, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 5, "o_orderkey": 2375, "len_c_comment": 50, "len_o_comment": 46, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 37, "o_orderkey": 2400, "len_c_comment": 57, "len_o_comment": 55, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 148, "o_orderkey": 2401, "len_c_comment": 103, "len_o_comment": 32768, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 67, "o_orderkey": 2402, "len_c_comment": 34, "len_o_comment": 34, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 55, "o_orderkey": 2403, "len_c_comment": 110, "len_o_comment": 74, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 77, "o_orderkey": 2404, "len_c_comment": 101, "len_o_comment": 68, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 73, "o_orderkey": 2405, "len_c_comment": 53, "len_o_comment": 21, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 7, "o_orderkey": 2406, "len_c_comment": 78, "len_o_comment": 27, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 55, "o_orderkey": 2407, "len_c_comment": 110, "len_o_comment": 47, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 103, "o_orderkey": 2432, "len_c_comment": 107, "len_o_comment": 32, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 31, "o_orderkey": 2433, "len_c_comment": 32768, "len_o_comment": 46, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 25, "o_orderkey": 2434, "len_c_comment": 108, "len_o_comment": 58, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 73, "o_orderkey": 2435, "len_c_comment": 53, "len_o_comment": 59, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 125, "o_orderkey": 2436, "len_c_comment": 52, "len_o_comment": 77, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 85, "o_orderkey": 2437, "len_c_comment": 39, "len_o_comment": 76, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 13, "o_orderkey": 2438, "len_c_comment": 98, "len_o_comment": 40, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 55, "o_orderkey": 2439, "len_c_comment": 110, "len_o_comment": 21, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 145, "o_orderkey": 2464, "len_c_comment": 54, "len_o_comment": 53, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 34, "o_orderkey": 2465, "len_c_comment": 45, "len_o_comment": 49, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 19, "o_orderkey": 2466, "len_c_comment": 80, "len_o_comment": 77, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 35, "o_orderkey": 2467, "len_c_comment": 54, "len_o_comment": 55, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 112, "o_orderkey": 2468, "len_c_comment": 81, "len_o_comment": 69, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 124, "o_orderkey": 2469, "len_c_comment": 40, "len_o_comment": 63, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 58, "o_orderkey": 2470, "len_c_comment": 94, "len_o_comment": 35, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 89, "o_orderkey": 2471, "len_c_comment": 77, "len_o_comment": 30, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 136, "o_orderkey": 2496, "len_c_comment": 84, "len_o_comment": 39, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 47, "o_orderkey": 2497, "len_c_comment": 69, "len_o_comment": 64, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 97, "o_orderkey": 2498, "len_c_comment": 73, "len_o_comment": 33, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 121, "o_orderkey": 2499, "len_c_comment": 32768, "len_o_comment": 40, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 133, "o_orderkey": 2500, "len_c_comment": 104, "len_o_comment": 72, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 67, "o_orderkey": 2501, "len_c_comment": 34, "len_o_comment": 24, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 70, "o_orderkey": 2502, "len_c_comment": 90, "len_o_comment": 41, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 7, "o_orderkey": 2503, "len_c_comment": 78, "len_o_comment": 76, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 55, "o_orderkey": 2528, "len_c_comment": 110, "len_o_comment": 62, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 136, "o_orderkey": 2529, "len_c_comment": 84, "len_o_comment": 59, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 128, "o_orderkey": 2530, "len_c_comment": 111, "len_o_comment": 32, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 44, "o_orderkey": 2531, "len_c_comment": 37, "len_o_comment": 71, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 94, "o_orderkey": 2532, "len_c_comment": 109, "len_o_comment": 65, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 50, "o_orderkey": 2533, "len_c_comment": 66, "len_o_comment": 24, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 76, "o_orderkey": 2534, "len_c_comment": 116, "len_o_comment": 50, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 121, "o_orderkey": 2535, "len_c_comment": 32768, "len_o_comment": 55, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 131, "o_orderkey": 2560, "len_c_comment": 32768, "len_o_comment": 29, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spe [...]
+{ "c_custkey": 58, "o_orderkey": 2561, "len_c_comment": 94, "len_o_comment": 76, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 10, "o_orderkey": 2562, "len_c_comment": 31, "len_o_comment": 41, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 62, "o_orderkey": 2563, "len_c_comment": 85, "len_o_comment": 33, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 77, "o_orderkey": 2564, "len_c_comment": 101, "len_o_comment": 56, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 56, "o_orderkey": 2565, "len_c_comment": 93, "len_o_comment": 20, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 86, "o_orderkey": 2566, "len_c_comment": 43, "len_o_comment": 67, "c_comment": "quests. pending dugouts are carefully aroun" }
+{ "c_custkey": 70, "o_orderkey": 2567, "len_c_comment": 90, "len_o_comment": 33, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 101, "o_orderkey": 2592, "len_c_comment": 32768, "len_o_comment": 44, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 92, "o_orderkey": 2593, "len_c_comment": 43, "len_o_comment": 21, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 79, "o_orderkey": 2594, "len_c_comment": 115, "len_o_comment": 63, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 74, "o_orderkey": 2595, "len_c_comment": 65, "len_o_comment": 46, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 43, "o_orderkey": 2596, "len_c_comment": 102, "len_o_comment": 38, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 104, "o_orderkey": 2597, "len_c_comment": 32, "len_o_comment": 19, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 112, "o_orderkey": 2598, "len_c_comment": 81, "len_o_comment": 65, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 149, "o_orderkey": 2599, "len_c_comment": 47, "len_o_comment": 38, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 52, "o_orderkey": 2624, "len_c_comment": 73, "len_o_comment": 20, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 40, "o_orderkey": 2625, "len_c_comment": 64, "len_o_comment": 39, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 139, "o_orderkey": 2626, "len_c_comment": 55, "len_o_comment": 78, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 149, "o_orderkey": 2627, "len_c_comment": 47, "len_o_comment": 28, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 56, "o_orderkey": 2628, "len_c_comment": 93, "len_o_comment": 71, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 139, "o_orderkey": 2629, "len_c_comment": 55, "len_o_comment": 48, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 85, "o_orderkey": 2630, "len_c_comment": 39, "len_o_comment": 39, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 37, "o_orderkey": 2631, "len_c_comment": 57, "len_o_comment": 39, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 77, "o_orderkey": 2656, "len_c_comment": 101, "len_o_comment": 24, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 25, "o_orderkey": 2657, "len_c_comment": 108, "len_o_comment": 63, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 14, "o_orderkey": 2658, "len_c_comment": 33, "len_o_comment": 41, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 83, "o_orderkey": 2659, "len_c_comment": 111, "len_o_comment": 36, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 127, "o_orderkey": 2660, "len_c_comment": 84, "len_o_comment": 54, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 74, "o_orderkey": 2661, "len_c_comment": 65, "len_o_comment": 62, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 37, "o_orderkey": 2662, "len_c_comment": 57, "len_o_comment": 77, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 95, "o_orderkey": 2663, "len_c_comment": 100, "len_o_comment": 60, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 98, "o_orderkey": 2688, "len_c_comment": 77, "len_o_comment": 53, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 103, "o_orderkey": 2689, "len_c_comment": 107, "len_o_comment": 56, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 94, "o_orderkey": 2690, "len_c_comment": 109, "len_o_comment": 24, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 7, "o_orderkey": 2691, "len_c_comment": 78, "len_o_comment": 66, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 62, "o_orderkey": 2692, "len_c_comment": 85, "len_o_comment": 37, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 19, "o_orderkey": 2693, "len_c_comment": 80, "len_o_comment": 74, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 121, "o_orderkey": 2694, "len_c_comment": 32768, "len_o_comment": 42, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 58, "o_orderkey": 2695, "len_c_comment": 94, "len_o_comment": 45, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 31, "o_orderkey": 2720, "len_c_comment": 32768, "len_o_comment": 46, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 79, "o_orderkey": 2721, "len_c_comment": 115, "len_o_comment": 57, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 35, "o_orderkey": 2722, "len_c_comment": 54, "len_o_comment": 42, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 61, "o_orderkey": 2723, "len_c_comment": 32768, "len_o_comment": 21, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 137, "o_orderkey": 2724, "len_c_comment": 55, "len_o_comment": 31, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 89, "o_orderkey": 2725, "len_c_comment": 77, "len_o_comment": 19, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 7, "o_orderkey": 2726, "len_c_comment": 78, "len_o_comment": 31, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 74, "o_orderkey": 2727, "len_c_comment": 65, "len_o_comment": 58, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 59, "o_orderkey": 2752, "len_c_comment": 71, "len_o_comment": 43, "c_comment": "ously final packages haggle blithely after the express deposits. furiou" }
+{ "c_custkey": 16, "o_orderkey": 2753, "len_c_comment": 67, "len_o_comment": 37, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 145, "o_orderkey": 2754, "len_c_comment": 54, "len_o_comment": 19, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 118, "o_orderkey": 2755, "len_c_comment": 113, "len_o_comment": 61, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 118, "o_orderkey": 2756, "len_c_comment": 113, "len_o_comment": 22, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 76, "o_orderkey": 2757, "len_c_comment": 116, "len_o_comment": 22, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 43, "o_orderkey": 2758, "len_c_comment": 102, "len_o_comment": 44, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 116, "o_orderkey": 2759, "len_c_comment": 113, "len_o_comment": 41, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 95, "o_orderkey": 2784, "len_c_comment": 100, "len_o_comment": 45, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 148, "o_orderkey": 2785, "len_c_comment": 103, "len_o_comment": 68, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 79, "o_orderkey": 2786, "len_c_comment": 115, "len_o_comment": 55, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 103, "o_orderkey": 2787, "len_c_comment": 107, "len_o_comment": 19, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 124, "o_orderkey": 2788, "len_c_comment": 40, "len_o_comment": 40, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 37, "o_orderkey": 2789, "len_c_comment": 57, "len_o_comment": 32768, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 25, "o_orderkey": 2790, "len_c_comment": 108, "len_o_comment": 44, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 121, "o_orderkey": 2791, "len_c_comment": 32768, "len_o_comment": 43, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 58, "o_orderkey": 2816, "len_c_comment": 94, "len_o_comment": 58, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 40, "o_orderkey": 2817, "len_c_comment": 64, "len_o_comment": 57, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 49, "o_orderkey": 2818, "len_c_comment": 64, "len_o_comment": 37, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 103, "o_orderkey": 2819, "len_c_comment": 107, "len_o_comment": 45, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 19, "o_orderkey": 2820, "len_c_comment": 80, "len_o_comment": 29, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 118, "o_orderkey": 2821, "len_c_comment": 113, "len_o_comment": 68, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 79, "o_orderkey": 2822, "len_c_comment": 115, "len_o_comment": 52, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 79, "o_orderkey": 2823, "len_c_comment": 115, "len_o_comment": 35, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 70, "o_orderkey": 2848, "len_c_comment": 90, "len_o_comment": 53, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 46, "o_orderkey": 2849, "len_c_comment": 109, "len_o_comment": 67, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 100, "o_orderkey": 2850, "len_c_comment": 78, "len_o_comment": 75, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 145, "o_orderkey": 2851, "len_c_comment": 54, "len_o_comment": 34, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 91, "o_orderkey": 2852, "len_c_comment": 32768, "len_o_comment": 63, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 94, "o_orderkey": 2853, "len_c_comment": 109, "len_o_comment": 28, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 139, "o_orderkey": 2854, "len_c_comment": 55, "len_o_comment": 39, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 49, "o_orderkey": 2855, "len_c_comment": 64, "len_o_comment": 32, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 8, "o_orderkey": 2880, "len_c_comment": 113, "len_o_comment": 26, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 100, "o_orderkey": 2881, "len_c_comment": 78, "len_o_comment": 60, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 121, "o_orderkey": 2882, "len_c_comment": 32768, "len_o_comment": 31, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 121, "o_orderkey": 2883, "len_c_comment": 32768, "len_o_comment": 44, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 92, "o_orderkey": 2884, "len_c_comment": 43, "len_o_comment": 41, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 7, "o_orderkey": 2885, "len_c_comment": 78, "len_o_comment": 49, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 109, "o_orderkey": 2886, "len_c_comment": 113, "len_o_comment": 28, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 109, "o_orderkey": 2887, "len_c_comment": 113, "len_o_comment": 67, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 94, "o_orderkey": 2912, "len_c_comment": 109, "len_o_comment": 78, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 43, "o_orderkey": 2913, "len_c_comment": 102, "len_o_comment": 34, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 109, "o_orderkey": 2914, "len_c_comment": 113, "len_o_comment": 47, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 94, "o_orderkey": 2915, "len_c_comment": 109, "len_o_comment": 67, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 8, "o_orderkey": 2916, "len_c_comment": 113, "len_o_comment": 39, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 91, "o_orderkey": 2917, "len_c_comment": 32768, "len_o_comment": 41, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 118, "o_orderkey": 2918, "len_c_comment": 113, "len_o_comment": 23, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 53, "o_orderkey": 2919, "len_c_comment": 73, "len_o_comment": 51, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 14, "o_orderkey": 2944, "len_c_comment": 33, "len_o_comment": 51, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 29, "o_orderkey": 2945, "len_c_comment": 54, "len_o_comment": 62, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 125, "o_orderkey": 2946, "len_c_comment": 52, "len_o_comment": 71, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 70, "o_orderkey": 2947, "len_c_comment": 90, "len_o_comment": 40, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 44, "o_orderkey": 2948, "len_c_comment": 37, "len_o_comment": 44, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 137, "o_orderkey": 2949, "len_c_comment": 55, "len_o_comment": 43, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 136, "o_orderkey": 2950, "len_c_comment": 84, "len_o_comment": 31, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 74, "o_orderkey": 2951, "len_c_comment": 65, "len_o_comment": 71, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 29, "o_orderkey": 2976, "len_c_comment": 54, "len_o_comment": 66, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 73, "o_orderkey": 2977, "len_c_comment": 53, "len_o_comment": 35, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 44, "o_orderkey": 2978, "len_c_comment": 37, "len_o_comment": 57, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 133, "o_orderkey": 2979, "len_c_comment": 104, "len_o_comment": 30, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 4, "o_orderkey": 2980, "len_c_comment": 49, "len_o_comment": 34, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 49, "o_orderkey": 2981, "len_c_comment": 64, "len_o_comment": 76, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 85, "o_orderkey": 2982, "len_c_comment": 39, "len_o_comment": 59, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 62, "o_orderkey": 2983, "len_c_comment": 85, "len_o_comment": 56, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 40, "o_orderkey": 3008, "len_c_comment": 64, "len_o_comment": 70, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 55, "o_orderkey": 3009, "len_c_comment": 110, "len_o_comment": 21, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 8, "o_orderkey": 3010, "len_c_comment": 113, "len_o_comment": 51, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 91, "o_orderkey": 3011, "len_c_comment": 32768, "len_o_comment": 63, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 32, "o_orderkey": 3012, "len_c_comment": 48, "len_o_comment": 51, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 143, "o_orderkey": 3013, "len_c_comment": 50, "len_o_comment": 20, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 29, "o_orderkey": 3014, "len_c_comment": 54, "len_o_comment": 34, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 103, "o_orderkey": 3015, "len_c_comment": 107, "len_o_comment": 48, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 112, "o_orderkey": 3040, "len_c_comment": 81, "len_o_comment": 34, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 113, "o_orderkey": 3041, "len_c_comment": 68, "len_o_comment": 56, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 20, "o_orderkey": 3042, "len_c_comment": 69, "len_o_comment": 22, "c_comment": "g alongside of the special excuses-- fluffily enticing packages wake " }
+{ "c_custkey": 44, "o_orderkey": 3043, "len_c_comment": 37, "len_o_comment": 30, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 53, "o_orderkey": 3044, "len_c_comment": 73, "len_o_comment": 63, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 50, "o_orderkey": 3045, "len_c_comment": 66, "len_o_comment": 50, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 32, "o_orderkey": 3046, "len_c_comment": 48, "len_o_comment": 30, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 25, "o_orderkey": 3047, "len_c_comment": 108, "len_o_comment": 56, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 23, "o_orderkey": 3072, "len_c_comment": 87, "len_o_comment": 47, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 136, "o_orderkey": 3073, "len_c_comment": 84, "len_o_comment": 72, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 67, "o_orderkey": 3074, "len_c_comment": 34, "len_o_comment": 63, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 127, "o_orderkey": 3075, "len_c_comment": 84, "len_o_comment": 33, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 92, "o_orderkey": 3076, "len_c_comment": 43, "len_o_comment": 55, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 121, "o_orderkey": 3077, "len_c_comment": 32768, "len_o_comment": 37, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 49, "o_orderkey": 3078, "len_c_comment": 64, "len_o_comment": 32, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 100, "o_orderkey": 3079, "len_c_comment": 78, "len_o_comment": 19, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 70, "o_orderkey": 3104, "len_c_comment": 90, "len_o_comment": 41, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 137, "o_orderkey": 3105, "len_c_comment": 55, "len_o_comment": 21, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 145, "o_orderkey": 3106, "len_c_comment": 54, "len_o_comment": 62, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 26, "o_orderkey": 3107, "len_c_comment": 70, "len_o_comment": 23, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 85, "o_orderkey": 3108, "len_c_comment": 39, "len_o_comment": 30, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 124, "o_orderkey": 3109, "len_c_comment": 40, "len_o_comment": 56, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 88, "o_orderkey": 3110, "len_c_comment": 99, "len_o_comment": 62, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 133, "o_orderkey": 3111, "len_c_comment": 104, "len_o_comment": 76, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 23, "o_orderkey": 3136, "len_c_comment": 87, "len_o_comment": 33, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 136, "o_orderkey": 3137, "len_c_comment": 84, "len_o_comment": 31, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 139, "o_orderkey": 3138, "len_c_comment": 55, "len_o_comment": 73, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 17, "o_orderkey": 3139, "len_c_comment": 33, "len_o_comment": 45, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 145, "o_orderkey": 3140, "len_c_comment": 54, "len_o_comment": 46, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 26, "o_orderkey": 3141, "len_c_comment": 70, "len_o_comment": 59, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 8, "o_orderkey": 3142, "len_c_comment": 113, "len_o_comment": 77, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 107, "o_orderkey": 3143, "len_c_comment": 98, "len_o_comment": 36, "c_comment": "counts cajole slyly. regular requests wake. furiously regular deposits about the blithely final fo" }
+{ "c_custkey": 136, "o_orderkey": 3168, "len_c_comment": 84, "len_o_comment": 67, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 19, "o_orderkey": 3169, "len_c_comment": 80, "len_o_comment": 54, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 5, "o_orderkey": 3170, "len_c_comment": 50, "len_o_comment": 24, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 47, "o_orderkey": 3171, "len_c_comment": 69, "len_o_comment": 19, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 89, "o_orderkey": 3172, "len_c_comment": 77, "len_o_comment": 30, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 148, "o_orderkey": 3173, "len_c_comment": 103, "len_o_comment": 25, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 127, "o_orderkey": 3174, "len_c_comment": 84, "len_o_comment": 72, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 44, "o_orderkey": 3175, "len_c_comment": 37, "len_o_comment": 63, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 13, "o_orderkey": 3200, "len_c_comment": 98, "len_o_comment": 60, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 97, "o_orderkey": 3201, "len_c_comment": 73, "len_o_comment": 32768, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 88, "o_orderkey": 3202, "len_c_comment": 99, "len_o_comment": 51, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 127, "o_orderkey": 3203, "len_c_comment": 84, "len_o_comment": 60, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 10, "o_orderkey": 3204, "len_c_comment": 31, "len_o_comment": 47, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 148, "o_orderkey": 3205, "len_c_comment": 103, "len_o_comment": 59, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 122, "o_orderkey": 3206, "len_c_comment": 79, "len_o_comment": 34, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 22, "o_orderkey": 3207, "len_c_comment": 50, "len_o_comment": 29, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 82, "o_orderkey": 3232, "len_c_comment": 54, "len_o_comment": 35, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 140, "o_orderkey": 3233, "len_c_comment": 62, "len_o_comment": 75, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 14, "o_orderkey": 3234, "len_c_comment": 33, "len_o_comment": 71, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 46, "o_orderkey": 3235, "len_c_comment": 109, "len_o_comment": 27, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 142, "o_orderkey": 3236, "len_c_comment": 31, "len_o_comment": 24, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 19, "o_orderkey": 3237, "len_c_comment": 80, "len_o_comment": 62, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 61, "o_orderkey": 3238, "len_c_comment": 32768, "len_o_comment": 77, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 35, "o_orderkey": 3239, "len_c_comment": 54, "len_o_comment": 56, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 94, "o_orderkey": 3264, "len_c_comment": 109, "len_o_comment": 24, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 53, "o_orderkey": 3265, "len_c_comment": 73, "len_o_comment": 21, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 4, "o_orderkey": 3266, "len_c_comment": 49, "len_o_comment": 43, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 112, "o_orderkey": 3267, "len_c_comment": 81, "len_o_comment": 65, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 142, "o_orderkey": 3268, "len_c_comment": 31, "len_o_comment": 42, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 17, "o_orderkey": 3269, "len_c_comment": 33, "len_o_comment": 73, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 38, "o_orderkey": 3270, "len_c_comment": 110, "len_o_comment": 24, "c_comment": "lar excuses. closely even asymptotes cajole blithely excuses. carefully silent pinto beans sleep carefully fin" }
+{ "c_custkey": 34, "o_orderkey": 3271, "len_c_comment": 45, "len_o_comment": 29, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 148, "o_orderkey": 3296, "len_c_comment": 103, "len_o_comment": 49, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 139, "o_orderkey": 3297, "len_c_comment": 55, "len_o_comment": 64, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 116, "o_orderkey": 3298, "len_c_comment": 113, "len_o_comment": 20, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 91, "o_orderkey": 3299, "len_c_comment": 32768, "len_o_comment": 46, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 118, "o_orderkey": 3300, "len_c_comment": 113, "len_o_comment": 73, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 133, "o_orderkey": 3301, "len_c_comment": 104, "len_o_comment": 74, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 34, "o_orderkey": 3302, "len_c_comment": 45, "len_o_comment": 62, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 145, "o_orderkey": 3303, "len_c_comment": 54, "len_o_comment": 53, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 7, "o_orderkey": 3328, "len_c_comment": 78, "len_o_comment": 71, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 4, "o_orderkey": 3329, "len_c_comment": 49, "len_o_comment": 46, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 7, "o_orderkey": 3330, "len_c_comment": 78, "len_o_comment": 61, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 91, "o_orderkey": 3331, "len_c_comment": 32768, "len_o_comment": 43, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 143, "o_orderkey": 3332, "len_c_comment": 50, "len_o_comment": 61, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 92, "o_orderkey": 3333, "len_c_comment": 43, "len_o_comment": 56, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 76, "o_orderkey": 3334, "len_c_comment": 116, "len_o_comment": 49, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 49, "o_orderkey": 3335, "len_c_comment": 64, "len_o_comment": 55, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 103, "o_orderkey": 3360, "len_c_comment": 107, "len_o_comment": 51, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 49, "o_orderkey": 3361, "len_c_comment": 64, "len_o_comment": 47, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 140, "o_orderkey": 3362, "len_c_comment": 62, "len_o_comment": 40, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 52, "o_orderkey": 3363, "len_c_comment": 73, "len_o_comment": 59, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 46, "o_orderkey": 3364, "len_c_comment": 109, "len_o_comment": 27, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 82, "o_orderkey": 3365, "len_c_comment": 54, "len_o_comment": 56, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 52, "o_orderkey": 3366, "len_c_comment": 73, "len_o_comment": 36, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 73, "o_orderkey": 3367, "len_c_comment": 53, "len_o_comment": 52, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 74, "o_orderkey": 3392, "len_c_comment": 65, "len_o_comment": 50, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 98, "o_orderkey": 3393, "len_c_comment": 77, "len_o_comment": 51, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 149, "o_orderkey": 3394, "len_c_comment": 47, "len_o_comment": 66, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 149, "o_orderkey": 3395, "len_c_comment": 47, "len_o_comment": 26, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 149, "o_orderkey": 3396, "len_c_comment": 47, "len_o_comment": 23, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 130, "o_orderkey": 3397, "len_c_comment": 96, "len_o_comment": 26, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 67, "o_orderkey": 3398, "len_c_comment": 34, "len_o_comment": 58, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 122, "o_orderkey": 3399, "len_c_comment": 79, "len_o_comment": 59, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 103, "o_orderkey": 3424, "len_c_comment": 107, "len_o_comment": 69, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 115, "o_orderkey": 3425, "len_c_comment": 49, "len_o_comment": 56, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 53, "o_orderkey": 3426, "len_c_comment": 73, "len_o_comment": 22, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 4, "o_orderkey": 3427, "len_c_comment": 49, "len_o_comment": 49, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 10, "o_orderkey": 3428, "len_c_comment": 31, "len_o_comment": 41, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 146, "o_orderkey": 3429, "len_c_comment": 60, "len_o_comment": 77, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 113, "o_orderkey": 3430, "len_c_comment": 68, "len_o_comment": 76, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 47, "o_orderkey": 3431, "len_c_comment": 69, "len_o_comment": 29, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 46, "o_orderkey": 3456, "len_c_comment": 109, "len_o_comment": 27, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 25, "o_orderkey": 3457, "len_c_comment": 108, "len_o_comment": 45, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 95, "o_orderkey": 3458, "len_c_comment": 100, "len_o_comment": 25, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 119, "o_orderkey": 3459, "len_c_comment": 57, "len_o_comment": 69, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 82, "o_orderkey": 3460, "len_c_comment": 54, "len_o_comment": 20, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 100, "o_orderkey": 3461, "len_c_comment": 78, "len_o_comment": 74, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 133, "o_orderkey": 3462, "len_c_comment": 104, "len_o_comment": 24, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 89, "o_orderkey": 3463, "len_c_comment": 77, "len_o_comment": 37, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 148, "o_orderkey": 3488, "len_c_comment": 103, "len_o_comment": 45, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 109, "o_orderkey": 3489, "len_c_comment": 113, "len_o_comment": 49, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 91, "o_orderkey": 3490, "len_c_comment": 32768, "len_o_comment": 74, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 83, "o_orderkey": 3491, "len_c_comment": 111, "len_o_comment": 40, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 103, "o_orderkey": 3492, "len_c_comment": 107, "len_o_comment": 55, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 82, "o_orderkey": 3493, "len_c_comment": 54, "len_o_comment": 59, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 49, "o_orderkey": 3494, "len_c_comment": 64, "len_o_comment": 72, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 31, "o_orderkey": 3495, "len_c_comment": 32768, "len_o_comment": 29, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 125, "o_orderkey": 3520, "len_c_comment": 52, "len_o_comment": 30, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 7, "o_orderkey": 3521, "len_c_comment": 78, "len_o_comment": 50, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 26, "o_orderkey": 3522, "len_c_comment": 70, "len_o_comment": 46, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 149, "o_orderkey": 3523, "len_c_comment": 47, "len_o_comment": 30, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 94, "o_orderkey": 3524, "len_c_comment": 109, "len_o_comment": 77, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 109, "o_orderkey": 3525, "len_c_comment": 113, "len_o_comment": 26, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 56, "o_orderkey": 3526, "len_c_comment": 93, "len_o_comment": 42, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 56, "o_orderkey": 3527, "len_c_comment": 93, "len_o_comment": 44, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 35, "o_orderkey": 3552, "len_c_comment": 54, "len_o_comment": 32, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 91, "o_orderkey": 3553, "len_c_comment": 32768, "len_o_comment": 30, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 44, "o_orderkey": 3554, "len_c_comment": 37, "len_o_comment": 26, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 46, "o_orderkey": 3555, "len_c_comment": 109, "len_o_comment": 38, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 16, "o_orderkey": 3556, "len_c_comment": 67, "len_o_comment": 37, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 121, "o_orderkey": 3557, "len_c_comment": 32768, "len_o_comment": 19, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 28, "o_orderkey": 3558, "len_c_comment": 48, "len_o_comment": 42, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 106, "o_orderkey": 3559, "len_c_comment": 102, "len_o_comment": 49, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 13, "o_orderkey": 3584, "len_c_comment": 98, "len_o_comment": 75, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 139, "o_orderkey": 3585, "len_c_comment": 55, "len_o_comment": 67, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 121, "o_orderkey": 3586, "len_c_comment": 32768, "len_o_comment": 62, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 79, "o_orderkey": 3587, "len_c_comment": 115, "len_o_comment": 21, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 119, "o_orderkey": 3588, "len_c_comment": 57, "len_o_comment": 30, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 31, "o_orderkey": 3589, "len_c_comment": 32768, "len_o_comment": 32768, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blith [...]
+{ "c_custkey": 149, "o_orderkey": 3590, "len_c_comment": 47, "len_o_comment": 20, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 136, "o_orderkey": 3591, "len_c_comment": 84, "len_o_comment": 33, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 128, "o_orderkey": 3616, "len_c_comment": 111, "len_o_comment": 76, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 40, "o_orderkey": 3617, "len_c_comment": 64, "len_o_comment": 34, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 10, "o_orderkey": 3618, "len_c_comment": 31, "len_o_comment": 37, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 149, "o_orderkey": 3619, "len_c_comment": 47, "len_o_comment": 62, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 44, "o_orderkey": 3620, "len_c_comment": 37, "len_o_comment": 70, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 142, "o_orderkey": 3621, "len_c_comment": 31, "len_o_comment": 24, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 91, "o_orderkey": 3622, "len_c_comment": 32768, "len_o_comment": 53, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 4, "o_orderkey": 3623, "len_c_comment": 49, "len_o_comment": 40, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 125, "o_orderkey": 3648, "len_c_comment": 52, "len_o_comment": 72, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 40, "o_orderkey": 3649, "len_c_comment": 64, "len_o_comment": 29, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 46, "o_orderkey": 3650, "len_c_comment": 109, "len_o_comment": 26, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 100, "o_orderkey": 3651, "len_c_comment": 78, "len_o_comment": 51, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 107, "o_orderkey": 3652, "len_c_comment": 98, "len_o_comment": 28, "c_comment": "counts cajole slyly. regular requests wake. furiously regular deposits about the blithely final fo" }
+{ "c_custkey": 40, "o_orderkey": 3653, "len_c_comment": 64, "len_o_comment": 44, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 7, "o_orderkey": 3654, "len_c_comment": 78, "len_o_comment": 65, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 49, "o_orderkey": 3655, "len_c_comment": 64, "len_o_comment": 60, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 127, "o_orderkey": 3680, "len_c_comment": 84, "len_o_comment": 61, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 52, "o_orderkey": 3681, "len_c_comment": 73, "len_o_comment": 68, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 32, "o_orderkey": 3682, "len_c_comment": 48, "len_o_comment": 32, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 88, "o_orderkey": 3683, "len_c_comment": 99, "len_o_comment": 51, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 23, "o_orderkey": 3684, "len_c_comment": 87, "len_o_comment": 51, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 16, "o_orderkey": 3685, "len_c_comment": 67, "len_o_comment": 27, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 40, "o_orderkey": 3686, "len_c_comment": 64, "len_o_comment": 53, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 43, "o_orderkey": 3687, "len_c_comment": 102, "len_o_comment": 60, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 64, "o_orderkey": 3712, "len_c_comment": 57, "len_o_comment": 19, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 149, "o_orderkey": 3713, "len_c_comment": 47, "len_o_comment": 40, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 40, "o_orderkey": 3714, "len_c_comment": 64, "len_o_comment": 63, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 65, "o_orderkey": 3715, "len_c_comment": 67, "len_o_comment": 69, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 43, "o_orderkey": 3716, "len_c_comment": 102, "len_o_comment": 30, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 28, "o_orderkey": 3717, "len_c_comment": 48, "len_o_comment": 33, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 31, "o_orderkey": 3718, "len_c_comment": 32768, "len_o_comment": 78, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 118, "o_orderkey": 3719, "len_c_comment": 113, "len_o_comment": 77, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 65, "o_orderkey": 3744, "len_c_comment": 67, "len_o_comment": 64, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 112, "o_orderkey": 3745, "len_c_comment": 81, "len_o_comment": 60, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 74, "o_orderkey": 3746, "len_c_comment": 65, "len_o_comment": 36, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 149, "o_orderkey": 3747, "len_c_comment": 47, "len_o_comment": 67, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 53, "o_orderkey": 3748, "len_c_comment": 73, "len_o_comment": 22, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 38, "o_orderkey": 3749, "len_c_comment": 110, "len_o_comment": 37, "c_comment": "lar excuses. closely even asymptotes cajole blithely excuses. carefully silent pinto beans sleep carefully fin" }
+{ "c_custkey": 97, "o_orderkey": 3750, "len_c_comment": 73, "len_o_comment": 44, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 10, "o_orderkey": 3751, "len_c_comment": 31, "len_o_comment": 27, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 85, "o_orderkey": 3776, "len_c_comment": 39, "len_o_comment": 26, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 28, "o_orderkey": 3777, "len_c_comment": 48, "len_o_comment": 47, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 106, "o_orderkey": 3778, "len_c_comment": 102, "len_o_comment": 68, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 74, "o_orderkey": 3779, "len_c_comment": 65, "len_o_comment": 67, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 41, "o_orderkey": 3780, "len_c_comment": 32768, "len_o_comment": 25, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 139, "o_orderkey": 3781, "len_c_comment": 55, "len_o_comment": 78, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 65, "o_orderkey": 3782, "len_c_comment": 67, "len_o_comment": 33, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 44, "o_orderkey": 3783, "len_c_comment": 37, "len_o_comment": 58, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 79, "o_orderkey": 3808, "len_c_comment": 115, "len_o_comment": 30, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 148, "o_orderkey": 3809, "len_c_comment": 103, "len_o_comment": 62, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 100, "o_orderkey": 3810, "len_c_comment": 78, "len_o_comment": 38, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 80, "o_orderkey": 3811, "len_c_comment": 78, "len_o_comment": 19, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 41, "o_orderkey": 3812, "len_c_comment": 32768, "len_o_comment": 25, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 146, "o_orderkey": 3813, "len_c_comment": 60, "len_o_comment": 36, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 118, "o_orderkey": 3814, "len_c_comment": 113, "len_o_comment": 29, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 104, "o_orderkey": 3815, "len_c_comment": 32, "len_o_comment": 27, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 100, "o_orderkey": 3840, "len_c_comment": 78, "len_o_comment": 33, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 58, "o_orderkey": 3841, "len_c_comment": 94, "len_o_comment": 77, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 28, "o_orderkey": 3842, "len_c_comment": 48, "len_o_comment": 78, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 10, "o_orderkey": 3843, "len_c_comment": 31, "len_o_comment": 45, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 79, "o_orderkey": 3844, "len_c_comment": 115, "len_o_comment": 39, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 89, "o_orderkey": 3845, "len_c_comment": 77, "len_o_comment": 70, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 49, "o_orderkey": 3846, "len_c_comment": 64, "len_o_comment": 23, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 34, "o_orderkey": 3847, "len_c_comment": 45, "len_o_comment": 36, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 134, "o_orderkey": 3872, "len_c_comment": 37, "len_o_comment": 60, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 55, "o_orderkey": 3873, "len_c_comment": 110, "len_o_comment": 30, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 119, "o_orderkey": 3874, "len_c_comment": 57, "len_o_comment": 52, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 118, "o_orderkey": 3875, "len_c_comment": 113, "len_o_comment": 31, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 29, "o_orderkey": 3876, "len_c_comment": 54, "len_o_comment": 20, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 17, "o_orderkey": 3877, "len_c_comment": 33, "len_o_comment": 25, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 88, "o_orderkey": 3878, "len_c_comment": 99, "len_o_comment": 65, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 142, "o_orderkey": 3879, "len_c_comment": 31, "len_o_comment": 71, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 149, "o_orderkey": 3904, "len_c_comment": 47, "len_o_comment": 57, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 22, "o_orderkey": 3905, "len_c_comment": 50, "len_o_comment": 57, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 46, "o_orderkey": 3906, "len_c_comment": 109, "len_o_comment": 53, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 67, "o_orderkey": 3907, "len_c_comment": 34, "len_o_comment": 25, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 43, "o_orderkey": 3908, "len_c_comment": 102, "len_o_comment": 23, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 22, "o_orderkey": 3909, "len_c_comment": 50, "len_o_comment": 52, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 64, "o_orderkey": 3910, "len_c_comment": 57, "len_o_comment": 29, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 10, "o_orderkey": 3911, "len_c_comment": 31, "len_o_comment": 63, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 32, "o_orderkey": 3936, "len_c_comment": 48, "len_o_comment": 41, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 94, "o_orderkey": 3937, "len_c_comment": 109, "len_o_comment": 33, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 31, "o_orderkey": 3938, "len_c_comment": 32768, "len_o_comment": 29, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 70, "o_orderkey": 3939, "len_c_comment": 90, "len_o_comment": 75, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 149, "o_orderkey": 3940, "len_c_comment": 47, "len_o_comment": 66, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 136, "o_orderkey": 3941, "len_c_comment": 84, "len_o_comment": 36, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 76, "o_orderkey": 3942, "len_c_comment": 116, "len_o_comment": 51, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 40, "o_orderkey": 3943, "len_c_comment": 64, "len_o_comment": 75, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 25, "o_orderkey": 3968, "len_c_comment": 108, "len_o_comment": 29, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 52, "o_orderkey": 3969, "len_c_comment": 73, "len_o_comment": 32, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 76, "o_orderkey": 3970, "len_c_comment": 116, "len_o_comment": 77, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 104, "o_orderkey": 3971, "len_c_comment": 32, "len_o_comment": 43, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 124, "o_orderkey": 3972, "len_c_comment": 40, "len_o_comment": 56, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 103, "o_orderkey": 3973, "len_c_comment": 107, "len_o_comment": 56, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 94, "o_orderkey": 3974, "len_c_comment": 109, "len_o_comment": 37, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 118, "o_orderkey": 3975, "len_c_comment": 113, "len_o_comment": 51, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 70, "o_orderkey": 4000, "len_c_comment": 90, "len_o_comment": 72, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 115, "o_orderkey": 4001, "len_c_comment": 49, "len_o_comment": 32768, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 104, "o_orderkey": 4002, "len_c_comment": 32, "len_o_comment": 51, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 112, "o_orderkey": 4003, "len_c_comment": 81, "len_o_comment": 59, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 70, "o_orderkey": 4004, "len_c_comment": 90, "len_o_comment": 47, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 140, "o_orderkey": 4005, "len_c_comment": 62, "len_o_comment": 31, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 35, "o_orderkey": 4006, "len_c_comment": 54, "len_o_comment": 60, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 8, "o_orderkey": 4007, "len_c_comment": 113, "len_o_comment": 49, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 10, "o_orderkey": 4032, "len_c_comment": 31, "len_o_comment": 50, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 83, "o_orderkey": 4033, "len_c_comment": 111, "len_o_comment": 55, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 94, "o_orderkey": 4034, "len_c_comment": 109, "len_o_comment": 76, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 118, "o_orderkey": 4035, "len_c_comment": 113, "len_o_comment": 30, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 47, "o_orderkey": 4036, "len_c_comment": 69, "len_o_comment": 65, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 121, "o_orderkey": 4037, "len_c_comment": 32768, "len_o_comment": 33, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 94, "o_orderkey": 4038, "len_c_comment": 109, "len_o_comment": 70, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 29, "o_orderkey": 4039, "len_c_comment": 54, "len_o_comment": 33, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 130, "o_orderkey": 4064, "len_c_comment": 96, "len_o_comment": 59, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 80, "o_orderkey": 4065, "len_c_comment": 78, "len_o_comment": 37, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 32, "o_orderkey": 4066, "len_c_comment": 48, "len_o_comment": 62, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 16, "o_orderkey": 4067, "len_c_comment": 67, "len_o_comment": 73, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 125, "o_orderkey": 4068, "len_c_comment": 52, "len_o_comment": 68, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 73, "o_orderkey": 4069, "len_c_comment": 53, "len_o_comment": 46, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 29, "o_orderkey": 4070, "len_c_comment": 54, "len_o_comment": 21, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 148, "o_orderkey": 4071, "len_c_comment": 103, "len_o_comment": 32, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 139, "o_orderkey": 4096, "len_c_comment": 55, "len_o_comment": 39, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 10, "o_orderkey": 4097, "len_c_comment": 31, "len_o_comment": 72, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 23, "o_orderkey": 4098, "len_c_comment": 87, "len_o_comment": 67, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 17, "o_orderkey": 4099, "len_c_comment": 33, "len_o_comment": 64, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 4, "o_orderkey": 4100, "len_c_comment": 49, "len_o_comment": 68, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 142, "o_orderkey": 4101, "len_c_comment": 31, "len_o_comment": 72, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 22, "o_orderkey": 4102, "len_c_comment": 50, "len_o_comment": 41, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 106, "o_orderkey": 4103, "len_c_comment": 102, "len_o_comment": 26, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 139, "o_orderkey": 4128, "len_c_comment": 55, "len_o_comment": 65, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 32, "o_orderkey": 4129, "len_c_comment": 48, "len_o_comment": 55, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 104, "o_orderkey": 4130, "len_c_comment": 32, "len_o_comment": 53, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 44, "o_orderkey": 4131, "len_c_comment": 37, "len_o_comment": 22, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 19, "o_orderkey": 4132, "len_c_comment": 80, "len_o_comment": 73, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 101, "o_orderkey": 4133, "len_c_comment": 32768, "len_o_comment": 64, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 97, "o_orderkey": 4134, "len_c_comment": 73, "len_o_comment": 31, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 37, "o_orderkey": 4135, "len_c_comment": 57, "len_o_comment": 47, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 55, "o_orderkey": 4160, "len_c_comment": 110, "len_o_comment": 64, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 118, "o_orderkey": 4161, "len_c_comment": 113, "len_o_comment": 59, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 22, "o_orderkey": 4162, "len_c_comment": 50, "len_o_comment": 74, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 64, "o_orderkey": 4163, "len_c_comment": 57, "len_o_comment": 42, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 94, "o_orderkey": 4164, "len_c_comment": 109, "len_o_comment": 77, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 4, "o_orderkey": 4165, "len_c_comment": 49, "len_o_comment": 64, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 43, "o_orderkey": 4166, "len_c_comment": 102, "len_o_comment": 68, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 28, "o_orderkey": 4167, "len_c_comment": 48, "len_o_comment": 32, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 146, "o_orderkey": 4192, "len_c_comment": 60, "len_o_comment": 48, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 4, "o_orderkey": 4193, "len_c_comment": 49, "len_o_comment": 61, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 106, "o_orderkey": 4194, "len_c_comment": 102, "len_o_comment": 78, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 104, "o_orderkey": 4195, "len_c_comment": 32, "len_o_comment": 71, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 106, "o_orderkey": 4196, "len_c_comment": 102, "len_o_comment": 40, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 92, "o_orderkey": 4197, "len_c_comment": 43, "len_o_comment": 22, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 143, "o_orderkey": 4198, "len_c_comment": 50, "len_o_comment": 33, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 5, "o_orderkey": 4199, "len_c_comment": 50, "len_o_comment": 69, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 70, "o_orderkey": 4224, "len_c_comment": 90, "len_o_comment": 71, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 128, "o_orderkey": 4225, "len_c_comment": 111, "len_o_comment": 65, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 92, "o_orderkey": 4226, "len_c_comment": 43, "len_o_comment": 56, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 133, "o_orderkey": 4227, "len_c_comment": 104, "len_o_comment": 61, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 110, "o_orderkey": 4228, "len_c_comment": 111, "len_o_comment": 19, "c_comment": "nto beans cajole around the even, final deposits. quickly bold packages according to the furiously regular dept" }
+{ "c_custkey": 14, "o_orderkey": 4229, "len_c_comment": 33, "len_o_comment": 31, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 140, "o_orderkey": 4230, "len_c_comment": 62, "len_o_comment": 52, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 86, "o_orderkey": 4231, "len_c_comment": 43, "len_o_comment": 72, "c_comment": "quests. pending dugouts are carefully aroun" }
+{ "c_custkey": 118, "o_orderkey": 4256, "len_c_comment": 113, "len_o_comment": 31, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 17, "o_orderkey": 4257, "len_c_comment": 33, "len_o_comment": 48, "c_comment": "packages wake! blithely even pint" }
+{ "c_custkey": 92, "o_orderkey": 4258, "len_c_comment": 43, "len_o_comment": 38, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 104, "o_orderkey": 4259, "len_c_comment": 32, "len_o_comment": 60, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 142, "o_orderkey": 4260, "len_c_comment": 31, "len_o_comment": 35, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 118, "o_orderkey": 4261, "len_c_comment": 113, "len_o_comment": 60, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 88, "o_orderkey": 4262, "len_c_comment": 99, "len_o_comment": 54, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 4, "o_orderkey": 4263, "len_c_comment": 49, "len_o_comment": 58, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 34, "o_orderkey": 4288, "len_c_comment": 45, "len_o_comment": 50, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 125, "o_orderkey": 4289, "len_c_comment": 52, "len_o_comment": 52, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 41, "o_orderkey": 4290, "len_c_comment": 32768, "len_o_comment": 70, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 89, "o_orderkey": 4291, "len_c_comment": 77, "len_o_comment": 47, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 25, "o_orderkey": 4292, "len_c_comment": 108, "len_o_comment": 21, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 103, "o_orderkey": 4293, "len_c_comment": 107, "len_o_comment": 48, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 49, "o_orderkey": 4294, "len_c_comment": 64, "len_o_comment": 48, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 5, "o_orderkey": 4295, "len_c_comment": 50, "len_o_comment": 26, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 115, "o_orderkey": 4320, "len_c_comment": 49, "len_o_comment": 36, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 16, "o_orderkey": 4321, "len_c_comment": 67, "len_o_comment": 53, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 142, "o_orderkey": 4322, "len_c_comment": 31, "len_o_comment": 74, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 104, "o_orderkey": 4323, "len_c_comment": 32, "len_o_comment": 60, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 73, "o_orderkey": 4324, "len_c_comment": 53, "len_o_comment": 45, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 130, "o_orderkey": 4325, "len_c_comment": 96, "len_o_comment": 22, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 29, "o_orderkey": 4326, "len_c_comment": 54, "len_o_comment": 35, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 146, "o_orderkey": 4327, "len_c_comment": 60, "len_o_comment": 38, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 14, "o_orderkey": 4352, "len_c_comment": 33, "len_o_comment": 48, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 73, "o_orderkey": 4353, "len_c_comment": 53, "len_o_comment": 24, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 145, "o_orderkey": 4354, "len_c_comment": 54, "len_o_comment": 33, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 4, "o_orderkey": 4355, "len_c_comment": 49, "len_o_comment": 42, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 97, "o_orderkey": 4356, "len_c_comment": 73, "len_o_comment": 60, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 47, "o_orderkey": 4357, "len_c_comment": 69, "len_o_comment": 20, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 25, "o_orderkey": 4358, "len_c_comment": 108, "len_o_comment": 45, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 16, "o_orderkey": 4359, "len_c_comment": 67, "len_o_comment": 55, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 25, "o_orderkey": 4384, "len_c_comment": 108, "len_o_comment": 73, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 122, "o_orderkey": 4385, "len_c_comment": 79, "len_o_comment": 61, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 61, "o_orderkey": 4386, "len_c_comment": 32768, "len_o_comment": 36, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 110, "o_orderkey": 4387, "len_c_comment": 111, "len_o_comment": 71, "c_comment": "nto beans cajole around the even, final deposits. quickly bold packages according to the furiously regular dept" }
+{ "c_custkey": 10, "o_orderkey": 4388, "len_c_comment": 31, "len_o_comment": 49, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 55, "o_orderkey": 4389, "len_c_comment": 110, "len_o_comment": 32768, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 7, "o_orderkey": 4390, "len_c_comment": 78, "len_o_comment": 21, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 38, "o_orderkey": 4391, "len_c_comment": 110, "len_o_comment": 27, "c_comment": "lar excuses. closely even asymptotes cajole blithely excuses. carefully silent pinto beans sleep carefully fin" }
+{ "c_custkey": 149, "o_orderkey": 4416, "len_c_comment": 47, "len_o_comment": 45, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 67, "o_orderkey": 4417, "len_c_comment": 34, "len_o_comment": 47, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 61, "o_orderkey": 4418, "len_c_comment": 32768, "len_o_comment": 42, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 104, "o_orderkey": 4419, "len_c_comment": 32, "len_o_comment": 40, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 109, "o_orderkey": 4420, "len_c_comment": 113, "len_o_comment": 78, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 10, "o_orderkey": 4421, "len_c_comment": 31, "len_o_comment": 41, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 70, "o_orderkey": 4422, "len_c_comment": 90, "len_o_comment": 66, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 64, "o_orderkey": 4423, "len_c_comment": 57, "len_o_comment": 20, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 70, "o_orderkey": 4448, "len_c_comment": 90, "len_o_comment": 68, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 10, "o_orderkey": 4449, "len_c_comment": 31, "len_o_comment": 43, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 106, "o_orderkey": 4450, "len_c_comment": 102, "len_o_comment": 66, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 4, "o_orderkey": 4451, "len_c_comment": 49, "len_o_comment": 51, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 13, "o_orderkey": 4452, "len_c_comment": 98, "len_o_comment": 77, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 65, "o_orderkey": 4453, "len_c_comment": 67, "len_o_comment": 71, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 142, "o_orderkey": 4454, "len_c_comment": 31, "len_o_comment": 21, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 19, "o_orderkey": 4455, "len_c_comment": 80, "len_o_comment": 72, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 85, "o_orderkey": 4480, "len_c_comment": 39, "len_o_comment": 31, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 148, "o_orderkey": 4481, "len_c_comment": 103, "len_o_comment": 26, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 82, "o_orderkey": 4482, "len_c_comment": 54, "len_o_comment": 71, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 52, "o_orderkey": 4483, "len_c_comment": 73, "len_o_comment": 73, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 131, "o_orderkey": 4484, "len_c_comment": 32768, "len_o_comment": 68, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spe [...]
+{ "c_custkey": 53, "o_orderkey": 4485, "len_c_comment": 73, "len_o_comment": 72, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 37, "o_orderkey": 4486, "len_c_comment": 57, "len_o_comment": 44, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 46, "o_orderkey": 4487, "len_c_comment": 109, "len_o_comment": 78, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 70, "o_orderkey": 4512, "len_c_comment": 90, "len_o_comment": 31, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 85, "o_orderkey": 4513, "len_c_comment": 39, "len_o_comment": 24, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 97, "o_orderkey": 4514, "len_c_comment": 73, "len_o_comment": 34, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 140, "o_orderkey": 4515, "len_c_comment": 62, "len_o_comment": 58, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 130, "o_orderkey": 4516, "len_c_comment": 96, "len_o_comment": 44, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 113, "o_orderkey": 4517, "len_c_comment": 68, "len_o_comment": 52, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 125, "o_orderkey": 4518, "len_c_comment": 52, "len_o_comment": 24, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 136, "o_orderkey": 4519, "len_c_comment": 84, "len_o_comment": 22, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 112, "o_orderkey": 4544, "len_c_comment": 81, "len_o_comment": 48, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 59, "o_orderkey": 4545, "len_c_comment": 71, "len_o_comment": 20, "c_comment": "ously final packages haggle blithely after the express deposits. furiou" }
+{ "c_custkey": 43, "o_orderkey": 4546, "len_c_comment": 102, "len_o_comment": 47, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 109, "o_orderkey": 4547, "len_c_comment": 113, "len_o_comment": 65, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 127, "o_orderkey": 4548, "len_c_comment": 84, "len_o_comment": 59, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 64, "o_orderkey": 4549, "len_c_comment": 57, "len_o_comment": 70, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 118, "o_orderkey": 4550, "len_c_comment": 113, "len_o_comment": 23, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 109, "o_orderkey": 4551, "len_c_comment": 113, "len_o_comment": 26, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 139, "o_orderkey": 4576, "len_c_comment": 55, "len_o_comment": 20, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 79, "o_orderkey": 4577, "len_c_comment": 115, "len_o_comment": 29, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 91, "o_orderkey": 4578, "len_c_comment": 32768, "len_o_comment": 45, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 106, "o_orderkey": 4579, "len_c_comment": 102, "len_o_comment": 32, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 82, "o_orderkey": 4580, "len_c_comment": 54, "len_o_comment": 46, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 79, "o_orderkey": 4581, "len_c_comment": 115, "len_o_comment": 49, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 19, "o_orderkey": 4582, "len_c_comment": 80, "len_o_comment": 27, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 22, "o_orderkey": 4583, "len_c_comment": 50, "len_o_comment": 37, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 80, "o_orderkey": 4608, "len_c_comment": 78, "len_o_comment": 65, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 133, "o_orderkey": 4609, "len_c_comment": 104, "len_o_comment": 22, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 26, "o_orderkey": 4610, "len_c_comment": 70, "len_o_comment": 25, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 29, "o_orderkey": 4611, "len_c_comment": 54, "len_o_comment": 71, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 61, "o_orderkey": 4612, "len_c_comment": 32768, "len_o_comment": 73, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 133, "o_orderkey": 4613, "len_c_comment": 104, "len_o_comment": 35, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 61, "o_orderkey": 4614, "len_c_comment": 32768, "len_o_comment": 44, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 29, "o_orderkey": 4615, "len_c_comment": 54, "len_o_comment": 68, "c_comment": "its after the carefully final platelets x-ray against " }
+{ "c_custkey": 97, "o_orderkey": 4640, "len_c_comment": 73, "len_o_comment": 52, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 134, "o_orderkey": 4641, "len_c_comment": 37, "len_o_comment": 45, "c_comment": "yly fluffy foxes boost final ideas. b" }
+{ "c_custkey": 148, "o_orderkey": 4642, "len_c_comment": 103, "len_o_comment": 68, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 67, "o_orderkey": 4643, "len_c_comment": 34, "len_o_comment": 47, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 94, "o_orderkey": 4644, "len_c_comment": 109, "len_o_comment": 32, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 44, "o_orderkey": 4645, "len_c_comment": 37, "len_o_comment": 71, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 83, "o_orderkey": 4646, "len_c_comment": 111, "len_o_comment": 26, "c_comment": "ccording to the quickly bold warhorses. final, regular foxes integrate carefully. bold packages nag blithely ev" }
+{ "c_custkey": 28, "o_orderkey": 4647, "len_c_comment": 48, "len_o_comment": 62, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 79, "o_orderkey": 4672, "len_c_comment": 115, "len_o_comment": 27, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 82, "o_orderkey": 4673, "len_c_comment": 54, "len_o_comment": 73, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 37, "o_orderkey": 4674, "len_c_comment": 57, "len_o_comment": 54, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 86, "o_orderkey": 4675, "len_c_comment": 43, "len_o_comment": 30, "c_comment": "quests. pending dugouts are carefully aroun" }
+{ "c_custkey": 14, "o_orderkey": 4676, "len_c_comment": 33, "len_o_comment": 46, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 40, "o_orderkey": 4677, "len_c_comment": 64, "len_o_comment": 76, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 88, "o_orderkey": 4678, "len_c_comment": 99, "len_o_comment": 57, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 88, "o_orderkey": 4679, "len_c_comment": 99, "len_o_comment": 72, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 2, "o_orderkey": 4704, "len_c_comment": 63, "len_o_comment": 50, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 98, "o_orderkey": 4705, "len_c_comment": 77, "len_o_comment": 25, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 25, "o_orderkey": 4706, "len_c_comment": 108, "len_o_comment": 67, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 91, "o_orderkey": 4707, "len_c_comment": 32768, "len_o_comment": 41, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 85, "o_orderkey": 4708, "len_c_comment": 39, "len_o_comment": 30, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 26, "o_orderkey": 4709, "len_c_comment": 70, "len_o_comment": 65, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 100, "o_orderkey": 4710, "len_c_comment": 78, "len_o_comment": 50, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 142, "o_orderkey": 4711, "len_c_comment": 31, "len_o_comment": 44, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 139, "o_orderkey": 4736, "len_c_comment": 55, "len_o_comment": 75, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 79, "o_orderkey": 4737, "len_c_comment": 115, "len_o_comment": 67, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 5, "o_orderkey": 4738, "len_c_comment": 50, "len_o_comment": 19, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 148, "o_orderkey": 4739, "len_c_comment": 103, "len_o_comment": 56, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 68, "o_orderkey": 4740, "len_c_comment": 56, "len_o_comment": 30, "c_comment": " pending pinto beans impress realms. final dependencies " }
+{ "c_custkey": 127, "o_orderkey": 4741, "len_c_comment": 84, "len_o_comment": 38, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 64, "o_orderkey": 4742, "len_c_comment": 57, "len_o_comment": 49, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 97, "o_orderkey": 4743, "len_c_comment": 73, "len_o_comment": 37, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 136, "o_orderkey": 4768, "len_c_comment": 84, "len_o_comment": 55, "c_comment": "ackages sleep ironic, final courts. even requests above the blithely bold requests g" }
+{ "c_custkey": 121, "o_orderkey": 4769, "len_c_comment": 32768, "len_o_comment": 39, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 59, "o_orderkey": 4770, "len_c_comment": 71, "len_o_comment": 37, "c_comment": "ously final packages haggle blithely after the express deposits. furiou" }
+{ "c_custkey": 95, "o_orderkey": 4771, "len_c_comment": 100, "len_o_comment": 48, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 28, "o_orderkey": 4772, "len_c_comment": 48, "len_o_comment": 50, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 122, "o_orderkey": 4773, "len_c_comment": 79, "len_o_comment": 26, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 52, "o_orderkey": 4774, "len_c_comment": 73, "len_o_comment": 73, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 128, "o_orderkey": 4775, "len_c_comment": 111, "len_o_comment": 63, "c_comment": "ing packages integrate across the slyly unusual dugouts. blithely silent ideas sublate carefully. blithely expr" }
+{ "c_custkey": 37, "o_orderkey": 4800, "len_c_comment": 57, "len_o_comment": 70, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 88, "o_orderkey": 4801, "len_c_comment": 99, "len_o_comment": 32768, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 130, "o_orderkey": 4802, "len_c_comment": 96, "len_o_comment": 66, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 124, "o_orderkey": 4803, "len_c_comment": 40, "len_o_comment": 29, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 37, "o_orderkey": 4804, "len_c_comment": 57, "len_o_comment": 46, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 16, "o_orderkey": 4805, "len_c_comment": 67, "len_o_comment": 58, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 7, "o_orderkey": 4806, "len_c_comment": 78, "len_o_comment": 34, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 53, "o_orderkey": 4807, "len_c_comment": 73, "len_o_comment": 27, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 34, "o_orderkey": 4832, "len_c_comment": 45, "len_o_comment": 37, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 133, "o_orderkey": 4833, "len_c_comment": 104, "len_o_comment": 47, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 19, "o_orderkey": 4834, "len_c_comment": 80, "len_o_comment": 53, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 146, "o_orderkey": 4835, "len_c_comment": 60, "len_o_comment": 35, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 65, "o_orderkey": 4836, "len_c_comment": 67, "len_o_comment": 57, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 130, "o_orderkey": 4837, "len_c_comment": 96, "len_o_comment": 68, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 44, "o_orderkey": 4838, "len_c_comment": 37, "len_o_comment": 66, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 25, "o_orderkey": 4839, "len_c_comment": 108, "len_o_comment": 63, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 88, "o_orderkey": 4864, "len_c_comment": 99, "len_o_comment": 53, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 85, "o_orderkey": 4865, "len_c_comment": 39, "len_o_comment": 34, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 53, "o_orderkey": 4866, "len_c_comment": 73, "len_o_comment": 41, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 10, "o_orderkey": 4867, "len_c_comment": 31, "len_o_comment": 75, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 76, "o_orderkey": 4868, "len_c_comment": 116, "len_o_comment": 57, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 58, "o_orderkey": 4869, "len_c_comment": 94, "len_o_comment": 25, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 103, "o_orderkey": 4870, "len_c_comment": 107, "len_o_comment": 38, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 46, "o_orderkey": 4871, "len_c_comment": 109, "len_o_comment": 34, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 85, "o_orderkey": 4896, "len_c_comment": 39, "len_o_comment": 62, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 80, "o_orderkey": 4897, "len_c_comment": 78, "len_o_comment": 52, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 14, "o_orderkey": 4898, "len_c_comment": 33, "len_o_comment": 74, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 61, "o_orderkey": 4899, "len_c_comment": 32768, "len_o_comment": 58, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 137, "o_orderkey": 4900, "len_c_comment": 55, "len_o_comment": 22, "c_comment": "carefully regular theodolites use. silent dolphins cajo" }
+{ "c_custkey": 79, "o_orderkey": 4901, "len_c_comment": 115, "len_o_comment": 65, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 139, "o_orderkey": 4902, "len_c_comment": 55, "len_o_comment": 29, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 92, "o_orderkey": 4903, "len_c_comment": 43, "len_o_comment": 30, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 4, "o_orderkey": 4928, "len_c_comment": 49, "len_o_comment": 73, "c_comment": " requests. final, regular ideas sleep final accou" }
+{ "c_custkey": 149, "o_orderkey": 4929, "len_c_comment": 47, "len_o_comment": 46, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 149, "o_orderkey": 4930, "len_c_comment": 47, "len_o_comment": 61, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 50, "o_orderkey": 4931, "len_c_comment": 66, "len_o_comment": 59, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 122, "o_orderkey": 4932, "len_c_comment": 79, "len_o_comment": 26, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 94, "o_orderkey": 4933, "len_c_comment": 109, "len_o_comment": 26, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 40, "o_orderkey": 4934, "len_c_comment": 64, "len_o_comment": 71, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 40, "o_orderkey": 4935, "len_c_comment": 64, "len_o_comment": 24, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 124, "o_orderkey": 4960, "len_c_comment": 40, "len_o_comment": 78, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 58, "o_orderkey": 4961, "len_c_comment": 94, "len_o_comment": 36, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 104, "o_orderkey": 4962, "len_c_comment": 32, "len_o_comment": 21, "c_comment": "rate carefully slyly special pla" }
+{ "c_custkey": 34, "o_orderkey": 4963, "len_c_comment": 45, "len_o_comment": 27, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 101, "o_orderkey": 4964, "len_c_comment": 32768, "len_o_comment": 39, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 52, "o_orderkey": 4965, "len_c_comment": 73, "len_o_comment": 36, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 70, "o_orderkey": 4966, "len_c_comment": 90, "len_o_comment": 63, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 98, "o_orderkey": 4967, "len_c_comment": 77, "len_o_comment": 26, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 62, "o_orderkey": 4992, "len_c_comment": 85, "len_o_comment": 23, "c_comment": "kly special dolphins. pinto beans are slyly. quickly regular accounts are furiously a" }
+{ "c_custkey": 13, "o_orderkey": 4993, "len_c_comment": 98, "len_o_comment": 34, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 43, "o_orderkey": 4994, "len_c_comment": 102, "len_o_comment": 54, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 40, "o_orderkey": 4995, "len_c_comment": 64, "len_o_comment": 73, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 133, "o_orderkey": 4996, "len_c_comment": 104, "len_o_comment": 55, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 47, "o_orderkey": 4997, "len_c_comment": 69, "len_o_comment": 61, "c_comment": "ions. express, ironic instructions sleep furiously ironic ideas. furi" }
+{ "c_custkey": 32, "o_orderkey": 4998, "len_c_comment": 48, "len_o_comment": 51, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 85, "o_orderkey": 4999, "len_c_comment": 39, "len_o_comment": 40, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 124, "o_orderkey": 5024, "len_c_comment": 40, "len_o_comment": 77, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 121, "o_orderkey": 5025, "len_c_comment": 32768, "len_o_comment": 36, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 28, "o_orderkey": 5026, "len_c_comment": 48, "len_o_comment": 19, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 148, "o_orderkey": 5027, "len_c_comment": 103, "len_o_comment": 35, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 13, "o_orderkey": 5028, "len_c_comment": 98, "len_o_comment": 34, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 11, "o_orderkey": 5029, "len_c_comment": 32768, "len_o_comment": 38, "c_comment": "ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto b [...]
+{ "c_custkey": 106, "o_orderkey": 5030, "len_c_comment": 102, "len_o_comment": 58, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 139, "o_orderkey": 5031, "len_c_comment": 55, "len_o_comment": 73, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 52, "o_orderkey": 5056, "len_c_comment": 73, "len_o_comment": 74, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 64, "o_orderkey": 5057, "len_c_comment": 57, "len_o_comment": 67, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 119, "o_orderkey": 5058, "len_c_comment": 57, "len_o_comment": 50, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 43, "o_orderkey": 5059, "len_c_comment": 102, "len_o_comment": 73, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 112, "o_orderkey": 5060, "len_c_comment": 81, "len_o_comment": 42, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 101, "o_orderkey": 5061, "len_c_comment": 32768, "len_o_comment": 71, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 61, "o_orderkey": 5062, "len_c_comment": 32768, "len_o_comment": 74, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 23, "o_orderkey": 5063, "len_c_comment": 87, "len_o_comment": 65, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 130, "o_orderkey": 5088, "len_c_comment": 96, "len_o_comment": 37, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 130, "o_orderkey": 5089, "len_c_comment": 96, "len_o_comment": 58, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 89, "o_orderkey": 5090, "len_c_comment": 77, "len_o_comment": 66, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 148, "o_orderkey": 5091, "len_c_comment": 103, "len_o_comment": 42, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 22, "o_orderkey": 5092, "len_c_comment": 50, "len_o_comment": 26, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 79, "o_orderkey": 5093, "len_c_comment": 115, "len_o_comment": 76, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 106, "o_orderkey": 5094, "len_c_comment": 102, "len_o_comment": 42, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 97, "o_orderkey": 5095, "len_c_comment": 73, "len_o_comment": 56, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 16, "o_orderkey": 5120, "len_c_comment": 67, "len_o_comment": 44, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 133, "o_orderkey": 5121, "len_c_comment": 104, "len_o_comment": 75, "c_comment": "t packages. express pinto beans are blithely along the unusual, even theodolites. silent packages use fu" }
+{ "c_custkey": 70, "o_orderkey": 5122, "len_c_comment": 90, "len_o_comment": 46, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 10, "o_orderkey": 5123, "len_c_comment": 31, "len_o_comment": 74, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 25, "o_orderkey": 5124, "len_c_comment": 108, "len_o_comment": 38, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 28, "o_orderkey": 5125, "len_c_comment": 48, "len_o_comment": 49, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 112, "o_orderkey": 5126, "len_c_comment": 81, "len_o_comment": 20, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 73, "o_orderkey": 5127, "len_c_comment": 53, "len_o_comment": 78, "c_comment": "usual, unusual packages sleep busily along the furiou" }
+{ "c_custkey": 44, "o_orderkey": 5152, "len_c_comment": 37, "len_o_comment": 21, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 113, "o_orderkey": 5153, "len_c_comment": 68, "len_o_comment": 75, "c_comment": "usly regular theodolites boost furiously doggedly pending instructio" }
+{ "c_custkey": 8, "o_orderkey": 5154, "len_c_comment": 113, "len_o_comment": 70, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 77, "o_orderkey": 5155, "len_c_comment": 101, "len_o_comment": 25, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 125, "o_orderkey": 5156, "len_c_comment": 52, "len_o_comment": 52, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 142, "o_orderkey": 5157, "len_c_comment": 31, "len_o_comment": 45, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 76, "o_orderkey": 5158, "len_c_comment": 116, "len_o_comment": 41, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 106, "o_orderkey": 5159, "len_c_comment": 102, "len_o_comment": 54, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 85, "o_orderkey": 5184, "len_c_comment": 39, "len_o_comment": 33, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 148, "o_orderkey": 5185, "len_c_comment": 103, "len_o_comment": 32, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 52, "o_orderkey": 5186, "len_c_comment": 73, "len_o_comment": 32, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 55, "o_orderkey": 5187, "len_c_comment": 110, "len_o_comment": 19, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 140, "o_orderkey": 5188, "len_c_comment": 62, "len_o_comment": 34, "c_comment": "ies detect slyly ironic accounts. slyly ironic theodolites hag" }
+{ "c_custkey": 71, "o_orderkey": 5189, "len_c_comment": 32768, "len_o_comment": 32768, "c_comment": "g courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto  [...]
+{ "c_custkey": 58, "o_orderkey": 5190, "len_c_comment": 94, "len_o_comment": 22, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 77, "o_orderkey": 5191, "len_c_comment": 101, "len_o_comment": 73, "c_comment": "uffily silent requests. carefully ironic asymptotes among the ironic hockey players are carefully bli" }
+{ "c_custkey": 59, "o_orderkey": 5216, "len_c_comment": 71, "len_o_comment": 52, "c_comment": "ously final packages haggle blithely after the express deposits. furiou" }
+{ "c_custkey": 35, "o_orderkey": 5217, "len_c_comment": 54, "len_o_comment": 38, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 82, "o_orderkey": 5218, "len_c_comment": 54, "len_o_comment": 57, "c_comment": "s wake. bravely regular accounts are furiously. regula" }
+{ "c_custkey": 88, "o_orderkey": 5219, "len_c_comment": 99, "len_o_comment": 46, "c_comment": "s are quickly above the quickly ironic instructions; even requests about the carefully final deposi" }
+{ "c_custkey": 10, "o_orderkey": 5220, "len_c_comment": 31, "len_o_comment": 42, "c_comment": "es regular deposits haggle. fur" }
+{ "c_custkey": 13, "o_orderkey": 5221, "len_c_comment": 98, "len_o_comment": 25, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 80, "o_orderkey": 5222, "len_c_comment": 78, "len_o_comment": 48, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 149, "o_orderkey": 5223, "len_c_comment": 47, "len_o_comment": 76, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 70, "o_orderkey": 5248, "len_c_comment": 90, "len_o_comment": 78, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 103, "o_orderkey": 5249, "len_c_comment": 107, "len_o_comment": 22, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 97, "o_orderkey": 5250, "len_c_comment": 73, "len_o_comment": 71, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 34, "o_orderkey": 5251, "len_c_comment": 45, "len_o_comment": 29, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 91, "o_orderkey": 5252, "len_c_comment": 32768, "len_o_comment": 38, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 148, "o_orderkey": 5253, "len_c_comment": 103, "len_o_comment": 57, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 112, "o_orderkey": 5254, "len_c_comment": 81, "len_o_comment": 55, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 64, "o_orderkey": 5255, "len_c_comment": 57, "len_o_comment": 57, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 34, "o_orderkey": 5280, "len_c_comment": 45, "len_o_comment": 77, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 124, "o_orderkey": 5281, "len_c_comment": 40, "len_o_comment": 22, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 50, "o_orderkey": 5282, "len_c_comment": 66, "len_o_comment": 57, "c_comment": "ts. furiously ironic accounts cajole furiously slyly ironic dinos." }
+{ "c_custkey": 131, "o_orderkey": 5283, "len_c_comment": 32768, "len_o_comment": 38, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spe [...]
+{ "c_custkey": 61, "o_orderkey": 5284, "len_c_comment": 32768, "len_o_comment": 29, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 70, "o_orderkey": 5285, "len_c_comment": 90, "len_o_comment": 39, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 116, "o_orderkey": 5286, "len_c_comment": 113, "len_o_comment": 63, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 25, "o_orderkey": 5287, "len_c_comment": 108, "len_o_comment": 67, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 65, "o_orderkey": 5312, "len_c_comment": 67, "len_o_comment": 23, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 13, "o_orderkey": 5313, "len_c_comment": 98, "len_o_comment": 51, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 34, "o_orderkey": 5314, "len_c_comment": 45, "len_o_comment": 33, "c_comment": "nder against the even, pending accounts. even" }
+{ "c_custkey": 139, "o_orderkey": 5315, "len_c_comment": 55, "len_o_comment": 45, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 100, "o_orderkey": 5316, "len_c_comment": 78, "len_o_comment": 77, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 37, "o_orderkey": 5317, "len_c_comment": 57, "len_o_comment": 30, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 59, "o_orderkey": 5318, "len_c_comment": 71, "len_o_comment": 69, "c_comment": "ously final packages haggle blithely after the express deposits. furiou" }
+{ "c_custkey": 98, "o_orderkey": 5319, "len_c_comment": 77, "len_o_comment": 25, "c_comment": "ages. furiously pending accounts are quickly carefully final foxes: busily pe" }
+{ "c_custkey": 109, "o_orderkey": 5344, "len_c_comment": 113, "len_o_comment": 35, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 31, "o_orderkey": 5345, "len_c_comment": 32768, "len_o_comment": 50, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 37, "o_orderkey": 5346, "len_c_comment": 57, "len_o_comment": 75, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 49, "o_orderkey": 5347, "len_c_comment": 64, "len_o_comment": 30, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 53, "o_orderkey": 5348, "len_c_comment": 73, "len_o_comment": 35, "c_comment": "ar accounts are. even foxes are blithely. fluffily pending deposits boost" }
+{ "c_custkey": 67, "o_orderkey": 5349, "len_c_comment": 34, "len_o_comment": 61, "c_comment": "indle furiously final, even theodo" }
+{ "c_custkey": 76, "o_orderkey": 5350, "len_c_comment": 116, "len_o_comment": 53, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 122, "o_orderkey": 5351, "len_c_comment": 79, "len_o_comment": 49, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 149, "o_orderkey": 5376, "len_c_comment": 47, "len_o_comment": 41, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 64, "o_orderkey": 5377, "len_c_comment": 57, "len_o_comment": 33, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 43, "o_orderkey": 5378, "len_c_comment": 102, "len_o_comment": 78, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 89, "o_orderkey": 5379, "len_c_comment": 77, "len_o_comment": 48, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 148, "o_orderkey": 5380, "len_c_comment": 103, "len_o_comment": 43, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 32, "o_orderkey": 5381, "len_c_comment": 48, "len_o_comment": 64, "c_comment": "cial ideas. final, furious requests across the e" }
+{ "c_custkey": 35, "o_orderkey": 5382, "len_c_comment": 54, "len_o_comment": 38, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 31, "o_orderkey": 5383, "len_c_comment": 32768, "len_o_comment": 72, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 23, "o_orderkey": 5408, "len_c_comment": 87, "len_o_comment": 32, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 13, "o_orderkey": 5409, "len_c_comment": 98, "len_o_comment": 32, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 22, "o_orderkey": 5410, "len_c_comment": 50, "len_o_comment": 69, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 61, "o_orderkey": 5411, "len_c_comment": 32768, "len_o_comment": 28, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 142, "o_orderkey": 5412, "len_c_comment": 31, "len_o_comment": 60, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 94, "o_orderkey": 5413, "len_c_comment": 109, "len_o_comment": 34, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 100, "o_orderkey": 5414, "len_c_comment": 78, "len_o_comment": 64, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 23, "o_orderkey": 5415, "len_c_comment": 87, "len_o_comment": 55, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 130, "o_orderkey": 5440, "len_c_comment": 96, "len_o_comment": 68, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 41, "o_orderkey": 5441, "len_c_comment": 32768, "len_o_comment": 27, "c_comment": "ly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above the special, final depoly regular accounts hang bold, silent packages. unusual foxes haggle slyly above t [...]
+{ "c_custkey": 43, "o_orderkey": 5442, "len_c_comment": 102, "len_o_comment": 42, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 131, "o_orderkey": 5443, "len_c_comment": 32768, "len_o_comment": 56, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spe [...]
+{ "c_custkey": 130, "o_orderkey": 5444, "len_c_comment": 96, "len_o_comment": 49, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 115, "o_orderkey": 5445, "len_c_comment": 49, "len_o_comment": 49, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 7, "o_orderkey": 5446, "len_c_comment": 78, "len_o_comment": 20, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 13, "o_orderkey": 5447, "len_c_comment": 98, "len_o_comment": 54, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 70, "o_orderkey": 5472, "len_c_comment": 90, "len_o_comment": 64, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 65, "o_orderkey": 5473, "len_c_comment": 67, "len_o_comment": 59, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 55, "o_orderkey": 5474, "len_c_comment": 110, "len_o_comment": 39, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 139, "o_orderkey": 5475, "len_c_comment": 55, "len_o_comment": 59, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 91, "o_orderkey": 5476, "len_c_comment": 32768, "len_o_comment": 61, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 107, "o_orderkey": 5477, "len_c_comment": 98, "len_o_comment": 27, "c_comment": "counts cajole slyly. regular requests wake. furiously regular deposits about the blithely final fo" }
+{ "c_custkey": 116, "o_orderkey": 5478, "len_c_comment": 113, "len_o_comment": 53, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 70, "o_orderkey": 5479, "len_c_comment": 90, "len_o_comment": 37, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 19, "o_orderkey": 5504, "len_c_comment": 80, "len_o_comment": 28, "c_comment": " nag. furiously careful packages are slyly at the accounts. furiously regular in" }
+{ "c_custkey": 95, "o_orderkey": 5505, "len_c_comment": 100, "len_o_comment": 75, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 91, "o_orderkey": 5506, "len_c_comment": 32768, "len_o_comment": 23, "c_comment": "onic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boost blithely according to the fluffily exponic accounts. fluffily silent pinto beans boo [...]
+{ "c_custkey": 2, "o_orderkey": 5507, "len_c_comment": 63, "len_o_comment": 49, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 56, "o_orderkey": 5508, "len_c_comment": 93, "len_o_comment": 60, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 80, "o_orderkey": 5509, "len_c_comment": 78, "len_o_comment": 73, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 37, "o_orderkey": 5510, "len_c_comment": 57, "len_o_comment": 25, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 79, "o_orderkey": 5511, "len_c_comment": 115, "len_o_comment": 74, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 116, "o_orderkey": 5536, "len_c_comment": 113, "len_o_comment": 63, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 118, "o_orderkey": 5537, "len_c_comment": 113, "len_o_comment": 24, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 139, "o_orderkey": 5538, "len_c_comment": 55, "len_o_comment": 69, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 119, "o_orderkey": 5539, "len_c_comment": 57, "len_o_comment": 67, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 130, "o_orderkey": 5540, "len_c_comment": 96, "len_o_comment": 33, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 143, "o_orderkey": 5541, "len_c_comment": 50, "len_o_comment": 69, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 49, "o_orderkey": 5542, "len_c_comment": 64, "len_o_comment": 39, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 115, "o_orderkey": 5543, "len_c_comment": 49, "len_o_comment": 63, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 31, "o_orderkey": 5568, "len_c_comment": 32768, "len_o_comment": 25, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 109, "o_orderkey": 5569, "len_c_comment": 113, "len_o_comment": 49, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 112, "o_orderkey": 5570, "len_c_comment": 81, "len_o_comment": 33, "c_comment": "rmanently unusual multipliers. blithely ruthless deposits are furiously along the" }
+{ "c_custkey": 103, "o_orderkey": 5571, "len_c_comment": 107, "len_o_comment": 49, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 8, "o_orderkey": 5572, "len_c_comment": 113, "len_o_comment": 50, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 37, "o_orderkey": 5573, "len_c_comment": 57, "len_o_comment": 56, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 28, "o_orderkey": 5574, "len_c_comment": 48, "len_o_comment": 30, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 103, "o_orderkey": 5575, "len_c_comment": 107, "len_o_comment": 29, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 95, "o_orderkey": 5600, "len_c_comment": 100, "len_o_comment": 25, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 11, "o_orderkey": 5601, "len_c_comment": 32768, "len_o_comment": 32768, "c_comment": "ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pint [...]
+{ "c_custkey": 130, "o_orderkey": 5602, "len_c_comment": 96, "len_o_comment": 21, "c_comment": "ix slowly. express packages along the furiously ironic requests integrate daringly deposits. fur" }
+{ "c_custkey": 71, "o_orderkey": 5603, "len_c_comment": 32768, "len_o_comment": 65, "c_comment": "g courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto bea [...]
+{ "c_custkey": 46, "o_orderkey": 5604, "len_c_comment": 109, "len_o_comment": 50, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 35, "o_orderkey": 5605, "len_c_comment": 54, "len_o_comment": 64, "c_comment": "requests. special, express requests nag slyly furiousl" }
+{ "c_custkey": 149, "o_orderkey": 5606, "len_c_comment": 47, "len_o_comment": 41, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 92, "o_orderkey": 5607, "len_c_comment": 43, "len_o_comment": 58, "c_comment": ". pinto beans hang slyly final deposits. ac" }
+{ "c_custkey": 79, "o_orderkey": 5632, "len_c_comment": 115, "len_o_comment": 65, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 79, "o_orderkey": 5633, "len_c_comment": 115, "len_o_comment": 31, "c_comment": "es. packages haggle furiously. regular, special requests poach after the quickly express ideas. blithely pending re" }
+{ "c_custkey": 68, "o_orderkey": 5634, "len_c_comment": 56, "len_o_comment": 67, "c_comment": " pending pinto beans impress realms. final dependencies " }
+{ "c_custkey": 70, "o_orderkey": 5635, "len_c_comment": 90, "len_o_comment": 57, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 122, "o_orderkey": 5636, "len_c_comment": 79, "len_o_comment": 67, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 103, "o_orderkey": 5637, "len_c_comment": 107, "len_o_comment": 58, "c_comment": "furiously pending notornis boost slyly around the blithely ironic ideas? final, even instructions cajole fl" }
+{ "c_custkey": 109, "o_orderkey": 5638, "len_c_comment": 113, "len_o_comment": 70, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 145, "o_orderkey": 5639, "len_c_comment": 54, "len_o_comment": 72, "c_comment": "ests? express, express instructions use. blithely fina" }
+{ "c_custkey": 119, "o_orderkey": 5664, "len_c_comment": 57, "len_o_comment": 23, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 100, "o_orderkey": 5665, "len_c_comment": 78, "len_o_comment": 68, "c_comment": "was furiously fluffily quiet deposits. silent, pending requests boost against " }
+{ "c_custkey": 14, "o_orderkey": 5666, "len_c_comment": 33, "len_o_comment": 40, "c_comment": ", ironic packages across the unus" }
+{ "c_custkey": 44, "o_orderkey": 5667, "len_c_comment": 37, "len_o_comment": 37, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 109, "o_orderkey": 5668, "len_c_comment": 113, "len_o_comment": 28, "c_comment": "es. fluffily final dependencies sleep along the blithely even pinto beans. final deposits haggle furiously furiou" }
+{ "c_custkey": 74, "o_orderkey": 5669, "len_c_comment": 65, "len_o_comment": 30, "c_comment": "onic accounts. blithely slow packages would haggle carefully. qui" }
+{ "c_custkey": 7, "o_orderkey": 5670, "len_c_comment": 78, "len_o_comment": 68, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 43, "o_orderkey": 5671, "len_c_comment": 102, "len_o_comment": 22, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 142, "o_orderkey": 5696, "len_c_comment": 31, "len_o_comment": 22, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 55, "o_orderkey": 5697, "len_c_comment": 110, "len_o_comment": 59, "c_comment": "ully unusual packages wake bravely bold packages. unusual requests boost deposits! blithely ironic packages ab" }
+{ "c_custkey": 95, "o_orderkey": 5698, "len_c_comment": 100, "len_o_comment": 74, "c_comment": "ithely. ruthlessly final requests wake slyly alongside of the furiously silent pinto beans. even the" }
+{ "c_custkey": 142, "o_orderkey": 5699, "len_c_comment": 31, "len_o_comment": 64, "c_comment": ". even, express theodolites upo" }
+{ "c_custkey": 143, "o_orderkey": 5700, "len_c_comment": 50, "len_o_comment": 51, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 43, "o_orderkey": 5701, "len_c_comment": 102, "len_o_comment": 33, "c_comment": "ial requests: carefully pending foxes detect quickly. carefully final courts cajole quickly. carefully" }
+{ "c_custkey": 97, "o_orderkey": 5702, "len_c_comment": 73, "len_o_comment": 64, "c_comment": "haggle slyly. bold, special ideas are blithely above the thinly bold theo" }
+{ "c_custkey": 121, "o_orderkey": 5703, "len_c_comment": 32768, "len_o_comment": 41, "c_comment": "uriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. carefully final courts use carefullyuriously stealthy ideas. ca [...]
+{ "c_custkey": 80, "o_orderkey": 5728, "len_c_comment": 78, "len_o_comment": 21, "c_comment": "tect among the dependencies. bold accounts engage closely even pinto beans. ca" }
+{ "c_custkey": 44, "o_orderkey": 5729, "len_c_comment": 37, "len_o_comment": 25, "c_comment": "r requests around the unusual, bold a" }
+{ "c_custkey": 11, "o_orderkey": 5730, "len_c_comment": 32768, "len_o_comment": 53, "c_comment": "ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto beans. ckages. requests sleep slyly. quickly even pinto beans promise above the slyly regular pinto b [...]
+{ "c_custkey": 8, "o_orderkey": 5731, "len_c_comment": 113, "len_o_comment": 48, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 37, "o_orderkey": 5732, "len_c_comment": 57, "len_o_comment": 78, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 101, "o_orderkey": 5733, "len_c_comment": 32768, "len_o_comment": 63, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 94, "o_orderkey": 5734, "len_c_comment": 109, "len_o_comment": 38, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 40, "o_orderkey": 5735, "len_c_comment": 64, "len_o_comment": 28, "c_comment": "rges impress after the slyly ironic courts. foxes are. blithely " }
+{ "c_custkey": 25, "o_orderkey": 5760, "len_c_comment": 108, "len_o_comment": 73, "c_comment": "y. accounts sleep ruthlessly according to the regular theodolites. unusual instructions sleep. ironic, final" }
+{ "c_custkey": 16, "o_orderkey": 5761, "len_c_comment": 67, "len_o_comment": 37, "c_comment": "kly silent courts. thinly regular theodolites sleep fluffily after " }
+{ "c_custkey": 49, "o_orderkey": 5762, "len_c_comment": 64, "len_o_comment": 70, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 8, "o_orderkey": 5763, "len_c_comment": 113, "len_o_comment": 69, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 131, "o_orderkey": 5764, "len_c_comment": 32768, "len_o_comment": 53, "c_comment": "jole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole special packages. furiously final dependencies about the furiously specijole spe [...]
+{ "c_custkey": 52, "o_orderkey": 5765, "len_c_comment": 73, "len_o_comment": 55, "c_comment": "ic platelets use evenly even accounts. stealthy theodolites cajole furiou" }
+{ "c_custkey": 49, "o_orderkey": 5766, "len_c_comment": 64, "len_o_comment": 40, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 118, "o_orderkey": 5767, "len_c_comment": 113, "len_o_comment": 28, "c_comment": "uick packages alongside of the furiously final deposits haggle above the fluffily even foxes. blithely dogged dep" }
+{ "c_custkey": 26, "o_orderkey": 5792, "len_c_comment": 70, "len_o_comment": 63, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 37, "o_orderkey": 5793, "len_c_comment": 57, "len_o_comment": 30, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 8, "o_orderkey": 5794, "len_c_comment": 113, "len_o_comment": 37, "c_comment": "among the slyly regular theodolites kindle blithely courts. carefully even theodolites haggle slyly along the ide" }
+{ "c_custkey": 37, "o_orderkey": 5795, "len_c_comment": 57, "len_o_comment": 35, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 149, "o_orderkey": 5796, "len_c_comment": 47, "len_o_comment": 66, "c_comment": "al instructions haggle against the slyly bold w" }
+{ "c_custkey": 122, "o_orderkey": 5797, "len_c_comment": 79, "len_o_comment": 35, "c_comment": " the special packages hinder blithely around the permanent requests. bold depos" }
+{ "c_custkey": 106, "o_orderkey": 5798, "len_c_comment": 102, "len_o_comment": 72, "c_comment": "lose slyly. ironic accounts along the evenly regular theodolites wake about the special, final gifts. " }
+{ "c_custkey": 26, "o_orderkey": 5799, "len_c_comment": 70, "len_o_comment": 72, "c_comment": "c requests use furiously ironic requests. slyly ironic dependencies us" }
+{ "c_custkey": 56, "o_orderkey": 5824, "len_c_comment": 93, "len_o_comment": 65, "c_comment": ". notornis wake carefully. carefully fluffy requests are furiously even accounts. slyly expre" }
+{ "c_custkey": 61, "o_orderkey": 5825, "len_c_comment": 32768, "len_o_comment": 29, "c_comment": "egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular packages shall have to impress along the egular pac [...]
+{ "c_custkey": 22, "o_orderkey": 5826, "len_c_comment": 50, "len_o_comment": 23, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 31, "o_orderkey": 5827, "len_c_comment": 32768, "len_o_comment": 38, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 127, "o_orderkey": 5828, "len_c_comment": 84, "len_o_comment": 39, "c_comment": "ic, unusual theodolites nod silently after the final, ironic instructions: pending r" }
+{ "c_custkey": 125, "o_orderkey": 5829, "len_c_comment": 52, "len_o_comment": 61, "c_comment": "x-ray finally after the packages? regular requests c" }
+{ "c_custkey": 85, "o_orderkey": 5830, "len_c_comment": 39, "len_o_comment": 55, "c_comment": "ronic ideas use above the slowly pendin" }
+{ "c_custkey": 139, "o_orderkey": 5831, "len_c_comment": 55, "len_o_comment": 41, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 37, "o_orderkey": 5856, "len_c_comment": 57, "len_o_comment": 63, "c_comment": "ilent packages are carefully among the deposits. furiousl" }
+{ "c_custkey": 124, "o_orderkey": 5857, "len_c_comment": 40, "len_o_comment": 33, "c_comment": "le fluffily even dependencies. quietly s" }
+{ "c_custkey": 64, "o_orderkey": 5858, "len_c_comment": 57, "len_o_comment": 66, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 5, "o_orderkey": 5859, "len_c_comment": 50, "len_o_comment": 75, "c_comment": "n accounts will have to unwind. foxes cajole accor" }
+{ "c_custkey": 13, "o_orderkey": 5860, "len_c_comment": 98, "len_o_comment": 46, "c_comment": "ounts sleep carefully after the close frays. carefully bold notornis use ironic requests. blithely" }
+{ "c_custkey": 139, "o_orderkey": 5861, "len_c_comment": 55, "len_o_comment": 59, "c_comment": "nstructions. quickly ironic ideas are carefully. bold, " }
+{ "c_custkey": 64, "o_orderkey": 5862, "len_c_comment": 57, "len_o_comment": 55, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 65, "o_orderkey": 5863, "len_c_comment": 67, "len_o_comment": 66, "c_comment": "y final foxes serve carefully. theodolites are carefully. pending i" }
+{ "c_custkey": 46, "o_orderkey": 5888, "len_c_comment": 109, "len_o_comment": 55, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 22, "o_orderkey": 5889, "len_c_comment": 50, "len_o_comment": 33, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 49, "o_orderkey": 5890, "len_c_comment": 64, "len_o_comment": 29, "c_comment": "nusual foxes! fluffily pending packages maintain to the regular " }
+{ "c_custkey": 46, "o_orderkey": 5891, "len_c_comment": 109, "len_o_comment": 26, "c_comment": "ctions. accounts sleep furiously even requests. regular, regular accounts cajole blithely around the final pa" }
+{ "c_custkey": 101, "o_orderkey": 5892, "len_c_comment": 32768, "len_o_comment": 20, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 2, "o_orderkey": 5893, "len_c_comment": 63, "len_o_comment": 58, "c_comment": "l accounts. blithely ironic theodolites integrate boldly: caref" }
+{ "c_custkey": 71, "o_orderkey": 5894, "len_c_comment": 32768, "len_o_comment": 21, "c_comment": "g courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto beans are blithely pending acg courts across the regular, final pinto bea [...]
+{ "c_custkey": 64, "o_orderkey": 5895, "len_c_comment": 57, "len_o_comment": 70, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 119, "o_orderkey": 5920, "len_c_comment": 57, "len_o_comment": 69, "c_comment": "express ideas. blithely ironic foxes thrash. special acco" }
+{ "c_custkey": 58, "o_orderkey": 5921, "len_c_comment": 94, "len_o_comment": 28, "c_comment": "ideas. ironic ideas affix furiously express, final instructions. regular excuses use quickly e" }
+{ "c_custkey": 143, "o_orderkey": 5922, "len_c_comment": 50, "len_o_comment": 77, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 101, "o_orderkey": 5923, "len_c_comment": 32768, "len_o_comment": 57, "c_comment": " sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack sleep. pending packages detect slyly ironic pack  [...]
+{ "c_custkey": 31, "o_orderkey": 5924, "len_c_comment": 32768, "len_o_comment": 48, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
+{ "c_custkey": 146, "o_orderkey": 5925, "len_c_comment": 60, "len_o_comment": 70, "c_comment": "ffily regular dinos are slyly unusual requests. slyly specia" }
+{ "c_custkey": 76, "o_orderkey": 5926, "len_c_comment": 116, "len_o_comment": 38, "c_comment": "pecial deposits. ironic ideas boost blithely according to the closely ironic theodolites! furiously final deposits n" }
+{ "c_custkey": 116, "o_orderkey": 5927, "len_c_comment": 113, "len_o_comment": 78, "c_comment": "as. quickly final sauternes haggle slyly carefully even packages. brave, ironic pinto beans are above the furious" }
+{ "c_custkey": 148, "o_orderkey": 5952, "len_c_comment": 103, "len_o_comment": 19, "c_comment": "ing to the carefully ironic requests. carefully regular dependencies about the theodolites wake furious" }
+{ "c_custkey": 7, "o_orderkey": 5953, "len_c_comment": 78, "len_o_comment": 40, "c_comment": "ainst the ironic, express theodolites. express, even pinto beans among the exp" }
+{ "c_custkey": 28, "o_orderkey": 5954, "len_c_comment": 48, "len_o_comment": 24, "c_comment": " along the regular deposits. furiously final pac" }
+{ "c_custkey": 94, "o_orderkey": 5955, "len_c_comment": 109, "len_o_comment": 35, "c_comment": "latelets across the bold, final requests sleep according to the fluffily bold accounts. unusual deposits amon" }
+{ "c_custkey": 22, "o_orderkey": 5956, "len_c_comment": 50, "len_o_comment": 27, "c_comment": "s nod furiously above the furiously ironic ideas. " }
+{ "c_custkey": 89, "o_orderkey": 5957, "len_c_comment": 77, "len_o_comment": 75, "c_comment": "counts are slyly beyond the slyly final accounts. quickly final ideas wake. r" }
+{ "c_custkey": 115, "o_orderkey": 5958, "len_c_comment": 49, "len_o_comment": 43, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 23, "o_orderkey": 5959, "len_c_comment": 87, "len_o_comment": 75, "c_comment": "deposits. special deposits cajole slyly. fluffily special deposits about the furiously " }
+{ "c_custkey": 70, "o_orderkey": 5984, "len_c_comment": 90, "len_o_comment": 61, "c_comment": "fter the special asymptotes. ideas after the unusual frets cajole quickly regular pinto be" }
+{ "c_custkey": 143, "o_orderkey": 5985, "len_c_comment": 50, "len_o_comment": 54, "c_comment": "across the blithely unusual requests haggle theodo" }
+{ "c_custkey": 115, "o_orderkey": 5986, "len_c_comment": 49, "len_o_comment": 28, "c_comment": "sits haggle above the carefully ironic theodolite" }
+{ "c_custkey": 64, "o_orderkey": 5987, "len_c_comment": 57, "len_o_comment": 63, "c_comment": "structions after the quietly ironic theodolites cajole be" }
+{ "c_custkey": 31, "o_orderkey": 5988, "len_c_comment": 32768, "len_o_comment": 32, "c_comment": "s use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely pending depos use among the blithely [...]
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.4.ast b/asterixdb/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.4.ast
new file mode 100644
index 0000000..f508807
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.4.ast
@@ -0,0 +1,85 @@
+DataverseUse test
+Set compiler.joinmemory=256KB
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+  (
+    LiteralExpr [STRING] [c_custkey]
+    :
+    FieldAccessor [
+      Variable [ Name=$c ]
+      Field=c_custkey
+    ]
+  )
+  (
+    LiteralExpr [STRING] [o_orderkey]
+    :
+    FieldAccessor [
+      Variable [ Name=$o ]
+      Field=o_orderkey
+    ]
+  )
+  (
+    LiteralExpr [STRING] [len_c_comment]
+    :
+    FunctionCall asterix.string-length@1[
+      FieldAccessor [
+        Variable [ Name=$c ]
+        Field=c_comment
+      ]
+    ]
+  )
+  (
+    LiteralExpr [STRING] [len_o_comment]
+    :
+    FunctionCall asterix.string-length@1[
+      FieldAccessor [
+        Variable [ Name=$o ]
+        Field=o_comment
+      ]
+    ]
+  )
+  (
+    LiteralExpr [STRING] [c_comment]
+    :
+    FieldAccessor [
+      Variable [ Name=$c ]
+      Field=c_comment
+    ]
+  )
+]
+]
+FROM [  FunctionCall asterix.dataset@1[
+    LiteralExpr [STRING] [test.Customer]
+  ]
+  AS Variable [ Name=$c ]
+,
+  FunctionCall asterix.dataset@1[
+    LiteralExpr [STRING] [test.Order]
+  ]
+  AS Variable [ Name=$o ]
+]
+Where
+  OperatorExpr [
+    FieldAccessor [
+      Variable [ Name=$c ]
+      Field=c_custkey
+    ]
+    =
+    FieldAccessor [
+      Variable [ Name=$o ]
+      Field=o_custkey
+    ]
+  ]
+Orderby
+  FieldAccessor [
+    Variable [ Name=$o ]
+    Field=o_orderkey
+  ]
+  ASC
+  FieldAccessor [
+    Variable [ Name=$c ]
+    Field=c_custkey
+  ]
+  ASC
+
diff --git a/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/IPartitionedTupleBufferManager.java b/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/IPartitionedTupleBufferManager.java
index b1605f3..8051305 100644
--- a/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/IPartitionedTupleBufferManager.java
+++ b/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/IPartitionedTupleBufferManager.java
@@ -120,4 +120,5 @@ public interface IPartitionedTupleBufferManager {
      */
     void clearPartition(int partition) throws HyracksDataException;
 
+    IPartitionedMemoryConstrain getConstrain();
 }
diff --git a/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/VPartitionTupleBufferManager.java b/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/VPartitionTupleBufferManager.java
index dfa2b45..d3d06cb 100644
--- a/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/VPartitionTupleBufferManager.java
+++ b/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/buffermanager/VPartitionTupleBufferManager.java
@@ -140,9 +140,6 @@ public class VPartitionTupleBufferManager implements IPartitionedTupleBufferMana
         partitionArray[partition].getFrame(fid, tempInfo);
         int tid = appendTupleToBuffer(tempInfo, fieldEndOffsets, byteArray, start, size);
         if (tid < 0) {
-            if (partitionArray[partition].getNumFrames() >= constrain.frameLimit(partition)) {
-                return false;
-            }
             fid = createNewBuffer(partition, actualSize);
             if (fid < 0) {
                 return false;
@@ -193,7 +190,7 @@ public class VPartitionTupleBufferManager implements IPartitionedTupleBufferMana
     }
 
     private int createNewBuffer(int partition, int size) throws HyracksDataException {
-        ByteBuffer newBuffer = requestNewBufferFromPool(size);
+        ByteBuffer newBuffer = requestNewBufferFromPool(size, partition);
         if (newBuffer == null) {
             return -1;
         }
@@ -202,8 +199,12 @@ public class VPartitionTupleBufferManager implements IPartitionedTupleBufferMana
         return partitionArray[partition].insertFrame(newBuffer);
     }
 
-    private ByteBuffer requestNewBufferFromPool(int recordSize) throws HyracksDataException {
+    private ByteBuffer requestNewBufferFromPool(int recordSize, int partition) throws HyracksDataException {
         int frameSize = FrameHelper.calcAlignedFrameSizeToStore(0, recordSize, framePool.getMinFrameSize());
+        if ((double) frameSize / (double) framePool.getMinFrameSize() + getPhysicalSize(partition) > constrain
+                .frameLimit(partition)) {
+            return null;
+        }
         return framePool.allocateFrame(frameSize);
     }
 
@@ -293,4 +294,9 @@ public class VPartitionTupleBufferManager implements IPartitionedTupleBufferMana
 
     }
 
+    @Override
+    public IPartitionedMemoryConstrain getConstrain() {
+        return constrain;
+    }
+
 }
diff --git a/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/join/OptimizedHybridHashJoin.java b/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/join/OptimizedHybridHashJoin.java
index 5c0b28d..f5eb4f7 100644
--- a/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/join/OptimizedHybridHashJoin.java
+++ b/hyracks-fullstack/hyracks/hyracks-dataflow-std/src/main/java/org/apache/hyracks/dataflow/std/join/OptimizedHybridHashJoin.java
@@ -57,7 +57,7 @@ import org.apache.hyracks.dataflow.std.structures.TuplePointer;
 public class OptimizedHybridHashJoin {
 
     // Used for special probe BigObject which can not be held into the Join memory
-    private FrameTupleAppender bigProbeFrameAppender;
+    private FrameTupleAppender bigFrameAppender;
 
     public enum SIDE {
         BUILD,
@@ -149,10 +149,32 @@ public class OptimizedHybridHashJoin {
     }
 
     private void processTupleBuildPhase(int tid, int pid) throws HyracksDataException {
+        // insertTuple prevents the tuple to acquire a number of frames that is > the frame limit
         while (!bufferManager.insertTuple(pid, accessorBuild, tid, tempPtr)) {
-            int victimPartition = spillPolicy.selectVictimPartition(pid);
-            if (victimPartition < 0) {
-                throw HyracksDataException.create(ErrorCode.INSUFFICIENT_MEMORY);
+            int recordSize = VPartitionTupleBufferManager.calculateActualSize(null, accessorBuild.getTupleLength(tid));
+            double numFrames = (double) recordSize / (double) jobletCtx.getInitialFrameSize();
+            int victimPartition;
+            if (numFrames > bufferManager.getConstrain().frameLimit(pid)
+                    || (victimPartition = spillPolicy.selectVictimPartition(pid)) < 0) {
+                // insert request can never be satisfied
+                if (numFrames > memSizeInFrames || recordSize < jobletCtx.getInitialFrameSize()) {
+                    // the tuple is greater than the memory budget or although the record is small we could not find
+                    // a frame for it (possibly due to a bug)
+                    throw HyracksDataException.create(ErrorCode.INSUFFICIENT_MEMORY);
+                }
+                // Record is large but insertion failed either 1) we could not satisfy the request because of the
+                // frame limit or 2) we could not find a victim anymore (exhaused all victims) and the partition is
+                // memory-resident with no frame.
+                flushBigObjectToDisk(pid, accessorBuild, tid, buildRFWriters, buildRelName);
+                spilledStatus.set(pid);
+                if ((double) bufferManager.getPhysicalSize(pid)
+                        / (double) jobletCtx.getInitialFrameSize() > bufferManager.getConstrain().frameLimit(pid)) {
+                    // The partition is getting spilled, we need to check if the size of it is still under the frame
+                    // limit as frame limit for it might have changed (due to transition from memory-resident to
+                    // spilled)
+                    spillPartition(pid);
+                }
+                return;
             }
             spillPartition(victimPartition);
         }
@@ -495,24 +517,26 @@ public class OptimizedHybridHashJoin {
                 bufferManager.clearPartition(victim);
                 if (!bufferManager.insertTuple(pid, accessorProbe, tupleId, tempPtr)) {
                     // This should not happen if the size calculations are correct, just not to let the query fail.
-                    flushBigProbeObjectToDisk(pid, accessorProbe, tupleId);
+                    flushBigObjectToDisk(pid, accessorProbe, tupleId, probeRFWriters, probeRelName);
                 }
             } else {
-                flushBigProbeObjectToDisk(pid, accessorProbe, tupleId);
+                flushBigObjectToDisk(pid, accessorProbe, tupleId, probeRFWriters, probeRelName);
             }
         }
     }
 
-    private void flushBigProbeObjectToDisk(int pid, FrameTupleAccessor accessorProbe, int i)
-            throws HyracksDataException {
-        if (bigProbeFrameAppender == null) {
-            bigProbeFrameAppender = new FrameTupleAppender(new VSizeFrame(jobletCtx));
+    private void flushBigObjectToDisk(int pid, FrameTupleAccessor accessor, int i, RunFileWriter[] runFileWriters,
+            String refName) throws HyracksDataException {
+        if (bigFrameAppender == null) {
+            bigFrameAppender = new FrameTupleAppender(new VSizeFrame(jobletCtx));
         }
-        RunFileWriter runFileWriter = getSpillWriterOrCreateNewOneIfNotExist(probeRFWriters, probeRelName, pid);
-        if (!bigProbeFrameAppender.append(accessorProbe, i)) {
+
+        RunFileWriter runFileWriter = getSpillWriterOrCreateNewOneIfNotExist(runFileWriters, refName, pid);
+        if (!bigFrameAppender.append(accessor, i)) {
+
             throw new HyracksDataException("The given tuple is too big");
         }
-        bigProbeFrameAppender.write(runFileWriter, true);
+        bigFrameAppender.write(runFileWriter, true);
     }
 
     private boolean isBuildRelAllInMemory() {