Обсуждение: trouble with query

Поиск
Список
Период
Сортировка

trouble with query

От
Luis Amigo
Дата:
we are getting:
ERROR:  fmgr_info: function 272362616: cache lookup failed
while executing attached query, may someone help us.
Thanks in advance
SELECT
    o_year,
    sum(CASE
        WHEN nation='BRAZIL'
        THEN volume
        ELSE 0
    END)/sum(volume) AS mkt_share
FROM(
    SELECT
        EXTRACT(YEAR FROM orders.orderdate) AS o_year,
        lineitem.extendedprice*(1-lineitem.discount) AS volume,
        n2.nation.name AS nation
    FROM
        part,
        supplier,
        lineitem,
        orders,
        customer,
        nation n1,
        nation n2,
        region
    WHERE
        part.partkey=lineitem.partkey
        AND supplier.suppkey=lineitem.suppkey
        AND lineitem.orderkey=orders.orderkey
        AND orders.custkey=customer.custkey
        AND customer.nationkey=n1.nation.nationkey
        AND n1.nation.regionkey=region.regionkey
        AND region.name='AMERICA'
        AND supplier.nationkey=n2.nation.nationkey
        AND orders.orderdate BETWEEN '1995/01/01' AND '1996/12/31'
        AND part.type='ECONOMY ANODIZED STEEL'
    ) AS all_nations
GROUP BY
    o_year
ORDER BY
    o_year;

Re: trouble with query

От
Tom Lane
Дата:
Luis Amigo <lamigo@atc.unican.es> writes:
> we are getting:
> ERROR:  fmgr_info: function 272362616: cache lookup failed
> while executing attached query, may someone help us.

Possibly a bug, but the query alone is useless.  Can't investigate
without a complete example (table declarations and sample data,
not just query; preferably in the form of a psql script).  Please
see the bug reporting guidelines in the User's Guide.

            regards, tom lane

Re: trouble with query

От
Luis Amigo
Дата:
>
>
> Possibly a bug, but the query alone is useless.  Can't investigate
> without a complete example (table declarations and sample data,
> not just query; preferably in the form of a psql script).  Please
> see the bug reporting guidelines in the User's Guide.
>
>                         regards, tom lane

Sorry, I almost forget, I think this shell may work, u have to change
path
createdb tpch
createlang 'plpgsql' tpch
psql -c '\i tables'
\i '/path/region.sql'
\i '/path/nation.sql'
\i '/path/part.sql'
\i '/path/supplier.sql'
\i '/path/customer.sql'
\i '/path/partsupp.sql'
\i '/path/orders.sql'
\i '/path/lineitem.sql'
copy region from'/path/region.dat' with NULL as 'NULL';
copy nation from'/path/nation.dat' with NULL as 'NULL';
copy part from'/path/part.dat' with NULL as 'NULL';
copy supplier from'/path/supplier.dat' with NULL as 'NULL';
copy customer from'/path/customer.dat' with NULL as 'NULL';
copy partsupp from'/path/partsupp.dat' with NULL as 'NULL';
copy orders from'/path/orders.dat' with NULL as 'NULL';
copy lineitem from'/path/lineitem.dat' with NULL as 'NULL';

Re: trouble with query

От
Tom Lane
Дата:
Luis Amigo <lamigo@atc.unican.es> writes:
> I send u table declarations and a small part of data must be copied with

Okay, I see the problem: you are referring to, eg, n2.nation.name where
you should just have written n2.name.

It's a bug that this is not rejected...

            regards, tom lane

Re: trouble with query

От
Luis Amigo
Дата:
Tom Lane wrote:

> Possibly a bug, but the query alone is useless.  Can't investigate
> without a complete example (table declarations and sample data,
> not just query; preferably in the form of a psql script).  Please
> see the bug reporting guidelines in the User's Guide.
>

I send u table declarations and a small part of data must be copied with
NULL as 'NULL'
it is like TPC-H
u need to create pl/pgsql

The query objetive is to determine the market share of a given nation
within a given region has changed over two years for a given part type.
Thanks in advance and regards Tom
CREATE TABLE Customer (
    Custkey INTEGER,
    Name CHAR(25),
    Address CHAR(40),
    Nationkey INTEGER,
    Phone CHAR(15),
    Acctbal NUMERIC(12,2),
    Mktsegment CHAR(10),
    Comment CHAR(117),
    PRIMARY KEY (Custkey),
    FOREIGN KEY (Nationkey) REFERENCES Nation
    ON UPDATE CASCADE
    ON DELETE CASCADE
);
CREATE TABLE Lineitem (
    Orderkey INTEGER,
    Partkey INTEGER,
    Suppkey INTEGER,
    Linenumber INTEGER,
    Quantity NUMERIC(12,2),
    Extendedprice NUMERIC(12,2),
    Discount NUMERIC(12,2),
    Tax NUMERIC(12,2),
    Returnflag CHAR(1),
    Linestatus CHAR(1),
    Shipdate DATE,
    Commitdate DATE,
    Receiptdate DATE,
    Shipinstruct CHAR(25),
    Shipmode CHAR(10),
    Comment CHAR(44),
    PRIMARY KEY (Orderkey,Linenumber),
    FOREIGN KEY (Orderkey) REFERENCES Orders
    ON UPDATE CASCADE
    ON DELETE CASCADE,
    FOREIGN KEY (Partkey) REFERENCES Part
    ON UPDATE CASCADE
    ON DELETE CASCADE,
    FOREIGN KEY (Suppkey) REFERENCES Supplier
    ON UPDATE CASCADE
    ON DELETE CASCADE
);

CREATE FUNCTION calcula_extendedprice() RETURNS opaque AS
'DECLARE
    item INTEGER;
    pieza INTEGER;
    cantidad lineitem.quantity%TYPE;
    precio part.retailprice%TYPE;
    seleccion RECORD;
BEGIN
    item:=NEW.linenumber;
    pieza:=NEW.partkey;
    cantidad:=NEW.quantity;
    SELECT INTO seleccion retailprice FROM part WHERE partkey=pieza;
    precio:=seleccion.retailprice;
    NEW.extendedprice=(cantidad*precio);
      RETURN NEW;
END;'
LANGUAGE 'plpgsql';

CREATE FUNCTION calcula_orderstatus() RETURNS opaque AS
'DECLARE
    pedidos INTEGER;
    efes RECORD;
    oes RECORD;
    seleccion RECORD;
    precio Orders.Totalprice%TYPE;
BEGIN
    pedidos:=NEW.Orderkey;
    SELECT INTO seleccion COUNT(*),sum(extendedprice*(1+tax)*(1-discount)) AS suma FROM lineitem WHERE
orderkey=pedidos;
    SELECT INTO efes COUNT(*) FROM Lineitem WHERE Orderkey=pedidos and Linestatus=''F'';
    SELECT INTO oes COUNT(*) FROM Lineitem WHERE Orderkey=pedidos and Linestatus=''O'';
    precio:=seleccion.suma;
    IF seleccion.count=efes.count THEN
        UPDATE Orders SET Orderstatus=''F'',Totalprice=precio
        WHERE Orderkey=pedidos;
        ELSE IF seleccion.count=oes.count THEN
            UPDATE Orders SET Orderstatus=''O'',Totalprice=precio
            WHERE Orderkey=pedidos;
            ELSE
                UPDATE Orders SET Orderstatus=''P'',Totalprice=precio
                WHERE Orderkey=pedidos;
        END IF;
    END IF;

      RETURN NEW;
END;'
LANGUAGE 'plpgsql';

CREATE TRIGGER trigger_orderstatus
AFTER INSERT ON Lineitem FOR EACH ROW EXECUTE PROCEDURE calcula_orderstatus();

CREATE TRIGGER trigger_extendedprice
BEFORE INSERT ON Lineitem FOR EACH ROW EXECUTE PROCEDURE calcula_extendedprice();
CREATE TABLE Nation (
    Nationkey INTEGER,
    Name CHAR(25),
    Regionkey INTEGER,
    Comment CHAR(152),
    PRIMARY KEY (Nationkey),
    FOREIGN KEY (Regionkey) REFERENCES Region
        ON UPDATE CASCADE
        ON DELETE CASCADE
);
CREATE TABLE Orders (
    Orderkey INTEGER,
    Custkey INTEGER,
    Orderstatus CHAR(1),
    Totalprice Numeric(12,2),
    Orderdate DATE,
    Orderpriority CHAR(15),
    Clerk CHAR(15),
    Shippriority INTEGER,
    Comment CHAR(79),
    PRIMARY KEY (Orderkey),
    FOREIGN KEY (Custkey) REFERENCES Customer
    ON UPDATE CASCADE
    ON DELETE CASCADE
);
CREATE TABLE Part (
    Partkey INTEGER,
    Name CHAR(55),
    Mfgr CHAR(25),
    Brand CHAR(10),
    Type CHAR(25),
    Size INTEGER,
    Container CHAR(10),
    Retailprice NUMERIC(12,2),
    Comment CHAR(23),
    PRIMARY KEY (Partkey)
);
CREATE FUNCTION calcula_retailprice() RETURNS opaque AS
 'DECLARE
codigo INTEGER;
BEGIN
    codigo:=NEW.Partkey;
    UPDATE part SET retailprice=((90000+((part.partkey/10)%20001)+100*(part.partkey%1000))/100)
    WHERE Partkey=codigo;
      RETURN NULL;
END;'
LANGUAGE 'plpgsql';
CREATE TRIGGER trigger_retailprice
AFTER INSERT ON part FOR EACH ROW EXECUTE PROCEDURE calcula_retailprice();
CREATE TABLE Partsupp (
    Partkey INTEGER,
    Suppkey INTEGER,
    Availqty INTEGER,
    Supplycost NUMERIC(12,2),
    Comment CHAR(199),
    PRIMARY KEY (Partkey,Suppkey),
    FOREIGN KEY (Partkey) REFERENCES Part
    ON UPDATE CASCADE
    ON DELETE CASCADE,
    FOREIGN KEY (Suppkey) REFERENCES Supplier
    ON UPDATE CASCADE
    ON DELETE CASCADE

);
CREATE TABLE region (
Regionkey INTEGER,
Name CHAR(25),
Comment CHAR(152),
PRIMARY KEY (Regionkey)
);
CREATE TABLE Supplier (
    Suppkey INTEGER,
    Name CHAR(25),
    Address CHAR(40),
    Nationkey INTEGER,
    Phone CHAR(15),
    Acctbal NUMERIC(12,2),
    Comment CHAR(101),
    PRIMARY KEY (Suppkey),
    FOREIGN KEY (Nationkey) REFERENCES Nation
    ON UPDATE CASCADE
    ON DELETE CASCADE
);
0    Customer#000000000    `7)g!+L[[g?Vvit    15    25-648-116-1683    8324.19    MACHINERY    fluffy warhorses across
thedogged Tiresias' may run busily beside the brave sauternes -- 
1    Customer#000000001    ,2pO$MhbUm"<Ab5Us;&I7&    10    20-829-872-2806    5215.47    MACHINERY    sly,final courts
atthe regular epitaphs mu 
2    Customer#000000002    oFB`lV]~Az>Bd9)@ 1Y;{]>Pqw[0>o    23    33-927-941-4168    8776.98    HOUSEHOLD    always
boldTiresias' atop the even,quiet asymptotes was alongside of the ideas ? 
3    Customer#000000003    8hZK[F8$(%Xh+"|&ML<9.RRBz|Rm}{Xt    12    22-194-835-2403    9440.14    BUILDING    silently
closeexcuses serve according to the entic 
4    Customer#000000004    )es!257L4q92SE+[0FW+-[RBKv!,Xo+2    8    18-872-462-3318    3438.01    HOUSEHOLD    thinly
blithehockey players can mold ? carefully final dolphins  
5    Customer#000000005    vL/R*PB3p3u*r[9    11    21-417-138-2833    624.15    AUTOMOBILE    permanent waters
accordingto the brave Tiresias' will have to hinder fluffily past the regula 
6    Customer#000000006    `C0%?BgJB-$3@.w4aXw{    21    31-319-278-8418    5309.55    HOUSEHOLD    closely thin pains
afterthe sheaves play up the courts : 
7    Customer#000000007    mHns%)rp'^&/88^`g_Hp=.Yh!ZKjGKH|shml.j]e    20    30-572-828-8885    6901.18    MACHINERY
alwayssilent notornis ougth to cajole fluffily ironic,quiet sheaves -- sheaves may haggle ; 
8    Customer#000000008    hgGED6z-QG    4    14-454-235-6337    -730.95    FURNITURE    warhorses after the
regular,stealthybraids might sleep might slee the blithe,enticing dependencies ? 
9    Customer#000000009    ^VShaAnA<a:~fijyp%!TXJA*$c);I'nk )f    2    12-361-817-6440    2614.71    HOUSEHOLD
quicklyslow theodolites might wake sometimes blithe theodolites  
10    Customer#000000010    V(+5a^6 0sYx7DmdJt/gS{ZP7jHClR    21    31-654-999-8554    2712.34    HOUSEHOLD    even
plateletsshall maintain outsid 
11    Customer#000000011    o&0(.n6}WI#rf8RgPx<,F@VTE:nQ~|Q=+lk    20    30-423-982-9683    2410.88    BUILDING
quickfrays above the dugouts need to breach boldly slyly  
12    Customer#000000012    U>+uK$<w'O;%Sa&)EB7~q^mV:6"".OkfgYo    20    30-964-912-7769    7969.59    FURNITURE
carefullyquiet instructions promise alongside of the quick,dogge 
13    Customer#000000013    =!^;b.hBP=R^(vunIaw@    3    13-455-888-1856    601.97    MACHINERY    enticing platelets
nodthinly quiet,ruthless escapades ; finally ruthless depths finally ruthless depth eat ? 
14    Customer#000000014    6"0-45Uk[:jX9ho&S3vvgI0gzyJ2yKD;N^.    10    20-791-306-1429    1084.40    MACHINERY
slowlysilent notornis might play silent frets : hockey players must have to sleep ironic foxes : brave dolphins up  
15    Customer#000000015    /E8DT6`XOeyrD,UqN%xDU>XS?Up    23    33-276-862-4524    175.80    AUTOMOBILE
careful,quietwarthogs upon the tithes run always before the doggedly enticing d 
16    Customer#000000016    bKUzY!AI]jfO6a=_Oy9QF#BZu    19    29-820-795-7670    -73.33    MACHINERY    quick
Tiresias'x_ray slowly quietly enticing instructions ! even ideas cajole  cajole 
17    Customer#000000017    yAkg.H[JE,!;@I[IK    23    33-832-399-7907    9531.10    HOUSEHOLD    silent instructions
besidesthe brave pinto beans try to grow bravely silent frets ! 
18    Customer#000000018    LEUH4C~1Ze)4OF;as ?+q-l@Yq]_"C    9    19-127-950-8411    5897.16    HOUSEHOLD    fluffily
permanentsentiments play . idle,d 
19    Customer#000000019    wORG`6&yx!tGCHK_Z    9    19-943-650-2940    -759.67    AUTOMOBILE    evenly fluffy braids
promisefrets ; furious,thin dugouts will have to unwind pe 
20    Customer#000000020    ogC_=Wpo^g.4    16    26-516-999-6568    4537.32    HOUSEHOLD    close,dogged sauternes
breachfluffily around the quickly silent foxes 
21    Customer#000000021    |'elSTHf>v@6k]Oe=1lM/S    7    17-630-793-7701    4956.77    AUTOMOBILE    enticing,final
braidsmaintain never despite the bold,perm 
22    Customer#000000022    "*@5x,?6hX[p    3    13-867-261-3832    4683.68    FURNITURE    platelets atop the
permanent 
23    Customer#000000023    [-?Dh5~'Fj:K_-<5BLNZz)    1    11-828-656-6339    5253.67    HOUSEHOLD    frays among the
regularlythin ideas could cajole quickly of the evenly sly orbits . 
24    Customer#000000024    |)-b+J=Dnu!?1N36;'#AGF|Gx-PFjB    21    31-625-809-3789    3191.99    FURNITURE    idle
forgesthrough the quiet somas could i 
25    Customer#000000025    Qt YXB0@AW<v10G]Mh+z)0j.WVh    3    13-825-758-2977    9267.24    MACHINERY     enticing
sheavesboost closely regular excuses . 
26    Customer#000000026    OTOn&,@;Hv}2@[1)Hi3@wJ/.`(9    21    31-823-964-6358    5098.91    MACHINERY    regularly
idlemultipliers will poach ! 
27    Customer#000000027    y+<XbOQ96ra76t~L]e0/>L^zQW]sqh5dHEN%-w'[    13    23-916-585-6363    2926.04    FURNITURE
quiet,silent warhorses wake never ? 
28    Customer#000000028    '~DI#q~]ix;`$eZUuvR~Z1-C&5he?uR})_-    16    26-939-577-5361    -933.78    BUILDING
sheavesbeneath the stealthy Tiresias' unwind unwin,close sentiments ! boldly ironic epitaphs from the 
29    Customer#000000029    sXX%[6]:`0=e> m0#6:Ir{    11    21-721-312-5969    8078.16    FURNITURE    fluffily quiet
Tiresias'nag ? 
30    Customer#000000030    ~,` }PBFgA*m#;x)q    11    21-135-984-2873    3164.63    AUTOMOBILE    enticing,furious
foxespoach ? slow, 
31    Customer#000000031    @k{u?du,T/x=2/WZd    19    29-190-687-1069    775.17    BUILDING    enticing somas hinder
upthe busy  
32    Customer#000000032    ns[[kbSbn2S+yx:GX^se$~i*"wo`Dv    4    14-857-398-6769    7900.24    MACHINERY    orbits
cajolequietly : 
33    Customer#000000033    6l%u];Zr`dU|K1]OD    1    11-784-566-9766    2198.58    MACHINERY    tithes in place of the
evenplatelet 
34    Customer#000000034    6Dl:LMpDIt5#WOb    17    27-703-312-3792    2328.70    BUILDING    pains will engage slyly
thinfoxes ; 
35    Customer#000000035    4Zbs.v=[a,*r+B`QACQL0:^$xEx(LR6b&r <D    15    25-947-348-1004    7073.13    HOUSEHOLD
patternsx_ray from the finally slow braids careful,fluffy orbits toward the  ruthless escapad 
36    Customer#000000036     ;I,x3or1RVz"o{    12    22-666-667-2186    3160.78    BUILDING    blithe,enticing
theodolitesbefore the quickly final patterns need to x_ray through the closely silent 
37    Customer#000000037    OBG10_q+Q@H     16    26-772-547-9789    9682.49    FURNITURE    multipliers could x_ray
never! evenly  forges after the sometimes enticing realms believe fur 
38    Customer#000000038    v|5E@qWFZL    11    21-136-772-8914    7955.95    HOUSEHOLD    sly,final pinto beans in
placeof the daringly daring patterns impress within the ruthless,ent 
39    Customer#000000039    1UWnF9e[_R$+ a+'=@F*{wN$QjM    20    30-322-686-9920    9218.72    AUTOMOBILE    finally
daringfrays do detect silently furious exc 
40    Customer#000000040    4a@}&:5!UyN0TXK&7O/}v"rydhghAx}`    15    25-168-489-1311    4622.41    BUILDING    finally
stealthyinstructions shall have to impress quietly after the attainment 
41    Customer#000000041    ~{w7Gq8& 5d7+)f    8    18-619-393-2974    -328.95    FURNITURE    waters do doubt into the
quietdinos 
42    Customer#000000042    I7]_%BE%-r# ve/KD4S2B9'fA?IrO>D?}ff    20    30-991-276-6733    -517.77    HOUSEHOLD
sly,slowsauternes should are quietly instead of the thinly idle tithes Tiresias' behind the frets unwind silently p 
43    Customer#000000043    ?C@/6kv-Sbt3jOC    14    24-219-499-8865    6627.88    AUTOMOBILE    stealthy,regular
theodolitesserve . final waters could hang beneath the blithe,thin foxes dogged excu 
44    Customer#000000044    3@W0si:DEw_}nK|    10    20-981-524-5471    3285.59    HOUSEHOLD    stealthy decoys by the
furiouspatterns by the furious pattern promise pains --  
45    Customer#000000045    T"ed0]PL)mA:Q'Zv[o)*:I?yrI:XD4mB8l|    7    17-113-963-5952    8182.60    HOUSEHOLD
careful,fluffydecoys between the mu 
46    Customer#000000046    j-D9-Kda3~    21    31-590-111-4669    51.08    AUTOMOBILE    dogged multipliers until the
ironicallyironic foxes might was so 
47    Customer#000000047    <%qB]8flMa*WB>!dMjX5%6    13    23-293-636-1759    3403.04    HOUSEHOLD    even sauternes
bythe slyly regular pearls can dazzle at the orbits at the orbit 
48    Customer#000000048    djT!X>- "-3T>>1MFhtzR9jUleHL~}MS    2    12-905-375-1404    2236.13    MACHINERY    busy
plateletsdespite the brave asymptotes unwind finally according to the finally thi 
49    Customer#000000049    ?9mx<413jy    2    12-710-694-4941    6478.65    MACHINERY    fluffy forges despite the
multiplierswill nag permanent,even Tir 
50    Customer#000000050    4q7(1tYA_{YS    1    11-244-596-2141    6002.04    HOUSEHOLD    bold,final dinos kindle
ruthlessly; 
51    Customer#000000051    bK07|<H$=|jX    10    20-841-375-2156    5213.94    MACHINERY    furious,quick instructions
inplace of the warhorses must have to 
52    Customer#000000052    p+wOFxN(jp    16    26-318-909-9879    7637.53    HOUSEHOLD    silently even frays lose .
53    Customer#000000053    =w[-(lckjocl    12    22-751-645-8490    7204.73    AUTOMOBILE    dogged,brave multipliers
musthave to x_ray carefully enticing,quiet hockey play 
54    Customer#000000054    Zz)g_q/s^>W!xLs7U NPxcs]U    21    31-149-347-6620    2466.83    FURNITURE    regular
braidsof the stealthy sheaves affix dinos  
55    Customer#000000055    x.o#$Vxv7KCE#o{wt<NH    17    27-759-496-7830    4402.42    HOUSEHOLD    blithely furious
somasintegrate enticingly after the ruthless,blithe bli 
56    Customer#000000056    >+#8}#Oy);>Z|2O57    17    27-880-979-9781    9886.51    HOUSEHOLD    evenly enticing
notorniswill eat depths . 
57    Customer#000000057    u?]c|Y!&OwO9H>p+$    22    32-164-553-4397    1344.29    HOUSEHOLD    slow,fluffy waters
insidethe regular,ironi 
58    Customer#000000058    |;{*cw}g1[-.    5    15-493-463-5245    1075.63    AUTOMOBILE    sauternes could have to
cajol
59    Customer#000000059    'v3lxSF3{G    6    16-312-752-5014    -829.18    MACHINERY    busy instructions run quick
pintobeans . brave dugouts before the furious asymptotes believe during the waters ; ev 
0    10    2    1    12    NULL    0.01    0.05    N    O    09/18/1995    09/13/1995    09/18/1995    COLLECT COD
AIR    thin sheaves upon the ,brave 
0    69    0    2    6    NULL    0.07    0.08    N    O    09/17/1995    07/23/1995    09/17/1995    COLLECT COD
AIR   careful,blithe frets under th 
0    30    0    3    10    NULL    0.09    0.07    N    O    08/31/1995    09/05/1995    08/31/1995    COLLECT COD
RAIL   regular,ironi 
0    43    2    4    29    NULL    0.10    0.03    N    O    09/06/1995    08/10/1995    09/06/1995    NONE    TRUCK
regular,bravesheaves 
0    19    1    5    25    NULL    0.06    0.03    N    O    07/09/1995    07/20/1995    07/09/1995    TAKE BACK RETURN
  SHIP    theodolite 
0    20    3    6    37    NULL    0.01    0.03    N    O    09/15/1995    07/17/1995    09/15/1995    TAKE BACK RETURN
  MAIL    closely furious pains must have to bo 
1    0    0    1    34    NULL    0.08    0.07    N    O    03/01/1998    04/25/1998    03/01/1998    COLLECT COD
FOB   patterns beside  
2    0    0    1    27    NULL    0.04    0.07    N    O    12/18/1997    10/14/1997    12/18/1997    TAKE BACK RETURN
 REG AIR    bravely quick dinos woul 
2    42    3    2    19    NULL    0.03    0.00    N    O    11/02/1997    11/16/1997    11/02/1997    DELIVER IN
PERSON   RAIL    quiet  han 
2    24    0    3    21    NULL    0.09    0.02    N    O    08/28/1997    11/04/1997    08/28/1997    NONE    AIR
doggedlydaring foxes will poach 
2    16    1    4    7    NULL    0.08    0.02    N    O    08/25/1997    09/29/1997    08/25/1997    COLLECT COD
TRUCK   frets shall have 
2    45    3    5    23    NULL    0.03    0.08    N    O    11/30/1997    10/04/1997    11/30/1997    TAKE BACK RETURN
  REG AIR    slow,brave hockey players w 
2    0    0    6    48    NULL    0.09    0.05    N    O    09/21/1997    10/06/1997    09/21/1997    TAKE BACK RETURN
 SHIP    idle,stealthy 
3    30    1    1    22    NULL    0.09    0.05    N    O    07/12/1998    08/04/1998    07/12/1998    NONE    TRUCK
foxesshould have to sleep  
4    0    3    1    44    NULL    0.10    0.00    R    F    04/18/1992    04/24/1992    04/18/1992    COLLECT COD
AIR   blithely thin sauternes except the gifts 
4    10    3    2    8    NULL    0.07    0.02    R    F    05/22/1992    04/04/1992    05/22/1992    DELIVER IN PERSON
  REG AIR    bold,enticing depths unw 
4    50    0    3    10    NULL    0.06    0.00    R    F    03/19/1992    04/08/1992    03/19/1992    DELIVER IN
PERSON   AIR    ruthlessly si 
5    74    1    1    32    NULL    0.05    0.05    N    O    09/03/1998    07/26/1998    09/03/1998    TAKE BACK RETURN
  SHIP    final,ruthless waters without the slow,sile 
5    36    1    2    41    NULL    0.09    0.04    N    O    07/24/1998    08/02/1998    07/24/1998    TAKE BACK RETURN
  RAIL    quiet platele 
5    10    2    3    9    NULL    0.01    0.01    N    O    10/19/1998    07/23/1998    10/19/1998    NONE    REG AIR
stealthily furio 
5    22    2    4    24    NULL    0.03    0.06    N    O    09/25/1998    09/04/1998    09/25/1998    DELIVER IN
PERSON   AIR    close,even foxes sinc 
5    12    0    5    16    NULL    0.10    0.01    N    O    08/07/1998    09/12/1998    08/07/1998    NONE    RAIL
furioussomas impress 
6    32    3    1    8    NULL    0.04    0.07    A    F    07/28/1992    07/26/1992    07/28/1992    TAKE BACK RETURN
 SHIP    realms into t 
6    59    3    2    8    NULL    0.09    0.08    A    F    09/02/1992    07/03/1992    09/02/1992    COLLECT COD
SHIP   sentiments impress never 
7    12    2    1    45    NULL    0.08    0.02    N    O    09/25/1995    11/09/1995    09/25/1995    DELIVER IN
PERSON   AIR    blithe realms can  
7    0    0    2    7    NULL    0.02    0.05    N    O    12/18/1995    11/10/1995    12/18/1995    COLLECT COD
TRUCK   permanent,blithe escapades need to ma 
7    4    2    3    11    NULL    0.05    0.04    N    O    09/20/1995    12/07/1995    09/20/1995    DELIVER IN PERSON
  MAIL    closely bold forges among the 
7    67    1    4    10    NULL    0.06    0.03    N    O    12/29/1995    11/19/1995    12/29/1995    TAKE BACK RETURN
  MAIL    careful,quick fo 
7    75    2    5    26    NULL    0.05    0.03    N    O    10/30/1995    11/29/1995    10/30/1995    COLLECT COD
AIR   daring,busy asymptotes sublate furiusly  
7    28    3    6    46    NULL    0.01    0.00    N    O    10/28/1995    11/17/1995    10/28/1995    COLLECT COD
FOB   pains might p 
32    0    0    1    13    NULL    0.08    0.04    R    F    09/16/1994    08/09/1994    09/16/1994    TAKE BACK RETURN
  SHIP    thin asymptotes since the pat 
32    12    2    2    48    NULL    0.03    0.07    R    F    10/27/1994    08/10/1994    10/27/1994    NONE    TRUCK
enticingly final warthogs into the ir 
32    11    3    3    35    NULL    0.03    0.08    R    F    10/03/1994    08/19/1994    10/03/1994    COLLECT COD
FOB   dugouts poach ev 
32    52    1    4    23    NULL    0.06    0.06    A    F    09/29/1994    09/20/1994    09/29/1994    TAKE BACK
RETURN   FOB    permanent decoys despite th 
32    2    2    5    20    NULL    0.10    0.08    A    F    10/24/1994    10/02/1994    10/24/1994    COLLECT COD
RAIL   fluffy,silent courts in place of the  
33    19    3    1    24    NULL    0.06    0.01    A    F    04/29/1994    02/23/1994    04/29/1994    COLLECT COD
MAIL   daringly sly excuses boost stealthy idea 
33    11    0    2    24    NULL    0.06    0.03    A    F    02/11/1994    03/09/1994    02/11/1994    TAKE BACK
RETURN   RAIL    quickly dogged orbits 
33    36    1    3    35    NULL    0.02    0.06    A    F    03/22/1994    04/10/1994    03/22/1994    NONE    RAIL
slowlyruthless no 
33    69    2    4    8    NULL    0.08    0.02    A    F    02/18/1994    02/15/1994    02/18/1994    NONE    FOB
even,thingifts doze : 
33    0    0    5    37    NULL    0.07    0.06    A    F    04/14/1994    04/04/1994    04/14/1994    DELIVER IN
PERSON   REG AIR    brave,even Tiresias' could  
34    0    0    1    11    NULL    0.03    0.05    R    F    05/11/1992    05/18/1992    05/11/1992    DELIVER IN
PERSON   MAIL    carefully blithe decoys  
34    20    1    2    14    NULL    0.07    0.06    A    F    07/29/1992    06/12/1992    07/29/1992    NONE    TRUCK
carefully sil 
34    35    3    3    2    NULL    0.03    0.04    R    F    04/30/1992    06/03/1992    04/30/1992    TAKE BACK RETURN
  REG AIR    sly,even sentiment 
34    39    3    4    34    NULL    0.04    0.04    A    F    07/30/1992    06/20/1992    07/30/1992    TAKE BACK
RETURN   MAIL    quickly perma 
34    26    2    5    11    NULL    0.08    0.05    R    F    06/27/1992    06/14/1992    06/27/1992    COLLECT COD
TRUCK   permanently quiet  
34    34    1    6    32    NULL    0.05    0.05    A    F    05/12/1992    05/10/1992    05/12/1992    COLLECT COD
MAIL   blithely dogged forges f 
35    16    1    1    43    NULL    0.06    0.01    R    F    06/11/1994    07/11/1994    06/11/1994    COLLECT COD
AIR   blithely close orbits was busily 
35    18    2    2    4    NULL    0.03    0.03    R    F    07/08/1994    06/28/1994    07/08/1994    NONE    TRUCK
regulargifts re 
35    77    2    3    18    NULL    0.09    0.05    A    F    07/28/1994    06/15/1994    07/28/1994    DELIVER IN
PERSON   RAIL    fluffily final attainments before the gr 
36    27    0    1    41    NULL    0.01    0.07    A    F    06/17/1993    07/02/1993    06/17/1993    COLLECT COD
MAIL   notornis poach slowly until t 
36    68    3    2    35    NULL    0.07    0.05    R    F    06/03/1993    05/19/1993    06/03/1993    COLLECT COD
FOB   platelets until the brave,idle pains  
36    46    0    3    43    NULL    0.09    0.08    R    F    05/10/1993    06/06/1993    05/10/1993    TAKE BACK
RETURN   REG AIR    careful dinos mold : thin sauternes r 
37    21    2    1    41    NULL    0.03    0.06    N    O    03/20/1997    01/20/1997    03/20/1997    DELIVER IN
PERSON   REG AIR    furiusly stealth 
37    78    1    2    34    NULL    0.09    0.02    N    O    02/28/1997    02/13/1997    02/28/1997    TAKE BACK
RETURN   TRUCK    enticingly quick p 
37    10    1    3    15    NULL    0.06    0.04    N    O    01/21/1997    02/20/1997    01/21/1997    DELIVER IN
PERSON   RAIL    careful dugouts shoul 
37    0    0    4    34    NULL    0.02    0.08    N    O    02/04/1997    02/01/1997    02/04/1997    COLLECT COD
RAIL   furious,brave epitaphs to the finally qu 
38    61    0    1    35    NULL    0.04    0.03    N    O    12/08/1997    10/30/1997    12/08/1997    NONE    MAIL
decoyswill have t 
39    0    0    1    30    NULL    0.05    0.03    N    O    08/18/1998    07/30/1998    08/18/1998    COLLECT COD
SHIP   ironic,close tithes poach q 
39    19    2    2    37    NULL    0.03    0.00    N    O    07/03/1998    08/20/1998    07/03/1998    COLLECT COD
SHIP   foxes nod doggedly busily ste 
39    17    1    3    18    NULL    0.05    0.07    N    O    07/14/1998    07/10/1998    07/14/1998    DELIVER IN
PERSON   AIR    idly sly patterns unwind ?  
39    9    1    4    9    NULL    0.01    0.08    N    O    08/22/1998    08/01/1998    08/22/1998    DELIVER IN PERSON
  AIR    dinos could have 
39    47    0    5    11    NULL    0.04    0.03    N    O    09/10/1998    07/18/1998    09/10/1998    COLLECT COD
AIR   slyly quiet dolphins doubt be 
64    72    3    1    47    NULL    0.07    0.04    R    F    09/09/1994    10/08/1994    09/09/1994    TAKE BACK
RETURN   SHIP    pearls should have to engag 
64    17    1    2    37    NULL    0.09    0.07    R    F    11/20/1994    10/28/1994    11/20/1994    DELIVER IN
PERSON   SHIP    notornis doubt never doubt ne 
65    79    3    1    3    NULL    0.02    0.01    N    O    07/13/1998    05/07/1998    07/13/1998    DELIVER IN
PERSON   TRUCK     thrash slowly brave,permanent orbits 
66    2    1    1    1    NULL    0.01    0.01    A    F    08/07/1992    09/27/1992    08/07/1992    COLLECT COD
FOB   careful pains try to cajole closely a 
66    73    1    2    40    NULL    0.09    0.04    R    F    08/08/1992    10/05/1992    08/08/1992    DELIVER IN
PERSON   AIR    courts kindle ? 
67    0    0    1    38    NULL    0.05    0.05    N    O    12/29/1996    02/26/1997    12/29/1996    TAKE BACK RETURN
  AIR    blithely ruthless warhorses use  
67    62    2    2    12    NULL    0.06    0.01    N    O    03/02/1997    02/22/1997    03/02/1997    TAKE BACK
RETURN   RAIL    dogged,enticing orbits w 
67    16    3    3    3    NULL    0.02    0.03    N    O    12/21/1996    01/30/1997    12/21/1996    TAKE BACK RETURN
  SHIP    daringly final fina a 
68    70    3    1    50    NULL    0.05    0.01    N    O    03/14/1997    01/21/1997    03/14/1997    COLLECT COD
FOB   busy escapades print bra 
68    25    3    2    5    NULL    0.07    0.08    N    O    03/27/1997    01/23/1997    03/27/1997    COLLECT COD
REGAIR    daring realms ar 
69    31    2    1    33    NULL    0.04    0.01    N    O    05/10/1996    04/12/1996    05/10/1996    TAKE BACK
RETURN   TRUCK    regularly  sentiments do  slowly . 
69    0    0    2    33    NULL    0.03    0.02    N    O    03/16/1996    04/12/1996    03/16/1996    NONE    SHIP
busy,idleorbits do eat closely slow the 
69    53    2    3    20    NULL    0.02    0.07    N    O    03/30/1996    05/23/1996    03/30/1996    COLLECT COD
RAIL   quickly bu 
70    7    2    1    29    NULL    0.08    0.02    A    F    06/29/1992    06/29/1992    06/29/1992    DELIVER IN
PERSON   AIR    pains within the sly asympt 
71    22    3    1    17    NULL    0.06    0.05    A    F    03/08/1994    03/30/1994    03/08/1994    DELIVER IN
PERSON   REG AIR    blithe notorn 
71    63    0    2    36    NULL    0.05    0.04    A    F    05/27/1994    04/25/1994    05/27/1994    TAKE BACK
RETURN   SHIP     even instructions since the qui 
96    73    1    1    35    NULL    0.07    0.06    R    F    02/07/1992    03/21/1992    02/07/1992    TAKE BACK
RETURN   FOB    tithes to the fluffy,quiet depths doze d 
96    79    1    2    16    NULL    0.00    0.08    R    F    03/15/1992    03/16/1992    03/15/1992    NONE    RAIL
braveforges from the furiusly even fray 
97    63    3    1    30    NULL    0.04    0.03    N    O    07/26/1995    09/05/1995    07/26/1995    COLLECT COD
REGAIR    busy,brave attainm 
97    49    2    2    13    NULL    0.08    0.03    N    O    10/19/1995    08/14/1995    10/19/1995    COLLECT COD
AIR   slow,close theodolites affix closely . 
97    0    0    3    5    NULL    0.00    0.05    N    O    09/17/1995    08/19/1995    09/17/1995    COLLECT COD
MAIL   theodolites outside the ent 
98    0    0    1    3    NULL    0.10    0.05    N    O    11/01/1997    01/03/1998    11/01/1997    DELIVER IN PERSON
  MAIL    epitaphs will use  
98    15    3    2    22    NULL    0.02    0.07    N    O    12/23/1997    11/11/1997    12/23/1997    NONE    MAIL
theodolitesat the quick 
98    37    3    3    21    NULL    0.04    0.03    N    O    02/01/1998    12/08/1997    02/01/1998    TAKE BACK
RETURN   AIR    brave,careful 
98    51    1    4    33    NULL    0.09    0.02    N    O    11/06/1997    11/08/1997    11/06/1997    COLLECT COD
TRUCK   tithes tithe  quietly 
98    24    2    5    10    NULL    0.07    0.00    N    O    10/10/1997    11/19/1997    10/10/1997    COLLECT COD
FOB   idle somas are ar 
99    57    1    1    34    NULL    0.05    0.01    N    O    07/01/1996    04/05/1996    07/01/1996    TAKE BACK
RETURN   REG AIR    enticing,s 
99    62    1    2    2    NULL    0.07    0.05    N    O    04/16/1996    05/24/1996    04/16/1996    NONE    TRUCK
braidsplay permanently tow 
99    3    3    3    42    NULL    0.06    0.01    N    O    03/16/1996    04/06/1996    03/16/1996    NONE    MAIL
fluffy,finalescapades mold o 
99    25    1    4    32    NULL    0.04    0.02    N    O    04/14/1996    04/07/1996    04/14/1996    TAKE BACK
RETURN   MAIL    asymptotes will have to hin 
100    10    3    1    9    NULL    0.06    0.01    N    O    04/25/1998    05/31/1998    04/25/1998    COLLECT COD
MAIL   bold pains could h 
100    10    2    2    22    NULL    0.03    0.06    N    O    06/18/1998    05/15/1998    06/18/1998    NONE    FOB
slowdinos will promi 
100    0    0    3    41    NULL    0.06    0.08    N    O    07/27/1998    05/14/1998    07/27/1998    NONE    SHIP
evenlyidle depths snooze between the 
101    41    2    1    9    NULL    0.03    0.04    R    F    08/11/1993    08/11/1993    08/11/1993    DELIVER IN
PERSON   RAIL    busy somas may dazzle bu 
101    0    0    2    23    NULL    0.08    0.04    A    F    07/20/1993    07/17/1993    07/20/1993    NONE    FOB
busy,silentexcuses sublate 
101    0    0    3    3    NULL    0.01    0.03    A    F    07/09/1993    07/16/1993    07/09/1993    COLLECT COD
AIR   thin tithes could are against the f 
101    66    1    4    22    NULL    0.03    0.03    A    F    06/19/1993    07/24/1993    06/19/1993    COLLECT COD
SHIP    serve ; q 
102    0    0    1    17    NULL    0.03    0.01    N    O    04/21/1998    03/07/1998    04/21/1998    COLLECT COD
RAIL   thin pains need to thrash ruthlessly  
102    28    3    2    45    NULL    0.07    0.04    N    O    03/17/1998    04/09/1998    03/17/1998    TAKE BACK
RETURN   RAIL    pains pain hang near the permanently clo 
102    12    0    3    31    NULL    0.03    0.05    N    O    04/13/1998    04/01/1998    04/13/1998    COLLECT COD
AIR   gifts promise stealthily except the brav 
103    68    1    1    20    NULL    0.09    0.01    A    F    05/05/1994    04/07/1994    05/05/1994    NONE    SHIP
sentiments play : 
103    47    2    2    33    NULL    0.04    0.08    A    F    03/26/1994    03/13/1994    03/26/1994    TAKE BACK
RETURN   RAIL    stealthy,close som 
103    55    1    3    22    NULL    0.08    0.05    A    F    04/24/1994    04/26/1994    04/24/1994    NONE    REG
AIR   even courts will 
103    43    1    4    9    NULL    0.07    0.05    R    F    06/08/1994    03/17/1994    06/08/1994    NONE    SHIP
enticingsheaves can x_ray regul 
103    71    0    5    24    NULL    0.03    0.04    R    F    03/08/1994    04/14/1994    03/08/1994    TAKE BACK
RETURN   TRUCK    ,slow multipliers ougth to grow car 
103    0    0    6    37    NULL    0.01    0.02    R    F    03/04/1994    05/06/1994    03/04/1994    COLLECT COD
SHIP   brave,permanent courts near the bold  
103    0    0    7    13    NULL    0.01    0.04    R    F    03/23/1994    04/23/1994    03/23/1994    DELIVER IN
PERSON   MAIL    tithes may print fluffily finally fin 
128    29    3    1    1    NULL    0.01    0.04    R    F    11/27/1992    10/30/1992    11/27/1992    COLLECT COD
SHIP   frets may cajole for  
128    16    2    2    17    NULL    0.04    0.07    R    F    11/21/1992    11/21/1992    11/21/1992    COLLECT COD
RAIL   fluffily slow ideas impress never s 
129    0    0    1    9    NULL    0.07    0.02    A    F    07/05/1993    08/01/1993    07/05/1993    TAKE BACK RETURN
  RAIL    final  to the quiet attainments impress int 
130    26    3    1    36    NULL    0.06    0.04    R    F    06/08/1992    05/01/1992    06/08/1992    DELIVER IN
PERSON   RAIL    silent foxes up the regular,furious 
130    0    0    2    50    NULL    0.07    0.07    R    F    03/15/1992    03/13/1992    03/15/1992    NONE    FOB
asymptotesto the  
130    26    2    3    11    NULL    0.07    0.00    A    F    03/20/1992    04/30/1992    03/20/1992    DELIVER IN
PERSON   RAIL    brave,careful forges could  
130    60    3    4    18    NULL    0.03    0.08    R    F    04/17/1992    04/18/1992    04/17/1992    TAKE BACK
RETURN   FOB    warhorses hang fluffily throu 
130    37    2    5    19    NULL    0.01    0.08    A    F    06/08/1992    05/05/1992    06/08/1992    COLLECT COD
RAIL   sly,careful p 
130    56    1    6    38    NULL    0.03    0.00    A    F    04/11/1992    05/02/1992    04/11/1992    TAKE BACK
RETURN   FOB    closely final decoys nea 
131    22    2    1    12    NULL    0.03    0.08    A    F    06/05/1992    06/04/1992    06/05/1992    COLLECT COD
FOB   carefully regular multiplie 
131    0    0    2    28    NULL    0.00    0.02    A    F    07/31/1992    06/06/1992    07/31/1992    COLLECT COD
SHIP   idle, sauternes maintain busily  
131    42    1    3    18    NULL    0.07    0.07    R    F    08/09/1992    06/16/1992    08/09/1992    TAKE BACK
RETURN   TRUCK    bold foxes boost daringly a 
131    47    1    4    17    NULL    0.03    0.01    A    F    07/06/1992    05/19/1992    07/06/1992    COLLECT COD
REGAIR    idle sauternes boo 
132    57    2    1    43    NULL    0.10    0.08    R    F    10/06/1994    12/16/1994    10/06/1994    COLLECT COD
TRUCK   permanent realms atop the c 
132    12    3    2    32    NULL    0.05    0.06    A    F    10/27/1994    11/16/1994    10/27/1994    DELIVER IN
PERSON   TRUCK    quiet notorni 
132    42    2    3    31    NULL    0.10    0.03    A    F    10/14/1994    12/24/1994    10/14/1994    NONE    REG
AIR   idle patterns 
132    0    0    4    17    NULL    0.00    0.04    A    F    11/07/1994    12/15/1994    11/07/1994    NONE    RAIL
warhorsesexcept the somas except the 
132    78    0    5    5    NULL    0.08    0.01    A    F    01/07/1995    12/09/1994    01/07/1995    DELIVER IN
PERSON   RAIL    sentiments lose thinly i 
133    10    1    1    47    NULL    0.00    0.03    R    F    04/15/1993    01/31/1993    04/15/1993    DELIVER IN
PERSON   REG AIR    stealthily ironic orbits engage besides the 
133    44    0    2    44    NULL    0.03    0.04    R    F    01/25/1993    02/23/1993    01/25/1993    COLLECT COD
AIR   close decoys doze ! 
134    75    3    1    16    NULL    0.05    0.04    A    F    12/01/1993    12/31/1993    12/01/1993    NONE    RAIL
close ideas serve dogged,careful tith 
134    9    2    2    30    NULL    0.01    0.07    R    F    12/19/1993    11/19/1993    12/19/1993    COLLECT COD
FOB   slow orbits along the dugou 
134    0    0    3    44    NULL    0.02    0.04    A    F    02/08/1994    01/01/1994    02/08/1994    NONE    FOB
silent,daringinstructions from the thin 
134    63    1    4    26    NULL    0.07    0.06    A    F    01/22/1994    12/05/1993    01/22/1994    COLLECT COD
FOB   quiet somas impress near the ruthless notor 
134    0    0    5    40    NULL    0.02    0.07    A    F    12/29/1993    11/15/1993    12/29/1993    TAKE BACK
RETURN   MAIL    idle,busy asymptotes during t 
134    0    0    6    40    NULL    0.04    0.07    R    F    12/14/1993    12/20/1993    12/14/1993    COLLECT COD
RAIL   boldly stealthy warhorses do  
134    56    3    7    11    NULL    0.10    0.06    R    F    10/25/1993    01/04/1994    10/25/1993    TAKE BACK
RETURN   REG AIR    close,close grouch 
135    29    1    1    24    NULL    0.08    0.06    R    F    10/08/1994    07/15/1994    10/08/1994    COLLECT COD
MAIL   excuses beyond the final,idle excuses 
135    35    1    2    15    NULL    0.02    0.02    A    F    07/04/1994    09/03/1994    07/04/1994    TAKE BACK
RETURN   SHIP    blithely quiet patterns nee 
135    8    2    3    26    NULL    0.06    0.07    A    F    07/09/1994    07/14/1994    07/09/1994    NONE    AIR
fluffy,sly
135    9    2    4    14    NULL    0.09    0.05    R    F    09/20/1994    07/26/1994    09/20/1994    COLLECT COD
REGAIR    sometimes thin waters will  ? 
135    53    1    5    5    NULL    0.00    0.08    A    F    08/30/1994    09/06/1994    08/30/1994    NONE    AIR
daring,silentexcuses 
160    64    3    1    34    NULL    0.04    0.02    N    O    10/18/1997    12/15/1997    10/18/1997    NONE    MAIL
regular,sly depths ma 
160    30    2    2    26    NULL    0.00    0.03    N    O    12/21/1997    11/29/1997    12/21/1997    DELIVER IN
PERSON   SHIP    quietly idle sentiments x_ray 
160    54    2    3    10    NULL    0.05    0.00    N    O    01/20/1998    11/21/1997    01/20/1998    TAKE BACK
RETURN   FOB    pearls of the pe 
161    0    0    1    27    NULL    0.04    0.06    A    F    09/16/1994    09/03/1994    09/16/1994    COLLECT COD
TRUCK   enticing mult 
161    54    1    2    50    NULL    0.01    0.04    A    F    08/02/1994    08/11/1994    08/02/1994    NONE    FOB
final,busysentiments before  
162    42    1    1    21    NULL    0.09    0.06    R    F    06/19/1994    05/22/1994    06/19/1994    NONE    MAIL
careful tithes may  always atop the ruthles 
162    76    1    2    3    NULL    0.08    0.07    R    F    04/20/1994    04/23/1994    04/20/1994    NONE    REG AIR
  daring,ironic ideas inside the c 
162    76    1    3    7    NULL    0.05    0.01    R    F    04/05/1994    04/15/1994    04/05/1994    NONE    REG AIR
  even,fluffy grouch 
162    37    2    4    46    NULL    0.07    0.07    A    F    03/29/1994    03/30/1994    03/29/1994    COLLECT COD
SHIP   furiusly q 
162    79    2    5    44    NULL    0.04    0.06    A    F    03/10/1994    05/15/1994    03/10/1994    DELIVER IN
PERSON   SHIP    close theodolites mold furiusly above 
162    44    3    6    37    NULL    0.06    0.01    R    F    04/20/1994    04/05/1994    04/20/1994    NONE    FOB
dogged,carefulbraids cajole bli 
163    0    0    1    45    NULL    0.01    0.06    N    O    04/25/1998    04/01/1998    04/25/1998    TAKE BACK
RETURN   RAIL    waters haggle haggl shea 
163    9    3    2    18    NULL    0.02    0.02    N    O    04/14/1998    03/16/1998    04/14/1998    COLLECT COD
SHIP   blithe,final dinos among th 
163    6    0    3    18    NULL    0.08    0.06    N    O    05/25/1998    04/14/1998    05/25/1998    NONE    AIR
painspain breac 
163    0    0    4    35    NULL    0.04    0.03    N    O    03/07/1998    04/09/1998    03/07/1998    TAKE BACK
RETURN   MAIL    tithes bes 
163    44    1    5    50    NULL    0.03    0.02    N    O    05/14/1998    03/11/1998    05/14/1998    DELIVER IN
PERSON   REG AIR    realms on the ruthless,s 
163    28    3    6    5    NULL    0.09    0.05    N    O    02/24/1998    04/17/1998    02/24/1998    COLLECT COD
REGAIR    quiet asymptotes x_ray b 
163    0    0    7    24    NULL    0.03    0.05    N    O    05/03/1998    04/03/1998    05/03/1998    COLLECT COD
MAIL   attainments shall hav 
164    24    0    1    4    NULL    0.08    0.04    A    F    08/20/1994    09/25/1994    08/20/1994    COLLECT COD
AIR   instructions with the ir 
164    34    2    2    38    NULL    0.08    0.04    A    F    09/06/1994    09/22/1994    09/06/1994    NONE    SHIP
enticing,furious patt 
165    0    0    1    20    NULL    0.00    0.03    N    O    04/25/1998    05/17/1998    04/25/1998    COLLECT COD
RAIL   finally careful notornis up the idly qui 
165    12    0    2    16    NULL    0.03    0.02    N    O    05/15/1998    06/28/1998    05/15/1998    NONE    FOB
daringwarhorses for the pi 
165    69    0    3    24    NULL    0.00    0.04    N    O    05/03/1998    06/12/1998    05/03/1998    TAKE BACK
RETURN   AIR    careful,bu 
165    32    2    4    24    NULL    0.06    0.08    N    O    07/28/1998    06/19/1998    07/28/1998    DELIVER IN
PERSON   TRUCK    sly dolphins do be 
165    6    0    5    37    NULL    0.01    0.01    N    O    06/22/1998    05/27/1998    06/22/1998    DELIVER IN
PERSON   AIR    pinto beans boost  
165    0    0    6    34    NULL    0.05    0.03    N    O    07/10/1998    07/10/1998    07/10/1998    NONE    REG AIR
  careful dependencies except the  
166    50    2    1    13    NULL    0.03    0.06    R    F    08/28/1992    10/30/1992    08/28/1992    COLLECT COD
TRUCK   carefully silent dinos do g 
166    0    0    2    44    NULL    0.06    0.02    A    F    10/01/1992    10/17/1992    10/01/1992    TAKE BACK
RETURN   TRUCK    fluffily quie 
166    0    0    3    38    NULL    0.05    0.08    R    F    10/25/1992    10/28/1992    10/25/1992    TAKE BACK
RETURN   FOB    close,fluffy ideas could have to kind 
167    5    0    1    4    NULL    0.06    0.04    N    O    11/17/1996    01/01/1997    11/17/1996    TAKE BACK RETURN
  TRUCK    somas except the Tiresias' do 
167    0    0    2    23    NULL    0.03    0.04    N    O    11/06/1996    12/16/1996    11/06/1996    NONE    FOB
close,finaldecoys breach under  
167    70    3    3    24    NULL    0.07    0.03    N    O    12/24/1996    01/09/1997    12/24/1996    COLLECT COD
REGAIR    blithely slow hockey  
167    67    3    4    41    NULL    0.01    0.06    N    O    12/08/1996    12/01/1996    12/08/1996    NONE    SHIP
fluffy,enticing pains must snooze - 
167    0    0    5    29    NULL    0.08    0.06    N    O    01/08/1997    12/10/1996    01/08/1997    NONE    TRUCK
decoys against the dolphins doubt evenly 
167    6    1    6    2    NULL    0.07    0.05    N    O    12/20/1996    12/07/1996    12/20/1996    TAKE BACK RETURN
  REG AIR    ,quick pains besides the silent pla 
192    18    0    1    36    NULL    0.05    0.03    A    F    01/15/1995    03/26/1995    01/15/1995    NONE    AIR
fraysafter the bold,sly multipliers  
192    78    1    2    33    NULL    0.05    0.04    A    F    04/14/1995    04/01/1995    04/14/1995    DELIVER IN
PERSON   RAIL    patterns could detect quietly thin sheaves  
192    27    2    3    15    NULL    0.09    0.05    A    F    03/02/1995    02/17/1995    03/02/1995    TAKE BACK
RETURN   FOB    quickly bo 
192    12    1    4    11    NULL    0.02    0.01    A    F    02/27/1995    02/07/1995    02/27/1995    COLLECT COD
FOB   ,fluffy platelets besides the slow  
192    9    0    5    3    NULL    0.00    0.03    R    F    03/21/1995    03/17/1995    03/21/1995    DELIVER IN
PERSON   MAIL    ruthlessly quick 
192    0    0    6    45    NULL    0.07    0.05    A    F    02/08/1995    03/17/1995    02/08/1995    NONE    TRUCK
enticing,careful waters print slowl 
192    49    0    7    45    NULL    0.06    0.05    R    F    03/11/1995    02/28/1995    03/11/1995    DELIVER IN
PERSON   REG AIR    idle depths upon 
193    1    2    1    20    NULL    0.08    0.04    N    O    07/10/1997    07/24/1997    07/10/1997    TAKE BACK
RETURN   AIR    brave,final fray 
193    37    2    2    38    NULL    0.07    0.07    N    O    07/01/1997    07/20/1997    07/01/1997    COLLECT COD
TRUCK   fluffy gifts would breach w 
193    0    0    3    15    NULL    0.08    0.04    N    O    06/16/1997    09/02/1997    06/16/1997    COLLECT COD
MAIL   blithely quick quic near the platel 
193    77    3    4    20    NULL    0.09    0.02    N    O    06/19/1997    09/05/1997    06/19/1997    COLLECT COD
TRUCK   careful,bold  
194    75    1    1    32    NULL    0.05    0.03    R    F    01/12/1994    01/08/1994    01/12/1994    NONE    FOB
pearlswas always doggedly  
194    31    3    2    41    NULL    0.00    0.02    R    F    01/01/1994    01/10/1994    01/01/1994    COLLECT COD
RAIL   idly regular attainments use  
194    65    3    3    39    NULL    0.03    0.04    R    F    02/07/1994    02/01/1994    02/07/1994    DELIVER IN
PERSON   TRUCK    sentiments during the 
194    6    0    4    30    NULL    0.04    0.03    A    F    01/24/1994    12/17/1993    01/24/1994    DELIVER IN
PERSON   REG AIR    busy,fluff 
195    8    2    1    2    NULL    0.04    0.06    A    F    02/26/1993    02/22/1993    02/26/1993    NONE    SHIP
patternssleep ? frays before the entici 
195    35    0    2    22    NULL    0.08    0.04    A    F    02/19/1993    03/31/1993    02/19/1993    TAKE BACK
RETURN   SHIP    Tiresias' do cajole f 
195    47    0    3    45    NULL    0.02    0.07    R    F    02/26/1993    03/11/1993    02/26/1993    TAKE BACK
RETURN   TRUCK    quiet,thin warho 
195    0    0    4    30    NULL    0.09    0.07    R    F    03/29/1993    03/31/1993    03/29/1993    DELIVER IN
PERSON   SHIP    silent pearls silent  
195    75    3    5    37    NULL    0.07    0.06    R    F    04/15/1993    02/08/1993    04/15/1993    COLLECT COD
REGAIR    finally blith 
195    68    2    6    30    NULL    0.08    0.00    R    F    04/03/1993    02/15/1993    04/03/1993    DELIVER IN
PERSON   FOB    blithe dolphins should sublate ironic 
196    0    0    1    31    NULL    0.01    0.03    R    F    08/08/1994    08/11/1994    08/08/1994    TAKE BACK
RETURN   MAIL    asymptotes haggle regularly a 
196    13    2    2    39    NULL    0.00    0.03    A    F    07/25/1994    07/29/1994    07/25/1994    DELIVER IN
PERSON   RAIL    brave Tiresia 
196    79    2    3    37    NULL    0.05    0.00    R    F    08/20/1994    08/05/1994    08/20/1994    NONE    REG
AIR   doggedly daring  
196    0    0    4    46    NULL    0.06    0.05    R    F    10/05/1994    08/28/1994    10/05/1994    DELIVER IN
PERSON   MAIL    idle dependencies nod before the cl 
197    31    1    1    14    NULL    0.01    0.01    R    F    08/14/1993    07/11/1993    08/14/1993    COLLECT COD
AIR   closely ca 
197    0    0    2    8    NULL    0.01    0.03    R    F    08/16/1993    07/29/1993    08/16/1993    COLLECT COD
RAIL   frays under the blithe w 
198    0    0    1    24    NULL    0.07    0.05    N    O    02/26/1998    12/13/1997    02/26/1998    COLLECT COD
TRUCK   brave,slow excuses should hav 
198    68    1    2    1    NULL    0.05    0.06    N    O    12/05/1997    01/16/1998    12/05/1997    COLLECT COD
AIR   fluffily dogged  
198    18    3    3    14    NULL    0.10    0.06    N    O    01/06/1998    01/16/1998    01/06/1998    NONE    MAIL
even,fluffy soma 
198    13    2    4    47    NULL    0.10    0.01    N    O    12/02/1997    01/27/1998    12/02/1997    TAKE BACK
RETURN   REG AIR    silently close notornis sin 
198    36    0    5    42    NULL    0.02    0.04    N    O    12/08/1997    01/04/1998    12/08/1997    DELIVER IN
PERSON   SHIP    pearls shall have to nag da 
198    71    3    6    22    NULL    0.09    0.01    N    O    02/21/1998    11/30/1997    02/21/1998    DELIVER IN
PERSON   AIR    closely brave 
199    0    0    1    50    NULL    0.04    0.04    N    O    12/22/1997    11/19/1997    12/22/1997    TAKE BACK
RETURN   REG AIR    bold patterns should sleep ne 
199    50    2    2    19    NULL    0.04    0.00    N    O    11/10/1997    11/25/1997    11/10/1997    TAKE BACK
RETURN   FOB    foxes try to cajole cajo 
199    0    0    3    50    NULL    0.05    0.02    N    O    09/28/1997    12/23/1997    09/28/1997    TAKE BACK
RETURN   REG AIR    waters water dugouts  
224    53    2    1    40    NULL    0.07    0.03    N    O    10/19/1996    10/07/1996    10/19/1996    COLLECT COD
RAIL   somas cajole quickly regula 
224    14    2    2    41    NULL    0.05    0.01    N    O    08/09/1996    10/13/1996    08/09/1996    NONE    REG
AIR   close foxes from the bold,daring plat 
224    0    0    3    26    NULL    0.10    0.02    N    O    10/25/1996    10/08/1996    10/25/1996    DELIVER IN
PERSON   AIR    boldly fluffy excuses serve a 
224    30    3    4    21    NULL    0.01    0.07    N    O    08/01/1996    08/27/1996    08/01/1996    DELIVER IN
PERSON   TRUCK    idly stealthy Tiresias' grow boldly 
225    35    2    1    43    NULL    0.06    0.08    N    O    11/21/1997    10/03/1997    11/21/1997    DELIVER IN
PERSON   RAIL    warhorses on the hockey pla 
225    0    0    2    30    NULL    0.09    0.07    N    O    11/18/1997    10/20/1997    11/18/1997    TAKE BACK
RETURN   AIR    epitaphs along the thinly car 
226    50    3    1    39    NULL    0.08    0.06    R    F    05/11/1995    06/15/1995    05/11/1995    DELIVER IN
PERSON   MAIL    permanent waters 
226    0    0    2    21    NULL    0.06    0.01    N    O    07/20/1995    07/10/1995    07/20/1995    COLLECT COD
SHIP   enticing, dug 
226    50    0    3    23    NULL    0.07    0.05    N    O    07/12/1995    06/10/1995    07/12/1995    NONE    REG
AIR    detect final,bold depth 
227    75    3    1    23    NULL    0.02    0.05    R    F    01/20/1994    11/09/1993    01/20/1994    DELIVER IN
PERSON   RAIL    depths within the ste 
227    41    3    2    5    NULL    0.06    0.07    R    F    11/02/1993    12/06/1993    11/02/1993    NONE    MAIL
bravelyfurious asymptotes before the bl 
227    33    0    3    23    NULL    0.02    0.04    A    F    01/13/1994    10/31/1993    01/13/1994    TAKE BACK
RETURN   MAIL    realms realm past the furious Tiresias'  
227    32    2    4    18    NULL    0.03    0.02    R    F    11/24/1993    12/15/1993    11/24/1993    NONE    AIR
close,ruthlesspearls close,r 
227    31    3    5    7    NULL    0.00    0.03    A    F    01/05/1994    11/17/1993    01/05/1994    COLLECT COD
REGAIR    regular,sly pear 
228    0    0    1    38    NULL    0.00    0.05    N    O    06/19/1998    07/18/1998    06/19/1998    DELIVER IN
PERSON   RAIL    excuses excuse integrate enticingly r 
228    2    1    2    25    NULL    0.01    0.05    N    O    06/12/1998    08/13/1998    06/12/1998    TAKE BACK
RETURN   RAIL    sly,enticing foxes instead  
228    0    0    3    39    NULL    0.06    0.01    N    O    06/29/1998    07/17/1998    06/29/1998    TAKE BACK
RETURN   RAIL    finally regular sheaves finally  
228    0    0    4    41    NULL    0.03    0.07    N    O    08/26/1998    08/12/1998    08/26/1998    NONE    MAIL
idlyquick warthogs could solve . furius 
228    0    0    5    31    NULL    0.00    0.03    N    O    06/10/1998    08/02/1998    06/10/1998    COLLECT COD
SHIP   dogged,fluffy waters nag furiusly atop t 
229    25    3    1    24    NULL    0.02    0.04    N    O    03/15/1996    02/14/1996    03/15/1996    TAKE BACK
RETURN   AIR    silent grouches would doze permanen 
229    8    1    2    33    NULL    0.03    0.02    N    O    12/26/1995    02/17/1996    12/26/1995    TAKE BACK
RETURN   SHIP    busily idl 
229    21    3    3    42    NULL    0.04    0.06    N    O    03/31/1996    02/06/1996    03/31/1996    NONE    TRUCK
 epitaphs of t 
230    37    2    1    34    NULL    0.10    0.04    N    O    10/16/1995    12/20/1995    10/16/1995    DELIVER IN
PERSON   FOB    patterns t 
230    34    0    2    34    NULL    0.02    0.01    N    O    01/30/1996    11/16/1995    01/30/1996    TAKE BACK
RETURN   REG AIR    gifts could sleep atop the caref 
230    0    3    3    16    NULL    0.01    0.07    N    O    10/20/1995    12/04/1995    10/20/1995    NONE    REG AIR
   slow ideas serv 
230    24    0    4    7    NULL    0.09    0.02    N    O    12/08/1995    01/09/1996    12/08/1995    DELIVER IN
PERSON   FOB    doggedly slow notornis except the perman 
230    46    3    5    35    NULL    0.09    0.05    N    O    11/11/1995    12/03/1995    11/11/1995    TAKE BACK
RETURN   FOB    dogged multip 
230    64    3    6    6    NULL    0.09    0.02    N    O    10/31/1995    12/12/1995    10/31/1995    TAKE BACK
RETURN   REG AIR    busy platelets must engage furiusly 
231    20    3    1    22    NULL    0.10    0.05    A    F    04/26/1993    02/23/1993    04/26/1993    TAKE BACK
RETURN   RAIL    sly,slow courts dazzle idly -- 
231    7    0    2    16    NULL    0.06    0.06    R    F    05/09/1993    04/17/1993    05/09/1993    COLLECT COD
AIR   dependencies play past the cl 
231    25    1    3    36    NULL    0.08    0.06    R    F    02/20/1993    04/16/1993    02/20/1993    TAKE BACK
RETURN   AIR    ruthlessly dogged grouches must nod ; ep 
256    37    1    1    17    NULL    0.05    0.06    R    F    09/11/1992    10/01/1992    09/11/1992    NONE    TRUCK
 frays use behind t 
256    71    3    2    4    NULL    0.05    0.02    A    F    08/25/1992    08/29/1992    08/25/1992    COLLECT COD
FOB   regular ideas wake beneath the f 
256    0    0    3    16    NULL    0.09    0.01    A    F    10/15/1992    10/28/1992    10/15/1992    DELIVER IN
PERSON   REG AIR    even,thin dugouts nag above t 
256    0    0    4    7    NULL    0.06    0.00    R    F    09/16/1992    10/03/1992    09/16/1992    COLLECT COD
REGAIR    furiusly fluffy dolphins haggle idly  
256    59    3    5    35    NULL    0.09    0.01    R    F    08/06/1992    09/21/1992    08/06/1992    TAKE BACK
RETURN   SHIP    boldly furious patterns sleep final 
256    0    1    6    20    NULL    0.05    0.07    R    F    10/30/1992    10/26/1992    10/30/1992    TAKE BACK
RETURN   FOB    fluffy grouches on th 
256    63    2    7    30    NULL    0.07    0.05    R    F    09/27/1992    10/12/1992    09/27/1992    TAKE BACK
RETURN   TRUCK    idly permanent attainments must affix 
257    22    3    1    18    NULL    0.03    0.07    N    O    05/22/1997    06/01/1997    05/22/1997    COLLECT COD
REGAIR    theodolites will have to 
257    29    3    2    30    NULL    0.08    0.01    N    O    06/19/1997    06/16/1997    06/19/1997    COLLECT COD
SHIP   always  forges may solve perm 
257    0    0    3    35    NULL    0.04    0.07    N    O    06/18/1997    06/09/1997    06/18/1997    DELIVER IN
PERSON   REG AIR    never  gifts between  
257    42    3    4    14    NULL    0.07    0.01    N    O    04/26/1997    05/24/1997    04/26/1997    TAKE BACK
RETURN   AIR    waters water the pearls might boost amon 
257    38    0    5    11    NULL    0.04    0.06    N    O    06/27/1997    05/28/1997    06/27/1997    COLLECT COD
SHIP   quick platele 
258    68    2    1    50    NULL    0.04    0.04    R    F    12/19/1994    12/09/1994    12/19/1994    NONE    MAIL
forges between the even,ironic g 
258    69    1    2    4    NULL    0.04    0.02    R    F    11/02/1994    11/07/1994    11/02/1994    COLLECT COD
MAIL   courts promise blithe 
258    23    2    3    28    NULL    0.06    0.01    R    F    12/10/1994    11/18/1994    12/10/1994    COLLECT COD
MAIL   silently quiet gifts poach in 
258    8    0    4    14    NULL    0.06    0.08    A    F    01/11/1995    11/05/1994    01/11/1995    NONE    TRUCK
quiet,sly patterns 
258    64    2    5    20    NULL    0.08    0.05    R    F    10/04/1994    12/12/1994    10/04/1994    NONE    FOB
orbitsorb 
259    64    1    1    42    NULL    0.01    0.06    A    F    12/18/1994    02/27/1995    12/18/1994    TAKE BACK
RETURN   REG AIR    slow grouches lose : pearls u 
259    37    3    2    13    NULL    0.08    0.03    A    F    01/07/1995    01/04/1995    01/07/1995    COLLECT COD
REGAIR    idly furious wat 
259    16    3    3    19    NULL    0.09    0.04    R    F    01/10/1995    01/04/1995    01/10/1995    TAKE BACK
RETURN   AIR    foxes affix slow 
259    15    0    4    38    NULL    0.10    0.01    A    F    02/02/1995    02/01/1995    02/02/1995    NONE    MAIL
regularly busy p 
259    11    3    5    34    NULL    0.04    0.06    A    F    02/16/1995    01/06/1995    02/16/1995    TAKE BACK
RETURN   TRUCK    ironic,eve 
260    62    0    1    23    NULL    0.04    0.03    N    O    03/24/1998    05/17/1998    03/24/1998    COLLECT COD
REGAIR    permanently silent pl 
260    44    1    2    22    NULL    0.03    0.04    N    O    05/05/1998    06/18/1998    05/05/1998    NONE    AIR
dependencies 
260    58    2    3    16    NULL    0.07    0.01    N    O    07/11/1998    05/11/1998    07/11/1998    NONE    SHIP
silent frays hinder d 
260    0    0    4    29    NULL    0.05    0.08    N    O    07/03/1998    05/09/1998    07/03/1998    DELIVER IN
PERSON   SHIP    regular sheav 
261    65    2    1    33    NULL    0.07    0.00    N    O    04/19/1996    03/10/1996    04/19/1996    COLLECT COD
REGAIR    permanently dogged escapades sha 
261    28    1    2    40    NULL    0.10    0.04    N    O    04/25/1996    02/15/1996    04/25/1996    DELIVER IN
PERSON   TRUCK    stealthy,busy di 
261    1    2    3    45    NULL    0.02    0.05    N    O    02/01/1996    02/19/1996    02/01/1996    DELIVER IN
PERSON   FOB    permanent decoys 
261    0    0    4    5    NULL    0.08    0.07    N    O    02/04/1996    04/07/1996    02/04/1996    NONE    MAIL
theodolitesougth to grow sly 
261    40    3    5    30    NULL    0.10    0.02    N    O    03/31/1996    03/04/1996    03/31/1996    TAKE BACK
RETURN   AIR    even,furious escapades shou 
262    0    0    1    38    NULL    0.01    0.06    N    O    11/02/1997    10/09/1997    11/02/1997    NONE    REG AIR
  finally close theodolites sha 
262    29    3    2    16    NULL    0.06    0.03    N    O    08/22/1997    11/02/1997    08/22/1997    DELIVER IN
PERSON   REG AIR    boldly fluffy frays unwi 
262    8    3    3    2    NULL    0.04    0.02    N    O    08/26/1997    10/20/1997    08/26/1997    COLLECT COD
REGAIR    quiet,quick warhorses in pl 
262    26    3    4    33    NULL    0.08    0.04    N    O    09/02/1997    10/26/1997    09/02/1997    NONE    REG
AIR   idly ruthless notornis must was idl 
263    75    1    1    40    NULL    0.04    0.07    A    F    01/13/1994    11/28/1993    01/13/1994    NONE    MAIL
patterns would nag up the brave,bold  
263    26    2    2    17    NULL    0.00    0.05    R    F    11/14/1993    01/10/1994    11/14/1993    NONE    SHIP
quietly sly forges 
263    0    0    3    45    NULL    0.01    0.06    A    F    01/23/1994    12/23/1993    01/23/1994    COLLECT COD
AIR   enticingly 
263    6    0    4    45    NULL    0.06    0.03    A    F    01/06/1994    11/23/1993    01/06/1994    COLLECT COD
SHIP   brave plat 
288    36    3    1    21    NULL    0.01    0.08    R    F    02/01/1994    12/02/1993    02/01/1994    TAKE BACK
RETURN   SHIP    ruthless frets doze : 
288    0    0    2    40    NULL    0.02    0.05    A    F    11/04/1993    12/12/1993    11/04/1993    COLLECT COD
MAIL   regular excuses besid 
288    9    2    3    3    NULL    0.02    0.06    R    F    12/03/1993    12/08/1993    12/03/1993    TAKE BACK RETURN
  FOB    ideas to the ,ev 
289    67    3    1    15    NULL    0.10    0.05    R    F    01/18/1993    12/27/1992    01/18/1993    DELIVER IN
PERSON   TRUCK    warhorses try to b 
289    0    0    2    10    NULL    0.01    0.07    A    F    11/14/1992    12/03/1992    11/14/1992    DELIVER IN
PERSON   FOB    sometimes enticing frets can eat idly 
290    0    0    1    47    NULL    0.03    0.03    N    O    12/04/1995    12/10/1995    12/04/1995    NONE    MAIL
dolphinsshall have to thrash beyon 
290    37    0    2    15    NULL    0.00    0.04    N    O    11/27/1995    11/01/1995    11/27/1995    DELIVER IN
PERSON   REG AIR    closely ironi 
290    0    0    3    31    NULL    0.09    0.07    N    O    12/09/1995    11/21/1995    12/09/1995    TAKE BACK
RETURN   SHIP    brave,close pearls past the quick,dogged 
290    66    3    4    11    NULL    0.02    0.08    N    O    10/20/1995    10/18/1995    10/20/1995    DELIVER IN
PERSON   SHIP    even,stealthy decoys  
290    29    3    5    20    NULL    0.09    0.01    N    O    01/04/1996    11/12/1995    01/04/1996    TAKE BACK
RETURN   REG AIR    ironically quick ideas was stealthily wa 
290    0    0    6    50    NULL    0.09    0.02    N    O    09/26/1995    11/25/1995    09/26/1995    DELIVER IN
PERSON   RAIL    daring sheaves try to maintain idly 
290    57    3    7    6    NULL    0.03    0.08    N    O    11/24/1995    10/31/1995    11/24/1995    DELIVER IN
PERSON   RAIL    regular,bold grouches dazzle  
291    70    2    1    3    NULL    0.08    0.01    N    O    12/19/1996    12/13/1996    12/19/1996    COLLECT COD
MAIL   busy,furious furiou after the close d 
292    10    3    1    31    NULL    0.07    0.02    A    F    01/22/1994    11/25/1993    01/22/1994    TAKE BACK
RETURN   SHIP    waters integrate s 
292    52    1    2    32    NULL    0.07    0.00    R    F    10/17/1993    01/08/1994    10/17/1993    TAKE BACK
RETURN   SHIP    fluffy  against the sheaves 
292    71    1    3    13    NULL    0.01    0.01    A    F    11/08/1993    12/15/1993    11/08/1993    DELIVER IN
PERSON   MAIL    gifts among the quick,bold dolphins a 
292    0    0    4    46    NULL    0.08    0.05    A    F    12/08/1993    12/22/1993    12/08/1993    NONE    AIR
blithelyclose sentiments atop the ev 
293    0    0    1    44    NULL    0.02    0.03    A    F    11/21/1993    12/30/1993    11/21/1993    COLLECT COD
AIR    need to print blithe 
293    25    0    2    2    NULL    0.07    0.07    A    F    01/18/1994    12/22/1993    01/18/1994    COLLECT COD
MAIL   depths shall have to doubt  
293    51    0    3    43    NULL    0.04    0.05    R    F    02/11/1994    02/03/1994    02/11/1994    TAKE BACK
RETURN   TRUCK     could eat furiusly ruthless  
293    74    1    4    37    NULL    0.10    0.08    A    F    03/04/1994    02/10/1994    03/04/1994    COLLECT COD
AIR   bold,idle not 
293    76    3    5    10    NULL    0.01    0.07    A    F    03/12/1994    12/18/1993    03/12/1994    COLLECT COD
FOB   forges was ironically fluffy,blithe 
294    0    0    1    48    NULL    0.05    0.05    N    O    12/18/1995    12/02/1995    12/18/1995    TAKE BACK
RETURN   TRUCK    multipliers sublate iron 
295    57    1    1    41    NULL    0.07    0.01    R    F    10/15/1994    10/12/1994    10/15/1994    NONE    REG
AIR   pains must have to snooze . 
295    0    0    2    38    NULL    0.06    0.06    A    F    12/26/1994    11/14/1994    12/26/1994    NONE    RAIL
idle,enticingdinos solve per 
295    30    0    3    12    NULL    0.02    0.03    A    F    10/17/1994    11/22/1994    10/17/1994    TAKE BACK
RETURN   FOB    dolphins near the slow dinos will hav 
295    78    1    4    7    NULL    0.03    0.02    A    F    09/07/1994    10/09/1994    09/07/1994    TAKE BACK
RETURN   AIR    idle excuses atop the close,stealthy cou 
295    0    0    5    37    NULL    0.08    0.03    R    F    12/25/1994    10/17/1994    12/25/1994    COLLECT COD
REGAIR    permanently bold foxes since the brav 
295    0    0    6    3    NULL    0.01    0.07    R    F    09/10/1994    10/17/1994    09/10/1994    COLLECT COD
AIR   fluffy attainments need  
295    10    1    7    49    NULL    0.04    0.04    R    F    11/24/1994    10/22/1994    11/24/1994    NONE    FOB
quietlyidle  
320    4    3    1    15    NULL    0.10    0.01    R    F    04/11/1993    03/09/1993    04/11/1993    TAKE BACK
RETURN   SHIP    silent instructions kindle permanently regu 
321    16    1    1    24    NULL    0.10    0.02    N    O    02/05/1998    12/29/1997    02/05/1998    COLLECT COD
SHIP   attainments wake ; 
321    33    2    2    29    NULL    0.06    0.07    N    O    11/28/1997    01/01/1998    11/28/1997    TAKE BACK
RETURN   FOB    ideas x_ray with the qui 
321    21    2    3    17    NULL    0.05    0.04    N    O    02/20/1998    12/20/1997    02/20/1998    COLLECT COD
REGAIR    notornis need to was enticingly bold, 
321    31    2    4    10    NULL    0.05    0.02    N    O    02/05/1998    12/14/1997    02/05/1998    DELIVER IN
PERSON   AIR    epitaphs thrash ; carefully permane 
321    31    3    5    11    NULL    0.02    0.01    N    O    02/12/1998    02/07/1998    02/12/1998    DELIVER IN
PERSON   AIR    busy,final 
321    57    1    6    10    NULL    0.10    0.02    N    O    02/04/1998    12/22/1997    02/04/1998    NONE    TRUCK
 careful dugouts hang despite the depende 
322    37    2    1    27    NULL    0.01    0.03    A    F    05/10/1994    06/19/1994    05/10/1994    COLLECT COD
RAIL   even sentiments will  
322    5    3    2    21    NULL    0.10    0.00    A    F    06/10/1994    07/18/1994    06/10/1994    NONE    MAIL
warhorsesbefore the sly,stea 
322    40    0    3    39    NULL    0.04    0.08    R    F    08/19/1994    06/24/1994    08/19/1994    NONE    FOB
quicklyfluffy forges near  
323    15    1    1    21    NULL    0.06    0.07    A    F    10/07/1993    09/30/1993    10/07/1993    TAKE BACK
RETURN   FOB    dogged,ironic 
323    67    1    2    40    NULL    0.05    0.07    A    F    12/08/1993    10/12/1993    12/08/1993    TAKE BACK
RETURN   RAIL    decoys must have 
323    70    2    3    6    NULL    0.06    0.00    A    F    09/06/1993    10/08/1993    09/06/1993    TAKE BACK
RETURN   REG AIR    regularly silent sauternes  
323    37    3    4    19    NULL    0.05    0.04    R    F    12/13/1993    11/21/1993    12/13/1993    TAKE BACK
RETURN   SHIP    foxes despite 
323    34    0    5    41    NULL    0.10    0.02    A    F    10/29/1993    10/25/1993    10/29/1993    COLLECT COD
FOB   busy,brave theodolites might  slowly might  
323    54    3    6    4    NULL    0.01    0.06    R    F    11/06/1993    11/19/1993    11/06/1993    TAKE BACK
RETURN   FOB    asymptotes mold ; 
324    0    0    1    12    NULL    0.10    0.03    A    F    09/03/1994    08/16/1994    09/03/1994    TAKE BACK
RETURN   REG AIR    idle depen 
324    7    2    2    8    NULL    0.05    0.03    A    F    07/10/1994    08/12/1994    07/10/1994    TAKE BACK RETURN
  TRUCK    slow somas sn 
324    0    0    3    34    NULL    0.03    0.01    A    F    07/13/1994    08/31/1994    07/13/1994    DELIVER IN
PERSON   RAIL    slyly careful Tiresias' print prin 
325    41    2    1    23    NULL    0.08    0.01    N    O    10/01/1997    09/02/1997    10/01/1997    COLLECT COD
SHIP   bold depths against the daring notorn 
325    0    0    2    42    NULL    0.08    0.04    N    O    07/31/1997    08/29/1997    07/31/1997    TAKE BACK
RETURN   SHIP    carefully  courts wake furiusly ? 
325    35    2    3    5    NULL    0.09    0.01    N    O    10/12/1997    09/22/1997    10/12/1997    NONE    REG AIR
  blithe,furious forges past the pear 
326    12    2    1    10    NULL    0.08    0.07    R    F    03/18/1994    03/07/1994    03/18/1994    DELIVER IN
PERSON   SHIP    tithes above the patt 
326    0    0    2    23    NULL    0.05    0.06    A    F    01/30/1994    02/04/1994    01/30/1994    DELIVER IN
PERSON   TRUCK    busy,daring realms to the dar 
326    67    1    3    9    NULL    0.08    0.01    R    F    02/08/1994    01/20/1994    02/08/1994    COLLECT COD
AIR   careful,ruthless dependencies 
326    79    2    4    8    NULL    0.09    0.02    A    F    04/09/1994    03/01/1994    04/09/1994    NONE    AIR
sometimesqui 
326    11    0    5    35    NULL    0.07    0.00    R    F    03/23/1994    02/25/1994    03/23/1994    DELIVER IN
PERSON   MAIL    permanently quiet somas grow enticing 
327    0    0    1    35    NULL    0.02    0.03    R    F    11/18/1992    10/14/1992    11/18/1992    TAKE BACK
RETURN   MAIL    enticing sauternes can n 
352    0    0    1    39    NULL    0.08    0.02    A    F    12/27/1993    01/10/1994    12/27/1993    COLLECT COD
REGAIR    depths believe . esca 
353    66    2    1    25    NULL    0.06    0.07    N    O    11/18/1996    09/29/1996    11/18/1996    TAKE BACK
RETURN   TRUCK    final,thin platelets besides  
353    20    1    2    15    NULL    0.04    0.05    N    O    09/27/1996    10/26/1996    09/27/1996    DELIVER IN
PERSON   TRUCK    furious braids sha 
353    72    3    3    30    NULL    0.07    0.03    N    O    12/04/1996    11/17/1996    12/04/1996    TAKE BACK
RETURN   AIR    permanent,quick  
353    5    0    4    49    NULL    0.03    0.04    N    O    09/23/1996    10/18/1996    09/23/1996    NONE    MAIL
quietlyblithe frets will use do 
353    67    3    5    12    NULL    0.08    0.06    N    O    10/28/1996    09/22/1996    10/28/1996    NONE    AIR
multiplierstoward the busy sheaves serv 
353    42    3    6    3    NULL    0.02    0.05    N    O    10/20/1996    10/11/1996    10/20/1996    COLLECT COD
SHIP   final,sly ideas be 
354    42    1    1    16    NULL    0.07    0.06    A    F    08/13/1992    08/29/1992    08/13/1992    COLLECT COD
SHIP   stealthy n 
354    0    0    2    49    NULL    0.08    0.02    R    F    10/29/1992    08/19/1992    10/29/1992    TAKE BACK
RETURN   MAIL    furiusly enticing multipliers ca 
354    30    1    3    13    NULL    0.02    0.03    A    F    08/13/1992    08/18/1992    08/13/1992    COLLECT COD
RAIL   regularly dog 
354    66    2    4    20    NULL    0.01    0.06    A    F    08/29/1992    08/25/1992    08/29/1992    COLLECT COD
TRUCK   pearls play quietly alongside of the  
354    40    3    5    1    NULL    0.04    0.06    R    F    07/24/1992    10/11/1992    07/24/1992    TAKE BACK
RETURN   REG AIR    fluffy, hockey players w 
355    0    0    1    40    NULL    0.05    0.03    A    F    02/22/1995    02/04/1995    02/22/1995    DELIVER IN
PERSON   AIR    thin theodolites need to mo 
355    0    0    2    38    NULL    0.03    0.05    A    F    02/14/1995    02/01/1995    02/14/1995    TAKE BACK
RETURN   SHIP    excuses engage sometimes warh 
355    18    2    3    14    NULL    0.08    0.01    R    F    03/01/1995    01/05/1995    03/01/1995    NONE    TRUCK
 dogged,furious decoys serve shea 
355    27    3    4    5    NULL    0.06    0.02    A    F    12/23/1994    01/22/1995    12/23/1994    DELIVER IN
PERSON   FOB    thin theodolites for the idle,quiet 
355    0    0    5    22    NULL    0.05    0.02    R    F    03/22/1995    02/14/1995    03/22/1995    NONE    MAIL
careful,regulargrouches except the 
356    50    0    1    22    NULL    0.07    0.02    R    F    03/08/1993    04/11/1993    03/08/1993    COLLECT COD
REGAIR    excuses without th 
356    59    0    2    14    NULL    0.02    0.02    R    F    05/23/1993    05/05/1993    05/23/1993    DELIVER IN
PERSON   RAIL    quickly quick foxes past the fin 
356    70    0    3    41    NULL    0.01    0.02    A    F    05/04/1993    04/13/1993    05/04/1993    DELIVER IN
PERSON   MAIL    carefully bold braids could h 
357    0    0    1    38    NULL    0.02    0.03    R    F    06/21/1994    05/10/1994    06/21/1994    COLLECT COD
SHIP   ,quiet braids serve -- foxes behind t 
357    54    3    2    43    NULL    0.03    0.07    A    F    04/17/1994    05/16/1994    04/17/1994    DELIVER IN
PERSON   MAIL    gifts from the even,busy ho 
357    79    3    3    47    NULL    0.04    0.04    A    F    07/09/1994    06/05/1994    07/09/1994    COLLECT COD
FOB    stealthy dinos between the epitaphs nee 
357    71    0    4    1    NULL    0.06    0.07    A    F    06/26/1994    06/14/1994    06/26/1994    NONE    TRUCK
idle,regular dolphins 
357    27    1    5    12    NULL    0.09    0.06    R    F    05/22/1994    05/28/1994    05/22/1994    NONE    AIR
ruthlessdependencies ougth to wake t 
358    28    3    1    31    NULL    0.06    0.06    N    O    04/14/1997    04/05/1997    04/14/1997    COLLECT COD
TRUCK   notornis within th 
358    51    1    2    3    NULL    0.06    0.02    N    O    03/10/1997    03/10/1997    03/10/1997    COLLECT COD
MAIL   careful dinos ougth to p 
358    0    0    3    30    NULL    0.06    0.02    N    O    04/27/1997    03/08/1997    04/27/1997    TAKE BACK
RETURN   FOB    ruthless grouches poach  
358    22    1    4    17    NULL    0.03    0.01    N    O    02/20/1997    03/01/1997    02/20/1997    DELIVER IN
PERSON   SHIP    thin,ironic frets believe careful,ruthless  
358    52    3    5    12    NULL    0.05    0.03    N    O    04/19/1997    04/25/1997    04/19/1997    NONE    MAIL
quietly busy realms t 
359    10    2    1    41    NULL    0.02    0.02    N    O    05/23/1998    07/12/1998    05/23/1998    TAKE BACK
RETURN   AIR    waters ove 
359    2    1    2    42    NULL    0.10    0.01    N    O    09/02/1998    08/08/1998    09/02/1998    TAKE BACK
RETURN   AIR    hockey players beneath the foxes 
359    50    2    3    19    NULL    0.02    0.06    N    O    08/13/1998    08/18/1998    08/13/1998    DELIVER IN
PERSON   SHIP    close,furious sentiments play of the close, 
359    0    0    4    10    NULL    0.08    0.07    N    O    05/28/1998    08/11/1998    05/28/1998    COLLECT COD
TRUCK   frays believe never permanently busy  
359    10    2    5    41    NULL    0.00    0.04    N    O    07/28/1998    06/22/1998    07/28/1998    COLLECT COD
TRUCK   idle,daring theodolites among the bli 
359    0    0    6    34    NULL    0.05    0.06    N    O    06/10/1998    08/14/1998    06/10/1998    NONE    RAIL
stealthilyquiet frets will nod  
384    27    3    1    23    NULL    0.05    0.02    A    F    06/20/1994    05/12/1994    06/20/1994    TAKE BACK
RETURN   SHIP    silent,daring grouches cajole along t 
384    72    3    2    36    NULL    0.01    0.04    A    F    05/02/1994    05/02/1994    05/02/1994    NONE    FOB
watersbreach careful 
384    17    2    3    36    NULL    0.04    0.05    R    F    06/01/1994    06/14/1994    06/01/1994    DELIVER IN
PERSON   REG AIR    regular somas will mold eve 
385    60    2    1    43    NULL    0.07    0.04    N    O    06/29/1997    07/07/1997    06/29/1997    COLLECT COD
TRUCK   courts beh 
385    35    0    2    37    NULL    0.07    0.07    N    O    05/23/1997    06/26/1997    05/23/1997    DELIVER IN
PERSON   FOB    ruthless,busy ho 
385    17    0    3    10    NULL    0.07    0.02    N    O    08/27/1997    06/28/1997    08/27/1997    COLLECT COD
AIR   dolphins through t 
385    16    2    4    49    NULL    0.06    0.05    N    O    05/28/1997    07/29/1997    05/28/1997    COLLECT COD
REGAIR    careful,close instructions promise  
385    28    1    5    40    NULL    0.04    0.07    N    O    08/05/1997    07/22/1997    08/05/1997    TAKE BACK
RETURN   FOB    sly sentiments run brave 
385    0    0    6    13    NULL    0.09    0.07    N    O    07/07/1997    08/02/1997    07/07/1997    NONE    RAIL
closegrouches d 
386    7    1    1    13    NULL    0.04    0.05    A    F    05/23/1992    03/29/1992    05/23/1992    TAKE BACK
RETURN   SHIP    daring,bold sauter 
387    60    0    1    31    NULL    0.07    0.03    N    O    01/10/1997    12/27/1996    01/10/1997    TAKE BACK
RETURN   RAIL    furious,busy platelet 
387    0    0    2    4    NULL    0.08    0.01    N    O    01/02/1997    01/29/1997    01/02/1997    COLLECT COD
TRUCK   platelets will have to promise enti 
387    17    1    3    17    NULL    0.01    0.01    N    O    03/26/1997    01/07/1997    03/26/1997    NONE    SHIP
carefully brave realms shall pro 
388    0    0    1    49    NULL    0.02    0.06    N    O    05/13/1996    06/08/1996    05/13/1996    DELIVER IN
PERSON   AIR    sentiments among the brave re 
388    75    1    2    12    NULL    0.06    0.06    N    O    07/18/1996    06/24/1996    07/18/1996    DELIVER IN
PERSON   TRUCK    excuses over the quick escapa 
388    37    2    3    23    NULL    0.02    0.05    N    O    05/11/1996    06/24/1996    05/11/1996    TAKE BACK
RETURN   REG AIR    even,brave dugouts 
388    60    3    4    47    NULL    0.06    0.06    N    O    04/16/1996    06/30/1996    04/16/1996    COLLECT COD
AIR   enticing,quick hockey players doubt e 
389    23    2    1    37    NULL    0.02    0.06    N    O    11/26/1997    10/16/1997    11/26/1997    NONE    FOB
blithelybrave courts of the grouches 
390    1    2    1    46    NULL    0.10    0.07    A    F    08/13/1992    07/05/1992    08/13/1992    NONE    SHIP
stealthy,escapade 
390    32    1    2    16    NULL    0.02    0.04    A    F    06/11/1992    08/07/1992    06/11/1992    TAKE BACK
RETURN   RAIL    warthogs must have to mold busily . 
391    58    2    1    29    NULL    0.09    0.00    N    O    03/31/1997    02/19/1997    03/31/1997    TAKE BACK
RETURN   RAIL    hockey players c 
391    9    3    2    38    NULL    0.00    0.04    N    O    12/28/1996    02/26/1997    12/28/1996    NONE    FOB
silentfrays print among the epitaphs bold  
391    0    0    3    39    NULL    0.09    0.07    N    O    12/11/1996    01/07/1997    12/11/1996    TAKE BACK
RETURN   FOB    busy foxes must have to mold  
391    60    2    4    15    NULL    0.06    0.02    N    O    03/03/1997    02/05/1997    03/03/1997    NONE    AIR
furiousgifts within the soma 
391    35    3    5    38    NULL    0.06    0.00    N    O    01/31/1997    02/22/1997    01/31/1997    DELIVER IN
PERSON   SHIP    boldly entici 
416    10    1    1    2    NULL    0.03    0.02    A    F    03/29/1994    04/25/1994    03/29/1994    NONE    AIR
silent,regulardepths nod no perman 
416    58    3    2    8    NULL    0.05    0.08    R    F    06/11/1994    04/20/1994    06/11/1994    DELIVER IN
PERSON   TRUCK    busy,idle Tir 
416    0    0    3    42    NULL    0.01    0.00    R    F    04/30/1994    03/20/1994    04/30/1994    COLLECT COD
RAIL   ironic,brave dependencies near the ev 
417    71    1    1    44    NULL    0.07    0.06    R    F    12/26/1993    11/16/1993    12/26/1993    NONE    MAIL
 sly frets shall have to use  
417    54    1    2    32    NULL    0.02    0.06    R    F    12/16/1993    11/27/1993    12/16/1993    COLLECT COD
MAIL   closely blithe foxes try to a 
418    15    0    1    48    NULL    0.07    0.02    N    O    09/06/1996    07/01/1996    09/06/1996    NONE    SHIP
thin,close ideas must have to grow ? 
418    1    1    2    44    NULL    0.01    0.05    N    O    07/04/1996    06/26/1996    07/04/1996    COLLECT COD
TRUCK   closely sly depths up the silent braids  
418    29    2    3    27    NULL    0.10    0.08    N    O    08/15/1996    06/24/1996    08/15/1996    DELIVER IN
PERSON   REG AIR    regular,final decoys agains 
418    0    0    4    10    NULL    0.01    0.03    N    O    06/09/1996    08/10/1996    06/09/1996    TAKE BACK
RETURN   TRUCK    Tiresias' across t 
418    16    3    5    50    NULL    0.01    0.05    N    O    08/03/1996    07/19/1996    08/03/1996    COLLECT COD
FOB   quick,sly braids k 
419    69    2    1    22    NULL    0.07    0.06    A    F    05/23/1993    03/16/1993    05/23/1993    COLLECT COD
TRUCK   busy  believe ironically sentime 
419    3    0    2    22    NULL    0.03    0.08    R    F    04/01/1993    03/23/1993    04/01/1993    NONE    FOB
silentrealms duri 
420    44    2    1    16    NULL    0.05    0.02    R    F    10/12/1993    10/29/1993    10/12/1993    NONE    TRUCK
 busily stealthy Tiresias' should have to 
420    63    1    2    42    NULL    0.01    0.08    R    F    11/24/1993    11/30/1993    11/24/1993    COLLECT COD
SHIP   excuses thrash notornis not 
421    0    0    1    2    NULL    0.04    0.04    N    O    02/16/1996    04/10/1996    02/16/1996    NONE    AIR
brave,doggedwarthogs beyond the 
421    38    2    2    12    NULL    0.06    0.07    N    O    05/11/1996    03/11/1996    05/11/1996    DELIVER IN
PERSON   MAIL    dogged,carefu 
421    75    2    3    24    NULL    0.08    0.04    N    O    04/05/1996    03/21/1996    04/05/1996    COLLECT COD
REGAIR    permanent,fluffy hockey players maintain 
421    40    2    4    21    NULL    0.09    0.01    N    O    03/07/1996    04/17/1996    03/07/1996    NONE    TRUCK
 thinly dar 
421    0    0    5    38    NULL    0.06    0.01    N    O    03/08/1996    04/19/1996    03/08/1996    TAKE BACK
RETURN   FOB    slow pinto beans a 
421    0    0    6    9    NULL    0.01    0.03    N    O    03/25/1996    04/30/1996    03/25/1996    COLLECT COD
RAIL   slow multipliers would dete 
421    10    3    7    42    NULL    0.07    0.05    N    O    05/31/1996    03/06/1996    05/31/1996    COLLECT COD
FOB   braids braid  
422    73    3    1    23    NULL    0.01    0.06    A    F    07/26/1994    10/06/1994    07/26/1994    DELIVER IN
PERSON   RAIL    quick patterns believe above the enticin 
422    0    0    2    40    NULL    0.00    0.07    R    F    09/26/1994    09/03/1994    09/26/1994    COLLECT COD
AIR   stealthy warthogs sol 
422    78    2    3    18    NULL    0.07    0.00    A    F    09/12/1994    10/10/1994    09/12/1994    COLLECT COD
MAIL   quiet,sly pinto beans do ca 
422    23    1    4    6    NULL    0.06    0.01    A    F    08/25/1994    10/16/1994    08/25/1994    DELIVER IN
PERSON   SHIP    daring gifts despite the furious,en 
422    55    1    5    37    NULL    0.05    0.07    R    F    10/15/1994    08/19/1994    10/15/1994    COLLECT COD
RAIL   always even realms must have to was 
422    74    1    6    27    NULL    0.06    0.05    R    F    08/12/1994    09/03/1994    08/12/1994    COLLECT COD
SHIP   braids could have to affix  
422    29    1    7    50    NULL    0.03    0.06    R    F    11/04/1994    10/01/1994    11/04/1994    COLLECT COD
AIR   quick excuses throughout th 
423    1    3    1    2    NULL    0.01    0.06    N    O    08/01/1997    07/11/1997    08/01/1997    NONE    SHIP
ruthless,permanenttheodolites do unwind 
423    75    0    2    50    NULL    0.03    0.05    N    O    06/21/1997    08/04/1997    06/21/1997    DELIVER IN
PERSON   RAIL    ironically blithe realms eat ; cour 
423    72    2    3    22    NULL    0.05    0.07    N    O    07/28/1997    08/23/1997    07/28/1997    TAKE BACK
RETURN   SHIP    ,bold attainments try to detect in place 
423    5    3    4    34    NULL    0.04    0.07    N    O    08/15/1997    07/09/1997    08/15/1997    DELIVER IN
PERSON   RAIL    quiet,dogged dug 
423    51    0    5    26    NULL    0.01    0.03    N    O    07/14/1997    07/17/1997    07/14/1997    DELIVER IN
PERSON   TRUCK     pearls try to a 
423    0    2    6    27    NULL    0.04    0.01    N    O    09/05/1997    07/15/1997    09/05/1997    DELIVER IN
PERSON   MAIL    pains integrate ; brave  
448    39    0    1    28    NULL    0.10    0.02    R    F    05/27/1995    04/11/1995    05/27/1995    DELIVER IN
PERSON   TRUCK    dogged,regular dinos might doubt acro 
448    28    2    2    11    NULL    0.01    0.05    R    F    02/28/1995    03/19/1995    02/28/1995    TAKE BACK
RETURN   REG AIR    stealthy courts above 
448    41    1    3    19    NULL    0.08    0.05    R    F    04/29/1995    03/07/1995    04/29/1995    NONE    FOB
regular,notornis nag thinly pearls - 
448    58    2    4    13    NULL    0.05    0.02    R    F    04/18/1995    04/09/1995    04/18/1995    NONE    AIR
eventithe 
448    52    0    5    22    NULL    0.03    0.02    A    F    04/15/1995    04/19/1995    04/15/1995    NONE    SHIP
permanent theodolites must have  
449    0    0    1    3    NULL    0.06    0.07    A    F    03/14/1993    04/07/1993    03/14/1993    COLLECT COD
FOB   enticing inst 
449    13    2    2    19    NULL    0.00    0.01    A    F    03/18/1993    03/09/1993    03/18/1993    COLLECT COD
RAIL   thinly close  
449    58    2    3    41    NULL    0.04    0.05    R    F    03/19/1993    03/24/1993    03/19/1993    COLLECT COD
FOB   even pains with  
449    30    2    4    33    NULL    0.07    0.01    R    F    04/08/1993    04/18/1993    04/08/1993    COLLECT COD
RAIL   escapades do doubt idly ? bus 
450    19    0    1    25    NULL    0.02    0.05    A    F    09/24/1993    09/28/1993    09/24/1993    COLLECT COD
AIR   daringly idle warthog 
450    0    0    2    3    NULL    0.05    0.07    A    F    10/29/1993    10/13/1993    10/29/1993    DELIVER IN
PERSON   RAIL    busy,ironi 
450    26    2    3    16    NULL    0.10    0.06    A    F    11/09/1993    08/22/1993    11/09/1993    TAKE BACK
RETURN   REG AIR    ironically thin gifts 
450    69    0    4    29    NULL    0.04    0.00    A    F    09/16/1993    09/06/1993    09/16/1993    DELIVER IN
PERSON   MAIL    grouches snooze instead of the dogg 
450    24    1    5    40    NULL    0.10    0.00    R    F    10/06/1993    08/17/1993    10/06/1993    COLLECT COD
TRUCK   always permanent pearls serve near the slow 
450    62    1    6    9    NULL    0.01    0.01    R    F    09/18/1993    09/03/1993    09/18/1993    COLLECT COD
AIR   escapades use -- 
451    32    1    1    19    NULL    0.04    0.01    A    F    12/21/1993    01/24/1994    12/21/1993    NONE    MAIL
regularly dogged d 
451    5    0    2    3    NULL    0.06    0.02    A    F    02/18/1994    01/20/1994    02/18/1994    NONE    AIR
escapadesmay wake 
451    0    0    3    42    NULL    0.04    0.05    A    F    12/21/1993    02/22/1994    12/21/1993    DELIVER IN
PERSON   FOB    slow sheaves nag doggedly u 
451    46    2    4    6    NULL    0.09    0.03    A    F    01/26/1994    01/20/1994    01/26/1994    COLLECT COD
MAIL   permanent,slow tithes up the carefu 
452    0    0    1    20    NULL    0.04    0.05    N    O    01/16/1998    02/05/1998    01/16/1998    DELIVER IN
PERSON   RAIL    regular forges regular forge x_ray : 
453    59    2    1    43    NULL    0.05    0.04    N    O    05/08/1997    06/25/1997    05/08/1997    TAKE BACK
RETURN   FOB    always close braids will un 
453    58    2    2    10    NULL    0.06    0.02    N    O    04/23/1997    06/18/1997    04/23/1997    TAKE BACK
RETURN   TRUCK    escapades toward the permanen 
454    48    1    1    2    NULL    0.06    0.07    N    O    09/07/1997    10/02/1997    09/07/1997    DELIVER IN
PERSON   MAIL    stealthy braids beneath the busily steal 
454    7    0    2    18    NULL    0.01    0.05    N    O    10/24/1997    08/16/1997    10/24/1997    COLLECT COD
MAIL   even,bold asymptotes among th 
454    9    2    3    4    NULL    0.05    0.06    N    O    08/29/1997    09/10/1997    08/29/1997    NONE    AIR
bravelyquick gifts outside t 
454    39    2    4    31    NULL    0.03    0.07    N    O    10/15/1997    09/15/1997    10/15/1997    NONE    AIR
slowpearls besides the foxes do lose 
455    19    1    1    37    NULL    0.03    0.07    R    F    12/31/1993    11/28/1993    12/31/1993    TAKE BACK
RETURN   SHIP    quick,permanent frays thrash boldly 
455    60    1    2    35    NULL    0.09    0.03    A    F    11/21/1993    12/15/1993    11/21/1993    COLLECT COD
MAIL   always final platelets toward the b 
455    19    2    3    9    NULL    0.06    0.07    R    F    12/21/1993    01/13/1994    12/21/1993    COLLECT COD
REGAIR    careful,idle gifts print alwa 
455    58    1    4    21    NULL    0.09    0.08    R    F    02/06/1994    01/01/1994    02/06/1994    NONE    RAIL
careful,sly patterns besides the 
455    0    0    5    4    NULL    0.01    0.02    A    F    01/10/1994    01/14/1994    01/10/1994    NONE    AIR
brave,busycourts should have to cajole  
455    30    2    6    39    NULL    0.01    0.03    A    F    10/29/1993    01/23/1994    10/29/1993    TAKE BACK
RETURN   REG AIR    warhorses among the regularly 
455    0    0    7    9    NULL    0.08    0.05    A    F    02/01/1994    01/09/1994    02/01/1994    NONE    FOB
slyhockey playe 
480    0    0    1    28    NULL    0.01    0.07    A    F    09/01/1992    10/12/1992    09/01/1992    TAKE BACK
RETURN   MAIL    blithe,bold somas doubt carefully --  
480    41    3    2    36    NULL    0.10    0.05    R    F    09/15/1992    10/13/1992    09/15/1992    NONE    FOB
idle,stealthy
481    77    0    1    17    NULL    0.10    0.03    N    O    06/05/1997    06/20/1997    06/05/1997    NONE    REG
AIR   quiet,furious fr 
481    0    0    2    42    NULL    0.10    0.04    N    O    06/16/1997    07/08/1997    06/16/1997    DELIVER IN
PERSON   TRUCK    regularly silent t 
481    12    3    3    15    NULL    0.01    0.06    N    O    05/08/1997    06/17/1997    05/08/1997    NONE    TRUCK
 realms could  
481    56    2    4    28    NULL    0.09    0.00    N    O    05/23/1997    07/09/1997    05/23/1997    COLLECT COD
MAIL   asymptotes wi 
481    73    0    5    13    NULL    0.10    0.06    N    O    06/25/1997    05/15/1997    06/25/1997    COLLECT COD
REGAIR    bold,close warhorses  
482    13    2    1    36    NULL    0.10    0.03    A    F    06/15/1994    08/22/1994    06/15/1994    NONE    RAIL
quickly permanent instructions acro 
482    2    2    2    16    NULL    0.06    0.01    A    F    08/07/1994    07/29/1994    08/07/1994    COLLECT COD
MAIL   theodolites around the busy,furious inst 
482    29    1    3    19    NULL    0.05    0.08    A    F    07/28/1994    07/18/1994    07/28/1994    NONE    TRUCK
 quietly ru 
482    29    1    4    49    NULL    0.02    0.08    A    F    07/19/1994    07/24/1994    07/19/1994    NONE    AIR
carefuldepths atop t 
482    0    0    5    29    NULL    0.09    0.01    R    F    06/08/1994    07/11/1994    06/08/1994    COLLECT COD
TRUCK   slyly bold pearls could are silently ! busy 
482    0    0    6    36    NULL    0.05    0.05    A    F    09/19/1994    08/03/1994    09/19/1994    COLLECT COD
FOB   busy sentiments shall da 
482    61    3    7    22    NULL    0.04    0.03    A    F    09/23/1994    08/18/1994    09/23/1994    TAKE BACK
RETURN   AIR    daring escapades p 
483    54    3    1    42    NULL    0.09    0.03    N    O    03/06/1997    05/06/1997    03/06/1997    COLLECT COD
RAIL   dinos shall have to engage closely ! 
483    0    0    2    4    NULL    0.08    0.02    N    O    02/25/1997    05/04/1997    02/25/1997    COLLECT COD
SHIP   stealthily stealthy idea 
483    40    3    3    1    NULL    0.10    0.07    N    O    05/17/1997    03/19/1997    05/17/1997    NONE    AIR
furiousasymptotes eat boldly . care 
483    49    3    4    1    NULL    0.02    0.07    N    O    06/01/1997    04/22/1997    06/01/1997    DELIVER IN
PERSON   FOB    Tiresias' solve solv 
483    0    0    5    45    NULL    0.03    0.07    N    O    06/18/1997    04/02/1997    06/18/1997    DELIVER IN
PERSON   SHIP    slowly stealthy braids grow somas ? some 
483    14    1    6    45    NULL    0.08    0.04    N    O    06/11/1997    03/20/1997    06/11/1997    DELIVER IN
PERSON   SHIP    pinto beans integrate silentl 
483    55    3    7    37    NULL    0.01    0.04    N    O    05/04/1997    05/06/1997    05/04/1997    NONE    SHIP
idle,ironic grouches according to t 
484    0    0    1    41    NULL    0.08    0.07    N    O    12/10/1996    01/10/1997    12/10/1996    COLLECT COD
REGAIR    permanently  ideas within the quiet 
484    65    0    2    45    NULL    0.03    0.05    N    O    02/09/1997    01/26/1997    02/09/1997    TAKE BACK
RETURN   MAIL    theodolites theodolite kind 
485    22    0    1    44    NULL    0.02    0.03    N    O    02/06/1998    12/03/1997    02/06/1998    COLLECT COD
AIR   quiet platelets impress imp 
485    69    0    2    27    NULL    0.02    0.02    N    O    01/23/1998    12/19/1997    01/23/1998    DELIVER IN
PERSON   AIR    fluffy frets thr 
485    62    1    3    33    NULL    0.06    0.05    N    O    11/09/1997    12/28/1997    11/09/1997    COLLECT COD
AIR   fluffy,fluffy fluff affix busily !  
486    6    3    1    23    NULL    0.06    0.08    A    F    01/10/1994    03/04/1994    01/10/1994    TAKE BACK
RETURN   MAIL    sly courts 
486    69    1    2    27    NULL    0.02    0.03    A    F    03/03/1994    02/11/1994    03/03/1994    NONE    SHIP
quick,close Tiresias' from the f 
486    35    0    3    30    NULL    0.10    0.02    R    F    03/01/1994    03/20/1994    03/01/1994    NONE    MAIL
even,blith 
487    0    0    1    20    NULL    0.02    0.02    R    F    02/25/1993    01/06/1993    02/25/1993    COLLECT COD
RAIL   silent Tiresias' a 
512    4    0    1    12    NULL    0.01    0.04    A    F    01/22/1994    11/09/1993    01/22/1994    TAKE BACK
RETURN   SHIP    close,thin attainm 
513    4    2    1    42    NULL    0.00    0.04    R    F    04/12/1994    03/28/1994    04/12/1994    NONE    TRUCK
quick orbits sublate always 
513    3    2    2    7    NULL    0.00    0.07    R    F    02/18/1994    02/26/1994    02/18/1994    TAKE BACK RETURN
  RAIL    enticing,idle escapades affix fu 
514    8    1    1    20    NULL    0.01    0.01    N    O    04/29/1998    03/11/1998    04/29/1998    NONE    AIR
slylyregular sauternes grow always b 
514    37    1    2    47    NULL    0.01    0.03    N    O    03/02/1998    03/27/1998    03/02/1998    NONE    TRUCK
 never blithe courts i 
514    24    1    3    5    NULL    0.08    0.04    N    O    03/25/1998    04/01/1998    03/25/1998    DELIVER IN
PERSON   MAIL    dogged,daring depths sha 
514    6    1    4    46    NULL    0.09    0.01    N    O    03/04/1998    03/27/1998    03/04/1998    COLLECT COD
AIR   close,close asym 
514    3    3    5    46    NULL    0.05    0.04    N    O    01/14/1998    03/25/1998    01/14/1998    DELIVER IN
PERSON   MAIL    idle,busy sheaves  
514    18    1    6    28    NULL    0.08    0.01    N    O    05/06/1998    03/17/1998    05/06/1998    DELIVER IN
PERSON   RAIL    decoys during the stealthy gifts brea 
514    77    1    7    33    NULL    0.02    0.00    N    O    02/05/1998    03/16/1998    02/05/1998    NONE    MAIL
fluffy sheaves according to the ideas 
515    0    0    1    22    NULL    0.03    0.08    N    O    10/22/1996    08/07/1996    10/22/1996    COLLECT COD
FOB   stealthy grouches  
515    9    3    2    43    NULL    0.05    0.03    N    O    07/07/1996    08/15/1996    07/07/1996    TAKE BACK
RETURN   FOB      notornis detect idly over the grouc 
515    0    0    3    20    NULL    0.05    0.03    N    O    10/03/1996    09/07/1996    10/03/1996    NONE    FOB
fluffy,ruthlessmu 
515    36    3    4    31    NULL    0.05    0.01    N    O    07/09/1996    08/30/1996    07/09/1996    COLLECT COD
FOB   dinos along the sheaves was d 
515    0    0    5    31    NULL    0.05    0.05    N    O    08/28/1996    08/22/1996    08/28/1996    NONE    REG AIR
  doggedly  tithes will use us  
515    0    0    6    36    NULL    0.00    0.08    N    O    10/15/1996    09/06/1996    10/15/1996    DELIVER IN
PERSON   TRUCK    instructions lose alo 
516    0    0    1    49    NULL    0.06    0.07    N    O    11/01/1997    11/08/1997    11/01/1997    COLLECT COD
SHIP   pinto beans over t 
516    0    0    2    7    NULL    0.09    0.03    N    O    09/26/1997    10/06/1997    09/26/1997    DELIVER IN
PERSON   TRUCK    bravely slow ideas shall 
517    67    2    1    34    NULL    0.01    0.07    R    F    08/23/1992    08/26/1992    08/23/1992    TAKE BACK
RETURN   MAIL    theodolites e 
517    4    3    2    1    NULL    0.08    0.04    A    F    10/07/1992    08/19/1992    10/07/1992    TAKE BACK RETURN
  AIR    platelets inside t 
517    74    0    3    30    NULL    0.10    0.04    A    F    08/10/1992    08/15/1992    08/10/1992    DELIVER IN
PERSON   TRUCK    daring,careful decoys hang under 
518    77    1    1    11    NULL    0.01    0.08    N    O    03/27/1998    02/19/1998    03/27/1998    DELIVER IN
PERSON   AIR    slow,dogged dolphins mold sil 
518    3    2    2    21    NULL    0.00    0.02    N    O    02/21/1998    01/15/1998    02/21/1998    COLLECT COD
AIR   ruthless warhorses ma 
518    0    0    3    28    NULL    0.04    0.02    N    O    03/19/1998    01/19/1998    03/19/1998    NONE    TRUCK
quick theodolites tow 
518    0    0    4    35    NULL    0.04    0.01    N    O    02/14/1998    03/10/1998    02/14/1998    NONE    MAIL
dependenciesabout th 
518    47    2    5    37    NULL    0.06    0.04    N    O    04/06/1998    01/29/1998    04/06/1998    TAKE BACK
RETURN   FOB    regular,even dugouts will believe ! 
518    0    0    6    27    NULL    0.03    0.07    N    O    01/30/1998    02/13/1998    01/30/1998    COLLECT COD
AIR   blithely stealthy grouch 
519    60    2    1    13    NULL    0.09    0.01    A    F    09/13/1994    11/22/1994    09/13/1994    DELIVER IN
PERSON   FOB    sly,permanent courts ougth to mold forge 
544    74    3    1    28    NULL    0.00    0.03    A    F    07/19/1992    07/24/1992    07/19/1992    COLLECT COD
AIR   ,quiet pinto beans to 
544    58    0    2    22    NULL    0.07    0.05    A    F    06/14/1992    07/23/1992    06/14/1992    COLLECT COD
FOB   brave frays impress idly multipliers  
544    10    1    3    42    NULL    0.00    0.02    R    F    07/10/1992    08/06/1992    07/10/1992    NONE    TRUCK
 enticing,close escapades x_ray exce 
544    27    0    4    18    NULL    0.01    0.02    R    F    06/20/1992    07/26/1992    06/20/1992    DELIVER IN
PERSON   AIR    evenly brave attainments x_ra 
545    59    2    1    31    NULL    0.07    0.02    R    F    09/09/1993    08/20/1993    09/09/1993    DELIVER IN
PERSON   REG AIR    thinly close hoc 
545    51    0    2    46    NULL    0.03    0.06    A    F    08/24/1993    09/21/1993    08/24/1993    COLLECT COD
REGAIR    bold,stealthy fr 
545    78    3    3    49    NULL    0.01    0.05    A    F    08/13/1993    09/19/1993    08/13/1993    COLLECT COD
AIR   stealthy,regular dependencies do prin 
545    25    3    4    7    NULL    0.01    0.03    R    F    08/05/1993    08/08/1993    08/05/1993    COLLECT COD
TRUCK   daring depths may integrate m 
546    37    0    1    19    NULL    0.02    0.02    A    F    03/04/1993    01/31/1993    03/04/1993    TAKE BACK
RETURN   SHIP    sly,final pinto beans do lose quiet 
546    24    0    2    3    NULL    0.01    0.05    A    F    01/11/1993    02/27/1993    01/11/1993    COLLECT COD
SHIP   dinos around the regular warthogs sho 
546    14    3    3    39    NULL    0.04    0.04    A    F    04/02/1993    02/18/1993    04/02/1993    NONE    MAIL
regular,daring notorn 
547    54    1    1    3    NULL    0.06    0.08    A    F    08/26/1994    08/08/1994    08/26/1994    NONE    MAIL
ideaseat about the sly,dogged tithes 
547    0    0    2    10    NULL    0.01    0.04    A    F    07/19/1994    08/31/1994    07/19/1994    NONE    REG AIR
  fluffy grouches  
547    74    2    3    19    NULL    0.08    0.03    A    F    10/09/1994    08/24/1994    10/09/1994    NONE    SHIP
ideas over the blithe,blithe sauter 
548    54    0    1    33    NULL    0.09    0.03    A    F    07/01/1992    05/22/1992    07/01/1992    DELIVER IN
PERSON   AIR    thin asymptotes be 
548    13    0    2    9    NULL    0.04    0.03    A    F    03/22/1992    05/10/1992    03/22/1992    DELIVER IN
PERSON   SHIP     lose evenly across the bold,even p 
548    24    2    3    40    NULL    0.04    0.07    A    F    05/25/1992    05/13/1992    05/25/1992    TAKE BACK
RETURN   AIR    busy,furious theodolites 
548    0    0    4    36    NULL    0.06    0.08    A    F    05/24/1992    04/20/1992    05/24/1992    TAKE BACK
RETURN   MAIL     stealthy warhor 
549    41    3    1    13    NULL    0.09    0.05    R    F    07/21/1994    05/10/1994    07/21/1994    NONE    FOB
fretsshall unwind foxes 
549    52    3    2    28    NULL    0.00    0.03    R    F    04/26/1994    05/09/1994    04/26/1994    DELIVER IN
PERSON   RAIL    dependencies in place of the  
550    16    1    1    43    NULL    0.05    0.07    R    F    07/02/1993    06/21/1993    07/02/1993    COLLECT COD
AIR   idle,final orbits would doubt furiu 
550    12    3    2    48    NULL    0.08    0.03    R    F    08/13/1993    07/22/1993    08/13/1993    NONE    SHIP
pinto beans snooze silently ! 
550    27    1    3    1    NULL    0.09    0.08    A    F    08/29/1993    06/29/1993    08/29/1993    TAKE BACK
RETURN   REG AIR    idle multipliers kind 
550    59    0    4    21    NULL    0.00    0.04    R    F    06/08/1993    07/16/1993    06/08/1993    NONE    MAIL
thin,idle ideas sublate instead  
550    17    2    5    40    NULL    0.10    0.01    R    F    08/26/1993    07/07/1993    08/26/1993    COLLECT COD
RAIL   theodolites doze idly de 
551    0    0    1    12    NULL    0.07    0.06    N    O    07/28/1998    06/24/1998    07/28/1998    DELIVER IN
PERSON   MAIL    permanently blithe sentimen 
551    68    2    2    4    NULL    0.03    0.08    N    O    05/26/1998    06/18/1998    05/26/1998    COLLECT COD
AIR   courts against the sauterne 
551    3    2    3    21    NULL    0.06    0.07    N    O    06/28/1998    06/18/1998    06/28/1998    COLLECT COD
AIR   permanently enticing  
551    43    2    4    35    NULL    0.06    0.01    N    O    07/09/1998    06/09/1998    07/09/1998    COLLECT COD
TRUCK   decoys hinder regularly across t 
551    52    0    5    48    NULL    0.05    0.07    N    O    06/20/1998    06/16/1998    06/20/1998    TAKE BACK
RETURN   REG AIR    regularly regular orb 
551    18    2    6    11    NULL    0.02    0.02    N    O    04/25/1998    05/28/1998    04/25/1998    TAKE BACK
RETURN   MAIL    platelets boost ruthless 
551    0    0    7    22    NULL    0.07    0.01    N    O    04/29/1998    07/07/1998    04/29/1998    DELIVER IN
PERSON   FOB    instructions poach ; dependencie 
576    0    0    1    5    NULL    0.04    0.08    A    F    05/21/1992    07/13/1992    05/21/1992    TAKE BACK RETURN
  SHIP    dogged fra 
577    0    0    1    15    NULL    0.00    0.08    N    O    12/02/1996    10/28/1996    12/02/1996    NONE    TRUCK
even,bold dolphi 
577    61    2    2    29    NULL    0.00    0.01    N    O    11/15/1996    11/01/1996    11/15/1996    NONE    MAIL
quickly  hockey players ins 
577    60    1    3    33    NULL    0.09    0.04    N    O    09/29/1996    09/30/1996    09/29/1996    DELIVER IN
PERSON   TRUCK    asymptotes th 
577    34    3    4    28    NULL    0.03    0.07    N    O    10/08/1996    09/30/1996    10/08/1996    COLLECT COD
FOB   busily regular depths hinder  
577    0    0    5    19    NULL    0.09    0.02    N    O    09/27/1996    11/19/1996    09/27/1996    NONE    REG AIR
  careful multipli 
577    72    3    6    43    NULL    0.04    0.08    N    O    10/02/1996    10/20/1996    10/02/1996    NONE    SHIP
brave escapades  
578    54    2    1    35    NULL    0.05    0.04    N    O    11/21/1995    12/04/1995    11/21/1995    COLLECT COD
REGAIR    platelets beh 
579    0    0    1    24    NULL    0.03    0.08    A    F    08/23/1994    08/09/1994    08/23/1994    NONE    SHIP
neverenticing frets after the e 
579    63    1    2    11    NULL    0.07    0.02    A    F    09/23/1994    08/02/1994    09/23/1994    DELIVER IN
PERSON   FOB    daring,brave  
579    0    0    3    42    NULL    0.04    0.05    R    F    09/17/1994    07/09/1994    09/17/1994    NONE    REG AIR
  thin courts beside the sauter 
580    0    0    1    28    NULL    0.06    0.00    R    F    03/13/1994    03/19/1994    03/13/1994    COLLECT COD
MAIL   patterns from 
581    9    3    1    39    NULL    0.09    0.02    A    F    05/26/1993    05/08/1993    05/26/1993    TAKE BACK
RETURN   AIR    pains between the instructions m 
581    1    2    2    48    NULL    0.03    0.03    R    F    03/19/1993    05/05/1993    03/19/1993    DELIVER IN
PERSON   TRUCK    ruthless forges are fluffily about th 
581    70    2    3    24    NULL    0.06    0.07    A    F    06/10/1993    04/29/1993    06/10/1993    NONE    TRUCK
 fluffy,silent orbits  
581    0    0    4    5    NULL    0.05    0.03    R    F    06/13/1993    05/10/1993    06/13/1993    DELIVER IN
PERSON   MAIL    warhorses might nod ironic instructions ! c 
581    9    2    5    45    NULL    0.08    0.07    R    F    06/03/1993    04/17/1993    06/03/1993    TAKE BACK
RETURN   RAIL    sometimes  ideas m 
581    0    0    6    12    NULL    0.03    0.02    A    F    03/09/1993    05/10/1993    03/09/1993    NONE    REG AIR
  stealthy ideas according to t 
581    66    3    7    7    NULL    0.07    0.08    R    F    05/04/1993    04/21/1993    05/04/1993    TAKE BACK
RETURN   SHIP    idle asymptot 
582    0    0    1    4    NULL    0.02    0.00    R    F    07/05/1994    07/27/1994    07/05/1994    COLLECT COD
SHIP   quietly slow som 
582    47    2    2    32    NULL    0.09    0.05    R    F    06/23/1994    08/27/1994    06/23/1994    COLLECT COD
AIR   quickly stealthy asympto 
582    42    1    3    34    NULL    0.03    0.02    R    F    08/29/1994    08/22/1994    08/29/1994    COLLECT COD
SHIP   orbits orbit hang with t 
583    38    1    1    4    NULL    0.09    0.07    A    F    02/24/1995    02/02/1995    02/24/1995    COLLECT COD
AIR   instructions need to kindle ruthlessly ; 
608    0    0    1    11    NULL    0.04    0.04    R    F    02/09/1994    03/28/1994    02/09/1994    TAKE BACK
RETURN   SHIP    final,daring decoys dazzle doggedly 
608    69    2    2    33    NULL    0.09    0.03    R    F    05/04/1994    03/01/1994    05/04/1994    COLLECT COD
MAIL   frets lose 
609    78    2    1    12    NULL    0.09    0.03    R    F    02/22/1994    05/18/1994    02/22/1994    TAKE BACK
RETURN   FOB    thin,regular depths thin 
609    74    2    2    26    NULL    0.08    0.07    R    F    05/17/1994    04/27/1994    05/17/1994    NONE    TRUCK
  ideas might solve boldly ? 
610    41    2    1    38    NULL    0.09    0.01    N    O    12/28/1997    11/11/1997    12/28/1997    DELIVER IN
PERSON   MAIL     should dazzle quietl 
610    23    0    2    32    NULL    0.09    0.02    N    O    01/15/1998    11/28/1997    01/15/1998    DELIVER IN
PERSON   RAIL    daringly ironic asymptotes accor 
611    0    0    1    34    NULL    0.05    0.00    N    O    11/19/1995    11/18/1995    11/19/1995    COLLECT COD
FOB   ironic courts after the final pains migh 
612    40    0    1    38    NULL    0.07    0.02    N    O    11/20/1997    11/07/1997    11/20/1997    TAKE BACK
RETURN   AIR    busily blithe epitaphs must unwind final 
612    79    2    2    29    NULL    0.04    0.06    N    O    10/14/1997    11/15/1997    10/14/1997    DELIVER IN
PERSON   REG AIR    quietly furious pearls a 
612    42    2    3    37    NULL    0.05    0.04    N    O    10/19/1997    11/27/1997    10/19/1997    DELIVER IN
PERSON   REG AIR    final, escapades do impress slowly steal 
612    0    3    4    15    NULL    0.06    0.08    N    O    12/02/1997    11/25/1997    12/02/1997    DELIVER IN
PERSON   MAIL    idle instructions at the silent,even  
613    61    2    1    20    NULL    0.04    0.06    N    O    02/01/1998    01/22/1998    02/01/1998    NONE    REG
AIR   idly silent p 
613    6    1    2    6    NULL    0.05    0.04    N    O    01/07/1998    01/04/1998    01/07/1998    DELIVER IN
PERSON   REG AIR    furious Tiresias'  
613    70    1    3    44    NULL    0.01    0.05    N    O    01/18/1998    01/27/1998    01/18/1998    TAKE BACK
RETURN   SHIP    fluffily quick somas grow  th 
613    44    0    4    17    NULL    0.00    0.05    N    O    01/31/1998    01/12/1998    01/31/1998    COLLECT COD
REGAIR    silent hockey players be 
613    31    2    5    10    NULL    0.09    0.01    N    O    11/23/1997    01/08/1998    11/23/1997    DELIVER IN
PERSON   TRUCK    quiet,idle epitaphs inside the enticing, 
613    42    1    6    6    NULL    0.01    0.06    N    O    02/22/1998    01/27/1998    02/22/1998    COLLECT COD
AIR   never ruthles 
614    55    1    1    50    NULL    0.10    0.02    R    F    11/17/1992    12/10/1992    11/17/1992    DELIVER IN
PERSON   FOB    regularly ruthless orbits t 
614    59    1    2    4    NULL    0.08    0.03    R    F    02/02/1993    01/10/1993    02/02/1993    COLLECT COD
REGAIR    even attainments 
614    51    3    3    40    NULL    0.03    0.01    R    F    01/28/1993    01/15/1993    01/28/1993    TAKE BACK
RETURN   FOB    careful fr 
614    0    0    4    13    NULL    0.04    0.00    R    F    02/20/1993    01/21/1993    02/20/1993    NONE    MAIL
enticing,ruthlessforges inst 
615    0    0    1    48    NULL    0.00    0.06    N    O    03/27/1997    03/06/1997    03/27/1997    TAKE BACK
RETURN   FOB    dogged,busy warthogs over the 
615    59    1    2    46    NULL    0.03    0.03    N    O    03/21/1997    03/09/1997    03/21/1997    TAKE BACK
RETURN   SHIP    permanent,furious patterns eat ! 
615    7    1    3    16    NULL    0.04    0.06    N    O    04/02/1997    03/10/1997    04/02/1997    COLLECT COD
MAIL   idle epitaphs inside the sile 
615    45    2    4    14    NULL    0.02    0.06    N    O    03/17/1997    03/09/1997    03/17/1997    DELIVER IN
PERSON   AIR    silently regular d 
615    68    2    5    4    NULL    0.03    0.02    N    O    04/07/1997    04/07/1997    04/07/1997    TAKE BACK
RETURN   SHIP    careful decoys doze stealthy excuses  
640    59    1    1    16    NULL    0.00    0.00    R    F    09/30/1992    09/19/1992    09/30/1992    COLLECT COD
MAIL   regular  integrate integrat 
640    36    1    2    20    NULL    0.06    0.06    R    F    09/12/1992    10/15/1992    09/12/1992    TAKE BACK
RETURN   RAIL    sometimes thin gifts  
640    13    3    3    10    NULL    0.09    0.03    A    F    09/15/1992    09/01/1992    09/15/1992    NONE    TRUCK
 doggedly busy attainment 
640    0    0    4    4    NULL    0.01    0.04    R    F    11/17/1992    09/30/1992    11/17/1992    NONE    TRUCK
ruthlesswaters among the thin gifts impres 
640    33    2    5    35    NULL    0.07    0.04    R    F    10/28/1992    09/20/1992    10/28/1992    DELIVER IN
PERSON   AIR    excuses to the decoys 
640    33    2    6    39    NULL    0.04    0.05    A    F    08/03/1992    09/06/1992    08/03/1992    COLLECT COD
MAIL   careful sheaves should h 
641    26    3    1    12    NULL    0.01    0.06    N    O    08/28/1998    08/02/1998    08/28/1998    COLLECT COD
SHIP   silent, attainments should hi 
641    32    2    2    29    NULL    0.04    0.05    N    O    09/10/1998    06/28/1998    09/10/1998    TAKE BACK
RETURN   TRUCK    idle,ruthless pinto b 
641    0    0    3    3    NULL    0.10    0.03    N    O    06/11/1998    07/24/1998    06/11/1998    NONE    AIR
close,carefulfr 
642    9    1    1    27    NULL    0.01    0.03    R    F    09/03/1992    08/14/1992    09/03/1992    TAKE BACK
RETURN   SHIP    hockey players since the ideas engage 
642    0    0    2    33    NULL    0.02    0.04    A    F    06/27/1992    08/05/1992    06/27/1992    TAKE BACK
RETURN   MAIL    furious grouches run busy,quick dinos .  
642    0    0    3    16    NULL    0.09    0.04    R    F    09/02/1992    08/16/1992    09/02/1992    DELIVER IN
PERSON   MAIL    enticing pains through the sauternes  
642    4    3    4    36    NULL    0.02    0.02    R    F    09/04/1992    08/31/1992    09/04/1992    NONE    AIR
stealthilyironi 
642    0    0    5    49    NULL    0.07    0.04    R    F    07/25/1992    07/25/1992    07/25/1992    DELIVER IN
PERSON   RAIL    permanent,furious frets cajole silent as 
642    2    3    6    25    NULL    0.09    0.00    A    F    09/12/1992    07/22/1992    09/12/1992    TAKE BACK
RETURN   MAIL    quiet,permanent  
643    0    0    1    45    NULL    0.08    0.06    A    F    03/03/1995    02/21/1995    03/03/1995    NONE    MAIL
quietlydogged depths dazzle  
643    3    0    2    50    NULL    0.06    0.06    A    F    02/26/1995    03/17/1995    02/26/1995    DELIVER IN
PERSON   REG AIR    idle,enticing 
643    0    0    3    33    NULL    0.08    0.05    A    F    03/01/1995    03/07/1995    03/01/1995    NONE    REG AIR
  ironic pains under the fluffy,enticing fray 
643    28    3    4    4    NULL    0.05    0.01    R    F    04/27/1995    03/28/1995    04/27/1995    DELIVER IN
PERSON   REG AIR    decoys use be 
643    74    1    5    46    NULL    0.07    0.01    A    F    05/05/1995    03/01/1995    05/05/1995    COLLECT COD
FOB   ruthlessly regular epitaphs are  
644    24    3    1    38    NULL    0.01    0.00    R    F    12/20/1992    11/05/1992    12/20/1992    DELIVER IN
PERSON   SHIP    brave warhorses will have to grow sly 
645    62    0    1    33    NULL    0.01    0.03    A    F    04/26/1992    03/13/1992    04/26/1992    NONE    REG
AIR   permanent decoys solve fluf 
645    0    0    2    43    NULL    0.08    0.03    R    F    02/24/1992    04/01/1992    02/24/1992    NONE    AIR
ruthlesspearls sh 
646    46    2    1    38    NULL    0.06    0.08    A    F    02/01/1994    02/21/1994    02/01/1994    COLLECT COD
REGAIR    even,quick dolphins nod enticing 
647    43    3    1    37    NULL    0.01    0.06    N    O    05/03/1996    05/27/1996    05/03/1996    DELIVER IN
PERSON   REG AIR    enticing,furious furiou mig 
647    35    1    2    41    NULL    0.08    0.02    N    O    05/26/1996    05/26/1996    05/26/1996    COLLECT COD
MAIL   theodolites to the ironic,stealt 
647    17    3    3    19    NULL    0.08    0.03    N    O    08/04/1996    06/30/1996    08/04/1996    NONE    RAIL
slow frets doubt thinly dou 
647    68    3    4    43    NULL    0.07    0.04    N    O    05/28/1996    06/15/1996    05/28/1996    DELIVER IN
PERSON   TRUCK    forges shall maintain close 
647    14    1    5    16    NULL    0.06    0.07    N    O    05/18/1996    06/30/1996    05/18/1996    TAKE BACK
RETURN   MAIL    even,regular sheaves  
647    71    1    6    16    NULL    0.09    0.00    N    O    05/26/1996    05/13/1996    05/26/1996    DELIVER IN
PERSON   SHIP    thin,regular somas could 
647    0    0    7    14    NULL    0.09    0.00    N    O    04/17/1996    06/10/1996    04/17/1996    TAKE BACK
RETURN   REG AIR    platelets past the doggedly t 
672    72    0    1    9    NULL    0.01    0.01    R    F    03/23/1994    05/20/1994    03/23/1994    DELIVER IN
PERSON   AIR    ruthlessly furious at 
672    27    1    2    24    NULL    0.08    0.04    A    F    06/09/1994    04/28/1994    06/09/1994    TAKE BACK
RETURN   REG AIR    daring,fluffy waters haggle quie 
672    78    0    3    50    NULL    0.04    0.05    R    F    04/26/1994    04/12/1994    04/26/1994    DELIVER IN
PERSON   TRUCK    closely daring i 
672    37    2    4    41    NULL    0.05    0.04    R    F    04/22/1994    05/11/1994    04/22/1994    DELIVER IN
PERSON   SHIP    even dinos between the brave waters may nag 
672    0    0    5    46    NULL    0.05    0.06    R    F    05/05/1994    05/29/1994    05/05/1994    DELIVER IN
PERSON   TRUCK    busily busy sheave 
673    0    0    1    31    NULL    0.02    0.07    A    F    07/18/1992    08/02/1992    07/18/1992    COLLECT COD
SHIP   pains maintain mai 
673    79    3    2    41    NULL    0.06    0.06    A    F    08/21/1992    07/21/1992    08/21/1992    TAKE BACK
RETURN   TRUCK    fluffy asympt 
673    79    1    3    28    NULL    0.01    0.07    R    F    06/30/1992    07/31/1992    06/30/1992    NONE    REG
AIR   ruthlessly busy pl 
673    59    3    4    43    NULL    0.01    0.08    R    F    06/14/1992    07/18/1992    06/14/1992    DELIVER IN
PERSON   FOB    permanent,blithe forges beneath  
674    33    3    1    25    NULL    0.01    0.07    N    O    06/15/1998    06/22/1998    06/15/1998    NONE    FOB
ruthless,ruthlesspatterns could enga 
674    0    0    2    13    NULL    0.01    0.02    N    O    06/26/1998    08/02/1998    06/26/1998    NONE    MAIL
sauternesatop the silent w 
674    34    3    3    8    NULL    0.05    0.08    N    O    08/31/1998    08/05/1998    08/31/1998    DELIVER IN
PERSON   AIR    slowly daring saut 
674    24    0    4    23    NULL    0.07    0.00    N    O    06/19/1998    07/17/1998    06/19/1998    NONE    REG
AIR   pearls breach without 
675    14    1    1    34    NULL    0.05    0.05    R    F    01/30/1993    12/05/1992    01/30/1993    DELIVER IN
PERSON   AIR    blithe,careful warhorses 
675    0    0    2    43    NULL    0.07    0.01    R    F    01/10/1993    11/22/1992    01/10/1993    TAKE BACK
RETURN   MAIL    bold,sly decoys in 
675    65    1    3    31    NULL    0.04    0.04    A    F    12/31/1992    12/24/1992    12/31/1992    NONE    REG
AIR   daring,daring braids pla 
675    0    0    4    33    NULL    0.07    0.05    R    F    12/05/1992    11/20/1992    12/05/1992    TAKE BACK
RETURN   TRUCK    multipliers try to poach furiusly ins 
675    67    1    5    27    NULL    0.05    0.05    A    F    01/27/1993    12/24/1992    01/27/1993    NONE    FOB
blithelyfurious warthogs s 
676    24    1    1    23    NULL    0.07    0.04    A    F    01/25/1994    12/07/1993    01/25/1994    COLLECT COD
RAIL   permanent,daring sentime 
676    20    1    2    4    NULL    0.10    0.08    A    F    01/11/1994    11/26/1993    01/11/1994    DELIVER IN
PERSON   SHIP    hockey players promise outside t 
676    71    2    3    10    NULL    0.06    0.06    R    F    10/28/1993    11/14/1993    10/28/1993    TAKE BACK
RETURN   FOB    blithe,reg 
677    0    0    1    26    NULL    0.03    0.01    R    F    09/18/1994    09/03/1994    09/18/1994    NONE    MAIL
idle,quickmu 
677    11    3    2    40    NULL    0.01    0.07    A    F    09/07/1994    10/18/1994    09/07/1994    TAKE BACK
RETURN   SHIP    regular so 
677    0    0    3    30    NULL    0.09    0.03    R    F    08/24/1994    09/12/1994    08/24/1994    NONE    AIR
notorniswake thinly ; 
677    49    2    4    40    NULL    0.09    0.03    A    F    10/23/1994    10/11/1994    10/23/1994    COLLECT COD
RAIL   never quick excuses at t 
677    0    0    5    36    NULL    0.01    0.03    A    F    09/28/1994    10/07/1994    09/28/1994    DELIVER IN
PERSON   TRUCK    slyly thin dolphins slyly t 
677    15    1    6    3    NULL    0.09    0.07    A    F    09/02/1994    09/22/1994    09/02/1994    TAKE BACK
RETURN   AIR    platelets snooze stealth 
677    7    0    7    21    NULL    0.03    0.03    R    F    09/02/1994    09/24/1994    09/02/1994    COLLECT COD
REGAIR    epitaphs shall serve . 
678    76    0    1    6    NULL    0.02    0.00    N    O    10/29/1996    11/27/1996    10/29/1996    NONE    FOB
closehockey players above the slow,brav 
678    43    2    2    29    NULL    0.02    0.01    N    O    01/01/1997    10/29/1996    01/01/1997    COLLECT COD
FOB   sometimes ruthless multipli 
678    61    3    3    40    NULL    0.06    0.07    N    O    09/29/1996    11/16/1996    09/29/1996    COLLECT COD
SHIP   enticing,dogged foxes will have  
679    73    3    1    23    NULL    0.00    0.08    R    F    04/18/1993    04/26/1993    04/18/1993    NONE    RAIL
furious,daring dugouts s 
679    13    3    2    27    NULL    0.07    0.04    A    F    03/27/1993    04/25/1993    03/27/1993    NONE    TRUCK
 boldly silent theo 
679    78    1    3    15    NULL    0.04    0.05    A    F    04/03/1993    03/31/1993    04/03/1993    TAKE BACK
RETURN   AIR    busy,slow dug 
679    17    3    4    24    NULL    0.00    0.07    A    F    03/10/1993    05/08/1993    03/10/1993    NONE    SHIP
sentiments breach regularly fluffy  
679    69    3    5    24    NULL    0.06    0.05    R    F    05/13/1993    04/14/1993    05/13/1993    TAKE BACK
RETURN   SHIP    thin,ironic waters shall have to sublate sl 
679    79    2    6    46    NULL    0.07    0.07    A    F    04/05/1993    05/07/1993    04/05/1993    DELIVER IN
PERSON   FOB    stealthy warthogs was Tiresia 
704    0    0    1    33    NULL    0.04    0.04    N    O    05/18/1997    06/22/1997    05/18/1997    TAKE BACK
RETURN   REG AIR    brave dinos besides the theodolites s 
704    8    2    2    49    NULL    0.01    0.02    N    O    06/05/1997    05/18/1997    06/05/1997    COLLECT COD
REGAIR    careful theodolites between the  
704    0    0    3    48    NULL    0.04    0.05    N    O    07/11/1997    04/30/1997    07/11/1997    NONE    SHIP
enticinglyruthl 
704    0    0    4    3    NULL    0.08    0.06    N    O    05/09/1997    06/03/1997    05/09/1997    COLLECT COD
REGAIR    daring,quiet mul 
704    14    2    5    38    NULL    0.02    0.08    N    O    05/18/1997    05/16/1997    05/18/1997    DELIVER IN
PERSON   MAIL    regular,even waters should boost 
704    54    3    6    50    NULL    0.08    0.02    N    O    06/11/1997    05/14/1997    06/11/1997    COLLECT COD
RAIL   dugouts between the epitaphs snooze fluf 
704    52    1    7    37    NULL    0.05    0.07    N    O    05/26/1997    06/19/1997    05/26/1997    TAKE BACK
RETURN   MAIL    enticing,quiet courts on 
705    22    2    1    5    NULL    0.01    0.03    R    F    05/24/1994    06/15/1994    05/24/1994    DELIVER IN
PERSON   AIR    ruthless excuses r 
705    21    1    2    8    NULL    0.08    0.02    R    F    06/20/1994    06/13/1994    06/20/1994    COLLECT COD
FOB   regular pinto bean 
705    0    0    3    41    NULL    0.06    0.05    A    F    06/06/1994    07/19/1994    06/06/1994    DELIVER IN
PERSON   MAIL    fluffy asymptotes haggle qu 
705    63    3    4    42    NULL    0.02    0.07    A    F    08/05/1994    06/08/1994    08/05/1994    COLLECT COD
AIR   slowly ironic multipliers print  
705    3    0    5    13    NULL    0.05    0.04    R    F    07/20/1994    06/09/1994    07/20/1994    TAKE BACK
RETURN   RAIL    ideas across the  shall engage ironic 
705    40    2    6    48    NULL    0.02    0.06    A    F    04/30/1994    06/15/1994    04/30/1994    COLLECT COD
RAIL   permanently fluffy depths nag furiu 
705    62    2    7    33    NULL    0.03    0.07    A    F    06/29/1994    07/04/1994    06/29/1994    TAKE BACK
RETURN   TRUCK    sometimes enticing di 
706    3    3    1    39    NULL    0.08    0.01    A    F    12/13/1993    01/23/1994    12/13/1993    DELIVER IN
PERSON   TRUCK    fluffy escapades near the slyly regul 
706    6    1    2    17    NULL    0.03    0.00    R    F    01/07/1994    01/15/1994    01/07/1994    NONE    TRUCK
quick warthogs hinder 
706    24    3    3    46    NULL    0.03    0.04    R    F    01/22/1994    12/23/1993    01/22/1994    COLLECT COD
TRUCK   thinly even eve  
706    0    0    4    42    NULL    0.09    0.05    R    F    11/29/1993    01/20/1994    11/29/1993    DELIVER IN
PERSON   TRUCK    sly  could be 
707    72    3    1    10    NULL    0.02    0.06    N    O    08/07/1996    06/05/1996    08/07/1996    NONE    FOB
brave,doggedsom 
707    23    2    2    15    NULL    0.05    0.08    N    O    06/10/1996    05/16/1996    06/10/1996    NONE    FOB
blithesheaves to the platelets will x_r 
708    26    2    1    47    NULL    0.01    0.04    N    O    11/25/1995    01/05/1996    11/25/1995    COLLECT COD
AIR   evenly daring foxes eat ?  bo 
709    0    0    1    45    NULL    0.02    0.04    N    O    07/02/1996    07/08/1996    07/02/1996    NONE    RAIL
doggedlys 
709    66    2    2    7    NULL    0.08    0.03    N    O    07/17/1996    07/28/1996    07/17/1996    NONE    MAIL
daringlyquiet dol 
709    65    2    3    45    NULL    0.06    0.01    N    O    06/04/1996    07/08/1996    06/04/1996    COLLECT COD
MAIL   pearls do print do prin 
709    21    3    4    29    NULL    0.06    0.01    N    O    06/04/1996    06/14/1996    06/04/1996    DELIVER IN
PERSON   FOB    busily slow theodolites must poach ; 
709    76    1    5    35    NULL    0.09    0.00    N    O    07/10/1996    07/25/1996    07/10/1996    COLLECT COD
SHIP   theodolites shall detect fluffily dur 
709    8    3    6    12    NULL    0.05    0.03    N    O    07/21/1996    08/03/1996    07/21/1996    DELIVER IN
PERSON   MAIL    dinos will have to lose furiusly regu 
709    37    0    7    6    NULL    0.08    0.07    N    O    08/30/1996    07/01/1996    08/30/1996    TAKE BACK
RETURN   MAIL    stealthy,fluffy  
710    78    3    1    49    NULL    0.07    0.04    N    O    10/23/1998    09/14/1998    10/23/1998    NONE    MAIL
stealthily busy tithes into the  
711    34    3    1    9    NULL    0.06    0.03    N    O    09/21/1997    10/17/1997    09/21/1997    COLLECT COD
AIR   never stealthy pearls after the idl 
711    43    1    2    33    NULL    0.06    0.05    N    O    08/16/1997    08/31/1997    08/16/1997    NONE    RAIL
grouches dazzle stealthily permanen 
736    55    3    1    15    NULL    0.08    0.01    N    O    03/04/1997    02/23/1997    03/04/1997    COLLECT COD
FOB   dependencies  
736    0    0    2    10    NULL    0.04    0.01    N    O    01/27/1997    03/10/1997    01/27/1997    COLLECT COD
FOB    through the  
736    72    2    3    40    NULL    0.09    0.05    N    O    03/01/1997    01/22/1997    03/01/1997    NONE    FOB
warthogson the furious,final realms  
736    48    3    4    38    NULL    0.01    0.07    N    O    02/02/1997    03/10/1997    02/02/1997    COLLECT COD
SHIP   ideas under the bravely busy sauternes k 
736    54    0    5    25    NULL    0.06    0.05    N    O    12/22/1996    02/16/1997    12/22/1996    DELIVER IN
PERSON   MAIL    fluffy,slow pinto beans was ! multipl 
736    2    1    6    19    NULL    0.04    0.02    N    O    02/22/1997    03/10/1997    02/22/1997    NONE    MAIL
attainmentsmust have to 
736    32    0    7    29    NULL    0.02    0.01    N    O    12/14/1996    01/17/1997    12/14/1996    DELIVER IN
PERSON   AIR    pinto beans n 
737    25    3    1    22    NULL    0.02    0.06    A    F    09/29/1992    09/27/1992    09/29/1992    TAKE BACK
RETURN   TRUCK    idle,regular dugouts upon the ne 
737    12    2    2    34    NULL    0.07    0.01    A    F    10/03/1992    10/20/1992    10/03/1992    DELIVER IN
PERSON   MAIL    regularly fluffy patterns wake under  
737    34    1    3    2    NULL    0.07    0.00    R    F    10/26/1992    08/28/1992    10/26/1992    COLLECT COD
FOB   daring forges 
738    65    2    1    11    NULL    0.02    0.08    R    F    09/19/1994    09/30/1994    09/19/1994    TAKE BACK
RETURN   MAIL    sly,ironic notor 
738    8    0    2    1    NULL    0.03    0.04    R    F    09/04/1994    09/19/1994    09/04/1994    NONE    RAIL
busilypermanent epitaphs must h 
738    0    0    3    24    NULL    0.02    0.06    R    F    08/11/1994    09/01/1994    08/11/1994    DELIVER IN
PERSON   RAIL    fluffy multipliers will have to doze  
738    45    1    4    11    NULL    0.01    0.05    R    F    08/22/1994    09/24/1994    08/22/1994    DELIVER IN
PERSON   TRUCK    finally dogged decoys final 
738    0    0    5    2    NULL    0.06    0.02    A    F    11/18/1994    09/08/1994    11/18/1994    TAKE BACK RETURN
  AIR    daring,blithe foxes about the 
738    0    0    6    35    NULL    0.06    0.08    R    F    10/10/1994    09/24/1994    10/10/1994    COLLECT COD
MAIL   careful grouches 
738    0    1    7    32    NULL    0.03    0.02    A    F    09/20/1994    08/30/1994    09/20/1994    TAKE BACK
RETURN   SHIP    furious instr 
739    0    0    1    27    NULL    0.04    0.03    A    F    05/19/1992    04/15/1992    05/19/1992    DELIVER IN
PERSON   REG AIR    furious asymptotes upon the quickly thin br 
739    56    0    2    46    NULL    0.09    0.02    A    F    05/26/1992    04/12/1992    05/26/1992    NONE    TRUCK
 notornis along the 
739    0    0    3    47    NULL    0.09    0.04    A    F    03/23/1992    05/02/1992    03/23/1992    NONE    FOB
giftstry to  never ; 
739    0    0    4    37    NULL    0.08    0.08    R    F    03/01/1992    05/12/1992    03/01/1992    NONE    FOB
stealthilysilen 
739    0    0    5    26    NULL    0.06    0.02    A    F    03/22/1992    05/13/1992    03/22/1992    COLLECT COD
TRUCK   fluffy hockey pl 
740    54    1    1    11    NULL    0.02    0.08    N    O    06/21/1995    07/07/1995    06/21/1995    TAKE BACK
RETURN   SHIP    thinly daring dinos may breach until  
740    51    2    2    46    NULL    0.02    0.02    N    O    07/14/1995    06/23/1995    07/14/1995    NONE    MAIL
blithe instructions in plac 
740    33    0    3    21    NULL    0.04    0.07    N    O    07/02/1995    06/30/1995    07/02/1995    COLLECT COD
RAIL   enticing,regular sentime 
740    40    1    4    36    NULL    0.00    0.04    N    O    06/28/1995    08/05/1995    06/28/1995    DELIVER IN
PERSON   REG AIR    never final excuses around the fluf 
740    69    2    5    20    NULL    0.09    0.08    R    F    06/01/1995    08/11/1995    06/01/1995    TAKE BACK
RETURN   MAIL    evenly dogged 
741    60    3    1    12    NULL    0.02    0.02    R    F    10/13/1992    11/13/1992    10/13/1992    DELIVER IN
PERSON   SHIP    ruthless,daring patterns 
741    43    0    2    9    NULL    0.02    0.00    R    F    10/09/1992    10/28/1992    10/09/1992    TAKE BACK
RETURN   MAIL    permanently quick for 
741    21    1    3    31    NULL    0.07    0.07    R    F    11/29/1992    12/03/1992    11/29/1992    COLLECT COD
RAIL   blithe gif 
741    78    0    4    33    NULL    0.06    0.05    A    F    10/30/1992    11/03/1992    10/30/1992    DELIVER IN
PERSON   FOB    furiusly slow frays doze ironic,regular ide 
741    1    0    5    16    NULL    0.05    0.07    A    F    11/07/1992    11/13/1992    11/07/1992    DELIVER IN
PERSON   MAIL    slyly silent foxes must hav 
741    12    2    6    44    NULL    0.08    0.06    A    F    12/12/1992    11/11/1992    12/12/1992    TAKE BACK
RETURN   AIR    dinos until the  
741    55    0    7    34    NULL    0.01    0.07    R    F    12/11/1992    11/02/1992    12/11/1992    COLLECT COD
RAIL   sly sentiments play above the de 
742    26    0    1    2    NULL    0.05    0.08    A    F    07/29/1992    07/25/1992    07/29/1992    TAKE BACK
RETURN   RAIL    idle,bold sheaves hinder blithel 
742    30    1    2    30    NULL    0.08    0.03    R    F    07/10/1992    08/11/1992    07/10/1992    COLLECT COD
FOB   forges should are sly 
742    72    0    3    6    NULL    0.05    0.01    R    F    09/06/1992    07/19/1992    09/06/1992    DELIVER IN
PERSON   REG AIR    blithe esc 
742    10    1    4    34    NULL    0.02    0.05    A    F    06/24/1992    07/11/1992    06/24/1992    NONE    RAIL
bold frays bold fray hang ; 
742    75    0    5    50    NULL    0.06    0.01    A    F    08/04/1992    08/21/1992    08/04/1992    TAKE BACK
RETURN   REG AIR    sentiments 
743    59    2    1    1    NULL    0.01    0.03    A    F    10/24/1992    10/31/1992    10/24/1992    COLLECT COD
REGAIR    furious,enticing soma 
743    73    3    2    5    NULL    0.08    0.07    A    F    08/14/1992    09/13/1992    08/14/1992    COLLECT COD
REGAIR    ,thin thi could have to int 
743    42    3    3    11    NULL    0.10    0.03    A    F    08/31/1992    11/05/1992    08/31/1992    TAKE BACK
RETURN   SHIP    tithes can grow enticing asymptotes e 
743    31    2    4    1    NULL    0.08    0.00    R    F    10/01/1992    09/10/1992    10/01/1992    COLLECT COD
FOB   ruthless,regular warthogs thr 
743    19    3    5    20    NULL    0.09    0.02    R    F    09/19/1992    11/08/1992    09/19/1992    NONE    MAIL
quick attainments hinder -- 
743    14    2    6    45    NULL    0.03    0.03    A    F    11/23/1992    10/15/1992    11/23/1992    TAKE BACK
RETURN   REG AIR    instructions instruction  sometimes 
743    24    2    7    34    NULL    0.05    0.03    A    F    08/25/1992    09/20/1992    08/25/1992    DELIVER IN
PERSON   AIR    dogged foxes except the darin 
768    42    3    1    21    NULL    0.02    0.04    R    F    07/04/1994    06/28/1994    07/04/1994    DELIVER IN
PERSON   MAIL    carefully  gifts up the even orbits 
768    0    0    2    9    NULL    0.09    0.02    R    F    07/25/1994    08/08/1994    07/25/1994    TAKE BACK RETURN
  REG AIR    blithe dependencies blithe dependenci 
769    38    3    1    6    NULL    0.04    0.01    R    F    10/23/1993    10/21/1993    10/23/1993    DELIVER IN
PERSON   FOB    ,blithe warhorses up the 
769    0    0    2    36    NULL    0.08    0.01    A    F    11/06/1993    12/05/1993    11/06/1993    NONE    SHIP
regularfrays may sleep nev 
769    10    0    3    19    NULL    0.01    0.07    R    F    12/29/1993    10/13/1993    12/29/1993    NONE    SHIP
closely permanent frays  
769    22    2    4    33    NULL    0.00    0.02    R    F    10/15/1993    10/28/1993    10/15/1993    DELIVER IN
PERSON   RAIL    warhorses daz 
769    33    3    5    48    NULL    0.08    0.06    A    F    10/10/1993    10/26/1993    10/10/1993    TAKE BACK
RETURN   TRUCK    pains through the  
769    7    3    6    34    NULL    0.08    0.08    R    F    10/01/1993    11/06/1993    10/01/1993    COLLECT COD
FOB   even,sly excuses might i 
770    37    0    1    26    NULL    0.04    0.03    N    O    03/14/1998    05/06/1998    03/14/1998    NONE    RAIL
daring,ironic dugouts on the close  d 
770    0    0    2    32    NULL    0.09    0.05    N    O    02/22/1998    05/04/1998    02/22/1998    TAKE BACK
RETURN   SHIP    ruthlessly  theodolites will det 
770    77    0    3    30    NULL    0.09    0.02    N    O    03/28/1998    04/11/1998    03/28/1998    NONE    MAIL
daringly thin mu 
770    6    3    4    34    NULL    0.02    0.06    N    O    06/12/1998    04/26/1998    06/12/1998    TAKE BACK
RETURN   RAIL    permanent,silent patterns x_ray doggedly -- 
770    15    0    5    8    NULL    0.07    0.01    N    O    05/02/1998    04/12/1998    05/02/1998    DELIVER IN
PERSON   FOB    daring,furious sentiments on the 
770    12    1    6    48    NULL    0.08    0.06    N    O    04/27/1998    04/14/1998    04/27/1998    TAKE BACK
RETURN   FOB    thinly thin warhorses ne 
770    1    2    7    15    NULL    0.05    0.00    N    O    03/02/1998    04/14/1998    03/02/1998    COLLECT COD
RAIL   quick tithes alongside of the senti 
771    26    3    1    2    NULL    0.09    0.03    A    F    12/05/1994    01/27/1995    12/05/1994    NONE    REG AIR
   courts can promis 
771    64    0    2    35    NULL    0.09    0.04    R    F    02/18/1995    01/05/1995    02/18/1995    NONE    SHIP
 except the enticing sauternes except 
771    15    3    3    33    NULL    0.02    0.04    R    F    11/28/1994    01/01/1995    11/28/1994    TAKE BACK
RETURN   SHIP    quickly fluffy attainments  
772    0    0    1    1    NULL    0.04    0.08    R    F    11/14/1992    09/17/1992    11/14/1992    TAKE BACK RETURN
  AIR    depths lose ironically final frets ; 
772    20    1    2    2    NULL    0.07    0.04    A    F    10/31/1992    11/01/1992    10/31/1992    DELIVER IN
PERSON   SHIP    thin,quick sauternes across t 
772    6    3    3    49    NULL    0.02    0.03    A    F    11/15/1992    10/27/1992    11/15/1992    TAKE BACK
RETURN   RAIL    even,furious asymp 
772    11    3    4    39    NULL    0.02    0.01    R    F    08/16/1992    10/10/1992    08/16/1992    TAKE BACK
RETURN   TRUCK    never enticin 
772    0    0    5    43    NULL    0.08    0.03    R    F    12/03/1992    10/21/1992    12/03/1992    TAKE BACK
RETURN   SHIP    blithely blithe  
772    6    0    6    46    NULL    0.03    0.01    A    F    08/27/1992    10/08/1992    08/27/1992    DELIVER IN
PERSON   FOB    brave,final warh 
773    16    2    1    35    NULL    0.03    0.01    R    F    03/15/1993    04/13/1993    03/15/1993    COLLECT COD
TRUCK   somas sleep a 
773    44    3    2    17    NULL    0.09    0.00    R    F    03/09/1993    04/04/1993    03/09/1993    NONE    FOB
doggedlycareful attainments exc 
773    18    0    3    23    NULL    0.09    0.06    A    F    03/02/1993    03/11/1993    03/02/1993    DELIVER IN
PERSON   AIR    sauternes serve -- 
773    27    2    4    21    NULL    0.06    0.00    A    F    02/10/1993    04/06/1993    02/10/1993    COLLECT COD
AIR   regularly stealthy 
773    74    2    5    45    NULL    0.02    0.04    R    F    04/19/1993    03/27/1993    04/19/1993    DELIVER IN
PERSON   AIR    close,blithe tithes despite 
773    0    0    6    9    NULL    0.02    0.02    R    F    03/04/1993    04/10/1993    03/04/1993    TAKE BACK RETURN
  FOB    slowly idle theodolites beyond the alway 
773    78    2    7    1    NULL    0.10    0.04    A    F    03/16/1993    04/13/1993    03/16/1993    COLLECT COD
REGAIR    busy,close excuses can wake until the alway 
774    77    1    1    18    NULL    0.08    0.04    A    F    06/17/1994    04/02/1994    06/17/1994    TAKE BACK
RETURN   SHIP    thin,blithe theo 
774    29    3    2    46    NULL    0.07    0.05    A    F    06/27/1994    05/02/1994    06/27/1994    TAKE BACK
RETURN   AIR    theodolites cajole 
775    42    1    1    44    NULL    0.03    0.05    A    F    01/21/1992    02/18/1992    01/21/1992    DELIVER IN
PERSON   SHIP    Tiresias' try to grow 
775    0    0    2    41    NULL    0.08    0.02    A    F    01/20/1992    04/05/1992    01/20/1992    TAKE BACK
RETURN   TRUCK    slow,ironic escapa 
775    70    2    3    6    NULL    0.07    0.06    R    F    01/14/1992    02/13/1992    01/14/1992    COLLECT COD
MAIL   quiet, courts instead of the dug 
775    38    0    4    43    NULL    0.06    0.03    A    F    03/10/1992    03/12/1992    03/10/1992    DELIVER IN
PERSON   FOB    final,even notor 
800    13    1    1    16    NULL    0.07    0.07    N    O    02/08/1997    01/21/1997    02/08/1997    DELIVER IN
PERSON   RAIL    quiet,stealthy platelets integrate integ 
800    67    1    2    40    NULL    0.07    0.06    N    O    03/09/1997    01/30/1997    03/09/1997    NONE    MAIL
carefully sly pains integrate boldly idl 
800    2    3    3    2    NULL    0.09    0.03    N    O    03/26/1997    01/10/1997    03/26/1997    NONE    SHIP
regulargrouches d 
800    31    2    4    18    NULL    0.02    0.03    N    O    12/23/1996    02/05/1997    12/23/1996    NONE    MAIL
fluffily final gif 
800    27    0    5    29    NULL    0.03    0.01    N    O    02/08/1997    02/06/1997    02/08/1997    TAKE BACK
RETURN   REG AIR    blithe,quick  
800    21    1    6    21    NULL    0.02    0.04    N    O    01/01/1997    02/22/1997    01/01/1997    DELIVER IN
PERSON   SHIP    fluffily final notornis can mold during  
800    41    1    7    45    NULL    0.01    0.03    N    O    03/23/1997    03/02/1997    03/23/1997    COLLECT COD
AIR   thin frets atop the orbits poach pi 
801    0    0    1    40    NULL    0.07    0.04    N    O    06/30/1997    04/24/1997    06/30/1997    COLLECT COD
RAIL   never regular braids  
802    55    2    1    6    NULL    0.03    0.08    A    F    09/30/1994    08/18/1994    09/30/1994    NONE    REG AIR
  ,silent depths detect 
802    0    0    2    48    NULL    0.08    0.07    A    F    08/23/1994    08/28/1994    08/23/1994    TAKE BACK
RETURN   TRUCK    sheaves sublate  
803    47    0    1    39    NULL    0.01    0.05    R    F    02/25/1995    03/19/1995    02/25/1995    TAKE BACK
RETURN   AIR    depths doze ? 
803    30    0    2    16    NULL    0.06    0.07    A    F    05/10/1995    03/28/1995    05/10/1995    COLLECT COD
FOB   tithes serve  
803    35    2    3    50    NULL    0.05    0.03    A    F    05/07/1995    03/27/1995    05/07/1995    TAKE BACK
RETURN   SHIP    quiet orbits x_ray entic 
804    53    3    1    4    NULL    0.04    0.03    N    O    10/12/1995    10/16/1995    10/12/1995    NONE    TRUCK
bravely fluffy sentiments must  ? even,bold 
804    0    0    2    41    NULL    0.01    0.05    N    O    10/16/1995    11/29/1995    10/16/1995    COLLECT COD
TRUCK   blithely permanent notornis 
805    64    1    1    5    NULL    0.07    0.07    R    F    01/17/1995    12/25/1994    01/17/1995    COLLECT COD
AIR   close,regular dinos should  
806    62    0    1    21    NULL    0.02    0.03    N    O    03/30/1996    03/18/1996    03/30/1996    COLLECT COD
REGAIR    quick courts since the entici 
806    42    3    2    36    NULL    0.05    0.01    N    O    02/21/1996    04/11/1996    02/21/1996    DELIVER IN
PERSON   MAIL    close asymptotes try to serve . som 
806    0    0    3    45    NULL    0.07    0.07    N    O    05/27/1996    03/12/1996    05/27/1996    COLLECT COD
FOB   permanent,even grouch 
806    0    0    4    41    NULL    0.09    0.04    N    O    03/22/1996    03/11/1996    03/22/1996    TAKE BACK
RETURN   REG AIR    daringly  realms t 
806    56    3    5    45    NULL    0.01    0.04    N    O    04/08/1996    03/19/1996    04/08/1996    NONE    REG
AIR   tithes pro 
806    62    3    6    48    NULL    0.05    0.05    N    O    03/25/1996    03/01/1996    03/25/1996    TAKE BACK
RETURN   TRUCK    furious,ironic waters play brave 
806    35    1    7    22    NULL    0.07    0.00    N    O    02/24/1996    03/30/1996    02/24/1996    DELIVER IN
PERSON   REG AIR    ironically quiet cour 
807    0    0    1    34    NULL    0.09    0.01    A    F    12/18/1994    10/28/1994    12/18/1994    DELIVER IN
PERSON   RAIL    ruthless tithes must have t 
807    10    3    2    43    NULL    0.02    0.01    A    F    11/22/1994    12/22/1994    11/22/1994    COLLECT COD
REGAIR    fluffily enti 
807    65    3    3    37    NULL    0.04    0.06    A    F    10/28/1994    11/11/1994    10/28/1994    NONE    REG
AIR   carefully daring theodolites mold attain 
807    50    0    4    8    NULL    0.02    0.02    A    F    11/26/1994    12/23/1994    11/26/1994    NONE    AIR
slyepitaphs boo 
807    39    2    5    37    NULL    0.05    0.02    A    F    11/04/1994    11/18/1994    11/04/1994    COLLECT COD
TRUCK   sentiments en 
807    31    0    6    33    NULL    0.02    0.04    A    F    09/29/1994    12/19/1994    09/29/1994    DELIVER IN
PERSON   REG AIR    quick,quiet tithes might breach sometime 
832    38    3    1    20    NULL    0.06    0.04    N    O    06/08/1996    05/09/1996    06/08/1996    DELIVER IN
PERSON   REG AIR    forges through the evenly enticing fo 
832    46    2    2    27    NULL    0.08    0.07    N    O    04/09/1996    05/09/1996    04/09/1996    TAKE BACK
RETURN   REG AIR    quiet forges can snooze  
832    47    3    3    23    NULL    0.06    0.07    N    O    08/01/1996    06/26/1996    08/01/1996    NONE    FOB
ironicsheaves will nod will no 
832    42    3    4    50    NULL    0.00    0.07    N    O    07/31/1996    06/29/1996    07/31/1996    TAKE BACK
RETURN   MAIL    regularly sil 
832    0    0    5    12    NULL    0.09    0.04    N    O    07/31/1996    05/13/1996    07/31/1996    NONE    SHIP
silent,thi
832    0    0    6    16    NULL    0.09    0.08    N    O    05/21/1996    05/11/1996    05/21/1996    COLLECT COD
RAIL   fluffy courts fr 
833    26    2    1    12    NULL    0.05    0.01    N    O    02/01/1997    03/20/1997    02/01/1997    COLLECT COD
REGAIR    bold,brave dugouts into the evenly  
833    32    2    2    16    NULL    0.09    0.07    N    O    02/19/1997    02/09/1997    02/19/1997    NONE    REG
AIR   careful tithes d 
833    65    2    3    7    NULL    0.02    0.06    N    O    03/30/1997    03/28/1997    03/30/1997    COLLECT COD
REGAIR    instructions toward t 
833    29    3    4    30    NULL    0.09    0.02    N    O    02/12/1997    03/10/1997    02/12/1997    TAKE BACK
RETURN   REG AIR    furious,dogged patterns again 
833    67    1    5    22    NULL    0.05    0.05    N    O    01/12/1997    03/27/1997    01/12/1997    TAKE BACK
RETURN   MAIL    decoys up  
833    74    2    6    10    NULL    0.06    0.04    N    O    03/18/1997    03/12/1997    03/18/1997    COLLECT COD
TRUCK   bold,busy Tir 
834    1    1    1    38    NULL    0.09    0.01    R    F    12/21/1992    11/08/1992    12/21/1992    COLLECT COD
RAIL   quiet,regular excuses could 
834    22    1    2    3    NULL    0.06    0.07    A    F    09/07/1992    11/04/1992    09/07/1992    TAKE BACK
RETURN   TRUCK    regularly quick attai 
834    53    0    3    17    NULL    0.07    0.02    A    F    09/14/1992    12/01/1992    09/14/1992    NONE    FOB
permanentdep 
834    8    2    4    26    NULL    0.02    0.08    R    F    11/05/1992    10/21/1992    11/05/1992    DELIVER IN
PERSON   MAIL    silent,quick hockey players besides t 
834    61    1    5    7    NULL    0.05    0.06    A    F    12/25/1992    11/12/1992    12/25/1992    DELIVER IN
PERSON   RAIL    ruthlessly final atta 
834    3    3    6    14    NULL    0.05    0.01    R    F    10/24/1992    10/05/1992    10/24/1992    TAKE BACK
RETURN   FOB    Tiresias' doubt finally brave brav  
834    61    3    7    34    NULL    0.03    0.01    A    F    12/12/1992    11/01/1992    12/12/1992    DELIVER IN
PERSON   REG AIR    busy excus 
835    67    3    1    24    NULL    0.03    0.07    N    O    07/05/1996    07/23/1996    07/05/1996    COLLECT COD
MAIL   bold,quiet pinto beans through t 
836    77    2    1    7    NULL    0.03    0.05    A    F    06/28/1993    09/07/1993    06/28/1993    COLLECT COD
MAIL   dogged,thin cour 
836    0    0    2    41    NULL    0.06    0.02    A    F    09/02/1993    09/10/1993    09/02/1993    TAKE BACK
RETURN   RAIL    even epitaphs migh 
836    0    0    3    24    NULL    0.05    0.01    R    F    06/14/1993    08/26/1993    06/14/1993    COLLECT COD
REGAIR    blithely busy somas b 
836    61    3    4    35    NULL    0.08    0.05    R    F    07/12/1993    08/30/1993    07/12/1993    TAKE BACK
RETURN   REG AIR    regular warho 
836    9    2    5    30    NULL    0.08    0.03    R    F    06/14/1993    08/22/1993    06/14/1993    DELIVER IN
PERSON   REG AIR    warhorses snooze furi 
837    76    3    1    45    NULL    0.02    0.05    N    O    07/15/1997    04/28/1997    07/15/1997    NONE    MAIL
permanent forges inside the fluffy  
838    35    3    1    28    NULL    0.05    0.04    N    F    05/23/1995    04/22/1995    05/23/1995    NONE    RAIL
slow,fluff 
839    0    0    1    47    NULL    0.09    0.05    A    F    03/24/1994    04/30/1994    03/24/1994    TAKE BACK
RETURN   REG AIR    finally thin realms except the d 
839    0    0    2    13    NULL    0.02    0.05    A    F    05/20/1994    03/18/1994    05/20/1994    COLLECT COD
MAIL   quiet,permanent  
839    65    0    3    35    NULL    0.06    0.06    A    F    04/22/1994    03/29/1994    04/22/1994    DELIVER IN
PERSON   REG AIR    quiet,enticing foxes before t 
839    36    0    4    10    NULL    0.07    0.05    A    F    02/03/1994    04/27/1994    02/03/1994    DELIVER IN
PERSON   SHIP    furiusly quiet decoys besides the bravel 
864    65    0    1    9    NULL    0.02    0.07    N    O    03/01/1996    12/22/1995    03/01/1996    NONE    MAIL
quietlyregular warthogs 
864    72    2    2    1    NULL    0.10    0.01    N    O    01/15/1996    01/14/1996    01/15/1996    COLLECT COD
FOB   hockey players hockey playe 
864    3    3    3    40    NULL    0.03    0.01    N    O    12/11/1995    12/21/1995    12/11/1995    NONE    MAIL
bold,bravebraids thr 
864    53    3    4    38    NULL    0.09    0.05    N    O    01/06/1996    02/12/1996    01/06/1996    NONE    SHIP
ironic attainments shoul 
865    61    0    1    4    NULL    0.05    0.02    A    F    04/23/1993    05/29/1993    04/23/1993    TAKE BACK
RETURN   FOB    closely brave ideas beneath 
866    73    0    1    50    NULL    0.01    0.03    N    O    06/27/1997    06/07/1997    06/27/1997    COLLECT COD
MAIL   pearls after the a 
866    24    2    2    34    NULL    0.01    0.06    N    O    04/14/1997    04/11/1997    04/14/1997    TAKE BACK
RETURN   FOB    always quiet depths into the slowly quick h 
866    78    1    3    10    NULL    0.09    0.06    N    O    04/25/1997    05/24/1997    04/25/1997    COLLECT COD
RAIL   sentiments inside the grouches would affix  
866    78    0    4    11    NULL    0.03    0.06    N    O    04/12/1997    05/08/1997    04/12/1997    DELIVER IN
PERSON   FOB    permanently regular t 
866    0    0    5    27    NULL    0.05    0.05    N    O    05/08/1997    04/25/1997    05/08/1997    NONE    AIR
orbitswould x_ray slowly alo 
866    51    2    6    25    NULL    0.03    0.08    N    O    05/08/1997    06/06/1997    05/08/1997    COLLECT COD
TRUCK   sentiments th 
867    0    0    1    17    NULL    0.07    0.01    N    O    04/29/1997    05/12/1997    04/29/1997    TAKE BACK
RETURN   SHIP    quick, multipliers between the dogged 
867    28    1    2    46    NULL    0.09    0.03    N    O    06/07/1997    05/02/1997    06/07/1997    DELIVER IN
PERSON   FOB    quiet braids after the boldly even patte 
867    0    0    3    32    NULL    0.05    0.00    N    O    04/15/1997    04/29/1997    04/15/1997    TAKE BACK
RETURN   MAIL    ironic,daring fray 
867    1    0    4    7    NULL    0.05    0.06    N    O    04/25/1997    04/10/1997    04/25/1997    COLLECT COD
FOB   even epitaphs except the even 
868    33    1    1    50    NULL    0.07    0.06    N    O    08/01/1998    07/09/1998    08/01/1998    NONE    FOB
sometimesquick  
868    19    1    2    22    NULL    0.05    0.03    N    O    07/29/1998    07/10/1998    07/29/1998    NONE    REG
AIR   dinos coul 
868    49    1    3    21    NULL    0.06    0.00    N    O    06/21/1998    07/16/1998    06/21/1998    DELIVER IN
PERSON   FOB    sometimes close multipliers breach blithely 
868    0    0    4    18    NULL    0.08    0.05    N    O    08/15/1998    07/02/1998    08/15/1998    NONE    RAIL
idlesomas can thrash 
868    32    0    5    28    NULL    0.09    0.02    N    O    07/16/1998    07/16/1998    07/16/1998    NONE    MAIL
enticing decoys hinder slowly fluffil 
868    9    0    6    28    NULL    0.08    0.02    N    O    06/16/1998    08/02/1998    06/16/1998    COLLECT COD
REGAIR    furious warthogs will 
869    70    0    1    8    NULL    0.02    0.02    N    O    10/17/1995    08/10/1995    10/17/1995    DELIVER IN
PERSON   SHIP    stealthy,daring notornis be 
869    43    3    2    16    NULL    0.05    0.04    N    O    10/12/1995    09/02/1995    10/12/1995    COLLECT COD
REGAIR    never dogged depths brea 
870    28    3    1    16    NULL    0.09    0.03    A    F    01/21/1993    12/05/1992    01/21/1993    NONE    RAIL
blithe notornis nag always blithely 
870    0    0    2    27    NULL    0.08    0.03    R    F    11/12/1992    11/25/1992    11/12/1992    DELIVER IN
PERSON   TRUCK    daring pains  
870    16    1    3    42    NULL    0.09    0.06    A    F    12/11/1992    01/06/1993    12/11/1992    COLLECT COD
SHIP   regular theodolites wake fluffily . 
870    79    0    4    29    NULL    0.02    0.01    A    F    01/28/1993    12/28/1992    01/28/1993    NONE    REG
AIR   slyly close a 
870    50    0    5    2    NULL    0.08    0.05    R    F    01/03/1993    12/27/1992    01/03/1993    DELIVER IN
PERSON   SHIP    gifts nod finally thinly ruth 
870    3    0    6    7    NULL    0.08    0.03    A    F    11/20/1992    12/11/1992    11/20/1992    TAKE BACK RETURN
  TRUCK    frays under the busy sauternes might thr 
871    4    3    1    10    NULL    0.08    0.00    A    F    11/17/1994    12/02/1994    11/17/1994    NONE    MAIL
thin,enticinginstructions poach qu 
871    43    0    2    14    NULL    0.02    0.06    R    F    11/10/1994    12/03/1994    11/10/1994    NONE    AIR
quick,quietepitap 
896    1    0    1    5    NULL    0.07    0.01    R    F    06/12/1993    06/08/1993    06/12/1993    DELIVER IN
PERSON   SHIP    daringly stealthy sauter 
896    1    0    2    3    NULL    0.03    0.03    R    F    05/22/1993    07/14/1993    05/22/1993    NONE    MAIL
furiousplatelets despite the grouc 
896    37    3    3    40    NULL    0.03    0.02    A    F    06/08/1993    05/19/1993    06/08/1993    TAKE BACK
RETURN   SHIP    excuses by the b 
896    0    0    4    16    NULL    0.09    0.03    R    F    07/11/1993    06/04/1993    07/11/1993    TAKE BACK
RETURN   MAIL    somas solve besides the dogged,brave excuse 
896    61    2    5    49    NULL    0.08    0.07    A    F    05/28/1993    06/17/1993    05/28/1993    TAKE BACK
RETURN   MAIL    decoys must engage against the brave,quiet  
896    0    0    6    37    NULL    0.06    0.02    A    F    06/17/1993    06/18/1993    06/17/1993    COLLECT COD
AIR   forges through the bravely  
896    3    1    7    26    NULL    0.07    0.08    A    F    06/29/1993    05/30/1993    06/29/1993    COLLECT COD
REGAIR    furious,blithe sauternes maintain daring 
897    69    2    1    4    NULL    0.01    0.06    R    F    08/17/1992    08/29/1992    08/17/1992    NONE    RAIL
notornisbelieve doggedly . 
897    49    2    2    48    NULL    0.08    0.01    A    F    09/07/1992    07/29/1992    09/07/1992    DELIVER IN
PERSON   AIR    silent,busy decoys silent,busy d 
897    33    1    3    18    NULL    0.02    0.05    A    F    07/28/1992    08/27/1992    07/28/1992    TAKE BACK
RETURN   SHIP    orbits print ruthlessly past the fr 
897    23    3    4    11    NULL    0.05    0.04    A    F    08/23/1992    08/21/1992    08/23/1992    NONE    RAIL
regular waters c 
897    36    2    5    41    NULL    0.05    0.07    A    F    09/21/1992    08/26/1992    09/21/1992    COLLECT COD
RAIL   pearls instead of the never bold pains shou 
897    31    1    6    16    NULL    0.01    0.08    A    F    06/28/1992    08/03/1992    06/28/1992    COLLECT COD
MAIL   careful sauternes along the 
898    38    0    1    50    NULL    0.09    0.04    N    O    09/09/1995    10/09/1995    09/09/1995    DELIVER IN
PERSON   AIR    careful as 
898    0    0    2    3    NULL    0.06    0.04    N    O    07/28/1995    08/25/1995    07/28/1995    NONE    REG AIR
 daringly close dinos shall  
899    55    0    1    48    NULL    0.02    0.02    R    F    02/21/1992    03/31/1992    02/21/1992    DELIVER IN
PERSON   AIR    ruthless,thin warhorses might nag . b 
899    67    0    2    48    NULL    0.07    0.00    R    F    04/11/1992    04/04/1992    04/11/1992    NONE    FOB
finallyruthless epitaph 
900    23    2    1    23    NULL    0.07    0.06    A    F    11/20/1993    12/15/1993    11/20/1993    NONE    FOB
nevereven multipl 
900    72    1    2    50    NULL    0.08    0.01    R    F    12/31/1993    12/01/1993    12/31/1993    DELIVER IN
PERSON   TRUCK    fluffy,close sheaves  
900    52    1    3    41    NULL    0.07    0.06    A    F    12/18/1993    01/12/1994    12/18/1993    TAKE BACK
RETURN   SHIP    final warhorses be 
900    78    0    4    25    NULL    0.04    0.03    A    F    01/04/1994    12/03/1993    01/04/1994    COLLECT COD
RAIL   forges up the 
900    21    1    5    29    NULL    0.01    0.05    A    F    01/06/1994    12/23/1993    01/06/1994    COLLECT COD
FOB   platelets could  
900    31    3    6    25    NULL    0.05    0.04    A    F    02/08/1994    12/25/1993    02/08/1994    NONE    REG
AIR   epitaphs beneath the busy frets sha 
901    0    0    1    40    NULL    0.01    0.02    A    F    10/06/1993    10/28/1993    10/06/1993    TAKE BACK
RETURN   MAIL    frays may lose d 
901    68    0    2    5    NULL    0.08    0.03    A    F    09/29/1993    11/03/1993    09/29/1993    COLLECT COD
SHIP   notornis will have to promise slowly clo 
902    31    1    1    32    NULL    0.06    0.01    N    O    07/19/1997    06/13/1997    07/19/1997    NONE    MAIL
even,even foxes  
902    38    0    2    26    NULL    0.09    0.02    N    O    07/15/1997    07/05/1997    07/15/1997    NONE    AIR
ruthlesslythin es 
902    0    0    3    3    NULL    0.00    0.01    N    O    06/29/1997    07/10/1997    06/29/1997    TAKE BACK RETURN
  SHIP    blithely permanent dinos ougth to doubt  
903    17    1    1    30    NULL    0.00    0.07    R    F    02/08/1993    03/03/1993    02/08/1993    DELIVER IN
PERSON   SHIP    pains under the evenly fluffy epitaph 
903    49    1    2    14    NULL    0.04    0.02    R    F    01/16/1993    03/23/1993    01/16/1993    DELIVER IN
PERSON   AIR    enticing,careful e 
903    0    0    3    49    NULL    0.06    0.03    R    F    12/29/1992    02/02/1993    12/29/1992    NONE    AIR
enticinggifts might x_ray ironi 
928    43    3    1    20    NULL    0.04    0.06    N    O    04/06/1997    02/02/1997    04/06/1997    DELIVER IN
PERSON   REG AIR    slow notornis despite th 
928    2    3    2    35    NULL    0.01    0.07    N    O    03/01/1997    01/31/1997    03/01/1997    TAKE BACK
RETURN   RAIL    bold platelets doze b 
928    33    1    3    49    NULL    0.10    0.01    N    O    03/01/1997    01/19/1997    03/01/1997    DELIVER IN
PERSON   REG AIR    sauternes run busily sly notorni 
929    59    3    1    47    NULL    0.09    0.05    A    F    05/23/1992    02/23/1992    05/23/1992    DELIVER IN
PERSON   AIR    brave sheaves brave sheave the idle,b 
929    63    2    2    44    NULL    0.06    0.04    R    F    03/10/1992    03/03/1992    03/10/1992    TAKE BACK
RETURN   RAIL    blithely fluffy  
929    57    3    3    31    NULL    0.07    0.00    R    F    02/14/1992    04/19/1992    02/14/1992    TAKE BACK
RETURN   TRUCK    stealthily blith 
929    72    3    4    46    NULL    0.09    0.06    A    F    04/13/1992    04/16/1992    04/13/1992    TAKE BACK
RETURN   FOB    never close sauternes sublate fu 
929    10    0    5    30    NULL    0.09    0.01    R    F    04/04/1992    04/04/1992    04/04/1992    TAKE BACK
RETURN   SHIP    permanently careful notornis thrash q 
929    78    1    6    18    NULL    0.01    0.05    R    F    04/11/1992    03/26/1992    04/11/1992    NONE    FOB
boldlybusy patterns thr 
930    0    0    1    13    NULL    0.02    0.03    N    O    07/09/1996    08/22/1996    07/09/1996    COLLECT COD
FOB   brave dolphin 
930    42    3    2    22    NULL    0.07    0.02    N    O    09/15/1996    07/30/1996    09/15/1996    TAKE BACK
RETURN   TRUCK    braids should x_ray s 
931    22    2    1    6    NULL    0.05    0.05    R    F    07/16/1994    08/18/1994    07/16/1994    TAKE BACK
RETURN   RAIL    brave pattern 
932    55    3    1    23    NULL    0.05    0.06    N    O    10/22/1995    01/06/1996    10/22/1995    DELIVER IN
PERSON   RAIL    permanent  
932    0    0    2    34    NULL    0.09    0.05    N    O    12/09/1995    11/26/1995    12/09/1995    TAKE BACK
RETURN   AIR    ironic notornis will have t 
932    43    0    3    24    NULL    0.02    0.04    N    O    12/19/1995    12/15/1995    12/19/1995    TAKE BACK
RETURN   TRUCK    brave ideas under the final,s 
932    45    1    4    7    NULL    0.04    0.06    N    O    01/16/1996    12/07/1995    01/16/1996    NONE    AIR
ruthlesslysi 
933    78    2    1    40    NULL    0.07    0.04    R    F    08/21/1992    09/08/1992    08/21/1992    COLLECT COD
MAIL   frays may gro 
934    0    0    1    20    NULL    0.10    0.04    R    F    04/30/1993    04/28/1993    04/30/1993    DELIVER IN
PERSON   AIR    boldly idle idea 
934    47    3    2    37    NULL    0.08    0.03    A    F    05/15/1993    04/16/1993    05/15/1993    COLLECT COD
RAIL   dugouts with the bold,final sheaves a 
934    46    0    3    13    NULL    0.06    0.08    R    F    03/21/1993    05/26/1993    03/21/1993    COLLECT COD
SHIP   fluffy,quick asymptot 
935    0    0    1    46    NULL    0.04    0.00    N    O    09/20/1995    10/28/1995    09/20/1995    COLLECT COD
RAIL    warthogs might maintain never past the flu 
935    62    1    2    25    NULL    0.05    0.03    N    O    09/22/1995    10/22/1995    09/22/1995    DELIVER IN
PERSON   TRUCK    forges hinder somas ; close dolphins  
935    26    2    3    18    NULL    0.04    0.04    N    O    11/02/1995    10/30/1995    11/02/1995    TAKE BACK
RETURN   MAIL    close,thin thi mig 
935    63    3    4    15    NULL    0.00    0.07    N    O    09/17/1995    11/10/1995    09/17/1995    NONE    AIR
escapadesshall boost doggedly without t 
960    10    2    1    50    NULL    0.03    0.00    N    O    11/12/1996    11/16/1996    11/12/1996    TAKE BACK
RETURN   RAIL    forges throug 
961    0    0    1    16    NULL    0.08    0.02    N    O    11/04/1998    08/26/1998    11/04/1998    TAKE BACK
RETURN   TRUCK    furious,final sent 
961    9    1    2    4    NULL    0.06    0.06    N    O    11/02/1998    08/20/1998    11/02/1998    COLLECT COD
AIR   somas doubt doub f 
961    0    0    3    3    NULL    0.08    0.04    N    O    08/17/1998    08/22/1998    08/17/1998    COLLECT COD
MAIL   quietly regular orbits against t 
962    69    2    1    3    NULL    0.10    0.02    N    O    10/04/1997    11/02/1997    10/04/1997    COLLECT COD
MAIL   slyly bold th 
962    0    3    2    10    NULL    0.10    0.02    N    O    11/28/1997    11/25/1997    11/28/1997    TAKE BACK
RETURN   TRUCK    enticing sent 
963    61    3    1    22    NULL    0.04    0.03    N    O    04/04/1998    05/17/1998    04/04/1998    TAKE BACK
RETURN   FOB    carefully stealthy waters w 
964    0    0    1    17    NULL    0.03    0.05    N    O    09/03/1998    09/11/1998    09/03/1998    NONE    MAIL
slylyblithe realms are somet 
964    64    1    2    11    NULL    0.06    0.01    N    O    08/27/1998    09/16/1998    08/27/1998    NONE    TRUCK
 close,dogged dinos impress  
964    46    2    3    35    NULL    0.01    0.02    N    O    09/20/1998    10/11/1998    09/20/1998    COLLECT COD
FOB   sheaves should h 
964    33    2    4    46    NULL    0.00    0.07    N    O    10/16/1998    09/21/1998    10/16/1998    COLLECT COD
AIR   pearls should nod regularly s 
964    44    2    5    22    NULL    0.07    0.06    N    O    11/17/1998    09/07/1998    11/17/1998    COLLECT COD
RAIL   thin,busy theodolites 
964    7    2    6    25    NULL    0.10    0.01    N    O    10/23/1998    10/15/1998    10/23/1998    COLLECT COD
FOB   brave,brave pearls 
965    0    0    1    27    NULL    0.02    0.01    A    F    06/14/1993    05/29/1993    06/14/1993    TAKE BACK
RETURN   RAIL    waters without the brave,blit 
965    57    0    2    4    NULL    0.03    0.01    R    F    06/07/1993    04/23/1993    06/07/1993    NONE    MAIL
blithelydogged warhorses behind the sil 
965    62    2    3    42    NULL    0.01    0.06    A    F    07/04/1993    05/20/1993    07/04/1993    DELIVER IN
PERSON   RAIL    careful,quiet Tiresias' may breach silen 
965    14    2    4    41    NULL    0.08    0.07    R    F    06/16/1993    05/27/1993    06/16/1993    NONE    AIR
plateletsunder the regularly fluff 
966    4    0    1    2    NULL    0.04    0.05    A    F    01/22/1993    03/30/1993    01/22/1993    NONE    REG AIR
 frets from the quick  
966    0    0    2    44    NULL    0.09    0.04    A    F    03/30/1993    04/19/1993    03/30/1993    TAKE BACK
RETURN   FOB    silent,ironic 
967    21    1    1    37    NULL    0.10    0.02    N    O    03/04/1998    03/06/1998    03/04/1998    DELIVER IN
PERSON   FOB    sheaves promise from the fu 
967    33    3    2    14    NULL    0.09    0.07    N    O    04/08/1998    02/19/1998    04/08/1998    COLLECT COD
REGAIR    sometimes permanent forges eat evenly -- 
967    12    3    3    30    NULL    0.03    0.06    N    O    03/21/1998    03/02/1998    03/21/1998    NONE    FOB
finalfrays except the r 
967    33    0    4    17    NULL    0.05    0.01    N    O    02/03/1998    03/19/1998    02/03/1998    DELIVER IN
PERSON   SHIP    boldly thin decoys shall have 
967    30    1    5    8    NULL    0.04    0.01    N    O    03/29/1998    04/07/1998    03/29/1998    TAKE BACK
RETURN   MAIL    hockey players must have to g 
967    43    2    6    31    NULL    0.05    0.07    N    O    01/25/1998    04/12/1998    01/25/1998    NONE    REG
AIR   stealthy  outside the sauternes han 
967    2    2    7    43    NULL    0.03    0.07    N    O    02/11/1998    02/25/1998    02/11/1998    NONE    REG AIR
  tithes wake : dari 
992    38    3    1    37    NULL    0.04    0.03    N    O    04/10/1997    05/16/1997    04/10/1997    DELIVER IN
PERSON   TRUCK    bravely steal 
992    29    1    2    40    NULL    0.07    0.03    N    O    06/08/1997    06/06/1997    06/08/1997    TAKE BACK
RETURN   MAIL    closely silent epi 
993    53    1    1    31    NULL    0.01    0.08    R    F    07/30/1993    09/28/1993    07/30/1993    TAKE BACK
RETURN   FOB    sly waters should have t 
993    51    3    2    3    NULL    0.08    0.07    R    F    09/03/1993    08/24/1993    09/03/1993    TAKE BACK
RETURN   FOB    careful warhorses mold blit 
993    50    3    3    48    NULL    0.06    0.00    R    F    09/06/1993    09/14/1993    09/06/1993    TAKE BACK
RETURN   RAIL    bold,idle epitap 
993    55    0    4    26    NULL    0.10    0.06    R    F    07/29/1993    10/05/1993    07/29/1993    TAKE BACK
RETURN   TRUCK    bravely daring platelets will promi 
994    52    2    1    42    NULL    0.01    0.05    N    O    09/16/1997    08/18/1997    09/16/1997    DELIVER IN
PERSON   RAIL    fluffily dogged gifts to 
995    57    0    1    10    NULL    0.03    0.01    N    O    12/02/1997    12/16/1997    12/02/1997    NONE    REG
AIR   idly quiet Tiresias' was fluffily within 
995    0    0    2    31    NULL    0.07    0.07    N    O    10/03/1997    12/16/1997    10/03/1997    NONE    MAIL
idle,ruthlessdolphins beside 
995    59    2    3    37    NULL    0.07    0.00    N    O    12/01/1997    12/13/1997    12/01/1997    NONE    SHIP
sly escapades afte 
995    0    0    4    26    NULL    0.06    0.08    N    O    01/02/1998    11/03/1997    01/02/1998    TAKE BACK
RETURN   TRUCK    notornis will have to snooze  
995    20    1    5    33    NULL    0.01    0.08    N    O    01/18/1998    11/05/1997    01/18/1998    COLLECT COD
REGAIR    thin,fluffy braids must have to  
996    29    2    1    36    NULL    0.09    0.02    N    O    02/16/1996    01/16/1996    02/16/1996    TAKE BACK
RETURN   TRUCK    boldly fluffy brai 
996    0    0    2    18    NULL    0.04    0.02    N    O    01/16/1996    02/20/1996    01/16/1996    DELIVER IN
PERSON   RAIL    even,regular Tires 
997    25    1    1    30    NULL    0.07    0.05    R    F    07/01/1994    07/08/1994    07/01/1994    NONE    MAIL
stealthily stealth 
997    3    3    2    31    NULL    0.02    0.02    R    F    07/18/1994    07/11/1994    07/18/1994    COLLECT COD
FOB   fluffy depths must eat quic 
997    45    0    3    47    NULL    0.04    0.04    A    F    08/13/1994    08/20/1994    08/13/1994    COLLECT COD
RAIL   sly,daring depths to the permane 
998    48    2    1    32    NULL    0.02    0.01    N    O    07/04/1997    07/05/1997    07/04/1997    DELIVER IN
PERSON   SHIP    doggedly quiet sheave 
998    58    2    2    33    NULL    0.04    0.03    N    O    05/28/1997    05/23/1997    05/28/1997    TAKE BACK
RETURN   TRUCK    finally permanent notornis x_ray 
998    54    0    3    35    NULL    0.05    0.00    N    O    07/25/1997    06/06/1997    07/25/1997    COLLECT COD
SHIP   decoys sin 
999    8    1    1    11    NULL    0.08    0.04    N    O    06/24/1997    05/26/1997    06/24/1997    DELIVER IN
PERSON   SHIP    escapades can 
999    0    0    2    1    NULL    0.00    0.01    N    O    07/26/1997    06/11/1997    07/26/1997    NONE    RAIL
dogged,bravesentiments mold silent 
999    73    0    3    48    NULL    0.01    0.01    N    O    04/18/1997    05/30/1997    04/18/1997    NONE    REG
AIR   boldly stealthy  
1024    43    0    1    30    NULL    0.04    0.03    R    F    07/26/1993    08/19/1993    07/26/1993    DELIVER IN
PERSON   RAIL    warthogs would sleep pea 
1024    0    0    2    16    NULL    0.04    0.08    R    F    08/14/1993    09/12/1993    08/14/1993    NONE    FOB
slyfoxes print finally  
1024    28    1    3    21    NULL    0.02    0.08    R    F    09/12/1993    08/27/1993    09/12/1993    DELIVER IN
PERSON   SHIP    daring orbits from 
1024    26    2    4    23    NULL    0.10    0.06    R    F    08/25/1993    08/18/1993    08/25/1993    NONE    SHIP
 busy,quick pe 
1024    4    1    5    49    NULL    0.06    0.01    A    F    10/04/1993    10/03/1993    10/04/1993    NONE    AIR
ironic,busypatterns try 
1024    41    1    6    21    NULL    0.01    0.07    A    F    09/21/1993    09/07/1993    09/21/1993    TAKE BACK
RETURN   RAIL    final wate 
1025    76    1    1    10    NULL    0.02    0.01    R    F    12/13/1992    01/13/1993    12/13/1992    DELIVER IN
PERSON   REG AIR    sly,thin sentiments would affix along 
1026    33    0    1    37    NULL    0.03    0.06    N    O    01/22/1998    12/12/1997    01/22/1998    TAKE BACK
RETURN   RAIL    permanent,ironic tithes  
1026    50    0    2    10    NULL    0.05    0.07    N    O    03/02/1998    12/26/1997    03/02/1998    COLLECT COD
RAIL    slyly furious 
1026    54    3    3    2    NULL    0.04    0.01    N    O    02/16/1998    01/03/1998    02/16/1998    COLLECT COD
MAIL    platelets during the furiusly bold c 
1026    63    2    4    22    NULL    0.08    0.06    N    O    02/22/1998    12/18/1997    02/22/1998    DELIVER IN
PERSON   RAIL    quiet,slow gi 
1026    0    0    5    2    NULL    0.06    0.07    N    O    02/11/1998    01/29/1998    02/11/1998    COLLECT COD
RAIL   sauternes solve idle,bra 
1026    22    0    6    7    NULL    0.02    0.07    N    O    02/10/1998    12/27/1997    02/10/1998    COLLECT COD
AIR   grouches should have to was even 
1026    22    3    7    48    NULL    0.05    0.02    N    O    02/15/1998    01/11/1998    02/15/1998    DELIVER IN
PERSON   AIR    final,busy frets along the idly quiet ex 
1027    65    2    1    24    NULL    0.03    0.01    N    O    09/23/1996    11/02/1996    09/23/1996    NONE    MAIL
 bravely brave multipliers use ; bus 
1027    59    1    2    8    NULL    0.09    0.04    N    O    10/04/1996    11/23/1996    10/04/1996    COLLECT COD
MAIL   final sheaves can print ruthlessly always c 
1028    52    3    1    50    NULL    0.02    0.01    N    O    03/19/1998    01/24/1998    03/19/1998    DELIVER IN
PERSON   MAIL    thin courts engage : 
1028    40    2    2    50    NULL    0.05    0.06    N    O    02/06/1998    02/15/1998    02/06/1998    TAKE BACK
RETURN   TRUCK    epitaphs could use idly  
1028    58    3    3    42    NULL    0.04    0.05    N    O    03/15/1998    01/03/1998    03/15/1998    TAKE BACK
RETURN   RAIL    enticingly careful depths try to prin 
1028    42    1    4    44    NULL    0.10    0.04    N    O    01/11/1998    02/03/1998    01/11/1998    DELIVER IN
PERSON   REG AIR    bold platelets alongside of the iro 
1028    0    1    5    20    NULL    0.07    0.04    N    O    03/24/1998    02/25/1998    03/24/1998    COLLECT COD
TRUCK   ,sly sentiments de 
1028    64    2    6    42    NULL    0.10    0.04    N    O    12/18/1997    02/02/1998    12/18/1997    NONE    AIR
 must have to sleep doggedl 
1028    59    3    7    33    NULL    0.05    0.04    N    O    02/12/1998    01/06/1998    02/12/1998    NONE    MAIL
 blithe,furious warhorses mi 
1029    72    0    1    50    NULL    0.09    0.06    N    O    06/18/1995    07/13/1995    06/18/1995    COLLECT COD
AIR    even,slow epitaphs sh 
1029    75    3    2    10    NULL    0.07    0.02    A    F    05/21/1995    06/30/1995    05/21/1995    COLLECT COD
MAIL    silently dogged pinto beans doub 
1029    67    0    3    22    NULL    0.08    0.04    N    O    07/15/1995    07/01/1995    07/15/1995    TAKE BACK
RETURN   FOB    slow,thin courts use bus 
1029    71    2    4    24    NULL    0.01    0.04    N    F    06/17/1995    07/05/1995    06/17/1995    NONE    RAIL
 quick sentiments of the excuses  
1030    57    3    1    25    NULL    0.05    0.01    N    O    01/11/1997    03/12/1997    01/11/1997    DELIVER IN
PERSON   REG AIR    daring instructions during the dogged 
1030    1    3    2    34    NULL    0.10    0.07    N    O    02/05/1997    01/12/1997    02/05/1997    COLLECT COD
TRUCK   stealthily careful realms o 
1030    56    1    3    15    NULL    0.07    0.00    N    O    01/24/1997    01/14/1997    01/24/1997    NONE    TRUCK
  enticing orbits shoul 
1031    49    3    1    18    NULL    0.06    0.02    N    O    07/03/1995    05/13/1995    07/03/1995    TAKE BACK
RETURN   RAIL    quiet attainments by the da 
1031    2    0    2    41    NULL    0.05    0.06    N    F    06/06/1995    06/08/1995    06/06/1995    NONE    TRUCK
 ideas use on the bravely bo 
1031    0    0    3    32    NULL    0.01    0.02    R    F    03/28/1995    04/22/1995    03/28/1995    COLLECT COD
AIR   closely busy  
1031    0    0    4    14    NULL    0.04    0.04    R    F    04/12/1995    05/05/1995    04/12/1995    COLLECT COD
REGAIR    escapades before the never thin orbits c 
1031    52    0    5    29    NULL    0.06    0.04    R    F    04/23/1995    05/08/1995    04/23/1995    TAKE BACK
RETURN   RAIL    idly fluffy tithes alongside of the thin 
1031    0    0    6    24    NULL    0.03    0.01    R    F    04/15/1995    05/01/1995    04/15/1995    DELIVER IN
PERSON   REG AIR    dolphins might x 
1056    0    0    1    4    NULL    0.10    0.03    A    F    12/22/1994    12/20/1994    12/22/1994    DELIVER IN
PERSON   TRUCK    ironic,daring gifts might print furiusly 
1056    1    2    2    18    NULL    0.08    0.05    A    F    10/13/1994    10/25/1994    10/13/1994    COLLECT COD
AIR   slyly dogged pains th 
1056    6    2    3    34    NULL    0.06    0.06    R    F    10/07/1994    11/10/1994    10/07/1994    DELIVER IN
PERSON   AIR    close, pains outside the dogg 
1056    2    3    4    26    NULL    0.09    0.03    A    F    10/22/1994    11/25/1994    10/22/1994    TAKE BACK
RETURN   FOB    furiusly blithe asymptotes solve pains - 
1056    43    3    5    4    NULL    0.07    0.04    R    F    01/01/1995    12/18/1994    01/01/1995    TAKE BACK
RETURN   MAIL    stealthily slow th 
1056    68    3    6    30    NULL    0.00    0.05    A    F    12/11/1994    12/16/1994    12/11/1994    TAKE BACK
RETURN   TRUCK    sly,dogged warhorses across the ent 
1057    68    1    1    31    NULL    0.09    0.01    R    F    12/16/1992    12/30/1992    12/16/1992    NONE    SHIP
 regular  alon 
1057    29    0    2    36    NULL    0.09    0.07    A    F    01/22/1993    01/31/1993    01/22/1993    NONE    AIR
quick dugouts can kindle fluf 
1057    32    3    3    30    NULL    0.07    0.05    R    F    12/21/1992    02/02/1993    12/21/1992    COLLECT COD
MAIL    patterns promise busily fluffy frays  
1057    75    0    4    34    NULL    0.01    0.07    R    F    12/08/1992    01/26/1993    12/08/1992    NONE    RAIL
 dogged escapades upon the carefu 
1058    54    2    1    9    NULL    0.03    0.07    A    F    05/27/1994    04/16/1994    05/27/1994    TAKE BACK
RETURN   MAIL    forges affix evenly affi 
1058    0    0    2    30    NULL    0.10    0.01    R    F    04/09/1994    03/29/1994    04/09/1994    TAKE BACK
RETURN   SHIP    close waters print ironic,c 
1058    44    3    3    28    NULL    0.09    0.08    R    F    03/19/1994    03/27/1994    03/19/1994    DELIVER IN
PERSON   AIR    ironic,busy depths ougth to poach reg 
1058    51    0    4    24    NULL    0.01    0.06    R    F    05/10/1994    05/24/1994    05/10/1994    COLLECT COD
MAIL    quiet,dogged warho 
1058    46    2    5    8    NULL    0.08    0.07    A    F    05/14/1994    05/09/1994    05/14/1994    DELIVER IN
PERSON   REG AIR    blithe foxes in place 
1058    14    1    6    15    NULL    0.03    0.01    A    F    03/19/1994    04/19/1994    03/19/1994    COLLECT COD
SHIP    close,even br 
1059    79    3    1    35    NULL    0.03    0.06    N    O    10/12/1995    09/23/1995    10/12/1995    COLLECT COD
RAIL    final,quick s 
1059    57    3    2    32    NULL    0.06    0.08    N    O    08/12/1995    08/30/1995    08/12/1995    NONE    MAIL
 depths cajole idly cajole idl 
1059    12    0    3    34    NULL    0.00    0.03    N    O    10/07/1995    09/06/1995    10/07/1995    NONE    AIR
dogged escapades e 
1059    62    2    4    27    NULL    0.07    0.05    N    O    07/30/1995    08/31/1995    07/30/1995    COLLECT COD
REG AIR    sly,fluffy dolphin 
1060    34    1    1    17    NULL    0.07    0.06    R    F    09/13/1993    10/01/1993    09/13/1993    NONE    TRUCK
  multipliers might wake ; stea 
1060    13    2    2    50    NULL    0.09    0.08    A    F    09/22/1993    10/29/1993    09/22/1993    COLLECT COD
AIR    bold Tiresias' wil 
1060    3    1    3    38    NULL    0.07    0.01    A    F    09/24/1993    10/27/1993    09/24/1993    TAKE BACK
RETURN   MAIL    blithe,daring epit 
1060    12    0    4    15    NULL    0.08    0.01    A    F    09/22/1993    09/25/1993    09/22/1993    TAKE BACK
RETURN   AIR    permanent,dogged pearls during the  
1060    28    3    5    20    NULL    0.00    0.04    R    F    11/30/1993    09/23/1993    11/30/1993    TAKE BACK
RETURN   MAIL    asymptotes may kindle permanentl 
1060    73    2    6    41    NULL    0.01    0.07    R    F    09/01/1993    11/01/1993    09/01/1993    COLLECT COD
FOB    courts must doze f 
1060    0    0    7    48    NULL    0.05    0.07    A    F    09/03/1993    09/30/1993    09/03/1993    COLLECT COD
MAIL   stealthily bold attainme 
1061    16    1    1    31    NULL    0.04    0.03    N    O    07/27/1997    08/12/1997    07/27/1997    DELIVER IN
PERSON   AIR    courts above the 
1061    61    0    2    3    NULL    0.06    0.04    N    O    09/01/1997    08/21/1997    09/01/1997    NONE    FOB
daring sauternes could  
1061    73    1    3    35    NULL    0.01    0.07    N    O    07/28/1997    07/30/1997    07/28/1997    COLLECT COD
RAIL    ,permanent permane 
1061    0    0    4    42    NULL    0.05    0.06    N    O    08/28/1997    07/13/1997    08/28/1997    NONE    REG
AIR   bravely final warthogs maintain stealthily  
1061    73    3    5    8    NULL    0.02    0.00    N    O    09/12/1997    07/13/1997    09/12/1997    NONE    TRUCK
 careful  may doze enticingl 
1062    76    1    1    42    NULL    0.07    0.07    A    F    11/03/1994    11/24/1994    11/03/1994    NONE    SHIP
 idle,dogged orbits atop the even atta 
1062    2    2    2    8    NULL    0.00    0.02    R    F    11/30/1994    12/12/1994    11/30/1994    NONE    FOB
ruthlesslyclose dugouts 
1062    13    1    3    10    NULL    0.04    0.03    R    F    10/27/1994    12/19/1994    10/27/1994    COLLECT COD
RAIL    enticingly ruthless pint 
1062    53    3    4    6    NULL    0.02    0.04    R    F    01/04/1995    12/07/1994    01/04/1995    NONE    SHIP
sometimes brave waters t 
1062    6    0    5    38    NULL    0.00    0.08    R    F    12/25/1994    11/11/1994    12/25/1994    NONE    REG
AIR   even,quick asymptotes even, 
1062    79    0    6    25    NULL    0.00    0.04    R    F    10/09/1994    10/22/1994    10/09/1994    NONE    AIR
slow,dogged realms under the ruthle 
1063    49    3    1    24    NULL    0.01    0.03    R    F    07/31/1994    09/01/1994    07/31/1994    TAKE BACK
RETURN   REG AIR    furious decoys c 
1063    0    0    2    15    NULL    0.03    0.00    R    F    11/07/1994    10/24/1994    11/07/1994    NONE    RAIL
permanently e 
1063    1    3    3    19    NULL    0.03    0.06    R    F    11/23/1994    09/08/1994    11/23/1994    TAKE BACK
RETURN   RAIL    sauternes by the enticing,ste 
1088    66    3    1    34    NULL    0.08    0.02    N    O    03/05/1998    02/09/1998    03/05/1998    TAKE BACK
RETURN   SHIP    theodolites shall have to believe flu 
1089    53    3    1    28    NULL    0.07    0.05    N    O    05/27/1997    08/13/1997    05/27/1997    TAKE BACK
RETURN   FOB    fluffily blithe so 
1089    0    0    2    31    NULL    0.02    0.06    N    O    06/21/1997    06/30/1997    06/21/1997    COLLECT COD
MAIL   stealthy,quick sentiments acr 
1089    10    2    3    30    NULL    0.04    0.07    N    O    06/19/1997    08/09/1997    06/19/1997    TAKE BACK
RETURN   AIR    notornis try to play since  
1089    52    1    4    24    NULL    0.03    0.04    N    O    06/25/1997    08/06/1997    06/25/1997    COLLECT COD
SHIP    blithe,sly dependencies hang furiusly 
1089    67    3    5    39    NULL    0.00    0.02    N    O    07/30/1997    08/12/1997    07/30/1997    COLLECT COD
SHIP    quick,furious realms could breach quietly a 
1090    17    1    1    47    NULL    0.07    0.02    N    O    02/06/1996    02/21/1996    02/06/1996    DELIVER IN
PERSON   SHIP    regular braids should have to breach  
1090    23    3    2    1    NULL    0.08    0.04    N    O    01/08/1996    01/31/1996    01/08/1996    DELIVER IN
PERSON   AIR    sentiments shall solve busily up 
1090    1    1    3    1    NULL    0.09    0.00    N    O    02/22/1996    01/09/1996    02/22/1996    DELIVER IN
PERSON   TRUCK    Tiresias' among the idle,da 
1090    77    3    4    1    NULL    0.03    0.02    N    O    02/04/1996    02/18/1996    02/04/1996    NONE    FOB
quietlyslow dolphins do mold ruthles 
1091    0    0    1    24    NULL    0.07    0.07    N    O    09/01/1995    10/23/1995    09/01/1995    TAKE BACK
RETURN   TRUCK    bold braids bold braid sleep bold,stealt 
1092    40    1    1    40    NULL    0.06    0.04    R    F    05/29/1994    04/27/1994    05/29/1994    TAKE BACK
RETURN   SHIP    gifts use beneath the stealthy frays  
1092    0    0    2    21    NULL    0.03    0.02    R    F    04/09/1994    03/28/1994    04/09/1994    TAKE BACK
RETURN   TRUCK    stealthily fluffy war 
1092    30    3    3    11    NULL    0.06    0.08    R    F    04/01/1994    05/05/1994    04/01/1994    DELIVER IN
PERSON   TRUCK    dinos by the qui 
1093    63    1    1    42    NULL    0.04    0.04    R    F    01/13/1994    01/20/1994    01/13/1994    NONE    SHIP
 regular  from the stealthy,quiet Tire 
1093    9    0    2    46    NULL    0.01    0.02    R    F    12/17/1993    01/25/1994    12/17/1993    TAKE BACK
RETURN   FOB    instructions ins 
1093    0    0    3    1    NULL    0.06    0.03    R    F    02/26/1994    01/07/1994    02/26/1994    TAKE BACK
RETURN   MAIL    pains within the even 
1093    66    3    4    40    NULL    0.05    0.06    A    F    12/04/1993    12/29/1993    12/04/1993    NONE    RAIL
 thin,close dolphin 
1094    65    3    1    11    NULL    0.09    0.01    R    F    04/14/1994    05/13/1994    04/14/1994    DELIVER IN
PERSON   AIR    foxes despite the silently  dugouts n 
1094    59    2    2    29    NULL    0.06    0.04    R    F    04/04/1994    04/12/1994    04/04/1994    COLLECT COD
RAIL    careful decoys for the blithe 
1094    42    2    3    12    NULL    0.03    0.07    R    F    04/29/1994    04/07/1994    04/29/1994    TAKE BACK
RETURN   REG AIR    dugouts sublate permanen 
1094    7    1    4    42    NULL    0.04    0.07    R    F    03/19/1994    05/05/1994    03/19/1994    COLLECT COD
FOB   furiusly ironic pearls t 
1094    43    2    5    18    NULL    0.06    0.02    R    F    05/14/1994    03/27/1994    05/14/1994    DELIVER IN
PERSON   REG AIR    slowly fluffy 
1094    24    2    6    30    NULL    0.09    0.05    R    F    05/22/1994    05/09/1994    05/22/1994    DELIVER IN
PERSON   MAIL    multipliers throughout the quiet,bold de 
1095    20    1    1    29    NULL    0.10    0.07    N    O    01/05/1996    11/06/1995    01/05/1996    NONE    RAIL
 sly warthogs  
1095    32    3    2    18    NULL    0.05    0.01    N    O    10/30/1995    11/26/1995    10/30/1995    TAKE BACK
RETURN   TRUCK    fluffy ide 
1095    26    3    3    16    NULL    0.06    0.01    N    O    11/25/1995    11/11/1995    11/25/1995    DELIVER IN
PERSON   TRUCK    braids must x 
1095    36    0    4    34    NULL    0.05    0.00    N    O    01/02/1996    12/25/1995    01/02/1996    COLLECT COD
TRUCK    regular sentiments 
1095    8    2    5    11    NULL    0.06    0.01    N    O    11/26/1995    12/16/1995    11/26/1995    TAKE BACK
RETURN   RAIL    sheaves with the 
1095    8    3    6    17    NULL    0.05    0.03    N    O    11/01/1995    12/04/1995    11/01/1995    NONE    MAIL
fluffy grouches tr 
1095    0    0    7    41    NULL    0.02    0.05    N    O    01/21/1996    11/06/1995    01/21/1996    NONE    SHIP
bold sauternes besides the final 
1120    56    1    1    17    NULL    0.03    0.08    R    F    11/29/1994    10/08/1994    11/29/1994    DELIVER IN
PERSON   SHIP    dogged forges by the  
1120    0    0    2    25    NULL    0.01    0.01    R    F    10/15/1994    09/04/1994    10/15/1994    COLLECT COD
SHIP   decoys upon the quickly  dugouts 
1120    75    1    3    31    NULL    0.09    0.01    A    F    10/07/1994    10/23/1994    10/07/1994    COLLECT COD
REG AIR    bold pinto be 
1120    14    3    4    40    NULL    0.04    0.03    A    F    09/28/1994    09/08/1994    09/28/1994    DELIVER IN
PERSON   TRUCK    ,careful tithes during the  s 
1120    17    0    5    10    NULL    0.06    0.00    A    F    11/01/1994    08/30/1994    11/01/1994    DELIVER IN
PERSON   AIR    slow, sentiments insi 
1121    0    0    1    34    NULL    0.08    0.07    N    O    03/30/1997    03/28/1997    03/30/1997    DELIVER IN
PERSON   SHIP    silent,blithe grou 
1121    68    1    2    43    NULL    0.06    0.06    N    O    03/29/1997    04/21/1997    03/29/1997    COLLECT COD
MAIL    sly gifts upon the 
1121    78    1    3    39    NULL    0.10    0.02    N    O    03/07/1997    04/28/1997    03/07/1997    COLLECT COD
MAIL    permanent, depths  
1121    43    0    4    48    NULL    0.07    0.00    N    O    03/16/1997    03/08/1997    03/16/1997    TAKE BACK
RETURN   TRUCK    gifts would boost enticingly quiet,thin epi 
1121    13    2    5    43    NULL    0.10    0.03    N    O    04/09/1997    04/20/1997    04/09/1997    DELIVER IN
PERSON   FOB    even dugouts after the asymptotes caj 
1122    58    1    1    4    NULL    0.01    0.05    N    O    04/13/1996    02/26/1996    04/13/1996    COLLECT COD
REGAIR    platelets  
1122    14    2    2    38    NULL    0.06    0.00    N    O    03/08/1996    03/18/1996    03/08/1996    TAKE BACK
RETURN   SHIP    bravely even multipli 
1122    79    2    3    10    NULL    0.04    0.07    N    O    02/25/1996    02/25/1996    02/25/1996    DELIVER IN
PERSON   SHIP    thin,final de 
1122    53    0    4    50    NULL    0.07    0.04    N    O    01/30/1996    04/15/1996    01/30/1996    TAKE BACK
RETURN   FOB    orbits run !  
1122    52    2    5    42    NULL    0.01    0.06    N    O    03/29/1996    04/06/1996    03/29/1996    NONE    TRUCK
  thin,regular excus 
1123    70    0    1    34    NULL    0.01    0.02    A    F    03/10/1992    02/15/1992    03/10/1992    COLLECT COD
TRUCK    furious frets around the ir 
1123    68    0    2    16    NULL    0.04    0.02    A    F    02/22/1992    02/29/1992    02/22/1992    TAKE BACK
RETURN   RAIL    courts beside the sly  should dazzle  
1123    11    2    3    45    NULL    0.08    0.07    R    F    03/25/1992    02/24/1992    03/25/1992    DELIVER IN
PERSON   RAIL    always fluffy platelets of the f 
1124    0    0    1    18    NULL    0.02    0.06    A    F    04/20/1992    04/06/1992    04/20/1992    NONE    SHIP
idly  escapades above the e 
1124    0    0    2    3    NULL    0.07    0.06    A    F    02/22/1992    04/13/1992    02/22/1992    COLLECT COD
RAIL   ironic,blithe warthogs s 
1124    1    3    3    14    NULL    0.00    0.01    A    F    03/24/1992    04/02/1992    03/24/1992    NONE    AIR
braveexcuses could have to thrash be 
1124    56    3    4    29    NULL    0.01    0.04    R    F    05/09/1992    02/27/1992    05/09/1992    COLLECT COD
FOB     bold pearls with the fr 
1124    50    1    5    45    NULL    0.01    0.04    A    F    05/10/1992    03/30/1992    05/10/1992    TAKE BACK
RETURN   REG AIR    fluffy,regular pains could dazzle never cou 
1124    65    0    6    29    NULL    0.08    0.06    A    F    04/02/1992    03/06/1992    04/02/1992    DELIVER IN
PERSON   RAIL    always permanent s 
1124    45    2    7    20    NULL    0.02    0.07    A    F    02/06/1992    04/09/1992    02/06/1992    TAKE BACK
RETURN   SHIP    enticing,r 
1125    4    0    1    30    NULL    0.10    0.00    N    O    05/03/1996    06/14/1996    05/03/1996    COLLECT COD
TRUCK   courts before the doggedly daring e 
1125    3    1    2    45    NULL    0.02    0.01    N    O    08/11/1996    07/24/1996    08/11/1996    TAKE BACK
RETURN   MAIL    ironically slow gifts to the  
1125    30    1    3    29    NULL    0.02    0.06    N    O    08/20/1996    07/16/1996    08/20/1996    NONE    TRUCK
  quietly permanent Tiresias' c 
1126    43    1    1    28    NULL    0.09    0.07    R    F    06/04/1995    06/22/1995    06/04/1995    COLLECT COD
SHIP    sly,blithe blith outs 
1126    77    2    2    5    NULL    0.08    0.01    A    F    05/24/1995    07/13/1995    05/24/1995    NONE    MAIL
instructions into  
1126    3    3    3    15    NULL    0.04    0.04    N    O    08/06/1995    07/07/1995    08/06/1995    NONE    RAIL
slow notornis at the sly warhors 
1126    52    1    4    37    NULL    0.07    0.07    N    O    07/30/1995    06/03/1995    07/30/1995    TAKE BACK
RETURN   TRUCK    furious,furious patte 
1126    0    0    5    37    NULL    0.09    0.02    N    O    06/28/1995    06/28/1995    06/28/1995    TAKE BACK
RETURN   REG AIR    close,even 
1127    0    0    1    27    NULL    0.01    0.07    R    F    10/02/1994    09/05/1994    10/02/1994    DELIVER IN
PERSON   AIR    frets promise ! thin notornis kindle fin 
1152    0    0    1    16    NULL    0.10    0.01    N    O    12/23/1995    01/24/1996    12/23/1995    DELIVER IN
PERSON   REG AIR    quick epitaphs alo 
1152    66    1    2    21    NULL    0.07    0.06    N    O    02/06/1996    12/20/1995    02/06/1996    NONE    FOB
patterns might serve  
1152    40    1    3    10    NULL    0.03    0.03    N    O    01/06/1996    01/30/1996    01/06/1996    DELIVER IN
PERSON   FOB    sly,slow realms  
1152    42    3    4    13    NULL    0.08    0.07    N    O    12/20/1995    12/04/1995    12/20/1995    TAKE BACK
RETURN   AIR     excuses inside the dependenc 
1152    13    1    5    37    NULL    0.03    0.01    N    O    02/25/1996    01/11/1996    02/25/1996    DELIVER IN
PERSON   SHIP    attainments snoo 
1152    0    0    6    4    NULL    0.09    0.02    N    O    11/27/1995    01/18/1996    11/27/1995    NONE    AIR
quickforges sho 
1153    55    3    1    20    NULL    0.03    0.02    A    F    08/23/1992    07/06/1992    08/23/1992    TAKE BACK
RETURN   MAIL    attainments with the reg 
1153    52    0    2    28    NULL    0.06    0.02    A    F    07/02/1992    06/26/1992    07/02/1992    TAKE BACK
RETURN   TRUCK    asymptotes must was - 
1153    61    2    3    11    NULL    0.04    0.05    A    F    07/31/1992    07/09/1992    07/31/1992    NONE    SHIP
 carefully dogged tithes until th 
1154    2    1    1    10    NULL    0.10    0.00    N    O    02/21/1996    04/04/1996    02/21/1996    DELIVER IN
PERSON   REG AIR    sentiments should  
1155    0    0    1    2    NULL    0.06    0.04    N    O    03/08/1996    02/01/1996    03/08/1996    TAKE BACK
RETURN   FOB      since the slow,ruthless dep 
1155    0    0    2    15    NULL    0.08    0.00    N    O    01/07/1996    03/11/1996    01/07/1996    COLLECT COD
RAIL   quiet decoys instead of the bold epit 
1155    50    3    3    36    NULL    0.04    0.00    N    O    02/05/1996    02/09/1996    02/05/1996    DELIVER IN
PERSON   AIR    evenly sly pa 
1155    0    0    4    3    NULL    0.03    0.04    N    O    01/07/1996    03/14/1996    01/07/1996    DELIVER IN
PERSON   RAIL    brave tithes may hinder ? 
1155    36    0    5    2    NULL    0.09    0.00    N    O    03/14/1996    03/21/1996    03/14/1996    COLLECT COD
SHIP   furious,close as 
1155    69    3    6    13    NULL    0.03    0.06    N    O    01/22/1996    03/04/1996    01/22/1996    DELIVER IN
PERSON   FOB    permanent theodolites behind the  f 
1156    23    2    1    9    NULL    0.06    0.02    A    F    07/21/1994    07/07/1994    07/21/1994    DELIVER IN
PERSON   AIR    doggedly idle saut 
1156    0    0    2    1    NULL    0.03    0.08    A    F    08/10/1994    06/08/1994    08/10/1994    DELIVER IN
PERSON   TRUCK    thin orbits detect boldly beside 
1156    0    0    3    31    NULL    0.00    0.06    R    F    05/29/1994    06/15/1994    05/29/1994    NONE    SHIP
careful asymptotes careful asymptot 
1156    0    0    4    15    NULL    0.09    0.05    A    F    06/10/1994    05/30/1994    06/10/1994    TAKE BACK
RETURN   TRUCK    fluffily fluffy dinos inside the 
1156    22    2    5    17    NULL    0.08    0.06    R    F    05/28/1994    06/27/1994    05/28/1994    DELIVER IN
PERSON   MAIL    daring warhorses besides the stealthy Ti 
1157    61    0    1    40    NULL    0.09    0.04    R    F    07/01/1992    06/25/1992    07/01/1992    NONE    SHIP
 pearls with the thinly blithe forges  
1157    0    0    2    10    NULL    0.02    0.02    R    F    07/22/1992    07/13/1992    07/22/1992    DELIVER IN
PERSON   FOB    final sauternes wi 
1157    4    1    3    50    NULL    0.07    0.05    A    F    07/07/1992    06/06/1992    07/07/1992    NONE    AIR
thin,slowsauternes nag  
1157    35    2    4    45    NULL    0.08    0.04    R    F    05/25/1992    06/18/1992    05/25/1992    DELIVER IN
PERSON   MAIL    depths unt 
1157    40    3    5    35    NULL    0.10    0.00    A    F    06/30/1992    05/23/1992    06/30/1992    NONE    MAIL
 stealthily even  
1158    3    3    1    5    NULL    0.01    0.05    A    F    10/28/1994    10/08/1994    10/28/1994    COLLECT COD
REGAIR    regular warhorses inside the regularly   
1158    56    1    2    14    NULL    0.00    0.00    R    F    11/07/1994    10/19/1994    11/07/1994    TAKE BACK
RETURN   FOB    dolphins above the quietly daring Tiresi 
1158    69    1    3    12    NULL    0.04    0.08    A    F    12/12/1994    11/21/1994    12/12/1994    DELIVER IN
PERSON   RAIL    sly,silent sautern 
1158    11    2    4    31    NULL    0.04    0.04    R    F    11/23/1994    10/12/1994    11/23/1994    DELIVER IN
PERSON   REG AIR    quickly stealthy sauternes  
1158    36    3    5    21    NULL    0.08    0.01    A    F    11/07/1994    10/10/1994    11/07/1994    COLLECT COD
RAIL    permanent asympt 
1158    40    2    6    24    NULL    0.00    0.00    A    F    10/25/1994    11/25/1994    10/25/1994    DELIVER IN
PERSON   SHIP    busily brave realms according 
1158    61    3    7    3    NULL    0.01    0.07    A    F    10/17/1994    11/20/1994    10/17/1994    NONE    RAIL
thin,quick epita 
1159    19    3    1    37    NULL    0.06    0.05    A    F    12/26/1994    02/23/1995    12/26/1994    DELIVER IN
PERSON   MAIL    thinly silent ex 
1159    35    2    2    45    NULL    0.05    0.01    R    F    04/01/1995    01/27/1995    04/01/1995    COLLECT COD
REG AIR    finally careful gifts will serve 
1159    61    2    3    44    NULL    0.02    0.08    R    F    01/07/1995    01/26/1995    01/07/1995    DELIVER IN
PERSON   REG AIR    dogged, pinto beans need to doze never ! 
1184    2    2    1    27    NULL    0.02    0.03    N    O    03/13/1998    04/22/1998    03/13/1998    COLLECT COD
FOB   dependencies shall thrash somas ! Tir 
1184    57    3    2    33    NULL    0.05    0.00    N    O    03/29/1998    04/23/1998    03/29/1998    TAKE BACK
RETURN   RAIL    warthogs upon the  
1185    6    2    1    35    NULL    0.02    0.06    N    O    12/13/1995    01/29/1996    12/13/1995    DELIVER IN
PERSON   AIR    ,close attainments 
1185    31    0    2    8    NULL    0.03    0.01    N    O    12/30/1995    12/31/1995    12/30/1995    COLLECT COD
RAIL   sometimes ent 
1185    62    1    3    42    NULL    0.02    0.01    N    O    03/08/1996    02/16/1996    03/08/1996    DELIVER IN
PERSON   REG AIR    idle  past the attainments affix 
1185    0    0    4    4    NULL    0.07    0.02    N    O    01/03/1996    02/11/1996    01/03/1996    NONE    REG AIR
  busy patterns must was bold 
1185    43    3    5    49    NULL    0.01    0.03    N    O    01/19/1996    01/16/1996    01/19/1996    TAKE BACK
RETURN   RAIL    ideas idea the fluffily dar 
1186    70    3    1    30    NULL    0.05    0.03    N    O    04/18/1998    04/21/1998    04/18/1998    NONE    FOB
blithe,enticing foxes beyond the daring  
1186    12    2    2    42    NULL    0.02    0.05    N    O    02/27/1998    04/09/1998    02/27/1998    DELIVER IN
PERSON   FOB    daring,daring di 
1186    0    0    3    33    NULL    0.05    0.05    N    O    04/10/1998    03/03/1998    04/10/1998    NONE    MAIL
fluffy,even orbits integrate  
1186    0    0    4    23    NULL    0.06    0.00    N    O    02/28/1998    03/25/1998    02/28/1998    DELIVER IN
PERSON   REG AIR    ironically ironic warhorses need to e 
1187    75    0    1    4    NULL    0.07    0.03    N    O    02/24/1998    01/11/1998    02/24/1998    COLLECT COD
MAIL   daring,slow pinto beans must  
1187    72    0    2    2    NULL    0.00    0.05    N    O    03/20/1998    02/24/1998    03/20/1998    NONE    RAIL
slow braids was idly dependencies -- alw 
1187    0    0    3    14    NULL    0.04    0.00    N    O    03/22/1998    01/24/1998    03/22/1998    TAKE BACK
RETURN   TRUCK    regular,daring sen 
1187    78    0    4    39    NULL    0.03    0.06    N    O    02/12/1998    02/16/1998    02/12/1998    TAKE BACK
RETURN   SHIP    permanently dogged hockey players sha 
1187    62    3    5    49    NULL    0.08    0.05    N    O    01/14/1998    03/01/1998    01/14/1998    NONE    AIR
regular dolphins n 
1187    54    3    6    44    NULL    0.05    0.07    N    O    01/18/1998    03/01/1998    01/18/1998    TAKE BACK
RETURN   SHIP    sheaves nod fluffy,brave br 
1187    50    0    7    13    NULL    0.08    0.07    N    O    01/05/1998    01/20/1998    01/05/1998    TAKE BACK
RETURN   REG AIR    dugouts in place of the dolphins in 
1188    60    2    1    32    NULL    0.07    0.06    N    O    02/07/1997    01/02/1997    02/07/1997    DELIVER IN
PERSON   FOB    slowly sly court 
1188    78    0    2    47    NULL    0.09    0.01    N    O    02/24/1997    01/04/1997    02/24/1997    NONE    SHIP
 courts across the daringly  
1189    27    1    1    17    NULL    0.06    0.04    N    O    02/10/1996    01/29/1996    02/10/1996    DELIVER IN
PERSON   FOB    silently fluffy escapades integrate quie 
1189    69    3    2    49    NULL    0.08    0.06    N    O    03/09/1996    02/13/1996    03/09/1996    TAKE BACK
RETURN   TRUCK    furiusly brave ideas  
1189    72    1    3    49    NULL    0.03    0.07    N    O    01/15/1996    02/14/1996    01/15/1996    DELIVER IN
PERSON   TRUCK    busily ironic pains dazzle doggedly from 
1189    51    1    4    29    NULL    0.01    0.03    N    O    02/13/1996    01/23/1996    02/13/1996    NONE    FOB
brave,regular no 
1189    37    3    5    25    NULL    0.09    0.03    N    O    12/03/1995    01/20/1996    12/03/1995    TAKE BACK
RETURN   REG AIR    never brave gifts into the silently furious 
1189    14    1    6    40    NULL    0.06    0.02    N    O    01/19/1996    01/28/1996    01/19/1996    DELIVER IN
PERSON   AIR    slyly silent foxes sl 
1190    0    0    1    26    NULL    0.01    0.01    R    F    10/15/1992    10/31/1992    10/15/1992    TAKE BACK
RETURN   SHIP    enticing,careful grouches t 
1190    0    0    2    40    NULL    0.03    0.01    R    F    11/13/1992    10/23/1992    11/13/1992    COLLECT COD
RAIL   never idle excuses 
1190    0    0    3    40    NULL    0.01    0.05    R    F    09/04/1992    09/06/1992    09/04/1992    NONE    RAIL
careful dinos hind 
1190    77    0    4    23    NULL    0.07    0.01    A    F    11/14/1992    10/02/1992    11/14/1992    TAKE BACK
RETURN   SHIP    silently fluffy orbit 
1190    40    3    5    42    NULL    0.07    0.02    R    F    10/21/1992    10/25/1992    10/21/1992    NONE    FOB
closely permanen 
1190    76    3    6    38    NULL    0.06    0.01    R    F    09/16/1992    09/07/1992    09/16/1992    COLLECT COD
AIR    daring,dogged pearls shall ha 
1191    11    1    1    40    NULL    0.02    0.02    R    F    08/17/1993    08/21/1993    08/17/1993    COLLECT COD
SHIP    epitaphs doze 
1216    33    0    1    17    NULL    0.05    0.07    N    O    03/30/1996    01/10/1996    03/30/1996    TAKE BACK
RETURN   FOB    frays must lose over the final realms 
1216    0    0    2    18    NULL    0.07    0.01    N    O    01/09/1996    02/13/1996    01/09/1996    TAKE BACK
RETURN   FOB    stealthy sentiments could affix slowly outs 
1216    0    0    3    27    NULL    0.05    0.05    N    O    02/26/1996    02/10/1996    02/26/1996    DELIVER IN
PERSON   FOB    close, pinto beans x_ray ; 
1216    19    0    4    39    NULL    0.01    0.00    N    O    12/15/1995    02/10/1996    12/15/1995    DELIVER IN
PERSON   SHIP    busily careful dinos  
1217    0    0    1    2    NULL    0.05    0.03    A    F    03/12/1993    03/18/1993    03/12/1993    TAKE BACK
RETURN   RAIL    quick gifts d 
1217    50    0    2    1    NULL    0.06    0.08    A    F    04/29/1993    04/05/1993    04/29/1993    TAKE BACK
RETURN   REG AIR    busily close gifts might thrash ; 
1217    61    3    3    21    NULL    0.01    0.05    A    F    04/13/1993    04/22/1993    04/13/1993    TAKE BACK
RETURN   REG AIR    furiusly even sheaves engage blithely 
1217    0    0    4    21    NULL    0.04    0.02    A    F    02/18/1993    04/15/1993    02/18/1993    DELIVER IN
PERSON   TRUCK    instructions across the clo 
1218    0    0    1    24    NULL    0.06    0.00    R    F    09/27/1994    10/12/1994    09/27/1994    TAKE BACK
RETURN   AIR    sly, frays dazzle quiet frets ; Tires 
1218    0    0    2    36    NULL    0.08    0.08    A    F    10/12/1994    10/31/1994    10/12/1994    DELIVER IN
PERSON   MAIL    patterns eat stealthi 
1218    78    2    3    50    NULL    0.08    0.00    A    F    11/05/1994    10/02/1994    11/05/1994    TAKE BACK
RETURN   TRUCK    quickly enticing tithes between the c 
1218    29    2    4    33    NULL    0.03    0.06    R    F    11/05/1994    11/12/1994    11/05/1994    TAKE BACK
RETURN   FOB    idle,idle dolphins in 
1218    16    0    5    2    NULL    0.09    0.06    A    F    10/10/1994    10/23/1994    10/10/1994    DELIVER IN
PERSON   MAIL    sly dugouts by t 
1218    0    0    6    29    NULL    0.06    0.03    R    F    11/24/1994    10/29/1994    11/24/1994    DELIVER IN
PERSON   TRUCK    brave,bold 
1218    51    3    7    23    NULL    0.08    0.04    A    F    10/06/1994    10/19/1994    10/06/1994    DELIVER IN
PERSON   MAIL    blithe,sly frays can kindle t 
1219    3    0    1    44    NULL    0.00    0.05    A    F    09/09/1994    08/16/1994    09/09/1994    COLLECT COD
RAIL   slow frets up the  dolphins 
1219    63    1    2    8    NULL    0.05    0.07    R    F    08/11/1994    08/23/1994    08/11/1994    DELIVER IN
PERSON   TRUCK    permanent, 
1219    74    0    3    34    NULL    0.00    0.08    A    F    08/09/1994    08/15/1994    08/09/1994    NONE    RAIL
 permanent foxes against the 
1219    79    2    4    8    NULL    0.06    0.00    A    F    06/15/1994    08/23/1994    06/15/1994    DELIVER IN
PERSON   MAIL    pains can engage quickly Tiresia 
1219    34    0    5    1    NULL    0.03    0.05    R    F    06/27/1994    07/20/1994    06/27/1994    NONE    SHIP
silent forges use : d 
1220    8    2    1    34    NULL    0.10    0.06    R    F    03/05/1994    03/17/1994    03/05/1994    TAKE BACK
RETURN   MAIL    ideas through the att 
1220    59    2    2    7    NULL    0.05    0.00    A    F    03/12/1994    02/27/1994    03/12/1994    DELIVER IN
PERSON   SHIP     frays to the enti 
1220    22    2    3    22    NULL    0.01    0.05    R    F    02/25/1994    03/01/1994    02/25/1994    TAKE BACK
RETURN   REG AIR    fluffy,brave pearls sublate with 
1220    70    2    4    18    NULL    0.07    0.06    R    F    03/24/1994    03/27/1994    03/24/1994    COLLECT COD
TRUCK    close Tiresias' haggle silently along 
1220    0    0    5    24    NULL    0.02    0.05    A    F    03/16/1994    03/20/1994    03/16/1994    TAKE BACK
RETURN   REG AIR    pinto beans with 
1220    24    0    6    15    NULL    0.05    0.06    A    F    04/08/1994    02/14/1994    04/08/1994    TAKE BACK
RETURN   REG AIR    slyly idle tithes grow to the 
1220    21    1    7    23    NULL    0.06    0.02    R    F    04/09/1994    03/02/1994    04/09/1994    COLLECT COD
REG AIR    sly waters in 
1221    37    1    1    46    NULL    0.07    0.07    N    O    10/25/1997    08/09/1997    10/25/1997    NONE    FOB
permanent,even somas shall serve regular 
1222    49    2    1    10    NULL    0.10    0.07    N    O    06/20/1997    04/03/1997    06/20/1997    NONE    MAIL
 quiet,daring dependencies might  
1222    0    0    2    25    NULL    0.03    0.07    N    O    06/19/1997    04/11/1997    06/19/1997    COLLECT COD
TRUCK   finally quiet theodolites into the blithe,e 
1222    17    2    3    12    NULL    0.01    0.01    N    O    03/17/1997    04/04/1997    03/17/1997    DELIVER IN
PERSON   MAIL    quick dugouts wi 
1223    24    0    1    38    NULL    0.02    0.05    N    O    06/30/1997    06/28/1997    06/30/1997    DELIVER IN
PERSON   TRUCK    furiusly bold asymptotes must poach -- blit 
1223    0    0    2    25    NULL    0.09    0.05    N    O    07/21/1997    06/30/1997    07/21/1997    DELIVER IN
PERSON   TRUCK    hockey player 
1223    35    0    3    41    NULL    0.06    0.01    N    O    08/03/1997    08/10/1997    08/03/1997    COLLECT COD
TRUCK    ironic,even pinto  
1223    7    3    4    16    NULL    0.07    0.07    N    O    08/13/1997    07/11/1997    08/13/1997    NONE    TRUCK
 stealthy pearls was ruthlessl 
1248    46    0    1    13    NULL    0.03    0.04    R    F    06/08/1992    07/09/1992    06/08/1992    NONE    FOB
ruthless dino 
1248    19    0    2    13    NULL    0.06    0.03    A    F    06/20/1992    06/27/1992    06/20/1992    DELIVER IN
PERSON   RAIL    regularly quiet pearls by the warhorses  
1248    55    0    3    31    NULL    0.07    0.06    A    F    07/11/1992    06/03/1992    07/11/1992    NONE    SHIP
 ruthless,enticing for 
1248    5    2    4    18    NULL    0.05    0.01    A    F    07/06/1992    07/25/1992    07/06/1992    NONE    REG
AIR   blithely thin escapad 
1248    4    0    5    13    NULL    0.08    0.02    A    F    05/09/1992    06/16/1992    05/09/1992    DELIVER IN
PERSON   REG AIR    quick,sly bra 
1248    47    1    6    37    NULL    0.06    0.01    A    F    05/17/1992    06/30/1992    05/17/1992    COLLECT COD
REG AIR    enticingly regular asymptotes af 
1249    25    1    1    28    NULL    0.07    0.08    A    F    02/18/1995    12/23/1994    02/18/1995    NONE    AIR
careful,close sautern 
1249    45    1    2    50    NULL    0.10    0.07    R    F    02/09/1995    12/30/1994    02/09/1995    NONE    TRUCK
  furious theodolites o 
1249    21    2    3    21    NULL    0.02    0.03    R    F    01/06/1995    01/13/1995    01/06/1995    COLLECT COD
FOB    fluffily slow pains besi 
1249    0    0    4    26    NULL    0.03    0.05    R    F    11/28/1994    01/25/1995    11/28/1994    DELIVER IN
PERSON   TRUCK    furious,do 
1249    65    1    5    45    NULL    0.05    0.06    A    F    02/09/1995    01/04/1995    02/09/1995    COLLECT COD
AIR    pinto beans would nod somet 
1250    0    0    1    37    NULL    0.07    0.02    R    F    03/17/1993    05/24/1993    03/17/1993    NONE    REG
AIR   permanent patterns 
1250    37    0    2    15    NULL    0.01    0.02    R    F    03/12/1993    05/07/1993    03/12/1993    DELIVER IN
PERSON   REG AIR    frays beyond the regular 
1251    43    0    1    50    NULL    0.04    0.00    A    F    11/22/1994    11/02/1994    11/22/1994    NONE    FOB
furiusly even escapades print br 
1251    44    2    2    6    NULL    0.03    0.04    R    F    11/04/1994    11/23/1994    11/04/1994    TAKE BACK
RETURN   AIR    quickly final patterns abov 
1251    10    3    3    27    NULL    0.07    0.00    A    F    09/15/1994    11/22/1994    09/15/1994    COLLECT COD
MAIL    epitaphs should po 
1251    50    3    4    37    NULL    0.07    0.07    A    F    10/31/1994    10/02/1994    10/31/1994    NONE    FOB
permanent tithes about the furiusly 
1251    69    0    5    44    NULL    0.07    0.06    R    F    10/23/1994    10/15/1994    10/23/1994    NONE    REG
AIR   braids kindle quietly sly frays : 
1251    49    2    6    10    NULL    0.00    0.08    A    F    10/06/1994    11/23/1994    10/06/1994    NONE    MAIL
 brave depths kindle w 
1252    41    0    1    48    NULL    0.01    0.01    N    O    03/13/1998    03/14/1998    03/13/1998    TAKE BACK
RETURN   RAIL    quietly final hockey players could have  
1252    62    3    2    28    NULL    0.07    0.02    N    O    02/07/1998    02/22/1998    02/07/1998    NONE    MAIL
 quick sheaves during the never silent depth 
1252    6    1    3    2    NULL    0.01    0.04    N    O    01/01/1998    03/20/1998    01/01/1998    NONE    REG AIR
  doggedly silent forge 
1253    26    3    1    14    NULL    0.07    0.08    R    F    10/04/1993    08/07/1993    10/04/1993    DELIVER IN
PERSON   RAIL    blithe,quiet quie along the never fin 
1253    40    1    2    41    NULL    0.04    0.01    R    F    08/14/1993    09/05/1993    08/14/1993    TAKE BACK
RETURN   FOB    silent gifts boost silent,fluffy 
1253    58    0    3    1    NULL    0.09    0.00    R    F    08/12/1993    09/13/1993    08/12/1993    COLLECT COD
RAIL   close,even courts print enticingly du 
1253    57    2    4    40    NULL    0.08    0.01    A    F    07/25/1993    08/18/1993    07/25/1993    COLLECT COD
MAIL    never stealthy escapades never stealthy esc 
1253    20    3    5    17    NULL    0.04    0.06    A    F    08/14/1993    08/21/1993    08/14/1993    TAKE BACK
RETURN   AIR    dugouts ougth to  instead of  
1253    18    0    6    22    NULL    0.01    0.01    R    F    07/25/1993    09/10/1993    07/25/1993    TAKE BACK
RETURN   MAIL    gifts from the iro 
1253    43    3    7    20    NULL    0.07    0.02    R    F    08/26/1993    08/19/1993    08/26/1993    TAKE BACK
RETURN   TRUCK    busy,silent somas poach atop the quic 
1254    0    0    1    6    NULL    0.03    0.04    A    F    08/31/1992    09/16/1992    08/31/1992    DELIVER IN
PERSON   RAIL    fluffy grouches beyond the finally silen 
1254    41    0    2    45    NULL    0.02    0.03    R    F    09/21/1992    09/24/1992    09/21/1992    TAKE BACK
RETURN   MAIL    evenly quick sheaves  
1254    0    0    3    9    NULL    0.05    0.04    R    F    10/04/1992    10/14/1992    10/04/1992    NONE    SHIP
pintobeans would doubt  
1254    73    2    4    16    NULL    0.06    0.05    A    F    09/10/1992    09/01/1992    09/10/1992    TAKE BACK
RETURN   TRUCK    brave,sly gifts de 
1255    0    0    1    33    NULL    0.06    0.00    R    F    01/29/1995    12/09/1994    01/29/1995    COLLECT COD
AIR   dugouts run regularly stealthily 
1255    0    0    2    24    NULL    0.05    0.06    R    F    02/24/1995    12/11/1994    02/24/1995    TAKE BACK
RETURN   AIR    hockey players in place  
1255    35    0    3    6    NULL    0.07    0.04    R    F    11/11/1994    12/31/1994    11/11/1994    TAKE BACK
RETURN   SHIP    busy multipliers shall affix regula 
1255    8    2    4    36    NULL    0.00    0.07    R    F    11/24/1994    01/26/1995    11/24/1994    NONE    MAIL
patterns may x_ray always ? 
1255    54    0    5    31    NULL    0.02    0.02    A    F    12/21/1994    01/21/1995    12/21/1994    TAKE BACK
RETURN   MAIL    busy multi 
1255    1    3    6    19    NULL    0.01    0.01    R    F    11/10/1994    01/01/1995    11/10/1994    COLLECT COD
FOB   idle,ruthless hockey pla 
1255    7    2    7    49    NULL    0.03    0.07    R    F    01/05/1995    12/26/1994    01/05/1995    NONE    FOB
thin,eventithes serve before th 
1280    25    0    1    10    NULL    0.06    0.08    R    F    06/07/1993    05/16/1993    06/07/1993    DELIVER IN
PERSON   RAIL    bravely even decoy 
1280    76    2    2    49    NULL    0.05    0.05    A    F    04/30/1993    04/19/1993    04/30/1993    COLLECT COD
REG AIR    pearls haggle iron 
1280    39    1    3    3    NULL    0.05    0.05    R    F    04/14/1993    06/04/1993    04/14/1993    TAKE BACK
RETURN   AIR    idle gifts would believe permanentl 
1281    27    2    1    14    NULL    0.09    0.04    R    F    04/01/1994    04/16/1994    04/01/1994    TAKE BACK
RETURN   MAIL      escapades could have to mold in place  
1281    11    0    2    6    NULL    0.03    0.05    A    F    05/14/1994    03/17/1994    05/14/1994    DELIVER IN
PERSON   REG AIR    decoys integrate ironically escapades ! rut 
1281    78    0    3    10    NULL    0.10    0.03    R    F    02/14/1994    03/13/1994    02/14/1994    COLLECT COD
TRUCK    careful sauternes must have to grow 
1281    0    0    4    40    NULL    0.01    0.07    A    F    03/22/1994    03/19/1994    03/22/1994    TAKE BACK
RETURN   AIR    daringly slow ideas up the  
1281    63    0    5    5    NULL    0.00    0.02    A    F    06/04/1994    04/20/1994    06/04/1994    DELIVER IN
PERSON   SHIP    enticing,ironic multipliers c 
1281    0    0    6    18    NULL    0.05    0.03    R    F    05/04/1994    03/08/1994    05/04/1994    COLLECT COD
FOB   idle orbits poach near the waters 
1281    12    3    7    43    NULL    0.07    0.03    R    F    02/28/1994    03/08/1994    02/28/1994    COLLECT COD
SHIP    fluffily bold wa 
1282    33    3    1    2    NULL    0.08    0.08    N    O    04/15/1998    06/18/1998    04/15/1998    TAKE BACK
RETURN   TRUCK    quick attainments  
1282    0    0    2    43    NULL    0.05    0.05    N    O    04/16/1998    07/02/1998    04/16/1998    NONE    RAIL
careful sheaves above the pearls shall grow 
1282    0    0    3    16    NULL    0.02    0.07    N    O    05/11/1998    06/28/1998    05/11/1998    NONE    SHIP
warhorses hang q 
1283    8    1    1    34    NULL    0.08    0.02    A    F    08/08/1992    07/25/1992    08/08/1992    DELIVER IN
PERSON   RAIL    final warhorses would engage sentiments ? a 
1283    36    2    2    5    NULL    0.01    0.01    R    F    06/21/1992    07/04/1992    06/21/1992    NONE    REG
AIR   ironic depths above the blithely busy pi 
1283    42    3    3    25    NULL    0.07    0.04    A    F    09/03/1992    08/31/1992    09/03/1992    TAKE BACK
RETURN   REG AIR     x_ray furiusly stealthy theodolites ? 
1284    0    1    1    45    NULL    0.08    0.04    R    F    11/09/1992    12/29/1992    11/09/1992    TAKE BACK
RETURN   RAIL    brave,ruthless att 
1284    57    2    2    10    NULL    0.08    0.06    R    F    12/29/1992    12/25/1992    12/29/1992    TAKE BACK
RETURN   FOB    bold,slow pearls under the steal 
1285    4    1    1    50    NULL    0.03    0.08    A    F    12/29/1994    12/28/1994    12/29/1994    NONE    AIR
foxescould have to x 
1285    0    0    2    19    NULL    0.06    0.06    A    F    01/16/1995    12/31/1994    01/16/1995    TAKE BACK
RETURN   TRUCK    idle dinos beside the 
1285    65    2    3    6    NULL    0.02    0.04    A    F    12/05/1994    12/11/1994    12/05/1994    TAKE BACK
RETURN   RAIL    even decoys without the steal 
1285    68    1    4    4    NULL    0.04    0.01    A    F    11/25/1994    01/01/1995    11/25/1994    DELIVER IN
PERSON   MAIL    excuses from the furious ideas w 
1286    59    2    1    12    NULL    0.10    0.02    R    F    06/25/1994    07/22/1994    06/25/1994    NONE    REG
AIR   bold grouches need to promise 
1286    2    2    2    12    NULL    0.03    0.02    A    F    08/12/1994    07/18/1994    08/12/1994    TAKE BACK
RETURN   FOB    dependencies about the regular,e 
1286    36    1    3    13    NULL    0.02    0.04    R    F    07/29/1994    08/23/1994    07/29/1994    NONE    AIR
ironic,enticing orbits was slyly qu 
1286    62    2    4    26    NULL    0.03    0.08    A    F    09/09/1994    08/23/1994    09/09/1994    TAKE BACK
RETURN   MAIL    warthogs hang al 
1287    78    3    1    42    NULL    0.06    0.01    A    F    05/11/1994    05/27/1994    05/11/1994    COLLECT COD
AIR    realms into the excuses wil 
1287    0    0    2    36    NULL    0.08    0.07    R    F    03/20/1994    06/05/1994    03/20/1994    DELIVER IN
PERSON   FOB    quick,dogged  
1287    3    0    3    27    NULL    0.00    0.04    A    F    04/22/1994    06/12/1994    04/22/1994    DELIVER IN
PERSON   RAIL    regular,thin braids could have to nod 
1287    41    0    4    31    NULL    0.01    0.02    A    F    04/28/1994    05/04/1994    04/28/1994    TAKE BACK
RETURN   MAIL    ironic braids shall have 
1287    52    1    5    45    NULL    0.06    0.07    R    F    04/17/1994    05/05/1994    04/17/1994    NONE    TRUCK
  always enticing dependencies  
1312    44    3    1    26    NULL    0.03    0.08    N    O    10/24/1998    09/19/1998    10/24/1998    DELIVER IN
PERSON   TRUCK    slowly qui 
1312    34    3    2    6    NULL    0.02    0.00    N    O    09/29/1998    09/16/1998    09/29/1998    TAKE BACK
RETURN   REG AIR    asymptotes atop the even 
1312    12    1    3    33    NULL    0.10    0.03    N    O    07/06/1998    09/07/1998    07/06/1998    TAKE BACK
RETURN   SHIP    ruthlessly final Tiresias' wi 
1312    31    2    4    32    NULL    0.01    0.01    N    O    07/07/1998    09/11/1998    07/07/1998    DELIVER IN
PERSON   TRUCK    excuses will have to han 
1312    0    0    5    4    NULL    0.02    0.02    N    O    08/25/1998    09/01/1998    08/25/1998    TAKE BACK
RETURN   RAIL    fluffily fluffy ideas doubt blithely busy,s 
1312    73    3    6    23    NULL    0.05    0.06    N    O    07/29/1998    07/28/1998    07/29/1998    NONE    MAIL
 ruthlessly quick gift 
1313    53    1    1    45    NULL    0.02    0.03    N    O    12/03/1997    12/09/1997    12/03/1997    DELIVER IN
PERSON   AIR    furious, dolphins toward the dolphins 
1313    0    0    2    16    NULL    0.05    0.06    N    O    12/12/1997    01/10/1998    12/12/1997    COLLECT COD
REGAIR    ironic asymptotes among the frets boost  
1313    0    0    3    22    NULL    0.06    0.04    N    O    12/06/1997    12/13/1997    12/06/1997    DELIVER IN
PERSON   FOB    asymptotes wi 
1313    0    0    4    26    NULL    0.02    0.07    N    O    11/27/1997    12/30/1997    11/27/1997    NONE    SHIP
quick,regular foxes alongside of the sil 
1313    0    0    5    3    NULL    0.07    0.02    N    O    02/17/1998    12/24/1997    02/17/1998    DELIVER IN
PERSON   FOB    notornis believe furi 
1313    25    1    6    41    NULL    0.07    0.07    N    O    01/23/1998    01/07/1998    01/23/1998    TAKE BACK
RETURN   FOB    sly,blithe blith thrash  
1314    56    2    1    3    NULL    0.05    0.03    A    F    12/26/1992    12/30/1992    12/26/1992    NONE    REG
AIR   sentiments hang si 
1314    44    2    2    22    NULL    0.05    0.06    A    F    01/24/1993    01/14/1993    01/24/1993    NONE    TRUCK
  notornis beside the final,p 
1315    29    3    1    26    NULL    0.08    0.01    N    O    01/29/1996    02/28/1996    01/29/1996    NONE    SHIP
 gifts gift x_ray silent courts ! 
1315    47    0    2    29    NULL    0.06    0.04    N    O    01/12/1996    02/22/1996    01/12/1996    NONE    TRUCK
  somas would poach sil 
1315    0    0    3    50    NULL    0.03    0.06    N    O    03/24/1996    02/08/1996    03/24/1996    DELIVER IN
PERSON   SHIP    asymptotes impre 
1315    41    3    4    4    NULL    0.04    0.08    N    O    04/06/1996    04/03/1996    04/06/1996    TAKE BACK
RETURN   REG AIR    final frays besides t 
1316    79    2    1    15    NULL    0.02    0.01    A    F    05/11/1995    04/14/1995    05/11/1995    DELIVER IN
PERSON   SHIP    waters to the multipliers cou 
1316    57    3    2    27    NULL    0.05    0.06    A    F    03/28/1995    04/05/1995    03/28/1995    NONE    SHIP
 enticing warthogs on the 
1316    38    0    3    19    NULL    0.05    0.06    A    F    03/14/1995    03/01/1995    03/14/1995    NONE    SHIP
 ruthless,bold fr 
1317    1    0    1    31    NULL    0.07    0.04    N    O    12/19/1996    12/19/1996    12/19/1996    TAKE BACK
RETURN   FOB    busy grouches snooze  --  ide 
1317    9    1    2    16    NULL    0.07    0.07    N    O    12/13/1996    12/30/1996    12/13/1996    NONE    AIR
permanentlyi 
1318    48    3    1    30    NULL    0.02    0.01    N    O    12/22/1995    12/27/1995    12/22/1995    COLLECT COD
SHIP    Tiresias' atop t 
1318    17    1    2    13    NULL    0.00    0.08    N    O    01/14/1996    01/01/1996    01/14/1996    TAKE BACK
RETURN   TRUCK    ruthless,sly warthogs 
1318    71    2    3    21    NULL    0.02    0.04    N    O    01/11/1996    12/22/1995    01/11/1996    DELIVER IN
PERSON   SHIP    attainments play even 
1318    17    2    4    5    NULL    0.00    0.02    N    O    10/26/1995    11/10/1995    10/26/1995    DELIVER IN
PERSON   FOB    careful orbits could  
1319    77    0    1    40    NULL    0.00    0.01    R    F    05/24/1994    07/11/1994    05/24/1994    DELIVER IN
PERSON   REG AIR    final,permanent grouc 
1319    7    0    2    46    NULL    0.07    0.05    A    F    06/17/1994    08/15/1994    06/17/1994    TAKE BACK
RETURN   AIR    final,ironic sauternes o 
1344    0    0    1    7    NULL    0.07    0.03    N    O    05/30/1998    06/29/1998    05/30/1998    TAKE BACK
RETURN   FOB    close,thin forges unwind --  for 
1344    11    3    2    48    NULL    0.08    0.07    N    O    05/12/1998    06/03/1998    05/12/1998    COLLECT COD
REG AIR    finally busy braids thro 
1344    40    0    3    10    NULL    0.05    0.00    N    O    07/08/1998    07/11/1998    07/08/1998    NONE    SHIP
 regular,stealthy forges daz 
1344    48    3    4    16    NULL    0.05    0.04    N    O    06/03/1998    06/25/1998    06/03/1998    NONE    TRUCK
  forges can ea 
1344    41    3    5    45    NULL    0.01    0.01    N    O    08/11/1998    07/21/1998    08/11/1998    DELIVER IN
PERSON   TRUCK    quick Tiresias'  
1344    27    2    6    22    NULL    0.07    0.02    N    O    07/18/1998    05/23/1998    07/18/1998    NONE    RAIL
 foxes instead of the depths instead of t 
1345    0    0    1    44    NULL    0.02    0.03    A    F    08/07/1992    06/27/1992    08/07/1992    TAKE BACK
RETURN   REG AIR    doggedly dogged attainments inside th 
1345    40    3    2    22    NULL    0.10    0.04    R    F    08/05/1992    08/18/1992    08/05/1992    DELIVER IN
PERSON   TRUCK    foxes beside the fluffy esc 
1345    3    0    3    1    NULL    0.04    0.03    A    F    07/11/1992    07/30/1992    07/11/1992    DELIVER IN
PERSON   REG AIR    permanently quiet patterns through the c 
1345    0    0    4    10    NULL    0.05    0.02    A    F    06/26/1992    07/31/1992    06/26/1992    COLLECT COD
SHIP   sly grouches will hang inside th 
1345    46    0    5    34    NULL    0.07    0.06    A    F    06/10/1992    06/29/1992    06/10/1992    TAKE BACK
RETURN   SHIP    closely sly escapades should sublat 
1345    58    2    6    47    NULL    0.06    0.02    R    F    09/07/1992    06/27/1992    09/07/1992    COLLECT COD
MAIL    quick,bold courts was ruthless atta 
1346    70    1    1    49    NULL    0.02    0.03    N    O    09/11/1997    07/08/1997    09/11/1997    TAKE BACK
RETURN   REG AIR    idly stealthy asymptotes serve ! busi 
1346    31    1    2    48    NULL    0.01    0.07    N    O    06/08/1997    07/27/1997    06/08/1997    TAKE BACK
RETURN   RAIL    closely  realms mu 
1346    47    3    3    36    NULL    0.01    0.07    N    O    08/18/1997    07/08/1997    08/18/1997    TAKE BACK
RETURN   SHIP    daring frays beyond the dolphins wo 
1346    5    2    4    33    NULL    0.02    0.03    N    O    06/10/1997    07/18/1997    06/10/1997    NONE    SHIP
,silent dinos around the regular 
1347    67    3    1    2    NULL    0.07    0.03    N    O    03/23/1996    04/05/1996    03/23/1996    TAKE BACK
RETURN   TRUCK    brave,silent multipliers will be 
1348    31    0    1    21    NULL    0.03    0.04    N    O    04/21/1997    06/25/1997    04/21/1997    TAKE BACK
RETURN   TRUCK    idly fluffy dugo 
1348    46    1    2    9    NULL    0.01    0.03    N    O    06/26/1997    05/17/1997    06/26/1997    NONE    RAIL
furiusly slow platelets  
1348    39    1    3    15    NULL    0.08    0.04    N    O    06/12/1997    05/13/1997    06/12/1997    COLLECT COD
MAIL    pains do maintain . blithe, 
1348    0    0    4    36    NULL    0.09    0.03    N    O    07/27/1997    07/06/1997    07/27/1997    NONE    REG
AIR   realms into t 
1349    3    3    1    8    NULL    0.04    0.07    N    O    02/01/1996    11/23/1995    02/01/1996    DELIVER IN
PERSON   FOB    brave,quiet grouches will doze ? 
1350    13    0    1    4    NULL    0.03    0.05    N    O    08/28/1996    11/02/1996    08/28/1996    DELIVER IN
PERSON   REG AIR    ruthlessly stealthy foxes engage ru 
1351    40    1    1    17    NULL    0.06    0.00    N    O    08/15/1996    08/04/1996    08/15/1996    TAKE BACK
RETURN   AIR     depths during the slow sentiments ca 
1351    38    2    2    47    NULL    0.06    0.00    N    O    07/08/1996    07/06/1996    07/08/1996    NONE    RAIL
 ideas promise boldly . 
1376    27    2    1    14    NULL    0.08    0.03    N    O    04/16/1996    06/14/1996    04/16/1996    COLLECT COD
REG AIR    dugouts may i 
1376    9    0    2    45    NULL    0.06    0.03    N    O    06/05/1996    05/29/1996    06/05/1996    DELIVER IN
PERSON   MAIL    doggedly busy orbits hang idly over 
1377    17    0    1    22    NULL    0.05    0.07    N    O    07/30/1996    08/17/1996    07/30/1996    NONE    MAIL
 courts mold near the bold,e 
1377    19    3    2    8    NULL    0.00    0.05    N    O    10/07/1996    09/27/1996    10/07/1996    DELIVER IN
PERSON   TRUCK    depths depth doubt throughout th 
1377    35    2    3    35    NULL    0.07    0.01    N    O    09/05/1996    08/14/1996    09/05/1996    TAKE BACK
RETURN   RAIL    slowly fluffy dugouts dazzle decoys . qu 
1377    49    3    4    40    NULL    0.05    0.04    N    O    11/05/1996    09/17/1996    11/05/1996    DELIVER IN
PERSON   TRUCK    sly,brave att 
1377    79    3    5    41    NULL    0.03    0.01    N    O    09/27/1996    08/25/1996    09/27/1996    NONE    MAIL
 thin depths try to breach near the enticing 
1377    62    0    6    30    NULL    0.03    0.03    N    O    11/02/1996    09/24/1996    11/02/1996    NONE    REG
AIR   sometimes ruthless water 
1377    10    3    7    3    NULL    0.10    0.08    N    O    09/18/1996    09/11/1996    09/18/1996    DELIVER IN
PERSON   FOB    final,regular fo 
1378    35    0    1    28    NULL    0.08    0.01    R    F    03/04/1995    03/22/1995    03/04/1995    DELIVER IN
PERSON   SHIP    ,close notornis of the e 
1378    73    3    2    42    NULL    0.05    0.00    A    F    03/28/1995    03/21/1995    03/28/1995    COLLECT COD
REG AIR    daring,stealthy platelet 
1378    46    0    3    20    NULL    0.09    0.04    A    F    02/16/1995    03/14/1995    02/16/1995    DELIVER IN
PERSON   FOB    daring,quick not 
1378    77    2    4    9    NULL    0.07    0.05    A    F    01/07/1995    02/18/1995    01/07/1995    COLLECT COD
AIR   thin excuses  
1378    41    3    5    39    NULL    0.06    0.06    A    F    02/20/1995    02/07/1995    02/20/1995    COLLECT COD
RAIL    ruthlessly dogge 
1378    71    1    6    47    NULL    0.08    0.03    A    F    04/17/1995    02/24/1995    04/17/1995    DELIVER IN
PERSON   REG AIR    excuses might 
1378    37    1    7    11    NULL    0.08    0.03    A    F    01/25/1995    02/21/1995    01/25/1995    TAKE BACK
RETURN   AIR    furious,daring sentiments unt 
1379    10    1    1    44    NULL    0.06    0.01    N    O    02/07/1996    11/14/1995    02/07/1996    TAKE BACK
RETURN   FOB    pains hinder between the even 
1379    35    0    2    39    NULL    0.03    0.05    N    O    12/25/1995    11/26/1995    12/25/1995    TAKE BACK
RETURN   TRUCK    even,careful carefu are nev 
1380    0    0    1    20    NULL    0.05    0.02    A    F    11/08/1993    11/06/1993    11/08/1993    DELIVER IN
PERSON   SHIP    permanently stealthy instruction 
1380    57    0    2    24    NULL    0.02    0.07    R    F    11/22/1993    11/22/1993    11/22/1993    COLLECT COD
FOB    idly sly dependencies could grow qu 
1380    18    2    3    16    NULL    0.07    0.05    A    F    12/29/1993    12/18/1993    12/29/1993    TAKE BACK
RETURN   AIR    silent,furious excuses boost evenly to t 
1380    29    3    4    45    NULL    0.03    0.03    R    F    11/25/1993    12/06/1993    11/25/1993    NONE    RAIL
 decoys throughout the 
1381    59    2    1    15    NULL    0.06    0.01    R    F    05/03/1994    06/18/1994    05/03/1994    DELIVER IN
PERSON   FOB    thin,quiet foxes s 
1381    42    2    2    42    NULL    0.10    0.00    R    F    06/21/1994    07/03/1994    06/21/1994    TAKE BACK
RETURN   MAIL    hockey players past the fluffy,dari 
1381    59    1    3    41    NULL    0.06    0.03    A    F    07/08/1994    07/09/1994    07/08/1994    COLLECT COD
SHIP    never dogged somas mold somet 
1381    56    3    4    27    NULL    0.01    0.06    R    F    08/14/1994    05/30/1994    08/14/1994    NONE    AIR
depths must have to doubt per 
1381    0    0    5    16    NULL    0.05    0.06    A    F    06/17/1994    06/26/1994    06/17/1994    DELIVER IN
PERSON   REG AIR    grouches p 
1381    0    0    6    24    NULL    0.04    0.05    R    F    05/20/1994    06/01/1994    05/20/1994    COLLECT COD
RAIL   daring,dogged frays at the silen 
1381    76    0    7    8    NULL    0.06    0.01    R    F    07/13/1994    06/13/1994    07/13/1994    NONE    TRUCK
 epitaphs slee 
1382    5    3    1    42    NULL    0.09    0.04    R    F    10/19/1993    12/16/1993    10/19/1993    TAKE BACK
RETURN   FOB    foxes foxe unwind -- 
1382    19    1    2    22    NULL    0.06    0.03    A    F    01/05/1994    12/06/1993    01/05/1994    COLLECT COD
TRUCK    silent,fluffy re 
1382    57    2    3    13    NULL    0.07    0.04    A    F    12/02/1993    12/18/1993    12/02/1993    COLLECT COD
SHIP    closely even waters alongside of 
1382    66    3    4    6    NULL    0.10    0.00    A    F    10/07/1993    11/14/1993    10/07/1993    TAKE BACK
RETURN   RAIL     slow depths sublate dogged 
1382    15    1    5    37    NULL    0.05    0.06    A    F    12/06/1993    12/12/1993    12/06/1993    COLLECT COD
FOB    silent  about 
1383    28    2    1    36    NULL    0.09    0.06    A    F    08/21/1993    07/25/1993    08/21/1993    TAKE BACK
RETURN   SHIP    even dinos despite the bold warthog 
1383    67    2    2    6    NULL    0.07    0.02    A    F    09/25/1993    08/24/1993    09/25/1993    COLLECT COD
AIR   quick,fluffy dol 
1383    0    0    3    15    NULL    0.02    0.05    R    F    08/13/1993    08/18/1993    08/13/1993    COLLECT COD
AIR   ironically stealthy dinos a 
1383    72    2    4    31    NULL    0.04    0.06    A    F    08/20/1993    09/12/1993    08/20/1993    NONE    MAIL
 slow,daring dependenc 
1383    67    2    5    31    NULL    0.07    0.00    A    F    07/17/1993    09/19/1993    07/17/1993    TAKE BACK
RETURN   REG AIR    bravely  depths de 
1383    66    0    6    21    NULL    0.01    0.01    A    F    07/30/1993    09/15/1993    07/30/1993    NONE    TRUCK
  realms will have to integrate will ha 
1383    12    2    7    25    NULL    0.01    0.07    A    F    09/17/1993    08/27/1993    09/17/1993    DELIVER IN
PERSON   SHIP    slyly blithe epitaphs slyly blithe ep 
1408    22    2    1    38    NULL    0.05    0.05    A    F    01/22/1993    03/15/1993    01/22/1993    COLLECT COD
TRUCK    asymptotes throughout the  asymptotes co 
1408    46    2    2    17    NULL    0.09    0.03    R    F    03/23/1993    04/18/1993    03/23/1993    COLLECT COD
AIR    enticing notornis would bre 
1408    5    3    3    29    NULL    0.08    0.08    R    F    03/17/1993    03/20/1993    03/17/1993    DELIVER IN
PERSON   FOB    boldly silent silen doubt finally upon the  
1408    65    0    4    30    NULL    0.09    0.02    A    F    05/11/1993    03/18/1993    05/11/1993    COLLECT COD
FOB    dolphins dazzle daringly ; sly,idle 
1409    27    0    1    30    NULL    0.00    0.04    R    F    03/14/1992    05/25/1992    03/14/1992    COLLECT COD
MAIL    waters do breach f 
1409    7    3    2    45    NULL    0.07    0.00    A    F    06/05/1992    05/25/1992    06/05/1992    TAKE BACK
RETURN   SHIP    enticing dolphin 
1409    36    1    3    22    NULL    0.04    0.05    A    F    05/29/1992    05/06/1992    05/29/1992    DELIVER IN
PERSON   MAIL    final,dogged multipliers besides the sen 
1409    57    0    4    37    NULL    0.08    0.02    R    F    07/04/1992    05/10/1992    07/04/1992    COLLECT COD
AIR    furious hockey players of the id 
1409    73    3    5    16    NULL    0.09    0.02    R    F    03/10/1992    04/09/1992    03/10/1992    DELIVER IN
PERSON   AIR    carefully final instruct 
1409    0    0    6    37    NULL    0.08    0.06    A    F    05/21/1992    04/25/1992    05/21/1992    COLLECT COD
TRUCK   quiet, dinos under the bravely s 
1410    40    2    1    15    NULL    0.05    0.02    N    O    06/21/1996    04/28/1996    06/21/1996    DELIVER IN
PERSON   REG AIR    daring,daring forges under the b 
1410    35    0    2    50    NULL    0.02    0.06    N    O    05/14/1996    04/10/1996    05/14/1996    DELIVER IN
PERSON   REG AIR    excuses promise alongside of  
1410    0    0    3    42    NULL    0.05    0.04    N    O    03/08/1996    04/16/1996    03/08/1996    NONE    FOB
thinorbits boost evenly busy es 
1410    0    0    4    35    NULL    0.00    0.03    N    O    04/17/1996    05/09/1996    04/17/1996    TAKE BACK
RETURN   MAIL    always quick platelets hind 
1410    0    0    5    40    NULL    0.03    0.07    N    O    04/02/1996    04/26/1996    04/02/1996    COLLECT COD
AIR   even gifts atop the slowly qu 
1411    0    0    1    31    NULL    0.04    0.03    R    F    08/26/1992    10/22/1992    08/26/1992    NONE    MAIL
patterns will ha 
1412    53    1    1    26    NULL    0.09    0.04    N    O    12/06/1995    12/08/1995    12/06/1995    COLLECT COD
FOB    epitaphs during the finally dari 
1412    63    3    2    4    NULL    0.01    0.03    N    O    10/16/1995    11/25/1995    10/16/1995    TAKE BACK
RETURN   REG AIR    final,daring warthogs since the even orb 
1412    34    2    3    24    NULL    0.10    0.01    N    O    09/26/1995    11/04/1995    09/26/1995    NONE    FOB
frays throughout the silent,close pinto bea 
1412    37    1    4    21    NULL    0.02    0.07    N    O    12/12/1995    11/20/1995    12/12/1995    TAKE BACK
RETURN   TRUCK    busy, warhorses solve busily  
1412    18    1    5    36    NULL    0.08    0.06    N    O    10/30/1995    12/01/1995    10/30/1995    TAKE BACK
RETURN   SHIP    ideas can are regular 
1412    50    2    6    5    NULL    0.04    0.03    N    O    01/17/1996    10/30/1995    01/17/1996    NONE    AIR
alwaysbrave gifts shoul 
1412    12    1    7    44    NULL    0.08    0.03    N    O    12/30/1995    11/20/1995    12/30/1995    COLLECT COD
AIR    careful,ruthless foxes through t 
1413    58    3    1    46    NULL    0.03    0.08    A    F    02/05/1993    02/02/1993    02/05/1993    COLLECT COD
SHIP    warthogs a 
1413    55    1    2    9    NULL    0.07    0.06    R    F    11/27/1992    12/10/1992    11/27/1992    DELIVER IN
PERSON   REG AIR    even,silent dolphins engage 
1413    0    0    3    39    NULL    0.08    0.07    R    F    01/18/1993    12/14/1992    01/18/1993    DELIVER IN
PERSON   AIR    even,ironic waters integrate  
1413    30    0    4    4    NULL    0.09    0.04    A    F    01/04/1993    12/27/1992    01/04/1993    COLLECT COD
MAIL   gifts mold enticingly sentime 
1413    76    1    5    34    NULL    0.09    0.03    R    F    12/08/1992    01/15/1993    12/08/1992    NONE    FOB
depths sleep silently except  
1413    49    3    6    3    NULL    0.02    0.01    A    F    12/13/1992    01/19/1993    12/13/1992    DELIVER IN
PERSON   RAIL    sometimes flu 
1414    9    1    1    47    NULL    0.09    0.06    R    F    03/19/1994    03/20/1994    03/19/1994    TAKE BACK
RETURN   SHIP    quiet,regular sentiments 
1414    52    1    2    7    NULL    0.07    0.01    R    F    04/15/1994    03/29/1994    04/15/1994    COLLECT COD
AIR   escapades shall have to affix 
1414    39    3    3    25    NULL    0.05    0.05    A    F    05/05/1994    03/16/1994    05/05/1994    TAKE BACK
RETURN   FOB    orbits shall play quickly busy i 
1414    42    1    4    30    NULL    0.06    0.06    R    F    05/02/1994    03/05/1994    05/02/1994    DELIVER IN
PERSON   SHIP    somas should  
1415    75    2    1    25    NULL    0.08    0.01    N    O    06/17/1998    06/02/1998    06/17/1998    DELIVER IN
PERSON   MAIL    slowly brave epitaphs slowly brave  
1440    65    3    1    45    NULL    0.07    0.02    N    O    05/27/1998    07/11/1998    05/27/1998    TAKE BACK
RETURN   MAIL    idly close forges after the evenly steal 
1440    8    2    2    26    NULL    0.02    0.08    N    O    05/17/1998    07/16/1998    05/17/1998    TAKE BACK
RETURN   MAIL    brave,dogged tithes affix doggedly  
1440    64    1    3    42    NULL    0.06    0.05    N    O    06/02/1998    06/06/1998    06/02/1998    DELIVER IN
PERSON   TRUCK    instructions against the blithe,blithe shea 
1440    62    3    4    13    NULL    0.03    0.00    N    O    05/24/1998    07/25/1998    05/24/1998    TAKE BACK
RETURN   RAIL    regular,careful di 
1440    38    0    5    27    NULL    0.08    0.05    N    O    08/14/1998    07/23/1998    08/14/1998    COLLECT COD
AIR    boldly even realms atop  
1440    0    0    6    45    NULL    0.00    0.08    N    O    07/20/1998    06/20/1998    07/20/1998    DELIVER IN
PERSON   AIR    braids wake fluffily fluffy real 
1440    11    0    7    10    NULL    0.06    0.06    N    O    06/28/1998    07/09/1998    06/28/1998    NONE    RAIL
 daring somas dazzle f 
1441    34    2    1    45    NULL    0.09    0.02    R    F    01/21/1994    01/01/1994    01/21/1994    DELIVER IN
PERSON   MAIL    forges shall mol 
1442    27    1    1    49    NULL    0.03    0.08    A    F    05/06/1993    06/17/1993    05/06/1993    NONE    RAIL
 quiet dinos beside th 
1442    0    0    2    50    NULL    0.05    0.05    A    F    05/07/1993    05/30/1993    05/07/1993    DELIVER IN
PERSON   REG AIR    excuses be 
1442    15    0    3    15    NULL    0.08    0.07    R    F    08/21/1993    06/28/1993    08/21/1993    COLLECT COD
REG AIR    quietly  theodolites since the bold 
1442    19    3    4    11    NULL    0.06    0.05    R    F    08/13/1993    06/06/1993    08/13/1993    DELIVER IN
PERSON   RAIL    furiusly  orbits would promis 
1442    0    0    5    8    NULL    0.00    0.05    A    F    04/29/1993    06/13/1993    04/29/1993    COLLECT COD
TRUCK   slow, cour 
1442    25    2    6    17    NULL    0.04    0.04    R    F    05/24/1993    07/22/1993    05/24/1993    NONE    TRUCK
  busy,permanent fra 
1443    18    3    1    41    NULL    0.04    0.08    R    F    09/15/1994    10/30/1994    09/15/1994    COLLECT COD
FOB    ,slow depths  
1444    45    3    1    45    NULL    0.01    0.04    A    F    08/25/1994    09/17/1994    08/25/1994    TAKE BACK
RETURN   FOB    regular frets ougth to print busily 
1444    32    2    2    50    NULL    0.07    0.01    R    F    10/08/1994    10/01/1994    10/08/1994    NONE    REG
AIR   quickly final platelets detect d 
1444    20    1    3    8    NULL    0.06    0.03    A    F    08/17/1994    09/14/1994    08/17/1994    DELIVER IN
PERSON   MAIL    quick,even foxes 
1445    47    1    1    12    NULL    0.05    0.05    A    F    03/26/1993    05/11/1993    03/26/1993    COLLECT COD
REG AIR    busy realms during the fluffy pearl 
1445    5    2    2    12    NULL    0.01    0.07    A    F    03/08/1993    05/05/1993    03/08/1993    COLLECT COD
SHIP   blithe dinos blithe dino the  
1445    2    0    3    33    NULL    0.05    0.06    R    F    03/03/1993    04/04/1993    03/03/1993    NONE    REG
AIR   gifts need to lose boldly r 
1445    63    0    4    20    NULL    0.03    0.03    A    F    03/04/1993    04/13/1993    03/04/1993    TAKE BACK
RETURN   RAIL    fluffy,bold braids without the fina 
1445    25    0    5    6    NULL    0.09    0.05    R    F    05/08/1993    04/20/1993    05/08/1993    DELIVER IN
PERSON   REG AIR    finally  waters should affix always ? 
1445    60    3    6    45    NULL    0.08    0.04    A    F    06/07/1993    03/31/1993    06/07/1993    COLLECT COD
SHIP    even,idle waters atop 
1445    34    2    7    40    NULL    0.08    0.05    A    F    05/28/1993    03/29/1993    05/28/1993    COLLECT COD
FOB    ruthless,brave dinos eat be 
1446    0    0    1    29    NULL    0.09    0.01    A    F    10/19/1994    11/26/1994    10/19/1994    NONE    AIR
giftsalong the quickly sly Tiresias' 
1446    17    1    2    36    NULL    0.05    0.00    R    F    09/18/1994    10/02/1994    09/18/1994    DELIVER IN
PERSON   REG AIR    careful,brave ti 
1446    72    1    3    2    NULL    0.08    0.06    R    F    12/17/1994    11/19/1994    12/17/1994    DELIVER IN
PERSON   SHIP    permanent frays during the  
1446    72    0    4    38    NULL    0.09    0.05    R    F    11/06/1994    11/26/1994    11/06/1994    TAKE BACK
RETURN   FOB    enticingly stealthy sauternes 
1446    5    0    5    22    NULL    0.09    0.07    A    F    12/13/1994    10/16/1994    12/13/1994    NONE    SHIP
slowly even forges try to nod busily behind 
1447    14    3    1    6    NULL    0.01    0.01    N    O    09/07/1995    08/09/1995    09/07/1995    NONE    SHIP
slyly sly pearls slyly sly pearl 
1447    32    2    2    15    NULL    0.02    0.02    N    O    07/06/1995    06/20/1995    07/06/1995    DELIVER IN
PERSON   MAIL    quiet epitaphs near the enticing multiplier 
1447    0    0    3    10    NULL    0.10    0.00    N    O    07/05/1995    06/26/1995    07/05/1995    COLLECT COD
FOB   ,dogged forge 
1447    23    1    4    8    NULL    0.01    0.05    N    F    05/30/1995    07/02/1995    05/30/1995    DELIVER IN
PERSON   FOB    fluffily bold warhorses  
1447    0    0    5    48    NULL    0.03    0.05    N    O    08/18/1995    06/29/1995    08/18/1995    NONE    MAIL
pearls poach ! 
1447    0    0    6    6    NULL    0.08    0.06    N    O    08/21/1995    07/12/1995    08/21/1995    DELIVER IN
PERSON   FOB    pinto beans p 
1472    69    1    1    2    NULL    0.02    0.01    N    O    12/10/1995    01/06/1996    12/10/1995    COLLECT COD
TRUCK   furious,careful dugouts ougth to serv 
1472    20    1    2    26    NULL    0.04    0.05    N    O    01/05/1996    01/27/1996    01/05/1996    TAKE BACK
RETURN   AIR    pains sleep toward 
1472    17    2    3    21    NULL    0.09    0.01    N    O    12/23/1995    01/18/1996    12/23/1995    NONE    AIR
bold,regular dinos shall have to doubt f 
1472    34    1    4    36    NULL    0.06    0.06    N    O    03/09/1996    12/19/1995    03/09/1996    DELIVER IN
PERSON   RAIL    blithe,dogged or 
1472    0    0    5    31    NULL    0.09    0.05    N    O    01/12/1996    02/04/1996    01/12/1996    COLLECT COD
TRUCK    epitaphs snooze slowly against the dugouts 
1473    40    0    1    47    NULL    0.06    0.02    R    F    03/23/1992    03/12/1992    03/23/1992    TAKE BACK
RETURN   REG AIR    excuses might play slyly finally sly  
1473    0    0    2    8    NULL    0.04    0.02    A    F    03/06/1992    03/29/1992    03/06/1992    TAKE BACK
RETURN   MAIL    blithe grouches except the enticing,blit 
1473    58    0    3    37    NULL    0.07    0.05    R    F    04/17/1992    04/08/1992    04/17/1992    TAKE BACK
RETURN   FOB    quiet Tiresias'  
1473    12    0    4    2    NULL    0.04    0.05    R    F    03/14/1992    04/06/1992    03/14/1992    DELIVER IN
PERSON   SHIP    slow,quick sentiments 
1474    0    0    1    10    NULL    0.00    0.00    N    O    06/29/1998    07/19/1998    06/29/1998    DELIVER IN
PERSON   FOB    daringly permanent wa 
1474    55    3    2    6    NULL    0.07    0.04    N    O    06/15/1998    07/28/1998    06/15/1998    COLLECT COD
FOB   permanent forges might detect fo 
1475    17    3    1    17    NULL    0.02    0.01    R    F    06/09/1992    05/31/1992    06/09/1992    COLLECT COD
REG AIR    blithely quick g 
1475    54    2    2    31    NULL    0.06    0.05    A    F    08/12/1992    07/13/1992    08/12/1992    COLLECT COD
FOB    dogged grouches print thinly beneat 
1475    0    0    3    49    NULL    0.06    0.01    A    F    06/11/1992    07/07/1992    06/11/1992    DELIVER IN
PERSON   RAIL    excuses impress blithely impress bl 
1475    11    0    4    1    NULL    0.05    0.06    A    F    06/10/1992    06/08/1992    06/10/1992    TAKE BACK
RETURN   FOB    sheaves until the depths until the de 
1476    0    0    1    34    NULL    0.02    0.03    R    F    12/03/1993    01/20/1994    12/03/1993    NONE    FOB
enticing,slowsheaves according  
1476    0    0    2    42    NULL    0.06    0.05    A    F    02/03/1994    01/03/1994    02/03/1994    COLLECT COD
TRUCK   slow notornis besides the regularly q 
1476    63    2    3    22    NULL    0.05    0.02    R    F    03/09/1994    01/20/1994    03/09/1994    COLLECT COD
SHIP    quick,ruthless multipliers subla 
1476    50    3    4    32    NULL    0.08    0.01    R    F    02/07/1994    02/12/1994    02/07/1994    TAKE BACK
RETURN   FOB    hockey players among the furious de 
1477    13    3    1    11    NULL    0.09    0.04    R    F    07/09/1994    05/11/1994    07/09/1994    NONE    MAIL
 pinto beans snooze  silent frays 
1477    0    0    2    16    NULL    0.07    0.08    R    F    04/25/1994    05/21/1994    04/25/1994    TAKE BACK
RETURN   AIR    furiusly enticing depths 
1477    76    3    3    2    NULL    0.06    0.00    R    F    07/24/1994    05/21/1994    07/24/1994    DELIVER IN
PERSON   AIR    idle,sly tithes  
1478    26    3    1    27    NULL    0.10    0.06    N    O    10/18/1995    12/19/1995    10/18/1995    NONE    REG
AIR   slow,furious multi 
1478    59    0    2    1    NULL    0.01    0.06    N    O    01/05/1996    12/02/1995    01/05/1996    NONE    AIR
final,carefulwaters dur 
1478    31    1    3    6    NULL    0.06    0.03    N    O    01/07/1996    12/08/1995    01/07/1996    DELIVER IN
PERSON   RAIL    ruthless,dogged pains 
1478    56    0    4    49    NULL    0.10    0.01    N    O    01/30/1996    01/01/1996    01/30/1996    COLLECT COD
RAIL    daring dolphi 
1478    3    0    5    8    NULL    0.03    0.04    N    O    12/07/1995    12/12/1995    12/07/1995    DELIVER IN
PERSON   AIR    dinos may nag quick,f 
1478    0    0    6    11    NULL    0.08    0.06    N    O    12/26/1995    12/14/1995    12/26/1995    DELIVER IN
PERSON   RAIL    pearls pearl maintain 
1479    65    3    1    24    NULL    0.02    0.06    A    F    03/24/1995    02/09/1995    03/24/1995    NONE    TRUCK
  silently sly  
1479    34    2    2    17    NULL    0.04    0.05    A    F    02/03/1995    02/20/1995    02/03/1995    DELIVER IN
PERSON   AIR    slyly final tithes since the fluffi 
1479    79    0    3    11    NULL    0.02    0.08    R    F    04/21/1995    02/17/1995    04/21/1995    DELIVER IN
PERSON   RAIL     ruthless hockey players migh 
1479    40    0    4    22    NULL    0.02    0.04    A    F    02/21/1995    03/23/1995    02/21/1995    DELIVER IN
PERSON   REG AIR    brave orbits upon the stealthy,quie 
1504    23    2    1    19    NULL    0.07    0.02    R    F    04/20/1992    05/21/1992    04/20/1992    COLLECT COD
FOB    thin sentiments into the ,fluffy 
1504    0    2    2    23    NULL    0.03    0.00    A    F    05/16/1992    05/14/1992    05/16/1992    COLLECT COD
TRUCK   slyly sly dolphins maint 
1504    64    1    3    14    NULL    0.01    0.03    A    F    03/16/1992    05/22/1992    03/16/1992    TAKE BACK
RETURN   SHIP    quietly busy warhorses inside the ironic de 
1504    50    3    4    41    NULL    0.04    0.01    R    F    05/21/1992    05/05/1992    05/21/1992    TAKE BACK
RETURN   RAIL    careful platelets over the  
1504    0    0    5    45    NULL    0.06    0.00    A    F    06/11/1992    04/23/1992    06/11/1992    DELIVER IN
PERSON   SHIP    quick,silent silen will have  
1505    42    0    1    49    NULL    0.08    0.03    A    F    12/19/1992    11/12/1992    12/19/1992    COLLECT COD
MAIL    bold,quiet frets along the  brave fra 
1506    11    0    1    20    NULL    0.05    0.05    N    O    08/18/1996    08/25/1996    08/18/1996    TAKE BACK
RETURN   AIR    closely ruthless pinto beans before t 
1506    76    1    2    9    NULL    0.00    0.01    N    O    09/11/1996    08/21/1996    09/11/1996    COLLECT COD
REGAIR    finally fi 
1507    24    3    1    5    NULL    0.04    0.06    R    F    06/12/1992    08/09/1992    06/12/1992    NONE    FOB
tithesmaintain slyly . bold,bold o 
1507    0    0    2    42    NULL    0.01    0.06    A    F    05/26/1992    08/02/1992    05/26/1992    TAKE BACK
RETURN   REG AIR    stealthy,even mu 
1507    59    3    3    50    NULL    0.03    0.00    R    F    07/21/1992    07/12/1992    07/21/1992    DELIVER IN
PERSON   AIR    dinos until the entic 
1507    0    0    4    45    NULL    0.10    0.06    A    F    09/08/1992    08/01/1992    09/08/1992    TAKE BACK
RETURN   TRUCK    close,regular somas try to  
1508    46    3    1    30    NULL    0.10    0.02    R    F    12/01/1994    01/09/1995    12/01/1994    NONE    MAIL
 sly,bold ideas wit 
1508    77    2    2    20    NULL    0.08    0.05    R    F    12/21/1994    01/07/1995    12/21/1994    DELIVER IN
PERSON   RAIL    notornis within the pearls could su 
1508    12    2    3    12    NULL    0.01    0.00    R    F    02/26/1995    12/27/1994    02/26/1995    DELIVER IN
PERSON   MAIL    forges might affix pe 
1509    27    0    1    6    NULL    0.09    0.08    N    O    07/29/1997    09/26/1997    07/29/1997    COLLECT COD
MAIL   braids do was fluffily slow ideas : 
1509    4    0    2    27    NULL    0.00    0.04    N    O    09/03/1997    08/13/1997    09/03/1997    TAKE BACK
RETURN   SHIP    orbits shall print within the courts 
1509    0    0    3    33    NULL    0.07    0.00    N    O    09/06/1997    09/10/1997    09/06/1997    DELIVER IN
PERSON   SHIP    fluffy,regular excuses outside t 
1510    55    3    1    11    NULL    0.01    0.03    A    F    09/30/1994    09/05/1994    09/30/1994    COLLECT COD
FOB    somas will have to integrate carefull 
1511    27    2    1    50    NULL    0.05    0.00    A    F    03/08/1995    03/05/1995    03/08/1995    TAKE BACK
RETURN   AIR    dinos should have to hang s 
1536    13    3    1    19    NULL    0.06    0.03    A    F    12/18/1993    11/25/1993    12/18/1993    COLLECT COD
MAIL    slow,busy somas need to subla 
1536    0    0    2    29    NULL    0.04    0.06    A    F    09/23/1993    12/15/1993    09/23/1993    COLLECT COD
MAIL   close grouches integrate evenly . 
1536    79    3    3    9    NULL    0.00    0.03    R    F    11/21/1993    12/19/1993    11/21/1993    DELIVER IN
PERSON   SHIP    dolphins sleep always by the brave dinos 
1536    59    0    4    24    NULL    0.10    0.05    R    F    12/29/1993    11/11/1993    12/29/1993    NONE    MAIL
 realms outside the furious, 
1536    70    1    5    16    NULL    0.04    0.03    R    F    11/03/1993    12/12/1993    11/03/1993    DELIVER IN
PERSON   FOB    careful,fluffy m 
1536    31    3    6    25    NULL    0.02    0.07    R    F    10/02/1993    11/30/1993    10/02/1993    NONE    TRUCK
  thinly close clos may  bravel 
1537    31    3    1    19    NULL    0.09    0.06    N    O    02/04/1996    01/16/1996    02/04/1996    NONE    RAIL
 enticing escapades be 
1537    0    0    2    37    NULL    0.01    0.02    N    O    01/10/1996    01/08/1996    01/10/1996    DELIVER IN
PERSON   REG AIR    brave,quick sauternes boost -- 
1537    45    3    3    11    NULL    0.06    0.06    N    O    11/17/1995    12/26/1995    11/17/1995    COLLECT COD
AIR    furiusly dogged forges through the  
1537    50    2    4    6    NULL    0.03    0.04    N    O    01/20/1996    01/13/1996    01/20/1996    TAKE BACK
RETURN   REG AIR    blithely furious frays during th 
1538    25    2    1    22    NULL    0.00    0.04    A    F    10/31/1994    08/11/1994    10/31/1994    NONE    MAIL
 patterns in place  
1538    30    2    2    22    NULL    0.07    0.00    R    F    07/26/1994    09/03/1994    07/26/1994    DELIVER IN
PERSON   REG AIR    braids engage : 
1538    0    0    3    3    NULL    0.03    0.04    A    F    08/27/1994    08/01/1994    08/27/1994    TAKE BACK
RETURN   SHIP    slow notornis must have to po 
1538    0    0    4    6    NULL    0.03    0.05    R    F    08/26/1994    09/02/1994    08/26/1994    NONE    TRUCK
ironic,daring realms outside  
1538    61    2    5    43    NULL    0.03    0.03    A    F    07/22/1994    08/25/1994    07/22/1994    COLLECT COD
TRUCK    thin,dogged excuses try to lose silently 
1538    56    1    6    5    NULL    0.09    0.07    A    F    07/06/1994    08/21/1994    07/06/1994    DELIVER IN
PERSON   TRUCK    regular,daring pearls toward the 
1539    0    0    1    40    NULL    0.07    0.01    R    F    03/29/1995    05/23/1995    03/29/1995    COLLECT COD
TRUCK   depths from the ideas try to  
1539    0    0    2    31    NULL    0.08    0.05    R    F    03/23/1995    04/14/1995    03/23/1995    NONE    AIR
regularlyfurious  
1539    57    3    3    14    NULL    0.04    0.03    N    F    05/29/1995    04/28/1995    05/29/1995    COLLECT COD
AIR    daring sentiment 
1539    40    0    4    48    NULL    0.06    0.07    N    O    06/25/1995    04/15/1995    06/25/1995    NONE    REG
AIR   pains engage blithely fluffy,dogged depe 
1540    0    0    1    49    NULL    0.01    0.06    N    O    04/14/1998    03/17/1998    04/14/1998    DELIVER IN
PERSON   TRUCK    permanent,sly hockey players  
1540    36    0    2    36    NULL    0.00    0.05    N    O    04/17/1998    04/28/1998    04/17/1998    NONE    MAIL
 slyly idle water 
1541    9    1    1    29    NULL    0.06    0.04    N    O    03/18/1997    04/03/1997    03/18/1997    NONE    TRUCK
 platelets could have to are behind th 
1541    41    0    2    41    NULL    0.00    0.07    N    O    04/03/1997    03/26/1997    04/03/1997    DELIVER IN
PERSON   TRUCK    idle hockey players between the quick 
1542    35    2    1    42    NULL    0.01    0.07    R    F    12/06/1992    02/23/1993    12/06/1992    COLLECT COD
SHIP    final forges in place of the thi 
1542    0    0    2    23    NULL    0.05    0.06    R    F    03/24/1993    02/04/1993    03/24/1993    TAKE BACK
RETURN   SHIP    even frets across the foxes print p 
1542    24    1    3    24    NULL    0.02    0.07    A    F    03/18/1993    01/07/1993    03/18/1993    TAKE BACK
RETURN   MAIL    final multipliers toward the  
1542    18    2    4    46    NULL    0.02    0.07    R    F    12/24/1992    01/19/1993    12/24/1992    TAKE BACK
RETURN   RAIL    pinto beans along the ru 
1542    49    2    5    46    NULL    0.01    0.02    A    F    12/03/1992    01/11/1993    12/03/1992    TAKE BACK
RETURN   AIR    busy orbits serve ruthlessly . 
1542    3    3    6    34    NULL    0.05    0.06    A    F    12/18/1992    02/22/1993    12/18/1992    NONE    TRUCK
 furious epitaphs ougth to e 
1542    62    2    7    9    NULL    0.03    0.02    A    F    01/22/1993    01/14/1993    01/22/1993    COLLECT COD
TRUCK   fluffily enticing warhorses run quiet 
1543    37    1    1    48    NULL    0.02    0.03    A    F    10/01/1993    09/12/1993    10/01/1993    NONE    RAIL
 enticing sauternes above th 
1543    16    2    2    21    NULL    0.08    0.01    R    F    07/22/1993    08/25/1993    07/22/1993    COLLECT COD
FOB    pinto beans despite the ideas need to da 
1543    8    0    3    28    NULL    0.00    0.05    A    F    07/24/1993    09/27/1993    07/24/1993    DELIVER IN
PERSON   AIR    blithe  according to the waters solve for t 
1543    45    2    4    49    NULL    0.05    0.01    A    F    09/24/1993    08/20/1993    09/24/1993    TAKE BACK
RETURN   RAIL    idly blithe instructi 
1568    61    3    1    7    NULL    0.04    0.03    A    F    03/21/1993    02/05/1993    03/21/1993    TAKE BACK
RETURN   SHIP    grouches around the instructi 
1568    0    0    2    44    NULL    0.07    0.06    A    F    01/01/1993    02/04/1993    01/01/1993    COLLECT COD
REGAIR    frets affi 
1568    0    0    3    1    NULL    0.09    0.04    R    F    02/20/1993    01/19/1993    02/20/1993    TAKE BACK
RETURN   AIR    even,permanen 
1569    11    2    1    31    NULL    0.02    0.06    N    O    09/12/1996    09/15/1996    09/12/1996    TAKE BACK
RETURN   FOB    tithes beneath the ironic  might 
1569    0    0    2    41    NULL    0.01    0.06    N    O    08/19/1996    10/04/1996    08/19/1996    DELIVER IN
PERSON   FOB    doggedly enticing dugouts breach : pe 
1569    19    0    3    5    NULL    0.10    0.06    N    O    10/22/1996    09/25/1996    10/22/1996    DELIVER IN
PERSON   MAIL    ironic,regular r 
1569    71    0    4    32    NULL    0.03    0.01    N    O    11/10/1996    09/24/1996    11/10/1996    DELIVER IN
PERSON   FOB    warhorses beside 
1569    0    0    5    48    NULL    0.07    0.04    N    O    08/22/1996    08/11/1996    08/22/1996    COLLECT COD
REGAIR    idly final gifts t 
1570    48    2    1    8    NULL    0.09    0.08    R    F    07/11/1993    06/08/1993    07/11/1993    NONE    MAIL
warthogs breach ; 
1571    38    1    1    16    NULL    0.05    0.06    N    O    07/23/1997    07/19/1997    07/23/1997    COLLECT COD
REG AIR    evenly sly gifts shal 
1571    79    0    2    27    NULL    0.04    0.07    N    O    08/14/1997    06/30/1997    08/14/1997    TAKE BACK
RETURN   SHIP    even pinto beans could n 
1571    49    2    3    15    NULL    0.02    0.05    N    O    09/03/1997    07/26/1997    09/03/1997    COLLECT COD
AIR    dependencies could have to promi 
1572    36    2    1    13    NULL    0.05    0.01    N    O    03/04/1996    02/11/1996    03/04/1996    DELIVER IN
PERSON   SHIP    excuses try to dazzle 
1572    35    1    2    43    NULL    0.06    0.06    N    O    01/31/1996    01/21/1996    01/31/1996    DELIVER IN
PERSON   REG AIR    quiet,ironic dol 
1572    23    2    3    43    NULL    0.08    0.06    N    O    12/20/1995    01/11/1996    12/20/1995    TAKE BACK
RETURN   SHIP    busy,stealthy excuses 
1572    64    2    4    32    NULL    0.06    0.08    N    O    01/07/1996    02/14/1996    01/07/1996    TAKE BACK
RETURN   FOB    daringly bold 
1572    0    0    5    41    NULL    0.02    0.01    N    O    01/04/1996    01/27/1996    01/04/1996    NONE    TRUCK
 ruthless theo 
1573    69    1    1    10    NULL    0.04    0.02    R    F    04/22/1995    04/10/1995    04/22/1995    TAKE BACK
RETURN   SHIP    thin Tiresias' by  
1573    0    0    2    7    NULL    0.08    0.05    N    F    06/03/1995    04/22/1995    06/03/1995    COLLECT COD
RAIL   silently enticing frays  
1573    0    0    3    26    NULL    0.10    0.06    N    F    06/07/1995    04/17/1995    06/07/1995    NONE    SHIP
dogged dependencies inte 
1573    20    1    4    14    NULL    0.04    0.02    R    F    04/17/1995    04/06/1995    04/17/1995    COLLECT COD
AIR    ,silent dependencies maintain ironi 
1573    14    1    5    34    NULL    0.03    0.06    A    F    04/07/1995    03/23/1995    04/07/1995    DELIVER IN
PERSON   SHIP    quick,careful depende 
1573    33    2    6    46    NULL    0.01    0.03    R    F    05/16/1995    03/23/1995    05/16/1995    NONE    FOB
blithe,idle instructi 
1573    8    1    7    30    NULL    0.01    0.07    N    F    06/15/1995    04/21/1995    06/15/1995    NONE    RAIL
frets since t 
1574    34    3    1    37    NULL    0.08    0.08    N    O    08/15/1998    07/14/1998    08/15/1998    TAKE BACK
RETURN   MAIL    brave,careful asymptotes should have to los 
1574    66    0    2    36    NULL    0.01    0.08    N    O    06/24/1998    07/27/1998    06/24/1998    NONE    TRUCK
  orbits besides the closely daring orb 
1575    54    2    1    6    NULL    0.03    0.01    R    F    12/30/1993    11/04/1993    12/30/1993    DELIVER IN
PERSON   MAIL    forges shall have to doze f 
1600    71    0    1    20    NULL    0.06    0.07    A    F    02/02/1994    12/04/1993    02/02/1994    TAKE BACK
RETURN   MAIL     braids hinder to the sautern 
1600    72    2    2    46    NULL    0.09    0.01    A    F    02/07/1994    12/22/1993    02/07/1994    NONE    REG
AIR   careful dugouts could maintain ironic 
1600    0    0    3    41    NULL    0.04    0.05    A    F    02/26/1994    12/21/1993    02/26/1994    DELIVER IN
PERSON   REG AIR    depths haggle ! 
1600    26    1    4    24    NULL    0.01    0.00    R    F    01/21/1994    12/26/1993    01/21/1994    TAKE BACK
RETURN   RAIL    thin,regular somas unwin 
1600    58    0    5    37    NULL    0.01    0.05    R    F    11/04/1993    12/03/1993    11/04/1993    TAKE BACK
RETURN   AIR    careful dolphins under the idle platelet 
1600    42    3    6    48    NULL    0.00    0.01    R    F    12/07/1993    01/07/1994    12/07/1993    DELIVER IN
PERSON   MAIL    busy somas need  
1600    75    0    7    14    NULL    0.03    0.05    R    F    02/19/1994    12/23/1993    02/19/1994    COLLECT COD
MAIL    stealthily even decoys h 
1601    9    0    1    18    NULL    0.06    0.07    R    F    11/23/1994    10/14/1994    11/23/1994    TAKE BACK
RETURN   SHIP    hockey pla 
1601    13    0    2    39    NULL    0.03    0.00    A    F    11/11/1994    09/28/1994    11/11/1994    COLLECT COD
AIR    careful asymptot 
1601    13    3    3    5    NULL    0.09    0.06    R    F    09/05/1994    10/08/1994    09/05/1994    DELIVER IN
PERSON   RAIL    daringly blithe braids mold . 
1601    36    2    4    38    NULL    0.03    0.02    A    F    11/29/1994    09/12/1994    11/29/1994    COLLECT COD
RAIL    thin,final hockey  
1601    0    0    5    23    NULL    0.07    0.07    R    F    12/03/1994    10/28/1994    12/03/1994    COLLECT COD
SHIP   dolphins boost toward the dugout 
1601    0    0    6    30    NULL    0.06    0.03    A    F    12/04/1994    09/30/1994    12/04/1994    NONE    SHIP
even,permanent permanen before the dinos 
1602    0    0    1    25    NULL    0.03    0.07    N    O    01/07/1996    11/22/1995    01/07/1996    TAKE BACK
RETURN   RAIL    silent,silent Tiresias' silent,silent Ti 
1602    37    2    2    27    NULL    0.07    0.06    N    O    01/18/1996    12/12/1995    01/18/1996    COLLECT COD
FOB    sometimes  
1602    14    3    3    24    NULL    0.03    0.01    N    O    01/30/1996    12/12/1995    01/30/1996    COLLECT COD
MAIL    ruthlessly brave multipliers outsid 
1603    45    1    1    43    NULL    0.09    0.08    R    F    11/20/1992    10/24/1992    11/20/1992    TAKE BACK
RETURN   TRUCK    sentiments cajol 
1603    0    0    2    49    NULL    0.07    0.02    A    F    09/30/1992    09/22/1992    09/30/1992    COLLECT COD
MAIL   busy,permanen 
1604    12    1    1    4    NULL    0.08    0.05    A    F    11/22/1994    01/20/1995    11/22/1994    COLLECT COD
MAIL   ideas coul 
1604    0    0    2    8    NULL    0.01    0.02    A    F    03/13/1995    12/26/1994    03/13/1995    TAKE BACK
RETURN   SHIP    ,slow dolphins play evenly pl 
1604    9    1    3    8    NULL    0.09    0.08    R    F    11/20/1994    01/05/1995    11/20/1994    TAKE BACK
RETURN   FOB    thin,permanent decoys between the iro 
1604    68    3    4    16    NULL    0.07    0.07    R    F    12/15/1994    01/03/1995    12/15/1994    TAKE BACK
RETURN   RAIL    bold,idle hockey players maintai 
1605    52    0    1    4    NULL    0.06    0.01    N    O    07/01/1996    07/09/1996    07/01/1996    NONE    RAIL
warthogs in place of the quick,ironic 
1605    61    1    2    26    NULL    0.01    0.01    N    O    06/28/1996    07/01/1996    06/28/1996    NONE    AIR
quiet hockey players into the fluff 
1605    3    0    3    37    NULL    0.06    0.01    N    O    05/12/1996    07/14/1996    05/12/1996    DELIVER IN
PERSON   TRUCK    sauternes affix outside the stealth 
1605    69    1    4    35    NULL    0.09    0.04    N    O    05/26/1996    07/06/1996    05/26/1996    DELIVER IN
PERSON   AIR    doggedly thin pinto beans ove 
1606    0    0    1    50    NULL    0.03    0.08    N    O    07/17/1996    06/29/1996    07/17/1996    COLLECT COD
SHIP   ironic attainments must have to  
1606    2    0    2    1    NULL    0.06    0.05    N    O    07/30/1996    07/21/1996    07/30/1996    TAKE BACK
RETURN   FOB    blithely permanent patte 
1606    14    2    3    3    NULL    0.08    0.03    N    O    09/11/1996    07/22/1996    09/11/1996    COLLECT COD
AIR   fluffy,even hockey players  
1606    67    1    4    38    NULL    0.07    0.00    N    O    06/09/1996    08/25/1996    06/09/1996    NONE    MAIL
 quick pearls could have to breach f 
1607    74    2    1    24    NULL    0.00    0.01    A    F    04/27/1995    04/09/1995    04/27/1995    TAKE BACK
RETURN   REG AIR    quiet,silent silen ar 
1607    5    3    2    25    NULL    0.01    0.08    A    F    03/14/1995    02/24/1995    03/14/1995    COLLECT COD
RAIL   furiusly final warthogs should n 
1607    45    0    3    18    NULL    0.09    0.01    A    F    02/09/1995    04/04/1995    02/09/1995    DELIVER IN
PERSON   SHIP    slow,quick dugouts except the slow, 
1607    73    3    4    39    NULL    0.01    0.00    A    F    03/17/1995    03/30/1995    03/17/1995    NONE    MAIL
 sentiments shall mold silently furi 
1607    37    3    5    30    NULL    0.09    0.02    A    F    01/31/1995    03/04/1995    01/31/1995    TAKE BACK
RETURN   REG AIR    blithe asymptotes cajole alongsi 
1607    64    2    6    49    NULL    0.02    0.01    A    F    02/10/1995    03/11/1995    02/10/1995    COLLECT COD
FOB    daring,careful frets above th 
1607    23    1    7    40    NULL    0.03    0.03    R    F    05/04/1995    03/17/1995    05/04/1995    DELIVER IN
PERSON   SHIP    ideas among the daringly 
1632    17    2    1    15    NULL    0.06    0.06    N    O    01/20/1996    11/10/1995    01/20/1996    DELIVER IN
PERSON   REG AIR    brave instructions could engage fluff 
1632    43    1    2    13    NULL    0.03    0.04    N    O    12/21/1995    12/25/1995    12/21/1995    DELIVER IN
PERSON   REG AIR    stealthy,idle courts doubt fo 
1632    47    2    3    50    NULL    0.07    0.07    N    O    12/22/1995    11/20/1995    12/22/1995    DELIVER IN
PERSON   REG AIR    quietly br 
1632    67    2    4    2    NULL    0.01    0.05    N    O    01/29/1996    11/12/1995    01/29/1996    TAKE BACK
RETURN   RAIL    stealthy real 
1632    50    3    5    42    NULL    0.06    0.04    N    O    12/18/1995    11/04/1995    12/18/1995    TAKE BACK
RETURN   SHIP    dolphins lose regular 
1633    62    3    1    3    NULL    0.06    0.03    N    O    04/24/1996    04/03/1996    04/24/1996    NONE    FOB
instructionsalongside of the qu 
1633    10    0    2    44    NULL    0.03    0.06    N    O    02/17/1996    04/08/1996    02/17/1996    COLLECT COD
AIR    thin sauterne 
1633    0    0    3    24    NULL    0.07    0.02    N    O    03/02/1996    03/11/1996    03/02/1996    DELIVER IN
PERSON   MAIL    dugouts ougth to e 
1633    65    3    4    18    NULL    0.05    0.08    N    O    04/20/1996    02/28/1996    04/20/1996    COLLECT COD
TRUCK    dogged,careful pinto beans by 
1633    8    0    5    46    NULL    0.06    0.03    N    O    02/14/1996    03/16/1996    02/14/1996    TAKE BACK
RETURN   TRUCK    brave multipl 
1633    48    2    6    33    NULL    0.06    0.07    N    O    03/20/1996    04/08/1996    03/20/1996    NONE    SHIP
 daring,silent braids  
1633    0    0    7    18    NULL    0.08    0.02    N    O    03/30/1996    03/27/1996    03/30/1996    TAKE BACK
RETURN   SHIP    tithes must e 
1634    37    3    1    36    NULL    0.09    0.02    R    F    12/25/1993    11/18/1993    12/25/1993    DELIVER IN
PERSON   AIR    always idle forges run ? 
1634    0    0    2    23    NULL    0.08    0.06    A    F    10/03/1993    11/12/1993    10/03/1993    COLLECT COD
RAIL   sly,enticing courts must impress 
1634    41    1    3    43    NULL    0.09    0.02    R    F    01/17/1994    11/23/1993    01/17/1994    COLLECT COD
AIR    slow,bold escapade 
1634    70    0    4    44    NULL    0.03    0.05    R    F    11/19/1993    12/07/1993    11/19/1993    TAKE BACK
RETURN   SHIP    blithe,fluffy tithes shall print bu 
1634    76    2    5    10    NULL    0.08    0.04    A    F    10/29/1993    11/22/1993    10/29/1993    TAKE BACK
RETURN   AIR    final dolphins a 
1634    67    2    6    21    NULL    0.03    0.08    R    F    11/02/1993    11/19/1993    11/02/1993    NONE    AIR
sly dependenc 
1635    0    0    1    35    NULL    0.04    0.02    N    O    10/29/1998    09/11/1998    10/29/1998    NONE    SHIP
pinto beans could have t 
1635    60    3    2    10    NULL    0.05    0.02    N    O    10/03/1998    09/05/1998    10/03/1998    TAKE BACK
RETURN   MAIL    dependencies use r 
1635    0    0    3    35    NULL    0.05    0.06    N    O    10/24/1998    10/10/1998    10/24/1998    NONE    RAIL
regular,permanent the 
1635    20    0    4    13    NULL    0.01    0.05    N    O    08/14/1998    09/08/1998    08/14/1998    NONE    TRUCK
  carefully regular attain 
1635    0    0    5    7    NULL    0.03    0.05    N    O    08/06/1998    09/16/1998    08/06/1998    DELIVER IN
PERSON   AIR    bold,close dinos abov 
1635    68    2    6    34    NULL    0.06    0.07    N    O    09/23/1998    09/24/1998    09/23/1998    NONE    MAIL
 final,daring dinos into the enticing  
1636    0    0    1    9    NULL    0.06    0.08    N    O    01/13/1998    01/27/1998    01/13/1998    NONE    REG AIR
  sly,dogged dogge about the carefully  Ti 
1636    41    1    2    33    NULL    0.06    0.01    N    O    04/09/1998    02/03/1998    04/09/1998    DELIVER IN
PERSON   TRUCK    sly,final attainme 
1636    23    3    3    30    NULL    0.00    0.05    N    O    03/28/1998    02/24/1998    03/28/1998    TAKE BACK
RETURN   FOB    sly sheaves into the stealt 
1636    44    0    4    37    NULL    0.04    0.08    N    O    03/19/1998    03/14/1998    03/19/1998    COLLECT COD
REG AIR    boldly stealthy pinto beans 
1636    58    0    5    23    NULL    0.02    0.02    N    O    04/08/1998    02/07/1998    04/08/1998    TAKE BACK
RETURN   MAIL    sauternes across t 
1636    45    2    6    42    NULL    0.10    0.03    N    O    01/01/1998    01/15/1998    01/01/1998    TAKE BACK
RETURN   RAIL    quietly dogged frets eat 
1636    27    3    7    31    NULL    0.02    0.02    N    O    01/01/1998    02/15/1998    01/01/1998    COLLECT COD
AIR    even patte 
1637    55    2    1    24    NULL    0.01    0.07    N    O    10/21/1998    10/13/1998    10/21/1998    NONE    REG
AIR   stealthy,stea 
1637    22    1    2    14    NULL    0.08    0.06    N    O    10/23/1998    10/05/1998    10/23/1998    TAKE BACK
RETURN   AIR    busy,slow foxes un 
1637    0    0    3    35    NULL    0.05    0.07    N    O    08/16/1998    10/13/1998    08/16/1998    DELIVER IN
PERSON   RAIL    daring frets promise frets  
1637    11    2    4    3    NULL    0.08    0.06    N    O    11/13/1998    09/07/1998    11/13/1998    NONE    SHIP
sheaves in place of t 
1637    0    0    5    39    NULL    0.09    0.07    N    O    10/12/1998    10/26/1998    10/12/1998    NONE    MAIL
dogged,final tithes after the alway 
1637    3    0    6    46    NULL    0.00    0.02    N    O    08/10/1998    09/17/1998    08/10/1998    TAKE BACK
RETURN   MAIL    regularly final warhorses a 
1638    0    0    1    5    NULL    0.03    0.03    N    O    07/14/1997    09/14/1997    07/14/1997    TAKE BACK
RETURN   RAIL    forges could  
1638    41    0    2    17    NULL    0.06    0.00    N    O    07/20/1997    08/27/1997    07/20/1997    DELIVER IN
PERSON   TRUCK    daring,bold w 
1638    79    0    3    16    NULL    0.05    0.00    N    O    09/24/1997    08/28/1997    09/24/1997    NONE    FOB
somas should have to use enti 
1638    67    2    4    1    NULL    0.07    0.06    N    O    11/04/1997    09/21/1997    11/04/1997    NONE    FOB
Tiresias'ougth to detect f 
1638    77    2    5    42    NULL    0.06    0.01    N    O    07/27/1997    09/30/1997    07/27/1997    COLLECT COD
REG AIR    fluffy,even i 
1638    77    1    6    6    NULL    0.04    0.06    N    O    10/31/1997    09/06/1997    10/31/1997    NONE    SHIP
bold forges shou 
1638    15    0    7    46    NULL    0.09    0.03    N    O    09/12/1997    10/03/1997    09/12/1997    DELIVER IN
PERSON   SHIP    ironic,bol 
1639    35    1    1    35    NULL    0.05    0.04    A    F    05/31/1993    07/06/1993    05/31/1993    COLLECT COD
RAIL    enticingly quick depths  
1639    42    1    2    28    NULL    0.04    0.04    R    F    07/09/1993    07/07/1993    07/09/1993    DELIVER IN
PERSON   TRUCK    brave decoys play thi 
1639    68    1    3    17    NULL    0.01    0.02    R    F    06/25/1993    07/31/1993    06/25/1993    DELIVER IN
PERSON   RAIL    dogged attain 
1639    70    1    4    17    NULL    0.02    0.01    R    F    07/15/1993    07/16/1993    07/15/1993    COLLECT COD
FOB    busy,stealthy sheaves should boost  
1639    71    2    5    41    NULL    0.07    0.01    A    F    06/04/1993    07/22/1993    06/04/1993    DELIVER IN
PERSON   AIR    decoys along the quick,enticing excuses mus 
1639    45    3    6    2    NULL    0.08    0.06    R    F    08/26/1993    07/18/1993    08/26/1993    DELIVER IN
PERSON   FOB    dogged pearls in place of t 
1639    17    1    7    44    NULL    0.06    0.07    A    F    08/11/1993    06/21/1993    08/11/1993    TAKE BACK
RETURN   AIR    dependencies play slyly about the s 
1664    7    2    1    23    NULL    0.01    0.07    N    O    11/13/1995    10/29/1995    11/13/1995    TAKE BACK
RETURN   MAIL    permanently quick tithes over the wat 
1664    38    3    2    38    NULL    0.00    0.05    N    O    11/12/1995    11/15/1995    11/12/1995    COLLECT COD
AIR    furious,busy foxes im 
1664    28    1    3    27    NULL    0.02    0.06    N    O    10/11/1995    11/10/1995    10/11/1995    COLLECT COD
TRUCK    blithe,furious forges can breach regu 
1664    67    3    4    9    NULL    0.04    0.02    N    O    10/21/1995    11/27/1995    10/21/1995    DELIVER IN
PERSON   MAIL    idle frays wake slowly despite the pa 
1664    2    3    5    37    NULL    0.04    0.02    N    O    10/11/1995    11/25/1995    10/11/1995    COLLECT COD
REGAIR    ruthless,bold pa 
1664    0    0    6    47    NULL    0.04    0.05    N    O    09/19/1995    11/01/1995    09/19/1995    COLLECT COD
AIR   pinto beans atop t 
1664    76    3    7    13    NULL    0.04    0.08    N    O    11/19/1995    11/08/1995    11/19/1995    COLLECT COD
AIR    sentiments do integrate permanently thro 
1665    0    0    1    38    NULL    0.01    0.02    A    F    12/22/1993    02/13/1994    12/22/1993    DELIVER IN
PERSON   AIR    always fluffy escapades  
1666    31    1    1    23    NULL    0.08    0.06    R    F    06/21/1994    07/10/1994    06/21/1994    COLLECT COD
SHIP    realms realm haggle daringly with the 
1666    0    0    2    30    NULL    0.09    0.06    R    F    08/06/1994    08/05/1994    08/06/1994    TAKE BACK
RETURN   RAIL    stealthy courts stealthy co 
1667    71    1    1    38    NULL    0.05    0.02    N    O    12/02/1996    12/19/1996    12/02/1996    NONE    REG
AIR   busy decoys p 
1667    42    1    2    4    NULL    0.10    0.06    N    O    11/08/1996    01/02/1997    11/08/1996    NONE    REG
AIR   excuses x_ray doggedly upon the ruthl 
1667    78    2    3    3    NULL    0.08    0.04    N    O    01/01/1997    01/04/1997    01/01/1997    COLLECT COD
AIR   silent excuses shall are ! warhorse 
1667    77    2    4    10    NULL    0.06    0.01    N    O    01/25/1997    11/14/1996    01/25/1997    TAKE BACK
RETURN   MAIL    brave,slow grouches breach slyly 
1667    75    0    5    35    NULL    0.07    0.07    N    O    12/16/1996    12/22/1996    12/16/1996    COLLECT COD
TRUCK    daringly p 
1667    14    3    6    47    NULL    0.03    0.07    N    O    01/16/1997    01/02/1997    01/16/1997    DELIVER IN
PERSON   TRUCK    sly dinos among the fluffy forges s 
1667    0    0    7    46    NULL    0.06    0.06    N    O    01/19/1997    11/14/1996    01/19/1997    COLLECT COD
MAIL   pains must ha 
1668    8    2    1    30    NULL    0.10    0.07    N    O    06/19/1995    05/13/1995    06/19/1995    DELIVER IN
PERSON   FOB    permanent courts 
1669    0    0    1    13    NULL    0.08    0.07    N    O    07/08/1996    10/02/1996    07/08/1996    TAKE BACK
RETURN   MAIL    slow,sly attainments are escapades ? 
1669    0    0    2    43    NULL    0.03    0.03    N    O    09/04/1996    09/07/1996    09/04/1996    DELIVER IN
PERSON   REG AIR    ruthlessly permanent pin 
1670    0    0    1    40    NULL    0.06    0.04    A    F    04/18/1992    04/20/1992    04/18/1992    DELIVER IN
PERSON   FOB    thinly busy o 
1670    0    0    2    50    NULL    0.07    0.04    R    F    03/30/1992    05/26/1992    03/30/1992    DELIVER IN
PERSON   AIR    bravely daring wat 
1670    28    2    3    26    NULL    0.08    0.07    A    F    06/23/1992    04/21/1992    06/23/1992    COLLECT COD
FOB    gifts shall have to solve evenly -- thin 
1670    35    2    4    16    NULL    0.07    0.04    A    F    07/08/1992    05/14/1992    07/08/1992    NONE    RAIL
 blithe pains try to maintain ? sheaves s 
1670    60    3    5    15    NULL    0.06    0.06    R    F    05/30/1992    05/12/1992    05/30/1992    TAKE BACK
RETURN   MAIL    ideas idea doze at 
1670    23    3    6    43    NULL    0.10    0.04    R    F    07/01/1992    05/11/1992    07/01/1992    NONE    RAIL
 dolphins d 
1670    0    0    7    6    NULL    0.09    0.00    A    F    03/15/1992    05/13/1992    03/15/1992    DELIVER IN
PERSON   FOB    asymptotes be 
1671    44    0    1    26    NULL    0.01    0.03    A    F    05/17/1993    06/11/1993    05/17/1993    TAKE BACK
RETURN   RAIL    somas beside the slow 
1671    78    2    2    50    NULL    0.04    0.08    A    F    05/13/1993    07/01/1993    05/13/1993    TAKE BACK
RETURN   REG AIR    ,daring warth 
1671    22    0    3    32    NULL    0.05    0.01    R    F    06/20/1993    07/01/1993    06/20/1993    DELIVER IN
PERSON   SHIP    close instructions up the i 
1671    49    0    4    1    NULL    0.07    0.07    R    F    05/21/1993    07/02/1993    05/21/1993    NONE    FOB
ironicallybold dinos gr 
1671    18    3    5    47    NULL    0.06    0.06    A    F    07/06/1993    06/07/1993    07/06/1993    COLLECT COD
MAIL    somas across the close fray 
1671    0    0    6    16    NULL    0.08    0.03    R    F    07/25/1993    07/10/1993    07/25/1993    COLLECT COD
FOB   asymptotes except the brave,e 
1671    0    0    7    24    NULL    0.00    0.07    A    F    05/07/1993    06/10/1993    05/07/1993    COLLECT COD
FOB   always eve 
1696    14    1    1    27    NULL    0.06    0.06    N    O    03/12/1998    02/17/1998    03/12/1998    TAKE BACK
RETURN   FOB    thin  without th 
1696    0    0    2    1    NULL    0.05    0.07    N    O    03/19/1998    01/26/1998    03/19/1998    COLLECT COD
SHIP   ironically regular decoys alo 
1696    48    3    3    4    NULL    0.09    0.03    N    O    03/21/1998    01/14/1998    03/21/1998    COLLECT COD
RAIL   brave,final somas integrate along the  fluf 
1696    3    3    4    23    NULL    0.03    0.05    N    O    12/18/1997    03/08/1998    12/18/1997    COLLECT COD
MAIL   slowly permanent forges toward the  
1696    57    2    5    22    NULL    0.02    0.06    N    O    02/22/1998    02/03/1998    02/22/1998    NONE    SHIP
 idle escapades h 
1696    0    0    6    47    NULL    0.04    0.00    N    O    03/22/1998    02/18/1998    03/22/1998    NONE    SHIP
blithely sly escapade 
1696    79    3    7    39    NULL    0.03    0.02    N    O    01/18/1998    01/30/1998    01/18/1998    TAKE BACK
RETURN   REG AIR    waters may 
1697    77    3    1    30    NULL    0.06    0.00    N    O    07/11/1996    07/04/1996    07/11/1996    DELIVER IN
PERSON   MAIL    permanently quick warhorses wake notorni 
1697    51    0    2    9    NULL    0.07    0.07    N    O    08/07/1996    06/24/1996    08/07/1996    COLLECT COD
FOB   permanent pinto beans 
1697    46    1    3    31    NULL    0.05    0.02    N    O    09/15/1996    07/31/1996    09/15/1996    DELIVER IN
PERSON   RAIL    orbits despite the slow,silent s 
1697    40    2    4    5    NULL    0.05    0.03    N    O    08/22/1996    07/01/1996    08/22/1996    NONE    RAIL
slow foxes besides the dependencies w 
1697    4    1    5    23    NULL    0.03    0.05    N    O    08/17/1996    08/02/1996    08/17/1996    DELIVER IN
PERSON   TRUCK    ruthless multipl 
1698    4    1    1    44    NULL    0.03    0.02    N    O    04/12/1998    03/29/1998    04/12/1998    COLLECT COD
FOB   sly,blithe waters near the bravely ev 
1698    11    2    2    50    NULL    0.03    0.00    N    O    04/09/1998    03/29/1998    04/09/1998    COLLECT COD
MAIL    daringly r 
1698    9    2    3    46    NULL    0.05    0.06    N    O    03/02/1998    02/25/1998    03/02/1998    DELIVER IN
PERSON   MAIL    always thin hock 
1698    0    0    4    5    NULL    0.02    0.04    N    O    02/10/1998    02/19/1998    02/10/1998    NONE    FOB
finalideas could detect 
1698    31    2    5    43    NULL    0.06    0.07    N    O    04/28/1998    03/05/1998    04/28/1998    NONE    AIR
silent braids will ha 
1698    65    3    6    4    NULL    0.06    0.06    N    O    03/17/1998    02/04/1998    03/17/1998    NONE    REG
AIR   daring,dogged forges try to snooze thinl 
1698    35    1    7    43    NULL    0.08    0.06    N    O    03/20/1998    02/17/1998    03/20/1998    TAKE BACK
RETURN   RAIL    dinos may hinder doggedly a 
1699    48    1    1    12    NULL    0.09    0.02    N    O    05/27/1996    06/05/1996    05/27/1996    DELIVER IN
PERSON   SHIP    busy,final forges without the notornis are  
1699    19    2    2    7    NULL    0.08    0.06    N    O    07/16/1996    07/03/1996    07/16/1996    DELIVER IN
PERSON   SHIP    permanent pearls p 
1699    65    1    3    35    NULL    0.06    0.06    N    O    05/01/1996    06/06/1996    05/01/1996    COLLECT COD
MAIL    asymptotes un 
1700    27    3    1    36    NULL    0.10    0.07    R    F    02/12/1994    01/04/1994    02/12/1994    COLLECT COD
RAIL    doggedly idle forges at the pains a 
1700    65    2    2    23    NULL    0.07    0.03    A    F    02/03/1994    12/18/1993    02/03/1994    TAKE BACK
RETURN   SHIP    fluffy dinos beside the idle, 
1700    33    3    3    43    NULL    0.03    0.08    R    F    12/08/1993    12/28/1993    12/08/1993    NONE    TRUCK
  pains by the thi 
1700    22    3    4    14    NULL    0.03    0.03    A    F    01/16/1994    12/20/1993    01/16/1994    COLLECT COD
SHIP    bold,ruthl 
1700    56    0    5    31    NULL    0.02    0.04    R    F    12/19/1993    12/28/1993    12/19/1993    DELIVER IN
PERSON   RAIL    theodolites toward the b 
1700    0    0    6    24    NULL    0.01    0.04    R    F    02/25/1994    12/18/1993    02/25/1994    COLLECT COD
SHIP   silent attainmen 
1700    63    0    7    25    NULL    0.08    0.07    R    F    11/21/1993    12/23/1993    11/21/1993    NONE    MAIL
 grouches could affix boldly throughou 
1701    43    0    1    38    NULL    0.06    0.02    N    O    04/25/1998    04/28/1998    04/25/1998    NONE    FOB
realms instead of the thin,sly t 
1702    51    1    1    30    NULL    0.01    0.02    N    O    06/29/1998    06/25/1998    06/29/1998    TAKE BACK
RETURN   FOB    daring hoc 
1702    2    3    2    21    NULL    0.01    0.03    N    O    04/12/1998    05/20/1998    04/12/1998    DELIVER IN
PERSON   AIR    daring foxes about the f 
1702    0    0    3    23    NULL    0.09    0.06    N    O    04/25/1998    06/11/1998    04/25/1998    TAKE BACK
RETURN   MAIL    hockey players u 
1702    72    1    4    6    NULL    0.01    0.03    N    O    05/15/1998    06/12/1998    05/15/1998    COLLECT COD
REGAIR    bold,careful platelets shall snooze t 
1702    49    0    5    41    NULL    0.00    0.05    N    O    04/21/1998    05/08/1998    04/21/1998    COLLECT COD
AIR    busy attainments on the quick 
1702    26    2    6    41    NULL    0.02    0.05    N    O    06/01/1998    05/20/1998    06/01/1998    DELIVER IN
PERSON   RAIL    Tiresias' under the b 
1703    48    1    1    40    NULL    0.08    0.06    A    F    04/25/1995    06/10/1995    04/25/1995    NONE    SHIP
 sly depths maintai 
1703    47    1    2    38    NULL    0.05    0.07    N    O    07/20/1995    06/02/1995    07/20/1995    TAKE BACK
RETURN   TRUCK    busy,careful Tiresias' will eat silently 
1703    74    3    3    28    NULL    0.07    0.08    N    O    07/13/1995    07/05/1995    07/13/1995    NONE    SHIP
 close,slow hockey players unwind th 
1703    60    0    4    36    NULL    0.03    0.07    N    O    07/19/1995    05/19/1995    07/19/1995    TAKE BACK
RETURN   TRUCK    excuses behin 
1728    33    3    1    37    NULL    0.00    0.03    R    F    08/05/1992    09/09/1992    08/05/1992    DELIVER IN
PERSON   MAIL    regular,blith 
1729    0    0    1    36    NULL    0.08    0.02    R    F    03/24/1992    05/14/1992    03/24/1992    NONE    AIR
doggedideas do  
1729    0    0    2    33    NULL    0.04    0.05    A    F    03/15/1992    05/15/1992    03/15/1992    NONE    MAIL
careful warthogs may sublate ? g 
1729    12    0    3    14    NULL    0.10    0.04    A    F    04/09/1992    04/17/1992    04/09/1992    DELIVER IN
PERSON   AIR    blithely silent dependencies ben 
1730    17    1    1    14    NULL    0.05    0.08    N    O    03/31/1997    03/15/1997    03/31/1997    COLLECT COD
AIR    slyly thin depths serve slowly regularly 
1731    20    1    1    5    NULL    0.01    0.05    R    F    09/15/1994    09/23/1994    09/15/1994    NONE    TRUCK
 slowly enticing dependencies  
1731    52    1    2    19    NULL    0.03    0.06    R    F    10/08/1994    10/22/1994    10/08/1994    TAKE BACK
RETURN   SHIP    regular epitaphs unde 
1731    16    1    3    5    NULL    0.06    0.03    A    F    09/27/1994    09/27/1994    09/27/1994    COLLECT COD
REGAIR    bold,quick excuses hang  
1731    64    2    4    11    NULL    0.05    0.08    A    F    12/09/1994    10/01/1994    12/09/1994    COLLECT COD
MAIL    bold,careful sauternes ougth to hinde 
1732    31    2    1    21    NULL    0.02    0.03    A    F    09/15/1992    08/24/1992    09/15/1992    DELIVER IN
PERSON   SHIP    permanently sly pearls to the  g 
1732    60    0    2    3    NULL    0.02    0.04    R    F    09/21/1992    08/23/1992    09/21/1992    DELIVER IN
PERSON   TRUCK    thin attainments 
1732    16    3    3    1    NULL    0.03    0.05    R    F    10/04/1992    08/23/1992    10/04/1992    DELIVER IN
PERSON   AIR    closely close instructions  
1732    51    1    4    22    NULL    0.05    0.04    A    F    10/10/1992    09/21/1992    10/10/1992    DELIVER IN
PERSON   SHIP    instructions would 
1733    13    2    1    9    NULL    0.02    0.04    N    O    08/23/1996    07/12/1996    08/23/1996    DELIVER IN
PERSON   FOB    theodolites might gro 
1733    34    2    2    11    NULL    0.09    0.05    N    O    08/06/1996    07/29/1996    08/06/1996    TAKE BACK
RETURN   SHIP    permanent notornis permanent notorni  
1733    0    0    3    19    NULL    0.01    0.06    N    O    07/19/1996    07/23/1996    07/19/1996    COLLECT COD
TRUCK   dogged,final multipli 
1734    77    1    1    11    NULL    0.08    0.07    A    F    07/18/1994    07/05/1994    07/18/1994    COLLECT COD
MAIL    dogged dugouts might affix grouches 
1734    22    2    2    11    NULL    0.09    0.03    A    F    08/02/1994    08/02/1994    08/02/1994    TAKE BACK
RETURN   RAIL    brave,thin waters cajole daringly : silent, 
1734    31    2    3    4    NULL    0.01    0.05    A    F    07/30/1994    06/16/1994    07/30/1994    NONE    TRUCK
 patterns will believe furiu 
1734    67    0    4    16    NULL    0.02    0.06    R    F    08/26/1994    07/10/1994    08/26/1994    NONE    TRUCK
  quiet,silent  
1735    9    2    1    39    NULL    0.07    0.08    R    F    12/12/1993    02/25/1994    12/12/1993    COLLECT COD
REGAIR    pinto beans mold among the stealthy 
1735    37    3    2    7    NULL    0.05    0.06    A    F    02/17/1994    01/28/1994    02/17/1994    NONE    MAIL
even braids will prom 
1735    66    0    3    23    NULL    0.09    0.06    R    F    12/31/1993    01/20/1994    12/31/1993    TAKE BACK
RETURN   MAIL    enticing fret 
1760    0    0    1    21    NULL    0.06    0.07    A    F    11/19/1992    01/27/1993    11/19/1992    COLLECT COD
RAIL   thinly  excuses of the ironicall 
1760    0    0    2    28    NULL    0.07    0.02    A    F    11/20/1992    12/05/1992    11/20/1992    DELIVER IN
PERSON   SHIP    regular instructio 
1760    66    2    3    7    NULL    0.05    0.06    R    F    02/28/1993    12/03/1992    02/28/1993    DELIVER IN
PERSON   RAIL    quietly brave 
1760    27    0    4    20    NULL    0.00    0.04    A    F    11/16/1992    12/17/1992    11/16/1992    NONE    MAIL
 close dugouts boost always within t 
1760    72    0    5    4    NULL    0.00    0.00    R    F    01/18/1993    12/23/1992    01/18/1993    COLLECT COD
AIR   finally blith 
1760    53    2    6    10    NULL    0.06    0.00    R    F    02/27/1993    01/29/1993    02/27/1993    NONE    FOB
slow platelets ougth to solve behind the 
1760    44    3    7    28    NULL    0.05    0.05    R    F    12/25/1992    12/23/1992    12/25/1992    COLLECT COD
AIR    even,sly excu 
1761    10    0    1    30    NULL    0.07    0.01    N    O    01/25/1998    01/13/1998    01/25/1998    DELIVER IN
PERSON   RAIL    final,ruth 
1761    0    0    2    30    NULL    0.06    0.02    N    O    12/07/1997    01/06/1998    12/07/1997    DELIVER IN
PERSON   REG AIR    asymptotes until the blithely ironic  
1761    3    1    3    31    NULL    0.04    0.00    N    O    02/02/1998    12/16/1997    02/02/1998    DELIVER IN
PERSON   AIR    slow,slow realms solve slyly between the fl 
1761    10    3    4    3    NULL    0.10    0.04    N    O    12/27/1997    01/18/1998    12/27/1997    NONE    TRUCK
 quiet platelets doze hockey players 
1762    1    2    1    34    NULL    0.06    0.07    A    F    07/06/1992    08/07/1992    07/06/1992    TAKE BACK
RETURN   MAIL    platelets after the enticing braids o 
1762    24    3    2    32    NULL    0.02    0.08    A    F    08/18/1992    07/20/1992    08/18/1992    NONE    FOB
blithely furious esca 
1762    64    0    3    15    NULL    0.09    0.02    A    F    06/27/1992    07/31/1992    06/27/1992    COLLECT COD
AIR    notornis thrash realms realm  
1762    0    0    4    28    NULL    0.09    0.06    A    F    05/25/1992    07/05/1992    05/25/1992    TAKE BACK
RETURN   TRUCK    idly blithe depths 
1762    2    1    5    50    NULL    0.08    0.07    R    F    06/25/1992    07/16/1992    06/25/1992    COLLECT COD
FOB   doggedly idle epitaphs across 
1762    31    1    6    35    NULL    0.00    0.07    A    F    06/16/1992    06/12/1992    06/16/1992    DELIVER IN
PERSON   RAIL    carefully per 
1762    47    1    7    15    NULL    0.06    0.03    R    F    08/08/1992    08/03/1992    08/08/1992    NONE    REG
AIR   close hockey players det 
1763    0    0    1    5    NULL    0.06    0.03    R    F    01/22/1993    04/05/1993    01/22/1993    DELIVER IN
PERSON   FOB    doggedly slow depths boost  
1764    31    1    1    27    NULL    0.04    0.03    N    O    12/18/1996    02/22/1997    12/18/1996    DELIVER IN
PERSON   RAIL    dependenci 
1764    0    0    2    15    NULL    0.01    0.05    N    O    12/25/1996    01/07/1997    12/25/1996    DELIVER IN
PERSON   MAIL    tithes tithe  
1765    0    0    1    26    NULL    0.04    0.08    N    O    05/15/1997    06/25/1997    05/15/1997    TAKE BACK
RETURN   TRUCK    waters promise car 
1765    27    0    2    45    NULL    0.05    0.07    N    O    04/30/1997    06/25/1997    04/30/1997    TAKE BACK
RETURN   AIR    slow attainments can nod idly slyly i 
1765    75    2    3    24    NULL    0.05    0.01    N    O    07/10/1997    06/29/1997    07/10/1997    COLLECT COD
TRUCK    courts above the hockey playe 
1765    36    1    4    41    NULL    0.02    0.05    N    O    05/25/1997    05/27/1997    05/25/1997    NONE    FOB
final,dogged frets be 
1766    21    2    1    6    NULL    0.02    0.04    N    O    12/01/1997    11/25/1997    12/01/1997    TAKE BACK
RETURN   RAIL    careful sheaves hang  
1767    36    1    1    46    NULL    0.04    0.03    N    O    10/12/1998    09/26/1998    10/12/1998    DELIVER IN
PERSON   AIR    careful warhorses near the quiet 
1767    32    2    2    46    NULL    0.04    0.06    N    O    07/25/1998    09/17/1998    07/25/1998    COLLECT COD
FOB    realms can poach sometimes  
1767    34    2    3    41    NULL    0.01    0.04    N    O    09/16/1998    08/24/1998    09/16/1998    TAKE BACK
RETURN   RAIL    always quick pains might br 
1767    17    2    4    47    NULL    0.03    0.05    N    O    10/06/1998    10/09/1998    10/06/1998    TAKE BACK
RETURN   REG AIR    regular ep 
1767    72    1    5    17    NULL    0.08    0.02    N    O    10/23/1998    09/25/1998    10/23/1998    COLLECT COD
FOB    daring,enticing es 
1767    59    1    6    30    NULL    0.04    0.02    N    O    07/24/1998    09/17/1998    07/24/1998    COLLECT COD
AIR    sauternes are some 
1792    62    3    1    5    NULL    0.02    0.03    N    O    08/13/1996    07/15/1996    08/13/1996    DELIVER IN
PERSON   MAIL    decoys can nag evenly 
1793    59    0    1    11    NULL    0.03    0.05    N    O    01/21/1998    04/07/1998    01/21/1998    DELIVER IN
PERSON   RAIL    ironic,daring forges will sublate ! 
1793    42    3    2    15    NULL    0.00    0.06    N    O    04/27/1998    04/07/1998    04/27/1998    NONE    TRUCK
  silent,careful attain 
1793    0    0    3    25    NULL    0.01    0.08    N    O    03/24/1998    04/09/1998    03/24/1998    TAKE BACK
RETURN   MAIL    dependencies cajole never ! dogged,idle  
1794    65    1    1    22    NULL    0.10    0.07    R    F    11/26/1993    12/11/1993    11/26/1993    COLLECT COD
FOB    enticing,thin dinos by the notornis 
1795    50    3    1    43    NULL    0.08    0.01    A    F    04/09/1993    03/13/1993    04/09/1993    DELIVER IN
PERSON   SHIP    dogged dinos since th 
1795    63    3    2    1    NULL    0.03    0.05    R    F    02/07/1993    03/28/1993    02/07/1993    NONE    TRUCK
 fluffy Tiresias' 
1796    40    3    1    34    NULL    0.07    0.05    R    F    06/21/1994    06/06/1994    06/21/1994    NONE    REG
AIR   slyly final e 
1796    70    3    2    38    NULL    0.01    0.01    R    F    05/18/1994    05/27/1994    05/18/1994    NONE    FOB
idly ironic foxes except 
1797    17    2    1    9    NULL    0.09    0.03    A    F    11/15/1994    12/08/1994    11/15/1994    TAKE BACK
RETURN   FOB    finally daring pinto beans by th 
1798    2    0    1    16    NULL    0.04    0.04    R    F    10/17/1993    08/26/1993    10/17/1993    COLLECT COD
SHIP   regularly qui 
1798    47    0    2    20    NULL    0.09    0.07    R    F    08/02/1993    08/28/1993    08/02/1993    COLLECT COD
REG AIR    carefully permanent warhorses sn 
1798    77    0    3    31    NULL    0.09    0.02    A    F    09/03/1993    10/17/1993    09/03/1993    COLLECT COD
MAIL    silently even platelets for the doggedly 
1798    6    1    4    24    NULL    0.10    0.03    A    F    08/28/1993    09/04/1993    08/28/1993    DELIVER IN
PERSON   AIR    brave,quiet theodolites from the ru 
1799    13    3    1    6    NULL    0.01    0.07    R    F    12/11/1992    01/13/1993    12/11/1992    COLLECT COD
TRUCK   doggedly careful dinos will have to 
1799    12    3    2    49    NULL    0.08    0.06    A    F    12/30/1992    01/04/1993    12/30/1992    COLLECT COD
REG AIR    enticingly stealth 
1799    3    2    3    26    NULL    0.09    0.05    A    F    02/03/1993    12/09/1992    02/03/1993    DELIVER IN
PERSON   REG AIR    quick ideas without the idle  
1799    0    0    4    31    NULL    0.00    0.07    R    F    02/07/1993    01/10/1993    02/07/1993    DELIVER IN
PERSON   AIR    blithely permanent excuses dazzle ? quie 
1824    43    2    1    46    NULL    0.02    0.04    R    F    11/25/1993    10/02/1993    11/25/1993    COLLECT COD
AIR    enticing,quick instructions shall h 
1824    20    0    2    21    NULL    0.08    0.05    R    F    09/03/1993    09/30/1993    09/03/1993    NONE    MAIL
 enticing warthogs into the bravely  f 
1825    41    2    1    5    NULL    0.03    0.03    N    O    09/04/1997    10/19/1997    09/04/1997    NONE    REG
AIR   dinos do snooze sl 
1825    0    0    2    43    NULL    0.01    0.01    N    O    09/30/1997    10/03/1997    09/30/1997    COLLECT COD
AIR   quiet,thin theodolites m 
1825    7    3    3    4    NULL    0.06    0.07    N    O    11/26/1997    10/01/1997    11/26/1997    COLLECT COD
RAIL    silent pains haggle ironically  
1825    0    0    4    39    NULL    0.10    0.00    N    O    08/04/1997    10/15/1997    08/04/1997    DELIVER IN
PERSON   FOB    busy,regular som 
1825    52    1    5    12    NULL    0.07    0.08    N    O    09/15/1997    10/14/1997    09/15/1997    DELIVER IN
PERSON   AIR    ironic, pearls for the grouches cou 
1825    0    0    6    41    NULL    0.03    0.04    N    O    08/24/1997    09/25/1997    08/24/1997    DELIVER IN
PERSON   AIR    Tiresias' over the ruthlessly brave notorni 
1826    0    0    1    26    NULL    0.00    0.02    R    F    03/19/1995    03/13/1995    03/19/1995    NONE    MAIL
 fluffy pi 
1827    0    0    1    21    NULL    0.01    0.06    N    O    05/21/1996    07/07/1996    05/21/1996    DELIVER IN
PERSON   TRUCK    daring,idle e 
1827    56    2    2    47    NULL    0.08    0.02    N    O    07/27/1996    07/13/1996    07/27/1996    TAKE BACK
RETURN   RAIL    daring pinto beans nag ; 
1828    0    0    1    2    NULL    0.01    0.01    R    F    04/28/1992    03/15/1992    04/28/1992    TAKE BACK
RETURN   AIR    careful,final hockey players along the b 
1829    59    1    1    29    NULL    0.03    0.06    N    O    05/28/1998    07/18/1998    05/28/1998    TAKE BACK
RETURN   FOB    attainments against the notornis 
1830    20    3    1    46    NULL    0.01    0.04    N    O    07/25/1996    07/07/1996    07/25/1996    TAKE BACK
RETURN   SHIP    braids during the closely furious sen 
1830    32    2    2    43    NULL    0.01    0.07    N    O    06/01/1996    07/14/1996    06/01/1996    NONE    RAIL
 ironic,ironic 
1830    4    3    3    8    NULL    0.06    0.08    N    O    07/26/1996    07/06/1996    07/26/1996    COLLECT COD
FOB   platelets past the stealthy atta 
1830    38    2    4    15    NULL    0.09    0.02    N    O    07/10/1996    06/22/1996    07/10/1996    COLLECT COD
RAIL    silent depths detect stealthi 
1830    46    2    5    15    NULL    0.07    0.01    N    O    07/27/1996    08/10/1996    07/27/1996    COLLECT COD
TRUCK    bold,fluffy tithes between the attain 
1830    4    2    6    10    NULL    0.07    0.02    N    O    05/27/1996    06/19/1996    05/27/1996    COLLECT COD
MAIL   careful,final frays need to integra 
1831    60    0    1    30    NULL    0.07    0.03    N    O    02/16/1998    12/16/1997    02/16/1998    DELIVER IN
PERSON   RAIL    ruthlessly furious sauternes wake to the ev 
1831    29    0    2    36    NULL    0.05    0.04    N    O    01/25/1998    01/01/1998    01/25/1998    DELIVER IN
PERSON   AIR    final somas m 
1831    41    3    3    3    NULL    0.10    0.05    N    O    02/19/1998    12/22/1997    02/19/1998    TAKE BACK
RETURN   RAIL    slowly car 
1856    13    0    1    19    NULL    0.03    0.00    R    F    08/09/1994    10/01/1994    08/09/1994    COLLECT COD
MAIL    pains wake despite the r 
1856    28    3    2    12    NULL    0.10    0.03    A    F    10/23/1994    09/24/1994    10/23/1994    DELIVER IN
PERSON   AIR    furious platelets try to poach quiet,idle g 
1856    12    3    3    10    NULL    0.06    0.07    R    F    08/28/1994    08/24/1994    08/28/1994    DELIVER IN
PERSON   RAIL    regular,fluff 
1856    0    0    4    22    NULL    0.06    0.00    R    F    10/28/1994    08/31/1994    10/28/1994    DELIVER IN
PERSON   REG AIR    dogged grouches dogged grouche detect id 
1857    69    3    1    36    NULL    0.09    0.06    N    O    06/19/1997    05/07/1997    06/19/1997    COLLECT COD
AIR    regular,br 
1857    6    1    2    16    NULL    0.10    0.03    N    O    04/07/1997    04/24/1997    04/07/1997    DELIVER IN
PERSON   RAIL    sly warhorses wake slow,iro 
1857    50    0    3    47    NULL    0.07    0.07    N    O    06/01/1997    05/27/1997    06/01/1997    TAKE BACK
RETURN   REG AIR    ruthless,sly foxes 
1857    42    2    4    50    NULL    0.08    0.03    N    O    04/28/1997    05/28/1997    04/28/1997    COLLECT COD
TRUCK    thin pinto beans along the  s 
1857    25    3    5    40    NULL    0.01    0.01    N    O    06/17/1997    05/30/1997    06/17/1997    TAKE BACK
RETURN   RAIL    carefully dogged multipliers dazzle dazzl 
1858    0    0    1    13    NULL    0.07    0.06    R    F    03/12/1993    04/22/1993    03/12/1993    COLLECT COD
TRUCK   ruthless,slow cour 
1858    31    3    2    40    NULL    0.01    0.04    R    F    03/12/1993    03/27/1993    03/12/1993    NONE    MAIL
 close notornis upon the pains 
1858    0    0    3    4    NULL    0.09    0.02    A    F    04/08/1993    04/23/1993    04/08/1993    COLLECT COD
TRUCK   close, foxes need to dazzle sile 
1858    42    0    4    12    NULL    0.10    0.05    R    F    05/30/1993    03/26/1993    05/30/1993    DELIVER IN
PERSON   SHIP    daring,enticing depths will hang han ! r 
1858    0    0    5    50    NULL    0.01    0.00    A    F    04/20/1993    04/10/1993    04/20/1993    TAKE BACK
RETURN   AIR    slow,bold pains instead of the slowly 
1859    73    2    1    39    NULL    0.02    0.06    A    F    11/02/1992    11/09/1992    11/02/1992    TAKE BACK
RETURN   REG AIR    furious sentiments without the fluf 
1859    21    1    2    29    NULL    0.08    0.05    A    F    01/02/1993    10/17/1992    01/02/1993    TAKE BACK
RETURN   AIR    furiusly fluffy sauternes i 
1859    63    3    3    1    NULL    0.10    0.07    A    F    12/27/1992    11/23/1992    12/27/1992    NONE    MAIL
stealthy hock 
1859    0    0    4    15    NULL    0.07    0.05    R    F    01/07/1993    11/30/1992    01/07/1993    TAKE BACK
RETURN   RAIL    regular platelets sha 
1860    58    2    1    35    NULL    0.09    0.07    A    F    01/12/1993    12/09/1992    01/12/1993    COLLECT COD
TRUCK    idle,furious pains idle,furious pain thr 
1860    16    2    2    21    NULL    0.04    0.04    A    F    10/09/1992    11/27/1992    10/09/1992    NONE    REG
AIR   fluffy,careful t 
1861    0    0    1    7    NULL    0.05    0.05    A    F    10/27/1994    09/26/1994    10/27/1994    DELIVER IN
PERSON   MAIL    enticing,stealthy  
1861    0    0    2    16    NULL    0.01    0.01    A    F    09/02/1994    09/10/1994    09/02/1994    COLLECT COD
REGAIR    quick foxes near t 
1861    16    0    3    6    NULL    0.00    0.06    A    F    09/03/1994    09/22/1994    09/03/1994    COLLECT COD
TRUCK   frets with the fluffy,qu 
1861    13    2    4    29    NULL    0.03    0.07    R    F    09/08/1994    09/13/1994    09/08/1994    TAKE BACK
RETURN   TRUCK    sly,enticing waters cajole ruthlessly ?  
1861    0    0    5    13    NULL    0.07    0.07    R    F    08/09/1994    08/27/1994    08/09/1994    COLLECT COD
RAIL   idle,idle depths besides the daring sheaves 
1862    40    3    1    4    NULL    0.05    0.00    N    O    09/15/1997    08/31/1997    09/15/1997    NONE    FOB
dolphinsx_ray -- finally close grouches 
1862    25    1    2    20    NULL    0.09    0.06    N    O    10/03/1997    10/19/1997    10/03/1997    TAKE BACK
RETURN   FOB    always sly sentiments except the dogged, 
1862    50    0    3    12    NULL    0.09    0.05    N    O    09/28/1997    09/16/1997    09/28/1997    COLLECT COD
MAIL    furious,silent warhorses ha 
1862    35    3    4    49    NULL    0.07    0.00    N    O    09/02/1997    10/07/1997    09/02/1997    DELIVER IN
PERSON   SHIP    evenly even waters hinder qui 
1862    42    2    5    36    NULL    0.01    0.01    N    O    09/25/1997    09/04/1997    09/25/1997    COLLECT COD
MAIL    depths might play never past the even,fu 
1862    0    0    6    42    NULL    0.06    0.03    N    O    10/04/1997    09/22/1997    10/04/1997    NONE    FOB
ironicdependencies h 
1862    76    1    7    2    NULL    0.05    0.06    N    O    08/30/1997    10/06/1997    08/30/1997    COLLECT COD
FOB   careful excuses careful  
1863    40    0    1    37    NULL    0.10    0.05    A    F    04/22/1992    06/17/1992    04/22/1992    DELIVER IN
PERSON   TRUCK    ruthless notornis under the epitaph 
1863    47    1    2    42    NULL    0.03    0.00    R    F    07/19/1992    06/15/1992    07/19/1992    NONE    RAIL
 stealthy,quick sauternes over the fin 
1863    20    0    3    47    NULL    0.01    0.07    A    F    06/18/1992    06/07/1992    06/18/1992    DELIVER IN
PERSON   AIR    grouches nag ? 
1863    0    0    4    32    NULL    0.02    0.01    R    F    07/27/1992    06/11/1992    07/27/1992    NONE    RAIL
brave orbits  
1888    46    2    1    40    NULL    0.06    0.02    R    F    10/30/1994    10/21/1994    10/30/1994    COLLECT COD
TRUCK    quietly ruthless 
1888    0    0    2    30    NULL    0.10    0.02    R    F    11/21/1994    10/19/1994    11/21/1994    NONE    AIR
stealthy,i
1888    66    0    3    49    NULL    0.06    0.02    R    F    09/01/1994    10/25/1994    09/01/1994    NONE    REG
AIR   hockey players grow warthogs ; stea 
1888    0    0    4    15    NULL    0.00    0.01    A    F    10/02/1994    10/11/1994    10/02/1994    COLLECT COD
TRUCK   final,perm 
1889    0    0    1    12    NULL    0.03    0.05    R    F    07/27/1994    09/16/1994    07/27/1994    COLLECT COD
SHIP   multipliers poach !  ruthless epitaphs can  
1889    0    0    2    35    NULL    0.02    0.02    A    F    10/08/1994    10/05/1994    10/08/1994    TAKE BACK
RETURN   FOB    evenly idle frets alongs 
1889    11    0    3    24    NULL    0.07    0.07    A    F    09/15/1994    09/27/1994    09/15/1994    TAKE BACK
RETURN   RAIL    ruthless,quiet gifts will a 
1889    59    2    4    24    NULL    0.01    0.01    A    F    09/23/1994    08/09/1994    09/23/1994    TAKE BACK
RETURN   AIR    grouches after the ironical 
1889    0    0    5    22    NULL    0.07    0.02    R    F    10/04/1994    08/22/1994    10/04/1994    NONE    MAIL
brave foxes shall  
1890    0    0    1    11    NULL    0.00    0.04    N    O    11/27/1997    10/20/1997    11/27/1997    NONE    SHIP
daring,quick dugouts lose finally lose f 
1890    0    0    2    31    NULL    0.09    0.02    N    O    09/24/1997    10/27/1997    09/24/1997    COLLECT COD
REGAIR    regularly final pains must have to run g 
1890    60    1    3    28    NULL    0.03    0.05    N    O    08/12/1997    10/10/1997    08/12/1997    TAKE BACK
RETURN   REG AIR    sly orbits into the furious 
1890    0    0    4    11    NULL    0.06    0.03    N    O    08/24/1997    10/21/1997    08/24/1997    TAKE BACK
RETURN   TRUCK     close dinos from the hockey players  
1890    0    0    5    7    NULL    0.02    0.06    N    O    08/13/1997    09/25/1997    08/13/1997    COLLECT COD
TRUCK   forges after the courts after the cou 
1890    1    1    6    32    NULL    0.04    0.04    N    O    10/24/1997    10/18/1997    10/24/1997    DELIVER IN
PERSON   FOB    final,permanent gifts hang blithely care 
1891    69    3    1    25    NULL    0.07    0.07    N    O    08/13/1997    05/24/1997    08/13/1997    COLLECT COD
SHIP    furious,permanent braids 
1891    33    2    2    30    NULL    0.01    0.06    N    O    08/03/1997    05/18/1997    08/03/1997    COLLECT COD
MAIL     theodolites poach regul 
1892    38    2    1    30    NULL    0.09    0.02    N    O    04/01/1998    02/09/1998    04/01/1998    TAKE BACK
RETURN   AIR    never fluffy bra 
1892    58    1    2    7    NULL    0.05    0.07    N    O    03/11/1998    03/06/1998    03/11/1998    COLLECT COD
TRUCK   quickly fluffy orbits alongside of the f 
1892    58    1    3    23    NULL    0.00    0.02    N    O    02/05/1998    03/29/1998    02/05/1998    NONE    RAIL
 dinos according to the ,bol 
1892    36    3    4    47    NULL    0.08    0.04    N    O    02/13/1998    02/10/1998    02/13/1998    COLLECT COD
TRUCK    even dugouts besides the  the 
1893    23    0    1    47    NULL    0.03    0.07    A    F    08/03/1992    07/13/1992    08/03/1992    DELIVER IN
PERSON   FOB    frets doub 
1893    21    0    2    10    NULL    0.06    0.03    A    F    05/21/1992    06/30/1992    05/21/1992    COLLECT COD
TRUCK    finally stealthy 
1894    0    0    1    7    NULL    0.07    0.06    R    F    08/14/1993    09/08/1993    08/14/1993    TAKE BACK
RETURN   SHIP    attainments about the sly,b 
1894    41    1    2    35    NULL    0.01    0.00    A    F    08/08/1993    07/27/1993    08/08/1993    DELIVER IN
PERSON   FOB    notornis print p 
1894    27    2    3    35    NULL    0.10    0.08    R    F    09/22/1993    08/01/1993    09/22/1993    TAKE BACK
RETURN   MAIL    carefully fluffy pearls shoul 
1895    68    0    1    20    NULL    0.09    0.01    R    F    06/22/1992    05/07/1992    06/22/1992    COLLECT COD
TRUCK    excuses to the theodolites print 
1895    0    0    2    14    NULL    0.05    0.07    R    F    07/25/1992    05/14/1992    07/25/1992    COLLECT COD
REGAIR    brave somas engage always w 
1895    0    0    3    39    NULL    0.07    0.08    A    F    07/18/1992    06/26/1992    07/18/1992    COLLECT COD
AIR   ironically ruthless courts fr 
1920    65    1    1    32    NULL    0.08    0.04    N    O    10/27/1997    10/13/1997    10/27/1997    DELIVER IN
PERSON   MAIL    ironic warhorses instead of the excuses  
1920    58    3    2    10    NULL    0.07    0.00    N    O    11/28/1997    11/19/1997    11/28/1997    COLLECT COD
SHIP    warhorses grow by the thinly perman 
1920    0    0    3    10    NULL    0.07    0.02    N    O    12/15/1997    10/14/1997    12/15/1997    TAKE BACK
RETURN   TRUCK    instructions throughout the blithe  need 
1920    49    1    4    46    NULL    0.03    0.00    N    O    12/17/1997    12/02/1997    12/17/1997    COLLECT COD
AIR    final waters do doze bli 
1920    3    0    5    2    NULL    0.06    0.01    N    O    12/09/1997    12/10/1997    12/09/1997    COLLECT COD
FOB   busily silent saut 
1920    57    3    6    37    NULL    0.06    0.08    N    O    10/15/1997    11/20/1997    10/15/1997    COLLECT COD
SHIP    fluffy dinos upon the sly dependencie 
1921    2    2    1    16    NULL    0.04    0.03    R    F    02/18/1995    01/06/1995    02/18/1995    NONE    RAIL
furious,bold court 
1921    65    1    2    18    NULL    0.03    0.00    A    F    02/07/1995    02/25/1995    02/07/1995    TAKE BACK
RETURN   SHIP    final attainments eat ? asymptotes  
1921    56    3    3    48    NULL    0.06    0.03    A    F    01/23/1995    02/01/1995    01/23/1995    NONE    TRUCK
  final,quiet hockey 
1921    78    0    4    27    NULL    0.04    0.07    R    F    03/12/1995    02/27/1995    03/12/1995    NONE    REG
AIR   ironic,bold hockey players eat abov 
1921    25    0    5    1    NULL    0.03    0.04    A    F    12/30/1994    02/27/1995    12/30/1994    DELIVER IN
PERSON   MAIL    silent,fluffy warthogs play ironica 
1921    0    0    6    11    NULL    0.07    0.01    R    F    02/23/1995    02/07/1995    02/23/1995    TAKE BACK
RETURN   REG AIR    warthogs during the finally b 
1921    33    0    7    29    NULL    0.06    0.03    R    F    12/11/1994    01/27/1995    12/11/1994    TAKE BACK
RETURN   REG AIR    bold,daring saut 
1922    15    2    1    12    NULL    0.03    0.06    N    O    01/21/1998    02/18/1998    01/21/1998    NONE    TRUCK
  regular,slow Tiresias' from the sly 
1922    20    2    2    12    NULL    0.09    0.06    N    O    01/22/1998    03/03/1998    01/22/1998    TAKE BACK
RETURN   AIR    boldly stealthy notornis might print  
1922    0    0    3    18    NULL    0.07    0.02    N    O    02/25/1998    03/03/1998    02/25/1998    DELIVER IN
PERSON   FOB    brave,ironic sentimen 
1922    70    0    4    41    NULL    0.06    0.00    N    O    03/27/1998    02/20/1998    03/27/1998    TAKE BACK
RETURN   AIR    closely busy  
1922    18    1    5    27    NULL    0.09    0.02    N    O    03/28/1998    03/21/1998    03/28/1998    COLLECT COD
TRUCK    sly,quick courts unwind  
1923    0    0    1    44    NULL    0.06    0.02    N    O    01/28/1997    01/29/1997    01/28/1997    DELIVER IN
PERSON   SHIP    waters print pri 
1923    2    3    2    5    NULL    0.06    0.07    N    O    02/08/1997    02/22/1997    02/08/1997    DELIVER IN
PERSON   AIR    sometimes quick frets lose sometime 
1923    2    3    3    16    NULL    0.08    0.04    N    O    01/22/1997    02/14/1997    01/22/1997    DELIVER IN
PERSON   FOB    close,enti 
1924    9    3    1    24    NULL    0.01    0.00    N    O    03/13/1996    02/26/1996    03/13/1996    COLLECT COD
RAIL   dogged courts since the perma 
1924    0    0    2    25    NULL    0.02    0.08    N    O    03/13/1996    03/09/1996    03/13/1996    TAKE BACK
RETURN   FOB    slow patterns shall impr 
1924    4    3    3    34    NULL    0.00    0.05    N    O    02/20/1996    03/07/1996    02/20/1996    TAKE BACK
RETURN   TRUCK    daring warhorses d 
1924    74    1    4    1    NULL    0.05    0.06    N    O    02/25/1996    03/11/1996    02/25/1996    TAKE BACK
RETURN   TRUCK    sly,ironic gifts inside the orbits sn 
1925    0    0    1    25    NULL    0.03    0.01    N    O    02/06/1997    12/10/1996    02/06/1997    TAKE BACK
RETURN   REG AIR    permanent platel 
1925    48    2    2    34    NULL    0.03    0.06    N    O    11/14/1996    12/04/1996    11/14/1996    COLLECT COD
FOB    furious epita 
1925    31    3    3    26    NULL    0.01    0.07    N    O    01/10/1997    11/13/1996    01/10/1997    DELIVER IN
PERSON   REG AIR    always bold attainments mold  
1925    27    3    4    2    NULL    0.06    0.03    N    O    01/11/1997    12/02/1996    01/11/1997    COLLECT COD
AIR    pearls ougth to maintain b 
1925    71    1    5    35    NULL    0.03    0.07    N    O    01/13/1997    12/03/1996    01/13/1997    TAKE BACK
RETURN   SHIP    daring tithes 
1925    55    2    6    42    NULL    0.07    0.08    N    O    01/20/1997    11/27/1996    01/20/1997    TAKE BACK
RETURN   MAIL    courts hinder -- 
1926    21    1    1    28    NULL    0.08    0.01    N    O    10/21/1995    10/09/1995    10/21/1995    TAKE BACK
RETURN   RAIL    quiet platelets was . 
1926    68    1    2    1    NULL    0.04    0.04    N    O    09/14/1995    09/18/1995    09/14/1995    COLLECT COD
TRUCK   even warthogs lose blithe platelets b 
1927    0    0    1    18    NULL    0.07    0.03    N    O    04/20/1998    03/14/1998    04/20/1998    DELIVER IN
PERSON   RAIL    stealthy,furious sheaves ex 
1927    71    0    2    1    NULL    0.04    0.05    N    O    04/13/1998    02/26/1998    04/13/1998    TAKE BACK
RETURN   TRUCK    attainments maintain throug 
1927    20    2    3    45    NULL    0.01    0.08    N    O    03/27/1998    02/28/1998    03/27/1998    NONE    REG
AIR   sentiments accor 
1927    26    3    4    33    NULL    0.02    0.07    N    O    04/20/1998    02/13/1998    04/20/1998    NONE    FOB
permanent,daring sent 
1927    16    0    5    26    NULL    0.07    0.02    N    O    01/18/1998    02/17/1998    01/18/1998    COLLECT COD
RAIL    idly close dolph 
1927    9    1    6    23    NULL    0.01    0.02    N    O    04/11/1998    03/01/1998    04/11/1998    TAKE BACK
RETURN   FOB    busy excuses for the ste 
1952    25    0    1    40    NULL    0.01    0.01    N    O    09/04/1995    08/12/1995    09/04/1995    DELIVER IN
PERSON   TRUCK    final grouches a 
1953    67    3    1    3    NULL    0.04    0.07    R    F    11/18/1994    09/04/1994    11/18/1994    DELIVER IN
PERSON   SHIP    ruthless frets until the ,ironic orbits  
1953    8    2    2    12    NULL    0.03    0.07    A    F    09/04/1994    10/21/1994    09/04/1994    NONE    REG
AIR   daring grouch 
1953    7    2    3    10    NULL    0.05    0.02    A    F    11/10/1994    09/26/1994    11/10/1994    DELIVER IN
PERSON   FOB    enticingly bo 
1953    27    2    4    48    NULL    0.08    0.00    R    F    08/29/1994    09/15/1994    08/29/1994    DELIVER IN
PERSON   MAIL    grouches may dazzle silently since  
1953    0    0    5    50    NULL    0.02    0.00    A    F    10/18/1994    09/12/1994    10/18/1994    DELIVER IN
PERSON   SHIP    sentiments around the qu 
1954    26    3    1    27    NULL    0.03    0.08    N    O    09/15/1997    07/30/1997    09/15/1997    NONE    MAIL
 ideas run : dependencies x_ray ruth 
1954    45    3    2    36    NULL    0.00    0.07    N    O    09/13/1997    07/10/1997    09/13/1997    TAKE BACK
RETURN   RAIL    daring,silent sentiments along t 
1955    49    0    1    15    NULL    0.01    0.02    N    O    09/17/1995    12/03/1995    09/17/1995    TAKE BACK
RETURN   AIR    fluffy,ruthless sheaves impress imp 
1955    63    3    2    10    NULL    0.06    0.02    N    O    12/06/1995    10/26/1995    12/06/1995    DELIVER IN
PERSON   AIR    fluffily perm 
1955    4    2    3    15    NULL    0.01    0.01    N    O    09/25/1995    10/24/1995    09/25/1995    DELIVER IN
PERSON   FOB    idle,permanent hockey players should have t 
1955    10    3    4    42    NULL    0.08    0.04    N    O    11/21/1995    10/25/1995    11/21/1995    TAKE BACK
RETURN   MAIL    ironic forges nag slowly 
1955    0    0    5    10    NULL    0.06    0.01    N    O    12/07/1995    11/26/1995    12/07/1995    DELIVER IN
PERSON   FOB    sly,fluffy dependenci 
1956    0    0    1    19    NULL    0.08    0.06    N    O    11/01/1997    11/18/1997    11/01/1997    TAKE BACK
RETURN   RAIL    dogged, decoys from the warhorses c 
1956    63    2    2    19    NULL    0.01    0.00    N    O    12/30/1997    10/27/1997    12/30/1997    COLLECT COD
FOB    finally dogged notornis of the asym 
1956    0    0    3    40    NULL    0.06    0.05    N    O    12/22/1997    11/30/1997    12/22/1997    TAKE BACK
RETURN   RAIL     careful braids can kindle  
1957    39    2    1    35    NULL    0.08    0.01    R    F    05/22/1994    03/14/1994    05/22/1994    TAKE BACK
RETURN   SHIP    stealthy,bold epitaphs thro 
1957    37    0    2    16    NULL    0.00    0.02    R    F    05/21/1994    04/18/1994    05/21/1994    DELIVER IN
PERSON   FOB    thin,furious hoc 
1957    66    1    3    6    NULL    0.06    0.01    R    F    03/12/1994    03/27/1994    03/12/1994    NONE    MAIL
furiusly dogged escapades against t 
1957    0    0    4    37    NULL    0.07    0.02    R    F    05/15/1994    05/04/1994    05/15/1994    DELIVER IN
PERSON   FOB    thin courts coul 
1958    12    1    1    46    NULL    0.02    0.05    R    F    05/05/1994    03/27/1994    05/05/1994    NONE    TRUCK
  dugouts before the id 
1959    0    0    1    1    NULL    0.06    0.03    N    O    04/18/1996    04/24/1996    04/18/1996    DELIVER IN
PERSON   REG AIR    slyly quiet d 
1959    0    0    2    24    NULL    0.06    0.08    N    O    05/22/1996    04/27/1996    05/22/1996    NONE    TRUCK
 hockey players run ruthlessly 
1959    57    3    3    12    NULL    0.06    0.06    N    O    05/22/1996    04/15/1996    05/22/1996    DELIVER IN
PERSON   TRUCK    idle,regular Tiresias' eat furious ep 
1984    63    2    1    19    NULL    0.06    0.02    N    O    12/16/1995    10/30/1995    12/16/1995    TAKE BACK
RETURN   MAIL    boldly silent gifts on the  
1984    69    2    2    37    NULL    0.04    0.08    N    O    11/02/1995    12/01/1995    11/02/1995    NONE    AIR
dinos into the regular,slow grouches detect 
1984    69    1    3    42    NULL    0.07    0.07    N    O    10/25/1995    10/29/1995    10/25/1995    DELIVER IN
PERSON   REG AIR    realms integrate brave sentiments ! 
1984    19    1    4    32    NULL    0.00    0.07    N    O    10/08/1995    11/17/1995    10/08/1995    COLLECT COD
AIR    closely final dept 
1985    4    3    1    35    NULL    0.03    0.05    N    O    09/30/1998    08/14/1998    09/30/1998    TAKE BACK
RETURN   TRUCK    permanent,dogged sentiments poach quietl 
1986    65    0    1    25    NULL    0.06    0.07    R    F    10/31/1992    09/02/1992    10/31/1992    TAKE BACK
RETURN   AIR    permanent,bold realms for the sauternes  
1986    0    0    2    20    NULL    0.08    0.06    R    F    07/31/1992    08/24/1992    07/31/1992    COLLECT COD
FOB   busy sheaves must print slo 
1986    18    2    3    4    NULL    0.09    0.07    A    F    09/02/1992    09/30/1992    09/02/1992    TAKE BACK
RETURN   RAIL    bold,ruthless courts sin 
1987    43    2    1    37    NULL    0.05    0.07    A    F    07/09/1993    05/17/1993    07/09/1993    DELIVER IN
PERSON   SHIP    ruthless,permane 
1988    61    2    1    28    NULL    0.02    0.04    R    F    10/15/1993    11/27/1993    10/15/1993    TAKE BACK
RETURN   AIR    bold grouches must have to haggle a 
1988    8    3    2    45    NULL    0.03    0.05    R    F    12/28/1993    11/26/1993    12/28/1993    TAKE BACK
RETURN   AIR    ruthless s 
1988    19    2    3    23    NULL    0.04    0.05    A    F    11/07/1993    11/22/1993    11/07/1993    TAKE BACK
RETURN   AIR    boldly thin excuses inside the ruthle 
1988    74    1    4    22    NULL    0.04    0.05    R    F    09/27/1993    10/14/1993    09/27/1993    NONE    MAIL
 fluffily d 
1988    0    0    5    33    NULL    0.08    0.03    R    F    11/05/1993    10/06/1993    11/05/1993    NONE    TRUCK
 final epitaphs cajole daringly beyond th 
1988    0    0    6    26    NULL    0.03    0.06    A    F    09/05/1993    11/13/1993    09/05/1993    TAKE BACK
RETURN   SHIP    always blithe grouches eat across t 
1988    63    3    7    49    NULL    0.05    0.02    A    F    11/01/1993    10/27/1993    11/01/1993    NONE    MAIL
 thin decoys could have to n 
1989    36    1    1    33    NULL    0.03    0.01    A    F    04/04/1995    05/06/1995    04/04/1995    DELIVER IN
PERSON   MAIL    brave,stealthy notorn 
1990    0    0    1    48    NULL    0.07    0.06    R    F    04/06/1992    04/15/1992    04/06/1992    COLLECT COD
AIR   thin,sly frays thin,s 
1990    0    0    2    29    NULL    0.00    0.05    A    F    05/24/1992    04/28/1992    05/24/1992    COLLECT COD
RAIL   patterns detect : furiusly  
1990    54    0    3    15    NULL    0.08    0.05    A    F    03/15/1992    05/20/1992    03/15/1992    NONE    FOB
dugouts across the doggedly  tithes n 
1990    60    0    4    22    NULL    0.07    0.04    A    F    03/08/1992    05/11/1992    03/08/1992    COLLECT COD
REG AIR    bold  through the stealthy,silent braids 
1990    9    1    5    28    NULL    0.08    0.06    A    F    03/17/1992    05/29/1992    03/17/1992    COLLECT COD
REGAIR    waters haggle  thin,final gifts ! c 
1990    67    0    6    10    NULL    0.05    0.07    R    F    06/15/1992    05/09/1992    06/15/1992    TAKE BACK
RETURN   RAIL    bold,furious war 
1990    0    0    7    29    NULL    0.10    0.01    A    F    03/19/1992    05/13/1992    03/19/1992    TAKE BACK
RETURN   MAIL    carefully ironic g 
1991    0    0    1    38    NULL    0.01    0.06    N    O    08/08/1996    08/15/1996    08/08/1996    COLLECT COD
SHIP   final,bold epitaphs outside the courts s 
1991    18    0    2    45    NULL    0.04    0.01    N    O    10/06/1996    08/31/1996    10/06/1996    DELIVER IN
PERSON   FOB    frays during the b 
1991    0    0    3    2    NULL    0.08    0.06    N    O    10/16/1996    08/14/1996    10/16/1996    COLLECT COD
TRUCK   dogged pearls along the slow, 
1991    29    0    4    44    NULL    0.08    0.03    N    O    10/16/1996    08/18/1996    10/16/1996    NONE    MAIL
 daringly sly courts through the  
2016    4    0    1    12    NULL    0.09    0.00    R    F    06/17/1994    08/01/1994    06/17/1994    NONE    AIR
slowsomas 
2017    12    0    1    18    NULL    0.09    0.04    N    O    06/28/1997    06/06/1997    06/28/1997    DELIVER IN
PERSON   SHIP    bold,regular warthogs ougth to a 
2017    7    3    2    6    NULL    0.03    0.04    N    O    05/13/1997    05/27/1997    05/13/1997    TAKE BACK
RETURN   RAIL    attainments run -- enticing,dogg 
2017    72    2    3    37    NULL    0.08    0.02    N    O    07/27/1997    06/12/1997    07/27/1997    DELIVER IN
PERSON   TRUCK    careful realms must have 
2017    48    2    4    28    NULL    0.01    0.05    N    O    06/09/1997    05/11/1997    06/09/1997    TAKE BACK
RETURN   AIR    fluffy,furious waters ca 
2017    13    0    5    27    NULL    0.10    0.02    N    O    07/03/1997    05/13/1997    07/03/1997    NONE    RAIL
 braids could solve sauternes  
2018    47    3    1    5    NULL    0.09    0.05    N    O    05/02/1998    05/07/1998    05/02/1998    COLLECT COD
FOB   thin saute 
2018    36    1    2    35    NULL    0.03    0.00    N    O    05/04/1998    05/05/1998    05/04/1998    DELIVER IN
PERSON   RAIL     brave pearls of the hockey players could s 
2018    0    0    3    4    NULL    0.01    0.02    N    O    06/17/1998    04/18/1998    06/17/1998    DELIVER IN
PERSON   FOB    sheaves within the bl 
2018    8    1    4    36    NULL    0.10    0.01    N    O    05/10/1998    04/24/1998    05/10/1998    COLLECT COD
TRUCK   regular warthogs across the hock 
2018    62    3    5    1    NULL    0.05    0.06    N    O    06/26/1998    05/12/1998    06/26/1998    NONE    FOB
sentimentscould have to play blith 
2018    7    0    6    5    NULL    0.08    0.01    N    O    04/02/1998    04/29/1998    04/02/1998    DELIVER IN
PERSON   TRUCK    excuses ougth to w 
2019    72    0    1    7    NULL    0.04    0.01    R    F    05/20/1993    04/17/1993    05/20/1993    NONE    AIR
stealthilyfluffy  
2019    55    2    2    20    NULL    0.01    0.06    A    F    06/12/1993    05/29/1993    06/12/1993    DELIVER IN
PERSON   RAIL    closely ironic waters will detect stealt 
2019    65    1    3    8    NULL    0.01    0.03    R    F    05/05/1993    05/01/1993    05/05/1993    DELIVER IN
PERSON   TRUCK    fluffy pearls 
2019    40    1    4    10    NULL    0.06    0.00    R    F    03/25/1993    04/11/1993    03/25/1993    TAKE BACK
RETURN   MAIL    forges sleep asymptotes ? 
2019    26    2    5    48    NULL    0.07    0.07    R    F    04/23/1993    05/26/1993    04/23/1993    COLLECT COD
TRUCK    regular,regular pearl 
2020    61    0    1    10    NULL    0.05    0.04    R    F    09/28/1993    10/05/1993    09/28/1993    DELIVER IN
PERSON   RAIL    bold braids into the enticingly sly 
2020    67    3    2    12    NULL    0.02    0.06    R    F    09/28/1993    08/23/1993    09/28/1993    TAKE BACK
RETURN   AIR    stealthy,regular d 
2020    71    0    3    33    NULL    0.02    0.08    A    F    08/05/1993    08/25/1993    08/05/1993    DELIVER IN
PERSON   SHIP    platelets  
2020    5    1    4    8    NULL    0.08    0.03    R    F    09/24/1993    08/29/1993    09/24/1993    NONE    MAIL
notornisbesi 
2021    30    2    1    12    NULL    0.08    0.03    R    F    12/30/1994    01/02/1995    12/30/1994    COLLECT COD
REG AIR    busily careful pat 
2021    8    1    2    36    NULL    0.01    0.04    A    F    01/12/1995    12/04/1994    01/12/1995    TAKE BACK
RETURN   RAIL    quietly furious warthogs kindle permanen 
2021    5    2    3    49    NULL    0.06    0.05    A    F    12/24/1994    11/12/1994    12/24/1994    NONE    RAIL
blithe,bold attainments through the s 
2021    0    0    4    19    NULL    0.01    0.01    A    F    01/05/1995    12/08/1994    01/05/1995    TAKE BACK
RETURN   RAIL    quietly fluffy forges quietly 
2021    8    3    5    40    NULL    0.04    0.08    A    F    01/02/1995    12/27/1994    01/02/1995    NONE    FOB
 epitaphs integrate ? 
2022    39    3    1    17    NULL    0.00    0.05    N    O    12/10/1995    01/15/1996    12/10/1995    TAKE BACK
RETURN   TRUCK    blithe,quiet pearls i 
2022    49    0    2    28    NULL    0.06    0.03    N    O    11/28/1995    02/03/1996    11/28/1995    NONE    RAIL
 fluffily brav 
2022    0    0    3    45    NULL    0.01    0.03    N    O    12/22/1995    02/01/1996    12/22/1995    DELIVER IN
PERSON   FOB    permanent,final  
2023    13    2    1    16    NULL    0.05    0.06    N    O    06/07/1996    04/19/1996    06/07/1996    NONE    AIR
theodolites theodo 
2023    0    0    2    3    NULL    0.10    0.01    N    O    05/03/1996    03/15/1996    05/03/1996    DELIVER IN
PERSON   TRUCK    courts run at 
2023    27    3    3    42    NULL    0.04    0.05    N    O    06/02/1996    04/23/1996    06/02/1996    DELIVER IN
PERSON   MAIL    ironic braids mi 
2023    56    0    4    14    NULL    0.02    0.05    N    O    03/04/1996    03/27/1996    03/04/1996    COLLECT COD
REG AIR     final fina shall have t 
2023    0    0    5    45    NULL    0.01    0.07    N    O    03/27/1996    04/20/1996    03/27/1996    NONE    MAIL
finally dogge 
2023    0    0    6    13    NULL    0.09    0.05    N    O    03/10/1996    05/09/1996    03/10/1996    TAKE BACK
RETURN   RAIL     asymptotes with the epitaphs unwind atop t 
2023    0    0    7    10    NULL    0.01    0.07    N    O    03/13/1996    04/02/1996    03/13/1996    NONE    AIR
ruthlesssomas u 
2048    11    3    1    6    NULL    0.07    0.04    R    F    09/01/1992    06/20/1992    09/01/1992    NONE    AIR
warthogsshould kindle alwa 
2048    4    3    2    13    NULL    0.02    0.01    R    F    08/30/1992    07/27/1992    08/30/1992    DELIVER IN
PERSON   RAIL    sentiments without th 
2048    17    3    3    30    NULL    0.09    0.05    A    F    06/05/1992    07/20/1992    06/05/1992    COLLECT COD
SHIP    frays can use ? 
2048    12    3    4    28    NULL    0.09    0.06    R    F    06/29/1992    07/31/1992    06/29/1992    COLLECT COD
MAIL    waters do breach b 
2048    57    0    5    28    NULL    0.03    0.06    A    F    08/21/1992    07/05/1992    08/21/1992    DELIVER IN
PERSON   FOB    idle,busy warhorses across  
2048    68    1    6    22    NULL    0.07    0.04    A    F    06/11/1992    07/14/1992    06/11/1992    DELIVER IN
PERSON   RAIL    quietly final dolphin 
2049    43    2    1    23    NULL    0.01    0.02    N    O    07/19/1996    08/05/1996    07/19/1996    NONE    SHIP
 blithely brave grouches against  
2049    0    0    2    6    NULL    0.02    0.05    N    O    08/05/1996    07/31/1996    08/05/1996    COLLECT COD
AIR   warthogs to the close,final fina must gr 
2049    22    2    3    8    NULL    0.01    0.07    N    O    06/11/1996    07/25/1996    06/11/1996    TAKE BACK
RETURN   FOB    stealthy,quick dugouts before the epitap 
2049    42    2    4    17    NULL    0.03    0.02    N    O    08/07/1996    08/18/1996    08/07/1996    TAKE BACK
RETURN   REG AIR    silent, patterns would print regularly b 
2050    18    3    1    23    NULL    0.05    0.05    R    F    02/18/1993    01/19/1993    02/18/1993    TAKE BACK
RETURN   AIR    ,fluffy tithes try to was silently : iro 
2051    23    1    1    35    NULL    0.03    0.02    N    O    04/30/1998    04/27/1998    04/30/1998    NONE    REG
AIR   ruthless realms lo 
2051    0    0    2    48    NULL    0.07    0.05    N    O    05/08/1998    04/27/1998    05/08/1998    DELIVER IN
PERSON   RAIL    orbits must was ruthlessly mu 
2051    23    1    3    35    NULL    0.01    0.03    N    O    05/20/1998    05/07/1998    05/20/1998    NONE    FOB
sly,thin decoys shall poach i 
2051    5    1    4    45    NULL    0.03    0.05    N    O    06/03/1998    05/18/1998    06/03/1998    DELIVER IN
PERSON   RAIL    always slow fret 
2051    23    2    5    34    NULL    0.09    0.07    N    O    04/01/1998    05/16/1998    04/01/1998    NONE    FOB
pearls into the do 
2052    62    0    1    5    NULL    0.07    0.05    N    O    11/04/1996    11/17/1996    11/04/1996    TAKE BACK
RETURN   AIR    furious frets will engage qui 
2053    41    3    1    32    NULL    0.08    0.06    N    F    05/21/1995    06/18/1995    05/21/1995    COLLECT COD
SHIP    evenly careful platelets do main 
2053    41    1    2    24    NULL    0.08    0.05    N    O    07/11/1995    07/06/1995    07/11/1995    NONE    FOB
pains must run boldly 
2053    36    2    3    36    NULL    0.03    0.04    N    O    07/20/1995    06/09/1995    07/20/1995    COLLECT COD
SHIP    pinto beans unwind daringly tith 
2053    24    1    4    14    NULL    0.08    0.04    R    F    05/25/1995    05/31/1995    05/25/1995    DELIVER IN
PERSON   MAIL    notornis eat around the reg 
2053    8    1    5    4    NULL    0.05    0.04    A    F    05/23/1995    06/08/1995    05/23/1995    COLLECT COD
MAIL   bravely sly Tiresias' may d 
2053    49    3    6    48    NULL    0.05    0.01    N    O    07/21/1995    06/01/1995    07/21/1995    DELIVER IN
PERSON   FOB    regular tithes should sublate stealthily 
2053    49    3    7    11    NULL    0.09    0.02    A    F    05/19/1995    06/02/1995    05/19/1995    NONE    RAIL
 pearls instea 
2054    75    2    1    23    NULL    0.02    0.05    R    F    01/20/1995    01/03/1995    01/20/1995    COLLECT COD
SHIP    Tiresias' may  f 
2054    44    1    2    10    NULL    0.07    0.05    R    F    01/05/1995    12/24/1994    01/05/1995    COLLECT COD
FOB    ,busy sentiments until the  
2054    28    2    3    29    NULL    0.01    0.05    A    F    02/14/1995    12/22/1994    02/14/1995    DELIVER IN
PERSON   AIR    evenly ironic 
2054    76    3    4    23    NULL    0.10    0.08    R    F    11/04/1994    01/06/1995    11/04/1994    TAKE BACK
RETURN   TRUCK    evenly busy sauternes kindle ent 
2054    47    1    5    46    NULL    0.03    0.00    R    F    12/05/1994    11/23/1994    12/05/1994    COLLECT COD
MAIL    thinly sly fr 
2054    75    3    6    18    NULL    0.06    0.07    R    F    01/23/1995    12/21/1994    01/23/1995    NONE    RAIL
 asymptotes engage boldly ac 
2055    16    1    1    37    NULL    0.05    0.06    R    F    02/11/1995    04/18/1995    02/11/1995    TAKE BACK
RETURN   FOB    boldly fluffy warhors 
2055    39    3    2    18    NULL    0.09    0.01    A    F    04/15/1995    03/03/1995    04/15/1995    DELIVER IN
PERSON   TRUCK    enticing idea 
2080    63    2    1    31    NULL    0.05    0.03    R    F    09/25/1994    07/23/1994    09/25/1994    COLLECT COD
SHIP     sheaves nag sometimes  pearls ? 
2080    0    3    2    22    NULL    0.00    0.01    R    F    07/31/1994    08/08/1994    07/31/1994    COLLECT COD
FOB   always blithe ideas t 
2080    26    0    3    10    NULL    0.01    0.04    A    F    08/28/1994    08/03/1994    08/28/1994    DELIVER IN
PERSON   TRUCK    enticing,daring instructions to the slyl 
2080    38    1    4    29    NULL    0.10    0.01    R    F    06/29/1994    09/05/1994    06/29/1994    COLLECT COD
SHIP    instructions shall have to are between the  
2081    41    1    1    28    NULL    0.10    0.02    N    O    02/05/1996    01/27/1996    02/05/1996    NONE    REG
AIR   bold, asymptotes must ha 
2081    0    0    2    16    NULL    0.04    0.03    N    O    02/10/1996    01/25/1996    02/10/1996    COLLECT COD
FOB   fluffy pinto beans in 
2081    51    3    3    4    NULL    0.01    0.06    N    O    02/08/1996    02/23/1996    02/08/1996    DELIVER IN
PERSON   SHIP    ruthlessly silent notornis ruthless 
2081    15    3    4    28    NULL    0.09    0.06    N    O    01/02/1996    02/15/1996    01/02/1996    TAKE BACK
RETURN   MAIL    busy courts x_ray beyond the  
2082    70    0    1    26    NULL    0.09    0.06    A    F    05/16/1992    04/14/1992    05/16/1992    NONE    FOB
daring frays out 
2082    7    1    2    20    NULL    0.01    0.03    A    F    07/06/1992    04/24/1992    07/06/1992    DELIVER IN
PERSON   AIR    blithe pearls 
2082    0    0    3    8    NULL    0.10    0.04    R    F    06/24/1992    05/27/1992    06/24/1992    DELIVER IN
PERSON   MAIL    ironic warthogs doze quickly despite the 
2082    76    2    4    28    NULL    0.07    0.06    R    F    03/14/1992    04/18/1992    03/14/1992    NONE    AIR
tithes after the ruthless gro 
2083    60    2    1    18    NULL    0.06    0.02    A    F    04/24/1993    03/20/1993    04/24/1993    NONE    MAIL
 blithe sentiments past the careful  
2083    0    0    2    3    NULL    0.05    0.03    R    F    03/01/1993    02/26/1993    03/01/1993    DELIVER IN
PERSON   SHIP    final,regular 
2083    59    2    3    41    NULL    0.05    0.01    A    F    02/28/1993    02/28/1993    02/28/1993    NONE    AIR
quick,furious platelets besides  
2083    18    2    4    44    NULL    0.05    0.03    A    F    03/12/1993    03/13/1993    03/12/1993    NONE    MAIL
 even pinto beans unti 
2083    36    2    5    36    NULL    0.06    0.01    R    F    02/09/1993    03/25/1993    02/09/1993    TAKE BACK
RETURN   TRUCK    regularly final dependencies at  
2083    31    0    6    23    NULL    0.09    0.05    A    F    05/08/1993    03/26/1993    05/08/1993    COLLECT COD
MAIL    even,even hockey players eat -- flu 
2083    15    2    7    43    NULL    0.03    0.02    A    F    05/10/1993    03/01/1993    05/10/1993    NONE    MAIL
 dugouts boost evenly tithes . thinl 
2084    0    0    1    26    NULL    0.01    0.02    N    O    09/24/1997    11/01/1997    09/24/1997    NONE    FOB
furious,idlenotornis behin 
2084    23    2    2    8    NULL    0.01    0.03    N    O    10/12/1997    09/21/1997    10/12/1997    COLLECT COD
MAIL   blithe,idle theodolites snooz 
2084    73    3    3    49    NULL    0.00    0.04    N    O    09/08/1997    09/30/1997    09/08/1997    NONE    MAIL
 stealthy,e 
2084    0    0    4    22    NULL    0.01    0.07    N    O    08/29/1997    10/09/1997    08/29/1997    COLLECT COD
SHIP   enticingly quiet orbits poach slowly . 
2084    9    3    5    46    NULL    0.00    0.03    N    O    11/26/1997    10/13/1997    11/26/1997    TAKE BACK
RETURN   TRUCK    theodolites promise ruthless  
2084    49    0    6    33    NULL    0.00    0.04    N    O    11/02/1997    11/09/1997    11/02/1997    TAKE BACK
RETURN   REG AIR    permanent,thin ideas upon the blithe sheave 
2084    0    0    7    25    NULL    0.06    0.06    N    O    08/30/1997    10/10/1997    08/30/1997    NONE    RAIL
realms engage ; 
2085    50    0    1    11    NULL    0.00    0.02    N    O    06/23/1995    06/23/1995    06/23/1995    COLLECT COD
FOB    frets throughout the idle,s 
2085    60    2    2    12    NULL    0.02    0.06    N    O    07/17/1995    06/23/1995    07/17/1995    TAKE BACK
RETURN   FOB    brave depths up the final gifts print close 
2085    66    3    3    31    NULL    0.07    0.07    A    F    05/02/1995    06/22/1995    05/02/1995    NONE    MAIL
 close,final fina beyond  
2086    0    0    1    2    NULL    0.08    0.00    R    F    01/14/1994    12/21/1993    01/14/1994    NONE    FOB
theodoliteswithin th 
2087    0    0    1    8    NULL    0.09    0.04    A    F    06/29/1994    05/30/1994    06/29/1994    TAKE BACK
RETURN   REG AIR    idly permanent h 
2112    49    1    1    38    NULL    0.04    0.03    A    F    01/01/1994    12/06/1993    01/01/1994    TAKE BACK
RETURN   TRUCK     despite the ideas could have to ru 
2113    56    3    1    6    NULL    0.00    0.02    R    F    03/06/1992    03/14/1992    03/06/1992    DELIVER IN
PERSON   SHIP    doggedly final war 
2113    76    3    2    38    NULL    0.01    0.02    R    F    03/12/1992    03/08/1992    03/12/1992    DELIVER IN
PERSON   MAIL    close pearls sleep fi 
2114    65    3    1    30    NULL    0.08    0.03    R    F    11/23/1993    09/08/1993    11/23/1993    DELIVER IN
PERSON   RAIL    fluffy,daring foxes hagg 
2114    65    2    2    16    NULL    0.05    0.06    A    F    10/21/1993    09/22/1993    10/21/1993    COLLECT COD
RAIL    sentiments would n 
2114    39    0    3    31    NULL    0.09    0.08    R    F    09/26/1993    10/05/1993    09/26/1993    TAKE BACK
RETURN   REG AIR    theodolites s 
2114    67    3    4    37    NULL    0.06    0.01    A    F    10/03/1993    10/22/1993    10/03/1993    DELIVER IN
PERSON   MAIL    quietly dogged esc 
2114    0    0    5    30    NULL    0.06    0.08    A    F    11/02/1993    09/09/1993    11/02/1993    DELIVER IN
PERSON   MAIL    stealthy,silent waters n 
2114    73    3    6    40    NULL    0.00    0.02    R    F    09/22/1993    09/15/1993    09/22/1993    COLLECT COD
AIR    brave courts under 
2115    0    0    1    14    NULL    0.06    0.02    N    O    01/16/1997    12/09/1996    01/16/1997    COLLECT COD
MAIL   foxes hang sly,even frays -- 
2115    0    0    2    11    NULL    0.03    0.01    N    O    01/28/1997    12/12/1996    01/28/1997    NONE    TRUCK
 gifts beyond the frays must have 
2115    42    2    3    4    NULL    0.07    0.05    N    O    11/12/1996    12/21/1996    11/12/1996    NONE    REG
AIR   careful,furious warhorses m 
2115    0    0    4    9    NULL    0.10    0.00    N    O    10/12/1996    12/10/1996    10/12/1996    TAKE BACK
RETURN   RAIL    thin excuses must have to ser 
2115    76    0    5    7    NULL    0.10    0.01    N    O    01/28/1997    11/22/1996    01/28/1997    TAKE BACK
RETURN   SHIP    slowly slow ideas slowly 
2115    13    2    6    45    NULL    0.10    0.01    N    O    10/31/1996    12/06/1996    10/31/1996    DELIVER IN
PERSON   RAIL    ruthlessly brave forges  
2115    67    1    7    18    NULL    0.10    0.00    N    O    01/21/1997    12/07/1996    01/21/1997    NONE    RAIL
 regularly sly dugouts th 
2116    79    1    1    36    NULL    0.08    0.06    N    O    02/06/1997    01/21/1997    02/06/1997    DELIVER IN
PERSON   TRUCK    slow frays 
2116    68    3    2    18    NULL    0.05    0.01    N    O    01/07/1997    01/19/1997    01/07/1997    DELIVER IN
PERSON   MAIL    platelets could  
2117    0    0    1    34    NULL    0.05    0.05    A    F    03/15/1992    02/25/1992    03/15/1992    NONE    REG
AIR   silent,quiet courts will have to 
2118    20    0    1    45    NULL    0.01    0.01    R    F    04/10/1992    05/08/1992    04/10/1992    NONE    REG
AIR   fluffily bold no 
2118    0    0    2    1    NULL    0.08    0.07    A    F    04/18/1992    05/19/1992    04/18/1992    NONE    MAIL
busy,slowideas was ; 
2118    71    1    3    21    NULL    0.04    0.01    R    F    05/18/1992    05/23/1992    05/18/1992    NONE    FOB
permanently quiet  
2118    34    1    4    25    NULL    0.09    0.06    A    F    05/15/1992    07/04/1992    05/15/1992    DELIVER IN
PERSON   REG AIR    patterns since t 
2118    0    0    5    38    NULL    0.07    0.01    A    F    05/19/1992    05/22/1992    05/19/1992    DELIVER IN
PERSON   RAIL    slow,blithe escapades may sleep  
2118    53    1    6    7    NULL    0.06    0.01    R    F    04/29/1992    07/06/1992    04/29/1992    COLLECT COD
REGAIR    evenly ruthless dinos play  
2119    0    0    1    23    NULL    0.02    0.03    N    O    08/17/1997    08/14/1997    08/17/1997    DELIVER IN
PERSON   TRUCK    ironically close dependenci 
2119    49    2    2    20    NULL    0.07    0.06    N    O    08/03/1997    09/25/1997    08/03/1997    NONE    FOB
ruthless gifts kindle ? gifts shall h 
2144    60    1    1    47    NULL    0.10    0.07    A    F    03/18/1995    04/24/1995    03/18/1995    TAKE BACK
RETURN   RAIL    final,busy courts solve ? 
2144    67    3    2    9    NULL    0.04    0.03    A    F    04/22/1995    03/25/1995    04/22/1995    COLLECT COD
AIR   blithe gifts according to the 
2144    12    3    3    49    NULL    0.03    0.02    A    F    03/31/1995    04/10/1995    03/31/1995    COLLECT COD
REG AIR    regular,caref 
2144    0    0    4    21    NULL    0.06    0.04    R    F    05/27/1995    03/30/1995    05/27/1995    DELIVER IN
PERSON   REG AIR    bravely quiet br 
2144    41    0    5    16    NULL    0.02    0.04    R    F    06/04/1995    05/03/1995    06/04/1995    DELIVER IN
PERSON   REG AIR    enticing,permanent 
2145    73    0    1    6    NULL    0.04    0.04    N    O    01/10/1996    01/17/1996    01/10/1996    TAKE BACK
RETURN   AIR    grouches beside the sheaves d 
2145    57    1    2    46    NULL    0.08    0.01    N    O    02/15/1996    12/23/1995    02/15/1996    NONE    SHIP
   eat regularly above the pains 
2145    0    0    3    36    NULL    0.07    0.06    N    O    01/08/1996    01/02/1996    01/08/1996    NONE    MAIL
quick  across the never  
2146    0    0    1    10    NULL    0.02    0.04    N    O    07/18/1997    08/22/1997    07/18/1997    DELIVER IN
PERSON   REG AIR    idly careful sentimen 
2146    58    3    2    3    NULL    0.02    0.02    N    O    09/15/1997    08/13/1997    09/15/1997    TAKE BACK
RETURN   REG AIR    frets according to the regular pains sho 
2146    0    0    3    46    NULL    0.07    0.06    N    O    08/16/1997    07/25/1997    08/16/1997    DELIVER IN
PERSON   SHIP    asymptotes poach permanently daring 
2146    0    0    4    16    NULL    0.04    0.03    N    O    06/15/1997    08/24/1997    06/15/1997    DELIVER IN
PERSON   TRUCK    final forges use d 
2147    28    3    1    25    NULL    0.01    0.00    N    O    12/04/1995    02/09/1996    12/04/1995    TAKE BACK
RETURN   MAIL    sly,quick patter 
2147    51    2    2    48    NULL    0.09    0.08    N    O    12/08/1995    01/31/1996    12/08/1995    TAKE BACK
RETURN   RAIL    carefully close foxes thrash idly close  
2147    46    2    3    11    NULL    0.06    0.05    N    O    12/07/1995    02/08/1996    12/07/1995    TAKE BACK
RETURN   RAIL    busy,dogged hockey players atop the b 
2147    46    1    4    8    NULL    0.10    0.00    N    O    03/09/1996    02/13/1996    03/09/1996    COLLECT COD
FOB   asymptotes to the ruthlessly  
2148    0    0    1    47    NULL    0.00    0.00    N    O    10/20/1995    10/26/1995    10/20/1995    TAKE BACK
RETURN   MAIL    fluffy gifts shall have to was idle,fluf 
2148    49    3    2    47    NULL    0.03    0.08    N    O    11/21/1995    10/13/1995    11/21/1995    TAKE BACK
RETURN   FOB    permanent sheave 
2148    0    0    3    25    NULL    0.10    0.04    N    O    09/18/1995    11/20/1995    09/18/1995    TAKE BACK
RETURN   TRUCK    close platelets haggle clos 
2148    0    0    4    29    NULL    0.06    0.07    N    O    09/02/1995    10/09/1995    09/02/1995    TAKE BACK
RETURN   MAIL    ironically ironic tithes acco 
2148    0    0    5    12    NULL    0.01    0.05    N    O    12/19/1995    11/06/1995    12/19/1995    COLLECT COD
TRUCK   ,slow pains was wa quiet,th 
2148    1    2    6    50    NULL    0.08    0.04    N    O    11/01/1995    11/03/1995    11/01/1995    TAKE BACK
RETURN   MAIL    doggedly c 
2149    71    0    1    21    NULL    0.05    0.08    N    O    04/16/1996    03/21/1996    04/16/1996    NONE    FOB
even sheaves lose platelets -- p 
2149    71    3    2    37    NULL    0.09    0.07    N    O    04/10/1996    04/06/1996    04/10/1996    COLLECT COD
FOB    closely dogged depths grow outside  
2149    0    0    3    17    NULL    0.04    0.03    N    O    05/22/1996    03/04/1996    05/22/1996    TAKE BACK
RETURN   SHIP    sly,fluffy somas solve into the pin 
2150    68    1    1    46    NULL    0.01    0.05    R    F    05/10/1994    05/24/1994    05/10/1994    DELIVER IN
PERSON   SHIP    blithe,bold attain 
2150    56    3    2    31    NULL    0.07    0.07    A    F    05/13/1994    04/29/1994    05/13/1994    NONE    AIR
daringly  braids shall have 
2150    11    2    3    31    NULL    0.07    0.07    R    F    06/10/1994    04/06/1994    06/10/1994    DELIVER IN
PERSON   FOB    regularly ruthless depths w 
2150    39    2    4    23    NULL    0.09    0.05    R    F    05/12/1994    05/16/1994    05/12/1994    DELIVER IN
PERSON   SHIP    quickly sly attainments at the carefu 
2150    57    0    5    25    NULL    0.09    0.04    R    F    04/17/1994    05/15/1994    04/17/1994    COLLECT COD
REG AIR    silently sly attainments after the  
2150    49    3    6    14    NULL    0.01    0.06    R    F    04/30/1994    04/16/1994    04/30/1994    COLLECT COD
MAIL    idle,careful frays between the , 
2150    13    0    7    43    NULL    0.07    0.06    A    F    05/09/1994    05/04/1994    05/09/1994    DELIVER IN
PERSON   MAIL    regular pinto beans detect br 
2151    41    2    1    45    NULL    0.01    0.02    N    O    02/05/1997    01/14/1997    02/05/1997    TAKE BACK
RETURN   TRUCK    waters beyond the busy realms must have to  
2151    14    3    2    5    NULL    0.04    0.05    N    O    01/05/1997    02/02/1997    01/05/1997    NONE    TRUCK
 dogged,thin tithes up the flu 
2151    0    0    3    31    NULL    0.03    0.04    N    O    11/09/1996    12/22/1996    11/09/1996    NONE    TRUCK
 frets through the brave, 
2151    0    2    4    8    NULL    0.05    0.06    N    O    12/13/1996    12/21/1996    12/13/1996    NONE    FOB
stealthilyca 
2176    0    0    1    34    NULL    0.07    0.02    A    F    03/04/1993    01/24/1993    03/04/1993    DELIVER IN
PERSON   MAIL    quick platelets into the ironic fre 
2176    38    0    2    50    NULL    0.01    0.05    R    F    12/29/1992    02/02/1993    12/29/1992    DELIVER IN
PERSON   MAIL    sly,quick sheave 
2177    37    0    1    34    NULL    0.09    0.02    N    O    10/05/1996    08/02/1996    10/05/1996    NONE    MAIL
 stealthy,idle wa 
2178    72    0    1    23    NULL    0.05    0.01    N    O    08/19/1998    09/05/1998    08/19/1998    DELIVER IN
PERSON   FOB    busily thin pinto beans until the stealthy, 
2178    68    0    2    36    NULL    0.09    0.05    N    O    08/28/1998    08/30/1998    08/28/1998    DELIVER IN
PERSON   TRUCK    permanent frays nag evenly quiet warthog 
2178    26    0    3    45    NULL    0.06    0.04    N    O    08/20/1998    09/01/1998    08/20/1998    TAKE BACK
RETURN   SHIP    careful dependencies tow 
2178    60    1    4    50    NULL    0.02    0.08    N    O    08/17/1998    09/07/1998    08/17/1998    COLLECT COD
TRUCK    sly forges boost never closely d 
2179    77    1    1    43    NULL    0.04    0.02    N    O    02/25/1996    03/05/1996    02/25/1996    NONE    MAIL
 close, dugouts shall boost upon the 
2179    25    0    2    19    NULL    0.06    0.05    N    O    02/28/1996    02/28/1996    02/28/1996    TAKE BACK
RETURN   SHIP    busy dugouts  
2179    25    1    3    3    NULL    0.04    0.04    N    O    03/21/1996    03/03/1996    03/21/1996    DELIVER IN
PERSON   AIR    stealthy frets before 
2180    67    2    1    12    NULL    0.01    0.06    N    O    02/16/1998    02/09/1998    02/16/1998    TAKE BACK
RETURN   REG AIR    sometimes idle decoys br 
2180    55    3    2    49    NULL    0.05    0.06    N    O    12/24/1997    12/29/1997    12/24/1997    COLLECT COD
MAIL    stealthy,even courts serve busily b 
2180    2    3    3    16    NULL    0.08    0.07    N    O    02/13/1998    02/05/1998    02/13/1998    NONE    REG
AIR   furious warthogs need to mold mol ben 
2180    0    0    4    48    NULL    0.03    0.01    N    O    11/18/1997    12/21/1997    11/18/1997    DELIVER IN
PERSON   MAIL    quick,bold sentiments into the ironic 
2181    14    3    1    15    NULL    0.10    0.06    R    F    03/09/1992    04/01/1992    03/09/1992    NONE    AIR
blithe,slow hockey players need to  
2181    24    0    2    33    NULL    0.09    0.00    A    F    01/27/1992    03/05/1992    01/27/1992    DELIVER IN
PERSON   RAIL    hockey players affix : perman 
2181    1    2    3    13    NULL    0.04    0.04    R    F    02/13/1992    02/17/1992    02/13/1992    TAKE BACK
RETURN   MAIL    fluffy patterns mold always among the 
2182    52    2    1    49    NULL    0.05    0.01    R    F    11/29/1994    01/15/1995    11/29/1994    NONE    MAIL
 ideas with th 
2182    0    0    2    17    NULL    0.08    0.06    A    F    01/19/1995    01/14/1995    01/19/1995    DELIVER IN
PERSON   AIR    dugouts after the tithes would print epi 
2182    34    2    3    15    NULL    0.02    0.07    R    F    11/14/1994    12/03/1994    11/14/1994    COLLECT COD
RAIL    quietly final wa 
2182    49    3    4    40    NULL    0.08    0.04    R    F    11/05/1994    12/28/1994    11/05/1994    COLLECT COD
RAIL    depths shall  instead of th 
2183    35    3    1    21    NULL    0.01    0.01    N    O    02/17/1996    02/11/1996    02/17/1996    DELIVER IN
PERSON   FOB     detect at the close,stealthy decoys bravel 
2183    10    3    2    26    NULL    0.04    0.05    N    O    01/09/1996    01/06/1996    01/09/1996    NONE    TRUCK
  grouches from the enticing Tiresias' eat br 
2183    26    3    3    9    NULL    0.04    0.04    N    O    12/03/1995    02/15/1996    12/03/1995    COLLECT COD
SHIP   bold pains could have to unwind perma 
2183    44    1    4    3    NULL    0.08    0.03    N    O    12/09/1995    01/05/1996    12/09/1995    DELIVER IN
PERSON   RAIL    quiet ideas would x_ray slowl 
2183    65    3    5    30    NULL    0.06    0.02    N    O    03/19/1996    01/27/1996    03/19/1996    TAKE BACK
RETURN   REG AIR    stealthily blith 
2208    51    1    1    26    NULL    0.08    0.02    R    F    02/16/1992    03/17/1992    02/16/1992    COLLECT COD
REG AIR    epitaphs upon the slowly furious 
2208    66    1    2    33    NULL    0.08    0.04    A    F    03/02/1992    03/10/1992    03/02/1992    DELIVER IN
PERSON   REG AIR    slow,permanent ideas need to dazzle ruth 
2209    21    3    1    19    NULL    0.04    0.00    N    O    08/09/1997    08/22/1997    08/09/1997    TAKE BACK
RETURN   RAIL    ruthless,stealthy somas outside the 
2209    8    1    2    16    NULL    0.03    0.04    N    O    08/15/1997    08/08/1997    08/15/1997    DELIVER IN
PERSON   FOB    final,enti 
2209    31    3    3    40    NULL    0.00    0.02    N    O    09/07/1997    08/26/1997    09/07/1997    TAKE BACK
RETURN   FOB    slyly dogged  
2209    0    0    4    46    NULL    0.02    0.04    N    O    07/02/1997    08/29/1997    07/02/1997    TAKE BACK
RETURN   REG AIR    regular tithes wil 
2209    46    3    5    14    NULL    0.07    0.03    N    O    06/30/1997    07/16/1997    06/30/1997    NONE    FOB
orbits promise stealthil 
2209    55    1    6    11    NULL    0.05    0.04    N    O    09/08/1997    08/26/1997    09/08/1997    COLLECT COD
TRUCK    instructions should x_ray asymptote 
2210    79    0    1    31    NULL    0.02    0.00    N    O    04/08/1996    04/04/1996    04/08/1996    NONE    TRUCK
  sentiments sleep regularly at the bli 
2211    0    0    1    20    NULL    0.07    0.06    A    F    08/14/1994    10/09/1994    08/14/1994    NONE    MAIL
enticingly daring courts thrash silently 
2212    75    2    1    34    NULL    0.06    0.03    R    F    08/30/1992    10/10/1992    08/30/1992    COLLECT COD
TRUCK    bold foxes through the idle waters use e 
2212    0    0    2    43    NULL    0.04    0.01    R    F    11/24/1992    09/20/1992    11/24/1992    NONE    MAIL
epitaphs ougt 
2212    63    2    3    23    NULL    0.01    0.08    A    F    11/19/1992    09/08/1992    11/19/1992    NONE    FOB
blithe,stealthy escapades will have t 
2212    45    0    4    46    NULL    0.01    0.00    A    F    10/28/1992    10/18/1992    10/28/1992    DELIVER IN
PERSON   TRUCK    daring,close frays could have to boost ; 
2212    47    0    5    27    NULL    0.05    0.05    R    F    09/25/1992    09/22/1992    09/25/1992    COLLECT COD
MAIL    frets through the enticingly silent orbi 
2212    75    1    6    12    NULL    0.08    0.02    A    F    11/01/1992    09/22/1992    11/01/1992    NONE    AIR
closely close pains could doubt ato 
2212    13    1    7    36    NULL    0.03    0.06    A    F    08/17/1992    10/12/1992    08/17/1992    NONE    TRUCK
  thin,final 
2213    55    3    1    42    NULL    0.08    0.04    R    F    12/23/1992    10/19/1992    12/23/1992    DELIVER IN
PERSON   AIR    stealthy waters  
2213    35    2    2    40    NULL    0.08    0.04    R    F    10/14/1992    11/01/1992    10/14/1992    NONE    REG
AIR   regular foxes 
2213    44    1    3    31    NULL    0.08    0.07    R    F    11/27/1992    10/17/1992    11/27/1992    DELIVER IN
PERSON   FOB    instructions poach enticingly poach e 
2214    28    1    1    16    NULL    0.07    0.08    R    F    04/26/1995    05/14/1995    04/26/1995    TAKE BACK
RETURN   FOB    quiet,daring mul 
2214    57    3    2    22    NULL    0.04    0.04    R    F    05/16/1995    05/30/1995    05/16/1995    NONE    MAIL
 ruthlessly ruthless dino 
2214    0    0    3    35    NULL    0.07    0.02    A    F    04/29/1995    04/15/1995    04/29/1995    NONE    AIR
regulardu 
2214    52    3    4    6    NULL    0.08    0.02    N    F    06/10/1995    04/17/1995    06/10/1995    NONE    MAIL
regular gifts nag na 
2214    0    0    5    19    NULL    0.01    0.06    A    F    05/18/1995    04/13/1995    05/18/1995    COLLECT COD
AIR   ,daring courts doz 
2215    44    3    1    42    NULL    0.06    0.02    R    F    01/15/1994    12/10/1993    01/15/1994    COLLECT COD
SHIP    finally  braids to the bold,ruthless dep 
2215    57    1    2    9    NULL    0.06    0.04    R    F    12/20/1993    12/13/1993    12/20/1993    DELIVER IN
PERSON   MAIL    sometimes enticing braids past the ironi 
2215    0    2    3    31    NULL    0.08    0.04    R    F    01/14/1994    12/25/1993    01/14/1994    TAKE BACK
RETURN   RAIL    fluffy decoys 
2215    0    0    4    20    NULL    0.07    0.07    A    F    11/25/1993    11/13/1993    11/25/1993    NONE    MAIL
regular dugouts should h 
2215    0    0    5    13    NULL    0.06    0.05    A    F    01/05/1994    11/15/1993    01/05/1994    DELIVER IN
PERSON   RAIL    sheaves sheave believ 
2215    66    1    6    48    NULL    0.03    0.07    R    F    12/27/1993    11/21/1993    12/27/1993    NONE    FOB
doggedly careful warthogs believe idle e 
2215    19    3    7    50    NULL    0.08    0.01    A    F    01/15/1994    12/06/1993    01/15/1994    DELIVER IN
PERSON   REG AIR    braids play bravel 
2240    0    0    1    21    NULL    0.04    0.01    R    F    08/26/1992    08/25/1992    08/26/1992    COLLECT COD
TRUCK   quick,thin grouche 
2240    0    0    2    34    NULL    0.01    0.06    R    F    08/05/1992    09/05/1992    08/05/1992    DELIVER IN
PERSON   FOB    pinto beans alongside of the bra 
2241    0    0    1    46    NULL    0.01    0.02    A    F    10/22/1994    11/06/1994    10/22/1994    TAKE BACK
RETURN   SHIP    stealthy sentiments snooze quietly wi 
2241    71    1    2    12    NULL    0.06    0.03    A    F    12/05/1994    10/23/1994    12/05/1994    NONE    RAIL
 idle gifts serve carefully pe 
2241    0    0    3    2    NULL    0.00    0.05    R    F    12/22/1994    10/07/1994    12/22/1994    NONE    FOB
blithepinto beans shall have to 
2241    0    0    4    14    NULL    0.10    0.02    R    F    09/09/1994    10/04/1994    09/09/1994    NONE    TRUCK
 daring courts with the careful,stealt 
2242    1    1    1    28    NULL    0.07    0.05    R    F    06/26/1992    06/10/1992    06/26/1992    COLLECT COD
RAIL   fluffy,ironic wa 
2242    73    3    2    37    NULL    0.03    0.04    R    F    09/02/1992    06/07/1992    09/02/1992    TAKE BACK
RETURN   AIR    quickly even frays despite  
2242    0    0    3    10    NULL    0.05    0.07    A    F    08/07/1992    07/26/1992    08/07/1992    DELIVER IN
PERSON   RAIL    even forges b 
2242    0    0    4    34    NULL    0.03    0.07    R    F    07/05/1992    06/30/1992    07/05/1992    COLLECT COD
SHIP   careful,sly pearls beyond the st 
2242    50    2    5    49    NULL    0.03    0.04    A    F    08/08/1992    08/01/1992    08/08/1992    COLLECT COD
FOB    slyly careful 
2243    55    3    1    15    NULL    0.05    0.02    N    O    07/21/1995    06/29/1995    07/21/1995    TAKE BACK
RETURN   SHIP    close epitaphs dazzle permanent realms ? pi 
2243    35    0    2    21    NULL    0.00    0.02    N    O    07/28/1995    07/09/1995    07/28/1995    NONE    TRUCK
  always regular waters haggle iro 
2244    11    3    1    20    NULL    0.02    0.02    R    F    03/15/1994    12/20/1993    03/15/1994    DELIVER IN
PERSON   AIR    enticing,careful d 
2245    24    3    1    23    NULL    0.07    0.07    N    O    06/18/1997    05/08/1997    06/18/1997    NONE    AIR
silently ruthless ideas mai 
2245    78    1    2    8    NULL    0.02    0.01    N    O    04/25/1997    04/22/1997    04/25/1997    DELIVER IN
PERSON   AIR    quiet hockey pla 
2245    76    0    3    6    NULL    0.00    0.05    N    O    06/10/1997    03/20/1997    06/10/1997    DELIVER IN
PERSON   SHIP    decoys grow carefully 
2246    36    3    1    30    NULL    0.06    0.02    A    F    12/12/1994    11/27/1994    12/12/1994    TAKE BACK
RETURN   MAIL    fluffy,even attainments  
2247    75    0    1    23    NULL    0.07    0.05    N    O    03/12/1997    04/01/1997    03/12/1997    TAKE BACK
RETURN   FOB    ironically ruthless sauternes unwind  
2247    23    0    2    46    NULL    0.00    0.07    N    O    03/17/1997    03/15/1997    03/17/1997    NONE    REG
AIR   waters for the orbits unwind evenly 
2272    31    3    1    37    NULL    0.10    0.08    R    F    12/01/1994    11/18/1994    12/01/1994    DELIVER IN
PERSON   MAIL    slow,sly ideas maintain slyly thin,dogge 
2272    12    3    2    8    NULL    0.05    0.02    A    F    10/18/1994    10/04/1994    10/18/1994    COLLECT COD
TRUCK   slyly permanent hockey players poac 
2272    76    3    3    14    NULL    0.07    0.07    A    F    10/15/1994    11/15/1994    10/15/1994    NONE    REG
AIR   brave orbits  
2272    53    2    4    44    NULL    0.01    0.03    R    F    09/16/1994    10/08/1994    09/16/1994    COLLECT COD
REG AIR    permanent warthogs could  regularly ? re 
2272    68    1    5    50    NULL    0.04    0.02    A    F    12/07/1994    09/22/1994    12/07/1994    DELIVER IN
PERSON   MAIL    asymptotes from  
2272    0    0    6    21    NULL    0.01    0.04    A    F    11/11/1994    10/26/1994    11/11/1994    TAKE BACK
RETURN   REG AIR    slowly busy epitaphs run around the 
2273    77    1    1    12    NULL    0.01    0.03    A    F    04/12/1995    04/04/1995    04/12/1995    COLLECT COD
REG AIR    foxes between the blithe,ev 
2274    0    0    1    35    NULL    0.09    0.04    A    F    08/29/1994    11/25/1994    08/29/1994    DELIVER IN
PERSON   MAIL    dolphins kindle within the water 
2274    0    0    2    3    NULL    0.09    0.02    A    F    09/05/1994    10/23/1994    09/05/1994    NONE    SHIP
final,fluffysentiments wake finally  
2275    1    2    1    20    NULL    0.04    0.02    A    F    06/03/1992    03/20/1992    06/03/1992    NONE    TRUCK
 close,quiet p 
2275    25    1    2    10    NULL    0.01    0.02    A    F    03/14/1992    04/04/1992    03/14/1992    NONE    REG
AIR   platelets at the dogged,slo 
2275    42    0    3    5    NULL    0.05    0.05    R    F    02/24/1992    04/12/1992    02/24/1992    COLLECT COD
TRUCK   dogged,daring courts inside t 
2275    15    3    4    35    NULL    0.02    0.02    A    F    03/02/1992    04/14/1992    03/02/1992    TAKE BACK
RETURN   FOB    bold forges from the frays try to was to 
2276    0    3    1    17    NULL    0.08    0.01    N    O    08/08/1996    09/18/1996    08/08/1996    COLLECT COD
FOB   blithe warthogs do snooze by the 
2276    55    0    2    28    NULL    0.05    0.08    N    O    11/05/1996    09/18/1996    11/05/1996    TAKE BACK
RETURN   REG AIR    dugouts x_ray st 
2276    0    0    3    42    NULL    0.07    0.06    N    O    07/23/1996    08/10/1996    07/23/1996    DELIVER IN
PERSON   MAIL    always ironic ir 
2277    0    0    1    4    NULL    0.06    0.02    N    O    11/14/1995    10/20/1995    11/14/1995    DELIVER IN
PERSON   SHIP    dolphins kindle quietly ? 
2277    27    0    2    9    NULL    0.02    0.02    N    O    11/14/1995    10/20/1995    11/14/1995    NONE    SHIP
idle,quiet warthogs do doze c 
2277    0    0    3    24    NULL    0.07    0.06    N    O    08/23/1995    10/10/1995    08/23/1995    TAKE BACK
RETURN   AIR    brave,busy warthogs are ? 
2277    36    0    4    32    NULL    0.02    0.08    N    O    08/31/1995    11/13/1995    08/31/1995    TAKE BACK
RETURN   FOB    evenly furious courts shall x_ray thi 
2277    31    2    5    38    NULL    0.05    0.06    N    O    08/18/1995    10/28/1995    08/18/1995    COLLECT COD
FOB    quietly ruthl 
2277    56    2    6    41    NULL    0.05    0.05    N    O    08/25/1995    10/22/1995    08/25/1995    DELIVER IN
PERSON   TRUCK    slow gifts promise daringly s 
2277    0    0    7    12    NULL    0.00    0.00    N    O    09/26/1995    09/21/1995    09/26/1995    COLLECT COD
SHIP   thin,thin tithes through the  
2278    0    0    1    2    NULL    0.09    0.00    A    F    02/06/1993    01/16/1993    02/06/1993    NONE    FOB
dugoutsuse ? pe 
2278    68    3    2    8    NULL    0.10    0.01    A    F    03/08/1993    01/09/1993    03/08/1993    DELIVER IN
PERSON   RAIL    sly,regular plat 
2278    26    3    3    39    NULL    0.02    0.05    A    F    02/10/1993    12/29/1992    02/10/1993    TAKE BACK
RETURN   MAIL    carefully slow tit 
2279    32    1    1    34    NULL    0.06    0.08    R    F    05/17/1993    07/25/1993    05/17/1993    NONE    TRUCK
  sly platelets into the furiou 
2304    37    2    1    17    NULL    0.09    0.04    A    F    03/16/1993    04/08/1993    03/16/1993    TAKE BACK
RETURN   SHIP    foxes might are sl 
2304    73    0    2    31    NULL    0.04    0.04    R    F    04/10/1993    04/27/1993    04/10/1993    NONE    SHIP
 stealthily busy grouches can breach 
2305    0    0    1    50    NULL    0.05    0.03    A    F    08/07/1992    07/27/1992    08/07/1992    NONE    FOB
ruthless,slysom 
2305    23    2    2    49    NULL    0.10    0.04    R    F    09/10/1992    08/08/1992    09/10/1992    TAKE BACK
RETURN   SHIP    blithe decoys need to eat idly b 
2306    0    0    1    45    NULL    0.04    0.01    N    O    11/04/1995    10/25/1995    11/04/1995    TAKE BACK
RETURN   AIR    sly,enticing dolphins ab 
2306    14    1    2    30    NULL    0.02    0.02    N    O    11/12/1995    10/29/1995    11/12/1995    COLLECT COD
AIR    somas since t 
2306    0    0    3    30    NULL    0.08    0.03    N    O    11/24/1995    10/08/1995    11/24/1995    NONE    AIR
boldlybold dolp 
2306    60    1    4    42    NULL    0.06    0.02    N    O    08/21/1995    10/19/1995    08/21/1995    TAKE BACK
RETURN   FOB    fluffy excuse 
2307    3    2    1    24    NULL    0.09    0.03    A    F    09/12/1992    11/17/1992    09/12/1992    COLLECT COD
SHIP   busy realms doubt : waters could have to 
2308    47    0    1    39    NULL    0.10    0.03    N    O    08/07/1998    08/23/1998    08/07/1998    TAKE BACK
RETURN   MAIL    stealthy,blithe  
2309    0    0    1    14    NULL    0.02    0.04    N    O    06/04/1997    05/19/1997    06/04/1997    TAKE BACK
RETURN   RAIL     ironic braid 
2309    0    0    2    25    NULL    0.01    0.07    N    O    07/24/1997    06/18/1997    07/24/1997    COLLECT COD
SHIP   permanent gifts wake gro 
2309    39    0    3    42    NULL    0.07    0.05    N    O    04/27/1997    05/02/1997    04/27/1997    DELIVER IN
PERSON   AIR    quick orbits boost above the warthogs bo 
2309    31    1    4    33    NULL    0.09    0.08    N    O    06/04/1997    05/31/1997    06/04/1997    TAKE BACK
RETURN   RAIL    closely permanent warhorses must use pearls 
2310    48    1    1    26    NULL    0.05    0.01    R    F    11/14/1994    10/22/1994    11/14/1994    NONE    FOB
brave sauternes  
2311    25    3    1    35    NULL    0.06    0.07    N    O    08/22/1997    09/27/1997    08/22/1997    TAKE BACK
RETURN   RAIL    slow foxes inside  
2311    0    0    2    5    NULL    0.08    0.08    N    O    07/26/1997    09/11/1997    07/26/1997    COLLECT COD
TRUCK   fluffy,permanent asymptotes inside the e 
2311    0    0    3    38    NULL    0.08    0.08    N    O    10/02/1997    08/04/1997    10/02/1997    DELIVER IN
PERSON   SHIP    braids grow doggedly bravel 
2311    60    2    4    38    NULL    0.07    0.02    N    O    09/18/1997    09/25/1997    09/18/1997    NONE    RAIL
 sometimes ruthless sauternes affix with  
2311    12    2    5    29    NULL    0.04    0.00    N    O    10/19/1997    08/29/1997    10/19/1997    TAKE BACK
RETURN   TRUCK    enticing decoys must  
2311    62    1    6    46    NULL    0.03    0.08    N    O    09/04/1997    09/18/1997    09/04/1997    TAKE BACK
RETURN   TRUCK    even waters haggle outside the ironically c 
2336    0    0    1    26    NULL    0.03    0.02    R    F    01/13/1994    12/31/1993    01/13/1994    NONE    SHIP
furious,silent d 
2336    66    1    2    26    NULL    0.00    0.02    R    F    12/24/1993    12/09/1993    12/24/1993    DELIVER IN
PERSON   TRUCK    close dugouts 
2336    0    0    3    33    NULL    0.05    0.06    R    F    01/25/1994    01/23/1994    01/25/1994    COLLECT COD
TRUCK   idle platelets need to eat between  
2336    12    2    4    29    NULL    0.06    0.05    A    F    03/06/1994    01/15/1994    03/06/1994    DELIVER IN
PERSON   TRUCK    busy notor 
2336    69    0    5    22    NULL    0.04    0.03    A    F    02/07/1994    12/18/1993    02/07/1994    COLLECT COD
REG AIR    epitaphs near the fluffily brave sentiments 
2336    63    2    6    24    NULL    0.04    0.06    A    F    02/06/1994    12/31/1993    02/06/1994    TAKE BACK
RETURN   MAIL    quick warthogs try to print q 
2337    61    3    1    6    NULL    0.06    0.07    A    F    06/11/1993    06/27/1993    06/11/1993    COLLECT COD
AIR   dolphins alongsi 
2337    14    1    2    11    NULL    0.05    0.03    R    F    08/02/1993    05/20/1993    08/02/1993    TAKE BACK
RETURN   REG AIR    busy,thin somas tr 
2337    32    2    3    49    NULL    0.01    0.06    A    F    06/28/1993    06/02/1993    06/28/1993    COLLECT COD
REG AIR    doggedly daring decoys w 
2337    7    3    4    17    NULL    0.03    0.05    R    F    06/21/1993    05/16/1993    06/21/1993    TAKE BACK
RETURN   TRUCK    quiet,slow frays k 
2337    17    0    5    29    NULL    0.07    0.01    R    F    04/28/1993    05/09/1993    04/28/1993    DELIVER IN
PERSON   AIR    epitaphs outside the som 
2337    66    2    6    6    NULL    0.06    0.06    A    F    07/29/1993    06/17/1993    07/29/1993    NONE    FOB
daring,slysentiments 
2338    21    2    1    32    NULL    0.07    0.07    A    F    07/22/1993    05/13/1993    07/22/1993    TAKE BACK
RETURN   TRUCK    ruthless,brave somas  
2339    39    3    1    39    NULL    0.03    0.05    N    O    08/06/1995    09/06/1995    08/06/1995    NONE    TRUCK
  even Tiresias' on the regular forges mus 
2339    53    1    2    25    NULL    0.05    0.07    N    O    07/27/1995    09/24/1995    07/27/1995    DELIVER IN
PERSON   FOB    busy,ironic realms shall thrash  
2339    65    2    3    35    NULL    0.07    0.00    N    O    07/10/1995    09/26/1995    07/10/1995    TAKE BACK
RETURN   FOB    slyly quiet asymptotes should have to 
2340    52    0    1    44    NULL    0.07    0.02    R    F    04/24/1994    04/23/1994    04/24/1994    NONE    SHIP
 thin multipliers instead of the  
2340    56    0    2    48    NULL    0.05    0.01    A    F    02/16/1994    04/05/1994    02/16/1994    TAKE BACK
RETURN   FOB    brave orbits among the thinly fl 
2340    7    3    3    42    NULL    0.05    0.01    A    F    05/21/1994    03/25/1994    05/21/1994    NONE    SHIP
final warthogs beneath t 
2341    77    2    1    13    NULL    0.04    0.05    N    O    05/24/1996    06/10/1996    05/24/1996    DELIVER IN
PERSON   FOB    final platelets up the s 
2341    54    2    2    9    NULL    0.04    0.06    N    O    08/13/1996    07/11/1996    08/13/1996    DELIVER IN
PERSON   REG AIR    busy sheaves  
2342    0    0    1    14    NULL    0.06    0.05    R    F    12/26/1992    02/08/1993    12/26/1992    DELIVER IN
PERSON   SHIP    frets unwind  
2342    74    3    2    36    NULL    0.05    0.06    A    F    02/27/1993    01/21/1993    02/27/1993    COLLECT COD
MAIL    idle braids impress finally u 
2342    41    2    3    40    NULL    0.03    0.05    A    F    12/27/1992    01/09/1993    12/27/1992    TAKE BACK
RETURN   RAIL    multipliers doze 
2342    51    0    4    10    NULL    0.05    0.03    R    F    02/15/1993    01/30/1993    02/15/1993    COLLECT COD
MAIL    Tiresias' through the quick tithes try t 
2342    48    2    5    43    NULL    0.01    0.04    A    F    02/03/1993    01/31/1993    02/03/1993    TAKE BACK
RETURN   AIR    attainments could hav 
2343    49    1    1    24    NULL    0.02    0.05    N    O    09/24/1997    11/02/1997    09/24/1997    TAKE BACK
RETURN   MAIL    dolphins over the bravely final depen 
2343    14    3    2    31    NULL    0.01    0.03    N    O    10/20/1997    12/03/1997    10/20/1997    DELIVER IN
PERSON   TRUCK    stealthily careful platelet 
2343    3    0    3    6    NULL    0.03    0.08    N    O    12/02/1997    10/16/1997    12/02/1997    TAKE BACK
RETURN   TRUCK    asymptotes asympto 
2368    37    3    1    27    NULL    0.01    0.01    A    F    12/22/1993    11/10/1993    12/22/1993    TAKE BACK
RETURN   REG AIR    realms dazzle furi 
2368    0    0    2    3    NULL    0.10    0.00    R    F    12/01/1993    10/25/1993    12/01/1993    DELIVER IN
PERSON   RAIL    thin dinos th 
2368    36    3    3    47    NULL    0.03    0.00    A    F    01/08/1994    11/23/1993    01/08/1994    NONE    AIR
attainments mold braids : 
2369    67    3    1    21    NULL    0.08    0.06    N    O    10/27/1997    12/02/1997    10/27/1997    COLLECT COD
RAIL    sauternes will n 
2369    27    0    2    17    NULL    0.08    0.04    N    O    01/12/1998    12/27/1997    01/12/1998    NONE    TRUCK
  slow dependen 
2369    0    0    3    5    NULL    0.10    0.01    N    O    10/27/1997    12/03/1997    10/27/1997    DELIVER IN
PERSON   MAIL    fluffy,enticing theodolites 
2369    31    1    4    32    NULL    0.02    0.06    N    O    10/16/1997    11/19/1997    10/16/1997    COLLECT COD
FOB    thin platelets could  
2369    45    1    5    22    NULL    0.09    0.07    N    O    01/18/1998    12/26/1997    01/18/1998    TAKE BACK
RETURN   REG AIR    pains near the slow,brave d 
2370    0    0    1    49    NULL    0.05    0.02    A    F    07/27/1992    08/27/1992    07/27/1992    DELIVER IN
PERSON   TRUCK    frays should have to believe doggedly be 
2370    73    1    2    25    NULL    0.00    0.01    A    F    09/27/1992    09/26/1992    09/27/1992    COLLECT COD
AIR    silent excuses silent excuse the daring, 
2371    13    1    1    11    NULL    0.03    0.03    N    O    10/27/1996    10/11/1996    10/27/1996    DELIVER IN
PERSON   REG AIR    foxes could have to cajole inste 
2371    66    3    2    5    NULL    0.10    0.06    N    O    11/11/1996    10/03/1996    11/11/1996    COLLECT COD
AIR   pearls will eat finally quiet pi 
2371    28    0    3    2    NULL    0.07    0.00    N    O    10/08/1996    10/16/1996    10/08/1996    TAKE BACK
RETURN   REG AIR    slow pinto be 
2371    66    1    4    43    NULL    0.10    0.06    N    O    12/23/1996    10/21/1996    12/23/1996    TAKE BACK
RETURN   MAIL    even,quiet frays serve silently  
2371    78    2    5    30    NULL    0.03    0.05    N    O    10/27/1996    10/25/1996    10/27/1996    DELIVER IN
PERSON   SHIP    enticing grouches among the tith 
2371    0    2    6    50    NULL    0.09    0.03    N    O    12/03/1996    10/01/1996    12/03/1996    TAKE BACK
RETURN   FOB    quickly enticing dinos will lose 
2371    6    3    7    45    NULL    0.08    0.04    N    O    11/28/1996    10/14/1996    11/28/1996    COLLECT COD
RAIL   careful epitaphs should run ! 
2372    4    2    1    43    NULL    0.00    0.02    A    F    04/02/1995    04/03/1995    04/02/1995    NONE    REG
AIR   ironically bold orbits dete 
2372    55    0    2    32    NULL    0.06    0.02    A    F    05/25/1995    05/21/1995    05/25/1995    TAKE BACK
RETURN   FOB    bold tithes poach permanent,bold mu 
2372    23    3    3    45    NULL    0.10    0.07    R    F    04/05/1995    03/27/1995    04/05/1995    NONE    TRUCK
  quietly fluffy excuses before th 
2372    25    3    4    6    NULL    0.04    0.01    R    F    04/26/1995    03/29/1995    04/26/1995    DELIVER IN
PERSON   REG AIR    stealthy pear 
2373    70    2    1    10    NULL    0.02    0.07    N    O    06/28/1997    08/04/1997    06/28/1997    TAKE BACK
RETURN   AIR    Tiresias' over the forge 
2373    54    3    2    38    NULL    0.09    0.01    N    O    08/26/1997    07/11/1997    08/26/1997    DELIVER IN
PERSON   MAIL    pains with 
2373    44    1    3    17    NULL    0.03    0.01    N    O    05/25/1997    07/23/1997    05/25/1997    TAKE BACK
RETURN   RAIL    theodolites theodolite s 
2374    78    2    1    37    NULL    0.01    0.07    R    F    05/12/1992    04/25/1992    05/12/1992    COLLECT COD
MAIL    careful dolphins up the  
2374    12    3    2    25    NULL    0.08    0.05    R    F    06/08/1992    05/11/1992    06/08/1992    DELIVER IN
PERSON   RAIL    bold,silent dinos lose brave,dog 
2374    68    2    3    47    NULL    0.10    0.03    A    F    06/11/1992    06/07/1992    06/11/1992    DELIVER IN
PERSON   MAIL    Tiresias' except the blithe mult 
2374    79    3    4    17    NULL    0.06    0.04    A    F    04/07/1992    05/31/1992    04/07/1992    DELIVER IN
PERSON   AIR    evenly careful multipliers da 
2374    26    3    5    9    NULL    0.09    0.03    R    F    03/29/1992    04/11/1992    03/29/1992    COLLECT COD
RAIL   ironically even Ti 
2375    21    2    1    10    NULL    0.07    0.06    N    O    10/11/1997    10/11/1997    10/11/1997    TAKE BACK
RETURN   RAIL    even excuses with the careful 
2375    30    2    2    14    NULL    0.09    0.00    N    O    08/18/1997    10/22/1997    08/18/1997    DELIVER IN
PERSON   REG AIR    idly idle sheaves throughout the enti 
2375    0    0    3    19    NULL    0.09    0.07    N    O    12/03/1997    10/24/1997    12/03/1997    COLLECT COD
SHIP   boldly quick excuses print  
2375    73    3    4    3    NULL    0.08    0.02    N    O    08/14/1997    09/27/1997    08/14/1997    COLLECT COD
TRUCK   dogged,brave multipliers will 
0    ALGERIA    0    quick dugouts cajole fluffily except the pains
1    ARGENTINA    1    silent,ironic orbits besides the stealthy,silent silen could have to solve blithely ideas --
final,ruthl
2    BRAZIL    1    patterns besides the regular,quick dinos hang in place of the busily busy pearls ; closely sly
decoysboost orbits . 
3    CANADA    1    dolphins dolphin wake .
4    EGYPT    4    close, courts shall are over the brave hockey players quiet,sly instructions can affix can affi
daringTiresias' atop the sly,ironic frays cou 
5    ETHIOPIA    0    thin,dogged excuses ougth to was ougth to wa
6    FRANCE    3    stealthily even attainments among the ruthless,
7    GERMANY    3    permanent platelets shall breach slowly : sly,thin waters past the sly,quiet sentiments must have
tohinder slowly furious,careful forges ? 
8    INDIA    2    somas solve finally according to the regular sheaves silent sheaves boost ideas . sly braids
alongsideof the careful courts doze sly,blithe e 
9    INDONESIA    2    bold instructions boost boos the ideas
10    IRAN    4    orbits do poach ironically ?
11    IRAQ    4    ideas should mold thinly throughout the depths silent Tiresias' despite the
12    JAPAN    2    ironically brave epitaphs can are doggedly .
13    JORDAN    4    dolphins should haggle bravely furious furiou --
14    KENYA    0    Tiresias' must have to sublate --
15    MOROCCO    0    even,sly tithes upon the theodolites lose regularly around the qui
16    MOZAMBIQUE    0    brave,enticing sheaves instead of the quick platelets do hinder carefully at the ideas : idle
Tiresias'idle Tiresias the w 
17    PERU    1    fluffy pinto beans will have to detect detec in place of the quiet
18    CHINA    2    final pains behind the close,silent ideas use furiusly of the daring depths .
19    ROMANIA    3    regularly daring notornis beneath the dogged,close ideas solve busily despite the ruthless hockey
players: evenly quiet pi 
20    SAUDI ARABIA    4    evenly careful carefu grow blithely final notornis :
21    VIETNAM    2    furiusly even attainments may nod never :
22    RUSSIA    3    ruthlessly bold notornis despite the  even tithes believe beside the stealthy attainments :
stealthy,doggeddogge  
23    UNITED KINGDOM    3    courts may breach -- quick,blithe depths doubt careful dinos ?
24    UNITED STATES    1    even,even dependencies above the close dinos eat silently final tithes . enticingly dogged
instructionslose beyon 
0    38    NULL    NULL    06/17/1995    2-HIGH    clerk000000026    0    sauternes nag !
1    46    NULL    NULL    01/26/1998    2-HIGH    clerk000000215    0    dogged,silent somas need to haggle regularly
;evenly  ins 
2    26    NULL    NULL    08/21/1997    3-MEDIUM    clerk000000358    0    thinly sly sl will have to solve --
3    11    NULL    NULL    06/17/1998    5-SLOW    clerk000000070    0    even Tiresias' cajole ruthless,slo
4    14    NULL    NULL    02/05/1992    2-HIGH    clerk000000270    0    patterns affix according to the sly fra
5    23    NULL    NULL    06/23/1998    3-MEDIUM    clerk000000002    0    busily stealthy excuses busily stealthy
excusethe quietly even platelets 
6    2    NULL    NULL    06/03/1992    2-HIGH    clerk000000341    0    doggedly  sheaves may dazzle atop the quick
orbitsescapades nag accordin 
7    49    NULL    NULL    09/17/1995    4-NOT SPECIFIED    clerk000000259    0    furiusly quick pinto beans may grow
finallybeneath the somas i 
8    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
9    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
10    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
11    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
12    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
13    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
14    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
15    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
16    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
17    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
18    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
19    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
20    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
21    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
22    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
23    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
24    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
25    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
26    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
27    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
28    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
29    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
30    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
31    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
32    55    NULL    NULL    07/05/1994    1-URGENT    clerk000000124    0    ,daring warthogs boost s
33    7    NULL    NULL    01/11/1994    5-SLOW    clerk000000397    0    ,bold foxes before the f
34    1    NULL    NULL    04/05/1992    5-SLOW    clerk000000369    0     daring theodolites would pro
35    13    NULL    NULL    05/14/1994    2-HIGH    clerk000000308    0    closely ironic patterns among the tithes try
tonod sauternes -- quiet,qu 
36    25    NULL    NULL    04/07/1993    4-NOT SPECIFIED    clerk000000383    0    finally final notornis s
37    1    NULL    NULL    11/23/1996    3-MEDIUM    clerk000000263    0    quick,dogged asymptotes from the sometimes
s
38    13    NULL    NULL    09/16/1997    3-MEDIUM    clerk000000385    0    gifts from the realms maintai
39    11    NULL    NULL    06/01/1998    4-NOT SPECIFIED    clerk000000048    0    thin,final dolphins serve boldly .
enticing,frets atop the qui 
40    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
41    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
42    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
43    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
44    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
45    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
46    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
47    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
48    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
49    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
50    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
51    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
52    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
53    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
54    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
55    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
56    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
57    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
58    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
59    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
60    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
61    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
62    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
63    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
64    28    NULL    NULL    08/13/1994    4-NOT SPECIFIED    clerk000000105    0    platelets in place of the braids
woulddoubt 
65    19    NULL    NULL    03/14/1998    2-HIGH    clerk000000233    0    always permanent courts subla
66    2    NULL    NULL    08/02/1992    5-SLOW    clerk000000238    0    permanently stealthy patterns under the
doggedsauter 
67    41    NULL    NULL    12/09/1996    5-SLOW    clerk000000349    0    stealthily permanent grouches can are r
68    8    NULL    NULL    12/03/1996    5-SLOW    clerk000000316    0    idle dugouts alongside of the
69    20    NULL    NULL    03/02/1996    5-SLOW    clerk000000037    0    silent gifts hinder ironic sheaves :
ironic,entic
70    23    NULL    NULL    04/03/1992    2-HIGH    clerk000000145    0     dinos must have to use durin
71    37    NULL    NULL    02/07/1994    3-MEDIUM    clerk000000253    0    even decoys should detect boldly ; furi
72    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
73    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
74    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
75    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
76    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
77    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
78    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
79    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
80    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
81    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
82    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
83    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
84    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
85    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
86    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
87    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
88    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
89    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
90    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
91    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
92    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
93    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
94    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
95    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
96    59    NULL    NULL    01/04/1992    4-NOT SPECIFIED    clerk000000058    0    excuses should engage depths :
97    46    NULL    NULL    07/07/1995    1-URGENT    clerk000000188    0    dependencies after the ideas maintain
duringthe slow 
98    4    NULL    NULL    10/05/1997    4-NOT SPECIFIED    clerk000000138    0    warhorses haggle grouches ! brave
couldhave to sleep . 
99    47    NULL    NULL    03/06/1996    5-SLOW    clerk000000097    0    quick excuses do play between the silent
sentimentsi 
100    5    NULL    NULL    04/14/1998    2-HIGH    clerk000000290    0    sentiments toward the busily quick
101    37    NULL    NULL    06/03/1993    1-URGENT    clerk000000055    0    permanent platelets throughou
102    34    NULL    NULL    01/22/1998    3-MEDIUM    clerk000000002    0    quietly fluffy sheaves need to haggle
fluffily? 
103    19    NULL    NULL    02/08/1994    4-NOT SPECIFIED    clerk000000215    0    even,idle depths beyond the e
104    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
105    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
106    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
107    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
108    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
109    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
110    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
111    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
112    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
113    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
114    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
115    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
116    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
117    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
118    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
119    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
120    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
121    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
122    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
123    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
124    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
125    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
126    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
127    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
128    4    NULL    NULL    09/28/1992    5-SLOW    clerk000000199    0     platelets are during the stealthy frays
blithe,quickpain 
129    31    NULL    NULL    05/15/1993    3-MEDIUM    clerk000000286    0    epitaphs past the ironically quick
sauternesneed to dazzle blithely 
130    35    NULL    NULL    02/12/1992    5-SLOW    clerk000000173    0    sly,thin courts atop the
131    52    NULL    NULL    04/17/1992    1-URGENT    clerk000000302    0    enticing asymptotes despite the final
pintobeans 
132    49    NULL    NULL    10/01/1994    1-URGENT    clerk000000122    0    dugouts x_ray :
133    4    NULL    NULL    12/23/1992    2-HIGH    clerk000000397    0    boldly ironic waters within the never final
patterns 
134    8    NULL    NULL    10/12/1993    2-HIGH    clerk000000157    0    bold Tiresias' across the qui
135    56    NULL    NULL    06/12/1994    3-MEDIUM    clerk000000032    0    dogged,quick sheaves since the forges do
engageup the waters ; 
136    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
137    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
138    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
139    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
140    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
141    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
142    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
143    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
144    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
145    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
146    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
147    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
148    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
149    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
150    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
151    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
152    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
153    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
154    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
155    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
156    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
157    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
158    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
159    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
160    31    NULL    NULL    10/14/1997    1-URGENT    clerk000000042    0    brave decoys upon the daring Tiresias'
musthave to serve  
161    14    NULL    NULL    07/03/1994    2-HIGH    clerk000000353    0    final,idle asymptot
162    1    NULL    NULL    02/22/1994    4-NOT SPECIFIED    clerk000000265    0    enticingly even notornis between
theslow dugouts try to lose b 
163    25    NULL    NULL    02/06/1998    2-HIGH    clerk000000156    0    warhorses impress quickly ! quick,
164    43    NULL    NULL    07/31/1994    2-HIGH    clerk000000174    0    ruthless hockey players will hang
165    13    NULL    NULL    04/12/1998    1-URGENT    clerk000000337    0    pains use --
166    5    NULL    NULL    08/27/1992    4-NOT SPECIFIED    clerk000000064    0    regular,ironic excuses m
167    10    NULL    NULL    10/20/1996    4-NOT SPECIFIED    clerk000000236    0    furiusly daring foxes x_ray !
168    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
169    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
170    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
171    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
172    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
173    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
174    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
175    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
176    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
177    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
178    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
179    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
180    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
181    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
182    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
183    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
184    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
185    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
186    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
187    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
188    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
189    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
190    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
191    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
192    43    NULL    NULL    01/02/1995    3-MEDIUM    clerk000000360    0    quiet forges are even grouche
193    10    NULL    NULL    06/09/1997    2-HIGH    clerk000000164    0    fluffy orbits shall have to nod evenly of
thedinos 
194    38    NULL    NULL    11/03/1993    5-SLOW    clerk000000212    0    quiet,quiet asymptotes across the silent
dependencies
195    38    NULL    NULL    01/07/1993    5-SLOW    clerk000000106    0    silent dinos over the depths might engage
tithes: 
196    31    NULL    NULL    06/08/1994    1-URGENT    clerk000000249    0    ruthless waters above the boldly daring
foxesintegrate  among the b 
197    53    NULL    NULL    05/28/1993    5-SLOW    clerk000000291    0    fluffy,fluffy instructions inside the
sometimesstealthy asympt 
198    37    NULL    NULL    10/31/1997    3-MEDIUM    clerk000000195    0    dogged gifts over the careful dugouts
needto breach quiet 
199    10    NULL    NULL    09/26/1997    5-SLOW    clerk000000170    0    enticingly permanent sentiments toward the
dogged,closefrets doze on the 
200    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
201    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
202    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
203    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
204    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
205    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
206    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
207    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
208    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
209    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
210    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
211    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
212    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
213    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
214    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
215    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
216    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
217    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
218    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
219    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
220    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
221    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
222    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
223    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
224    34    NULL    NULL    07/20/1996    1-URGENT    clerk000000180    0    frets print enticingly of the slowly busy
escapades
225    52    NULL    NULL    07/23/1997    2-HIGH    clerk000000354    0    realms x_ray !
226    49    NULL    NULL    04/18/1995    1-URGENT    clerk000000167    0    carefully daring platele
227    56    NULL    NULL    09/23/1993    3-MEDIUM    clerk000000046    0    regular courts by the regularly permanent
braidsmight run agai 
228    22    NULL    NULL    06/05/1998    2-HIGH    clerk000000013    0    dogged epitaphs among the never final r
229    53    NULL    NULL    12/17/1995    4-NOT SPECIFIED    clerk000000383    0    tithes doubt furiusly inside the
theodolites
230    59    NULL    NULL    10/11/1995    4-NOT SPECIFIED    clerk000000066    0    waters eat silently ruthless
multipliers! busy,blith 
231    2    NULL    NULL    01/20/1993    3-MEDIUM    clerk000000207    0    boldly final somas excep
232    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
233    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
234    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
235    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
236    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
237    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
238    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
239    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
240    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
241    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
242    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
243    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
244    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
245    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
246    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
247    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
248    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
249    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
250    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
251    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
252    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
253    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
254    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
255    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
256    28    NULL    NULL    07/30/1992    4-NOT SPECIFIED    clerk000000313    0    sometimes blithe ideas snooze
carefully? gifts will have to affix -- enticing 
257    13    NULL    NULL    03/28/1997    1-URGENT    clerk000000263    0    furious,enticing foxes for the thinly
regula
258    26    NULL    NULL    09/19/1994    3-MEDIUM    clerk000000141    0    fluffy,bold theodolites besides the ideas
mustdazzle 
259    44    NULL    NULL    12/03/1994    4-NOT SPECIFIED    clerk000000282    0    regular sentiments cajole upon the
always Tiresias' idle, real 
260    25    NULL    NULL    03/21/1998    5-SLOW    clerk000000125    0    busy instructions cajole through the th
261    47    NULL    NULL    01/08/1996    1-URGENT    clerk000000376    0    dolphins could have to nag
stealthy,doggedsomas ? 
262    56    NULL    NULL    08/21/1997    3-MEDIUM    clerk000000323    0    furious,blithe realms could have t
263    25    NULL    NULL    10/21/1993    4-NOT SPECIFIED    clerk000000049    0    silent grouches do nod doggedly
accordingto the dinos 
264    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
265    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
266    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
267    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
268    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
269    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
270    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
271    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
272    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
273    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
274    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
275    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
276    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
277    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
278    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
279    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
280    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
281    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
282    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
283    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
284    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
285    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
286    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
287    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
288    8    NULL    NULL    10/20/1993    4-NOT SPECIFIED    clerk000000016    0    evenly thin thi toward the bo
289    19    NULL    NULL    09/30/1992    3-MEDIUM    clerk000000313    0    enticing,thin grouches do cajole r
290    29    NULL    NULL    09/11/1995    3-MEDIUM    clerk000000258    0    idle,permanent forges from the
silent,blithedinos in 
291    20    NULL    NULL    09/27/1996    1-URGENT    clerk000000165    0    brave tithes nag doggedl
292    56    NULL    NULL    10/12/1993    1-URGENT    clerk000000138    0    dogged pinto beans will serve daringly by
thequi 
293    31    NULL    NULL    11/14/1993    2-HIGH    clerk000000336    0    silently sly waters do detect stea
294    22    NULL    NULL    09/26/1995    5-SLOW    clerk000000064    0    always blithe realms try to kindle bravely
fromthe r 
295    20    NULL    NULL    08/28/1994    5-SLOW    clerk000000147    0    careful theodolites could have to integrate
finallyforges : sh 
296    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
297    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
298    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
299    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
300    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
301    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
302    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
303    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
304    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
305    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
306    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
307    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
308    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
309    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
310    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
311    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
312    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
313    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
314    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
315    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
316    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
317    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
318    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
319    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
320    38    NULL    NULL    01/07/1993    4-NOT SPECIFIED    clerk000000359    0    multipliers might maintain busily
?
321    32    NULL    NULL    11/10/1997    2-HIGH    clerk000000260    0    sentiments for the notor
322    49    NULL    NULL    04/28/1994    4-NOT SPECIFIED    clerk000000175    0    dogged gifts maintain daringl
323    46    NULL    NULL    08/31/1993    1-URGENT    clerk000000198    0    even,brave sauternes even,brave sauterne
kindleironic,quiet warthogs . d 
324    19    NULL    NULL    06/16/1994    5-SLOW    clerk000000056    0    slow,regular somas lose grouches !
ironic,stealthyfrets above the b 
325    8    NULL    NULL    07/06/1997    4-NOT SPECIFIED    clerk000000038    0    regularly careful pinto beans can
serveideas : 
326    23    NULL    NULL    12/19/1993    5-SLOW    clerk000000215    0    quiet sheaves from the sly sh
327    17    NULL    NULL    08/02/1992    5-SLOW    clerk000000345    0    frays during the enticing,qui
328    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
329    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
330    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
331    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
332    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
333    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
334    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
335    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
336    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
337    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
338    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
339    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
340    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
341    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
342    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
343    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
344    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
345    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
346    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
347    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
348    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
349    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
350    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
351    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
352    47    NULL    NULL    10/27/1993    2-HIGH    clerk000000139    0    enticing,dogged somas shall believe
blithelyeven,enticing attainmen 
353    37    NULL    NULL    08/19/1996    1-URGENT    clerk000000284    0    final forges sleep thinly : brave,daring
bra
354    46    NULL    NULL    07/13/1992    4-NOT SPECIFIED    clerk000000286    0    permanently  waters shal
355    40    NULL    NULL    12/02/1994    5-SLOW    clerk000000026    0    somas upon the close courts ougth to x_ray
blithelydespite the dolphins  
356    32    NULL    NULL    02/05/1993    1-URGENT    clerk000000149    0    thin,quick realms throughout the
permanent,s
357    11    NULL    NULL    03/24/1994    4-NOT SPECIFIED    clerk000000156    0    silent,brave forges nag daringly
withthe busy instructions  stealthy war 
358    20    NULL    NULL    01/28/1997    3-MEDIUM    clerk000000192    0    orbits against the brave,dogged foxes do
promisenear the ruthl 
359    25    NULL    NULL    05/21/1998    1-URGENT    clerk000000389    0    sometimes permanent foxes can integrate
pastthe close,sly 
360    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
361    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
362    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
363    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
364    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
365    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
366    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
367    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
368    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
369    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
370    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
371    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
372    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
373    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
374    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
375    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
376    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
377    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
378    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
379    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
380    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
381    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
382    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
383    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
384    29    NULL    NULL    03/28/1994    5-SLOW    clerk000000157    0    pearls among the final epitaphs snooze over
thewarth 
385    23    NULL    NULL    05/08/1997    2-HIGH    clerk000000006    0    blithely thin frets beyond the quick,brave
decoysdoze among the fluffy a 
386    5    NULL    NULL    02/07/1992    4-NOT SPECIFIED    clerk000000237    0    quick,dogged depths solve
ironicallyduring the never even Tiresias' 
387    5    NULL    NULL    11/27/1996    5-SLOW    clerk000000090    0    notornis in place of the
388    8    NULL    NULL    04/04/1996    4-NOT SPECIFIED    clerk000000073    0    slowly idle tithes among the
thin,boldbol engage blithe,careful pearls . 
389    32    NULL    NULL    08/14/1997    5-SLOW    clerk000000144    0    furious, sauternes along the
390    23    NULL    NULL    05/15/1992    2-HIGH    clerk000000148    0    ruthless Tiresias' on the never busy fo
391    16    NULL    NULL    12/06/1996    3-MEDIUM    clerk000000389    0    dogged,permanent braids
392    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
393    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
394    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
395    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
396    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
397    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
398    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
399    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
400    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
401    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
402    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
403    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
404    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
405    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
406    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
407    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
408    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
409    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
410    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
411    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
412    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
413    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
414    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
415    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
416    20    NULL    NULL    02/12/1994    1-URGENT    clerk000000155    0    escapades shall dazzle through the
decoys
417    44    NULL    NULL    09/04/1993    5-SLOW    clerk000000217    0    epitaphs in place of the ,furious patterns
promis
418    43    NULL    NULL    05/17/1996    5-SLOW    clerk000000041    0    quickly busy orbits must have to engage
slylywarthog 
419    5    NULL    NULL    02/13/1993    4-NOT SPECIFIED    clerk000000346    0    fluffy somas are sl
420    13    NULL    NULL    09/06/1993    2-HIGH    clerk000000335    0    idle,ruthless courts without the
daring,closeattainments  
421    46    NULL    NULL    01/31/1996    3-MEDIUM    clerk000000054    0    ,blithe dinos thrash thras frets with the
slylyruthless platelets may na 
422    13    NULL    NULL    07/19/1994    2-HIGH    clerk000000066    0    notornis will promi
423    31    NULL    NULL    05/28/1997    2-HIGH    clerk000000167    0    even tithes shall sleep carefully ; orb
424    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
425    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
426    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
427    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
428    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
429    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
430    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
431    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
432    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
433    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
434    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
435    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
436    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
437    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
438    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
439    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
440    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
441    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
442    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
443    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
444    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
445    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
446    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
447    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
448    40    NULL    NULL    01/27/1995    4-NOT SPECIFIED    clerk000000104    0    permanently idle depths since
449    55    NULL    NULL    02/07/1993    4-NOT SPECIFIED    clerk000000283    0    slowly slow ideas hang carefully ?
forgessu 
450    10    NULL    NULL    07/18/1993    2-HIGH    clerk000000117    0    busily quiet platelets about the
regular,slowbraids could 
451    23    NULL    NULL    11/30/1993    5-SLOW    clerk000000080    0    excuses do eat doggedly up the rut
452    49    NULL    NULL    12/22/1997    3-MEDIUM    clerk000000266    0    silently ruthless foxes must snooze
sly,quietideas ! final, epitaphs oug 
453    11    NULL    NULL    04/10/1997    3-MEDIUM    clerk000000224    0    ironic,quiet grouches could x_ray slowly
?slow,f 
454    50    NULL    NULL    07/06/1997    4-NOT SPECIFIED    clerk000000368    0    dogged,ironic pearls alongside of
theregular pains c 
455    20    NULL    NULL    10/28/1993    2-HIGH    clerk000000297    0    carefully enticing braids over the always
br
456    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
457    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
458    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
459    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
460    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
461    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
462    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
463    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
464    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
465    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
466    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
467    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
468    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
469    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
470    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
471    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
472    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
473    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
474    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
475    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
476    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
477    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
478    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
479    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
480    34    NULL    NULL    07/15/1992    2-HIGH    clerk000000082    0    quietly careful depths should promise
sheaves? fluffy forges c 
481    34    NULL    NULL    04/10/1997    5-SLOW    clerk000000320    0    dependencies outside the blithe frays
hindersometimes silent warhor 
482    35    NULL    NULL    06/03/1994    5-SLOW    clerk000000064    0    quiet,close depths do doubt quickly ent
483    52    NULL    NULL    02/17/1997    3-MEDIUM    clerk000000202    0    busily final tithes are . final Tiresias'
mightc 
484    7    NULL    NULL    11/20/1996    1-URGENT    clerk000000309    0    final,  impress . daring,  un
485    38    NULL    NULL    10/13/1997    2-HIGH    clerk000000139    0    gifts could have to detect -- even,brav
486    43    NULL    NULL    01/07/1994    4-NOT SPECIFIED    clerk000000360    0    careful, notornis need to haggle
slylyupon the quick 
487    56    NULL    NULL    11/29/1992    4-NOT SPECIFIED    clerk000000252    0    Tiresias' under the pinto beans
couldhave t 
488    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
489    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
490    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
491    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
492    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
493    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
494    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
495    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
496    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
497    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
498    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
499    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
500    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
501    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
502    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
503    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
504    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
505    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
506    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
507    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
508    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
509    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
510    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
511    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
512    59    NULL    NULL    10/10/1993    2-HIGH    clerk000000351    0    sly,sly dolphins instead of the
ruthless,closepearls could hav 
513    52    NULL    NULL    01/21/1994    1-URGENT    clerk000000385    0    furious sheaves alongside of
514    2    NULL    NULL    01/10/1998    1-URGENT    clerk000000028    0    slyly quick multipliers would nod thinly
--
515    43    NULL    NULL    06/26/1996    1-URGENT    clerk000000305    0    dogged pains print furiusly --
516    7    NULL    NULL    08/23/1997    1-URGENT    clerk000000062    0     in place of the permanently
517    49    NULL    NULL    07/16/1992    5-SLOW    clerk000000041    0    evenly ironic notornis shall have to hang
permanentlybeyo 
518    16    NULL    NULL    12/16/1997    4-NOT SPECIFIED    clerk000000332    0    fluffy,silent forges near the
brave,closeattainments hang around the bra 
519    16    NULL    NULL    09/12/1994    4-NOT SPECIFIED    clerk000000236    0    multipliers snooze slyly
enticinglyironic patterns ? 
520    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
521    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
522    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
523    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
524    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
525    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
526    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
527    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
528    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
529    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
530    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
531    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
532    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
533    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
534    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
535    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
536    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
537    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
538    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
539    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
540    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
541    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
542    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
543    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
544    52    NULL    NULL    05/24/1992    5-SLOW    clerk000000202    0    blithe grouches nag ruth
545    16    NULL    NULL    07/05/1993    5-SLOW    clerk000000079    0    dogged courts between the som
546    47    NULL    NULL    12/18/1992    1-URGENT    clerk000000214    0    regular frets could x_ray closely
alongsideof the orbits regularly brave 
547    28    NULL    NULL    06/16/1994    3-MEDIUM    clerk000000097    0    silent foxes try to poach after the quick
excusesquick,busy gifts u 
548    44    NULL    NULL    03/05/1992    2-HIGH    clerk000000243    0    Tiresias' Tiresias
549    13    NULL    NULL    04/09/1994    2-HIGH    clerk000000131    0    permanent,stealthy notornis up the
quiet,sil
550    5    NULL    NULL    05/20/1993    2-HIGH    clerk000000325    0    sly pinto beans should have to sublate by
thefinal s 
551    22    NULL    NULL    04/15/1998    5-SLOW    clerk000000054    0    fluffy,quick dependencie
552    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
553    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
554    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
555    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
556    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
557    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
558    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
559    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
560    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
561    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
562    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
563    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
564    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
565    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
566    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
567    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
568    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
569    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
570    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
571    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
572    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
573    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
574    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
575    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
576    35    NULL    NULL    05/06/1992    2-HIGH    clerk000000051    0    escapades use gifts gift final,blithe
grouchescan boost always 
577    43    NULL    NULL    08/29/1996    1-URGENT    clerk000000231    0    stealthily close patterns ougth to eat
578    10    NULL    NULL    10/29/1995    5-SLOW    clerk000000062    0    busy,ruthless ideas coul
579    11    NULL    NULL    05/30/1994    4-NOT SPECIFIED    clerk000000303    0    brave warhorses beyond the
sly,ironicp 
580    40    NULL    NULL    01/20/1994    5-SLOW    clerk000000055    0    grouches around the asymptotes sha
581    8    NULL    NULL    03/05/1993    4-NOT SPECIFIED    clerk000000373    0    notornis sublate ?
582    14    NULL    NULL    06/02/1994    5-SLOW    clerk000000121    0    theodolites besides the idle depths sublate
boldlybeneath the bravely ru 
583    50    NULL    NULL    11/28/1994    2-HIGH    clerk000000388    0    idle,silent dolphins affix busily affix
busilasymptotes ? 
584    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
585    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
586    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
587    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
588    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
589    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
590    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
591    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
592    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
593    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
594    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
595    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
596    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
597    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
598    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
599    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
600    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
601    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
602    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
603    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
604    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
605    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
606    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
607    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
608    31    NULL    NULL    01/25/1994    1-URGENT    clerk000000070    0    final,busy patterns along the close
tithesintegrate doggedly enticingly  
609    14    NULL    NULL    02/21/1994    3-MEDIUM    clerk000000371    0    close ideas with the always  forges
snoozeoutsid 
610    41    NULL    NULL    09/27/1997    4-NOT SPECIFIED    clerk000000141    0    escapades may print --
permanent,slowideas  
611    23    NULL    NULL    09/28/1995    3-MEDIUM    clerk000000354    0    silent hockey players sh
612    43    NULL    NULL    09/21/1997    3-MEDIUM    clerk000000211    0    regular,slow theodolites besides the
sauternesin 
613    50    NULL    NULL    10/30/1997    4-NOT SPECIFIED    clerk000000275    0    quick,quiet frays could have to ma
614    52    NULL    NULL    10/31/1992    1-URGENT    clerk000000252    0    fluffy braids along the never careful
sentimentspromise i 
615    28    NULL    NULL    01/24/1997    5-SLOW    clerk000000201    0    hockey players need to haggle before the
close,thinrealms ruthless, 
616    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
617    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
618    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
619    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
620    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
621    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
622    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
623    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
624    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
625    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
626    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
627    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
628    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
629    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
630    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
631    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
632    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
633    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
634    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
635    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
636    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
637    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
638    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
639    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
640    16    NULL    NULL    07/22/1992    4-NOT SPECIFIED    clerk000000051    0    furious pinto beans doubt :
641    20    NULL    NULL    05/25/1998    3-MEDIUM    clerk000000125    0    bold theodolites bold theodolite the
thin,ironicgrouches can dazzle slyl 
642    1    NULL    NULL    06/22/1992    2-HIGH    clerk000000040    0    daring decoys through the permanent hockey
playershinder never 
643    4    NULL    NULL    01/10/1995    3-MEDIUM    clerk000000111    0    final,final sentime
644    20    NULL    NULL    09/07/1992    2-HIGH    clerk000000108    0    thin ideas according to the p
645    2    NULL    NULL    02/06/1992    3-MEDIUM    clerk000000296    0    careful,fluffy frays dazzle ! permanently
enticingco 
646    40    NULL    NULL    11/24/1993    1-URGENT    clerk000000314    0    furious,close somas into the darin
647    46    NULL    NULL    04/13/1996    5-SLOW    clerk000000093    0    slow,ironic frays breach
648    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
649    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
650    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
651    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
652    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
653    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
654    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
655    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
656    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
657    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
658    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
659    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
660    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
661    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
662    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
663    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
664    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
665    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
666    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
667    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
668    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
669    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
670    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
671    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
672    59    NULL    NULL    03/10/1994    1-URGENT    clerk000000010    0    idly furious dependencies print quietly .
wa
673    46    NULL    NULL    05/30/1992    3-MEDIUM    clerk000000060    0    patterns kindle above th
674    34    NULL    NULL    05/23/1998    2-HIGH    clerk000000213    0    quick somas will x_ray silent,stea
675    35    NULL    NULL    10/15/1992    1-URGENT    clerk000000338    0    bold,blithe attainments must print boldly
?
676    53    NULL    NULL    10/06/1993    3-MEDIUM    clerk000000149    0    idle dolphins toward the quiet,busy
Tiresias'are idly rea 
677    59    NULL    NULL    07/31/1994    5-SLOW    clerk000000236    0    silent,final forges ougt
678    13    NULL    NULL    09/06/1996    4-NOT SPECIFIED    clerk000000125    0    sly,careful forges sleep always
escapades. 
679    41    NULL    NULL    02/25/1993    4-NOT SPECIFIED    clerk000000292    0    warthogs breach ironically sl
680    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
681    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
682    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
683    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
684    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
685    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
686    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
687    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
688    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
689    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
690    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
691    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
692    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
693    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
694    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
695    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
696    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
697    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
698    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
699    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
700    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
701    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
702    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
703    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
704    38    NULL    NULL    03/26/1997    3-MEDIUM    clerk000000202    0    doggedly quiet warhorses
705    16    NULL    NULL    04/27/1994    2-HIGH    clerk000000216    0    brave,fluffy tithes inside the even dinos
sl
706    53    NULL    NULL    10/25/1993    2-HIGH    clerk000000033    0    warthogs shall have to mold over the
ruthles
707    29    NULL    NULL    04/11/1996    4-NOT SPECIFIED    clerk000000066    0    Tiresias' need to mold around the
carefullyquiet platelets 
708    47    NULL    NULL    11/12/1995    5-SLOW    clerk000000266    0    furious,sly courts wake :
709    1    NULL    NULL    05/11/1996    2-HIGH    clerk000000385    0    frets boost regularly notornis ?
710    38    NULL    NULL    07/27/1998    2-HIGH    clerk000000224    0    pinto beans under the enticing,silent
theodolitescan dazzle quietly 
711    41    NULL    NULL    07/21/1997    5-SLOW    clerk000000305    0    ,careful waters according to the even
excuseskindle  
712    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
713    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
714    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
715    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
716    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
717    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
718    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
719    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
720    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
721    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
722    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
723    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
724    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
725    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
726    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
727    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
728    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
729    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
730    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
731    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
732    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
733    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
734    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
735    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
736    7    NULL    NULL    12/11/1996    2-HIGH    clerk000000367    0    thin instructions between the quickly  pains
canwake asym 
737    17    NULL    NULL    07/23/1992    3-MEDIUM    clerk000000122    0    evenly stealthy sauternes was ? as
738    13    NULL    NULL    07/25/1994    2-HIGH    clerk000000282    0    somas alongside of the patterns use
stealthilyslow,close depths . sly di 
739    38    NULL    NULL    02/20/1992    5-SLOW    clerk000000222    0    dogged,enticing frets within the sheave
740    34    NULL    NULL    05/14/1995    1-URGENT    clerk000000330    0    permanent, grouches on the platelets sh
741    16    NULL    NULL    09/12/1992    1-URGENT    clerk000000165    0    frets until the brave,quick platelets
cajolesilently 
742    8    NULL    NULL    05/27/1992    2-HIGH    clerk000000119    0    quietly blithe sheaves in place of the
thin,carefulasymptotes  
743    44    NULL    NULL    08/10/1992    1-URGENT    clerk000000380    0    instructions should have to eat finally ?
sly,finaldependencies abo 
744    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
745    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
746    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
747    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
748    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
749    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
750    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
751    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
752    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
753    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
754    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
755    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
756    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
757    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
758    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
759    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
760    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
761    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
762    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
763    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
764    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
765    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
766    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
767    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
768    20    NULL    NULL    05/10/1994    2-HIGH    clerk000000017    0    fluffily dogged gro
769    56    NULL    NULL    09/07/1993    3-MEDIUM    clerk000000140    0    closely bold dinos could have
770    7    NULL    NULL    02/17/1998    1-URGENT    clerk000000031    0    bold tithes despite the warhorses must
haveto gr 
771    40    NULL    NULL    11/16/1994    4-NOT SPECIFIED    clerk000000191    0    ruthless dolphins must believe
regular,closehockey players --  unwind ?  
772    31    NULL    NULL    08/07/1992    1-URGENT    clerk000000336    0    silently quick asymptotes between the
instruction
773    55    NULL    NULL    02/06/1993    4-NOT SPECIFIED    clerk000000068    0    notornis without the blithely
blithehockey players doubt  
774    20    NULL    NULL    03/03/1994    3-MEDIUM    clerk000000191    0    bravely slow frays bravely slow fray
dazzleironically up the g 
775    40    NULL    NULL    01/10/1992    3-MEDIUM    clerk000000222    0    ruthlessly close dolphins wil
776    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
777    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
778    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
779    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
780    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
781    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
782    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
783    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
784    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
785    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
786    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
787    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
788    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
789    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
790    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
791    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
792    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
793    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
794    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
795    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
796    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
797    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
798    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
799    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
800    19    NULL    NULL    12/06/1996    5-SLOW    clerk000000395    0    bravely bold dependencies beneath the
permanentpains kindle quickly 
801    58    NULL    NULL    03/25/1997    1-URGENT    clerk000000251    0     stealthy dependencies grow s
802    47    NULL    NULL    06/20/1994    3-MEDIUM    clerk000000182    0    warhorses must have to lose beyond the
ironicdugouts 
803    35    NULL    NULL    01/15/1995    4-NOT SPECIFIED    clerk000000156    0    careful,close waters among the slo
804    37    NULL    NULL    09/16/1995    1-URGENT    clerk000000399    0    busily stealthy forges behind the
daringlysilent hockey player 
805    34    NULL    NULL    10/26/1994    2-HIGH    clerk000000011    0    busy,idle ideas poach !
806    46    NULL    NULL    01/30/1996    1-URGENT    clerk000000308    0    blithely ruthless sentiments could kind
807    56    NULL    NULL    09/27/1994    3-MEDIUM    clerk000000304    0    enticing  on the even, pearls
808    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
809    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
810    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
811    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
812    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
813    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
814    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
815    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
816    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
817    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
818    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
819    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
820    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
821    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
822    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
823    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
824    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
825    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
826    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
827    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
828    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
829    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
830    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
831    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
832    25    NULL    NULL    04/03/1996    3-MEDIUM    clerk000000075    0    close courts above the even,quiet
epitaphscould have to lose permanently fina 
833    49    NULL    NULL    01/06/1997    1-URGENT    clerk000000123    0    enticing,slow foxes amon
834    43    NULL    NULL    09/04/1992    4-NOT SPECIFIED    clerk000000183    0    escapades around the enticing,
realmsk 
835    59    NULL    NULL    04/29/1996    4-NOT SPECIFIED    clerk000000046    0    pains beneath the even dolphins
beneaththe even  
836    19    NULL    NULL    06/12/1993    1-URGENT    clerk000000124    0    bravely even asymptotes besides the
quicklysly pains try to x_ray carefu 
837    38    NULL    NULL    03/26/1997    3-MEDIUM    clerk000000220    0    quiet dinos do eat !
838    56    NULL    NULL    02/03/1995    2-HIGH    clerk000000234    0    careful sauternes unwind
839    5    NULL    NULL    01/31/1994    5-SLOW    clerk000000036    0    brave platelets must bel
840    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
841    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
842    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
843    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
844    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
845    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
846    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
847    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
848    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
849    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
850    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
851    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
852    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
853    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
854    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
855    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
856    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
857    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
858    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
859    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
860    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
861    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
862    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
863    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
864    5    NULL    NULL    11/15/1995    1-URGENT    clerk000000253    0    theodolites will have to kindle courts
court
865    31    NULL    NULL    04/11/1993    4-NOT SPECIFIED    clerk000000081    0     frets unwind among the  sheaves
866    49    NULL    NULL    03/10/1997    5-SLOW    clerk000000108    0    busy realms poach poac the even multipliers
fluff
867    19    NULL    NULL    03/04/1997    1-URGENT    clerk000000030    0    even pains need to poach ironic
theodolites: 
868    47    NULL    NULL    05/06/1998    5-SLOW    clerk000000107    0    bravely stealthy stealth thra
869    43    NULL    NULL    06/18/1995    4-NOT SPECIFIED    clerk000000019    0    pearls within the dolphins can
thinlybrave sheaves . 
870    37    NULL    NULL    10/24/1992    3-MEDIUM    clerk000000274    0    tithes along the pearls kindle during the
regular,fluffyorbits . re 
871    31    NULL    NULL    10/13/1994    2-HIGH    clerk000000171    0    blithe asymptotes would solve care
872    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
873    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
874    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
875    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
876    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
877    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
878    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
879    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
880    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
881    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
882    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
883    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
884    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
885    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
886    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
887    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
888    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
889    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
890    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
891    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
892    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
893    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
894    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
895    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
896    58    NULL    NULL    04/19/1993    4-NOT SPECIFIED    clerk000000372    0    dugouts wake . blithe epitaphs
promisedoggedly quick 
897    11    NULL    NULL    06/03/1992    3-MEDIUM    clerk000000308    0    realms except the entici
898    50    NULL    NULL    07/14/1995    3-MEDIUM    clerk000000091    0    even,bold dependencies should believe
quickdolphins . 
899    59    NULL    NULL    01/25/1992    1-URGENT    clerk000000088    0    sly dugouts shall have to wake shall have
to
900    32    NULL    NULL    10/25/1993    4-NOT SPECIFIED    clerk000000193    0    silently stealthy courts hinder
hinde
901    26    NULL    NULL    09/10/1993    5-SLOW    clerk000000294    0    blithely slow frets cajole never --
902    14    NULL    NULL    05/08/1997    5-SLOW    clerk000000174    0    busy decoys play close,ironic frets ;
dolphinsengage slyly around the i 
903    34    NULL    NULL    12/24/1992    5-SLOW    clerk000000006    0    braids since the even,bold pinto beans
904    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
905    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
906    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
907    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
908    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
909    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
910    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
911    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
912    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
913    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
914    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
915    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
916    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
917    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
918    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
919    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
920    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
921    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
922    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
923    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
924    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
925    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
926    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
927    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
928    5    NULL    NULL    12/13/1996    3-MEDIUM    clerk000000195    0    slyly bold realms shall poach boldly
decoys! 
929    37    NULL    NULL    01/24/1992    4-NOT SPECIFIED    clerk000000365    0    furious dolphins furious
930    8    NULL    NULL    06/22/1996    2-HIGH    clerk000000327    0    multipliers impress boldly !
931    28    NULL    NULL    06/01/1994    2-HIGH    clerk000000053    0    ironically silent somas by the finally
ruthlessescapades grow upon the i 
932    17    NULL    NULL    10/20/1995    4-NOT SPECIFIED    clerk000000243    0    close,sly realms engage bravely
multipliers: Tiresias' gr 
933    50    NULL    NULL    06/12/1992    5-SLOW    clerk000000189    0    dependencies should have to  shoul
934    38    NULL    NULL    03/06/1993    5-SLOW    clerk000000372    0    doggedly slow dependencies upon the
warhorsesboost regular courts ; 
935    4    NULL    NULL    09/08/1995    4-NOT SPECIFIED    clerk000000115    0    close,thin grouches will have to
hagglefluf 
936    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
937    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
938    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
939    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
940    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
941    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
942    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
943    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
944    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
945    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
946    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
947    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
948    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
949    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
950    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
951    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
952    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
953    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
954    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
955    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
956    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
957    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
958    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
959    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
960    35    NULL    NULL    10/16/1996    5-SLOW    clerk000000098    0     will have to doze finally fr
961    2    NULL    NULL    07/17/1998    1-URGENT    clerk000000175    0    finally permanent platel
962    8    NULL    NULL    09/24/1997    2-HIGH    clerk000000045    0    brave,fluffy realms should wa
963    26    NULL    NULL    03/20/1998    4-NOT SPECIFIED    clerk000000290    0    permanently thin patterns impress
regul
964    56    NULL    NULL    07/26/1998    5-SLOW    clerk000000049    0    epitaphs could have to doze evenly
965    31    NULL    NULL    03/06/1993    5-SLOW    clerk000000244    0    enticing,idle forges unw
966    47    NULL    NULL    01/21/1993    1-URGENT    clerk000000129    0    thin orbits eat quietly instead of
967    32    NULL    NULL    01/14/1998    2-HIGH    clerk000000210    0    hockey players x_ray doggedly to the
regulardepe 
968    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
969    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
970    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
971    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
972    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
973    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
974    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
975    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
976    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
977    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
978    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
979    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
980    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
981    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
982    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
983    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
984    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
985    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
986    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
987    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
988    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
989    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
990    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
991    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
992    20    NULL    NULL    03/28/1997    3-MEDIUM    clerk000000054    0    regular tithes may integrate
993    1    NULL    NULL    07/20/1993    4-NOT SPECIFIED    clerk000000099    0    asymptotes between the stealthy
dependenciesplay quietly play quiet 
994    49    NULL    NULL    06/04/1997    2-HIGH    clerk000000051    0    ruthless,sly dolphins ha
995    14    NULL    NULL    09/21/1997    2-HIGH    clerk000000058    0    never  pinto beans toward the bravely even
somassolve frets fret fr 
996    58    NULL    NULL    11/28/1995    2-HIGH    clerk000000300    0    instructions within the excuses must sleep
e
997    32    NULL    NULL    06/01/1994    5-SLOW    clerk000000335    0    braids could have to was sometimes in place
ofthe theodolites blithely q 
998    26    NULL    NULL    04/18/1997    5-SLOW    clerk000000002    0    daring,slow gifts would doubt silently
quickTiresias' ? w 
999    28    NULL    NULL    04/01/1997    5-SLOW    clerk000000393    0    slow grouches in place of the careful,quiet
realmsare ruthless,fina 
1000    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1001    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1002    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1003    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1004    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1005    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1006    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1007    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1008    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1009    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1010    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1011    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1012    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1013    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1014    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1015    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1016    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1017    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1018    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1019    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1020    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1021    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1022    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1023    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1024    52    NULL    NULL    07/06/1993    2-HIGH    clerk000000200    0    sometimes permanent pint
1025    53    NULL    NULL    10/20/1992    1-URGENT    clerk000000360    0    dugouts thrash orbits orbit bold,careful
decoysdoubt except the thin,quiet ti 
1026    22    NULL    NULL    11/01/1997    2-HIGH    clerk000000370    0    silent forges could are boldly from the
quicksen 
1027    13    NULL    NULL    09/12/1996    5-SLOW    clerk000000023    0    daring,even warthogs will kindle sometimes
furiou
1028    7    NULL    NULL    12/04/1997    5-SLOW    clerk000000262    0    fluffy,silent grouches ougth to wa
1029    50    NULL    NULL    04/19/1995    1-URGENT    clerk000000188    0    careful,idle depths
1030    55    NULL    NULL    12/13/1996    5-SLOW    clerk000000087    0    escapades near the frays
1031    23    NULL    NULL    03/18/1995    3-MEDIUM    clerk000000191    0    never idle dependencies x_ray into the
1032    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1033    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1034    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1035    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1036    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1037    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1038    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1039    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1040    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1041    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1042    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1043    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1044    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1045    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1046    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1047    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1048    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1049    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1050    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1051    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1052    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1053    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1054    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1055    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1056    19    NULL    NULL    09/21/1994    4-NOT SPECIFIED    clerk000000215    0    even realms among the ironic
instructionssleep brave gifts brave gi 
1057    7    NULL    NULL    11/12/1992    3-MEDIUM    clerk000000145    0    furious,ironic warthogs hinder silent
pintobeans : p 
1058    22    NULL    NULL    02/25/1994    4-NOT SPECIFIED    clerk000000095    0    bold sauternes during the dugouts
tryto affix bravel 
1059    41    NULL    NULL    07/02/1995    2-HIGH    clerk000000062    0    slow frets in place of the fl
1060    53    NULL    NULL    08/24/1993    5-SLOW    clerk000000172    0    stealthy foxes are fluffily idle, somas ?
daring,
1061    35    NULL    NULL    06/05/1997    5-SLOW    clerk000000144    0    ,stealthy foxes shall have to impress a
1062    28    NULL    NULL    09/20/1994    5-SLOW    clerk000000256    0    frets under the careful,ironic platelets
hindersilent Tiresias' . even,d 
1063    7    NULL    NULL    07/27/1994    2-HIGH    clerk000000269    0    busy,ironic dinos dazzle theodolites --
1064    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1065    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1066    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1067    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1068    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1069    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1070    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1071    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1072    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1073    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1074    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1075    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1076    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1077    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1078    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1079    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1080    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1081    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1082    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1083    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1084    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1085    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1086    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1087    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1088    10    NULL    NULL    11/25/1997    2-HIGH    clerk000000243    0    ironically stealthy dolphins outside th
1089    53    NULL    NULL    05/16/1997    4-NOT SPECIFIED    clerk000000152    0    enticing,silent courts u
1090    4    NULL    NULL    12/05/1995    2-HIGH    clerk000000382    0    carefully blithe depths around the stealthy
forgesnag gifts ? enticing,s 
1091    17    NULL    NULL    08/17/1995    2-HIGH    clerk000000357    0    quick,ironic realms arou
1092    16    NULL    NULL    02/24/1994    2-HIGH    clerk000000058    0    foxes must hinder always
1093    7    NULL    NULL    11/04/1993    2-HIGH    clerk000000059    0    close hockey players integrate busily
carefullyironi 
1094    49    NULL    NULL    02/16/1994    5-SLOW    clerk000000362    0    slowly silent multipliers in place of the
hockey 
1095    2    NULL    NULL    09/30/1995    2-HIGH    clerk000000078    0    theodolites integrate above the so
1096    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1097    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1098    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1099    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1100    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1101    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1102    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1103    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1104    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1105    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1106    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1107    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1108    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1109    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1110    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1111    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1112    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1113    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1114    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1115    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1116    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1117    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1118    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1119    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1120    59    NULL    NULL    07/31/1994    4-NOT SPECIFIED    clerk000000117    0    enticing,stealthy waters shou
1121    2    NULL    NULL    02/06/1997    4-NOT SPECIFIED    clerk000000149    0    closely sly instructions to the
foxesmold above the permanent,quiet 
1122    8    NULL    NULL    01/26/1996    1-URGENT    clerk000000391    0    quietly thin foxes throughout the
ruthless,p
1123    14    NULL    NULL    01/03/1992    2-HIGH    clerk000000223    0    idle Tiresias' do thrash -- enticing
plateletsat the frets try to d 
1124    38    NULL    NULL    01/25/1992    4-NOT SPECIFIED    clerk000000275    0    stealthy braids within the
ruthless,permanentsheaves play regu 
1125    28    NULL    NULL    04/26/1996    5-SLOW    clerk000000151    0    ruthlessly fluffy frays instead of the
doggedwarhorses could have t 
1126    1    NULL    NULL    05/02/1995    1-URGENT    clerk000000290    0    permanent dolphins believe against the
forges
1127    11    NULL    NULL    07/21/1994    1-URGENT    clerk000000011    0    instructions across the realm
1128    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1129    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1130    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1131    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1132    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1133    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1134    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1135    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1136    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1137    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1138    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1139    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1140    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1141    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1142    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1143    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1144    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1145    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1146    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1147    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1148    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1149    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1150    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1151    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1152    56    NULL    NULL    11/02/1995    5-SLOW    clerk000000101    0    enticingly blithe frays boost busily
slow,idlegrouches ; 
1153    49    NULL    NULL    05/10/1992    1-URGENT    clerk000000332    0    grouches hinder quickly
1154    49    NULL    NULL    01/09/1996    2-HIGH    clerk000000199    0    dolphins toward the ironically dog
1155    16    NULL    NULL    12/23/1995    1-URGENT    clerk000000015    0    regularly  hockey players promise
1156    46    NULL    NULL    04/12/1994    4-NOT SPECIFIED    clerk000000188    0    final hockey players might engage
daringlyfinal warhorses 
1157    41    NULL    NULL    04/21/1992    4-NOT SPECIFIED    clerk000000253    0    quick sheaves sleep daringly
1158    2    NULL    NULL    09/07/1994    5-SLOW    clerk000000334    0    finally  foxes finally  foxe affix above
thefurious dinos decoys be 
1159    35    NULL    NULL    12/09/1994    5-SLOW    clerk000000383    0    ruthless,careful pearls should cajole .
fluffypinto beans 
1160    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1161    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1162    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1163    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1164    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1165    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1166    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1167    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1168    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1169    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1170    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1171    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1172    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1173    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1174    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1175    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1176    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1177    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1178    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1179    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1180    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1181    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1182    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1183    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1184    31    NULL    NULL    02/22/1998    1-URGENT    clerk000000390    0    waters outside the depths do solve
1185    16    NULL    NULL    11/20/1995    1-URGENT    clerk000000040    0    pinto beans without the stealthy
dependencieskindle  
1186    16    NULL    NULL    01/29/1998    3-MEDIUM    clerk000000033    0    busy ideas must lose since the
even,ruthlessideas 
1187    22    NULL    NULL    12/04/1997    2-HIGH    clerk000000024    0    enticingly  tithes between the furiusly
doggeddo 
1188    23    NULL    NULL    11/07/1996    1-URGENT    clerk000000333    0    ruthless,brave grouches should promise
daringly! 
1189    4    NULL    NULL    11/21/1995    4-NOT SPECIFIED    clerk000000182    0    silent,enticing patterns need to
affixfinally besides the clos 
1190    25    NULL    NULL    08/06/1992    4-NOT SPECIFIED    clerk000000033    0    close,quiet multipliers alongside
ofthe pearls e 
1191    17    NULL    NULL    07/08/1993    1-URGENT    clerk000000107    0    busy, dependencies might nod boldly
boldlyi 
1192    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1193    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1194    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1195    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1196    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1197    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1198    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1199    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1200    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1201    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1202    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1203    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1204    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1205    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1206    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1207    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1208    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1209    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1210    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1211    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1212    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1213    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1214    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1215    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1216    16    NULL    NULL    12/11/1995    4-NOT SPECIFIED    clerk000000012    0    brave dependencies use behind the
ruthlessa 
1217    13    NULL    NULL    02/07/1993    1-URGENT    clerk000000136    0    stealthily quiet realms impress ?
1218    5    NULL    NULL    08/24/1994    1-URGENT    clerk000000316    0    daringly regular pains at the busy
1219    20    NULL    NULL    06/12/1994    1-URGENT    clerk000000074    0    dogged,idle dependencies desp
1220    47    NULL    NULL    01/03/1994    3-MEDIUM    clerk000000304    0    frays could have to kindle across the
close,idlehockey players 
1221    46    NULL    NULL    07/08/1997    3-MEDIUM    clerk000000393    0    even decoys doze furious,even pains
furious,evenpain 
1222    26    NULL    NULL    02/24/1997    5-SLOW    clerk000000270    0    permanent ideas need to was slowly !
1223    23    NULL    NULL    05/19/1997    3-MEDIUM    clerk000000208    0    slow platelets use from the fluffy
1224    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1225    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1226    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1227    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1228    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1229    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1230    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1231    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1232    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1233    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1234    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1235    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1236    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1237    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1238    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1239    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1240    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1241    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1242    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1243    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1244    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1245    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1246    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1247    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1248    34    NULL    NULL    04/29/1992    3-MEDIUM    clerk000000256    0    sometimes even pains breach enticingly
tothe dogged,brave 
1249    31    NULL    NULL    11/19/1994    5-SLOW    clerk000000074    0    dinos should x_ray
1250    2    NULL    NULL    03/03/1993    5-SLOW    clerk000000038    0    decoys dazzle quietly besides the thinly
stealthy
1251    47    NULL    NULL    09/02/1994    1-URGENT    clerk000000255    0    dogged,bold multipliers shall have
1252    7    NULL    NULL    12/20/1997    1-URGENT    clerk000000190    0    ruthless epitaphs would lose boldly --
slydolphins shall have to sleep i 
1253    35    NULL    NULL    06/21/1993    2-HIGH    clerk000000397    0    careful attainments near the
1254    25    NULL    NULL    07/20/1992    3-MEDIUM    clerk000000076    0    close,stealthy somas grow ent
1255    4    NULL    NULL    11/09/1994    2-HIGH    clerk000000276    0    fluffy grouches solve quickly from the
depths
1256    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1257    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1258    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1259    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1260    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1261    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1262    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1263    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1264    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1265    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1266    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1267    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1268    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1269    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1270    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1271    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1272    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1273    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1274    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1275    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1276    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1277    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1278    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1279    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1280    10    NULL    NULL    03/15/1993    3-MEDIUM    clerk000000230    0    finally regular theodolites must have to
kindler 
1281    25    NULL    NULL    02/04/1994    1-URGENT    clerk000000274    0    furious, depths past the daring in
1282    10    NULL    NULL    04/11/1998    1-URGENT    clerk000000192    0    regular,silent dinos above the ruthless
moldslyly r 
1283    2    NULL    NULL    06/02/1992    4-NOT SPECIFIED    clerk000000142    0    finally daring realms toward the
blithesomas may mold bus 
1284    7    NULL    NULL    10/31/1992    4-NOT SPECIFIED    clerk000000334    0    hockey players shall have to solve
doggedly 
1285    40    NULL    NULL    10/07/1994    2-HIGH    clerk000000143    0    epitaphs run never up the slow,enticing
hockeyplayer 
1286    26    NULL    NULL    05/29/1994    5-SLOW    clerk000000312    0    ,slow dugouts could play upon the final
multiplie
1287    19    NULL    NULL    03/17/1994    5-SLOW    clerk000000017    0    sometimes final orbits do are bold
instructions! epitaphs hang ! id 
1288    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1289    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1290    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1291    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1292    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1293    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1294    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1295    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1296    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1297    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1298    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1299    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1300    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1301    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1302    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1303    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1304    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1305    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1306    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1307    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1308    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1309    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1310    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1311    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1312    44    NULL    NULL    06/27/1998    1-URGENT    clerk000000282    0    blithe grouches could run along the
ideas
1313    37    NULL    NULL    11/07/1997    5-SLOW    clerk000000322    0    doggedly permanent attainments before the
ironically 
1314    43    NULL    NULL    11/16/1992    3-MEDIUM    clerk000000173    0    dinos between the permanently permanent
1315    29    NULL    NULL    01/08/1996    3-MEDIUM    clerk000000221    0    depths nag closely ?
1316    7    NULL    NULL    01/26/1995    4-NOT SPECIFIED    clerk000000020    0    theodolites kindle dinos -- depend
1317    11    NULL    NULL    11/01/1996    2-HIGH    clerk000000268    0    brave,slow epitaphs brave,slow epitaph the
fluffyfoxes wi 
1318    17    NULL    NULL    10/06/1995    4-NOT SPECIFIED    clerk000000080    0    pearls nag ruthlessly despite the
daringdecoys p 
1319    53    NULL    NULL    05/19/1994    1-URGENT    clerk000000208    0    never ruthless somas by the always
regularorbits engage daringly from th 
1320    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1321    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1322    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1323    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1324    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1325    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1326    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1327    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1328    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1329    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1330    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1331    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1332    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1333    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1334    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1335    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1336    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1337    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1338    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1339    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1340    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1341    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1342    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1343    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1344    16    NULL    NULL    04/23/1998    2-HIGH    clerk000000024    0    platelets during the escapades cajole c
1345    37    NULL    NULL    05/23/1992    2-HIGH    clerk000000250    0    carefully bold depths sublate sublat
1346    43    NULL    NULL    05/15/1997    2-HIGH    clerk000000010    0    patterns will serve always beyond
1347    11    NULL    NULL    01/31/1996    4-NOT SPECIFIED    clerk000000308    0    realms do are enticingly do are
enticinglfoxes alongside of th 
1348    49    NULL    NULL    04/12/1997    1-URGENT    clerk000000034    0    slow dolphins except the foxes pla
1349    14    NULL    NULL    10/13/1995    3-MEDIUM    clerk000000252    0    bravely thin attainments hinder ?
1350    7    NULL    NULL    08/10/1996    2-HIGH    clerk000000319    0    close frets from the grouches shall have to
dazzleamong the do 
1351    37    NULL    NULL    05/12/1996    4-NOT SPECIFIED    clerk000000206    0    close,even waters upon the
regular
1352    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1353    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1354    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1355    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1356    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1357    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1358    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1359    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1360    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1361    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1362    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1363    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1364    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1365    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1366    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1367    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1368    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1369    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1370    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1371    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1372    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1373    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1374    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1375    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1376    31    NULL    NULL    04/06/1996    2-HIGH    clerk000000152    0    close,final patterns must have to lose
daringlymust have to lo 
1377    58    NULL    NULL    07/11/1996    4-NOT SPECIFIED    clerk000000062    0    blithe,slow frets engage
stealthilyof the stealt 
1378    28    NULL    NULL    01/01/1995    5-SLOW    clerk000000186    0    doggedly quiet excuses should boost boldly
:
1379    40    NULL    NULL    10/14/1995    2-HIGH    clerk000000082    0    ironically dogged theodolites do run
beneaththe epitaphs  
1380    16    NULL    NULL    10/05/1993    2-HIGH    clerk000000240    0    warhorses doze ;
1381    58    NULL    NULL    04/20/1994    1-URGENT    clerk000000237    0    pinto beans after the furious ideas
hinderbehind the notornis : 
1382    20    NULL    NULL    10/04/1993    1-URGENT    clerk000000293    0    dependencies beneath the
1383    44    NULL    NULL    06/21/1993    2-HIGH    clerk000000035    0    sly pearls over the ,bold gifts sleep
behindthe sly somas . 
1384    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1385    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1386    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1387    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1388    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1389    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1390    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1391    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1392    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1393    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1394    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1395    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1396    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1397    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1398    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1399    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1400    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1401    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1402    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1403    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1404    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1405    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1406    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1407    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1408    56    NULL    NULL    01/18/1993    1-URGENT    clerk000000302    0    regular instructions before the
thin,fluffyfrets should have t 
1409    31    NULL    NULL    03/06/1992    4-NOT SPECIFIED    clerk000000058    0    busy,final somas up the
daring,evencourts will have to breach  
1410    47    NULL    NULL    02/28/1996    4-NOT SPECIFIED    clerk000000018    0    dogged,enticing instructions
throughthe car 
1411    43    NULL    NULL    08/07/1992    4-NOT SPECIFIED    clerk000000340    0    sometimes idle grouches
1412    38    NULL    NULL    09/25/1995    5-SLOW    clerk000000296    0    ideas impress decoys ! hockey players
throughthe busy somas cajole  
1413    10    NULL    NULL    11/09/1992    5-SLOW    clerk000000106    0    bold,close foxes detect
1414    22    NULL    NULL    02/03/1994    5-SLOW    clerk000000397    0    permanent notornis must have to hang
withoutthe boldly idle pearls slow, 
1415    25    NULL    NULL    04/14/1998    1-URGENT    clerk000000253    0    slyly blithe notornis un
1416    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1417    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1418    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1419    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1420    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1421    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1422    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1423    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1424    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1425    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1426    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1427    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1428    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1429    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1430    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1431    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1432    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1433    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1434    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1435    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1436    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1437    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1438    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1439    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1440    38    NULL    NULL    04/30/1998    5-SLOW    clerk000000171    0    even somas detect : quickly idle idl
shouldhave to h 
1441    17    NULL    NULL    11/05/1993    5-SLOW    clerk000000010    0    idle dinos across the even,ca
1442    49    NULL    NULL    04/25/1993    5-SLOW    clerk000000030    0    bold,daring platelets with the sly,busy
dependencies 
1443    40    NULL    NULL    08/04/1994    5-SLOW    clerk000000377    0    close decoys throughout the ,daring braids
doeng 
1444    44    NULL    NULL    08/04/1994    3-MEDIUM    clerk000000366    0    bold pearls without the closely
sentimentswill have to print  
1445    34    NULL    NULL    02/12/1993    2-HIGH    clerk000000014    0    bravely quick Tiresias' beyond the
carefullyslow realms will have to mol 
1446    7    NULL    NULL    08/30/1994    4-NOT SPECIFIED    clerk000000049    0    silently thin epitaphs behind the
never
1447    8    NULL    NULL    05/15/1995    4-NOT SPECIFIED    clerk000000381    0    forges around the doggedly bold
sauternesunwind closely slow epitaphs :  
1448    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1449    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1450    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1451    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1452    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1453    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1454    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1455    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1456    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1457    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1458    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1459    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1460    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1461    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1462    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1463    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1464    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1465    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1466    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1467    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1468    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1469    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1470    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1471    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1472    49    NULL    NULL    11/10/1995    2-HIGH    clerk000000077    0    ideas should have to dazzle s
1473    2    NULL    NULL    02/06/1992    2-HIGH    clerk000000210    0    evenly sly orbits without the dugouts affix
enticingl
1474    44    NULL    NULL    06/11/1998    5-SLOW    clerk000000114    0    busy,slow ideas shall have to eat bravely
shallhave to eat bravel 
1475    19    NULL    NULL    04/17/1992    1-URGENT    clerk000000153    0    furious patterns breach slow pearls ?
busy,carefulplatelets to 
1476    14    NULL    NULL    11/29/1993    5-SLOW    clerk000000121    0    slyly idle dependencies nod :
1477    46    NULL    NULL    04/04/1994    1-URGENT    clerk000000289    0    close asymptotes breach against the
permanen
1478    19    NULL    NULL    10/16/1995    5-SLOW    clerk000000218    0    thin dolphins through the regularly
furiousorbit 
1479    17    NULL    NULL    01/02/1995    5-SLOW    clerk000000354    0    slowly stealthy decoys along the regula
1480    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1481    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1482    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1483    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1484    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1485    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1486    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1487    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1488    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1489    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1490    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1491    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1492    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1493    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1494    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1495    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1496    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1497    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1498    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1499    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1500    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1501    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1502    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1503    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1504    19    NULL    NULL    03/09/1992    1-URGENT    clerk000000272    0    stealthily  notornis would unwind
furiuslyruthless dugouts . 
1505    52    NULL    NULL    09/03/1992    2-HIGH    clerk000000358    0    stealthy,ruthless multip
1506    38    NULL    NULL    07/15/1996    3-MEDIUM    clerk000000389    0    slyly daring epitaphs between the
dogged,furiouspearls might impres 
1507    38    NULL    NULL    05/23/1992    2-HIGH    clerk000000065    0    foxes use !
1508    10    NULL    NULL    11/24/1994    3-MEDIUM    clerk000000129    0    daringly thin attainments throughout the
furiuslyfluffy frays  
1509    46    NULL    NULL    06/28/1997    1-URGENT    clerk000000397    0    idly blithe multipliers besides the
enticing
1510    16    NULL    NULL    07/03/1994    2-HIGH    clerk000000321    0    permanent platelets ougth to cajol
1511    35    NULL    NULL    12/22/1994    5-SLOW    clerk000000140    0    closely quiet patterns upon the idly
doggedgifts can play pla sly,silent 
1512    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1513    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1514    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1515    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1516    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1517    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1518    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1519    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1520    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1521    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1522    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1523    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1524    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1525    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1526    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1527    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1528    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1529    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1530    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1531    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1532    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1533    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1534    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1535    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1536    28    NULL    NULL    09/22/1993    2-HIGH    clerk000000020    0    silently blithe sauternes must have to
doubtdoggedly about the 
1537    13    NULL    NULL    11/01/1995    2-HIGH    clerk000000212    0    quick,silent braids toward the
regular,furio
1538    37    NULL    NULL    07/02/1994    3-MEDIUM    clerk000000322    0    quickly idle pains try to boo
1539    4    NULL    NULL    02/27/1995    3-MEDIUM    clerk000000389    0    quiet,quiet instructions snooze : silent
sentimen
1540    35    NULL    NULL    02/06/1998    1-URGENT    clerk000000148    0    stealthy dependencies ougth to unwind
ougthto unwin 
1541    10    NULL    NULL    01/13/1997    1-URGENT    clerk000000015    0    slowly idle instructions for the orbits
willnag  
1542    47    NULL    NULL    11/27/1992    3-MEDIUM    clerk000000047    0    fluffy,quick attainments use courts ! s
1543    55    NULL    NULL    07/18/1993    1-URGENT    clerk000000068    0    regularly ruthless excuses regular
1544    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1545    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1546    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1547    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1548    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1549    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1550    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1551    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1552    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1553    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1554    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1555    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1556    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1557    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1558    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1559    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1560    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1561    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1562    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1563    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1564    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1565    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1566    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1567    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1568    59    NULL    NULL    12/12/1992    5-SLOW    clerk000000037    0    ironic hockey players poach poac platelets
detectdetec  t 
1569    26    NULL    NULL    07/12/1996    4-NOT SPECIFIED    clerk000000163    0    quick frets above the dolphins
was
1570    29    NULL    NULL    03/26/1993    2-HIGH    clerk000000007    0    always silent attainments will dazzle
boldlyover the sly tithes 
1571    31    NULL    NULL    05/12/1997    2-HIGH    clerk000000085    0    dogged gifts play beneath the fluffily
1572    23    NULL    NULL    11/20/1995    4-NOT SPECIFIED    clerk000000089    0    silent somas after
1573    46    NULL    NULL    02/18/1995    1-URGENT    clerk000000167    0    thin asymptotes could have to maintain
fluff
1574    50    NULL    NULL    05/11/1998    5-SLOW    clerk000000121    0    brave,final realms grow slyly beneath the
ironic,bravebra 
1575    37    NULL    NULL    09/01/1993    3-MEDIUM    clerk000000190    0    permanent  need to was !
1576    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1577    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1578    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1579    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1580    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1581    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1582    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1583    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1584    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1585    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1586    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1587    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1588    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1589    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1590    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1591    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1592    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1593    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1594    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1595    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1596    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1597    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1598    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1599    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1600    25    NULL    NULL    10/29/1993    2-HIGH    clerk000000082    0    final,idle platelets near the quietly
blithefrets try to print 
1601    46    NULL    NULL    08/10/1994    4-NOT SPECIFIED    clerk000000373    0    dogged,fluffy waters alongside of
thequiet,stealthy  
1602    13    NULL    NULL    10/10/1995    4-NOT SPECIFIED    clerk000000277    0    dugouts past the quiet,silent
idea
1603    41    NULL    NULL    08/03/1992    1-URGENT    clerk000000184    0    silent,final escapades above the
ironic,blitheex 
1604    17    NULL    NULL    11/17/1994    3-MEDIUM    clerk000000064    0    busy escapades near the fluffily
ruthlesspi 
1605    13    NULL    NULL    05/08/1996    3-MEDIUM    clerk000000017    0    fluffy asymptotes could kindle fluffily
:forges nod -- thin,stealthy gifts th 
1606    19    NULL    NULL    05/27/1996    1-URGENT    clerk000000086    0    epitaphs can use daringly since the
orbits breach bu 
1607    17    NULL    NULL    01/24/1995    2-HIGH    clerk000000206    0    close ideas at the caref
1608    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1609    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1610    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1611    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1612    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1613    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1614    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1615    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1616    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1617    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1618    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1619    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1620    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1621    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1622    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1623    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1624    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1625    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1626    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1627    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1628    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1629    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1630    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1631    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1632    26    NULL    NULL    10/04/1995    3-MEDIUM    clerk000000052    0    forges doubt permanently :
1633    55    NULL    NULL    01/23/1996    4-NOT SPECIFIED    clerk000000242    0    slow pains should use fluffily
alwaysclose dinos alw 
1634    49    NULL    NULL    09/21/1993    2-HIGH    clerk000000367    0    warhorses unwind regularly tithes tithe
1635    47    NULL    NULL    08/01/1998    5-SLOW    clerk000000231    0    careful realms may unwind permanently ?
slypinto beans of 
1636    38    NULL    NULL    12/14/1997    4-NOT SPECIFIED    clerk000000384    0    regularly final orbits shall have
tohinder enticingl 
1637    56    NULL    NULL    08/01/1998    5-SLOW    clerk000000273    0    quickly permanent sentiments mold evenly
tow
1638    35    NULL    NULL    07/08/1997    5-SLOW    clerk000000078    0    brave excuses ougth to believe .
1639    43    NULL    NULL    05/09/1993    5-SLOW    clerk000000162    0    evenly furious warthogs lose
1640    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1641    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1642    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1643    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1644    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1645    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1646    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1647    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1648    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1649    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1650    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1651    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1652    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1653    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1654    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1655    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1656    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1657    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1658    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1659    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1660    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1661    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1662    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1663    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1664    49    NULL    NULL    09/09/1995    4-NOT SPECIFIED    clerk000000268    0    platelets may nod never again
1665    31    NULL    NULL    11/16/1993    3-MEDIUM    clerk000000281    0    busy pearls for the close,thin realms
shallhave  
1666    17    NULL    NULL    06/01/1994    4-NOT SPECIFIED    clerk000000370    0    silent pinto beans during the
bold
1667    13    NULL    NULL    10/15/1996    4-NOT SPECIFIED    clerk000000380    0    quiet,enticing frays instead of
thefluffily 
1668    52    NULL    NULL    04/05/1995    2-HIGH    clerk000000227    0    quiet warthogs should have to cajole ru
1669    40    NULL    NULL    07/04/1996    4-NOT SPECIFIED    clerk000000086    0    multipliers throughout the
permane
1670    17    NULL    NULL    03/14/1992    2-HIGH    clerk000000278    0    frays atop the  ironic instructions should
haveto hang furious 
1671    5    NULL    NULL    04/15/1993    4-NOT SPECIFIED    clerk000000374    0    dugouts kindle across the bra
1672    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1673    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1674    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1675    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1676    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1677    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1678    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1679    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1680    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1681    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1682    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1683    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1684    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1685    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1686    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1687    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1688    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1689    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1690    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1691    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1692    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1693    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1694    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1695    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1696    34    NULL    NULL    12/15/1997    1-URGENT    clerk000000054    0    quick,careful warthogs across the courts
runquick multipl 
1697    1    NULL    NULL    05/25/1996    3-MEDIUM    clerk000000002    0    never  courts around the fluffy pi
1698    10    NULL    NULL    01/01/1998    3-MEDIUM    clerk000000005    0    close warhorses with the daringly
epitaphs 
1699    28    NULL    NULL    04/16/1996    2-HIGH    clerk000000359    0    slow,final dinos engage .
1700    56    NULL    NULL    11/16/1993    4-NOT SPECIFIED    clerk000000029    0    sly hockey players throu
1701    26    NULL    NULL    02/12/1998    2-HIGH    clerk000000096    0    silently permanent foxes are : quietly
boldorbits try to  
1702    43    NULL    NULL    03/29/1998    1-URGENT    clerk000000243    0    permanent pinto beans detect except the
slypearls in 
1703    44    NULL    NULL    04/08/1995    4-NOT SPECIFIED    clerk000000253    0    pinto beans between the doggedly
ironic
1704    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1705    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1706    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1707    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1708    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1709    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1710    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1711    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1712    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1713    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1714    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1715    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1716    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1717    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1718    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1719    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1720    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1721    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1722    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1723    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1724    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1725    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1726    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1727    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1728    16    NULL    NULL    06/22/1992    1-URGENT    clerk000000312    0    thinly regular pains shall maintain
quickly 
1729    56    NULL    NULL    03/11/1992    3-MEDIUM    clerk000000014    0    blithe,idle grouches inside t
1730    16    NULL    NULL    01/24/1997    2-HIGH    clerk000000082    0    theodolites theodolite into the ironic,sly
pains
1731    49    NULL    NULL    08/12/1994    5-SLOW    clerk000000084    0    silent,quick grouches alongside of the
slowlybold forges  
1732    49    NULL    NULL    07/13/1992    3-MEDIUM    clerk000000179    0    regular,stealthy warhorses should have
toprint fluffily ! regularly dari 
1733    5    NULL    NULL    05/25/1996    4-NOT SPECIFIED    clerk000000173    0    notornis detect slyly slyly q
1734    40    NULL    NULL    05/15/1994    3-MEDIUM    clerk000000007    0    thin,quiet asymptotes under the finally
1735    43    NULL    NULL    11/29/1993    2-HIGH    clerk000000161    0    quietly final warhorses shall have to
detectruthlessly . blithe,enticing 
1736    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1737    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1738    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1739    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1740    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1741    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1742    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1743    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1744    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1745    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1746    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1747    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1748    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1749    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1750    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1751    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1752    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1753    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1754    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1755    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1756    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1757    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1758    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1759    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1760    25    NULL    NULL    11/02/1992    1-URGENT    clerk000000325    0    frets solve slowly solve
1761    5    NULL    NULL    10/30/1997    2-HIGH    clerk000000396    0    quiet grouches need to use behind the q
1762    10    NULL    NULL    05/09/1992    4-NOT SPECIFIED    clerk000000028    0    bold notornis could have to affix
quietly? 
1763    47    NULL    NULL    01/15/1993    2-HIGH    clerk000000303    0    blithe sentiments will have to x_ray idly
somassoma ruthless,carefu 
1764    4    NULL    NULL    12/03/1996    1-URGENT    clerk000000161    0    carefully daring decoys inside the
blithelydaring epitaphs do  
1765    4    NULL    NULL    04/13/1997    5-SLOW    clerk000000343    0    waters use beneath the realms
1766    17    NULL    NULL    10/04/1997    4-NOT SPECIFIED    clerk000000307    0    decoys run carefully despite the
thincourts 
1767    35    NULL    NULL    07/12/1998    4-NOT SPECIFIED    clerk000000382    0    blithe sheaves would was daringly
excuses ! 
1768    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1769    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1770    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1771    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1772    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1773    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1774    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1775    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1776    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1777    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1778    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1779    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1780    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1781    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1782    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1783    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1784    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1785    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1786    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1787    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1788    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1789    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1790    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1791    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1792    28    NULL    NULL    04/29/1996    1-URGENT    clerk000000140    0    daring,permanent epitaphs thrash silent
1793    16    NULL    NULL    01/18/1998    2-HIGH    clerk000000086    0    dugouts over the quick depths must snooze
always 
1794    14    NULL    NULL    10/28/1993    4-NOT SPECIFIED    clerk000000015    0    brave  with the daringly  pinto
beanswill have to en 
1795    25    NULL    NULL    12/28/1992    1-URGENT    clerk000000357    0     warhorses could maintain ! warthogs run
busily. 
1796    10    NULL    NULL    04/11/1994    2-HIGH    clerk000000279    0    even dependencies alongside of the idly
watersgrow carefully  
1797    25    NULL    NULL    10/25/1994    1-URGENT    clerk000000262    0    quietly close tithes was regular
warhorses. bold 
1798    47    NULL    NULL    07/19/1993    1-URGENT    clerk000000358    0    ironically dogged frays sublate into the
sly
1799    16    NULL    NULL    10/25/1992    3-MEDIUM    clerk000000046    0    realms toward the depths x_ray blithely
realms-- 
1800    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1801    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1802    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1803    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1804    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1805    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1806    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1807    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1808    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1809    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1810    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1811    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1812    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1813    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1814    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1815    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1816    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1817    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1818    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1819    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1820    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1821    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1822    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1823    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1824    56    NULL    NULL    07/30/1993    5-SLOW    clerk000000131    0    foxes grow ; hockey players over the da
1825    2    NULL    NULL    07/28/1997    3-MEDIUM    clerk000000116    0    hockey players will haggle blithely ?
close,closesomas instead of t 
1826    22    NULL    NULL    01/07/1995    2-HIGH    clerk000000096    0    dogged,sly sheaves detect bravely instead
of
1827    25    NULL    NULL    04/25/1996    5-SLOW    clerk000000252    0    thin,bold theodolites run stealthi
1828    10    NULL    NULL    01/24/1992    1-URGENT    clerk000000099    0    somas try to breach silently quickly cl
1829    40    NULL    NULL    05/17/1998    4-NOT SPECIFIED    clerk000000205    0    carefully enticing dolphins
engageruth 
1830    10    NULL    NULL    05/13/1996    1-URGENT    clerk000000329    0    daring,quick grouches dazzle from
1831    5    NULL    NULL    11/10/1997    2-HIGH    clerk000000288    0    evenly sly realms for the quick asympto
1832    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1833    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1834    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1835    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1836    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1837    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1838    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1839    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1840    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1841    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1842    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1843    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1844    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1845    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1846    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1847    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1848    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1849    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1850    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1851    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1852    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1853    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1854    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1855    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1856    29    NULL    NULL    07/23/1994    4-NOT SPECIFIED    clerk000000162    0    boldly careful asymptotes should
servebehind the thinly quick  
1857    25    NULL    NULL    03/16/1997    4-NOT SPECIFIED    clerk000000177    0    excuses throughout the final
multiplier
1858    16    NULL    NULL    02/24/1993    1-URGENT    clerk000000149    0    bold,careful waters except the
multipliersougth to snooze atop the quiet 
1859    41    NULL    NULL    09/09/1992    4-NOT SPECIFIED    clerk000000126    0     ideas thrash warhorses --
1860    4    NULL    NULL    09/28/1992    3-MEDIUM    clerk000000372    0    enticing patterns since the c
1861    23    NULL    NULL    07/03/1994    2-HIGH    clerk000000138    0    asymptotes on the stealthily silent depths
needto engage need  
1862    2    NULL    NULL    07/27/1997    5-SLOW    clerk000000019    0    thinly dogged asymptotes within the
epitaphsbelieve  into the multiplie 
1863    28    NULL    NULL    04/17/1992    2-HIGH    clerk000000242    0    quiet, instructions after the ruthless
attainmentsserve tithes . 
1864    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1865    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1866    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1867    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1868    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1869    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1870    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1871    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1872    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1873    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1874    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1875    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1876    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1877    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1878    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1879    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1880    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1881    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1882    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1883    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1884    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1885    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1886    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1887    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1888    11    NULL    NULL    08/09/1994    4-NOT SPECIFIED    clerk000000369    0    frays upon the brave,final ideas
maintainslyly bravely final frays  
1889    29    NULL    NULL    07/10/1994    4-NOT SPECIFIED    clerk000000311    0    boldly silent sauternes above the
finallyblithe  
1890    14    NULL    NULL    08/07/1997    3-MEDIUM    clerk000000369    0    forges kindle closely ? darin
1891    14    NULL    NULL    04/17/1997    2-HIGH    clerk000000330    0    bold sauternes bold sauterne along the
fretsthin,furious warth 
1892    59    NULL    NULL    01/01/1998    1-URGENT    clerk000000286    0    quiet,careful escapades can nag through
theepita 
1893    17    NULL    NULL    05/02/1992    5-SLOW    clerk000000190    0    sly,stealthy hockey players try to nag
1894    49    NULL    NULL    06/17/1993    4-NOT SPECIFIED    clerk000000025    0    dogged dugouts sleep ruthlessly !
silentlybrave brav 
1895    26    NULL    NULL    04/06/1992    4-NOT SPECIFIED    clerk000000394    0    regularly bold realms try to
haggle! 
1896    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1897    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1898    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1899    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1900    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1901    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1902    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1903    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1904    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1905    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1906    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1907    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1908    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1909    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1910    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1911    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1912    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1913    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1914    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1915    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1916    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1917    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1918    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1919    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1920    37    NULL    NULL    09/12/1997    1-URGENT    clerk000000016    0    excuses around the furious,sly somas
mustha 
1921    55    NULL    NULL    12/06/1994    1-URGENT    clerk000000344    0    thin,final tithes ougth to maintain
never. 
1922    40    NULL    NULL    01/11/1998    2-HIGH    clerk000000315    0    tithes ougth to wake daring frets !
1923    22    NULL    NULL    12/30/1996    2-HIGH    clerk000000291    0    daring,dogged frets beyond the permanently
ironicdepths c 
1924    26    NULL    NULL    01/16/1996    2-HIGH    clerk000000116    0    always permanent theodolites doubt
sometimesto the q 
1925    37    NULL    NULL    10/11/1996    4-NOT SPECIFIED    clerk000000110    0    final,dogged Tiresias' of the
carefullypermanent orbits hang b 
1926    28    NULL    NULL    07/25/1995    3-MEDIUM    clerk000000276    0    ideas mold furiusly stealthy waters :
attainments
1927    49    NULL    NULL    01/13/1998    1-URGENT    clerk000000057    0    never sly dinos must engage final,dogged
warthogsfinal,do 
1928    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1929    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1930    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1931    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1932    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1933    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1934    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1935    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1936    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1937    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1938    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1939    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1940    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1941    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1942    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1943    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1944    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1945    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1946    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1947    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1948    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1949    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1950    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1951    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1952    37    NULL    NULL    06/09/1995    3-MEDIUM    clerk000000139    0    patterns do use doggedly final not
1953    50    NULL    NULL    08/01/1994    1-URGENT    clerk000000070    0    fluffy,ruthless warhorses to the c
1954    16    NULL    NULL    05/25/1997    4-NOT SPECIFIED    clerk000000112    0    permanent dependencies poach
regularlyfinal attainments - 
1955    29    NULL    NULL    09/04/1995    4-NOT SPECIFIED    clerk000000231    0    regular,ruthless ti
1956    35    NULL    NULL    09/19/1997    2-HIGH    clerk000000012    0    furiusly daring warthogs through the
permanentsomas will  
1957    2    NULL    NULL    02/06/1994    5-SLOW    clerk000000105    0    regularly furious asymptotes must print ;
carefullypermanent e 
1958    53    NULL    NULL    01/18/1994    3-MEDIUM    clerk000000143    0    finally enticing sauternes near the
quick,silentgift 
1959    47    NULL    NULL    03/15/1996    2-HIGH    clerk000000017    0    carefully even courts wake ruthlessly :
1960    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1961    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1962    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1963    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1964    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1965    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1966    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1967    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1968    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1969    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1970    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1971    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1972    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1973    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1974    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1975    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1976    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1977    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1978    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1979    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1980    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1981    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1982    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1983    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1984    29    NULL    NULL    09/14/1995    3-MEDIUM    clerk000000161    0    foxes would poach w
1985    1    NULL    NULL    06/17/1998    1-URGENT    clerk000000057    0    quiet instructions in place of the
sheavesougth to sleep on the regular  
1986    32    NULL    NULL    07/12/1992    2-HIGH    clerk000000048    0    permanently thin waters need to was --
nevercareful escap 
1987    4    NULL    NULL    04/11/1993    1-URGENT    clerk000000383    0    careful,regular pinto beans despite the
quicklyfluff 
1988    19    NULL    NULL    08/29/1993    4-NOT SPECIFIED    clerk000000391    0    busily permanent gifts by the
slowgrouches boost doggedly 
1989    56    NULL    NULL    03/22/1995    1-URGENT    clerk000000171    0    orbits after the bold,slow braids kindle
quiet,thintheodolites ! 
1990    38    NULL    NULL    03/02/1992    3-MEDIUM    clerk000000321    0    slowly quick instructions sublate
1991    26    NULL    NULL    06/28/1996    2-HIGH    clerk000000232    0    bold,silent grouches poach poac
furious,sly 
1992    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1993    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1994    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1995    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1996    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1997    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1998    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
1999    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2000    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2001    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2002    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2003    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2004    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2005    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2006    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2007    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2008    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2009    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2010    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2011    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2012    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2013    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2014    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2015    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2016    22    NULL    NULL    05/04/1994    2-HIGH    clerk000000017    0    slyly daring foxes engage !
2017    16    NULL    NULL    04/03/1997    3-MEDIUM    clerk000000348    0    thin warhorses might nag silently atop
theideas 
2018    55    NULL    NULL    02/28/1998    4-NOT SPECIFIED    clerk000000197    0    slowly busy pinto beans from the
r
2019    25    NULL    NULL    03/01/1993    4-NOT SPECIFIED    clerk000000039    0    quick, notornis wake bravely
brave,closefre 
2020    55    NULL    NULL    07/12/1993    2-HIGH    clerk000000081    0    brave waters to the patterns doubt
regularlywithin the es 
2021    25    NULL    NULL    10/07/1994    2-HIGH    clerk000000279    0    realms across the idle warthogs will x_ray
enticingdugouts . 
2022    19    NULL    NULL    11/25/1995    4-NOT SPECIFIED    clerk000000286    0    patterns shall doze evenly !
2023    35    NULL    NULL    02/12/1996    1-URGENT    clerk000000059    0    bold,idle escapades before the ruthless
2024    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2025    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2026    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2027    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2028    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2029    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2030    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2031    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2032    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2033    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2034    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2035    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2036    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2037    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2038    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2039    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2040    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2041    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2042    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2043    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2044    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2045    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2046    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2047    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2048    8    NULL    NULL    05/18/1992    2-HIGH    clerk000000394    0    sly dolphins since the daringly ironic
epita
2049    19    NULL    NULL    06/03/1996    5-SLOW    clerk000000214    0    ,fluffy foxes with the brave,final frets
shouldi 
2050    50    NULL    NULL    11/04/1992    3-MEDIUM    clerk000000354    0    bravely permanent pearls across the
regular,quick
2051    41    NULL    NULL    03/20/1998    2-HIGH    clerk000000153    0    stealthy,brave depths stealthy,brave depth
hindersometimes slow warhorse 
2052    10    NULL    NULL    10/03/1996    1-URGENT    clerk000000109    0    slow warthogs against the quick,fluffy
foxesnag past the  
2053    10    NULL    NULL    04/28/1995    4-NOT SPECIFIED    clerk000000220    0    silent sauternes shall have to
integratequickly ? daring,thin hockey players  
2054    4    NULL    NULL    10/24/1994    3-MEDIUM    clerk000000248    0    ruthless,ironic dependen
2055    26    NULL    NULL    01/28/1995    4-NOT SPECIFIED    clerk000000387    0    carefully close realms against
thedeco 
2056    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2057    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2058    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2059    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2060    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2061    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2062    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2063    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2064    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2065    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2066    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2067    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2068    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2069    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2070    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2071    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2072    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2073    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2074    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2075    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2076    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2077    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2078    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2079    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2080    29    NULL    NULL    06/17/1994    2-HIGH    clerk000000008    0    silent depths above the bravely permanent
dinoscajole despite the q 
2081    44    NULL    NULL    12/21/1995    3-MEDIUM    clerk000000139    0    pearls hinder hinde
2082    56    NULL    NULL    03/08/1992    5-SLOW    clerk000000339    0    enticing grouches should have to affix
dogge
2083    52    NULL    NULL    01/14/1993    4-NOT SPECIFIED    clerk000000069    0    thinly brave sauternes from the
sly,fluffypinto  
2084    55    NULL    NULL    08/22/1997    1-URGENT    clerk000000295    0    realms atop the courts play thinly
betweenthe close asymptotes 
2085    23    NULL    NULL    04/20/1995    1-URGENT    clerk000000346    0    daring forges of the regular,final gifts
loseboldly slyly slow dolp 
2086    13    NULL    NULL    10/21/1993    5-SLOW    clerk000000216    0    quiet,close Tiresias' try to
2087    52    NULL    NULL    03/18/1994    2-HIGH    clerk000000141    0    brave,idle orbits try to wake slowly about
theidly b 
2088    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2089    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2090    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2091    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2092    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2093    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2094    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2095    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2096    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2097    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2098    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2099    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2100    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2101    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2102    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2103    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2104    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2105    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2106    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2107    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2108    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2109    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2110    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2111    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2112    44    NULL    NULL    10/19/1993    3-MEDIUM    clerk000000131    0    depths in place of the idle grouch
2113    20    NULL    NULL    02/02/1992    2-HIGH    clerk000000095    0    brave dinos sublate courts --
2114    4    NULL    NULL    08/05/1993    5-SLOW    clerk000000179    0    ruthlessly permanent notornis for the
doggedsauterne 
2115    10    NULL    NULL    10/05/1996    2-HIGH    clerk000000003    0    ruthless,quick braids ougth to play
daringlypast 
2116    19    NULL    NULL    11/17/1996    4-NOT SPECIFIED    clerk000000296    0    ruthlessly regular dolphins until
thequick,brave 
2117    5    NULL    NULL    01/26/1992    3-MEDIUM    clerk000000082    0    dogged warthogs promise along the
ruthlesslyquiet di 
2118    44    NULL    NULL    04/08/1992    1-URGENT    clerk000000377    0    bravely ironic frets dazzle dazzl slow
attainment
2119    35    NULL    NULL    07/12/1997    1-URGENT    clerk000000060    0    busy waters atop the slow,brave depths
mightinte 
2120    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2121    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2122    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2123    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2124    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2125    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2126    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2127    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2128    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2129    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2130    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2131    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2132    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2133    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2134    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2135    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2136    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2137    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2138    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2139    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2140    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2141    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2142    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2143    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2144    46    NULL    NULL    02/05/1995    5-SLOW    clerk000000236    0    idle realms doze silently !
2145    58    NULL    NULL    11/19/1995    1-URGENT    clerk000000248    0    slow,close frets will have to
2146    32    NULL    NULL    06/14/1997    5-SLOW    clerk000000018    0    stealthy attainments integrate closely
attainments?  
2147    8    NULL    NULL    11/18/1995    3-MEDIUM    clerk000000287    0    dogged escapades nod rut
2148    53    NULL    NULL    09/01/1995    5-SLOW    clerk000000121    0    blithe courts breach permanently e
2149    22    NULL    NULL    01/28/1996    3-MEDIUM    clerk000000268    0    fluffy,close forges should sublate slyly
againstthe even  
2150    50    NULL    NULL    03/07/1994    2-HIGH    clerk000000162    0    busy frets poach enticingly : boldly
permanentsauternes x_ray  
2151    56    NULL    NULL    11/08/1996    1-URGENT    clerk000000171    0    dugouts lose : dogged pl
2152    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2153    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2154    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2155    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2156    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2157    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2158    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2159    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2160    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2161    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2162    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2163    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2164    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2165    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2166    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2167    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2168    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2169    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2170    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2171    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2172    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2173    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2174    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2175    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2176    7    NULL    NULL    12/15/1992    4-NOT SPECIFIED    clerk000000144    0    tithes on the daring,careful
sheavesserve pains  
2177    40    NULL    NULL    06/28/1996    3-MEDIUM    clerk000000262    0    quickly thin patterns despite the
permanent,ruthlessbraids could pr 
2178    8    NULL    NULL    07/12/1998    3-MEDIUM    clerk000000184    0    quietly enticing theodolites ougth to nod
ougthto no fluffy frets beyond 
2179    22    NULL    NULL    12/14/1995    1-URGENT    clerk000000081    0    furious,quiet dinos
2180    19    NULL    NULL    11/17/1997    2-HIGH    clerk000000124    0    thin  behind the furiusly  asympto
2181    4    NULL    NULL    01/16/1992    5-SLOW    clerk000000089    0    furiusly ironic dug
2182    37    NULL    NULL    10/29/1994    5-SLOW    clerk000000292    0    closely  decoys will dazzle evenly across
theidle,ca 
2183    49    NULL    NULL    11/30/1995    5-SLOW    clerk000000013    0     courts beyond the busy,stealthy sauternes
shouldhave to thrash dog 
2184    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2185    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2186    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2187    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2188    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2189    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2190    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2191    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2192    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2193    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2194    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2195    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2196    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2197    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2198    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2199    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2200    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2201    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2202    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2203    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2204    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2205    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2206    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2207    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2208    19    NULL    NULL    01/05/1992    1-URGENT    clerk000000375    0    somas after the carefully blithe decoys
shouldth 
2209    43    NULL    NULL    06/05/1997    2-HIGH    clerk000000390    0    grouches along the stealthy courts might
believecarefully neve 
2210    55    NULL    NULL    01/19/1996    4-NOT SPECIFIED    clerk000000359    0    ruthless,final warthogs ougth to
poachthroughout the close,even Tiresias 
2211    53    NULL    NULL    07/22/1994    3-MEDIUM    clerk000000034    0    slow,blithe frets need to affix
ruthlesslyabove the even,dogge 
2212    2    NULL    NULL    08/04/1992    1-URGENT    clerk000000053    0    furious,busy bus will believe despite the
ideascarefully careful multipliers  
2213    20    NULL    NULL    09/14/1992    5-SLOW    clerk000000256    0    blithe frays should have to grow
permanentlybusily quiet senti 
2214    53    NULL    NULL    03/10/1995    5-SLOW    clerk000000351    0    silent,thin grouches will engage ?
doggedlyironi 
2215    1    NULL    NULL    10/05/1993    3-MEDIUM    clerk000000147    0    enticing dinos try to lose quietly --
2216    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2217    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2218    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2219    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2220    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2221    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2222    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2223    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2224    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2225    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2226    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2227    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2228    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2229    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2230    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2231    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2232    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2233    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2234    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2235    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2236    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2237    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2238    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2239    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2240    52    NULL    NULL    07/01/1992    5-SLOW    clerk000000393    0    regular frets would dazzle idly : decoys
cou
2241    37    NULL    NULL    08/25/1994    4-NOT SPECIFIED    clerk000000389    0    doggedly quiet multipliers run
bold,finalgifts bold,final gift 
2242    10    NULL    NULL    05/04/1992    1-URGENT    clerk000000112    0    excuses doze boldly  pinto beans :
2243    8    NULL    NULL    04/13/1995    1-URGENT    clerk000000022    0    hockey players beneath the permane
2244    47    NULL    NULL    11/20/1993    4-NOT SPECIFIED    clerk000000095    0    permanently slow epitaph
2245    20    NULL    NULL    02/18/1997    3-MEDIUM    clerk000000353    0    pearls believe without the sly ideas
blithesenti 
2246    32    NULL    NULL    09/20/1994    5-SLOW    clerk000000317    0    fluffily thin platelets shall promise on
theidle,reg 
2247    53    NULL    NULL    01/31/1997    1-URGENT    clerk000000379    0    realms play ;
2248    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2249    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2250    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2251    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2252    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2253    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2254    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2255    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2256    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2257    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2258    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2259    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2260    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2261    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2262    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2263    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2264    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2265    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2266    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2267    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2268    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2269    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2270    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2271    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2272    50    NULL    NULL    08/20/1994    4-NOT SPECIFIED    clerk000000223    0    enticingly silent asymptotes will
haveto wa 
2273    13    NULL    NULL    01/20/1995    4-NOT SPECIFIED    clerk000000382    0    warthogs around the patterns may
areforges ; quiet,stealthy depths  
2274    28    NULL    NULL    08/28/1994    3-MEDIUM    clerk000000135    0    regularly regular warhorses could have
to thinly silently careful s 
2275    19    NULL    NULL    02/13/1992    2-HIGH    clerk000000233    0    dugouts must have to sno
2276    55    NULL    NULL    07/09/1996    2-HIGH    clerk000000121    0    ,quick escapades ,quick
2277    41    NULL    NULL    08/16/1995    1-URGENT    clerk000000056    0    stealthily even grouches
2278    5    NULL    NULL    11/26/1992    1-URGENT    clerk000000306    0    bold,dogged dinos eat somas soma
2279    13    NULL    NULL    05/14/1993    5-SLOW    clerk000000329    0    regular instructions impress carefully :
2280    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2281    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2282    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2283    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2284    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2285    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2286    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2287    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2288    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2289    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2290    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2291    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2292    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2293    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2294    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2295    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2296    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2297    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2298    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2299    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2300    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2301    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2302    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2303    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2304    34    NULL    NULL    03/08/1993    5-SLOW    clerk000000254    0    blithely enticing grouches until the
realmshaggle beyond the furious,sly 
2305    28    NULL    NULL    06/15/1992    4-NOT SPECIFIED    clerk000000399    0    gifts around the daring sheaves
wi
2306    46    NULL    NULL    07/31/1995    2-HIGH    clerk000000142    0    pearls on the stealthy,r
2307    19    NULL    NULL    08/29/1992    3-MEDIUM    clerk000000350    0    orbits may doubt slyly stealthy,dogged
dogge; 
2308    13    NULL    NULL    05/31/1998    2-HIGH    clerk000000393    0    fluffily ruthless decoys try to was try
2309    31    NULL    NULL    04/01/1997    2-HIGH    clerk000000253    0    slyly busy warthogs may engage regularly
mayenga 
2310    46    NULL    NULL    09/15/1994    4-NOT SPECIFIED    clerk000000297    0    blithe,thin notornis oug
2311    22    NULL    NULL    07/05/1997    5-SLOW    clerk000000104    0    careful frets against the bold,close
sentime
2312    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2313    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2314    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2315    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2316    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2317    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2318    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2319    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2320    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2321    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2322    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2323    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2324    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2325    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2326    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2327    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2328    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2329    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2330    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2331    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2332    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2333    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2334    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2335    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2336    28    NULL    NULL    11/09/1993    2-HIGH    clerk000000378    0    furious, epitaphs hang thinly -- ,brave
instructi
2337    40    NULL    NULL    04/07/1993    3-MEDIUM    clerk000000184    0    warthogs until the blithe instructions
shoul
2338    52    NULL    NULL    04/01/1993    2-HIGH    clerk000000225    0    tithes need to hinder sometimes af
2339    22    NULL    NULL    06/28/1995    2-HIGH    clerk000000179    0    ruthless instructions ougth to nag --
2340    11    NULL    NULL    02/13/1994    5-SLOW    clerk000000097    0    enticing,regular sheaves must brea
2341    44    NULL    NULL    05/10/1996    4-NOT SPECIFIED    clerk000000070    0    even,permanent Tiresias' to the
neverfluffy pains doubt from the pe 
2342    37    NULL    NULL    11/12/1992    1-URGENT    clerk000000100    0    blithe sheaves beneath the warhorses
shallnod no 
2343    55    NULL    NULL    09/12/1997    1-URGENT    clerk000000254    0    ruthless braids might lose until the br
2344    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2345    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2346    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2347    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2348    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2349    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2350    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2351    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2352    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2353    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2354    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2355    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2356    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2357    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2358    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2359    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2360    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2361    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2362    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2363    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2364    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2365    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2366    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2367    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2368    29    NULL    NULL    09/15/1993    3-MEDIUM    clerk000000004    0    thin notornis around the ideas should
haveto haggle darin 
2369    50    NULL    NULL    10/10/1997    3-MEDIUM    clerk000000170    0    idle,ruthless hockey players past the
carefu
2370    49    NULL    NULL    07/04/1992    3-MEDIUM    clerk000000355    0    slow dolphins hinder ruthlessly atop the
sauternesfl 
2371    1    NULL    NULL    08/29/1996    1-URGENT    clerk000000248    0    ruthless sheaves mold --  blithe pains
despitethe as 
2372    53    NULL    NULL    02/22/1995    1-URGENT    clerk000000291    0    fluffy braids beside the bravely slow
courtsserv 
2373    4    NULL    NULL    05/23/1997    1-URGENT    clerk000000278    0    dinos among the ruthlessly fluffy
2374    23    NULL    NULL    03/10/1992    4-NOT SPECIFIED    clerk000000328    0    multipliers sublate slyly sublate
slylideas must poach sometimes da 
2375    19    NULL    NULL    08/12/1997    3-MEDIUM    clerk000000117    0    quiet,fluffy warhorses quiet,fluffy
warhorserun ru s 
2376    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2377    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2378    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2379    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2380    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2381    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2382    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2383    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2384    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2385    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2386    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2387    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2388    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2389    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2390    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2391    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2392    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2393    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2394    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2395    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2396    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2397    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2398    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
2399    NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL
0    tan maroon ivory moccasin peach    Manufacturer#5    Brand#53    ECONOMY PLATED COPPER    15    WRAP CASE    NULL
 Tiresias' at t 
1    azure seashell plum puff salmon    Manufacturer#4    Brand#43    MEDIUM POLISHED STEEL    22    SM JAR    NULL
sentime
2    forest azure cornsilk cornsil red    Manufacturer#4    Brand#41    PROMO PLATED TIN    35    SM PACK    NULL
enticing
3    steel smoke cornsilk frosted misty    Manufacturer#3    Brand#32    LARGE ANODIZED NICKEL    40    JUMBO PKG
NULL   ideas to 
4    misty rosy tan snow ghost    Manufacturer#5    Brand#53    MEDIUM BRUSHED TIN    34    WRAP BOX    NULL    thin
hockeyplayer 
5    forest midnight antique dark olive    Manufacturer#1    Brand#13    PROMO BRUSHED TIN    5    MED JAR    NULL
furious
6    powder burlywood chartreuse indian steel    Manufacturer#5    Brand#51    SMALL BURNISHED BRASS    28    JUMBO JAR
  NULL    regular a 
7    orchid burlywood blush cornsilk seashell    Manufacturer#4    Brand#42    SMALL PLATED BRASS    46    MED JAR
NULL   stealthy 
8    lemon blue dark steel purple    Manufacturer#1    Brand#11    STANDARD POLISHED COPPER    4    LG BOX    NULL
permanent,doggeddinos 
9    misty light papaya floral seashell    Manufacturer#4    Brand#42    LARGE PLATED COPPER    33    JUMBO DRUM
NULL   fluffily silent di 
10    lavender dim goldenrod linen indian    Manufacturer#4    Brand#42    ECONOMY ANODIZED TIN    26    WRAP DRUM
NULL   quietly thin h 
11    spring papaya blanched khaki lavender    Manufacturer#1    Brand#11    ECONOMY ANODIZED TIN    23    SM PACK
NULL   busy,id 
12    thistle sienna coral turquoise dark    Manufacturer#3    Brand#31    LARGE ANODIZED NICKEL    11    MED BOX
NULL   finally even platelet 
13    steel light ligh slate ivory    Manufacturer#4    Brand#45    STANDARD BURNISHED STEEL    43    WRAP PACK    NULL
  instructions 
14    cornflower deep sandy rose indian    Manufacturer#5    Brand#52    ECONOMY BRUSHED STEEL    35    LG PACK    NULL
  dinos near  
15    navy floral burnished saddle frosted    Manufacturer#2    Brand#23    LARGE POLISHED STEEL    19    JUMBO CAN
NULL   permanently  
16    lavender drab indian firebrick firebric    Manufacturer#4    Brand#43    STANDARD BRUSHED NICKEL    44    MED PKG
  NULL    slyly sly noto 
17    grey green chocolate royal pale    Manufacturer#3    Brand#33    ECONOMY PLATED NICKEL    15    MED DRUM    NULL
 sly realms may  
18    beige chocolate lime blue purple    Manufacturer#5    Brand#55    PROMO ANODIZED STEEL    1    MED DRUM    NULL
thin,brav 
19    moccasin dim pale gainsboro bisque    Manufacturer#1    Brand#12    SMALL BRUSHED STEEL    17    WRAP PKG    NULL
  permanently regular T 
20    dim hot white antique forest    Manufacturer#5    Brand#51    STANDARD ANODIZED COPPER    19    WRAP DRUM    NULL
  doggedly thin  
21    slate powder wheat pink goldenrod    Manufacturer#3    Brand#33    SMALL ANODIZED COPPER    13    SM BOX    NULL
 thin  need to grow 
22    dim chocolate thistle orange moccasin    Manufacturer#1    Brand#15    SMALL PLATED NICKEL    13    WRAP BAG
NULL   close forges nee 
23    papaya sienna antique antiqu hot    Manufacturer#2    Brand#25    SMALL PLATED NICKEL    37    WRAP BAG    NULL
thin warthogs try  
24    plum burlywood frosted white green    Manufacturer#1    Brand#14    MEDIUM PLATED BRASS    21    JUMBO PACK
NULL   sauternes dazzle id 
25    medium chartreuse firebrick ghost maroon    Manufacturer#5    Brand#52    MEDIUM ANODIZED STEEL    2    SM JAR
NULL   permanently brave f 
26    pale lemon firebrick floral papaya    Manufacturer#2    Brand#25    MEDIUM BRUSHED BRASS    12    JUMBO DRUM
NULL   regular grouches o 
27    azure firebrick red papaya thistle    Manufacturer#5    Brand#52    PROMO ANODIZED STEEL    14    JUMBO BAG
NULL   close,close soma 
28    hot cornflower burnished burlywood sienna    Manufacturer#4    Brand#45    LARGE BURNISHED TIN    22    LG PACK
NULL    bold sentiment 
29    firebrick plum spring coral magenta    Manufacturer#5    Brand#52    MEDIUM ANODIZED COPPER    23    SM CAN
NULL   ironic,permanent cour 
30    lace beige green lavender blush    Manufacturer#3    Brand#31    STANDARD PLATED TIN    29    MED PKG    NULL
bold,evenasym 
31    navajo khaki saddle magenta dim    Manufacturer#2    Brand#24    SMALL ANODIZED NICKEL    10    SM DRUM    NULL
busy,fin 
32    chiffon drab plum red dim    Manufacturer#3    Brand#33    MEDIUM ANODIZED COPPER    20    SM DRUM    NULL
furious
33    green wheat cornsilk navajo blush    Manufacturer#5    Brand#54    SMALL POLISHED BRASS    29    SM PKG    NULL
blithely entici 
34    saddle orange lace coral papaya    Manufacturer#5    Brand#53    STANDARD POLISHED NICKEL    6    JUMBO BAG
NULL   pinto beans wa 
35    lemon puff navy purple honeydew    Manufacturer#1    Brand#11    PROMO POLISHED NICKEL    27    SM CAN    NULL
sheaveswoul 
36    bisque metallic honeydew khaki sky    Manufacturer#1    Brand#13    STANDARD POLISHED STEEL    24    LG BOX
NULL   attainments snooze es 
37    cream magenta ghost pale brown    Manufacturer#2    Brand#22    LARGE BRUSHED TIN    42    WRAP DRUM    NULL
warhors
38    metallic royal cornsilk burlywood plum    Manufacturer#2    Brand#21    STANDARD POLISHED TIN    35    MED PACK
NULL    sly depths near the e 
39    misty cornsilk pink firebrick slate    Manufacturer#5    Brand#53    MEDIUM PLATED BRASS    11    SM BOX    NULL
 tithes pl 
40    bisque magenta beige blue orange    Manufacturer#3    Brand#33    PROMO BRUSHED COPPER    2    MED BOX    NULL
sometim
41    gainsboro maroon blush turquoise rose    Manufacturer#3    Brand#33    LARGE BURNISHED NICKEL    40    WRAP BAG
NULL    grouches beside 
42    honeydew bisque linen spring chiffon    Manufacturer#1    Brand#15    MEDIUM BRUSHED NICKEL    40    MED PKG
NULL   sheaves will x_ray  
43    burnished lace medium royal lime    Manufacturer#2    Brand#24    LARGE ANODIZED NICKEL    46    SM DRUM    NULL
 multiplie 
44    purple antique sienna snow lace    Manufacturer#3    Brand#35    SMALL ANODIZED BRASS    47    SM BOX    NULL
instructionsare a 
45    moccasin wheat gainsboro linen medium    Manufacturer#5    Brand#52    PROMO POLISHED STEEL    24    LG BOX
NULL   quick,d 
46    aquamarine peru olive goldenrod coral    Manufacturer#4    Brand#42    MEDIUM PLATED COPPER    14    LG CAN
NULL   attainments wi 
47    powder cream linen sandy smoke    Manufacturer#4    Brand#43    PROMO POLISHED COPPER    13    WRAP PACK    NULL
 brave d 
48    metallic rose peach mint linen    Manufacturer#3    Brand#32    STANDARD PLATED STEEL    12    SM JAR    NULL
sly,enticingfr 
49    navy rosy light puff lime    Manufacturer#4    Brand#42    ECONOMY ANODIZED BRASS    42    JUMBO CASE    NULL
theodolites 
50    tan saddle ghost honeydew slate    Manufacturer#4    Brand#44    LARGE PLATED TIN    16    JUMBO BAG    NULL
ideasshould ha 
51    ghost plum maroon olive indian    Manufacturer#1    Brand#11    ECONOMY BRUSHED NICKEL    23    JUMBO CASE
NULL   permanen 
52    papaya lemon coral navajo puff    Manufacturer#5    Brand#52    SMALL BURNISHED NICKEL    10    JUMBO BOX    NULL
  ,ironic 
53    medium light chiffon brown cornflower    Manufacturer#5    Brand#53    PROMO PLATED STEEL    41    SM CAN    NULL
  platelets th 
54    pale plum gainsboro cornflower lime    Manufacturer#2    Brand#21    LARGE ANODIZED STEEL    27    SM CAN    NULL
  multipl 
55    chocolate cornsilk goldenrod white almond    Manufacturer#2    Brand#22    LARGE PLATED COPPER    19    SM BAG
NULL   ruthless hockey pla 
56    blue brown ghost sandy rosy    Manufacturer#5    Brand#54    MEDIUM POLISHED BRASS    1    WRAP CASE    NULL
sometimesbrav 
57    lemon pink hot dim cream    Manufacturer#5    Brand#53    PROMO POLISHED TIN    43    LG CAN    NULL
stealthy,qu
58    salmon moccasin sienna light turquoise    Manufacturer#1    Brand#13    ECONOMY POLISHED TIN    24    JUMBO BAG
NULL    warthogs  
59    turquoise peru cyan coral sandy    Manufacturer#4    Brand#41    STANDARD ANODIZED COPPER    6    LG PACK    NULL
  even,busy patt 
60    linen plum smoke saddle seashell    Manufacturer#3    Brand#32    MEDIUM BURNISHED BRASS    22    WRAP JAR
NULL   escapades near the  
61    firebrick green dim salmon spring    Manufacturer#1    Brand#13    LARGE PLATED NICKEL    42    MED CASE    NULL
 forges sinc 
62    lime lace bisque saddle goldenrod    Manufacturer#3    Brand#31    LARGE BRUSHED NICKEL    35    SM PACK    NULL
 foxes need to play sly 
63    ivory tan sienna spring snow    Manufacturer#4    Brand#41    MEDIUM ANODIZED TIN    42    WRAP BOX    NULL
furiuslyquiet frets s 
64    ivory dim pink gainsboro black    Manufacturer#3    Brand#31    LARGE POLISHED BRASS    28    JUMBO BAG    NULL
asympto 
65    lemon honeydew lime green pink    Manufacturer#3    Brand#35    MEDIUM ANODIZED COPPER    30    LG BOX    NULL
neverdogged plate 
66    grey goldenrod magenta maroon ivory    Manufacturer#4    Brand#42    STANDARD PLATED COPPER    16    JUMBO BOX
NULL   warthogs for the 
67    burnished plum gainsboro papaya cream    Manufacturer#1    Brand#15    PROMO BRUSHED COPPER    22    SM BOX
NULL   bold,regular platel 
68    frosted khaki aquamarine lavender brown    Manufacturer#1    Brand#11    SMALL PLATED COPPER    35    MED CASE
NULL   final,fl 
69    pink navy maroon aquamarine red    Manufacturer#3    Brand#35    PROMO BURNISHED NICKEL    45    LG BAG    NULL
ruthless,quiet warhors 
70    burnished azure papaya chartreuse firebrick    Manufacturer#5    Brand#53    ECONOMY BURNISHED NICKEL    8
JUMBOBOX    NULL    permanent orbit 
71    rose plum plu papaya wheat    Manufacturer#4    Brand#42    LARGE BURNISHED TIN    49    LG CAN    NULL
excuses 
72    cream papaya dim thistle orchid    Manufacturer#4    Brand#43    PROMO BURNISHED BRASS    14    LG PKG    NULL
fluffy,ironicbr 
73    gainsboro dark mint metallic tan    Manufacturer#1    Brand#12    MEDIUM ANODIZED TIN    44    MED PKG    NULL
sauternessauterne the 
74    cornflower royal gainsboro azure turquoise    Manufacturer#1    Brand#14    ECONOMY POLISHED STEEL    35    LG
PKG   NULL    hockey players prom 
75    coral powder navajo black wheat    Manufacturer#3    Brand#31    PROMO BRUSHED COPPER    38    LG PKG    NULL
thinlyb 
76    dark burnished cornflower lemon lemo    Manufacturer#1    Brand#12    LARGE PLATED COPPER    36    JUMBO DRUM
NULL   depths without the 
77    cornsilk powder forest moccasin gainsboro    Manufacturer#2    Brand#23    ECONOMY BRUSHED NICKEL    7    MED BOX
  NULL    ruthless,permane 
78    honeydew burnished drab azure linen    Manufacturer#2    Brand#24    MEDIUM POLISHED BRASS    35    WRAP BAG
NULL   dogged,quick p 
79    orchid salmon gainsboro thistle coral    Manufacturer#2    Brand#24    STANDARD ANODIZED NICKEL    28    SM BAG
NULL    quiet,reg 
0    0    2577    565.36    close warthogs instead of the brave,close dependencies can unwind fluffily
0    1    2282    856.00    sometimes permanent depths among the orbits boost before the regularly bold hockey players
:
0    2    8574    647.33    quick,furious instructions around the enticing warhorses dazzle slyly beyond the
blithe,bravepains 
0    3    9337    485.52    idle,careful frays by the close decoys will hang courts -- platelets must thrash alongside
ofthe b 
1    1    3390    293.44    sheaves shall cajole even dugouts .
1    2    1103    535.82    stealthy dolphins might use regularly during the dolphins stealthy,even Tiresias' up t
1    3    6818    282.66    courts might x_ray daringly might x_ray daringl furiusly quiet
1    0    7400    584.95    idle pains beneath the ruthless,idle pinto beans may sleep bravely may sleep bravel the
idlyperman 
2    2    3313    988.44    enticing,dogged somas about the idle,thin sentime
2    3    2895    612.39    even,regular pinto beans kindle into the idle,even forges
2    0    3567    876.17    quick,fluffy frays since the final,sly warhorses solve quietly enticing patterns :
2    1    1926    552.56    bold,furious pains solve throughout the final dolphins warhorses nag always --  decoys
3    3    9663    849.59    regularly  excuses wake always across the careful
3    0    1239    907.14    daringly idle dependencies under the careful  dazzle thinly ironic forges thinly ironic
forgeblithely enticing warhorses could impress fluffily platelets ; 
3    1    8658    971.03    ironically close pinto beans try to poach : brave ideas poach courts .
3    2    7619    18.77    somas haggle daring,slow notornis ? dolphins across the furious,furious id
4    0    4723    407.91    quickly daring attainments must cajole boldly notornis notorni slowly stealthy multipliers
ougthto 
4    1    8515    289.00    thin,careful dependencies up the stealthy braids shall have to thrash quietly inside the
blithelydaring depths . 
4    2    9583    594.14    thinly busy platelets serve regular,busy excuses regular,busy excuse
4    3    7498    78.69    ironically furious sheaves during the warthogs hang ironically quiet, excuses .
5    1    4921    423.08    quick frays despite the silently stealthy pattern
5    3    6828    109.00    dependencies by the furiusly blithe escapades shall cajole enticing decoys ?
5    0    8605    143.00    regular,quick frets could have to believe : stealthily final pearls despite the regula
5    2    819    645.33    brave,brave gifts above the idle sheaves wake bravely across the never close attainments ?
6    2    3092    676.60    slyly brave somas near the fluffy pinto beans grow always toward the patterns .
6    0    6496    798.21    ,furious foxes ,furious foxe engage never along the epitaphs
6    1    2739    259.79    bravely furious pinto beans breach --  furious pains integrate for the doggedly close
grouches
6    3    5865    521.42    silent braids alongside of the sly,regular regula
7    3    6084    872.77    bold,ironic ideas among the final asymptotes was always ideas
7    1    1999    79.44    blithe,ironic dependencies of the sly  doubt thinly thin somas --
7    2    3661    644.15    final,quiet tithes will grow thinly over the evenly  attainments
7    0    3161    264.20    evenly furious forges cajole to the ironic sauternes
8    0    5562    500.56    slyly careful waters could kindle never warthogs ! slow,ruthless dependencies above the
ironicdolphins above t 
8    2    4913    701.65    busy forges toward the tithes do snooze about the doggedly dogged grouches .
8    3    7700    342.34    finally quick warthogs ougth to print :
8    1    6690    461.48    sauternes by the depths doze quick,bold warthogs .
9    1    5388    298.30    ,quick multipliers may print doggedly ;
9    0    3532    505.47    permanent,slow excuses promise among the sentiments regular sentiments grow fluffily
enticinglyquick pinto bea 
9    3    119    299.20    thin theodolites are never above the final platelets careful,close orbits above the furious
asymptotescan mold ruthless,silent platelets ; multipliers affix regularly silen 
9    2    2296    466.95    dolphins must poach quickly !
10    2    4938    919.71    slyly blithe frays will have to wake busy warhorses ;
10    1    5280    835.46    fluffily daring grouches inside the busily ruthle
10    0    7323    870.84    dolphins try to eat careful,careful notornis --
10    3    2295    993.13    regular,close notornis hang ! quietly ironic attainments since the enticing,slow grouches
doprint blithely regular grouches 
11    3    5293    500.56    thin ideas shall have to sleep --
11    2    6307    60.73    furiusly  forges over the thin,regular excuses doze regular attainments !
11    1    55    541.90    close,even pearls toward the ideas should engage
11    0    2555    228.92    Tiresias' nod asymptotes asymptote closely daring courts try to hinder furiusly
blithe,blithesheaves ! furious,slow orbits should have to integrate 
12    0    3954    80.38    slow,ironic epitaphs must kindle silently dolphins ; slow courts of the thin,bold pint
12    3    7665    986.70    hockey players against the slyly careful frets must are always up the busy,thin waters ;
12    2    6950    309.03    closely final decoys dazzle along the Tiresias'
12    1    6619    282.80    enticing waters by the close,quick platelets do mold slyly since the asymptotes ;
13    1    2896    278.53    stealthily daring foxes under the escapades should lose without the enticing,fluffy tithes
?
13    2    8448    490.18    dugouts kindle permanently fluffy,furious attainments fluffy,furious attainment
13    3    2205    82.11    even sheaves in place of the sometimes daring foxes could haggle fluffily brave,blithe
notornis. 
13    0    7158    859.87    ruthless Tiresias' snooze carefully atop the multipliers thin,
14    2    1747    171.10    doggedly ruthless courts would kindle ruthlessly regular,brave frays ?
14    3    6027    534.95    Tiresias' should have to sleep sometimes ? dolphins try to nod evenly try to nod evenl
quick,doggedplatelets grow dugouts ; 
14    0    3893    955.82    careful,quick decoys should detect carefully courts court
14    1    8319    11.66    blithe,daring epitaphs integrate busily daringly thin ideas daringly thin idea
15    3    7413    56.31    escapades sleep finally within the ironic sauternes
15    0    8882    106.15    depths could solve :
15    1    2539    415.42    brave somas shall hang sometimes dugouts ?
15    2    4868    698.77    braids since the stealthy,quick warhorses believe boldly since the courts -- slyly busy
painsslyly busy pain despite the bold  fluffy sheaves integrate ruthlessly busily sly grouches ? brave,final  
16    0    9726    692.38    fluffy excuses of the bravely permanent pearls kindle inside the fluffy pinto beans : thin
fraysthin fray poac 
16    1    903    237.45    dogged instructions believe regularly forges ? realms between the careful,quiet multipliers
detect 
16    2    6155    348.64    careful platelets instead of the stealthily regular pains hinder never except the
carefullybrave multipliers ; 
16    3    7061    713.41    final theodolites about the patterns engage except the never final somas .
17    1    1649    627.28    quiet hockey players around the thin sheaves was sometimes from the stealthy excuses --
bravelyeven frays despite the close,ruthless theodolites detect slyly without the do 
17    2    2866    472.58    blithely daring sheaves during the silently quick platelets should have to cajole slow
pintobeans --  without the busy,silent epitaphs could maintain idly about the ruthless dinos ! ent 
17    3    6517    280.04     even waters  even water sleep stealthily daring,
17    0    9292    145.10    decoys could have to kindle idly could have to kindle idl foxes ; thin forges to the
regularlyregular asymptotes can thrash with the fl 
18    2    5467    432.29    sometimes daring platelets sleep always dogged,stealthy attainments ?
18    3    7729    588.45    slyly brave dolphins beside the slow,blithe dependencies could promise beside the sile
18    0    9532    345.45    furiusly regular sheaves could have to sleep always !
18    1    4148    231.28    quickly sly decoys around the daring ideas should play blithel
19    3    690    30.70    decoys of the somas hinder carefully on the daring  . quick,quick waters into the careful
dinosougth to x_ray  
19    0    4014    354.34    warthogs beneath the waters maintain tithes !
19    1    7704    371.96    busily permanent depths busily permanent depth enticingly .
19    2    9081    906.32    dinos x_ray atop the daring pinto beans quiet,thin platelets since the permanent,fluff
20    0    9640    799.98    silent gifts behind the warhorses shall have to believe finally without the blithe excuses
.
20    1    7853    424.62    blithe,daring gifts hang ?
20    2    8699    875.03    ironic warthogs need to kindle furiusly for the sentiments
20    3    8355    777.13    ,idle theodolites since the asymptotes sublate finally thinly
21    1    7104    818.19    idly ironic platelets must kindle close braids . ruthless theodolites would nod for th
21    3    442    209.00    dugouts with the regularly furious frets eat ea braids ea braid
21    2    9428    917.50    enticingly close pearls besides the never careful hockey players ougth to use never
warhorses! regularly enticing platelets could was s 
21    0    1011    573.41    bravely busy instructions about the blithe,final decoys maintain from the realms .
22    2    1468    421.59    never dogged courts must mold silently epitaphs --
22    0    5949    697.45    dogged asymptotes mold always escapades ;
22    1    7951    540.67    busy,enticing frays doubt upon the thin,stealthy pinto beans
22    3    3439    355.14    dogged,quick warhorses might serve sometimes ; escapades might are near th
23    3    504    257.02    enticing,final attainments impress permanently besides the tithes quick dependencies to the
regularlyironic realms shall have to impress during the epitaphs ! even,careful hockey player 
23    1    9706    788.33    furiusly ironic orbits should have to affix ironically should have to affix ironicall
23    0    6242    926.74    enticing,dogged attainments lose ruthlessly regularly stealthy notornis regularly stealthy
notorni
23    2    2127    869.75    ironically slow realms must was evenly must was evenl
24    0    9253    124.09    furious grouches haggle -- epitaphs will have to cajole regularly will hav
24    2    3540    601.33    fluffy platelets with the enticingly idle frets doubt multipliers .
24    1    609    537.77     boost regularly silently fluffy depths .
24    3    3982    506.30    brave,close theodolites above the  blithe forges need to nod around the qu
25    1    8620    202.95    silently permanent waters shall use . boldly quick theodolites could have to impress
acrossthe daring,regular multipliers dogged,ironic asymptotes  
25    0    7876    645.47    gifts run slyly pearls .
25    3    5    208.55    ruthlessly final sheaves solve ironically outside the braids
25    2    3957    215.61    ruthless instructions will run ;
26    2    3457    719.03    brave escapades should engage enticingly by the quiet sentiments
26    1    208    468.57    quietly dogged pains at the multipliers could have to doubt stealthily could have to d
26    0    127    603.57    busy foxes should have to wake slowly idle,ruthless somas .
26    3    6251    641.94    enticing,dogged decoys breach --
27    3    3050    698.17    pearls integrate silently ; dugouts boost enticingly gifts ; forges try to integrate .
thinexcuses kindle alongside of the furious instructions 
27    2    6920    590.60    ruthlessly furious grouches into the orbits into the orbit upon the sly frets ;
27    1    9088    483.11    theodolites after the escapades use regular notornis :
27    0    6014    442.05    theodolites ougth to doze fluffily --
28    0    4795    224.24    idly careful escapades are !
28    3    1507    118.48    orbits under the frets shall have to maintain always alongside of the bravely daring
braids; furiusly quick pinto beans may integrate may integrat the close orbits thin,busy warthogs up 
28    2    1872    942.22    bold realms outside the enticingly daring Tiresias' lose patterns :
28    1    4790    432.90    sheaves with the  quiet pinto beans try to integrate busily regular pearls ?
29    1    4439    540.64    quiet,blithe hockey players nag sometimes nag sometime quietly quiet sheaves must have
29    0    5981    410.39    permanent,bold orbits above the ruthlessly fluffy orbits should haggle before the pinto
beans; 
29    3    5433    179.24    never daring realms beneath the ,slow multipliers maintain atop the even platelets ?
29    2    4199    794.05    quietly even dinos hang ;
30    2    8384    408.02    quietly ironic orbits must hinder --
30    3    6795    578.40    busy,slow foxes after the careful warhorses can affix over the final,stealthy frets !
30    0    9308    341.91    final escapades must have to doze sauternes sauterne silent platelets throughout the
instructionsw 
30    1    6881    2.98    stealthy,even attainments believe finally --
31    3    3050    348.75    ,daring asymptotes hang stealthily ironic braids : regular,fluffy asymptotes during the
final,ironicironi nag until the final,silent frets ! furious warhorses since the slow,daring forg 
31    0    8915    389.75    sly,busy instructions thrash even warthogs ? busi
31    2    5886    730.71    fluffily quiet sauternes engage pearls ? thin orbits could have to integrate -- permanent
realmspermanent realm the thinly silent excuses will have to dazzle bravely careful dolphins -- 
31    1    6601    565.08    final,blithe realms believe doggedly dogged pains ? bold dolphins instead of the brave
ideaswas furiusly to the bravely idle tithes ? p 
32    0    9248    822.21    stealthy,stealthy courts in place of the sauternes may hinder enticing,sly sheaves ! quiet
sheavesaffix slow somas ! 
32    1    3178    361.25    ironic,stealthy warthogs near the careful,permanent asymptotes must print
32    3    1472    930.75    regular dinos inside the regularly silent orbits haggle regularly permanent epitaphs ?
carefullyruthless dinos doze  -- blithe Tiresias' poach quiet,quiet escapades ! dinos beyond the b 
32    2    3199    911.93    permanent courts detect .
33    1    3121    898.07    slow, notornis from the fluffily enticing platelets will doubt ruthlessly instead of t
33    2    5285    443.57    theodolites may kindle quickly among the boldly even foxes slyly slow ideas after the
fluffy,quietsheaves hinder along the dinos . 
33    3    8706    477.69    sauternes shall x_ray ;
33    0    2339    985.57    attainments according to the frets believe evenly pearls -- instructions for the forges
shallhave to haggle outside the final,dogged pinto beans : 
34    2    3954    698.37    frays could have to boost ironic,quiet epitaphs ?
34    3    6169    710.99    sometimes furious furiou except the daring,final warthogs except the daring,final warthog
alwaysunder the dogg 
34    0    2197    297.55    never careful pinto beans up the orbits should have to affix enticingly thin dinos
enticinglythin dino ironic,quiet theodolites impress -- sometimes even waters 
34    1    3144    174.10    idly final frets ougth to cajole forges forge
35    3    5796    745.88    busy waters nag regularly since the furious,close warhorses
35    0    7776    905.35    quick,silent forges instead of the quietly brave waters breach on the brave,blithe frets !
thin,thingrouches u 
35    1    6504    480.79    furious,bold braids sleep slyly toward the evenly quiet platelets
35    2    1382    234.84    silent,permanent dolphins for the multipliers nag finally up the permanent courts ?
36    0    7341    359.77    slowly slow pinto beans x_ray x_ra x_r ironic hockey players over the gifts run ruthlessly
braids! 
36    1    9812    511.05    ironically ironic notornis beneath the blithe,brave platelets poach hockey players .
36    2    9777    904.79    slow,final escapades x_ray up the permanently idle dependencies
36    3    9526    777.39    finally busy realms x_ray blithely against the permanent,thin Tiresias'
37    1    9560    405.41    daring  breach doggedly even decoys -- silent sentiments besides the braids need to use
regularlyoutside the instructions outside the instruction busy,bold decoys beside the foxes cajole in place o 
37    3    770    278.20    sentiments sentiment doubt silently enticing dependencies .
37    0    3667    851.26    dinos during the attainments mold bravely into the ruthless gifts ? furious,final hockey
playerspast the pains use evenly along the even,stealthy sauternes ? final,dogged b 
37    2    885    670.57    even depths unwind  atop the enticing tithes finally permanent foxes under the always
furioussentiments detect 
38    2    2993    46.07    sometimes close ideas engage engag finally stealthy pinto beans from the silently blithe
sauternestry to serve fluffily fluffy,quick so 
38    0    5842    761.63    never brave somas over the asymptotes believe never quick patterns --
38    1    9880    37.37    warthogs during the sly,furious excuses will have to engage over the excuses over the
excuseironically furious foxes into the blithe,daring instructions need to 
38    3    2988    479.19    furious,thin dependencies near the final pains sublate Tiresias' :
39    3    577    602.18    quick,final dolphins need to kindle always dependencies ;
39    1    1983    488.34    ruthlessly dogged warhorses can run epitaphs epitaph
39    2    6305    416.58    platelets beyond the ruthless dinos doubt around the furious pinto beans :
39    0    6948    666.72     despite the instructions boost between the bold, instructions . sly attainments sly
attainmentthe ironic warhorses affix  near the busy,daring depths ? fluffy,final multip 
40    0    3767    290.87    dogged, patterns to the brave pearls should have to eat thinly boldly  multipliers :
40    2    399    819.46    close waters maintain doggedly dogged dinos . thin notornis upon the final escapades nag
uponthe quiet depths  
40    1    5855    703.99    sly dolphins nod always .
40    3    1072    825.56    boldly quick excuses should have to grow furiusly during the dogged grouches
41    1    5319    375.84    careful dependencies around the somas will boost close,enticing pearls ! thin dolphins
41    0    3513    461.19    fluffily furious instructions cajole doggedly busy,silent attainments ;
41    3    8040    802.30    enticingly busy grouches do play : fluffily brave gifts detect evenly inside the evenly
thinplatelets ruthlessly ironic epitaphs of the frets may run quiet,bold 
41    2    5825    643.70    stealthy frets may integrate asymptotes -- always ironic water
42    2    6472    250.37    fluffy gifts nod ironic,dogged ideas --
42    1    6503    811.39    ironic,careful theodolites try to lose silently w
42    0    1059    241.18    warhorses should have to cajole ruthlessly carefully blithe dinos ?
42    3    6298    667.60    busy ideas unwind dependencies !  somas will wake slyly close epitaphs ?
43    3    7692    42.36    furious pearls cajole during the theodolites
43    2    8712    48.69    busy, theodolites near the doggedly bold frays believe closely between the quiet depths !
quick,furiouspatterns do sublate ; 
43    1    3246    276.88    waters run upon the permanent,sly somas quiet,careful orbits during the stealthy,permanent
sheavesduring the stealthy,permanent sheave  
43    0    2146    176.97    close somas promise quietly over the furious orbits blithely busy excuses to the silent
dugoutsx_ray dogged,quiet Tiresias' dogged,quiet Tiresias 
44    0    923    620.98    dependencies dependencie nag evenly pains .
44    3    9749    906.79    daring pinto beans for the escapades must impress about the daring sauternes ;
44    2    3643    533.27    silent braids must doubt furiusly stealthily close grouches ?
44    1    3369    636.95    carefully regular courts among the daring,silent Tiresias' serve thinly forges :
45    1    7673    294.55    notornis to the slow, somas will have to serve ruthlessly daringly dogged asymptotes :
45    2    4579    622.40    closely  sentiments need to kindle blithely in place of the final dugouts ironically
regularpatterns sublate evenly outside 
45    0    2547    918.01    enticing,sly excuses according to the busily thin dependencies should have to nag fluffily
daringideas ? 
45    3    168    283.54    idle dinos use never dogged,slow warthogs .
46    2    3282    51.61    idly sly warhorses should have to impress stealthily : ironic dinos thrash .
46    3    7993    371.93    brave,enticing attainments during the dinos could hinder upon the attainments :
46    1    6137    95.09    thin,sly multipliers thin,sly multiplier the dogged asymptotes should have to play
stealthilynear the quickly dogged dependencies near the quickly  
46    0    537    336.91    orbits into the even waters nag slowly toward the
47    3    6881    957.08    careful dinos atop the permanently ruthless pearls cajole thinly ironic escapades --
47    2    6210    884.58    sometimes quick theodolites x_ray ruthlessly thin theodolites --
47    1    8505    960.54    quiet,brave asymptotes must cajole among the frays bold realms
47    0    6948    260.00    quick,final forges for the finally ironic realms will wake blithely at the thin,even e
48    0    6513    179.87    close sentiments could run closely -- enticing multipliers from the excuses could have to
cajolebusily idly blithe patterns idly blithe 
48    3    5628    577.51    even,blithe platelets breach slowly ironic,even pains : waters against the sentiments
48    2    7029    441.91    fluffy,even hockey players fluffy,even hockey player affix carefully past
48    1    8436    225.39    dogged,ruthless warthogs for the patterns may doubt dolphins :
49    1    8239    164.73    waters across the busy sheaves doze closely besides the brave,silent pinto beans --
49    2    7639    685.22    busily regular pains near the epitaphs could cajole silent,sly theodolites .
49    3    6903    379.98    bravely ironic asymptotes impress .
49    0    8242    673.93    careful attainments believe up the quickly careful warhorses stealthy,ironic hockey
playersfor the doggedly quick dolphins mold warthog 
50    2    8370    705.46    brave decoys behind the furious notornis use ideas ! ideas boost :
50    3    4596    397.08    quickly careful excuses may was doggedly between the regular Tiresias'  theodolites
throughoutthe dogged,ironic grouches was closely frays fray bol 
50    0    9104    479.93    slow Tiresias' need to doubt always under the slow depths ironic,permanent sentiments
beyondthe bl 
50    1    8721    435.83    excuses wake after the ironically idle courts
51    3    368    976.37    sly,sly pinto beans solve daring, forges !
51    0    4660    907.78    foxes against the warthogs could have to  permanently ironic i
51    1    5894    63.35    decoys could have to breach close realms ; regula
51    2    3312    384.06    stealthy platelets about the daring excuses integrate since the carefully permanent courts
.
52    0    9728    129.53    dogged patterns snooze furiusly snooze furiusl bold hockey players :
52    1    5457    655.27    idle gifts near the thinly brave waters can run permanently thin sauternes .
52    2    4054    852.54    slow sentiments could poach always ! daring,bold warthogs brea
52    3    7906    20.90    idle dolphins kindle finally ; theodolites snooze blithely ruthless instructions .
ironic,daringinstructions m 
53    1    7543    718.91    waters water use according to the instructions fluffy gifts on the depths
53    3    6328    723.10    grouches lose among the always stealthy attainments quickly enticing sentiments quickl
53    0    1806    143.72    ruthlessly sly foxes haggle stealthily -- regularly thin asymptotes after the thin waters
arecarefully quick,b 
53    2    6612    689.31    sentiments under the quiet,stealthy dependencies will have to hang since the bold gifts ;
54    2    4408    56.79    regular sheaves since the bravely brave gifts affix bravely closely quiet frets :
idle,regularTiresias' kindle ; 
54    0    8556    568.65    forges grow within the thin, attainments
54    3    341    467.02    thin,enticing warthogs shall have to snooze carefully bold courts -- careful,furious
multipliersthroughout the stealthily careful realms play bravely outside the slowly regular dinos : furious dino 
54    1    6172    353.37    daringly dogged patterns outside the silent,stealthy theodolites are besides the busy,sly
instructionsbesides the busy,sly instruction 
55    3    6709    543.30    ruthlessly final patterns do boost inside the even,sly courts
55    1    3476    753.68    final,daring depths except the courts should poac
55    0    105    327.71    regularly final sheaves instead of the slyly quiet theodolites promise fluffily asymptotes
--
55    2    7456    985.68    brave,ruthless pains shall have to sublate ;
56    0    7501    217.53    escapades escapade dazzle hockey players hockey player careful,furious orbits sleep
fluffy,quickorbits ; 
56    2    1894    340.97    silently thin attainments must have to kindle fluffy theodolites ; bold platelets solve
fluffilysolve fluffil 
56    1    3124    643.28    quiet,daring hockey players beside the quick warthogs doubt within the stealthy,even d
56    3    2797    684.70    ,bold hockey players integrate ; regularly enticing hockey players accordi
57    1    3684    996.24    furious,thin orbits furious,thin orbit detect quietly careful
57    0    452    960.42    permanently stealthy hockey players beside the sly decoys eat before the  before the
57    3    7687    299.88    daringly careful attainments near the close,quick braids might dazzle thinly slow, foxes ;
57    2    4386    529.66    even warthogs between the stealthy sauternes should run closely fluffy dependencies : sly
warthogs 
58    2    7209    587.97    dogged realms dogged realm quietly inside the sly platelets daring,bold braids through the
idle pains should h 
58    1    1165    348.01    quick  ougth to poach about the quietly fluffy courts
58    0    299    608.07    epitaphs among the fluffy,quick pearls among the fluffy,quick pearl mold quickly quick
gifts-- 
58    3    3594    85.08    slow,stealthy instructions shall engage blithely
59    3    2984    610.26    carefully ruthless platelets outside the notornis do engage up
59    2    8635    295.38    boldly sly braids past the idle pinto beans breach fluffily breach fluffil
59    1    6220    535.70    dogged,ruthless asymptotes x_ray outside the sly theodolites silently close multipliers
nagbrave multipliers brave multiplier 
59    0    2394    177.48    sometimes final decoys try to serve -- thin frets around the blithe courts
60    0    2906    263.54    ironically silent excuses against the careful instructions grow enticing,daring
theodolites. 
60    3    9113    584.24    asymptotes hinder never instead of the regular escapades
60    2    6886    275.60    idle platelets may dazzle ;
60    1    9284    258.99    decoys under the careful braids use boldly daring instructions ;
61    1    4855    778.22    busy, sheaves need to hinder ?
61    3    3795    419.25    doggedly ironic sauternes are instructions . permanently stealthy multipliers across the
patternssnooze  beneath the enticing forges -- 
61    2    432    108.56    daringly sly Tiresias' except the stealthy hockey
61    0    6872    217.55    warhorses along the bold decoys can x_ray boldly outside the even dolphins
62    2    4464    971.93    slow,idle warthogs thrash slowly ?
62    0    5377    296.99    furious attainments under the quietly bold sentiments unwind bold pains ! dogged
instructionsfor t 
62    1    6678    531.45    foxes would doze regularly sly waters .
62    3    7178    982.67    permanent,daring Tiresias' was brave asymptotes --
63    3    2918    448.48    quiet pearls maintain through the even escapades
63    2    7757    47.51    daring tithes will x_ray gifts ;
63    0    9811    313.99    epitaphs in place of the brave,ironic excuses believe finally excuses excuse excuses
besidethe regular,fluffy theodolites should boost finally dolphins ? enticingly daring sentiments during the slo 
63    1    5998    652.80    courts do boost fluffily stealthy,sly hockey players ; depths
64    0    4734    385.26    ,regular waters for the daring multipliers play bravely through the fluffy dependencies !
dogged,cl
64    3    3169    981.00    even,ironic gifts after the boldly furious orbits would nag on the final,b
64    2    1665    477.42    asymptotes at the grouches mold quickly silent forges silent forge
64    1    4872    139.82    never regular regula near the carefully blithe gifts would engage never idle dependencies
:
65    1    6663    390.29    furiusly furious orbits eat quietly bold sauterne
65    2    599    705.53    enticing,slow somas try to nod furiusly permanently bold escapades --
65    3    6835    207.16    bold sauternes thrash -- fluffily quick depths mu
65    0    4860    549.73    hockey players from the idle attainments doze busy forges :  e
66    2    5265    600.41    careful dinos serve without the even,silent pains slowly final frays mold
66    3    6268    171.42    forges poach fluffily alongside of the pains
66    0    6684    335.47    theodolites around the busily enticing frets ougth to serve by
66    1    8963    591.62    permanent,dogged frets without the dolphins will believe pearls . multipliers on the
quiet,enticingasymptotes would grow closely about  
67    3    64    66.11    silent,furious pains ougth to doze busily depths ?
67    0    2155    966.12    regularly dogged frays could affix on the foxes attainments across the clo
67    1    9541    369.11    idle,slow dugouts cajole -- permanently thin frays do solve despite the daring sheaves
silent,idle 
67    2    8179    313.60    permanent pains will have to doubt :
68    0    9298    463.53    even patterns could thrash stealthily to the slowly idle grouches
68    1    8302    686.55    orbits will have to wake wak ;
68    2    6512    977.01    thin,ironic frays could nag finally frays -- busily brave ideas lose doggedly around the
enticinglyruthless as 
68    3    2681    392.78    slow,even foxes shall maintain blithe,ironic pearls blithe,iro
69    1    915    366.88    sly instructions according to the sauternes ougth to integrate ironically stealthy,regular
frets; 
69    3    9761    449.11    daringly ruthless asymptotes do sublate sometimes outside the thinly quick frets
brave,evenhockey players should are escapa 
69    2    8377    498.46    courts ougth to nod thinly dugouts --
69    0    1085    9.76    permanent,stealthy realms should use never should use neve
70    2    7380    604.20    final somas inside the brave escapades try to hinder among the sometimes stealthy brai
70    0    2289    281.09    furious,permanent grouches sublate evenly !
70    3    9943    284.20    blithely bold frets around the doggedly daring dinos serve closely stealthy,dogged ideas ?
ironic,daringplatelets shall print boldly inside the bold asymptotes 
70    1    6430    58.24    always daring pains are quickly daring warhorses . multipliers multiplier the doggedly sly
dugoutsbreach slowly slow platelets ; dolphins should  ruthlessly closely ruthless dependencies -- 
71    3    9422    741.57    ruthless escapades between the thin,fluffy dinos are slyly stealthy forges ?
71    1    5289    147.24    fluffily dogged patterns run always outside the daringly fluffy frays  close tithes pl
71    2    6313    650.56    sly orbits shall hang stealthily ;
71    0    2366    88.27    dogged,quick patterns on the notornis can engage fluffily inside the decoys inside the
72    0    4946    344.88    depths could grow for the quick decoys
72    2    3899    846.59    foxes try to unwind busily ;
72    1    9968    786.00    sauternes within the ruthless,silent waters will print ironically finally stealthy stealth
?
72    3    6454    894.79    warthogs during the blithe,daring darin will was always around the quick,daring notornis :
73    1    2348    480.38    epitaphs during the thinly slow multipliers could have to mold waters . thin,close
grouchesby the regular,brave pinto beans sublate always careful,ironic pearls -- permanen 
73    0    3869    877.17    instructions into the slyly quiet braids engage asymptotes ! thin sauternes affix for the
idlybusy courts 
73    3    2345    212.18    quietly sly somas solve furiusly stealthy,careful Tiresias' :
73    2    208    129.29    close,busy grouches beyond the close theodolites will have to run escapades ; gifts under
theorbits may kindle stealthily idle,daring notornis -- evenly daring dependencies 
74    2    4633    865.47    thin warhorses breach between the permanently blithe dugouts
74    1    6014    621.31    multipliers against the  instructions use over the quickly silent ideas !
74    0    5002    304.15    ironic,busy patterns should have to doze into the quiet notornis
74    3    8711    629.62    slowly careful hockey players impress boldly alongside of the idle,close courts final
realmspromise from the even epitaphs 
75    3    8925    175.53    platelets shall integrate quietly . permanently thin decoys inside the sometimes brave
painsshould maintain enticingly toward the permanently sly dinos ! permanent sheaves instead of the pearls was 
75    2    4378    905.56    foxes can  .
75    1    9784    937.32    depths between the somas must have to nag always grouches ! thin,quiet escapades can use
sauternes 
75    0    360    467.72    thinly brave grouches ougth to poach without the ironic dependencies fluffy,enticing pinto
beansat 
76    0    5775    282.16    stealthy asymptotes sublate never of the quickly close dugouts always  tithes under the
asymptotesdo  closely  
76    3    3145    54.81    permanently idle Tiresias' alongside of the  instructions must have to mai
76    2    9226    531.22    enticing somas kindle fluffily furious dolphins ; finally close clos nod ; always ruthless
ideasin place of the regularly brave orbits shall engage 
76    1    4486    809.65    evenly fluffy dinos cajole after the carefully slow frays careful,idle dep
77    1    6932    631.49    even instructions are sly sauternes ? dogged orbits unwind --
77    2    5843    43.52    epitaphs according to the busy,fluffy orbits kindle asymptotes -- dogged courts hang
permanentlyclosely careful attainments 
77    0    1401    639.72    close,careful pinto beans behind the quick,ruthless asymptotes need to hinder in place of
theregularly furious excuses -- furiusly even 
77    3    4051    816.34    escapades between the closely slow gifts hinder quickly behind the brave warhorses ?
78    2    3337    515.01    quickly stealthy excuses atop the asymptotes will use slyly quiet dolphins !
78    3    2352    273.87    stealthy,thin thi beyond the furious,careful asymptotes ougth to thrash busy dolphins ;
braidsmust cajole ; ironic,careful notornis near the always 
78    1    966    780.57    permanently busy somas wake evenly dogged,thin attainments ! regular patterns should doze
throughoutthe finally close gifts 
78    0    3757    735.12    busy,regular epitaphs above the thin,careful sauternes would hinder never past the
final,closepearls . 
79    3    2902    743.04    warthogs will have to mold outside the quiet,slow decoys furious pains in place of the
brave,furiousgifts shall have to wake bravely quick gifts ; slow,busy tithes eat  sil 
79    2    6354    769.76    frets eat daringly ; ,ruthless sentiments affix up the fluffy braids close  hang furiusly
.sly escapades doubt at the ,idle grouches 
79    1    7686    351.15    realms behind the quickly silent ideas shall have to hinder sometimes over the always sly
sentiments? even,busy courts shall hang close 
79    0    4585    246.24    quiet,ironic asymptotes might hang somas !
0    AFRICA    sentiments under the ironic,slow sentiments may solve ironically a
1    AMERICA    silent warhorses promise ;  could sublate ; blithely close ideas over the du
2    ASIA    fluffy,quiet attainments toward the finally stealthy mult
3    EUROPE    ,daring sauternes could have to breach stealthily brave sheaves ! permanent,thin attainments beyond the
regularsauternes thrash dar 
4    MIDDLE-EAST    dependencies after the daringly dogged sentiments do poach sheaves ?
0    Supplier#000000000    r&9voBfma^ZU)?t(U    18    28-167-807-8592    7310.39    sly,thin epitaphs up the enticing
fraysrun without the ruthless,dogged frays : 
1    Supplier#000000001    yb;l>0Y~*?<WCre=m5pB    22    32-830-496-2184    8466.46    even,quick dependencies of the
sheavesof the sheave dazzle sometimes on the close epitaphs ; ideas  
2    Supplier#000000002    :N(Zp+*<9<QF+nVTq<j@@@    5    15-124-117-7757    6217.28    idle,idle gifts need to kindle
evenlydolphins -- furious,slow braids must eat carefully 
3    Supplier#000000003    LF8%ChnGajs!hcge-,V&C;u]4?e*/WrNt.A@>rqB    18    28-866-504-8764    3376.11
permanent,quietwarthogs haggle regular platelets ;