~clint-fewbar/ubuntu/natty/drizzle/beta1-fixes

« back to all changes in this revision

Viewing changes to tests/suite/mysql_migrate/r/large_data.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-15 10:41:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110315104118-eaf0hvlytjdl4zrf
Tags: 2011.03.13-0ubuntu1
* New upstream release.
* Added slave plugin.
* Removed archive, blackhole and blitzdb plugins.
* Moved location of libdrizzle headers.
* Removed drizzleadmin manpage patch.
* Add drizzle_safe_write_string to symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP SCHEMA IF EXISTS drizzledump_migrate_test;
 
2
Dropping test database on MySQL...
 
3
Create test database on MySQL...
 
4
populating MySQL with test data...
 
5
../client/drizzle -uroot --port=13000 drizzledump_migrate_test < /home/pcrews/bzr/work/drizzledump/mysql-migrate-tests/tests/var/std_data_ln/mysqlmigrate_large_data.dat
 
6
calling drizzledump to populate Drizzle...
 
7
test our tables:
 
8
test table1
 
9
SHOW CREATE TABLE drizzledump_migrate_test.dump_table1;
 
10
Table   Create Table
 
11
dump_table1     CREATE TABLE `dump_table1` (
 
12
  `col_datetime_not_null` DATETIME DEFAULT NULL,
 
13
  `col_varbinary_5_not_null` VARBINARY(5) NOT NULL,
 
14
  `col_date_key` DATE DEFAULT NULL,
 
15
  `col_datetime_not_null_key` DATETIME DEFAULT NULL,
 
16
  `col_time_not_null` INT DEFAULT NULL,
 
17
  `col_date_not_null_key` DATE DEFAULT NULL,
 
18
  `col_char_10_not_null_key` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
19
  `col_tinyint_not_null_key` INT NOT NULL,
 
20
  `col_smallint_not_null_key` INT NOT NULL,
 
21
  `pk` INT NOT NULL AUTO_INCREMENT,
 
22
  `col_int_key` INT DEFAULT NULL,
 
23
  `col_bigint_key` BIGINT DEFAULT NULL,
 
24
  `col_int_not_null` INT NOT NULL,
 
25
  `col_tinyint` INT DEFAULT NULL,
 
26
  `col_binary_5` VARBINARY(5) DEFAULT NULL,
 
27
  `col_bigint` BIGINT DEFAULT NULL,
 
28
  `col_year_key` INT DEFAULT NULL,
 
29
  `col_char_128_not_null_key` VARCHAR(128) COLLATE utf8_general_ci NOT NULL,
 
30
  `col_date` DATE DEFAULT NULL,
 
31
  `col_smallint_not_null` INT NOT NULL,
 
32
  `col_mediumint_not_null_key` INT NOT NULL,
 
33
  `col_datetime` DATETIME DEFAULT NULL,
 
34
  `col_varbinary_5_key` VARBINARY(5) DEFAULT NULL,
 
35
  `col_time_key` INT DEFAULT NULL,
 
36
  `col_char_10` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
37
  `col_int_not_null_key` INT NOT NULL,
 
38
  `col_timestamp_not_null` TIMESTAMP NULL DEFAULT NULL,
 
39
  `col_enum_not_null_key` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
40
  `col_char_128_key` VARCHAR(128) COLLATE utf8_general_ci DEFAULT NULL,
 
41
  `col_int` INT DEFAULT NULL,
 
42
  `col_year_not_null` INT NOT NULL,
 
43
  `col_timestamp_not_null_key` TIMESTAMP NULL DEFAULT NULL,
 
44
  `col_varbinary_5_not_null_key` VARBINARY(5) NOT NULL,
 
45
  `col_time` INT DEFAULT NULL,
 
46
  `col_tinyint_not_null` INT NOT NULL,
 
47
  `col_smallint_key` INT DEFAULT NULL,
 
48
  `col_year` INT DEFAULT NULL,
 
49
  `col_time_not_null_key` INT DEFAULT NULL,
 
50
  `col_binary_5_key` VARBINARY(5) DEFAULT NULL,
 
51
  `col_bigint_not_null` BIGINT NOT NULL,
 
52
  `col_char_10_not_null` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
53
  `col_mediumint_key` INT DEFAULT NULL,
 
54
  `col_timestamp_key` TIMESTAMP NULL DEFAULT NULL,
 
55
  `col_mediumint` INT DEFAULT NULL,
 
56
  `col_tinyint_key` INT DEFAULT NULL,
 
57
  `col_year_not_null_key` INT NOT NULL,
 
58
  `col_char_128_not_null` VARCHAR(128) COLLATE utf8_general_ci NOT NULL,
 
59
  `col_binary_5_not_null` VARBINARY(5) NOT NULL,
 
60
  `col_bigint_not_null_key` BIGINT NOT NULL,
 
61
  `col_varbinary_5` VARBINARY(5) DEFAULT NULL,
 
62
  `col_enum` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
63
  `col_datetime_key` DATETIME DEFAULT NULL,
 
64
  `col_date_not_null` DATE DEFAULT NULL,
 
65
  `col_smallint` INT DEFAULT NULL,
 
66
  `col_char_128` VARCHAR(128) COLLATE utf8_general_ci DEFAULT NULL,
 
67
  `col_mediumint_not_null` INT NOT NULL,
 
68
  `col_binary_5_not_null_key` VARBINARY(5) NOT NULL,
 
69
  `col_timestamp` TIMESTAMP NULL DEFAULT NULL,
 
70
  PRIMARY KEY (`pk`),
 
71
  KEY `col_date_key` (`col_date_key`),
 
72
  KEY `col_datetime_not_null_key` (`col_datetime_not_null_key`),
 
73
  KEY `col_date_not_null_key` (`col_date_not_null_key`),
 
74
  KEY `col_char_10_not_null_key` (`col_char_10_not_null_key`),
 
75
  KEY `col_tinyint_not_null_key` (`col_tinyint_not_null_key`),
 
76
  KEY `col_smallint_not_null_key` (`col_smallint_not_null_key`),
 
77
  KEY `col_int_key` (`col_int_key`),
 
78
  KEY `col_bigint_key` (`col_bigint_key`),
 
79
  KEY `col_year_key` (`col_year_key`),
 
80
  KEY `col_char_128_not_null_key` (`col_char_128_not_null_key`),
 
81
  KEY `col_mediumint_not_null_key` (`col_mediumint_not_null_key`),
 
82
  KEY `col_varbinary_5_key` (`col_varbinary_5_key`),
 
83
  KEY `col_time_key` (`col_time_key`),
 
84
  KEY `col_int_not_null_key` (`col_int_not_null_key`),
 
85
  KEY `col_enum_not_null_key` (`col_enum_not_null_key`),
 
86
  KEY `col_char_128_key` (`col_char_128_key`),
 
87
  KEY `col_timestamp_not_null_key` (`col_timestamp_not_null_key`),
 
88
  KEY `col_varbinary_5_not_null_key` (`col_varbinary_5_not_null_key`),
 
89
  KEY `col_smallint_key` (`col_smallint_key`),
 
90
  KEY `col_time_not_null_key` (`col_time_not_null_key`),
 
91
  KEY `col_binary_5_key` (`col_binary_5_key`),
 
92
  KEY `col_mediumint_key` (`col_mediumint_key`),
 
93
  KEY `col_timestamp_key` (`col_timestamp_key`),
 
94
  KEY `col_tinyint_key` (`col_tinyint_key`),
 
95
  KEY `col_year_not_null_key` (`col_year_not_null_key`),
 
96
  KEY `col_bigint_not_null_key` (`col_bigint_not_null_key`),
 
97
  KEY `col_datetime_key` (`col_datetime_key`),
 
98
  KEY `col_binary_5_not_null_key` (`col_binary_5_not_null_key`)
 
99
) ENGINE=InnoDB COLLATE = utf8_general_ci AUTO_INCREMENT=13
 
100
SELECT * FROM drizzledump_migrate_test.dump_table1;
 
101
col_datetime_not_null   col_varbinary_5_not_null        col_date_key    col_datetime_not_null_key       col_time_not_null       col_date_not_null_key   col_char_10_not_null_key        col_tinyint_not_null_key        col_smallint_not_null_key       pk      col_int_key     col_bigint_key  col_int_not_null        col_tinyint     col_binary_5    col_bigint      col_year_key    col_char_128_not_null_key       col_date        col_smallint_not_null   col_mediumint_not_null_key      col_datetime    col_varbinary_5_key     col_time_key    col_char_10     col_int_not_null_key    col_timestamp_not_null  col_enum_not_null_key   col_char_128_key        col_int col_year_not_null       col_timestamp_not_null_key      col_varbinary_5_not_null_key    col_time        col_tinyint_not_null    col_smallint_key        col_year        col_time_not_null_key   col_binary_5_key        col_bigint_not_null     col_char_10_not_null    col_mediumint_key       col_timestamp_key       col_mediumint   col_tinyint_key col_year_not_null_key   col_char_128_not_null   col_binary_5_not_null   col_bigint_not_null_key col_varbinary_5 col_enum        col_datetime_key        col_date_not_null       col_smallint    col_char_128    col_mediumint_not_null  col_binary_5_not_null_key       col_timestamp
 
102
NULL    ����   NULL    2005-10-02 13:36:34     1207    NULL    or      7       6       1       1580269568      7939001718124052480     2       104     ����   1391330809880772608     2007    the     NULL    13567   6       NULL    ����   1207    then    203030528       2000-05-08 21:00:00     g       k       1       2001    NULL            1200    3       NULL    2007    41349   ����   4       mean    6       2006-11-14 21:00:00     -132608 NULL    2005    no      ����   0       ����   q       2003-07-02 00:00:00     NULL    -8456   now     5152000 ����   2008-02-07 13:13:55
 
103
NULL    ����   NULL    2005-10-02 13:36:34     1207    NULL    or      7       6       2       1580269568      7939001718124052480     2       104     ����   1391330809880772608     2007    the     NULL    13567   6       NULL    ����   1207    then    203030528       2000-05-08 21:00:00     g       k       1       2001    NULL            1200    3       NULL    2007    41349   ����   4       mean    6       2006-11-14 21:00:00     -132608 NULL    2005    no      ����   0       ����   q       2003-07-02 00:00:00     NULL    -8456   now     5152000 ����   2008-02-07 13:13:55
 
104
2008-07-28 07:45:59     ����   NULL    NULL    1208    NULL    v       9       2       3       NULL    2742129223115210752     -206831616      32      ����   -7699466512943284224    NULL    e       NULL    2       7       2001-08-11 00:00:00     ����   18110   i       9       2009-09-13 11:35:53     e       a       -676855808      2004    2006-02-24 21:00:00             NULL    6       -14936  NULL    1202    ����   8885602064801988608     m       1       NULL    0       NULL    2005    h       ����   9       ����   w       NULL    NULL    NULL    y       2       ����   NULL
 
105
NULL    ����   NULL    NULL    1208    NULL    as      -20     3657    4       890634240       5950099532686557184     0       6       ����   9       NULL    i       NULL    3       -7572736        NULL    ����   81770   f       614006784       NULL    g       FQCYM   1845362688      2000    NULL            NULL    -43     NULL    NULL    1207    ����   249386829365641216      YKGQU   7852544 NULL    -7175680        -78     2005    j       ����   -2082633352682143744    ����   s       2002-10-01 04:39:15     NULL    NULL    not     5       ����   NULL
 
106
2004-05-02 03:35:47     ����   NULL    2008-08-26 00:00:00     1209    NULL    think   2       9       5       1224802304      9       -1726349312     49      ����   -6227070909769842688    2001    q       NULL    7       -7624960        2001-12-18 00:00:00     ����   NULL    IKNNE   1042415616      2002-08-19 04:46:09     z       can't   NULL    2003    2002-08-18 21:00:00             1205    6       3       NULL    1202    ����   2       f       0       2005-05-04 07:40:23     2140928 34      2009    FLJBT   ����   -598134325510144000     ����   l       2003-03-06 19:44:23     NULL    3       j       -7768576        ����   2000-02-16 21:00:00
 
107
2002-06-16 00:00:00     ����   NULL    NULL    19935   NULL    l       7       0       6       8       -315533448892645376     722403328       -64     ����   1842535197547954176     2007    k       NULL    31604   2709248 NULL    ����   1203    i       -1575616512     2005-01-22 21:00:00     e       did     NULL    2005    NULL            1202    8       -19449  2001    40114   ����   2       IVUDA   4       2001-12-01 21:00:00     -215808 4       2004    know    ����   8382887756396756992     ����   x       2003-04-10 01:45:25     NULL    4       f       -106496 ����   2007-03-12 21:00:00
 
108
2009-02-02 00:00:00     ����   NULL    NULL    72605   NULL    s       0       646     7       -1831010304     NULL    -927596544      -3      ����   -5647795407699312640    NULL    LBKDP   NULL    -4564   1       NULL    ����   1200    KPAKM   0       2007-10-03 21:00:00     j       in      -546439168      2000    NULL            1208    9       21291   2005    1200    ����   2407736950782951424     did     8208896 NULL    NULL    5       2007    oh      ����   7       ����   r       2000-03-06 09:04:19     NULL    6       l       6890752 ����   2007-07-06 21:00:00
 
109
2006-08-08 23:19:42     ����   NULL    NULL    1205    NULL    JLDIQ   -84     5       8       0       2499497793190625280     8       48      ����   0       2001    like    NULL    -309    3       NULL    ����   43366   MBUIV   1       NULL    d       can't   4       2000    2002-01-18 03:28:34             NULL    11      21090   2003    20156   ����   0       would   NULL    NULL    -2290688        6       2001    c       ����   8391613480674787328     ����   k       NULL    NULL    NULL    w       -7292416        ����   2009-02-24 21:00:00
 
110
2006-05-11 00:00:00     ����   NULL    2000-02-01 00:00:00     31679   NULL    SXJXE   8       5       9       6       2034501131664621568     1044643840      0       ����   NULL    2000    how     NULL    61      2809856 2004-06-24 00:00:00     ����   NULL    g       -147849216      NULL    z       u       NULL    2007    NULL            10478   1       3       2007    1201    ����   8       MWWDL   NULL    2002-10-01 23:27:28     -5581568        NULL    2009    we      ����   0       ����   x       NULL    NULL    8       OEVCV   -3212288        ����   NULL
 
111
2001-09-22 18:06:52     ����   NULL    NULL    52709   NULL    I       0       15250   10      1113260032      NULL    1543372800      NULL    ����   NULL    2003    NSETW   NULL    23124   3       NULL    ����   22021   b       0       NULL    t       b       5       2007    2004-06-17 02:33:03             NULL    7       NULL    2004    1202    ����   0       w       2721280 NULL    6977024 0       2002    YUMYP   ����   2       ����   z       NULL    NULL    2       was     1       ����   NULL
 
112
2007-10-17 05:04:12     ����   NULL    2009-05-20 09:56:54     1200    NULL    SJFXG   2       3       11      5       NULL    2       9       ����   -2412522025387032576    2006    ISMRG   NULL    7       5102080 NULL    ����   1200    VTHBJ   2       2009-02-10 17:02:17     i       q       -346161152      2005    2005-01-04 01:15:39             1204    109     NULL    NULL    1209    ����   6272106906043547648     time    -2117632        2001-11-15 18:24:45     -6521600        82      2008    QTZQL   ����   5       ����   o       NULL    NULL    6       l       9       ����   NULL
 
113
2006-10-22 13:29:58     ����   NULL    2009-11-06 00:00:00     1204    NULL    if      8       92      12      8       -4426475483751776256    1506869248      3       ����   NULL    2008    KGIJV   NULL    1       7       2006-08-04 06:29:24     ����   1201    AXDKZ   8       2007-01-11 21:00:00     x       w       1       2001    2001-02-03 09:21:05             31300   4       6       2006    1206    ����   1       s       NULL    2007-12-16 08:01:35     NULL    -34     2008    RCTUG   ����   8       ����   p       2005-10-08 02:06:33     NULL    2       say     5       ����   2003-02-11 22:33:13
 
114
test table2 
 
115
SHOW CREATE TABLE drizzledump_migrate_test.dump_table2;
 
116
Table   Create Table
 
117
dump_table2     CREATE TABLE `dump_table2` (
 
118
  `col_time_key` INT DEFAULT NULL,
 
119
  `col_year_not_null_key` INT NOT NULL,
 
120
  `col_time` INT DEFAULT NULL,
 
121
  `col_timestamp_key` TIMESTAMP NULL DEFAULT NULL,
 
122
  `col_datetime_not_null_key` DATETIME DEFAULT NULL,
 
123
  `col_tinyint_key` INT DEFAULT NULL,
 
124
  `col_char_10_not_null` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
125
  `col_enum_not_null` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
126
  `col_smallint_not_null_key` INT NOT NULL,
 
127
  `col_date` DATE DEFAULT NULL,
 
128
  `col_timestamp_not_null_key` TIMESTAMP NULL DEFAULT NULL,
 
129
  `col_enum` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
130
  `col_varbinary_5_key` VARBINARY(5) DEFAULT NULL,
 
131
  `col_mediumint` INT DEFAULT NULL,
 
132
  `col_timestamp_not_null` TIMESTAMP NULL DEFAULT NULL,
 
133
  `col_date_not_null` DATE DEFAULT NULL,
 
134
  `col_mediumint_not_null_key` INT NOT NULL,
 
135
  `col_tinyint` INT DEFAULT NULL,
 
136
  `col_bigint_not_null` BIGINT NOT NULL,
 
137
  `col_char_128_key` VARCHAR(128) COLLATE utf8_general_ci DEFAULT NULL,
 
138
  `col_mediumint_not_null` INT NOT NULL,
 
139
  `col_year` INT DEFAULT NULL,
 
140
  `col_tinyint_not_null` INT NOT NULL,
 
141
  `col_bigint_not_null_key` BIGINT NOT NULL,
 
142
  `col_smallint_not_null` INT NOT NULL,
 
143
  `col_int_key` INT DEFAULT NULL,
 
144
  `col_int_not_null` INT NOT NULL,
 
145
  `col_smallint` INT DEFAULT NULL,
 
146
  `col_time_not_null` INT DEFAULT NULL,
 
147
  `col_char_128` VARCHAR(128) COLLATE utf8_general_ci DEFAULT NULL,
 
148
  `col_varbinary_5_not_null_key` VARBINARY(5) NOT NULL,
 
149
  `col_datetime_key` DATETIME DEFAULT NULL,
 
150
  `col_time_not_null_key` INT DEFAULT NULL,
 
151
  `col_tinyint_not_null_key` INT NOT NULL,
 
152
  `col_binary_5` VARBINARY(5) DEFAULT NULL,
 
153
  `col_char_128_not_null_key` VARCHAR(128) COLLATE utf8_general_ci NOT NULL,
 
154
  `col_binary_5_not_null` VARBINARY(5) NOT NULL,
 
155
  `col_mediumint_key` INT DEFAULT NULL,
 
156
  `col_enum_key` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
157
  `col_timestamp` TIMESTAMP NULL DEFAULT NULL,
 
158
  `col_char_10_key` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
159
  `col_bigint_key` BIGINT DEFAULT NULL,
 
160
  `col_year_key` INT DEFAULT NULL,
 
161
  `col_date_not_null_key` DATE DEFAULT NULL,
 
162
  `pk` INT NOT NULL AUTO_INCREMENT,
 
163
  `col_int_not_null_key` INT NOT NULL,
 
164
  `col_year_not_null` INT NOT NULL,
 
165
  `col_smallint_key` INT DEFAULT NULL,
 
166
  `col_datetime_not_null` DATETIME DEFAULT NULL,
 
167
  `col_date_key` DATE DEFAULT NULL,
 
168
  `col_char_10` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
169
  `col_varbinary_5` VARBINARY(5) DEFAULT NULL,
 
170
  `col_binary_5_key` VARBINARY(5) DEFAULT NULL,
 
171
  `col_varbinary_5_not_null` VARBINARY(5) NOT NULL,
 
172
  `col_bigint` BIGINT DEFAULT NULL,
 
173
  `col_binary_5_not_null_key` VARBINARY(5) NOT NULL,
 
174
  `col_char_10_not_null_key` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
175
  `col_datetime` DATETIME DEFAULT NULL,
 
176
  PRIMARY KEY (`pk`),
 
177
  KEY `col_time_key` (`col_time_key`),
 
178
  KEY `col_year_not_null_key` (`col_year_not_null_key`),
 
179
  KEY `col_timestamp_key` (`col_timestamp_key`),
 
180
  KEY `col_datetime_not_null_key` (`col_datetime_not_null_key`),
 
181
  KEY `col_tinyint_key` (`col_tinyint_key`),
 
182
  KEY `col_smallint_not_null_key` (`col_smallint_not_null_key`),
 
183
  KEY `col_timestamp_not_null_key` (`col_timestamp_not_null_key`),
 
184
  KEY `col_varbinary_5_key` (`col_varbinary_5_key`),
 
185
  KEY `col_mediumint_not_null_key` (`col_mediumint_not_null_key`),
 
186
  KEY `col_char_128_key` (`col_char_128_key`),
 
187
  KEY `col_bigint_not_null_key` (`col_bigint_not_null_key`),
 
188
  KEY `col_int_key` (`col_int_key`),
 
189
  KEY `col_varbinary_5_not_null_key` (`col_varbinary_5_not_null_key`),
 
190
  KEY `col_datetime_key` (`col_datetime_key`),
 
191
  KEY `col_time_not_null_key` (`col_time_not_null_key`),
 
192
  KEY `col_tinyint_not_null_key` (`col_tinyint_not_null_key`),
 
193
  KEY `col_char_128_not_null_key` (`col_char_128_not_null_key`),
 
194
  KEY `col_mediumint_key` (`col_mediumint_key`),
 
195
  KEY `col_enum_key` (`col_enum_key`),
 
196
  KEY `col_char_10_key` (`col_char_10_key`),
 
197
  KEY `col_bigint_key` (`col_bigint_key`),
 
198
  KEY `col_year_key` (`col_year_key`),
 
199
  KEY `col_date_not_null_key` (`col_date_not_null_key`),
 
200
  KEY `col_int_not_null_key` (`col_int_not_null_key`),
 
201
  KEY `col_smallint_key` (`col_smallint_key`),
 
202
  KEY `col_date_key` (`col_date_key`),
 
203
  KEY `col_binary_5_key` (`col_binary_5_key`),
 
204
  KEY `col_binary_5_not_null_key` (`col_binary_5_not_null_key`),
 
205
  KEY `col_char_10_not_null_key` (`col_char_10_not_null_key`)
 
206
) ENGINE=InnoDB COLLATE = utf8_general_ci AUTO_INCREMENT=101
 
207
SELECT * FROM drizzledump_migrate_test.dump_table2;
 
208
col_time_key    col_year_not_null_key   col_time        col_timestamp_key       col_datetime_not_null_key       col_tinyint_key col_char_10_not_null    col_enum_not_null       col_smallint_not_null_key       col_date        col_timestamp_not_null_key      col_enum        col_varbinary_5_key     col_mediumint   col_timestamp_not_null  col_date_not_null       col_mediumint_not_null_key      col_tinyint     col_bigint_not_null     col_char_128_key        col_mediumint_not_null  col_year        col_tinyint_not_null    col_bigint_not_null_key col_smallint_not_null   col_int_key     col_int_not_null        col_smallint    col_time_not_null       col_char_128    col_varbinary_5_not_null_key    col_datetime_key        col_time_not_null_key   col_tinyint_not_null_key        col_binary_5    col_char_128_not_null_key       col_binary_5_not_null   col_mediumint_key       col_enum_key    col_timestamp   col_char_10_key col_bigint_key  col_year_key    col_date_not_null_key   pk      col_int_not_null_key    col_year_not_null       col_smallint_key        col_datetime_not_null   col_date_key    col_char_10     col_varbinary_5 col_binary_5_key        col_varbinary_5_not_null        col_bigint      col_binary_5_not_null_key       col_char_10_not_null_key        col_datetime
 
209
1207    2005    1200    2006-11-14 21:00:00     2005-10-02 13:36:34     NULL    mean    j       6       NULL    NULL    q       ����   -132608 2000-05-08 21:00:00     NULL    6       104     4       k       5152000 2007    3       0       13567   1580269568      2       -8456   1207    now             2003-07-02 00:00:00     41349   7       ����   the     ����   6       l       2008-02-07 13:13:55     for     7939001718124052480     2007    NULL    1       203030528       2001    NULL    NULL    NULL    then    ����   ����   ����   1391330809880772608     ����   or      NULL
 
210
18110   2005    NULL    NULL    NULL    NULL    m       i       2       NULL    2006-02-24 21:00:00     w       ����   0       2009-09-13 11:35:53     NULL    7       32      8885602064801988608     a       2       NULL    6       9       2       NULL    -206831616      NULL    1208    y               NULL    1202    9       ����   e       ����   1       l       NULL    it's    2742129223115210752     NULL    NULL    2       9       2004    -14936  2008-07-28 07:45:59     NULL    i       ����   ����   ����   -7699466512943284224    ����   v       2001-08-11 00:00:00
 
211
81770   2005    NULL    NULL    NULL    -78     YKGQU   c       3657    NULL    NULL    s       ����   -7175680        NULL    NULL    -7572736        6       249386829365641216      FQCYM   5       NULL    -43     -2082633352682143744    3       890634240       0       NULL    1208    not             2002-10-01 04:39:15     1207    -20     ����   i       ����   7852544 e       NULL    XKKJE   5950099532686557184     NULL    NULL    3       614006784       2000    NULL    NULL    NULL    f       ����   ����   ����   9       ����   as      NULL
 
212
NULL    2009    1205    2005-05-04 07:40:23     2008-08-26 00:00:00     34      f       q       9       NULL    2002-08-18 21:00:00     l       ����   2140928 2002-08-19 04:46:09     NULL    -7624960        49      2       can't   -7768576        NULL    6       -598134325510144000     7       1224802304      -1726349312     3       1209    j               2003-03-06 19:44:23     1202    2       ����   q       ����   0       r       2000-02-16 21:00:00     j       9       2001    NULL    4       1042415616      2003    3       2004-05-02 03:35:47     NULL    IKNNE   ����   ����   ����   -6227070909769842688    ����   think   2001-12-18 00:00:00
 
213
1203    2004    1202    2001-12-01 21:00:00     NULL    4       IVUDA   s       0       NULL    NULL    x       ����   -215808 2005-01-22 21:00:00     NULL    2709248 -64     2       did     -106496 2001    8       8382887756396756992     31604   8       722403328       4       19935   f               2003-04-10 01:45:25     40114   7       ����   k       ����   4       y       2007-03-12 21:00:00     in      -315533448892645376     2007    NULL    5       -1575616512     2005    -19449  2002-06-16 00:00:00     NULL    i       ����   ����   ����   1842535197547954176     ����   l       NULL
 
214
1200    2007    1208    NULL    NULL    5       did     f       646     NULL    NULL    r       ����   NULL    2007-10-03 21:00:00     NULL    1       -3      2407736950782951424     in      6890752 2005    9       7       -4564   -1831010304     -927596544      6       72605   l               2000-03-06 09:04:19     1200    0       ����   LBKDP   ����   8208896 t       2007-07-06 21:00:00     going   NULL    NULL    NULL    6       0       2000    21291   2009-02-02 00:00:00     NULL    KPAKM   ����   ����   ����   -5647795407699312640    ����   s       NULL
 
215
43366   2001    NULL    NULL    NULL    6       would   p       5       NULL    2002-01-18 03:28:34     k       ����   -2290688        NULL    NULL    3       48      0       can't   -7292416        2003    11      8391613480674787328     -309    0       8       NULL    1205    w               NULL    20156   -84     ����   like    ����   NULL    f       2009-02-24 21:00:00     j       2499497793190625280     2001    NULL    7       1       2000    21090   2006-08-08 23:19:42     NULL    MBUIV   ����   ����   ����   0       ����   JLDIQ   NULL
 
216
NULL    2009    10478   2002-10-01 23:27:28     2000-02-01 00:00:00     NULL    MWWDL   f       5       NULL    NULL    x       ����   -5581568        NULL    NULL    2809856 0       8       u       -3212288        2007    1       0       61      6       1044643840      8       31679   OEVCV           NULL    1201    8       ����   how     ����   NULL    r       NULL    b       2034501131664621568     2000    NULL    8       -147849216      2007    3       2006-05-11 00:00:00     NULL    g       ����   ����   ����   NULL    ����   SXJXE   2004-06-24 00:00:00
 
217
22021   2002    NULL    NULL    NULL    0       w       j       15250   NULL    2004-06-17 02:33:03     z       ����   6977024 NULL    NULL    3       NULL    0       b       1       2004    7       2       23124   1113260032      1543372800      2       52709   was             NULL    1202    0       ����   NSETW   ����   2721280 m       NULL    w       NULL    2003    NULL    9       0       2007    NULL    2001-09-22 18:06:52     NULL    b       ����   ����   ����   NULL    ����   I       NULL
 
218
1200    2008    1204    2001-11-15 18:24:45     2009-05-20 09:56:54     82      time    n       3       NULL    2005-01-04 01:15:39     o       ����   -6521600        2009-02-10 17:02:17     NULL    5102080 9       6272106906043547648     q       9       NULL    109     5       7       5       2       6       1200    l               NULL    1209    2       ����   ISMRG   ����   -2117632        d       NULL    me      NULL    2006    NULL    10      2       2005    NULL    2007-10-17 05:04:12     NULL    VTHBJ   ����   ����   ����   -2412522025387032576    ����   SJFXG   NULL
 
219
NULL    2008    1205    NULL    NULL    7       a       z       7       NULL    2003-10-22 21:00:00     g       ����   7       NULL    NULL    -5449984        97      5       FTYAO   -3031808        2005    -5      1       3900    6       343212032       -22300  1205    SYFCT           2004-08-06 00:45:32     1207    0       ����   d       ����   7539456 o       NULL    CMVVT   -8935704610656485376    2006    NULL    11      1       2002    14061   2001-04-22 00:00:00     NULL    she     ����   ����   ����   3       ����   ECMXC   NULL
 
220
NULL    2008    NULL    NULL    NULL    NULL    GWBAR   e       5310    NULL    NULL    k       ����   4579584 NULL    NULL    2       -102    -6272106906043547648    t       9       NULL    1       1086211935126421504     2       NULL    145293312       NULL    1204    l               NULL    75598   19      ����   DPBPY   ����   2       b       2002-03-09 21:00:00     I       NULL    2008    NULL    12      1310588928      2002    18691   2002-09-19 00:00:00     NULL    n       ����   ����   ����   9       ����   c       NULL
 
221
1204    2009    22547   2003-02-06 06:03:06     2000-04-03 01:27:02     -83     PZYDQ   p       2       NULL    NULL    p       ����   NULL    2008-08-25 21:00:00     NULL    5       -52     4       z       -709376 NULL    50      -1284088843754012672    29550   2       6       28427   22643   m               NULL    1204    7       ����   no      ����   6       c       2004-01-19 21:00:00     well    7       2006    NULL    13      30146560        2006    7       2008-08-12 17:56:07     NULL    AXUIE   ����   ����   ����   3262576455053213696     ����   j       2002-12-21 00:00:00
 
222
63887   2007    19075   NULL    2004-03-08 21:43:40     NULL    DEHVX   m       -32231  NULL    2002-09-03 11:56:40     f       ����   NULL    2001-09-04 11:32:29     NULL    1       1       -94012642221359104      UZDRO   1       2004    1       -9123729895099203584    2       3       9       1513    59725   it's            2004-01-22 07:32:44     1201    7       ����   out     ����   7       z       NULL    LLXAX   1       2002    NULL    14      4       2000    NULL    NULL    NULL    k       ����   ����   ����   5       ����   c       NULL
 
223
NULL    2006    1206    2005-06-14 10:14:28     NULL    -109    PRZKF   w       0       NULL    2002-05-24 04:04:56     y       ����   2       2006-03-11 21:45:20     NULL    3040512 NULL    5049098132235747328     y       4       2009    -39     1       9       5       3       5670    1208    right           2007-05-17 13:59:29     1205    -47     ����   h       ����   1       w       NULL    now     1       NULL    NULL    15      165543936       2000    -20722  NULL    NULL    JFLTH   ����   ����   ����   0       ����   your    2007-03-13 00:00:00
 
224
43346   2009    1206    2008-07-20 21:00:00     2000-04-12 03:30:51     -123    UVLHW   q       1       NULL    NULL    v       ����   NULL    NULL    NULL    5329408 NULL    9       it's    -1721856        2003    -3      2       9       2057764864      1721303040      0       1201    EYIAU           NULL    1200    72      ����   m       ����   NULL    m       NULL    here    -2381278302972149760    2007    NULL    16      7       2009    -5491   2007-07-03 00:00:00     NULL    I'm     ����   ����   ����   636133447366082560      ����   LZUTF   2000-08-07 00:00:00
 
225
74645   2002    1206    NULL    2000-03-01 00:00:00     7       g       o       5       NULL    NULL    c       ����   -4203520        2003-09-25 03:26:32     NULL    1       77      5       l       -3545856        NULL    21      8       5       1057685504      9       -10762  1203    BRVWV           NULL    1202    -111    ����   had     ����   -2390528        n       NULL    now     NULL    2007    NULL    17      48693248        2001    NULL    2000-07-08 00:00:00     NULL    for     ����   ����   ����   NULL    ����   JIOQQ   NULL
 
226
22603   2009    1203    NULL    2007-02-19 00:00:00     2       have    p       0       NULL    NULL    b       ����   -3418880        NULL    NULL    -4451328        NULL    -837106580737490944     r       1348864 2008    99      3550806831204925440     4       4       7       20316   84040   a               2002-08-15 00:00:00     18061   2       ����   can     ����   -3602176        k       2000-06-07 17:13:45     CSLQH   4023121842125406208     2000    NULL    18      2       2007    NULL    2006-11-04 00:00:00     NULL    POCSJ   ����   ����   ����   0       ����   OSORI   NULL
 
227
NULL    2001    1205    2005-09-17 21:00:00     2004-07-21 03:32:50     5       FMGWT   m       2       NULL    2009-01-18 21:00:00     h       ����   2       2005-09-23 13:43:43     NULL    1       -82     4       XZTKU   3       2001    -43     2       8       8       -1655504896     NULL    1204    k               2004-04-03 16:21:56     1209    33      ����   RDONG   ����   -8230400        b       NULL    could   1       2007    NULL    19      960036864       2000    NULL    NULL    NULL    f       ����   ����   ����   -7146086708730134528    ����   d       2005-12-20 00:00:00
 
228
5385    2007    20855   2004-10-15 21:00:00     2009-06-23 00:00:00     2       f       i       -22764  NULL    NULL    c       ����   -7492608        2007-03-03 13:42:39     NULL    6       7       2       a       1       2004    8       -1679279711055773696    7       9       1726480384      20241   1208    ENLTX           NULL    1205    -96     ����   DQPRI   ����   3079680 v       2006-01-19 21:00:00     CDBIP   1606377692087713792     2000    NULL    20      -1374158848     2001    7       NULL    NULL    o       ����   ����   ����   5552375390594400256     ����   PCYZD   NULL
 
229
1205    2009    1203    NULL    2004-12-20 00:00:00     NULL    NVRNI   n       6       NULL    NULL    m       ����   7813632 2005-01-26 21:00:00     NULL    7       5       8       one     -3369984        NULL    -35     9       7       1008664576      0       0       1207    I'm             NULL    1208    9       ����   n       ����   1110784 u       2002-03-25 18:04:15     s       423619839949537280      2002    NULL    21      7       2000    8       2008-10-06 05:47:34     NULL    u       ����   ����   ����   NULL    ����   now     2004-06-21 00:00:00
 
230
NULL    2009    40864   2004-12-12 21:00:00     2004-03-26 01:25:33     NULL    or      x       5       NULL    2002-03-24 15:15:10     w       ����   3037440 NULL    NULL    6831360 -87     7919298469754306560     d       -182016 2005    6       -6033416125792911360    2       7       -436404224      1       24963   XTJGH           2008-08-26 00:00:00     1207    29      ����   know    ����   374528  i       2002-07-17 21:00:00     CQJTA   1109574358193405952     NULL    NULL    22      7       2002    NULL    2008-06-26 02:52:27     NULL    didn't  ����   ����   ����   1       ����   UOJKF   NULL
 
231
67585   2006    1205    2006-08-22 21:00:00     2000-08-27 14:39:07     -76     r       l       5       NULL    NULL    m       ����   NULL    2003-08-05 16:55:49     NULL    3       NULL    -8477744823548248064    he      4       2008    4       266556802944991232      4       175702016       -1706557440     12107   1202    b               2004-05-06 14:13:34     1204    4       ����   got     ����   275456  d       NULL    out     4087579611792146432     2003    NULL    23      9       2007    NULL    NULL    NULL    think   ����   ����   ����   2       ����   her     NULL
 
232
1201    2002    1254    2008-12-23 21:00:00     2005-07-22 23:47:56     112     be      d       5       NULL    2008-06-02 07:07:16     h       ����   -5352960        2000-06-10 09:02:31     NULL    5196800 -120    842454605294993408      b       1       2004    5       1471832653220020224     -20072  5       -2124283904     NULL    1206    w               2006-05-03 00:00:00     35192   9       ����   RMYLS   ����   5       o       NULL    e       -6283647380088684544    2002    NULL    24      441712640       2005    7       2003-11-24 17:59:05     NULL    y       ����   ����   ����   8991155181068484608     ����   YNTKM   2006-11-07 00:00:00
 
233
NULL    2001    1206    2006-09-19 21:00:00     NULL    4       see     q       8291    NULL    2002-05-01 21:00:00     k       ����   NULL    2003-08-15 21:00:00     NULL    8323072 95      1       o       1040640 NULL    -67     0       7       -224919552      1468399616      9       1202    HPUXV           NULL    945     4       ����   out     ����   5091072 m       NULL    d       NULL    2001    NULL    25      233046016       2000    8       2005-06-18 00:49:42     NULL    good    ����   ����   ����   1       ����   d       2008-01-03 00:00:00
 
234
NULL    2002    NULL    NULL    NULL    9       IYEYL   v       5       NULL    2006-04-30 21:00:00     c       ����   8       NULL    NULL    3       4       1570348895068749824     y       0       2006    9       5       0       1998061568      0       NULL    1200    one             NULL    1201    6       ����   just    ����   5958912 c       2001-02-13 17:29:47     to      -2476698320077062144    2005    NULL    26      1727856640      2008    NULL    NULL    NULL    like    ����   ����   ����   1       ����   h       2007-02-10 06:40:02
 
235
1200    2000    74115   NULL    NULL    NULL    the     e       8       NULL    NULL    f       ����   8       2003-09-03 13:07:59     NULL    5       8       8       up      9       2001    4       4467852305328242688     8       -1210777600     0       3390    1202    I               2001-08-20 00:00:00     1205    6       ����   DLVSH   ����   NULL    b       NULL    w       6       2000    NULL    27      -392560640      2005    NULL    2007-10-25 00:00:00     NULL    LUHVT   ����   ����   ����   NULL    ����   at      2005-01-23 17:20:25
 
236
1205    2000    NULL    2009-11-09 03:18:13     2003-09-01 00:00:00     2       come    s       3       NULL    2000-02-01 21:00:00     d       ����   3       2006-11-15 22:49:54     NULL    3       -72     994451092718747648      about   0       2003    15      0       8       NULL    0       3       1205    s               2006-12-10 23:27:15     1202    2       ����   were    ����   5246976 o       NULL    j       -7235595751324123136    2003    NULL    28      1276772352      2002    NULL    NULL    NULL    z       ����   ����   ����   NULL    ����   NRPYL   NULL
 
237
1203    2008    NULL    NULL    2002-07-06 00:00:00     3       was     e       6519    NULL    2006-02-19 21:00:00     l       ����   3       NULL    NULL    2       -103    4419438609334009856     i       -3065088        2005    6       2       25848   4       0       NULL    58952   come            2001-08-20 10:12:35     1202    8       ����   i       ����   129024  s       2005-08-21 06:09:10     can     -3229643882778066944    NULL    NULL    29      -1144193024     2007    NULL    2002-01-24 00:00:00     NULL    QLEQY   ����   ����   ����   NULL    ����   i       NULL
 
238
NULL    2002    NULL    2007-06-03 21:00:00     NULL    NULL    HRDTD   r       4       NULL    NULL    e       ����   8062976 2008-10-10 21:00:00     NULL    9       9       4       LLQSF   7666432 2000    5       5732237900712509440     1       NULL    -1295122432     NULL    1209    c               NULL    1205    1       ����   s       ����   -3253504        q       NULL    u       2640798231499374592     2009    NULL    30      -1135607808     2002    -13321  NULL    NULL    the     ����   ����   ����   3350396647786938368     ����   FEOYM   NULL
 
239
1208    2005    1202    NULL    2005-08-26 15:23:44     -43     EVELJ   z       0       NULL    2007-09-09 14:42:54     n       ����   NULL    NULL    NULL    -4126976        2       8       have    1       NULL    8       4157103931039678464     5       NULL    1       NULL    1205    from            NULL    1201    83      ����   h       ����   -6743296        k       2009-07-07 21:01:38     have    4       2006    NULL    31      3       2008    -2048   NULL    NULL    come    ����   ����   ����   5       ����   x       NULL
 
240
1208    2006    1205    NULL    2004-07-20 05:42:54     1       XYLOJ   e       -31430  NULL    2004-07-03 21:00:00     k       ����   4       2005-02-19 21:00:00     NULL    770304  1       2       XARYP   8       2002    101     5       7       0       522780672       6808    1208    what            NULL    1200    5       ����   b       ����   -780800 j       2003-12-09 21:00:00     PMJQF   5389682854055641088     2006    NULL    32      -1328414720     2009    870     2005-11-17 00:00:00     NULL    TJBKE   ����   ����   ����   0       ����   t       2001-05-03 00:00:00
 
241
NULL    2008    1200    NULL    NULL    81      MTBHB   w       -26033  NULL    NULL    d       ����   -521216 2006-11-16 21:00:00     NULL    -6218240        NULL    -2985605077969928192    o       5       2008    3       3       -27364  0       641466368       -13382  22545   j               2009-03-26 14:28:35     1206    2       ����   but     ����   1158144 g       NULL    and     0       2008    NULL    33      1196490752      2000    NULL    2004-10-05 09:50:22     NULL    back    ����   ����   ����   0       ����   really  NULL
 
242
NULL    2004    40791   NULL    2000-07-21 00:00:00     89      now     m       -12163  NULL    2005-11-16 04:05:51     v       ����   NULL    2009-02-15 21:00:00     NULL    7       32      4       SAHPZ   2       NULL    110     8       9       NULL    1261895680      NULL    1201    FENSR           2008-12-14 21:18:54     1200    3       ����   y       ����   4228864 e       NULL    k       4866420872350531584     2007    NULL    34      5       2009    -10247  2004-05-11 12:04:07     NULL    b       ����   ����   ����   357754695399243776      ����   didn't  2007-03-26 00:00:00
 
243
1204    2007    NULL    NULL    2009-12-01 00:00:00     9       who     h       2       NULL    2002-09-24 21:52:00     e       ����   7       NULL    NULL    2       35      -5031083733726265344    OWCVJ   5626368 2002    3       5428244925865000960     1       4       -754057216      NULL    1203    GTRCB           2009-06-14 00:00:00     1203    27      ����   see     ����   121344  c       2007-09-24 11:39:36     back    4       NULL    NULL    35      1       2002    -6496   2005-05-18 14:18:39     NULL    YMUKI   ����   ����   ����   7       ����   g       NULL
 
244
44549   2000    NULL    2001-01-11 21:00:00     2000-11-06 13:21:34     4       d       w       4       NULL    2009-05-24 18:58:21     m       ����   -509696 2005-05-08 03:13:19     NULL    9       10      9       LOXMJ   2       2002    98      -8424827527926644736    7       -250740736      8       3       26276   a               NULL    1201    82      ����   u       ����   NULL    d       NULL    KSHJR   NULL    2007    NULL    36      0       2005    -25467  2007-11-13 00:00:00     NULL    VXBUY   ����   ����   ����   7       ����   y       NULL
 
245
78932   2002    1208    2003-07-26 21:00:00     NULL    46      AXSEX   s       117     NULL    2000-09-03 04:34:58     q       ����   6       2005-11-23 21:00:00     NULL    9       102     3250754506031366144     v       5706496 NULL    40      8       26151   8       -1745289216     8       1202    q               2001-02-28 21:50:06     1203    4       ����   GXWIF   ����   1675520 o       2006-09-03 21:00:00     d       0       NULL    NULL    37      3       2009    -651    2007-01-13 03:53:44     NULL    n       ����   ����   ����   -2733966448790601728    ����   f       2001-02-08 00:00:00
 
246
NULL    2006    35231   NULL    2008-03-17 15:07:14     NULL    as      k       4       NULL    NULL    s       ����   1       2009-10-18 21:00:00     NULL    5640192 1       -4525836150530637824    me      -5575424        2008    4       0       9       NULL    0       NULL    1204    s               2008-05-22 00:00:00     1205    24      ����   see     ����   NULL    a       NULL    r       6192730962611142656     2003    NULL    38      7       2008    NULL    NULL    NULL    RJOYA   ����   ����   ����   6       ����   m       2000-02-16 00:00:00
 
247
66841   2001    1201    NULL    2007-05-25 19:21:03     3       k       c       2243    NULL    2000-10-16 21:00:00     c       ����   -1304832        2000-10-22 21:00:00     NULL    -6746880        3       -2621939408059760640    how     4722176 2005    2       6084926046530961408     -1523   NULL    0       4       1201    BBUZD           2003-08-10 00:00:00     1208    -2      ����   EFVTJ   ����   NULL    q       NULL    o       9       2004    NULL    39      7       2002    NULL    NULL    NULL    to      ����   ����   ����   NULL    ����   b       2002-04-27 01:49:51
 
248
1204    2008    1206    2007-11-25 21:00:00     2007-05-12 00:00:00     NULL    HYJLZ   t       4514    NULL    NULL    f       ����   3       2006-10-24 21:00:00     NULL    6663168 6       2       see     4       2009    -103    -1880815794380603392    0       9       507445248       3       18615   j               NULL    1201    -25     ����   ZDHIH   ����   3131648 a       2001-08-17 21:00:00     b       3       NULL    NULL    40      236847104       2000    NULL    2006-05-08 00:00:00     NULL    k       ����   ����   ����   -7825004352556236800    ����   m       NULL
 
249
1206    2007    NULL    2005-01-22 21:00:00     NULL    NULL    x       b       6688    NULL    2003-11-04 21:00:00     z       ����   NULL    2008-01-18 21:00:00     NULL    9       75      5       be      -6390528        NULL    1       -3742209815368171520    -8463   0       9       3       19633   DFUSL           NULL    1207    50      ����   right   ����   -2925824        f       NULL    LPZLN   5       2006    NULL    41      -1585446912     2008    0       2004-02-07 15:07:40     NULL    r       ����   ����   ����   3       ����   r       2002-07-24 18:27:14
 
250
1200    2005    NULL    2007-04-01 12:09:10     2002-07-13 06:54:34     119     SMQXK   x       7       NULL    2003-04-15 21:00:00     g       ����   8344576 2003-05-09 21:40:21     NULL    521728  7       5       are     -6685696        2002    8       5       3       NULL    1585184768      0       1200    o               2005-06-14 21:59:46     1201    5       ����   h       ����   NULL    b       2009-01-12 21:00:00     i       NULL    2000    NULL    42      60227584        2000    NULL    2009-04-14 11:45:14     NULL    w       ����   ����   ����   4       ����   XGGXU   NULL
 
251
1202    2005    1207    2004-09-22 23:46:03     NULL    4       OHYEQ   z       -32428  NULL    2006-07-31 21:12:27     s       ����   NULL    NULL    NULL    1165824 47      -778841260558385152     the     -3143168        2009    4       -1376412636115107840    -9442   NULL    8       NULL    30632   then            NULL    560     2       ����   but     ����   3       f       2004-06-20 21:00:00     PMFHR   8       2003    NULL    43      2       2001    1       2004-12-05 22:28:59     NULL    YDMTV   ����   ����   ����   NULL    ����   p       2005-08-04 00:00:00
 
252
NULL    2001    1201    NULL    NULL    88      j       q       -22098  NULL    2009-11-22 19:58:50     k       ����   NULL    2007-05-12 17:41:28     NULL    -2364672        5       -5586433862776389632    MJQPT   6011136 2002    -88     -716072340751908864     -17536  NULL    9       NULL    1208    q               NULL    1203    -109    ����   IPUWM   ����   4201728 q       2004-12-07 21:00:00     really  6473642989368377344     2007    NULL    44      -1382875136     2000    -6907   2004-03-06 06:16:18     NULL    there   ����   ����   ����   1       ����   on      2002-04-21 12:26:54
 
253
50299   2000    1205    NULL    2009-01-19 20:08:09     NULL    CHHGC   j       -18264  NULL    2003-10-14 21:00:00     f       ����   6818560 NULL    NULL    3       4       2632916932151476224     x       6       2009    4       6       8       -2108555264     848691200       NULL    1200    e               NULL    1209    7       ����   XOBFQ   ����   -6330368        e       NULL    p       NULL    2003    NULL    45      671875072       2001    NULL    2004-12-20 22:10:56     NULL    j       ����   ����   ����   3       ����   about   2009-08-06 03:35:49
 
254
24553   2006    1203    2001-03-05 21:00:00     NULL    NULL    p       b       27885   NULL    NULL    a       ����   4507904 2003-10-14 07:21:16     NULL    -404224 -93     -7652460191832604672    WJNPK   8014336 2003    114     9       5       NULL    3       27112   1208    ITSDB           2008-04-27 00:00:00     1200    70      ����   EEYKY   ����   7       g       NULL    j       7       2007    NULL    46      8       2005    -8117   2006-07-15 00:00:00     NULL    r       ����   ����   ����   5       ����   g       NULL
 
255
1205    2005    NULL    2004-04-02 21:00:00     2000-06-13 00:00:00     NULL    g       y       9       NULL    2007-06-06 03:11:01     c       ����   3462656 2001-04-01 21:00:00     NULL    -8297216        NULL    5673972580533403648     x       6       2008    8       0       3       NULL    8       -18953  1207    e               NULL    1201    112     ����   MBZSV   ����   6       g       2008-08-03 08:26:17     CIMFU   -2196349243273248768    2009    NULL    47      0       2004    -21071  NULL    NULL    why     ����   ����   ����   -3256665480542289920    ����   IKNGE   2007-04-26 09:34:47
 
256
NULL    2002    NULL    NULL    NULL    119     come    x       21973   NULL    2008-02-05 21:00:00     q       ����   NULL    NULL    NULL    0       NULL    3       y       8       2008    3       4085890761931882496     -21476  NULL    1998651392      8       1209    and             NULL    1204    -39     ����   t       ����   NULL    e       2008-07-09 23:43:05     from    NULL    2001    NULL    48      7       2001    22433   2002-11-06 15:25:49     NULL    a       ����   ����   ����   6245085308279324672     ����   FEIZF   NULL
 
257
NULL    2003    1203    2009-11-11 21:00:00     NULL    NULL    did     p       13756   NULL    2007-11-03 07:40:48     q       ����   5       2009-08-08 12:29:23     NULL    1       -55     -6192449487634432000    v       -6166528        2009    4       5178013671569227776     -25046  1067843584      3       3       1201    e               2004-06-08 19:14:11     1205    2       ����   XNMNT   ����   NULL    e       2002-11-26 04:44:04     RIFZM   -920423173843845120     2006    NULL    49      5       2005    NULL    2009-09-11 16:11:16     NULL    x       ����   ����   ����   -4120230709090582528    ����   IJWCR   NULL
 
258
1207    2005    6065    NULL    2006-04-13 20:52:25     NULL    see     d       1       NULL    NULL    g       ����   NULL    2006-04-25 21:00:00     NULL    -6944000        NULL    4       ICWQS   4       2000    126     2604487959503699968     5       1091960832      1050804224      -31008  56948   not             2001-05-12 12:21:52     1207    6       ����   MRXJB   ����   4       o       NULL    p       NULL    2009    NULL    50      664535040       2001    NULL    NULL    NULL    can     ����   ����   ����   6       ����   d       NULL
 
259
1201    2008    31300   2007-12-16 08:01:35     2009-11-06 00:00:00     -34     s       c       92      NULL    2001-02-03 09:21:05     p       ����   NULL    2007-01-11 21:00:00     NULL    7       3       1       w       5       2006    4       8       1       8       1506869248      2       1204    say             2005-10-08 02:06:33     1206    8       ����   KGIJV   ����   NULL    q       2003-02-11 22:33:13     to      -4426475483751776256    2008    NULL    51      8       2001    6       2006-10-22 13:29:58     NULL    AXDKZ   ����   ����   ����   NULL    ����   if      2006-08-04 06:29:24
 
260
29072   2004    1209    NULL    NULL    NULL    me      s       5537    NULL    2007-09-24 21:00:00     d       ����   4       2009-09-16 21:00:00     NULL    3       2       7       go      5       2009    3       1       1       NULL    7       NULL    30856   now             NULL    44637   -14     ����   a       ����   -7384576        f       NULL    i       4302907968975798272     NULL    NULL    52      1454047232      2004    6       2003-04-17 00:00:00     NULL    so      ����   ����   ����   -5370261080662605824    ����   c       2004-11-13 00:00:00
 
261
32230   2004    1209    NULL    2003-09-21 14:07:06     54      w       j       30579   NULL    NULL    o       ����   -6335232        2000-03-26 21:00:00     NULL    725504  4       1276489019382824960     WINFI   6       2003    -72     8       18600   0       4       NULL    1204    i               2007-04-03 00:00:00     1205    1       ����   oh      ����   5       m       2005-08-04 02:39:55     g       NULL    2007    NULL    53      -895680512      2004    NULL    NULL    NULL    MAAOJ   ����   ����   ����   7       ����   c       2005-12-23 15:02:52
 
262
NULL    2006    1207    NULL    NULL    NULL    come    b       5       NULL    2008-01-24 21:00:00     b       ����   4       NULL    NULL    4       6       0       YFKCC   4       2003    2       0       1       0       8       NULL    1206    your            2000-06-02 00:00:00     1206    -37     ����   OUWDF   ����   6       c       2001-01-20 21:00:00     s       2380715353018728448     2004    NULL    54      4       2002    22001   2003-04-05 17:58:00     NULL    b       ����   ����   ����   8       ����   XNDFC   NULL
 
263
NULL    2003    1201    2008-08-03 19:44:12     2009-12-21 00:00:00     92      i       w       3       NULL    NULL    u       ����   -980480 2002-08-01 21:00:00     NULL    9       NULL    -4356388214550822912    and     -5214720        2005    9       3507459684791484416     7       7       400949248       9       1206    s               2002-07-25 00:00:00     57871   -93     ����   CUEUL   ����   NULL    d       2004-03-13 21:00:00     DTIBS   NULL    NULL    NULL    55      1828192256      2005    -31856  2006-06-17 00:00:00     NULL    could   ����   ����   ����   5499739569949507584     ����   when    NULL
 
264
1207    2003    NULL    NULL    2002-03-20 19:05:05     5       s       x       -14062  NULL    2009-03-17 21:00:00     w       ����   NULL    2009-11-20 08:07:13     NULL    -2161920        7       -7166071432076591104    QVDTF   7       2006    -58     1       -3304   3       1       NULL    1201    ULAXP           NULL    30160   68      ����   CZFND   ����   6       k       2002-02-03 16:24:38     MHUMM   NULL    2004    NULL    56      4       2004    NULL    2009-03-12 17:42:02     NULL    c       ����   ����   ����   0       ����   y       NULL
 
265
1203    2001    78112   2008-01-27 21:00:00     2002-07-21 07:14:46     109     w       q       2019    NULL    2002-11-12 03:59:19     k       ����   NULL    2009-09-04 12:09:50     NULL    5       NULL    1       for     9       2001    3       9       7       0       6       17057   1208    my              2004-03-04 20:55:28     55703   -126    ����   FQAFB   ����   9       p       NULL    the     NULL    2006    NULL    57      -1159397376     2000    0       NULL    NULL    v       ����   ����   ����   NULL    ����   j       NULL
 
266
1207    2003    1207    2004-09-19 17:14:55     2000-08-22 00:00:00     NULL    n       o       -4692   NULL    2007-12-18 08:21:19     i       ����   -3765248        2007-11-09 21:00:00     NULL    2218752 -63     8       HQWLM   -1627648        NULL    53      -1165869353535537152    1200    8       -1452736512     NULL    20878   PCQJS           NULL    1207    0       ����   j       ����   NULL    n       NULL    right   NULL    2007    NULL    58      -1335427072     2005    8       2002-01-05 00:00:00     NULL    p       ����   ����   ����   NULL    ����   like    NULL
 
267
81417   2006    1201    2002-08-28 06:03:39     2003-08-04 00:25:42     -22     up      j       -31579  NULL    2002-06-12 21:00:00     s       ����   NULL    NULL    NULL    6       NULL    -7050385216648511488    what    6526464 2003    9       9       -1133   NULL    1324482560      NULL    1206    ZNAAO           2000-08-16 00:00:00     1205    6       ����   k       ����   7       s       2009-12-03 21:00:00     like    4       NULL    NULL    59      1727135744      2008    1       2009-06-27 00:00:00     NULL    u       ����   ����   ����   -3540673732043341824    ����   v       NULL
 
268
NULL    2004    1202    NULL    2000-11-23 22:59:46     -84     that    q       5734    NULL    NULL    l       ����   NULL    NULL    NULL    7       6       6       and     9       2006    59      0       -8923   0       -1743847424     NULL    1209    s               2005-05-06 00:00:00     1208    -2      ����   to      ����   7       e       2001-07-26 21:00:00     BCGNG   953918696072413184      2002    NULL    60      -469172224      2006    1       NULL    NULL    DHZCT   ����   ����   ����   -2116691824864133120    ����   LLSXS   NULL
 
269
12585   2008    NULL    NULL    NULL    -109    don't   n       13283   NULL    NULL    j       ����   812800  2001-06-11 10:54:00     NULL    1314560 2       -682295343546630144     FXXAW   3       2007    67      3       0       -1309736960     4       -110    1209    t               2009-02-17 09:37:51     1204    78      ����   NFSAD   ����   1       p       2003-08-09 21:00:00     or      4       NULL    NULL    61      0       2001    8       2005-06-06 00:00:00     NULL    like    ����   ����   ����   7030963443255476224     ����   f       NULL
 
270
NULL    2003    1204    2003-12-04 06:21:51     2008-01-05 00:00:00     9       k       j       12920   NULL    2008-09-27 03:49:19     d       ����   2528512 2008-08-22 21:00:00     NULL    2415360 NULL    2489364694029041664     but     7       2008    -21     -8026821910857777152    -15014  -339214336      1979449344      -24701  1208    yeah            NULL    1200    49      ����   WDPQP   ����   -6164224        k       NULL    yeah    2723833349629018112     NULL    NULL    62      1       2006    0       2009-06-11 00:00:00     NULL    okay    ����   ����   ����   NULL    ����   l       NULL
 
271
1207    2004    1207    2002-04-01 05:51:44     NULL    8       HUAQJ   n       9       NULL    2005-06-16 21:00:00     j       ����   NULL    2002-10-10 21:00:00     NULL    -1538816        1       -7195063354677788672    MSWVY   1474816 NULL    53      3       -27127  NULL    9       NULL    1204    or              2006-11-13 03:55:42     76780   5       ����   know    ����   NULL    d       2006-04-24 21:00:00     WTFQZ   NULL    2003    NULL    63      -1735327744     2007    5       2002-04-19 08:25:06     NULL    DPDTM   ����   ����   ����   0       ����   KIZNM   NULL
 
272
81540   2003    1205    NULL    NULL    NULL    XXLGC   p       2       NULL    NULL    m       ����   NULL    2001-08-04 07:04:19     NULL    5838592 -77     2       t       5877760 2007    1       7       -3137   1       1887830016      -13460  1206    one             NULL    1207    98      ����   h       ����   NULL    z       NULL    good    NULL    2005    NULL    64      1031208960      2005    -16969  NULL    NULL    come    ����   ����   ����   6317142902317252608     ����   been    NULL
 
273
1201    2004    NULL    2002-11-27 21:00:00     2007-04-19 20:49:24     NULL    about   v       13395   NULL    2003-02-27 10:45:08     g       ����   3       2004-01-19 22:56:42     NULL    3145728 5       9       yeah    -1718784        NULL    37      2       5       -1777795072     6       9       38543   b               NULL    1203    0       ����   then    ����   NULL    c       NULL    could   2       2002    NULL    65      4       2001    -22950  NULL    NULL    want    ����   ����   ����   NULL    ����   NFWGP   NULL
 
274
NULL    2002    25602   NULL    NULL    NULL    DSMJD   p       13874   NULL    2000-09-10 21:00:00     n       ����   6       2008-11-24 17:51:22     NULL    -8293120        NULL    4       l       4481280 2004    113     1       14042   NULL    -1394671616     4829    36792   EWQPE           2005-07-10 12:54:55     1203    0       ����   tell    ����   4938240 n       2005-12-20 10:55:15     XQTGU   NULL    NULL    NULL    66      2       2009    NULL    2002-05-09 00:00:00     NULL    TRSLV   ����   ����   ����   NULL    ����   z       NULL
 
275
1205    2003    1201    NULL    2007-08-16 00:00:00     -88     s       f       3       NULL    2002-02-09 11:00:06     c       ����   NULL    NULL    NULL    -5284608        -80     -6072541147555692544    your    0       2003    4       2107966100586102784     8       -853737472      4       -13850  1203    g               2008-08-06 00:00:00     1205    99      ����   HSDUO   ����   4877312 d       2004-08-06 19:43:43     you     -4655033164840828928    NULL    NULL    67      -1419116544     2004    NULL    NULL    NULL    think   ����   ����   ����   -4107564335138603008    ����   he's    2009-07-25 00:00:00
 
276
1205    2007    NULL    NULL    2007-02-10 00:00:00     NULL    GXSSM   h       -21321  NULL    NULL    z       ����   6       2004-01-03 21:00:00     NULL    -6761216        NULL    1955688138185637888     VMYMA   -2481408        2005    2       7282320597458092032     -6607   NULL    1       -23747  1204    WNOKZ           2000-06-04 16:19:12     1200    -6      ����   q       ����   1030144 z       2004-02-03 12:08:59     HBXJT   NULL    NULL    NULL    68      546504704       2004    3       2000-09-21 12:51:57     NULL    MWDLL   ����   ����   ����   4823918150867222528     ����   s       NULL
 
277
1203    2004    4080    2008-01-11 14:35:34     2005-05-19 16:36:05     5       how     d       -2236   NULL    2005-09-08 21:00:00     x       ����   -7304448        2002-06-08 02:31:04     NULL    2233344 NULL    8       get     0       2009    -64     -5663276531418398720    -30540  -1343094784     9       NULL    1200    VEUYT           2007-08-11 00:00:00     53783   -113    ����   n       ����   7       e       2007-07-08 15:49:23     u       0       NULL    NULL    69      8       2009    -26655  NULL    NULL    EHOIX   ����   ����   ����   NULL    ����   ORXGX   NULL
 
278
40729   2001    NULL    NULL    2005-05-18 14:10:07     2       WNXHG   x       -1263   NULL    2002-10-31 21:00:00     q       ����   -3240960        NULL    NULL    0       94      4       m       -524800 2003    -121    -4896538694858571776    5       8       9       NULL    10736   l               2008-06-04 00:00:00     1206    83      ����   XFJRM   ����   5129728 j       NULL    e       1       NULL    NULL    70      -1384448000     2007    7931    NULL    NULL    hey     ����   ����   ����   NULL    ����   o       2000-08-27 17:43:04
 
279
33727   2005    1201    NULL    NULL    120     s       j       8       NULL    NULL    h       ����   6358016 NULL    NULL    7721984 0       8       some    3       NULL    7       8       -13193  1       1288830976      -7091   62597   IXQSR           2005-11-04 00:00:00     1204    -116    ����   VICRP   ����   6       e       2009-11-12 21:00:00     NCAJN   -3993004019617366016    2000    NULL    71      4       2004    NULL    2003-05-02 09:06:04     NULL    FOLIP   ����   ����   ����   NULL    ����   they    NULL
 
280
1207    2001    68503   2002-11-23 13:08:14     2001-06-12 00:00:00     NULL    j       d       0       NULL    2004-06-19 21:50:08     i       ����   9       2006-09-16 21:00:00     NULL    4695552 NULL    4       up      7       NULL    88      1       31198   573374464       -271843328      -16519  1200    OLUIR           2003-03-01 10:35:39     81585   -38     ����   if      ����   2560    n       2007-03-23 21:00:00     ok      5       NULL    NULL    72      1       2007    NULL    2009-08-23 12:45:58     NULL    here    ����   ����   ����   NULL    ����   from    2007-10-02 00:00:00
 
281
1204    2005    1207    NULL    2000-08-20 00:00:00     0       KRARO   y       -2784   NULL    2001-12-13 16:09:03     a       ����   NULL    NULL    NULL    2       2       8588083014418825216     h       8       2008    -35     -2162853721044680704    3771    NULL    -336199680      -25945  69191   ZWUDS           NULL    1204    0       ����   LESXT   ����   -4205568        v       NULL    XIHXF   NULL    2009    NULL    73      -205193216      2008    NULL    2003-11-01 00:00:00     NULL    yes     ����   ����   ����   5       ����   NKOGL   NULL
 
282
1208    2004    1200    NULL    NULL    NULL    VUCQP   z       4       NULL    NULL    c       ����   7       2000-04-26 21:00:00     NULL    1       9       5       YZTKK   0       NULL    7       7628253343835488256     -1579   1539047424      1860042752      NULL    43265   his             NULL    1203    125     ����   him     ����   7       v       2009-10-21 21:45:15     p       NULL    2003    NULL    74      1042284544      2009    7371    2003-12-15 03:31:02     NULL    XWFGX   ����   ����   ����   4       ����   x       NULL
 
283
44965   2007    65890   2001-02-02 21:00:00     2001-07-18 13:42:08     NULL    o       g       6       NULL    2000-01-05 12:23:58     m       ����   2       2003-04-10 21:00:00     NULL    1       NULL    -7362259490843918336    z       7165184 2008    -21     2       12695   NULL    8       2630    22551   look            2006-07-18 21:10:50     1209    -5      ����   CTKZJ   ����   -1540352        d       2000-11-10 16:25:35     PHNSG   1183883752045019136     2001    NULL    75      4       2003    0       NULL    NULL    a       ����   ����   ����   5809080569354518528     ����   UPRHH   2006-03-07 00:00:00
 
284
NULL    2009    1206    NULL    2006-12-03 00:31:38     -94     q       m       8       NULL    2001-04-26 08:37:40     s       ����   7582976 2005-02-15 21:00:00     NULL    9       9       6435080917559017472     how     6066176 NULL    7       9       9       -1807286272     535625728       NULL    13959   BOKOA           2004-08-18 00:00:00     1202    -48     ����   go      ����   NULL    h       NULL    RDHOP   2       NULL    NULL    76      9       2002    NULL    2000-12-13 16:26:45     NULL    will    ����   ����   ����   729020189680599040      ����   n       2002-08-08 08:31:19
 
285
1205    2000    56653   2002-09-18 21:00:00     2005-10-21 07:08:10     NULL    could   r       -30484  NULL    2001-11-26 17:24:48     j       ����   NULL    2005-09-19 22:32:11     NULL    2210304 107     -8932889860889378816    s       1434112 2004    4       4286300945349869568     6       -1746862080     -2112946176     2       1209    who             NULL    1201    4       ����   i       ����   1262848 s       NULL    her     -3574732204225331200    2001    NULL    77      -447348736      2003    NULL    2006-08-08 03:42:03     NULL    LCKYA   ����   ����   ����   -757167687351664640     ����   z       2006-06-18 00:00:00
 
286
1206    2005    NULL    NULL    2002-07-27 08:29:01     NULL    KDGDO   c       6       NULL    2005-02-20 21:00:00     r       ����   NULL    NULL    NULL    7       9       4865576447420399616     the     0       2008    70      1445655480385929216     -8085   2036269056      9       6888    1207    I'll            NULL    59821   3       ����   IKXHA   ����   NULL    j       NULL    k       7       2000    NULL    78      -734920704      2005    2       2000-11-28 15:17:10     NULL    PWONK   ����   ����   ����   NULL    ����   g       2006-06-28 00:00:00
 
287
1207    2002    1209    NULL    NULL    3       DNLCB   w       0       NULL    2005-04-27 10:52:56     g       ����   -1439744        2008-06-16 21:00:00     NULL    9       NULL    1       what    25600   2002    -10     3       10756   1980497920      5       5       1207    ADSSU           2008-03-08 02:31:05     1209    -87     ����   f       ����   2       r       NULL    I       NULL    NULL    NULL    79      -503513088      2004    9       NULL    NULL    don't   ����   ����   ����   NULL    ����   KGYQE   NULL
 
288
1205    2006    1209    2007-07-20 21:00:00     2000-02-25 00:00:00     -6      o       c       -17589  NULL    2002-11-02 13:23:43     y       ����   -6464000        NULL    NULL    8       NULL    0       x       -555264 2006    112     2       25839   NULL    8       8       1203    can't           2006-02-03 08:25:57     21435   2       ����   AZZXS   ����   -220672 z       2005-07-15 07:45:57     BWGXL   NULL    2005    NULL    80      1056964608      2001    NULL    2006-12-16 00:00:00     NULL    were    ����   ����   ����   -2954924305508466688    ����   QCNIW   2007-05-10 00:00:00
 
289
1205    2005    1200    2003-05-14 21:00:00     2002-11-16 00:00:00     63      up      e       7       NULL    2000-10-21 01:38:59     d       ����   NULL    NULL    NULL    5       5       -8141663701355724800    ODKUX   4320000 2004    0       -7248825075229523968    31213   8       8       NULL    1202    w               NULL    1202    4       ����   GJTDB   ����   NULL    k       NULL    q       NULL    2006    NULL    81      5       2008    NULL    2009-08-22 00:00:00     NULL    l       ����   ����   ����   NULL    ����   y       2007-07-23 00:00:00
 
290
NULL    2003    76456   NULL    NULL    0       YTNSL   r       9       NULL    2003-01-20 03:25:18     e       ����   3       2004-12-14 21:00:00     NULL    342016  6       6694037896132820992     mean    5681664 NULL    -109    4       -20967  NULL    1229258752      28990   1205    j               NULL    70108   6       ����   HPEHZ   ����   4907008 f       2007-01-23 21:00:00     tell    4       2000    NULL    82      4       2005    -2045   NULL    NULL    GKMHZ   ����   ����   ����   -5926174159666151424    ����   NCMSK   NULL
 
291
NULL    2006    1207    2002-07-14 07:22:15     2008-02-02 20:52:31     -63     i       l       25361   NULL    NULL    n       ����   -2783744        2008-06-05 21:00:00     NULL    4       71      -1170091478186196992    l       -2658816        2005    -39     -3237806657102675968    4       -286130176      -2050293760     -11869  1208    k               NULL    1204    -64     ����   x       ����   1       l       2004-06-16 10:30:37     i       -4420564509240852480    NULL    NULL    83      -782630912      2007    3       NULL    NULL    DEHLC   ����   ����   ����   -427279014646775808     ����   f       NULL
 
292
50443   2004    1206    NULL    NULL    NULL    j       p       -5393   NULL    2008-11-16 01:24:47     r       ����   9       2006-11-27 21:00:00     NULL    -2871552        NULL    -8535165718797221888    got     701952  2004    -14     -9134988894167629824    8       -953024512      -433979392      1       1202    r               2006-02-20 00:00:00     1208    8       ����   g       ����   -237312 k       2003-08-21 21:00:00     him     NULL    2006    NULL    84      5       2004    2       2002-11-23 14:38:12     NULL    u       ����   ����   ����   1       ����   g       2008-01-21 00:00:00
 
293
57610   2005    1205    NULL    2002-10-16 10:40:04     1       do      u       0       NULL    NULL    g       ����   -5024000        2005-07-01 16:29:59     NULL    4       7       6617476702467522560     a       599040  2003    -56     6       5       7       8       7626    1208    GTYIT           2005-03-07 16:03:53     1200    3       ����   v       ����   622848  b       2007-10-20 12:52:40     well    8020629461370142720     NULL    NULL    85      3       2004    1195    2008-06-24 17:31:57     NULL    HULUU   ����   ����   ����   7023082143907577856     ����   be      2002-01-14 21:40:18
 
294
NULL    2004    11725   2009-03-26 21:00:00     2002-02-15 00:00:00     75      g       x       5       NULL    2008-09-03 21:00:00     o       ����   3680768 2008-09-10 21:00:00     NULL    -539648 30      5       WLBES   0       2004    3       8       11769   7       -1438842880     -151    20029   k               NULL    1201    4       ����   m       ����   321024  x       NULL    z       NULL    NULL    NULL    86      2       2008    NULL    2008-01-15 19:33:00     NULL    p       ����   ����   ����   5170976797151461376     ����   some    NULL
 
295
1202    2003    NULL    2008-10-17 04:45:27     2003-02-03 00:00:00     NULL    IDKDI   l       5       NULL    NULL    q       ����   -654592 2005-01-26 07:46:35     NULL    -2172672        NULL    3       that's  5       NULL    -45     3       4       3       5       NULL    78215   CQRKD           NULL    1204    1       ����   r       ����   NULL    y       2003-06-13 03:16:50     FQHYD   NULL    2008    NULL    87      1970536448      2006    NULL    NULL    NULL    it      ����   ����   ����   5       ����   z       NULL
 
296
1202    2002    1204    2004-06-11 08:25:09     2000-09-13 15:24:24     -56     t       k       20026   NULL    2000-03-24 21:00:00     l       ����   8150784 NULL    NULL    -7060992        NULL    -5645262132908916736    FCRUE   1202944 2003    -59     2055611754917920768     -28864  NULL    0       -26973  82422   k               NULL    2033    8       ����   x       ����   -1259776        j       2005-01-02 21:00:00     z       4       NULL    NULL    88      1269104640      2005    NULL    2007-07-12 07:52:15     NULL    up      ����   ����   ����   3       ����   q       2003-11-27 00:00:00
 
297
NULL    2009    1206    2006-07-02 21:00:00     2007-01-10 00:00:00     NULL    k       o       0       NULL    NULL    m       ����   7       2005-10-19 21:00:00     NULL    9       109     6       WLDMN   5       2006    89      8       26108   NULL    2       8       63601   MRTKB           NULL    1204    124     ����   TQDOC   ����   NULL    o       NULL    l       -6835056859464859648    2000    NULL    89      2       2004    NULL    2001-01-21 12:24:37     NULL    x       ����   ����   ����   0       ����   s       2006-11-09 00:00:00
 
298
1209    2004    1204    2008-08-05 06:49:53     2005-02-12 21:55:43     5       l       y       21757   NULL    2006-10-08 21:00:00     k       ����   2048768 2007-09-12 02:14:50     NULL    -3659008        74      9       OYYAI   -7632640        2007    58      2       9       9       1       7       1202    but             NULL    18094   2       ����   go      ����   4       u       NULL    there   NULL    2005    NULL    90      -248971264      2007    NULL    NULL    NULL    MZCVK   ����   ����   ����   5       ����   ERQAA   NULL
 
299
NULL    2000    1202    NULL    2009-08-08 07:05:57     -52     no      k       -25712  NULL    2005-07-03 21:00:00     z       ����   6       2009-09-13 21:00:00     NULL    -4370688        NULL    1       me      6       NULL    6       -1330813689887981568    7       NULL    -1210187776     NULL    1200    e               NULL    1209    0       ����   YKXAM   ����   8       q       2007-03-07 21:00:00     on      NULL    2003    NULL    91      268959744       2003    2       NULL    NULL    here    ����   ����   ����   NULL    ����   d       NULL
 
300
1201    2004    1206    NULL    2000-01-24 00:00:00     7       want    z       9       NULL    2002-08-04 12:20:45     b       ����   7       2001-11-17 10:27:49     NULL    6183936 NULL    3       z       1677824 2009    5       -939563472260169728     7       756219904       7       NULL    822     t               NULL    1200    70      ����   GAKYB   ����   -2018304        w       NULL    h       3430335541172764672     NULL    NULL    92      9       2000    8730    NULL    NULL    YNZTE   ����   ����   ����   8       ����   f       2008-10-06 13:45:11
 
301
NULL    2007    1205    2003-07-13 21:00:00     2000-06-11 22:08:10     1       GVKDP   u       -18447  NULL    2003-05-03 07:35:06     s       ����   NULL    2008-10-12 13:08:29     NULL    8       NULL    4       GGHMS   6974976 2004    2       7       -6653   NULL    1851392000      NULL    1200    QQAXA           NULL    1207    51      ����   BPXDR   ����   7       y       NULL    j       1       2000    NULL    93      8       2003    -5533   2009-04-17 00:00:26     NULL    v       ����   ����   ����   1       ����   FMEEG   2006-07-10 02:00:45
 
302
1207    2008    NULL    2009-08-18 09:46:52     NULL    1       g       e       4       NULL    2003-08-12 17:41:34     i       ����   6       NULL    NULL    0       54      9       y       3       2001    -78     1       2       6       0       -4454   58386   look            NULL    32347   90      ����   for     ����   -869888 c       NULL    don't   7       NULL    NULL    94      1914699776      2003    3       2002-04-18 22:17:31     NULL    ZQHRQ   ����   ����   ����   -5111304102088802304    ����   p       NULL
 
303
9447    2001    1312    NULL    2009-06-11 21:55:17     NULL    w       q       19991   NULL    2001-08-14 22:15:02     e       ����   -258560 2008-04-25 21:00:00     NULL    4767488 NULL    0       z       5       2002    23      -9088264048033660928    12256   1478361088      -1238433792     NULL    43218   can             NULL    1202    1       ����   good    ����   NULL    p       2005-05-27 21:00:00     have    8755560625561665536     2006    NULL    95      59441152        2006    16876   NULL    NULL    u       ����   ����   ����   NULL    ����   a       2009-02-07 15:29:04
 
304
1206    2007    NULL    NULL    NULL    9       are     s       8       NULL    2001-11-18 20:15:54     q       ����   NULL    NULL    NULL    6       NULL    8046806634204233728     he      9       2000    115     1       4       2       0       NULL    72115   a               2008-08-01 09:21:49     1634    0       ����   TBTIL   ����   -6292992        n       2005-03-31 21:00:00     k       1       2001    NULL    96      222035968       2007    24869   2006-01-08 00:00:00     NULL    t       ����   ����   ����   8343762734633975808     ����   tell    NULL
 
305
NULL    2009    1207    NULL    2002-10-07 01:00:59     6       g       x       22396   NULL    NULL    i       ����   NULL    2004-03-08 21:00:00     NULL    2       NULL    4814910951612481536     QIYHJ   1714432 2004    6       345369796423974912      7       NULL    -1461387264     -14684  1205    TQNXK           NULL    1204    4       ����   RSYUM   ����   NULL    i       NULL    j       -1724878657282899968    NULL    NULL    97      1287782400      2005    -12169  2004-06-12 13:58:50     NULL    w       ����   ����   ����   1       ����   VLPQT   NULL
 
306
1202    2007    1200    NULL    NULL    NULL    y       c       -3139   NULL    2004-10-01 21:00:00     y       ����   2       2005-04-27 16:58:08     NULL    0       -111    -7094576787992084480    ACAHH   6576128 2005    -28     1       1       NULL    1       -21155  33987   now             NULL    40392   4       ����   f       ����   -6944512        d       NULL    had     -2964494454716628992    NULL    NULL    98      82444288        2004    1       2001-04-09 21:27:42     NULL    to      ����   ����   ����   9       ����   no      NULL
 
307
NULL    2008    1203    NULL    2000-05-03 04:58:08     25      VMFXV   n       -29665  NULL    2003-12-15 08:04:55     o       ����   5       NULL    NULL    8       -60     2       b       4       2007    4       -4903012619322916864    23714   NULL    8       9       1208    would           NULL    73200   -28     ����   got     ����   NULL    d       2003-04-15 21:00:00     TAUGL   5       NULL    NULL    99      3       2008    NULL    2008-02-06 05:27:28     NULL    p       ����   ����   ����   5       ����   z       NULL
 
308
11726   2007    NULL    2006-10-11 06:54:05     2002-01-16 00:00:00     4       know    p       20352   NULL    2003-07-02 00:53:15     j       ����   NULL    2005-10-01 12:28:51     NULL    1697536 -104    -5835820692142030848    JVNLE   6       NULL    -42     3       4       -89391104       7       2       12346   UDCHU           2004-08-05 04:46:01     1205    -42     ����   what    ����   7       r       2006-02-20 22:42:20     here    5980217355194597376     NULL    NULL    100     -312147968      2006    NULL    2003-05-04 00:00:00     NULL    see     ����   ����   ����   8       ����   SPPQN   2001-06-03 00:00:00
 
309
test table3 
 
310
SHOW CREATE TABLE drizzledump_migrate_test.dump_table3;
 
311
Table   Create Table
 
312
dump_table3     CREATE TABLE `dump_table3` (
 
313
  `pk` INT NOT NULL AUTO_INCREMENT,
 
314
  `field0` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
315
  `field1` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
316
  `field2` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
317
  `field3` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
318
  `field4` VARCHAR(128) COLLATE utf8_general_ci DEFAULT NULL,
 
319
  `field5` VARCHAR(128) COLLATE utf8_general_ci DEFAULT NULL,
 
320
  `field6` VARCHAR(128) COLLATE utf8_general_ci NOT NULL,
 
321
  `field7` VARCHAR(128) COLLATE utf8_general_ci NOT NULL,
 
322
  `field8` INT DEFAULT NULL,
 
323
  `field9` INT DEFAULT NULL,
 
324
  `field10` INT NOT NULL,
 
325
  `field11` INT NOT NULL,
 
326
  `field12` BIGINT DEFAULT NULL,
 
327
  `field13` BIGINT DEFAULT NULL,
 
328
  `field14` BIGINT NOT NULL,
 
329
  `field15` BIGINT NOT NULL,
 
330
  `field16` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
331
  `field17` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
332
  `field18` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
333
  `field19` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
334
  `field24` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
335
  `field25` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
 
336
  `field26` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
337
  `field27` VARCHAR(10) COLLATE utf8_general_ci NOT NULL,
 
338
  `field32` INT DEFAULT NULL,
 
339
  `field33` INT DEFAULT NULL,
 
340
  `field34` INT NOT NULL,
 
341
  `field35` INT NOT NULL,
 
342
  `field40` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
343
  `field41` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
344
  `field42` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
345
  `field43` ENUM('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') DEFAULT NULL,
 
346
  PRIMARY KEY (`pk`)
 
347
) ENGINE=InnoDB COLLATE = utf8_general_ci AUTO_INCREMENT=1251
 
348
SELECT * FROM drizzledump_migrate_test.dump_table3;
 
349
pk      field0  field1  field2  field3  field4  field5  field6  field7  field8  field9  field10 field11 field12 field13 field14 field15 field16 field17 field18 field19 field24 field25 field26 field27 field32 field33 field34 field35 field40 field41 field42 field43
 
350
1       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
351
2       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
352
3       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
353
4       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
354
5       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
355
6       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
356
7       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
357
8       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
358
9       you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
359
10      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
360
11      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
361
12      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
362
13      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
363
14      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
364
15      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
365
16      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
366
17      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
367
18      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
368
19      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
369
20      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
370
21      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
371
22      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
372
23      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
373
24      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
374
25      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
375
26      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
376
27      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
377
28      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
378
29      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
379
30      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
380
31      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
381
32      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
382
33      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
383
34      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
384
35      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
385
36      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
386
37      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
387
38      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
388
39      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
389
40      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
390
41      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
391
42      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
392
43      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
393
44      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
394
45      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
395
46      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
396
47      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
397
48      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
398
49      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
399
50      you're  VETMB   OLMSJ   WVIYY   RPGEG   now     are     oh      -1761017856     -262209536      2       329056256       NULL    3       -8687725156174397440    4       c       t       v       h       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
400
51      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
401
52      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
402
53      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
403
54      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
404
55      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
405
56      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
406
57      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
407
58      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
408
59      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
409
60      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
410
61      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
411
62      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
412
63      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
413
64      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
414
65      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
415
66      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
416
67      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
417
68      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
418
69      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
419
70      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
420
71      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
421
72      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
422
73      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
423
74      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
424
75      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
425
76      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
426
77      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
427
78      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
428
79      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
429
80      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
430
81      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
431
82      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
432
83      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
433
84      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
434
85      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
435
86      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
436
87      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
437
88      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
438
89      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
439
90      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
440
91      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
441
92      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
442
93      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
443
94      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
444
95      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
445
96      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
446
97      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
447
98      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
448
99      s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
449
100     s       that    yeah    p       a       well    x       at      8       530907136       3       -1933115392     NULL    9       6773413839565225984     9       i       u       q       q       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
450
101     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
451
102     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
452
103     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
453
104     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
454
105     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
455
106     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
456
107     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
457
108     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
458
109     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
459
110     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
460
111     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
461
112     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
462
113     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
463
114     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
464
115     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
465
116     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
466
117     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
467
118     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
468
119     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
469
120     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
470
121     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
471
122     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
472
123     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
473
124     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
474
125     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
475
126     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
476
127     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
477
128     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
478
129     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
479
130     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
480
131     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
481
132     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
482
133     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
483
134     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
484
135     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
485
136     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
486
137     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
487
138     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
488
139     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
489
140     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
490
141     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
491
142     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
492
143     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
493
144     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
494
145     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
495
146     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
496
147     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
497
148     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
498
149     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
499
150     SKXAZ   think   OLRLO   was     HVMBW   say     DYITV   CXIVU   544997376       -1516044288     2       -1674575872     -1471551178243309568    9       -1436929756107898880    -6055652648953053184    z       e       u       a       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
500
151     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
501
152     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
502
153     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
503
154     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
504
155     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
505
156     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
506
157     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
507
158     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
508
159     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
509
160     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
510
161     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
511
162     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
512
163     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
513
164     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
514
165     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
515
166     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
516
167     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
517
168     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
518
169     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
519
170     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
520
171     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
521
172     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
522
173     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
523
174     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
524
175     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
525
176     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
526
177     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
527
178     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
528
179     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
529
180     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
530
181     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
531
182     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
532
183     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
533
184     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
534
185     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
535
186     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
536
187     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
537
188     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
538
189     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
539
190     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
540
191     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
541
192     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
542
193     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
543
194     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
544
195     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
545
196     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
546
197     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
547
198     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
548
199     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
549
200     s       yes     of      ITMYA   with    can't   i       GQNTD   6       1387331584      1898119168      7       7       3       5       4287989795210133504     r       q       t       s       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
550
201     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
551
202     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
552
203     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
553
204     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
554
205     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
555
206     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
556
207     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
557
208     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
558
209     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
559
210     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
560
211     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
561
212     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
562
213     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
563
214     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
564
215     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
565
216     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
566
217     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
567
218     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
568
219     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
569
220     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
570
221     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
571
222     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
572
223     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
573
224     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
574
225     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
575
226     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
576
227     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
577
228     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
578
229     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
579
230     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
580
231     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
581
232     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
582
233     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
583
234     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
584
235     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
585
236     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
586
237     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
587
238     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
588
239     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
589
240     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
590
241     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
591
242     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
592
243     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
593
244     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
594
245     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
595
246     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
596
247     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
597
248     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
598
249     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
599
250     didn't  were    get     at      q       IDAHS   XPRML   okay    1       NULL    349044736       1457717248      NULL    5883671438182842368     3       9       h       u       x       u       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
600
251     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
601
252     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
602
253     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
603
254     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
604
255     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
605
256     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
606
257     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
607
258     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
608
259     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
609
260     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
610
261     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
611
262     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
612
263     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
613
264     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
614
265     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
615
266     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
616
267     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
617
268     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
618
269     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
619
270     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
620
271     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
621
272     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
622
273     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
623
274     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
624
275     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
625
276     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
626
277     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
627
278     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
628
279     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
629
280     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
630
281     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
631
282     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
632
283     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
633
284     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
634
285     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
635
286     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
636
287     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
637
288     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
638
289     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
639
290     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
640
291     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
641
292     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
642
293     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
643
294     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
644
295     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
645
296     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
646
297     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
647
298     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
648
299     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
649
300     not     a       it      she     they    XXHBM   look    k       2       NULL    2       -464060416      5       NULL    -2094173826727280640    8       j       d       c       u       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
650
301     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
651
302     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
652
303     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
653
304     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
654
305     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
655
306     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
656
307     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
657
308     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
658
309     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
659
310     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
660
311     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
661
312     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
662
313     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
663
314     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
664
315     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
665
316     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
666
317     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
667
318     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
668
319     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
669
320     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
670
321     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
671
322     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
672
323     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
673
324     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
674
325     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
675
326     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
676
327     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
677
328     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
678
329     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
679
330     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
680
331     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
681
332     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
682
333     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
683
334     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
684
335     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
685
336     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
686
337     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
687
338     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
688
339     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
689
340     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
690
341     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
691
342     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
692
343     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
693
344     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
694
345     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
695
346     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
696
347     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
697
348     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
698
349     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
699
350     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
700
351     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
701
352     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
702
353     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
703
354     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
704
355     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
705
356     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
706
357     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
707
358     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
708
359     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
709
360     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
710
361     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
711
362     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
712
363     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
713
364     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
714
365     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
715
366     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
716
367     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
717
368     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
718
369     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
719
370     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
720
371     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
721
372     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
722
373     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
723
374     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
724
375     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
725
376     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
726
377     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
727
378     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
728
379     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
729
380     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
730
381     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
731
382     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
732
383     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
733
384     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
734
385     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
735
386     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
736
387     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
737
388     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
738
389     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
739
390     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
740
391     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
741
392     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
742
393     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
743
394     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
744
395     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
745
396     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
746
397     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
747
398     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
748
399     g       going   k       the     THXMA   something       ELYIN   UKDPR   9       7       1785462784      -1048379392     8       8262979416318017536     3404158368338673664     0       v       a       b       v       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
749
400     LCZQK   f       b       think   i       k       p       EOSVQ   NULL    1780809728      3       3       NULL    -4894286895044886528    7926898294125494272     8       f       a       j       i       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
750
401     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
751
402     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
752
403     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
753
404     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
754
405     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
755
406     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
756
407     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
757
408     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
758
409     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
759
410     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
760
411     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
761
412     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
762
413     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
763
414     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
764
415     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
765
416     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
766
417     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
767
418     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
768
419     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
769
420     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
770
421     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
771
422     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
772
423     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
773
424     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
774
425     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
775
426     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
776
427     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
777
428     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
778
429     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
779
430     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
780
431     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
781
432     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
782
433     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
783
434     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
784
435     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
785
436     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
786
437     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
787
438     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
788
439     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
789
440     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
790
441     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
791
442     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
792
443     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
793
444     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
794
445     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
795
446     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
796
447     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
797
448     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
798
449     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
799
450     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
800
451     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
801
452     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
802
453     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
803
454     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
804
455     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
805
456     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
806
457     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
807
458     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
808
459     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
809
460     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
810
461     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
811
462     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
812
463     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
813
464     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
814
465     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
815
466     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
816
467     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
817
468     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
818
469     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
819
470     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
820
471     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
821
472     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
822
473     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
823
474     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
824
475     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
825
476     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
826
477     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
827
478     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
828
479     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
829
480     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
830
481     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
831
482     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
832
483     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
833
484     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
834
485     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
835
486     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
836
487     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
837
488     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
838
489     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
839
490     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
840
491     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
841
492     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
842
493     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
843
494     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
844
495     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
845
496     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
846
497     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
847
498     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
848
499     l       x       NIEKA   z       DGUAA   r       o       PRIRL   -2005336064     NULL    9       4       NULL    NULL    3575858104132173824     3       q       k       i       d       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
849
500     IVLTX   a       p       f       ODQAU   for     QFUCG   up      1       5       -1222377472     5       NULL    0       5660461781651292160     6       k       r       o       r       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
850
501     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
851
502     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
852
503     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
853
504     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
854
505     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
855
506     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
856
507     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
857
508     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
858
509     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
859
510     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
860
511     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
861
512     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
862
513     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
863
514     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
864
515     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
865
516     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
866
517     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
867
518     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
868
519     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
869
520     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
870
521     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
871
522     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
872
523     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
873
524     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
874
525     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
875
526     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
876
527     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
877
528     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
878
529     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
879
530     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
880
531     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
881
532     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
882
533     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
883
534     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
884
535     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
885
536     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
886
537     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
887
538     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
888
539     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
889
540     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
890
541     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
891
542     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
892
543     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
893
544     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
894
545     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
895
546     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
896
547     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
897
548     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
898
549     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
899
550     look    UOPZS   to      XRFER   here    and     n       h       NULL    -1025441792     9       6       -7524670552405966848    NULL    8136315676798222336     5031928158656397312     x       h       u       k       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
900
551     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
901
552     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
902
553     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
903
554     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
904
555     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
905
556     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
906
557     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
907
558     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
908
559     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
909
560     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
910
561     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
911
562     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
912
563     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
913
564     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
914
565     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
915
566     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
916
567     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
917
568     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
918
569     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
919
570     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
920
571     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
921
572     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
922
573     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
923
574     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
924
575     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
925
576     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
926
577     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
927
578     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
928
579     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
929
580     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
930
581     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
931
582     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
932
583     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
933
584     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
934
585     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
935
586     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
936
587     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
937
588     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
938
589     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
939
590     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
940
591     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
941
592     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
942
593     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
943
594     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
944
595     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
945
596     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
946
597     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
947
598     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
948
599     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
949
600     he's    LMOMV   s       did     d       have    FFRPJ   I'll    NULL    1125056512      1144717312      6       9       -8013311111975665664    8       9       b       g       x       n       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
950
601     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
951
602     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
952
603     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
953
604     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
954
605     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
955
606     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
956
607     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
957
608     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
958
609     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
959
610     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
960
611     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
961
612     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
962
613     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
963
614     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
964
615     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
965
616     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
966
617     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
967
618     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
968
619     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
969
620     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
970
621     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
971
622     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
972
623     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
973
624     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
974
625     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
975
626     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
976
627     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
977
628     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
978
629     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
979
630     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
980
631     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
981
632     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
982
633     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
983
634     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
984
635     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
985
636     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
986
637     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
987
638     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
988
639     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
989
640     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
990
641     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
991
642     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
992
643     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
993
644     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
994
645     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
995
646     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
996
647     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
997
648     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
998
649     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
999
650     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1000
651     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1001
652     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1002
653     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1003
654     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1004
655     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1005
656     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1006
657     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1007
658     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1008
659     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1009
660     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1010
661     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1011
662     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1012
663     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1013
664     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1014
665     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1015
666     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1016
667     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1017
668     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1018
669     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1019
670     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1020
671     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1021
672     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1022
673     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1023
674     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1024
675     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1025
676     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1026
677     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1027
678     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1028
679     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1029
680     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1030
681     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1031
682     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1032
683     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1033
684     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1034
685     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1035
686     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1036
687     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1037
688     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1038
689     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1039
690     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1040
691     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1041
692     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1042
693     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1043
694     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1044
695     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1045
696     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1046
697     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1047
698     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1048
699     j       g       KDTMB   about   time    but     ONPMP   k       NULL    3       5       -1228406784     NULL    5       5       1008524841554280448     z       l       t       f       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1049
700     don't   a       BJBGF   n       PKSNW   a       UJQGH   z       3       NULL    9       503250944       NULL    NULL    7       9       b       d       h       x       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1050
701     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1051
702     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1052
703     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1053
704     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1054
705     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1055
706     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1056
707     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1057
708     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1058
709     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1059
710     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1060
711     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1061
712     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1062
713     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1063
714     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1064
715     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1065
716     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1066
717     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1067
718     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1068
719     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1069
720     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1070
721     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1071
722     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1072
723     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1073
724     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1074
725     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1075
726     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1076
727     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1077
728     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1078
729     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1079
730     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1080
731     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1081
732     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1082
733     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1083
734     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1084
735     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1085
736     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1086
737     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1087
738     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1088
739     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1089
740     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1090
741     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1091
742     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1092
743     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1093
744     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1094
745     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1095
746     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1096
747     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1097
748     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1098
749     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1099
750     LBBXV   d       FCEXC   have    here    e       QSBEZ   a       2045575168      NULL    0       -1118306304     -747879013120212992     4       2       -5081467754557472768    d       n       z       s       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1100
751     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1101
752     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1102
753     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1103
754     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1104
755     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1105
756     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1106
757     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1107
758     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1108
759     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1109
760     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1110
761     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1111
762     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1112
763     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1113
764     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1114
765     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1115
766     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1116
767     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1117
768     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1118
769     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1119
770     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1120
771     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1121
772     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1122
773     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1123
774     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1124
775     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1125
776     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1126
777     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1127
778     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1128
779     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1129
780     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1130
781     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1131
782     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1132
783     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1133
784     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1134
785     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1135
786     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1136
787     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1137
788     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1138
789     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1139
790     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1140
791     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1141
792     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1142
793     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1143
794     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1144
795     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1145
796     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1146
797     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1147
798     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1148
799     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1149
800     x       k       yeah    DEDGH   HSRZA   a       h       a       -252182528      NULL    -823656448      0       NULL    105834591243206656      6274358705857232896     -5343802432851804160    q       a       t       m       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1150
801     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1151
802     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1152
803     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1153
804     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1154
805     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1155
806     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1156
807     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1157
808     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1158
809     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1159
810     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1160
811     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1161
812     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1162
813     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1163
814     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1164
815     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1165
816     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1166
817     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1167
818     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1168
819     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1169
820     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1170
821     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1171
822     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1172
823     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1173
824     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1174
825     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1175
826     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1176
827     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1177
828     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1178
829     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1179
830     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1180
831     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1181
832     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1182
833     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1183
834     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1184
835     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1185
836     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1186
837     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1187
838     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1188
839     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1189
840     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1190
841     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1191
842     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1192
843     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1193
844     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1194
845     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1195
846     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1196
847     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1197
848     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1198
849     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1199
850     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1200
851     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1201
852     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1202
853     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1203
854     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1204
855     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1205
856     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1206
857     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1207
858     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1208
859     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1209
860     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1210
861     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1211
862     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1212
863     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1213
864     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1214
865     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1215
866     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1216
867     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1217
868     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1218
869     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1219
870     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1220
871     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1221
872     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1222
873     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1223
874     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1224
875     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1225
876     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1226
877     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1227
878     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1228
879     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1229
880     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1230
881     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1231
882     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1232
883     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1233
884     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1234
885     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1235
886     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1236
887     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1237
888     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1238
889     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1239
890     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1240
891     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1241
892     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1242
893     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1243
894     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1244
895     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1245
896     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1246
897     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1247
898     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1248
899     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1249
900     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1250
901     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1251
902     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1252
903     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1253
904     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1254
905     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1255
906     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1256
907     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1257
908     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1258
909     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1259
910     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1260
911     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1261
912     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1262
913     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1263
914     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1264
915     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1265
916     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1266
917     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1267
918     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1268
919     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1269
920     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1270
921     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1271
922     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1272
923     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1273
924     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1274
925     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1275
926     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1276
927     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1277
928     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1278
929     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1279
930     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1280
931     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1281
932     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1282
933     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1283
934     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1284
935     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1285
936     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1286
937     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1287
938     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1288
939     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1289
940     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1290
941     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1291
942     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1292
943     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1293
944     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1294
945     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1295
946     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1296
947     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1297
948     z       l       t       want    c       it      JNFVU   l       641728512       NULL    1       2042888192      5       8609475112648835072     -2624472682850156544    3       i       j       s       l       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1298
949     me      just    QHENV   yes     c       and     l       oh      2036858880      -1610153984     6       339804160       NULL    5524790842876755968     4       1479713952567918592     n       r       w       s       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1299
950     DDPIW   w       your    YQZGV   d       RRVTO   mean    t       NULL    5       3       5       -4986047737452560384    NULL    8       4       n       n       t       q       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1300
951     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1301
952     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1302
953     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1303
954     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1304
955     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1305
956     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1306
957     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1307
958     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1308
959     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1309
960     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1310
961     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1311
962     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1312
963     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1313
964     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1314
965     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1315
966     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1316
967     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1317
968     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1318
969     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1319
970     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1320
971     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1321
972     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1322
973     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1323
974     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1324
975     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1325
976     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1326
977     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1327
978     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1328
979     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1329
980     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1330
981     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1331
982     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1332
983     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1333
984     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1334
985     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1335
986     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1336
987     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1337
988     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1338
989     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1339
990     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1340
991     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1341
992     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1342
993     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1343
994     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1344
995     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1345
996     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1346
997     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1347
998     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1348
999     how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1349
1000    how     what    it      SHFHO   a       out     QLDYN   got     4       -1367474176     1717829632      1892614144      8       NULL    8       -3212192434222006272    t       o       x       y       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1350
1001    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1351
1002    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1352
1003    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1353
1004    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1354
1005    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1355
1006    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1356
1007    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1357
1008    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1358
1009    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1359
1010    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1360
1011    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1361
1012    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1362
1013    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1363
1014    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1364
1015    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1365
1016    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1366
1017    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1367
1018    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1368
1019    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1369
1020    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1370
1021    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1371
1022    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1372
1023    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1373
1024    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1374
1025    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1375
1026    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1376
1027    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1377
1028    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1378
1029    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1379
1030    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1380
1031    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1381
1032    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1382
1033    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1383
1034    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1384
1035    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1385
1036    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1386
1037    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1387
1038    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1388
1039    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1389
1040    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1390
1041    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1391
1042    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1392
1043    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1393
1044    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1394
1045    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1395
1046    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1396
1047    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1397
1048    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1398
1049    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1399
1050    q       ATAUU   ZVWAH   she     GMFLV   now     time    KFQHN   0       7       1       584384512       NULL    -7860751674598490112    7020548869117181952     -8843943768248811520    j       t       x       n       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1400
1051    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1401
1052    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1402
1053    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1403
1054    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1404
1055    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1405
1056    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1406
1057    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1407
1058    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1408
1059    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1409
1060    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1410
1061    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1411
1062    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1412
1063    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1413
1064    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1414
1065    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1415
1066    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1416
1067    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1417
1068    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1418
1069    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1419
1070    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1420
1071    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1421
1072    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1422
1073    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1423
1074    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1424
1075    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1425
1076    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1426
1077    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1427
1078    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1428
1079    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1429
1080    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1430
1081    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1431
1082    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1432
1083    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1433
1084    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1434
1085    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1435
1086    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1436
1087    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1437
1088    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1438
1089    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1439
1090    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1440
1091    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1441
1092    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1442
1093    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1443
1094    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1444
1095    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1445
1096    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1446
1097    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1447
1098    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1448
1099    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1449
1100    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1450
1101    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1451
1102    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1452
1103    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1453
1104    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1454
1105    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1455
1106    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1456
1107    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1457
1108    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1458
1109    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1459
1110    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1460
1111    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1461
1112    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1462
1113    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1463
1114    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1464
1115    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1465
1116    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1466
1117    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1467
1118    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1468
1119    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1469
1120    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1470
1121    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1471
1122    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1472
1123    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1473
1124    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1474
1125    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1475
1126    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1476
1127    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1477
1128    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1478
1129    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1479
1130    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1480
1131    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1481
1132    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1482
1133    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1483
1134    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1484
1135    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1485
1136    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1486
1137    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1487
1138    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1488
1139    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1489
1140    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1490
1141    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1491
1142    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1492
1143    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1493
1144    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1494
1145    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1495
1146    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1496
1147    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1497
1148    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1498
1149    XLPAD   to      w       my      p       OSBVB   could   do      NULL    NULL    8       -527302656      NULL    221802281647996928      5       -6569907431403421696    n       a       z       s       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1499
1150    XYGKA   g       z       u       what    w       right   back    -547028992      NULL    1       -307888128      9       8       2       -1096063559311294464    r       k       w       s       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1500
1151    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1501
1152    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1502
1153    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1503
1154    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1504
1155    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1505
1156    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1506
1157    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1507
1158    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1508
1159    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1509
1160    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1510
1161    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1511
1162    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1512
1163    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1513
1164    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1514
1165    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1515
1166    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1516
1167    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1517
1168    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1518
1169    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1519
1170    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1520
1171    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1521
1172    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1522
1173    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1523
1174    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1524
1175    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1525
1176    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1526
1177    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1527
1178    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1528
1179    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1529
1180    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1530
1181    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1531
1182    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1532
1183    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1533
1184    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1534
1185    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1535
1186    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1536
1187    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1537
1188    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1538
1189    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1539
1190    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1540
1191    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1541
1192    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1542
1193    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1543
1194    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1544
1195    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1545
1196    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1546
1197    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1547
1198    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1548
1199    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1549
1200    PQKMB   l       if      HQDFN   good    don't   LFFMZ   MILQE   245104640       7       1413349376      2078277632      6       -6342194175244500992    2       -5368572230802341888    f       e       n       e       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1550
1201    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       then    for     mean    or      1       1580269568      2       203030528       q       l       j       g
 
1551
1202    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       i       it's    m       v       -676855808      NULL    -206831616      9       w       l       i       e
 
1552
1203    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       f       XKKJE   YKGQU   as      1845362688      890634240       0       614006784       s       e       c       g
 
1553
1204    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       IKNNE   j       f       think   NULL    1224802304      -1726349312     1042415616      l       r       q       z
 
1554
1205    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       i       in      IVUDA   l       NULL    8       722403328       -1575616512     x       y       s       e
 
1555
1206    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       KPAKM   going   did     s       -546439168      -1831010304     -927596544      0       r       t       f       j
 
1556
1207    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       MBUIV   j       would   JLDIQ   4       0       8       1       k       f       p       d
 
1557
1208    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       g       b       MWWDL   SXJXE   NULL    6       1044643840      -147849216      x       r       f       z
 
1558
1209    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       b       w       w       I       5       1113260032      1543372800      0       z       m       j       t
 
1559
1210    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       VTHBJ   me      time    SJFXG   -346161152      5       2       2       o       d       n       i
 
1560
1211    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       she     CMVVT   a       ECMXC   NULL    6       343212032       1       g       o       z       w
 
1561
1212    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       n       I       GWBAR   c       NULL    NULL    145293312       1310588928      k       b       e       i
 
1562
1213    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       AXUIE   well    PZYDQ   j       803667968       2       6       30146560        p       c       p       c
 
1563
1214    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       k       LLXAX   DEHVX   c       -1296171008     3       9       4       f       z       m       o
 
1564
1215    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       JFLTH   now     PRZKF   your    1       5       3       165543936       y       w       w       c
 
1565
1216    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       I'm     here    UVLHW   LZUTF   1       2057764864      1721303040      7       v       m       q       q
 
1566
1217    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       for     now     g       JIOQQ   NULL    1057685504      9       48693248        c       n       o       v
 
1567
1218    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       POCSJ   CSLQH   have    OSORI   1308229632      4       7       2       b       k       p       n
 
1568
1219    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       f       could   FMGWT   d       0       8       -1655504896     960036864       h       b       m       c
 
1569
1220    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       o       CDBIP   f       PCYZD   1       9       1726480384      -1374158848     c       v       i       r
 
1570
1221    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       u       s       NVRNI   now     NULL    1008664576      0       7       m       u       n       d
 
1571
1222    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       didn't  CQJTA   or      UOJKF   -535429120      7       -436404224      7       w       i       x       d
 
1572
1223    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       think   out     r       her     6       175702016       -1706557440     9       m       d       l       c
 
1573
1224    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       y       e       be      YNTKM   -636157952      5       -2124283904     441712640       h       o       d       f
 
1574
1225    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       good    d       see     d       NULL    -224919552      1468399616      233046016       k       m       q       w
 
1575
1226    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       like    to      IYEYL   h       -619708416      1998061568      0       1727856640      c       c       v       v
 
1576
1227    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       LUHVT   w       the     at      -53673984       -1210777600     0       -392560640      f       b       e       d
 
1577
1228    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       z       j       come    NRPYL   NULL    NULL    0       1276772352      d       o       s       f
 
1578
1229    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       QLEQY   can     was     i       884998144       4       0       -1144193024     l       s       e       l
 
1579
1230    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       the     u       HRDTD   FEOYM   568590336       NULL    -1295122432     -1135607808     e       q       r       a
 
1580
1231    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       come    have    EVELJ   x       NULL    NULL    1       3       n       k       z       x
 
1581
1232    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       TJBKE   PMJQF   XYLOJ   t       -911474688      0       522780672       -1328414720     k       j       e       j
 
1582
1233    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       back    and     MTBHB   really  -1817444352     0       641466368       1196490752      d       g       w       m
 
1583
1234    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       b       k       now     didn't  -373489664      NULL    1261895680      5       v       e       m       u
 
1584
1235    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       YMUKI   back    who     g       NULL    4       -754057216      1       e       c       h       u
 
1585
1236    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       VXBUY   KSHJR   d       y       -1116078080     -250740736      8       0       m       d       w       w
 
1586
1237    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       n       d       AXSEX   f       1881341952      8       -1745289216     3       q       o       s       o
 
1587
1238    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       RJOYA   r       as      m       NULL    NULL    0       7       s       a       k       m
 
1588
1239    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       to      o       k       b       NULL    NULL    0       7       c       q       c       q
 
1589
1240    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       k       b       HYJLZ   m       NULL    9       507445248       236847104       f       a       t       x
 
1590
1241    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       r       LPZLN   x       r       6       0       9       -1585446912     z       f       b       a
 
1591
1242    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       w       i       SMQXK   XGGXU   8       NULL    1585184768      60227584        g       b       x       c
 
1592
1243    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       YDMTV   PMFHR   OHYEQ   p       NULL    NULL    8       2       s       f       z       w
 
1593
1244    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       there   really  j       on      6       NULL    9       -1382875136     k       q       q       t
 
1594
1245    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       j       p       CHHGC   about   2004353024      -2108555264     848691200       671875072       f       e       j       k
 
1595
1246    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       r       j       p       g       NULL    NULL    3       8       a       g       b       c
 
1596
1247    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       why     CIMFU   g       IKNGE   NULL    NULL    8       0       c       g       y       h
 
1597
1248    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       a       from    come    FEIZF   5       NULL    1998651392      7       q       e       x       e
 
1598
1249    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       x       RIFZM   did     IJWCR   4       1067843584      3       5       q       e       p       a
 
1599
1250    q       ANRZQ   because he      t       PEWCD   o       t       NULL    1514078208      2       1360723968      NULL    6       6       -3826652308381368320    g       a       p       d       can     p       see     d       -1457324032     1091960832      1050804224      664535040       g       o       d       z
 
1600
Dropping test database on MySQL...
 
1601
DROP SCHEMA drizzledump_migrate_test;