Guest User

Untitled

a guest
Jan 17th, 2017
2,411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 MB | None | 0 0
  1. --
  2. -- PostgreSQL database cluster dump
  3. --
  4.  
  5. SET default_transaction_read_only = off;
  6.  
  7. SET client_encoding = 'UTF8';
  8. SET standard_conforming_strings = on;
  9.  
  10. --
  11. -- Roles
  12. --
  13.  
  14. CREATE ROLE "dsr";
  15. ALTER ROLE "dsr" WITH NOSUPERUSER INHERIT NOCREATEROLE NOCREATEDB LOGIN NOREPLICATION PASSWORD 'md56fed66d541f59729032c7a4b6afca9fa';
  16. CREATE ROLE "postgres";
  17. ALTER ROLE "postgres" WITH SUPERUSER INHERIT CREATEROLE CREATEDB LOGIN REPLICATION;
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24. --
  25. -- Database creation
  26. --
  27.  
  28. CREATE DATABASE "dvdrental" WITH TEMPLATE = template0 OWNER = "postgres";
  29. REVOKE ALL ON DATABASE "template1" FROM PUBLIC;
  30. REVOKE ALL ON DATABASE "template1" FROM "postgres";
  31. GRANT ALL ON DATABASE "template1" TO "postgres";
  32. GRANT CONNECT ON DATABASE "template1" TO PUBLIC;
  33.  
  34.  
  35. \connect "dvdrental"
  36.  
  37. SET default_transaction_read_only = off;
  38.  
  39. --
  40. -- PostgreSQL database dump
  41. --
  42.  
  43. SET statement_timeout = 0;
  44. SET lock_timeout = 0;
  45. SET client_encoding = 'UTF8';
  46. SET standard_conforming_strings = on;
  47. SET check_function_bodies = false;
  48. SET client_min_messages = warning;
  49.  
  50. --
  51. -- Name: SCHEMA "public"; Type: COMMENT; Schema: -; Owner: postgres
  52. --
  53.  
  54. COMMENT ON SCHEMA "public" IS 'standard public schema';
  55.  
  56.  
  57. --
  58. -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
  59. --
  60.  
  61. CREATE EXTENSION IF NOT EXISTS "plpgsql" WITH SCHEMA "pg_catalog";
  62.  
  63.  
  64. --
  65. -- Name: EXTENSION "plpgsql"; Type: COMMENT; Schema: -; Owner:
  66. --
  67.  
  68. COMMENT ON EXTENSION "plpgsql" IS 'PL/pgSQL procedural language';
  69.  
  70.  
  71. SET search_path = "public", pg_catalog;
  72.  
  73. --
  74. -- Name: mpaa_rating; Type: TYPE; Schema: public; Owner: postgres
  75. --
  76.  
  77. CREATE TYPE "mpaa_rating" AS ENUM (
  78. 'G',
  79. 'PG',
  80. 'PG-13',
  81. 'R',
  82. 'NC-17'
  83. );
  84.  
  85.  
  86. ALTER TYPE "public"."mpaa_rating" OWNER TO "postgres";
  87.  
  88. --
  89. -- Name: year; Type: DOMAIN; Schema: public; Owner: postgres
  90. --
  91.  
  92. CREATE DOMAIN "year" AS integer
  93. CONSTRAINT "year_check" CHECK (((VALUE >= 1901) AND (VALUE <= 2155)));
  94.  
  95.  
  96. ALTER DOMAIN "public"."year" OWNER TO "postgres";
  97.  
  98. --
  99. -- Name: _group_concat("text", "text"); Type: FUNCTION; Schema: public; Owner: postgres
  100. --
  101.  
  102. CREATE FUNCTION "_group_concat"("text", "text") RETURNS "text"
  103. LANGUAGE "sql" IMMUTABLE
  104. AS $_$
  105. SELECT CASE
  106. WHEN $2 IS NULL THEN $1
  107. WHEN $1 IS NULL THEN $2
  108. ELSE $1 || ', ' || $2
  109. END
  110. $_$;
  111.  
  112.  
  113. ALTER FUNCTION "public"."_group_concat"("text", "text") OWNER TO "postgres";
  114.  
  115. --
  116. -- Name: film_in_stock(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres
  117. --
  118.  
  119. CREATE FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) RETURNS SETOF integer
  120. LANGUAGE "sql"
  121. AS $_$
  122. SELECT inventory_id
  123. FROM inventory
  124. WHERE film_id = $1
  125. AND store_id = $2
  126. AND inventory_in_stock(inventory_id);
  127. $_$;
  128.  
  129.  
  130. ALTER FUNCTION "public"."film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) OWNER TO "postgres";
  131.  
  132. --
  133. -- Name: film_not_in_stock(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres
  134. --
  135.  
  136. CREATE FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) RETURNS SETOF integer
  137. LANGUAGE "sql"
  138. AS $_$
  139. SELECT inventory_id
  140. FROM inventory
  141. WHERE film_id = $1
  142. AND store_id = $2
  143. AND NOT inventory_in_stock(inventory_id);
  144. $_$;
  145.  
  146.  
  147. ALTER FUNCTION "public"."film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) OWNER TO "postgres";
  148.  
  149. --
  150. -- Name: get_customer_balance(integer, timestamp without time zone); Type: FUNCTION; Schema: public; Owner: postgres
  151. --
  152.  
  153. CREATE FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) RETURNS numeric
  154. LANGUAGE "plpgsql"
  155. AS $$
  156. --#OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE
  157. --#THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS:
  158. --# 1) RENTAL FEES FOR ALL PREVIOUS RENTALS
  159. --# 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE
  160. --# 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST
  161. --# 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED
  162. DECLARE
  163. v_rentfees DECIMAL(5,2); --#FEES PAID TO RENT THE VIDEOS INITIALLY
  164. v_overfees INTEGER; --#LATE FEES FOR PRIOR RENTALS
  165. v_payments DECIMAL(5,2); --#SUM OF PAYMENTS MADE PREVIOUSLY
  166. BEGIN
  167. SELECT COALESCE(SUM(film.rental_rate),0) INTO v_rentfees
  168. FROM film, inventory, rental
  169. WHERE film.film_id = inventory.film_id
  170. AND inventory.inventory_id = rental.inventory_id
  171. AND rental.rental_date <= p_effective_date
  172. AND rental.customer_id = p_customer_id;
  173.  
  174. SELECT COALESCE(SUM(IF((rental.return_date - rental.rental_date) > (film.rental_duration * '1 day'::interval),
  175. ((rental.return_date - rental.rental_date) - (film.rental_duration * '1 day'::interval)),0)),0) INTO v_overfees
  176. FROM rental, inventory, film
  177. WHERE film.film_id = inventory.film_id
  178. AND inventory.inventory_id = rental.inventory_id
  179. AND rental.rental_date <= p_effective_date
  180. AND rental.customer_id = p_customer_id;
  181.  
  182. SELECT COALESCE(SUM(payment.amount),0) INTO v_payments
  183. FROM payment
  184. WHERE payment.payment_date <= p_effective_date
  185. AND payment.customer_id = p_customer_id;
  186.  
  187. RETURN v_rentfees + v_overfees - v_payments;
  188. END
  189. $$;
  190.  
  191.  
  192. ALTER FUNCTION "public"."get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) OWNER TO "postgres";
  193.  
  194. --
  195. -- Name: inventory_held_by_customer(integer); Type: FUNCTION; Schema: public; Owner: postgres
  196. --
  197.  
  198. CREATE FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) RETURNS integer
  199. LANGUAGE "plpgsql"
  200. AS $$
  201. DECLARE
  202. v_customer_id INTEGER;
  203. BEGIN
  204.  
  205. SELECT customer_id INTO v_customer_id
  206. FROM rental
  207. WHERE return_date IS NULL
  208. AND inventory_id = p_inventory_id;
  209.  
  210. RETURN v_customer_id;
  211. END $$;
  212.  
  213.  
  214. ALTER FUNCTION "public"."inventory_held_by_customer"("p_inventory_id" integer) OWNER TO "postgres";
  215.  
  216. --
  217. -- Name: inventory_in_stock(integer); Type: FUNCTION; Schema: public; Owner: postgres
  218. --
  219.  
  220. CREATE FUNCTION "inventory_in_stock"("p_inventory_id" integer) RETURNS boolean
  221. LANGUAGE "plpgsql"
  222. AS $$
  223. DECLARE
  224. v_rentals INTEGER;
  225. v_out INTEGER;
  226. BEGIN
  227. -- AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE
  228. -- FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED
  229.  
  230. SELECT count(*) INTO v_rentals
  231. FROM rental
  232. WHERE inventory_id = p_inventory_id;
  233.  
  234. IF v_rentals = 0 THEN
  235. RETURN TRUE;
  236. END IF;
  237.  
  238. SELECT COUNT(rental_id) INTO v_out
  239. FROM inventory LEFT JOIN rental USING(inventory_id)
  240. WHERE inventory.inventory_id = p_inventory_id
  241. AND rental.return_date IS NULL;
  242.  
  243. IF v_out > 0 THEN
  244. RETURN FALSE;
  245. ELSE
  246. RETURN TRUE;
  247. END IF;
  248. END $$;
  249.  
  250.  
  251. ALTER FUNCTION "public"."inventory_in_stock"("p_inventory_id" integer) OWNER TO "postgres";
  252.  
  253. --
  254. -- Name: last_day(timestamp without time zone); Type: FUNCTION; Schema: public; Owner: postgres
  255. --
  256.  
  257. CREATE FUNCTION "last_day"(timestamp without time zone) RETURNS "date"
  258. LANGUAGE "sql" IMMUTABLE STRICT
  259. AS $_$
  260. SELECT CASE
  261. WHEN EXTRACT(MONTH FROM $1) = 12 THEN
  262. (((EXTRACT(YEAR FROM $1) + 1) operator(pg_catalog.||) '-01-01')::date - INTERVAL '1 day')::date
  263. ELSE
  264. ((EXTRACT(YEAR FROM $1) operator(pg_catalog.||) '-' operator(pg_catalog.||) (EXTRACT(MONTH FROM $1) + 1) operator(pg_catalog.||) '-01')::date - INTERVAL '1 day')::date
  265. END
  266. $_$;
  267.  
  268.  
  269. ALTER FUNCTION "public"."last_day"(timestamp without time zone) OWNER TO "postgres";
  270.  
  271. --
  272. -- Name: last_updated(); Type: FUNCTION; Schema: public; Owner: postgres
  273. --
  274.  
  275. CREATE FUNCTION "last_updated"() RETURNS "trigger"
  276. LANGUAGE "plpgsql"
  277. AS $$
  278. BEGIN
  279. NEW.last_update = CURRENT_TIMESTAMP;
  280. RETURN NEW;
  281. END $$;
  282.  
  283.  
  284. ALTER FUNCTION "public"."last_updated"() OWNER TO "postgres";
  285.  
  286. --
  287. -- Name: customer_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  288. --
  289.  
  290. CREATE SEQUENCE "customer_customer_id_seq"
  291. START WITH 1
  292. INCREMENT BY 1
  293. NO MINVALUE
  294. NO MAXVALUE
  295. CACHE 1;
  296.  
  297.  
  298. ALTER TABLE "public"."customer_customer_id_seq" OWNER TO "postgres";
  299.  
  300. SET default_tablespace = '';
  301.  
  302. SET default_with_oids = false;
  303.  
  304. --
  305. -- Name: customer; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  306. --
  307.  
  308. CREATE TABLE "customer" (
  309. "customer_id" integer DEFAULT "nextval"('"customer_customer_id_seq"'::"regclass") NOT NULL,
  310. "store_id" smallint NOT NULL,
  311. "first_name" character varying(45) NOT NULL,
  312. "last_name" character varying(45) NOT NULL,
  313. "email" character varying(50),
  314. "address_id" smallint NOT NULL,
  315. "activebool" boolean DEFAULT true NOT NULL,
  316. "create_date" "date" DEFAULT ('now'::"text")::"date" NOT NULL,
  317. "last_update" timestamp without time zone DEFAULT "now"(),
  318. "active" integer
  319. );
  320.  
  321.  
  322. ALTER TABLE "public"."customer" OWNER TO "postgres";
  323.  
  324. --
  325. -- Name: rewards_report(integer, numeric); Type: FUNCTION; Schema: public; Owner: postgres
  326. --
  327.  
  328. CREATE FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) RETURNS SETOF "customer"
  329. LANGUAGE "plpgsql" SECURITY DEFINER
  330. AS $_$
  331. DECLARE
  332. last_month_start DATE;
  333. last_month_end DATE;
  334. rr RECORD;
  335. tmpSQL TEXT;
  336. BEGIN
  337.  
  338. /* Some sanity checks... */
  339. IF min_monthly_purchases = 0 THEN
  340. RAISE EXCEPTION 'Minimum monthly purchases parameter must be > 0';
  341. END IF;
  342. IF min_dollar_amount_purchased = 0.00 THEN
  343. RAISE EXCEPTION 'Minimum monthly dollar amount purchased parameter must be > $0.00';
  344. END IF;
  345.  
  346. last_month_start := CURRENT_DATE - '3 month'::interval;
  347. last_month_start := to_date((extract(YEAR FROM last_month_start) || '-' || extract(MONTH FROM last_month_start) || '-01'),'YYYY-MM-DD');
  348. last_month_end := LAST_DAY(last_month_start);
  349.  
  350. /*
  351. Create a temporary storage area for Customer IDs.
  352. */
  353. CREATE TEMPORARY TABLE tmpCustomer (customer_id INTEGER NOT NULL PRIMARY KEY);
  354.  
  355. /*
  356. Find all customers meeting the monthly purchase requirements
  357. */
  358.  
  359. tmpSQL := 'INSERT INTO tmpCustomer (customer_id)
  360. SELECT p.customer_id
  361. FROM payment AS p
  362. WHERE DATE(p.payment_date) BETWEEN '||quote_literal(last_month_start) ||' AND '|| quote_literal(last_month_end) || '
  363. GROUP BY customer_id
  364. HAVING SUM(p.amount) > '|| min_dollar_amount_purchased || '
  365. AND COUNT(customer_id) > ' ||min_monthly_purchases ;
  366.  
  367. EXECUTE tmpSQL;
  368.  
  369. /*
  370. Output ALL customer information of matching rewardees.
  371. Customize output as needed.
  372. */
  373. FOR rr IN EXECUTE 'SELECT c.* FROM tmpCustomer AS t INNER JOIN customer AS c ON t.customer_id = c.customer_id' LOOP
  374. RETURN NEXT rr;
  375. END LOOP;
  376.  
  377. /* Clean up */
  378. tmpSQL := 'DROP TABLE tmpCustomer';
  379. EXECUTE tmpSQL;
  380.  
  381. RETURN;
  382. END
  383. $_$;
  384.  
  385.  
  386. ALTER FUNCTION "public"."rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) OWNER TO "postgres";
  387.  
  388. --
  389. -- Name: group_concat("text"); Type: AGGREGATE; Schema: public; Owner: postgres
  390. --
  391.  
  392. CREATE AGGREGATE "group_concat"("text") (
  393. SFUNC = "_group_concat",
  394. STYPE = "text"
  395. );
  396.  
  397.  
  398. ALTER AGGREGATE "public"."group_concat"("text") OWNER TO "postgres";
  399.  
  400. --
  401. -- Name: actor_actor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  402. --
  403.  
  404. CREATE SEQUENCE "actor_actor_id_seq"
  405. START WITH 1
  406. INCREMENT BY 1
  407. NO MINVALUE
  408. NO MAXVALUE
  409. CACHE 1;
  410.  
  411.  
  412. ALTER TABLE "public"."actor_actor_id_seq" OWNER TO "postgres";
  413.  
  414. --
  415. -- Name: actor; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  416. --
  417.  
  418. CREATE TABLE "actor" (
  419. "actor_id" integer DEFAULT "nextval"('"actor_actor_id_seq"'::"regclass") NOT NULL,
  420. "first_name" character varying(45) NOT NULL,
  421. "last_name" character varying(45) NOT NULL,
  422. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  423. );
  424.  
  425.  
  426. ALTER TABLE "public"."actor" OWNER TO "postgres";
  427.  
  428. --
  429. -- Name: category_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  430. --
  431.  
  432. CREATE SEQUENCE "category_category_id_seq"
  433. START WITH 1
  434. INCREMENT BY 1
  435. NO MINVALUE
  436. NO MAXVALUE
  437. CACHE 1;
  438.  
  439.  
  440. ALTER TABLE "public"."category_category_id_seq" OWNER TO "postgres";
  441.  
  442. --
  443. -- Name: category; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  444. --
  445.  
  446. CREATE TABLE "category" (
  447. "category_id" integer DEFAULT "nextval"('"category_category_id_seq"'::"regclass") NOT NULL,
  448. "name" character varying(25) NOT NULL,
  449. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  450. );
  451.  
  452.  
  453. ALTER TABLE "public"."category" OWNER TO "postgres";
  454.  
  455. --
  456. -- Name: film_film_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  457. --
  458.  
  459. CREATE SEQUENCE "film_film_id_seq"
  460. START WITH 1
  461. INCREMENT BY 1
  462. NO MINVALUE
  463. NO MAXVALUE
  464. CACHE 1;
  465.  
  466.  
  467. ALTER TABLE "public"."film_film_id_seq" OWNER TO "postgres";
  468.  
  469. --
  470. -- Name: film; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  471. --
  472.  
  473. CREATE TABLE "film" (
  474. "film_id" integer DEFAULT "nextval"('"film_film_id_seq"'::"regclass") NOT NULL,
  475. "title" character varying(255) NOT NULL,
  476. "description" "text",
  477. "release_year" "year",
  478. "language_id" smallint NOT NULL,
  479. "rental_duration" smallint DEFAULT 3 NOT NULL,
  480. "rental_rate" numeric(4,2) DEFAULT 4.99 NOT NULL,
  481. "length" smallint,
  482. "replacement_cost" numeric(5,2) DEFAULT 19.99 NOT NULL,
  483. "rating" "mpaa_rating" DEFAULT 'G'::"mpaa_rating",
  484. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL,
  485. "special_features" "text"[],
  486. "fulltext" "tsvector" NOT NULL
  487. );
  488.  
  489.  
  490. ALTER TABLE "public"."film" OWNER TO "postgres";
  491.  
  492. --
  493. -- Name: film_actor; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  494. --
  495.  
  496. CREATE TABLE "film_actor" (
  497. "actor_id" smallint NOT NULL,
  498. "film_id" smallint NOT NULL,
  499. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  500. );
  501.  
  502.  
  503. ALTER TABLE "public"."film_actor" OWNER TO "postgres";
  504.  
  505. --
  506. -- Name: film_category; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  507. --
  508.  
  509. CREATE TABLE "film_category" (
  510. "film_id" smallint NOT NULL,
  511. "category_id" smallint NOT NULL,
  512. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  513. );
  514.  
  515.  
  516. ALTER TABLE "public"."film_category" OWNER TO "postgres";
  517.  
  518. --
  519. -- Name: actor_info; Type: VIEW; Schema: public; Owner: postgres
  520. --
  521.  
  522. CREATE VIEW "actor_info" AS
  523. SELECT "a"."actor_id",
  524. "a"."first_name",
  525. "a"."last_name",
  526. "group_concat"(DISTINCT ((("c"."name")::"text" || ': '::"text") || ( SELECT "group_concat"(("f"."title")::"text") AS "group_concat"
  527. FROM (("film" "f"
  528. JOIN "film_category" "fc_1" ON (("f"."film_id" = "fc_1"."film_id")))
  529. JOIN "film_actor" "fa_1" ON (("f"."film_id" = "fa_1"."film_id")))
  530. WHERE (("fc_1"."category_id" = "c"."category_id") AND ("fa_1"."actor_id" = "a"."actor_id"))
  531. GROUP BY "fa_1"."actor_id"))) AS "film_info"
  532. FROM ((("actor" "a"
  533. LEFT JOIN "film_actor" "fa" ON (("a"."actor_id" = "fa"."actor_id")))
  534. LEFT JOIN "film_category" "fc" ON (("fa"."film_id" = "fc"."film_id")))
  535. LEFT JOIN "category" "c" ON (("fc"."category_id" = "c"."category_id")))
  536. GROUP BY "a"."actor_id", "a"."first_name", "a"."last_name";
  537.  
  538.  
  539. ALTER TABLE "public"."actor_info" OWNER TO "postgres";
  540.  
  541. --
  542. -- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  543. --
  544.  
  545. CREATE SEQUENCE "address_address_id_seq"
  546. START WITH 1
  547. INCREMENT BY 1
  548. NO MINVALUE
  549. NO MAXVALUE
  550. CACHE 1;
  551.  
  552.  
  553. ALTER TABLE "public"."address_address_id_seq" OWNER TO "postgres";
  554.  
  555. --
  556. -- Name: address; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  557. --
  558.  
  559. CREATE TABLE "address" (
  560. "address_id" integer DEFAULT "nextval"('"address_address_id_seq"'::"regclass") NOT NULL,
  561. "address" character varying(50) NOT NULL,
  562. "address2" character varying(50),
  563. "district" character varying(20) NOT NULL,
  564. "city_id" smallint NOT NULL,
  565. "postal_code" character varying(10),
  566. "phone" character varying(20) NOT NULL,
  567. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  568. );
  569.  
  570.  
  571. ALTER TABLE "public"."address" OWNER TO "postgres";
  572.  
  573. --
  574. -- Name: city_city_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  575. --
  576.  
  577. CREATE SEQUENCE "city_city_id_seq"
  578. START WITH 1
  579. INCREMENT BY 1
  580. NO MINVALUE
  581. NO MAXVALUE
  582. CACHE 1;
  583.  
  584.  
  585. ALTER TABLE "public"."city_city_id_seq" OWNER TO "postgres";
  586.  
  587. --
  588. -- Name: city; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  589. --
  590.  
  591. CREATE TABLE "city" (
  592. "city_id" integer DEFAULT "nextval"('"city_city_id_seq"'::"regclass") NOT NULL,
  593. "city" character varying(50) NOT NULL,
  594. "country_id" smallint NOT NULL,
  595. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  596. );
  597.  
  598.  
  599. ALTER TABLE "public"."city" OWNER TO "postgres";
  600.  
  601. --
  602. -- Name: country_country_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  603. --
  604.  
  605. CREATE SEQUENCE "country_country_id_seq"
  606. START WITH 1
  607. INCREMENT BY 1
  608. NO MINVALUE
  609. NO MAXVALUE
  610. CACHE 1;
  611.  
  612.  
  613. ALTER TABLE "public"."country_country_id_seq" OWNER TO "postgres";
  614.  
  615. --
  616. -- Name: country; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  617. --
  618.  
  619. CREATE TABLE "country" (
  620. "country_id" integer DEFAULT "nextval"('"country_country_id_seq"'::"regclass") NOT NULL,
  621. "country" character varying(50) NOT NULL,
  622. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  623. );
  624.  
  625.  
  626. ALTER TABLE "public"."country" OWNER TO "postgres";
  627.  
  628. --
  629. -- Name: customer_list; Type: VIEW; Schema: public; Owner: postgres
  630. --
  631.  
  632. CREATE VIEW "customer_list" AS
  633. SELECT "cu"."customer_id" AS "id",
  634. ((("cu"."first_name")::"text" || ' '::"text") || ("cu"."last_name")::"text") AS "name",
  635. "a"."address",
  636. "a"."postal_code" AS "zip code",
  637. "a"."phone",
  638. "city"."city",
  639. "country"."country",
  640. CASE
  641. WHEN "cu"."activebool" THEN 'active'::"text"
  642. ELSE ''::"text"
  643. END AS "notes",
  644. "cu"."store_id" AS "sid"
  645. FROM ((("customer" "cu"
  646. JOIN "address" "a" ON (("cu"."address_id" = "a"."address_id")))
  647. JOIN "city" ON (("a"."city_id" = "city"."city_id")))
  648. JOIN "country" ON (("city"."country_id" = "country"."country_id")));
  649.  
  650.  
  651. ALTER TABLE "public"."customer_list" OWNER TO "postgres";
  652.  
  653. --
  654. -- Name: film_list; Type: VIEW; Schema: public; Owner: postgres
  655. --
  656.  
  657. CREATE VIEW "film_list" AS
  658. SELECT "film"."film_id" AS "fid",
  659. "film"."title",
  660. "film"."description",
  661. "category"."name" AS "category",
  662. "film"."rental_rate" AS "price",
  663. "film"."length",
  664. "film"."rating",
  665. "group_concat"(((("actor"."first_name")::"text" || ' '::"text") || ("actor"."last_name")::"text")) AS "actors"
  666. FROM (((("category"
  667. LEFT JOIN "film_category" ON (("category"."category_id" = "film_category"."category_id")))
  668. LEFT JOIN "film" ON (("film_category"."film_id" = "film"."film_id")))
  669. JOIN "film_actor" ON (("film"."film_id" = "film_actor"."film_id")))
  670. JOIN "actor" ON (("film_actor"."actor_id" = "actor"."actor_id")))
  671. GROUP BY "film"."film_id", "film"."title", "film"."description", "category"."name", "film"."rental_rate", "film"."length", "film"."rating";
  672.  
  673.  
  674. ALTER TABLE "public"."film_list" OWNER TO "postgres";
  675.  
  676. --
  677. -- Name: inventory_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  678. --
  679.  
  680. CREATE SEQUENCE "inventory_inventory_id_seq"
  681. START WITH 1
  682. INCREMENT BY 1
  683. NO MINVALUE
  684. NO MAXVALUE
  685. CACHE 1;
  686.  
  687.  
  688. ALTER TABLE "public"."inventory_inventory_id_seq" OWNER TO "postgres";
  689.  
  690. --
  691. -- Name: inventory; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  692. --
  693.  
  694. CREATE TABLE "inventory" (
  695. "inventory_id" integer DEFAULT "nextval"('"inventory_inventory_id_seq"'::"regclass") NOT NULL,
  696. "film_id" smallint NOT NULL,
  697. "store_id" smallint NOT NULL,
  698. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  699. );
  700.  
  701.  
  702. ALTER TABLE "public"."inventory" OWNER TO "postgres";
  703.  
  704. --
  705. -- Name: language_language_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  706. --
  707.  
  708. CREATE SEQUENCE "language_language_id_seq"
  709. START WITH 1
  710. INCREMENT BY 1
  711. NO MINVALUE
  712. NO MAXVALUE
  713. CACHE 1;
  714.  
  715.  
  716. ALTER TABLE "public"."language_language_id_seq" OWNER TO "postgres";
  717.  
  718. --
  719. -- Name: language; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  720. --
  721.  
  722. CREATE TABLE "language" (
  723. "language_id" integer DEFAULT "nextval"('"language_language_id_seq"'::"regclass") NOT NULL,
  724. "name" character(20) NOT NULL,
  725. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  726. );
  727.  
  728.  
  729. ALTER TABLE "public"."language" OWNER TO "postgres";
  730.  
  731. --
  732. -- Name: nicer_but_slower_film_list; Type: VIEW; Schema: public; Owner: postgres
  733. --
  734.  
  735. CREATE VIEW "nicer_but_slower_film_list" AS
  736. SELECT "film"."film_id" AS "fid",
  737. "film"."title",
  738. "film"."description",
  739. "category"."name" AS "category",
  740. "film"."rental_rate" AS "price",
  741. "film"."length",
  742. "film"."rating",
  743. "group_concat"(((("upper"("substring"(("actor"."first_name")::"text", 1, 1)) || "lower"("substring"(("actor"."first_name")::"text", 2))) || "upper"("substring"(("actor"."last_name")::"text", 1, 1))) || "lower"("substring"(("actor"."last_name")::"text", 2)))) AS "actors"
  744. FROM (((("category"
  745. LEFT JOIN "film_category" ON (("category"."category_id" = "film_category"."category_id")))
  746. LEFT JOIN "film" ON (("film_category"."film_id" = "film"."film_id")))
  747. JOIN "film_actor" ON (("film"."film_id" = "film_actor"."film_id")))
  748. JOIN "actor" ON (("film_actor"."actor_id" = "actor"."actor_id")))
  749. GROUP BY "film"."film_id", "film"."title", "film"."description", "category"."name", "film"."rental_rate", "film"."length", "film"."rating";
  750.  
  751.  
  752. ALTER TABLE "public"."nicer_but_slower_film_list" OWNER TO "postgres";
  753.  
  754. --
  755. -- Name: payment_payment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  756. --
  757.  
  758. CREATE SEQUENCE "payment_payment_id_seq"
  759. START WITH 1
  760. INCREMENT BY 1
  761. NO MINVALUE
  762. NO MAXVALUE
  763. CACHE 1;
  764.  
  765.  
  766. ALTER TABLE "public"."payment_payment_id_seq" OWNER TO "postgres";
  767.  
  768. --
  769. -- Name: payment; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  770. --
  771.  
  772. CREATE TABLE "payment" (
  773. "payment_id" integer DEFAULT "nextval"('"payment_payment_id_seq"'::"regclass") NOT NULL,
  774. "customer_id" smallint NOT NULL,
  775. "staff_id" smallint NOT NULL,
  776. "rental_id" integer NOT NULL,
  777. "amount" numeric(5,2) NOT NULL,
  778. "payment_date" timestamp without time zone NOT NULL
  779. );
  780.  
  781.  
  782. ALTER TABLE "public"."payment" OWNER TO "postgres";
  783.  
  784. --
  785. -- Name: rental_rental_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  786. --
  787.  
  788. CREATE SEQUENCE "rental_rental_id_seq"
  789. START WITH 1
  790. INCREMENT BY 1
  791. NO MINVALUE
  792. NO MAXVALUE
  793. CACHE 1;
  794.  
  795.  
  796. ALTER TABLE "public"."rental_rental_id_seq" OWNER TO "postgres";
  797.  
  798. --
  799. -- Name: rental; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  800. --
  801.  
  802. CREATE TABLE "rental" (
  803. "rental_id" integer DEFAULT "nextval"('"rental_rental_id_seq"'::"regclass") NOT NULL,
  804. "rental_date" timestamp without time zone NOT NULL,
  805. "inventory_id" integer NOT NULL,
  806. "customer_id" smallint NOT NULL,
  807. "return_date" timestamp without time zone,
  808. "staff_id" smallint NOT NULL,
  809. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  810. );
  811.  
  812.  
  813. ALTER TABLE "public"."rental" OWNER TO "postgres";
  814.  
  815. --
  816. -- Name: sales_by_film_category; Type: VIEW; Schema: public; Owner: postgres
  817. --
  818.  
  819. CREATE VIEW "sales_by_film_category" AS
  820. SELECT "c"."name" AS "category",
  821. "sum"("p"."amount") AS "total_sales"
  822. FROM ((((("payment" "p"
  823. JOIN "rental" "r" ON (("p"."rental_id" = "r"."rental_id")))
  824. JOIN "inventory" "i" ON (("r"."inventory_id" = "i"."inventory_id")))
  825. JOIN "film" "f" ON (("i"."film_id" = "f"."film_id")))
  826. JOIN "film_category" "fc" ON (("f"."film_id" = "fc"."film_id")))
  827. JOIN "category" "c" ON (("fc"."category_id" = "c"."category_id")))
  828. GROUP BY "c"."name"
  829. ORDER BY "sum"("p"."amount") DESC;
  830.  
  831.  
  832. ALTER TABLE "public"."sales_by_film_category" OWNER TO "postgres";
  833.  
  834. --
  835. -- Name: staff_staff_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  836. --
  837.  
  838. CREATE SEQUENCE "staff_staff_id_seq"
  839. START WITH 1
  840. INCREMENT BY 1
  841. NO MINVALUE
  842. NO MAXVALUE
  843. CACHE 1;
  844.  
  845.  
  846. ALTER TABLE "public"."staff_staff_id_seq" OWNER TO "postgres";
  847.  
  848. --
  849. -- Name: staff; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  850. --
  851.  
  852. CREATE TABLE "staff" (
  853. "staff_id" integer DEFAULT "nextval"('"staff_staff_id_seq"'::"regclass") NOT NULL,
  854. "first_name" character varying(45) NOT NULL,
  855. "last_name" character varying(45) NOT NULL,
  856. "address_id" smallint NOT NULL,
  857. "email" character varying(50),
  858. "store_id" smallint NOT NULL,
  859. "active" boolean DEFAULT true NOT NULL,
  860. "username" character varying(16) NOT NULL,
  861. "password" character varying(40),
  862. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL,
  863. "picture" "bytea"
  864. );
  865.  
  866.  
  867. ALTER TABLE "public"."staff" OWNER TO "postgres";
  868.  
  869. --
  870. -- Name: store_store_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  871. --
  872.  
  873. CREATE SEQUENCE "store_store_id_seq"
  874. START WITH 1
  875. INCREMENT BY 1
  876. NO MINVALUE
  877. NO MAXVALUE
  878. CACHE 1;
  879.  
  880.  
  881. ALTER TABLE "public"."store_store_id_seq" OWNER TO "postgres";
  882.  
  883. --
  884. -- Name: store; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  885. --
  886.  
  887. CREATE TABLE "store" (
  888. "store_id" integer DEFAULT "nextval"('"store_store_id_seq"'::"regclass") NOT NULL,
  889. "manager_staff_id" smallint NOT NULL,
  890. "address_id" smallint NOT NULL,
  891. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  892. );
  893.  
  894.  
  895. ALTER TABLE "public"."store" OWNER TO "postgres";
  896.  
  897. --
  898. -- Name: sales_by_store; Type: VIEW; Schema: public; Owner: postgres
  899. --
  900.  
  901. CREATE VIEW "sales_by_store" AS
  902. SELECT ((("c"."city")::"text" || ','::"text") || ("cy"."country")::"text") AS "store",
  903. ((("m"."first_name")::"text" || ' '::"text") || ("m"."last_name")::"text") AS "manager",
  904. "sum"("p"."amount") AS "total_sales"
  905. FROM ((((((("payment" "p"
  906. JOIN "rental" "r" ON (("p"."rental_id" = "r"."rental_id")))
  907. JOIN "inventory" "i" ON (("r"."inventory_id" = "i"."inventory_id")))
  908. JOIN "store" "s" ON (("i"."store_id" = "s"."store_id")))
  909. JOIN "address" "a" ON (("s"."address_id" = "a"."address_id")))
  910. JOIN "city" "c" ON (("a"."city_id" = "c"."city_id")))
  911. JOIN "country" "cy" ON (("c"."country_id" = "cy"."country_id")))
  912. JOIN "staff" "m" ON (("s"."manager_staff_id" = "m"."staff_id")))
  913. GROUP BY "cy"."country", "c"."city", "s"."store_id", "m"."first_name", "m"."last_name"
  914. ORDER BY "cy"."country", "c"."city";
  915.  
  916.  
  917. ALTER TABLE "public"."sales_by_store" OWNER TO "postgres";
  918.  
  919. --
  920. -- Name: staff_list; Type: VIEW; Schema: public; Owner: postgres
  921. --
  922.  
  923. CREATE VIEW "staff_list" AS
  924. SELECT "s"."staff_id" AS "id",
  925. ((("s"."first_name")::"text" || ' '::"text") || ("s"."last_name")::"text") AS "name",
  926. "a"."address",
  927. "a"."postal_code" AS "zip code",
  928. "a"."phone",
  929. "city"."city",
  930. "country"."country",
  931. "s"."store_id" AS "sid"
  932. FROM ((("staff" "s"
  933. JOIN "address" "a" ON (("s"."address_id" = "a"."address_id")))
  934. JOIN "city" ON (("a"."city_id" = "city"."city_id")))
  935. JOIN "country" ON (("city"."country_id" = "country"."country_id")));
  936.  
  937.  
  938. ALTER TABLE "public"."staff_list" OWNER TO "postgres";
  939.  
  940. --
  941. -- Data for Name: actor; Type: TABLE DATA; Schema: public; Owner: postgres
  942. --
  943.  
  944. COPY "actor" ("actor_id", "first_name", "last_name", "last_update") FROM stdin;
  945. 1 Penelope Guiness 2013-05-26 14:47:57.62
  946. 2 Nick Wahlberg 2013-05-26 14:47:57.62
  947. 3 Ed Chase 2013-05-26 14:47:57.62
  948. 4 Jennifer Davis 2013-05-26 14:47:57.62
  949. 5 Johnny Lollobrigida 2013-05-26 14:47:57.62
  950. 6 Bette Nicholson 2013-05-26 14:47:57.62
  951. 7 Grace Mostel 2013-05-26 14:47:57.62
  952. 8 Matthew Johansson 2013-05-26 14:47:57.62
  953. 9 Joe Swank 2013-05-26 14:47:57.62
  954. 10 Christian Gable 2013-05-26 14:47:57.62
  955. 11 Zero Cage 2013-05-26 14:47:57.62
  956. 12 Karl Berry 2013-05-26 14:47:57.62
  957. 13 Uma Wood 2013-05-26 14:47:57.62
  958. 14 Vivien Bergen 2013-05-26 14:47:57.62
  959. 15 Cuba Olivier 2013-05-26 14:47:57.62
  960. 16 Fred Costner 2013-05-26 14:47:57.62
  961. 17 Helen Voight 2013-05-26 14:47:57.62
  962. 18 Dan Torn 2013-05-26 14:47:57.62
  963. 19 Bob Fawcett 2013-05-26 14:47:57.62
  964. 20 Lucille Tracy 2013-05-26 14:47:57.62
  965. 21 Kirsten Paltrow 2013-05-26 14:47:57.62
  966. 22 Elvis Marx 2013-05-26 14:47:57.62
  967. 23 Sandra Kilmer 2013-05-26 14:47:57.62
  968. 24 Cameron Streep 2013-05-26 14:47:57.62
  969. 25 Kevin Bloom 2013-05-26 14:47:57.62
  970. 26 Rip Crawford 2013-05-26 14:47:57.62
  971. 27 Julia Mcqueen 2013-05-26 14:47:57.62
  972. 28 Woody Hoffman 2013-05-26 14:47:57.62
  973. 29 Alec Wayne 2013-05-26 14:47:57.62
  974. 30 Sandra Peck 2013-05-26 14:47:57.62
  975. 31 Sissy Sobieski 2013-05-26 14:47:57.62
  976. 32 Tim Hackman 2013-05-26 14:47:57.62
  977. 33 Milla Peck 2013-05-26 14:47:57.62
  978. 34 Audrey Olivier 2013-05-26 14:47:57.62
  979. 35 Judy Dean 2013-05-26 14:47:57.62
  980. 36 Burt Dukakis 2013-05-26 14:47:57.62
  981. 37 Val Bolger 2013-05-26 14:47:57.62
  982. 38 Tom Mckellen 2013-05-26 14:47:57.62
  983. 39 Goldie Brody 2013-05-26 14:47:57.62
  984. 40 Johnny Cage 2013-05-26 14:47:57.62
  985. 41 Jodie Degeneres 2013-05-26 14:47:57.62
  986. 42 Tom Miranda 2013-05-26 14:47:57.62
  987. 43 Kirk Jovovich 2013-05-26 14:47:57.62
  988. 44 Nick Stallone 2013-05-26 14:47:57.62
  989. 45 Reese Kilmer 2013-05-26 14:47:57.62
  990. 46 Parker Goldberg 2013-05-26 14:47:57.62
  991. 47 Julia Barrymore 2013-05-26 14:47:57.62
  992. 48 Frances Day-Lewis 2013-05-26 14:47:57.62
  993. 49 Anne Cronyn 2013-05-26 14:47:57.62
  994. 50 Natalie Hopkins 2013-05-26 14:47:57.62
  995. 51 Gary Phoenix 2013-05-26 14:47:57.62
  996. 52 Carmen Hunt 2013-05-26 14:47:57.62
  997. 53 Mena Temple 2013-05-26 14:47:57.62
  998. 54 Penelope Pinkett 2013-05-26 14:47:57.62
  999. 55 Fay Kilmer 2013-05-26 14:47:57.62
  1000. 56 Dan Harris 2013-05-26 14:47:57.62
  1001. 57 Jude Cruise 2013-05-26 14:47:57.62
  1002. 58 Christian Akroyd 2013-05-26 14:47:57.62
  1003. 59 Dustin Tautou 2013-05-26 14:47:57.62
  1004. 60 Henry Berry 2013-05-26 14:47:57.62
  1005. 61 Christian Neeson 2013-05-26 14:47:57.62
  1006. 62 Jayne Neeson 2013-05-26 14:47:57.62
  1007. 63 Cameron Wray 2013-05-26 14:47:57.62
  1008. 64 Ray Johansson 2013-05-26 14:47:57.62
  1009. 65 Angela Hudson 2013-05-26 14:47:57.62
  1010. 66 Mary Tandy 2013-05-26 14:47:57.62
  1011. 67 Jessica Bailey 2013-05-26 14:47:57.62
  1012. 68 Rip Winslet 2013-05-26 14:47:57.62
  1013. 69 Kenneth Paltrow 2013-05-26 14:47:57.62
  1014. 70 Michelle Mcconaughey 2013-05-26 14:47:57.62
  1015. 71 Adam Grant 2013-05-26 14:47:57.62
  1016. 72 Sean Williams 2013-05-26 14:47:57.62
  1017. 73 Gary Penn 2013-05-26 14:47:57.62
  1018. 74 Milla Keitel 2013-05-26 14:47:57.62
  1019. 75 Burt Posey 2013-05-26 14:47:57.62
  1020. 76 Angelina Astaire 2013-05-26 14:47:57.62
  1021. 77 Cary Mcconaughey 2013-05-26 14:47:57.62
  1022. 78 Groucho Sinatra 2013-05-26 14:47:57.62
  1023. 79 Mae Hoffman 2013-05-26 14:47:57.62
  1024. 80 Ralph Cruz 2013-05-26 14:47:57.62
  1025. 81 Scarlett Damon 2013-05-26 14:47:57.62
  1026. 82 Woody Jolie 2013-05-26 14:47:57.62
  1027. 83 Ben Willis 2013-05-26 14:47:57.62
  1028. 84 James Pitt 2013-05-26 14:47:57.62
  1029. 85 Minnie Zellweger 2013-05-26 14:47:57.62
  1030. 143 River Dean 2013-05-26 14:47:57.62
  1031. 86 Greg Chaplin 2013-05-26 14:47:57.62
  1032. 87 Spencer Peck 2013-05-26 14:47:57.62
  1033. 88 Kenneth Pesci 2013-05-26 14:47:57.62
  1034. 89 Charlize Dench 2013-05-26 14:47:57.62
  1035. 90 Sean Guiness 2013-05-26 14:47:57.62
  1036. 91 Christopher Berry 2013-05-26 14:47:57.62
  1037. 92 Kirsten Akroyd 2013-05-26 14:47:57.62
  1038. 93 Ellen Presley 2013-05-26 14:47:57.62
  1039. 94 Kenneth Torn 2013-05-26 14:47:57.62
  1040. 95 Daryl Wahlberg 2013-05-26 14:47:57.62
  1041. 96 Gene Willis 2013-05-26 14:47:57.62
  1042. 97 Meg Hawke 2013-05-26 14:47:57.62
  1043. 98 Chris Bridges 2013-05-26 14:47:57.62
  1044. 99 Jim Mostel 2013-05-26 14:47:57.62
  1045. 100 Spencer Depp 2013-05-26 14:47:57.62
  1046. 101 Susan Davis 2013-05-26 14:47:57.62
  1047. 102 Walter Torn 2013-05-26 14:47:57.62
  1048. 103 Matthew Leigh 2013-05-26 14:47:57.62
  1049. 104 Penelope Cronyn 2013-05-26 14:47:57.62
  1050. 105 Sidney Crowe 2013-05-26 14:47:57.62
  1051. 106 Groucho Dunst 2013-05-26 14:47:57.62
  1052. 107 Gina Degeneres 2013-05-26 14:47:57.62
  1053. 108 Warren Nolte 2013-05-26 14:47:57.62
  1054. 109 Sylvester Dern 2013-05-26 14:47:57.62
  1055. 110 Susan Davis 2013-05-26 14:47:57.62
  1056. 111 Cameron Zellweger 2013-05-26 14:47:57.62
  1057. 112 Russell Bacall 2013-05-26 14:47:57.62
  1058. 113 Morgan Hopkins 2013-05-26 14:47:57.62
  1059. 114 Morgan Mcdormand 2013-05-26 14:47:57.62
  1060. 115 Harrison Bale 2013-05-26 14:47:57.62
  1061. 116 Dan Streep 2013-05-26 14:47:57.62
  1062. 117 Renee Tracy 2013-05-26 14:47:57.62
  1063. 118 Cuba Allen 2013-05-26 14:47:57.62
  1064. 119 Warren Jackman 2013-05-26 14:47:57.62
  1065. 120 Penelope Monroe 2013-05-26 14:47:57.62
  1066. 121 Liza Bergman 2013-05-26 14:47:57.62
  1067. 122 Salma Nolte 2013-05-26 14:47:57.62
  1068. 123 Julianne Dench 2013-05-26 14:47:57.62
  1069. 124 Scarlett Bening 2013-05-26 14:47:57.62
  1070. 125 Albert Nolte 2013-05-26 14:47:57.62
  1071. 126 Frances Tomei 2013-05-26 14:47:57.62
  1072. 127 Kevin Garland 2013-05-26 14:47:57.62
  1073. 128 Cate Mcqueen 2013-05-26 14:47:57.62
  1074. 129 Daryl Crawford 2013-05-26 14:47:57.62
  1075. 130 Greta Keitel 2013-05-26 14:47:57.62
  1076. 131 Jane Jackman 2013-05-26 14:47:57.62
  1077. 132 Adam Hopper 2013-05-26 14:47:57.62
  1078. 133 Richard Penn 2013-05-26 14:47:57.62
  1079. 134 Gene Hopkins 2013-05-26 14:47:57.62
  1080. 135 Rita Reynolds 2013-05-26 14:47:57.62
  1081. 136 Ed Mansfield 2013-05-26 14:47:57.62
  1082. 137 Morgan Williams 2013-05-26 14:47:57.62
  1083. 138 Lucille Dee 2013-05-26 14:47:57.62
  1084. 139 Ewan Gooding 2013-05-26 14:47:57.62
  1085. 140 Whoopi Hurt 2013-05-26 14:47:57.62
  1086. 141 Cate Harris 2013-05-26 14:47:57.62
  1087. 142 Jada Ryder 2013-05-26 14:47:57.62
  1088. 144 Angela Witherspoon 2013-05-26 14:47:57.62
  1089. 145 Kim Allen 2013-05-26 14:47:57.62
  1090. 146 Albert Johansson 2013-05-26 14:47:57.62
  1091. 147 Fay Winslet 2013-05-26 14:47:57.62
  1092. 148 Emily Dee 2013-05-26 14:47:57.62
  1093. 149 Russell Temple 2013-05-26 14:47:57.62
  1094. 150 Jayne Nolte 2013-05-26 14:47:57.62
  1095. 151 Geoffrey Heston 2013-05-26 14:47:57.62
  1096. 152 Ben Harris 2013-05-26 14:47:57.62
  1097. 153 Minnie Kilmer 2013-05-26 14:47:57.62
  1098. 154 Meryl Gibson 2013-05-26 14:47:57.62
  1099. 155 Ian Tandy 2013-05-26 14:47:57.62
  1100. 156 Fay Wood 2013-05-26 14:47:57.62
  1101. 157 Greta Malden 2013-05-26 14:47:57.62
  1102. 158 Vivien Basinger 2013-05-26 14:47:57.62
  1103. 159 Laura Brody 2013-05-26 14:47:57.62
  1104. 160 Chris Depp 2013-05-26 14:47:57.62
  1105. 161 Harvey Hope 2013-05-26 14:47:57.62
  1106. 162 Oprah Kilmer 2013-05-26 14:47:57.62
  1107. 163 Christopher West 2013-05-26 14:47:57.62
  1108. 164 Humphrey Willis 2013-05-26 14:47:57.62
  1109. 165 Al Garland 2013-05-26 14:47:57.62
  1110. 166 Nick Degeneres 2013-05-26 14:47:57.62
  1111. 167 Laurence Bullock 2013-05-26 14:47:57.62
  1112. 168 Will Wilson 2013-05-26 14:47:57.62
  1113. 169 Kenneth Hoffman 2013-05-26 14:47:57.62
  1114. 170 Mena Hopper 2013-05-26 14:47:57.62
  1115. 171 Olympia Pfeiffer 2013-05-26 14:47:57.62
  1116. 172 Groucho Williams 2013-05-26 14:47:57.62
  1117. 173 Alan Dreyfuss 2013-05-26 14:47:57.62
  1118. 174 Michael Bening 2013-05-26 14:47:57.62
  1119. 175 William Hackman 2013-05-26 14:47:57.62
  1120. 176 Jon Chase 2013-05-26 14:47:57.62
  1121. 177 Gene Mckellen 2013-05-26 14:47:57.62
  1122. 178 Lisa Monroe 2013-05-26 14:47:57.62
  1123. 179 Ed Guiness 2013-05-26 14:47:57.62
  1124. 180 Jeff Silverstone 2013-05-26 14:47:57.62
  1125. 181 Matthew Carrey 2013-05-26 14:47:57.62
  1126. 182 Debbie Akroyd 2013-05-26 14:47:57.62
  1127. 183 Russell Close 2013-05-26 14:47:57.62
  1128. 184 Humphrey Garland 2013-05-26 14:47:57.62
  1129. 185 Michael Bolger 2013-05-26 14:47:57.62
  1130. 186 Julia Zellweger 2013-05-26 14:47:57.62
  1131. 187 Renee Ball 2013-05-26 14:47:57.62
  1132. 188 Rock Dukakis 2013-05-26 14:47:57.62
  1133. 189 Cuba Birch 2013-05-26 14:47:57.62
  1134. 190 Audrey Bailey 2013-05-26 14:47:57.62
  1135. 191 Gregory Gooding 2013-05-26 14:47:57.62
  1136. 192 John Suvari 2013-05-26 14:47:57.62
  1137. 193 Burt Temple 2013-05-26 14:47:57.62
  1138. 194 Meryl Allen 2013-05-26 14:47:57.62
  1139. 195 Jayne Silverstone 2013-05-26 14:47:57.62
  1140. 196 Bela Walken 2013-05-26 14:47:57.62
  1141. 197 Reese West 2013-05-26 14:47:57.62
  1142. 198 Mary Keitel 2013-05-26 14:47:57.62
  1143. 199 Julia Fawcett 2013-05-26 14:47:57.62
  1144. 200 Thora Temple 2013-05-26 14:47:57.62
  1145. \.
  1146.  
  1147.  
  1148. --
  1149. -- Name: actor_actor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  1150. --
  1151.  
  1152. SELECT pg_catalog.setval('"actor_actor_id_seq"', 200, true);
  1153.  
  1154.  
  1155. --
  1156. -- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: postgres
  1157. --
  1158.  
  1159. COPY "address" ("address_id", "address", "address2", "district", "city_id", "postal_code", "phone", "last_update") FROM stdin;
  1160. 1 47 MySakila Drive \N Alberta 300 2006-02-15 09:45:30
  1161. 2 28 MySQL Boulevard \N QLD 576 2006-02-15 09:45:30
  1162. 3 23 Workhaven Lane \N Alberta 300 14033335568 2006-02-15 09:45:30
  1163. 4 1411 Lillydale Drive \N QLD 576 6172235589 2006-02-15 09:45:30
  1164. 5 1913 Hanoi Way Nagasaki 463 35200 28303384290 2006-02-15 09:45:30
  1165. 6 1121 Loja Avenue California 449 17886 838635286649 2006-02-15 09:45:30
  1166. 7 692 Joliet Street Attika 38 83579 448477190408 2006-02-15 09:45:30
  1167. 8 1566 Inegl Manor Mandalay 349 53561 705814003527 2006-02-15 09:45:30
  1168. 9 53 Idfu Parkway Nantou 361 42399 10655648674 2006-02-15 09:45:30
  1169. 10 1795 Santiago de Compostela Way Texas 295 18743 860452626434 2006-02-15 09:45:30
  1170. 11 900 Santiago de Compostela Parkway Central Serbia 280 93896 716571220373 2006-02-15 09:45:30
  1171. 12 478 Joliet Way Hamilton 200 77948 657282285970 2006-02-15 09:45:30
  1172. 13 613 Korolev Drive Masqat 329 45844 380657522649 2006-02-15 09:45:30
  1173. 14 1531 Sal Drive Esfahan 162 53628 648856936185 2006-02-15 09:45:30
  1174. 15 1542 Tarlac Parkway Kanagawa 440 1027 635297277345 2006-02-15 09:45:30
  1175. 16 808 Bhopal Manor Haryana 582 10672 465887807014 2006-02-15 09:45:30
  1176. 17 270 Amroha Parkway Osmaniye 384 29610 695479687538 2006-02-15 09:45:30
  1177. 18 770 Bydgoszcz Avenue California 120 16266 517338314235 2006-02-15 09:45:30
  1178. 19 419 Iligan Lane Madhya Pradesh 76 72878 990911107354 2006-02-15 09:45:30
  1179. 20 360 Toulouse Parkway England 495 54308 949312333307 2006-02-15 09:45:30
  1180. 21 270 Toulon Boulevard Kalmykia 156 81766 407752414682 2006-02-15 09:45:30
  1181. 22 320 Brest Avenue Kaduna 252 43331 747791594069 2006-02-15 09:45:30
  1182. 23 1417 Lancaster Avenue Northern Cape 267 72192 272572357893 2006-02-15 09:45:30
  1183. 24 1688 Okara Way Nothwest Border Prov 327 21954 144453869132 2006-02-15 09:45:30
  1184. 25 262 A Corua (La Corua) Parkway Dhaka 525 34418 892775750063 2006-02-15 09:45:30
  1185. 26 28 Charlotte Amalie Street Rabat-Sal-Zammour-Z 443 37551 161968374323 2006-02-15 09:45:30
  1186. 27 1780 Hino Boulevard Liepaja 303 7716 902731229323 2006-02-15 09:45:30
  1187. 28 96 Tafuna Way Crdoba 128 99865 934730187245 2006-02-15 09:45:30
  1188. 29 934 San Felipe de Puerto Plata Street Sind 472 99780 196495945706 2006-02-15 09:45:30
  1189. 30 18 Duisburg Boulevard 121 58327 998009777982 2006-02-15 09:45:30
  1190. 31 217 Botshabelo Place Southern Mindanao 138 49521 665356572025 2006-02-15 09:45:30
  1191. 32 1425 Shikarpur Manor Bihar 346 65599 678220867005 2006-02-15 09:45:30
  1192. 33 786 Aurora Avenue Yamaguchi 474 65750 18461860151 2006-02-15 09:45:30
  1193. 34 1668 Anpolis Street Taipei 316 50199 525255540978 2006-02-15 09:45:30
  1194. 35 33 Gorontalo Way West Bengali 257 30348 745994947458 2006-02-15 09:45:30
  1195. 36 176 Mandaluyong Place Uttar Pradesh 239 65213 627705991774 2006-02-15 09:45:30
  1196. 37 127 Purnea (Purnia) Manor Piemonte 17 79388 911872220378 2006-02-15 09:45:30
  1197. 38 61 Tama Street Okayama 284 94065 708403338270 2006-02-15 09:45:30
  1198. 39 391 Callao Drive Midi-Pyrnes 544 34021 440512153169 2006-02-15 09:45:30
  1199. 40 334 Munger (Monghyr) Lane Markazi 31 38145 481183273622 2006-02-15 09:45:30
  1200. 41 1440 Fukuyama Loop Henan 362 47929 912257250465 2006-02-15 09:45:30
  1201. 42 269 Cam Ranh Parkway Chisinau 115 34689 489783829737 2006-02-15 09:45:30
  1202. 43 306 Antofagasta Place Esprito Santo 569 3989 378318851631 2006-02-15 09:45:30
  1203. 44 671 Graz Street Oriental 353 94399 680768868518 2006-02-15 09:45:30
  1204. 45 42 Brindisi Place Yerevan 586 16744 42384721397 2006-02-15 09:45:30
  1205. 46 1632 Bislig Avenue Nonthaburi 394 61117 471675840679 2006-02-15 09:45:30
  1206. 47 1447 Imus Way Tahiti 167 48942 539758313890 2006-02-15 09:45:30
  1207. 48 1998 Halifax Drive Lipetsk 308 76022 177727722820 2006-02-15 09:45:30
  1208. 49 1718 Valencia Street Antofagasta 27 37359 675292816413 2006-02-15 09:45:30
  1209. 50 46 Pjatigorsk Lane Moscow (City) 343 23616 262076994845 2006-02-15 09:45:30
  1210. 51 686 Garland Manor Cear 247 52535 69493378813 2006-02-15 09:45:30
  1211. 52 909 Garland Manor Tatarstan 367 69367 705800322606 2006-02-15 09:45:30
  1212. 53 725 Isesaki Place Mekka 237 74428 876295323994 2006-02-15 09:45:30
  1213. 54 115 Hidalgo Parkway Khartum 379 80168 307703950263 2006-02-15 09:45:30
  1214. 55 1135 Izumisano Parkway California 171 48150 171822533480 2006-02-15 09:45:30
  1215. 56 939 Probolinggo Loop Galicia 1 4166 680428310138 2006-02-15 09:45:30
  1216. 57 17 Kabul Boulevard Chiba 355 38594 697760867968 2006-02-15 09:45:30
  1217. 58 1964 Allappuzha (Alleppey) Street Yamaguchi 227 48980 920811325222 2006-02-15 09:45:30
  1218. 59 1697 Kowloon and New Kowloon Loop Moskova 49 57807 499352017190 2006-02-15 09:45:30
  1219. 60 1668 Saint Louis Place Tahiti 397 39072 347487831378 2006-02-15 09:45:30
  1220. 61 943 Tokat Street Vaduz 560 45428 889318963672 2006-02-15 09:45:30
  1221. 62 1114 Liepaja Street Sarawak 282 69226 212869228936 2006-02-15 09:45:30
  1222. 63 1213 Ranchi Parkway Karnataka 350 94352 800024380485 2006-02-15 09:45:30
  1223. 64 81 Hodeida Way Rajasthan 231 55561 250767749542 2006-02-15 09:45:30
  1224. 65 915 Ponce Place Basel-Stadt 56 83980 1395251317 2006-02-15 09:45:30
  1225. 66 1717 Guadalajara Lane Missouri 441 85505 914090181665 2006-02-15 09:45:30
  1226. 67 1214 Hanoi Way Nebraska 306 67055 491001136577 2006-02-15 09:45:30
  1227. 68 1966 Amroha Avenue Sichuan 139 70385 333489324603 2006-02-15 09:45:30
  1228. 69 698 Otsu Street Cayenne 105 71110 409983924481 2006-02-15 09:45:30
  1229. 70 1150 Kimchon Manor Skne ln 321 96109 663449333709 2006-02-15 09:45:30
  1230. 71 1586 Guaruj Place Hunan 579 5135 947233365992 2006-02-15 09:45:30
  1231. 72 57 Arlington Manor Madhya Pradesh 475 48960 990214419142 2006-02-15 09:45:30
  1232. 73 1031 Daugavpils Parkway Bchar 63 59025 107137400143 2006-02-15 09:45:30
  1233. 74 1124 Buenaventura Drive Mekka 13 6856 407733804223 2006-02-15 09:45:30
  1234. 75 492 Cam Ranh Street Eastern Visayas 61 50805 565018274456 2006-02-15 09:45:30
  1235. 76 89 Allappuzha (Alleppey) Manor National Capital Reg 517 75444 255800440636 2006-02-15 09:45:30
  1236. 77 1947 Poos de Caldas Boulevard Chiayi 114 60951 427454485876 2006-02-15 09:45:30
  1237. 78 1206 Dos Quebradas Place So Paulo 431 20207 241832790687 2006-02-15 09:45:30
  1238. 79 1551 Rampur Lane Changhwa 108 72394 251164340471 2006-02-15 09:45:30
  1239. 80 602 Paarl Street Pavlodar 402 98889 896314772871 2006-02-15 09:45:30
  1240. 81 1692 Ede Loop So Paulo 30 9223 918711376618 2006-02-15 09:45:30
  1241. 82 936 Salzburg Lane Uttar Pradesh 425 96709 875756771675 2006-02-15 09:45:30
  1242. 83 586 Tete Way Kanagawa 256 1079 18581624103 2006-02-15 09:45:30
  1243. 84 1888 Kabul Drive Oyo & Osun 217 20936 701457319790 2006-02-15 09:45:30
  1244. 85 320 Baiyin Parkway Mahajanga 319 37307 223664661973 2006-02-15 09:45:30
  1245. 86 927 Baha Blanca Parkway Krim 479 9495 821972242086 2006-02-15 09:45:30
  1246. 87 929 Tallahassee Loop Gauteng 497 74671 800716535041 2006-02-15 09:45:30
  1247. 88 125 Citt del Vaticano Boulevard Puebla 40 67912 48417642933 2006-02-15 09:45:30
  1248. 89 1557 Ktahya Boulevard England 88 88002 720998247660 2006-02-15 09:45:30
  1249. 90 870 Ashqelon Loop Songkhla 489 84931 135117278909 2006-02-15 09:45:30
  1250. 91 1740 Portoviejo Avenue Sucre 480 29932 198123170793 2006-02-15 09:45:30
  1251. 92 1942 Ciparay Parkway Cheju 113 82624 978987363654 2006-02-15 09:45:30
  1252. 93 1926 El Alto Avenue Buenos Aires 289 75543 846225459260 2006-02-15 09:45:30
  1253. 94 1952 Chatsworth Drive Guangdong 332 25958 991562402283 2006-02-15 09:45:30
  1254. 95 1370 Le Mans Avenue Brunei and Muara 53 52163 345679835036 2006-02-15 09:45:30
  1255. 96 984 Effon-Alaiye Avenue Gois 183 17119 132986892228 2006-02-15 09:45:30
  1256. 97 832 Nakhon Sawan Manor Inner Mongolia 592 49021 275595571388 2006-02-15 09:45:30
  1257. 98 152 Kitwe Parkway Caraga 82 53182 835433605312 2006-02-15 09:45:30
  1258. 99 1697 Tanauan Lane Punjab 399 22870 4764773857 2006-02-15 09:45:30
  1259. 100 1308 Arecibo Way Georgia 41 30695 6171054059 2006-02-15 09:45:30
  1260. 101 1599 Plock Drive Tete 534 71986 817248913162 2006-02-15 09:45:30
  1261. 102 669 Firozabad Loop Abu Dhabi 12 92265 412903167998 2006-02-15 09:45:30
  1262. 103 588 Vila Velha Manor Kyongsangbuk 268 51540 333339908719 2006-02-15 09:45:30
  1263. 104 1913 Kamakura Place Lipetsk 238 97287 942570536750 2006-02-15 09:45:30
  1264. 105 733 Mandaluyong Place Asir 2 77459 196568435814 2006-02-15 09:45:30
  1265. 106 659 Vaduz Drive Ha Darom 34 49708 709935135487 2006-02-15 09:45:30
  1266. 107 1177 Jelets Way Kwara & Kogi 220 3305 484292626944 2006-02-15 09:45:30
  1267. 108 1386 Yangor Avenue Provence-Alpes-Cte 543 80720 449216226468 2006-02-15 09:45:30
  1268. 109 454 Nakhon Sawan Boulevard Funafuti 173 76383 963887147572 2006-02-15 09:45:30
  1269. 110 1867 San Juan Bautista Tuxtepec Avenue Ivanovo 225 78311 547003310357 2006-02-15 09:45:30
  1270. 111 1532 Dzerzinsk Way Buenos Aires 334 9599 330838016880 2006-02-15 09:45:30
  1271. 112 1002 Ahmadnagar Manor Mxico 213 93026 371490777743 2006-02-15 09:45:30
  1272. 113 682 Junan Way North West 273 30418 622255216127 2006-02-15 09:45:30
  1273. 114 804 Elista Drive Hubei 159 61069 379804592943 2006-02-15 09:45:30
  1274. 115 1378 Alvorada Avenue Distrito Federal 102 75834 272234298332 2006-02-15 09:45:30
  1275. 116 793 Cam Ranh Avenue California 292 87057 824370924746 2006-02-15 09:45:30
  1276. 117 1079 Tel Aviv-Jaffa Boulevard Sucre 132 10885 358178933857 2006-02-15 09:45:30
  1277. 118 442 Rae Bareli Place Nordrhein-Westfalen 148 24321 886636413768 2006-02-15 09:45:30
  1278. 119 1107 Nakhon Sawan Avenue Mxico 365 75149 867546627903 2006-02-15 09:45:30
  1279. 120 544 Malm Parkway Central Java 403 63502 386759646229 2006-02-15 09:45:30
  1280. 121 1967 Sincelejo Place Gujarat 176 73644 577812616052 2006-02-15 09:45:30
  1281. 122 333 Goinia Way Texas 185 78625 909029256431 2006-02-15 09:45:30
  1282. 123 1987 Coacalco de Berriozbal Loop al-Qalyubiya 476 96065 787654415858 2006-02-15 09:45:30
  1283. 124 241 Mosul Lane Risaralda 147 76157 765345144779 2006-02-15 09:45:30
  1284. 125 211 Chiayi Drive Uttar Pradesh 164 58186 665993880048 2006-02-15 09:45:30
  1285. 126 1175 Tanauan Way Lima 305 64615 937222955822 2006-02-15 09:45:30
  1286. 127 117 Boa Vista Way Uttar Pradesh 566 6804 677976133614 2006-02-15 09:45:30
  1287. 128 848 Tafuna Manor Ktahya 281 45142 614935229095 2006-02-15 09:45:30
  1288. 129 569 Baicheng Lane Gauteng 85 60304 490211944645 2006-02-15 09:45:30
  1289. 130 1666 Qomsheh Drive So Paulo 410 66255 582835362905 2006-02-15 09:45:30
  1290. 131 801 Hagonoy Drive Smolensk 484 8439 237426099212 2006-02-15 09:45:30
  1291. 132 1050 Garden Grove Avenue Slaskie 236 4999 973047364353 2006-02-15 09:45:30
  1292. 133 1854 Tieli Street Shandong 302 15819 509492324775 2006-02-15 09:45:30
  1293. 134 758 Junan Lane Gois 190 82639 935448624185 2006-02-15 09:45:30
  1294. 135 1752 So Leopoldo Parkway Taka-Karpatia 345 14014 252265130067 2006-02-15 09:45:30
  1295. 136 898 Belm Manor Free State 87 49757 707169393853 2006-02-15 09:45:30
  1296. 137 261 Saint Louis Way Coahuila de Zaragoza 541 83401 321944036800 2006-02-15 09:45:30
  1297. 138 765 Southampton Drive al-Qalyubiya 421 4285 23712411567 2006-02-15 09:45:30
  1298. 139 943 Johannesburg Avenue Maharashtra 417 5892 90921003005 2006-02-15 09:45:30
  1299. 140 788 Atinsk Street Karnataka 211 81691 146497509724 2006-02-15 09:45:30
  1300. 141 1749 Daxian Place Gelderland 29 11044 963369996279 2006-02-15 09:45:30
  1301. 142 1587 Sullana Lane Inner Mongolia 207 85769 468060467018 2006-02-15 09:45:30
  1302. 143 1029 Dzerzinsk Manor Ynlin 542 57519 33173584456 2006-02-15 09:45:30
  1303. 144 1666 Beni-Mellal Place Tennessee 123 13377 9099941466 2006-02-15 09:45:30
  1304. 145 928 Jaffna Loop Hiroshima 172 93762 581852137991 2006-02-15 09:45:30
  1305. 146 483 Ljubertsy Parkway Scotland 149 60562 581174211853 2006-02-15 09:45:30
  1306. 147 374 Bat Yam Boulevard Kilis 266 97700 923261616249 2006-02-15 09:45:30
  1307. 148 1027 Songkhla Manor Minsk 340 30861 563660187896 2006-02-15 09:45:30
  1308. 149 999 Sanaa Loop Gauteng 491 3439 918032330119 2006-02-15 09:45:30
  1309. 150 879 Newcastle Way Michigan 499 90732 206841104594 2006-02-15 09:45:30
  1310. 151 1337 Lincoln Parkway Saitama 555 99457 597815221267 2006-02-15 09:45:30
  1311. 152 1952 Pune Lane Saint-Denis 442 92150 354615066969 2006-02-15 09:45:30
  1312. 153 782 Mosul Street Massachusetts 94 25545 885899703621 2006-02-15 09:45:30
  1313. 154 781 Shimonoseki Drive Michoacn de Ocampo 202 95444 632316273199 2006-02-15 09:45:30
  1314. 155 1560 Jelets Boulevard Shandong 291 77777 189446090264 2006-02-15 09:45:30
  1315. 156 1963 Moscow Place Assam 354 64863 761379480249 2006-02-15 09:45:30
  1316. 157 456 Escobar Way Jakarta Raya 232 36061 719202533520 2006-02-15 09:45:30
  1317. 158 798 Cianjur Avenue Shanxi 590 76990 499408708580 2006-02-15 09:45:30
  1318. 159 185 Novi Sad Place Bern 72 41778 904253967161 2006-02-15 09:45:30
  1319. 160 1367 Yantai Manor Ondo & Ekiti 381 21294 889538496300 2006-02-15 09:45:30
  1320. 161 1386 Nakhon Sawan Boulevard Pyongyang-si 420 53502 368899174225 2006-02-15 09:45:30
  1321. 162 369 Papeete Way North Carolina 187 66639 170117068815 2006-02-15 09:45:30
  1322. 163 1440 Compton Place North Austria 307 81037 931059836497 2006-02-15 09:45:30
  1323. 164 1623 Baha Blanca Manor Moskova 310 81511 149981248346 2006-02-15 09:45:30
  1324. 165 97 Shimoga Avenue Tel Aviv 533 44660 177167004331 2006-02-15 09:45:30
  1325. 166 1740 Le Mans Loop Pays de la Loire 297 22853 168476538960 2006-02-15 09:45:30
  1326. 167 1287 Xiangfan Boulevard Gifu 253 57844 819416131190 2006-02-15 09:45:30
  1327. 168 842 Salzburg Lane Adana 529 3313 697151428760 2006-02-15 09:45:30
  1328. 169 154 Tallahassee Loop Xinxiang 199 62250 935508855935 2006-02-15 09:45:30
  1329. 170 710 San Felipe del Progreso Avenue Lilongwe 304 76901 843801144113 2006-02-15 09:45:30
  1330. 171 1540 Wroclaw Drive Maharashtra 107 62686 182363341674 2006-02-15 09:45:30
  1331. 172 475 Atinsk Way Gansu 240 59571 201705577290 2006-02-15 09:45:30
  1332. 173 1294 Firozabad Drive Jiangxi 407 70618 161801569569 2006-02-15 09:45:30
  1333. 174 1877 Ezhou Lane Rajasthan 550 63337 264541743403 2006-02-15 09:45:30
  1334. 175 316 Uruapan Street Perak 223 58194 275788967899 2006-02-15 09:45:30
  1335. 176 29 Pyongyang Loop Batman 58 47753 734780743462 2006-02-15 09:45:30
  1336. 177 1010 Klerksdorp Way Steiermark 186 6802 493008546874 2006-02-15 09:45:30
  1337. 178 1848 Salala Boulevard Miranda 373 25220 48265851133 2006-02-15 09:45:30
  1338. 179 431 Xiangtan Avenue Kerala 18 4854 230250973122 2006-02-15 09:45:30
  1339. 180 757 Rustenburg Avenue Skikda 483 89668 506134035434 2006-02-15 09:45:30
  1340. 181 146 Johannesburg Way Tamaulipas 330 54132 953689007081 2006-02-15 09:45:30
  1341. 182 1891 Rizhao Boulevard So Paulo 456 47288 391065549876 2006-02-15 09:45:30
  1342. 183 1089 Iwatsuki Avenue Kirov 270 35109 866092335135 2006-02-15 09:45:30
  1343. 184 1410 Benin City Parkway Risaralda 405 29747 104150372603 2006-02-15 09:45:30
  1344. 185 682 Garden Grove Place Tennessee 333 67497 72136330362 2006-02-15 09:45:30
  1345. 186 533 al-Ayn Boulevard California 126 8862 662227486184 2006-02-15 09:45:30
  1346. 187 1839 Szkesfehrvr Parkway Gois 317 55709 947468818183 2006-02-15 09:45:30
  1347. 188 741 Ambattur Manor Noord-Brabant 438 43310 302590383819 2006-02-15 09:45:30
  1348. 189 927 Barcelona Street Chaharmahal va Bakht 467 65121 951486492670 2006-02-15 09:45:30
  1349. 190 435 0 Way West Bengali 195 74750 760171523969 2006-02-15 09:45:30
  1350. 191 140 Chiayi Parkway Sumy 506 38982 855863906434 2006-02-15 09:45:30
  1351. 192 1166 Changhwa Street Caraga 62 58852 650752094490 2006-02-15 09:45:30
  1352. 193 891 Novi Sad Manor Ontario 383 5379 247646995453 2006-02-15 09:45:30
  1353. 194 605 Rio Claro Parkway Tabora 513 49348 352469351088 2006-02-15 09:45:30
  1354. 195 1077 San Felipe de Puerto Plata Place Rostov-na-Donu 369 65387 812824036424 2006-02-15 09:45:30
  1355. 196 9 San Miguel de Tucumn Manor Uttar Pradesh 169 90845 956188728558 2006-02-15 09:45:30
  1356. 197 447 Surakarta Loop Nyanza 271 10428 940830176580 2006-02-15 09:45:30
  1357. 198 345 Oshawa Boulevard Tokyo-to 204 32114 104491201771 2006-02-15 09:45:30
  1358. 199 1792 Valle de la Pascua Place Nordrhein-Westfalen 477 15540 419419591240 2006-02-15 09:45:30
  1359. 200 1074 Binzhou Manor Baden-Wrttemberg 325 36490 331132568928 2006-02-15 09:45:30
  1360. 201 817 Bradford Loop Jiangsu 109 89459 264286442804 2006-02-15 09:45:30
  1361. 202 955 Bamenda Way Ondo & Ekiti 218 1545 768481779568 2006-02-15 09:45:30
  1362. 203 1149 A Corua (La Corua) Boulevard Haiphong 194 95824 470884141195 2006-02-15 09:45:30
  1363. 204 387 Mwene-Ditu Drive Ahal 35 8073 764477681869 2006-02-15 09:45:30
  1364. 205 68 Molodetno Manor Nordrhein-Westfalen 575 4662 146640639760 2006-02-15 09:45:30
  1365. 206 642 Nador Drive Maharashtra 77 3924 369050085652 2006-02-15 09:45:30
  1366. 207 1688 Nador Lane Sulawesi Utara 184 61613 652218196731 2006-02-15 09:45:30
  1367. 208 1215 Pyongyang Parkway Usak 557 25238 646237101779 2006-02-15 09:45:30
  1368. 209 1679 Antofagasta Street Alto Paran 122 86599 905903574913 2006-02-15 09:45:30
  1369. 210 1304 s-Hertogenbosch Way Santa Catarina 83 10925 90336226227 2006-02-15 09:45:30
  1370. 211 850 Salala Loop Kitaa 371 10800 403404780639 2006-02-15 09:45:30
  1371. 212 624 Oshawa Boulevard West Bengali 51 89959 49677664184 2006-02-15 09:45:30
  1372. 213 43 Dadu Avenue Rajasthan 74 4855 95666951770 2006-02-15 09:45:30
  1373. 214 751 Lima Loop Aden 7 99405 756460337785 2006-02-15 09:45:30
  1374. 215 1333 Haldia Street Jilin 174 82161 408304391718 2006-02-15 09:45:30
  1375. 216 660 Jedda Boulevard Washington 65 25053 168758068397 2006-02-15 09:45:30
  1376. 217 1001 Miyakonojo Lane Taizz 518 67924 584316724815 2006-02-15 09:45:30
  1377. 218 226 Brest Manor California 508 2299 785881412500 2006-02-15 09:45:30
  1378. 219 1229 Valencia Parkway Haskovo 498 99124 352679173732 2006-02-15 09:45:30
  1379. 220 1201 Qomsheh Manor Gois 28 21464 873492228462 2006-02-15 09:45:30
  1380. 221 866 Shivapuri Manor Uttar Pradesh 448 22474 778502731092 2006-02-15 09:45:30
  1381. 222 1168 Najafabad Parkway Kabol 251 40301 886649065861 2006-02-15 09:45:30
  1382. 223 1244 Allappuzha (Alleppey) Place Buenos Aires 567 20657 991802825778 2006-02-15 09:45:30
  1383. 224 1842 Luzinia Boulevard Zanzibar West 593 94420 706878974831 2006-02-15 09:45:30
  1384. 225 1926 Gingoog Street Sisilia 511 22824 469738825391 2006-02-15 09:45:30
  1385. 226 810 Palghat (Palakkad) Boulevard Jaroslavl 235 73431 516331171356 2006-02-15 09:45:30
  1386. 227 1820 Maring Parkway Punjab 324 88307 99760893676 2006-02-15 09:45:30
  1387. 228 60 Poos de Caldas Street Rajasthan 243 82338 963063788669 2006-02-15 09:45:30
  1388. 229 1014 Loja Manor Tamil Nadu 22 66851 460795526514 2006-02-15 09:45:30
  1389. 230 201 Effon-Alaiye Way Asuncin 37 64344 684192903087 2006-02-15 09:45:30
  1390. 231 430 Alessandria Loop Saarland 439 47446 669828224459 2006-02-15 09:45:30
  1391. 232 754 Valencia Place Phnom Penh 406 87911 594319417514 2006-02-15 09:45:30
  1392. 233 356 Olomouc Manor Gois 26 93323 22326410776 2006-02-15 09:45:30
  1393. 234 1256 Bislig Boulevard Botosani 86 50598 479007229460 2006-02-15 09:45:30
  1394. 235 954 Kimchon Place West Bengali 559 42420 541327526474 2006-02-15 09:45:30
  1395. 236 885 Yingkou Manor Kaduna 596 31390 588964509072 2006-02-15 09:45:30
  1396. 237 1736 Cavite Place Qina 216 98775 431770603551 2006-02-15 09:45:30
  1397. 238 346 Skikda Parkway Hawalli 233 90628 630424482919 2006-02-15 09:45:30
  1398. 239 98 Stara Zagora Boulevard Valle 96 76448 610173756082 2006-02-15 09:45:30
  1399. 240 1479 Rustenburg Boulevard Southern Tagalog 527 18727 727785483194 2006-02-15 09:45:30
  1400. 241 647 A Corua (La Corua) Street Chollanam 357 36971 792557457753 2006-02-15 09:45:30
  1401. 242 1964 Gijn Manor Karnataka 473 14408 918119601885 2006-02-15 09:45:30
  1402. 243 47 Syktyvkar Lane West Java 118 22236 63937119031 2006-02-15 09:45:30
  1403. 244 1148 Saarbrcken Parkway Fukushima 226 1921 137773001988 2006-02-15 09:45:30
  1404. 245 1103 Bilbays Parkway Hubei 578 87660 279979529227 2006-02-15 09:45:30
  1405. 246 1246 Boksburg Parkway Hebei 422 28349 890283544295 2006-02-15 09:45:30
  1406. 247 1483 Pathankot Street Tucumn 454 37288 686015532180 2006-02-15 09:45:30
  1407. 248 582 Papeete Loop Central Visayas 294 27722 569868543137 2006-02-15 09:45:30
  1408. 249 300 Junan Street Kyonggi 553 81314 890289150158 2006-02-15 09:45:30
  1409. 250 829 Grand Prairie Way Paran 328 6461 741070712873 2006-02-15 09:45:30
  1410. 251 1473 Changhwa Parkway Mxico 124 75933 266798132374 2006-02-15 09:45:30
  1411. 252 1309 Weifang Street Florida 520 57338 435785045362 2006-02-15 09:45:30
  1412. 253 1760 Oshawa Manor Tianjin 535 38140 56257502250 2006-02-15 09:45:30
  1413. 254 786 Stara Zagora Way Oyo & Osun 390 98332 716256596301 2006-02-15 09:45:30
  1414. 255 1966 Tonghae Street Anhalt Sachsen 198 36481 567359279425 2006-02-15 09:45:30
  1415. 256 1497 Yuzhou Drive England 312 3433 246810237916 2006-02-15 09:45:30
  1416. 258 752 Ondo Loop Miyazaki 338 32474 134673576619 2006-02-15 09:45:30
  1417. 259 1338 Zalantun Lane Minas Gerais 413 45403 840522972766 2006-02-15 09:45:30
  1418. 260 127 Iwakuni Boulevard Central Luzon 192 20777 987442542471 2006-02-15 09:45:30
  1419. 261 51 Laredo Avenue Sagaing 342 68146 884536620568 2006-02-15 09:45:30
  1420. 262 771 Yaound Manor Sofala 64 86768 245477603573 2006-02-15 09:45:30
  1421. 263 532 Toulon Street Santiago 460 69517 46871694740 2006-02-15 09:45:30
  1422. 264 1027 Banjul Place West Bengali 197 50390 538241037443 2006-02-15 09:45:30
  1423. 265 1158 Mandi Bahauddin Parkway Shanxi 136 98484 276555730211 2006-02-15 09:45:30
  1424. 266 862 Xintai Lane Cagayan Valley 548 30065 265153400632 2006-02-15 09:45:30
  1425. 267 816 Cayenne Parkway Manab 414 93629 282874611748 2006-02-15 09:45:30
  1426. 268 1831 Nam Dinh Loop National Capital Reg 323 51990 322888976727 2006-02-15 09:45:30
  1427. 269 446 Kirovo-Tepetsk Lane Osaka 203 19428 303967439816 2006-02-15 09:45:30
  1428. 270 682 Halisahar Place Severn Morava 378 20536 475553436330 2006-02-15 09:45:30
  1429. 271 1587 Loja Manor Salzburg 447 5410 621625204422 2006-02-15 09:45:30
  1430. 272 1762 Paarl Parkway Hunan 298 53928 192459639410 2006-02-15 09:45:30
  1431. 273 1519 Ilorin Place Kerala 395 49298 357445645426 2006-02-15 09:45:30
  1432. 274 920 Kumbakonam Loop California 446 75090 685010736240 2006-02-15 09:45:30
  1433. 275 906 Goinia Way Wielkopolskie 255 83565 701767622697 2006-02-15 09:45:30
  1434. 276 1675 Xiangfan Manor Tamil Nadu 283 11763 271149517630 2006-02-15 09:45:30
  1435. 277 85 San Felipe de Puerto Plata Drive Shandong 584 46063 170739645687 2006-02-15 09:45:30
  1436. 278 144 South Hill Loop Guanajuato 445 2012 45387294817 2006-02-15 09:45:30
  1437. 279 1884 Shikarpur Avenue Haryana 263 85548 959949395183 2006-02-15 09:45:30
  1438. 280 1980 Kamjanets-Podilskyi Street Illinois 404 89502 874337098891 2006-02-15 09:45:30
  1439. 281 1944 Bamenda Way Michigan 573 24645 75975221996 2006-02-15 09:45:30
  1440. 282 556 Baybay Manor Oyo & Osun 374 55802 363982224739 2006-02-15 09:45:30
  1441. 283 457 Tongliao Loop Bursa 222 56254 880756161823 2006-02-15 09:45:30
  1442. 284 600 Bradford Street East Azerbaidzan 514 96204 117592274996 2006-02-15 09:45:30
  1443. 285 1006 Santa Brbara dOeste Manor Ondo & Ekiti 389 36229 85059738746 2006-02-15 09:45:30
  1444. 286 1308 Sumy Loop Fujian 175 30657 583021225407 2006-02-15 09:45:30
  1445. 287 1405 Chisinau Place Ponce 411 8160 62781725285 2006-02-15 09:45:30
  1446. 288 226 Halifax Street Xinxiang 277 58492 790651020929 2006-02-15 09:45:30
  1447. 289 1279 Udine Parkway Edo & Delta 69 75860 195003555232 2006-02-15 09:45:30
  1448. 290 1336 Benin City Drive Shiga 386 46044 341242939532 2006-02-15 09:45:30
  1449. 291 1155 Liaocheng Place Oyo & Osun 152 22650 558236142492 2006-02-15 09:45:30
  1450. 292 1993 Tabuk Lane Tamil Nadu 522 64221 648482415405 2006-02-15 09:45:30
  1451. 293 86 Higashiosaka Lane Guanajuato 563 33768 957128697225 2006-02-15 09:45:30
  1452. 294 1912 Allende Manor Kowloon and New Kowl 279 58124 172262454487 2006-02-15 09:45:30
  1453. 295 544 Tarsus Boulevard Gurico 562 53145 892523334 2006-02-15 09:45:30
  1454. 296 1936 Cuman Avenue Virginia 433 61195 976798660411 2006-02-15 09:45:30
  1455. 297 1192 Tongliao Street Sharja 470 19065 350970907017 2006-02-15 09:45:30
  1456. 298 44 Najafabad Way Baskimaa 146 61391 96604821070 2006-02-15 09:45:30
  1457. 299 32 Pudukkottai Lane Ohio 140 38834 967274728547 2006-02-15 09:45:30
  1458. 300 661 Chisinau Lane Pietari 274 8856 816436065431 2006-02-15 09:45:30
  1459. 301 951 Stara Zagora Manor Punjab 400 98573 429925609431 2006-02-15 09:45:30
  1460. 302 922 Vila Velha Loop Maharashtra 9 4085 510737228015 2006-02-15 09:45:30
  1461. 303 898 Jining Lane Pohjois-Pohjanmaa 387 40070 161643343536 2006-02-15 09:45:30
  1462. 304 1635 Kuwana Boulevard Hiroshima 205 52137 710603868323 2006-02-15 09:45:30
  1463. 305 41 El Alto Parkway Maharashtra 398 56883 51917807050 2006-02-15 09:45:30
  1464. 306 1883 Maikop Lane Kaliningrad 254 68469 96110042435 2006-02-15 09:45:30
  1465. 307 1908 Gaziantep Place Liaoning 536 58979 108053751300 2006-02-15 09:45:30
  1466. 308 687 Alessandria Parkway Sanaa 455 57587 407218522294 2006-02-15 09:45:30
  1467. 309 827 Yuncheng Drive Callao 99 79047 504434452842 2006-02-15 09:45:30
  1468. 310 913 Coacalco de Berriozbal Loop Texas 33 42141 262088367001 2006-02-15 09:45:30
  1469. 311 715 So Bernardo do Campo Lane Kedah 507 84804 181179321332 2006-02-15 09:45:30
  1470. 312 1354 Siegen Street Rio de Janeiro 25 80184 573441801529 2006-02-15 09:45:30
  1471. 313 1191 Sungai Petani Boulevard Missouri 262 9668 983259819766 2006-02-15 09:45:30
  1472. 314 1224 Huejutla de Reyes Boulevard Lombardia 91 70923 806016930576 2006-02-15 09:45:30
  1473. 315 543 Bergamo Avenue Minas Gerais 215 59686 103602195112 2006-02-15 09:45:30
  1474. 316 746 Joliet Lane Kursk 286 94878 688485191923 2006-02-15 09:45:30
  1475. 317 780 Kimberley Way Tabuk 515 17032 824396883951 2006-02-15 09:45:30
  1476. 318 1774 Yaound Place Hubei 166 91400 613124286867 2006-02-15 09:45:30
  1477. 319 1957 Yantai Lane So Paulo 490 59255 704948322302 2006-02-15 09:45:30
  1478. 320 1542 Lubumbashi Boulevard Tel Aviv 57 62472 508800331065 2006-02-15 09:45:30
  1479. 321 651 Pathankot Loop Maharashtra 336 59811 139378397418 2006-02-15 09:45:30
  1480. 322 1359 Zhoushan Parkway Streymoyar 545 29763 46568045367 2006-02-15 09:45:30
  1481. 323 1769 Iwaki Lane Kujawsko-Pomorskie 97 25787 556100547674 2006-02-15 09:45:30
  1482. 324 1145 Vilnius Manor Mxico 451 73170 674805712553 2006-02-15 09:45:30
  1483. 325 1892 Nabereznyje Telny Lane Tutuila 516 28396 478229987054 2006-02-15 09:45:30
  1484. 326 470 Boksburg Street Central 81 97960 908029859266 2006-02-15 09:45:30
  1485. 327 1427 A Corua (La Corua) Place Buenos Aires 45 85799 972574862516 2006-02-15 09:45:30
  1486. 328 479 San Felipe del Progreso Avenue Morelos 130 54949 869051782691 2006-02-15 09:45:30
  1487. 329 867 Benin City Avenue Henan 591 78543 168884817145 2006-02-15 09:45:30
  1488. 330 981 Kumbakonam Place Distrito Federal 89 87611 829116184079 2006-02-15 09:45:30
  1489. 331 1016 Iwakuni Street St George 269 49833 961370847344 2006-02-15 09:45:30
  1490. 332 663 Baha Blanca Parkway Adana 5 33463 834418779292 2006-02-15 09:45:30
  1491. 333 1860 Taguig Loop West Java 119 59550 38158430589 2006-02-15 09:45:30
  1492. 334 1816 Bydgoszcz Loop Dhaka 234 64308 965273813662 2006-02-15 09:45:30
  1493. 335 587 Benguela Manor Illinois 42 91590 165450987037 2006-02-15 09:45:30
  1494. 336 430 Kumbakonam Drive Santa F 457 28814 105470691550 2006-02-15 09:45:30
  1495. 337 1838 Tabriz Lane Dhaka 143 1195 38988715447 2006-02-15 09:45:30
  1496. 338 431 Szkesfehrvr Avenue Baki 48 57828 119501405123 2006-02-15 09:45:30
  1497. 339 503 Sogamoso Loop Sumqayit 505 49812 834626715837 2006-02-15 09:45:30
  1498. 340 507 Smolensk Loop Sousse 492 22971 80303246192 2006-02-15 09:45:30
  1499. 341 1920 Weifang Avenue Uttar Pradesh 427 15643 869507847714 2006-02-15 09:45:30
  1500. 342 124 al-Manama Way Hiroshima 382 52368 647899404952 2006-02-15 09:45:30
  1501. 343 1443 Mardan Street Western Cape 392 31483 231383037471 2006-02-15 09:45:30
  1502. 344 1909 Benguela Lane Henan 581 19913 624138001031 2006-02-15 09:45:30
  1503. 345 68 Ponce Parkway Hanoi 201 85926 870635127812 2006-02-15 09:45:30
  1504. 346 1217 Konotop Avenue Gelderland 151 504 718917251754 2006-02-15 09:45:30
  1505. 347 1293 Nam Dinh Way Roraima 84 71583 697656479977 2006-02-15 09:45:30
  1506. 348 785 Vaduz Street Baja California 335 36170 895616862749 2006-02-15 09:45:30
  1507. 349 1516 Escobar Drive Tongatapu 370 46069 64536069371 2006-02-15 09:45:30
  1508. 350 1628 Nagareyama Lane Central 453 60079 20064292617 2006-02-15 09:45:30
  1509. 351 1157 Nyeri Loop Adygea 320 56380 262744791493 2006-02-15 09:45:30
  1510. 352 1673 Tangail Drive Daugavpils 137 26857 627924259271 2006-02-15 09:45:30
  1511. 353 381 Kabul Way Taipei 209 87272 55477302294 2006-02-15 09:45:30
  1512. 354 953 Hodeida Street Southern Tagalog 221 18841 53912826864 2006-02-15 09:45:30
  1513. 355 469 Nakhon Sawan Street Tuvassia 531 58866 689199636560 2006-02-15 09:45:30
  1514. 356 1378 Beira Loop Krasnojarsk 597 40792 840957664136 2006-02-15 09:45:30
  1515. 357 1641 Changhwa Place Nord-Ouest 52 37636 256546485220 2006-02-15 09:45:30
  1516. 358 1698 Southport Loop Hidalgo 393 49009 754358349853 2006-02-15 09:45:30
  1517. 359 519 Nyeri Manor So Paulo 461 37650 764680915323 2006-02-15 09:45:30
  1518. 360 619 Hunuco Avenue Shimane 331 81508 142596392389 2006-02-15 09:45:30
  1519. 361 45 Aparecida de Goinia Place Madhya Pradesh 464 7431 650496654258 2006-02-15 09:45:30
  1520. 362 482 Kowloon and New Kowloon Manor Bratislava 90 97056 738968474939 2006-02-15 09:45:30
  1521. 363 604 Bern Place Jharkhand 429 5373 620719383725 2006-02-15 09:45:30
  1522. 364 1623 Kingstown Drive Buenos Aires 20 91299 296394569728 2006-02-15 09:45:30
  1523. 365 1009 Zanzibar Lane Arecibo 32 64875 102396298916 2006-02-15 09:45:30
  1524. 366 114 Jalib al-Shuyukh Manor Centre 585 60440 845378657301 2006-02-15 09:45:30
  1525. 367 1163 London Parkway Par 66 6066 675120358494 2006-02-15 09:45:30
  1526. 368 1658 Jastrzebie-Zdrj Loop Central 372 96584 568367775448 2006-02-15 09:45:30
  1527. 369 817 Laredo Avenue Jalisco 188 77449 151249681135 2006-02-15 09:45:30
  1528. 370 1565 Tangail Manor Okinawa 377 45750 634445428822 2006-02-15 09:45:30
  1529. 371 1912 Emeishan Drive Balikesir 50 33050 99883471275 2006-02-15 09:45:30
  1530. 372 230 Urawa Drive Andhra Pradesh 8 2738 166898395731 2006-02-15 09:45:30
  1531. 373 1922 Miraj Way Esfahan 356 13203 320471479776 2006-02-15 09:45:30
  1532. 374 433 Florencia Street Chihuahua 250 91330 561729882725 2006-02-15 09:45:30
  1533. 375 1049 Matamoros Parkway Karnataka 191 69640 960505250340 2006-02-15 09:45:30
  1534. 376 1061 Ede Avenue Southern Tagalog 98 57810 333390595558 2006-02-15 09:45:30
  1535. 377 154 Oshawa Manor East Java 415 72771 440365973660 2006-02-15 09:45:30
  1536. 378 1191 Tandil Drive Southern Tagalog 523 6362 45554316010 2006-02-15 09:45:30
  1537. 379 1133 Rizhao Avenue Pernambuco 572 2800 600264533987 2006-02-15 09:45:30
  1538. 380 1519 Santiago de los Caballeros Loop East Kasai 348 22025 409315295763 2006-02-15 09:45:30
  1539. 381 1618 Olomouc Manor Kurgan 285 26385 96846695220 2006-02-15 09:45:30
  1540. 382 220 Hidalgo Drive Kermanshah 265 45298 342720754566 2006-02-15 09:45:30
  1541. 383 686 Donostia-San Sebastin Lane Guangdong 471 97390 71857599858 2006-02-15 09:45:30
  1542. 384 97 Mogiljov Lane Gujarat 73 89294 924815207181 2006-02-15 09:45:30
  1543. 385 1642 Charlotte Amalie Drive Slaskie 549 75442 821476736117 2006-02-15 09:45:30
  1544. 386 1368 Maracabo Boulevard 493 32716 934352415130 2006-02-15 09:45:30
  1545. 387 401 Sucre Boulevard New Hampshire 322 25007 486395999608 2006-02-15 09:45:30
  1546. 388 368 Hunuco Boulevard Namibe 360 17165 106439158941 2006-02-15 09:45:30
  1547. 389 500 Lincoln Parkway Jiangsu 210 95509 550306965159 2006-02-15 09:45:30
  1548. 390 102 Chapra Drive Ibaragi 521 14073 776031833752 2006-02-15 09:45:30
  1549. 391 1793 Meixian Place Hmelnytskyi 258 33535 619966287415 2006-02-15 09:45:30
  1550. 392 514 Ife Way Shaba 315 69973 900235712074 2006-02-15 09:45:30
  1551. 393 717 Changzhou Lane Southern Tagalog 104 21615 426255288071 2006-02-15 09:45:30
  1552. 394 753 Ilorin Avenue Sichuan 157 3656 464511145118 2006-02-15 09:45:30
  1553. 395 1337 Mit Ghamr Avenue Nakhon Sawan 358 29810 175283210378 2006-02-15 09:45:30
  1554. 396 767 Pyongyang Drive Osaka 229 83536 667736124769 2006-02-15 09:45:30
  1555. 397 614 Pak Kret Street Addis Abeba 6 27796 47808359842 2006-02-15 09:45:30
  1556. 398 954 Lapu-Lapu Way Moskova 278 8816 737229003916 2006-02-15 09:45:30
  1557. 399 331 Bydgoszcz Parkway Asturia 181 966 537374465982 2006-02-15 09:45:30
  1558. 400 1152 Citrus Heights Manor al-Qadarif 15 5239 765957414528 2006-02-15 09:45:30
  1559. 401 168 Cianjur Manor Saitama 228 73824 679095087143 2006-02-15 09:45:30
  1560. 402 616 Hagonoy Avenue Krasnojarsk 39 46043 604177838256 2006-02-15 09:45:30
  1561. 403 1190 0 Place Rio Grande do Sul 44 10417 841876514789 2006-02-15 09:45:30
  1562. 404 734 Bchar Place Punjab 375 30586 280578750435 2006-02-15 09:45:30
  1563. 405 530 Lausanne Lane Texas 135 11067 775235029633 2006-02-15 09:45:30
  1564. 406 454 Patiala Lane Fukushima 276 13496 794553031307 2006-02-15 09:45:30
  1565. 407 1346 Mysore Drive Bretagne 92 61507 516647474029 2006-02-15 09:45:30
  1566. 408 990 Etawah Loop Tamil Nadu 564 79940 206169448769 2006-02-15 09:45:30
  1567. 409 1266 Laredo Parkway Saitama 380 7664 1483365694 2006-02-15 09:45:30
  1568. 410 88 Nagaon Manor Buenos Aires 524 86868 779461480495 2006-02-15 09:45:30
  1569. 411 264 Bhimavaram Manor St Thomas 111 54749 302526949177 2006-02-15 09:45:30
  1570. 412 1639 Saarbrcken Drive North West 437 9827 328494873422 2006-02-15 09:45:30
  1571. 413 692 Amroha Drive Northern 230 35575 359478883004 2006-02-15 09:45:30
  1572. 414 1936 Lapu-Lapu Parkway Bauchi & Gombe 141 7122 653436985797 2006-02-15 09:45:30
  1573. 415 432 Garden Grove Street Ontario 430 65630 615964523510 2006-02-15 09:45:30
  1574. 416 1445 Carmen Parkway West Java 117 70809 598912394463 2006-02-15 09:45:30
  1575. 417 791 Salinas Street Punjab 208 40509 129953030512 2006-02-15 09:45:30
  1576. 418 126 Acua Parkway West Bengali 71 58888 480039662421 2006-02-15 09:45:30
  1577. 419 397 Sunnyvale Avenue Guanajuato 19 55566 680851640676 2006-02-15 09:45:30
  1578. 420 992 Klerksdorp Loop Utrecht 23 33711 855290087237 2006-02-15 09:45:30
  1579. 421 966 Arecibo Loop Sind 134 94018 15273765306 2006-02-15 09:45:30
  1580. 422 289 Santo Andr Manor al-Sharqiya 16 72410 214976066017 2006-02-15 09:45:30
  1581. 423 437 Chungho Drive Puerto Plata 450 59489 491271355190 2006-02-15 09:45:30
  1582. 424 1948 Bayugan Parkway Bihar 264 60622 987306329957 2006-02-15 09:45:30
  1583. 425 1866 al-Qatif Avenue California 155 89420 546793516940 2006-02-15 09:45:30
  1584. 426 1661 Abha Drive Tamil Nadu 416 14400 270456873752 2006-02-15 09:45:30
  1585. 427 1557 Cape Coral Parkway Hubei 293 46875 368284120423 2006-02-15 09:45:30
  1586. 428 1727 Matamoros Place Sawhaj 465 78813 129673677866 2006-02-15 09:45:30
  1587. 429 1269 Botosani Manor Guangdong 468 47394 736517327853 2006-02-15 09:45:30
  1588. 430 355 Vitria de Santo Anto Way Oaxaca 452 81758 548003849552 2006-02-15 09:45:30
  1589. 431 1596 Acua Parkway Jharkhand 418 70425 157133457169 2006-02-15 09:45:30
  1590. 432 259 Ipoh Drive So Paulo 189 64964 419009857119 2006-02-15 09:45:30
  1591. 433 1823 Hoshiarpur Lane Komi 510 33191 307133768620 2006-02-15 09:45:30
  1592. 434 1404 Taguig Drive Okayama 547 87212 572068624538 2006-02-15 09:45:30
  1593. 435 740 Udaipur Lane Nizni Novgorod 150 33505 497288595103 2006-02-15 09:45:30
  1594. 436 287 Cuautla Boulevard Chuquisaca 501 72736 82619513349 2006-02-15 09:45:30
  1595. 437 1766 Almirante Brown Street KwaZulu-Natal 364 63104 617567598243 2006-02-15 09:45:30
  1596. 438 596 Huixquilucan Place Nampula 351 65892 342709348083 2006-02-15 09:45:30
  1597. 439 1351 Aparecida de Goinia Parkway Northern Mindanao 391 41775 959834530529 2006-02-15 09:45:30
  1598. 440 722 Bradford Lane Shandong 249 90920 746251338300 2006-02-15 09:45:30
  1599. 441 983 Santa F Way British Colombia 565 47472 145720452260 2006-02-15 09:45:30
  1600. 442 1245 Ibirit Way La Romana 290 40926 331888642162 2006-02-15 09:45:30
  1601. 443 1836 Korla Parkway Copperbelt 272 55405 689681677428 2006-02-15 09:45:30
  1602. 444 231 Kaliningrad Place Lombardia 70 57833 575081026569 2006-02-15 09:45:30
  1603. 445 495 Bhimavaram Lane Maharashtra 144 3 82088937724 2006-02-15 09:45:30
  1604. 446 1924 Shimonoseki Drive Batna 59 52625 406784385440 2006-02-15 09:45:30
  1605. 447 105 Dzerzinsk Manor Inner Mongolia 540 48570 240776414296 2006-02-15 09:45:30
  1606. 448 614 Denizli Parkway Rio Grande do Sul 486 29444 876491807547 2006-02-15 09:45:30
  1607. 449 1289 Belm Boulevard Tartumaa 530 88306 237368926031 2006-02-15 09:45:30
  1608. 450 203 Tambaram Street Buenos Aires 161 73942 411549550611 2006-02-15 09:45:30
  1609. 451 1704 Tambaram Manor West Bengali 554 2834 39463554936 2006-02-15 09:45:30
  1610. 452 207 Cuernavaca Loop Tatarstan 352 52671 782900030287 2006-02-15 09:45:30
  1611. 453 319 Springs Loop Baijeri 160 99552 72524459905 2006-02-15 09:45:30
  1612. 454 956 Nam Dinh Manor Kerman 481 21872 474047727727 2006-02-15 09:45:30
  1613. 455 1947 Paarl Way Central Java 509 23636 834061016202 2006-02-15 09:45:30
  1614. 456 814 Simferopol Loop Sinaloa 154 48745 524567129902 2006-02-15 09:45:30
  1615. 457 535 Ahmadnagar Manor Abu Dhabi 3 41136 985109775584 2006-02-15 09:45:30
  1616. 458 138 Caracas Boulevard Zulia 326 16790 974433019532 2006-02-15 09:45:30
  1617. 459 251 Florencia Drive Michoacn de Ocampo 556 16119 118011831565 2006-02-15 09:45:30
  1618. 460 659 Gatineau Boulevard La Paz 153 28587 205524798287 2006-02-15 09:45:30
  1619. 461 1889 Valparai Way Ziguinchor 600 75559 670370974122 2006-02-15 09:45:30
  1620. 462 1485 Bratislava Place Illinois 435 83183 924663855568 2006-02-15 09:45:30
  1621. 463 935 Aden Boulevard Central Java 532 64709 335052544020 2006-02-15 09:45:30
  1622. 464 76 Kermanshah Manor Esfahan 423 23343 762361821578 2006-02-15 09:45:30
  1623. 465 734 Tanshui Avenue Caquet 170 70664 366776723320 2006-02-15 09:45:30
  1624. 466 118 Jaffna Loop Northern Mindanao 182 10447 325526730021 2006-02-15 09:45:30
  1625. 467 1621 Tongliao Avenue Irkutsk 558 22173 209342540247 2006-02-15 09:45:30
  1626. 468 1844 Usak Avenue Nova Scotia 196 84461 164414772677 2006-02-15 09:45:30
  1627. 469 1872 Toulon Loop OHiggins 428 7939 928809465153 2006-02-15 09:45:30
  1628. 470 1088 Ibirit Place Jalisco 595 88502 49084281333 2006-02-15 09:45:30
  1629. 471 1322 Mosul Parkway Shandong 145 95400 268053970382 2006-02-15 09:45:30
  1630. 472 1447 Chatsworth Place Chihuahua 129 41545 769370126331 2006-02-15 09:45:30
  1631. 473 1257 Guadalajara Street Karnataka 78 33599 195337700615 2006-02-15 09:45:30
  1632. 474 1469 Plock Lane Galicia 388 95835 622884741180 2006-02-15 09:45:30
  1633. 475 434 Ourense (Orense) Manor Hodeida 206 14122 562370137426 2006-02-15 09:45:30
  1634. 476 270 Tambaram Parkway Gauteng 244 9668 248446668735 2006-02-15 09:45:30
  1635. 477 1786 Salinas Place Nam Ha 359 66546 206060652238 2006-02-15 09:45:30
  1636. 478 1078 Stara Zagora Drive Aceh 301 69221 932992626595 2006-02-15 09:45:30
  1637. 479 1854 Okara Boulevard Drenthe 158 42123 131912793873 2006-02-15 09:45:30
  1638. 480 421 Yaound Street Sumy 385 11363 726875628268 2006-02-15 09:45:30
  1639. 481 1153 Allende Way Qubec 179 20336 856872225376 2006-02-15 09:45:30
  1640. 482 808 Naala-Porto Parkway England 500 41060 553452430707 2006-02-15 09:45:30
  1641. 483 632 Usolje-Sibirskoje Parkway Ha Darom 36 73085 667648979883 2006-02-15 09:45:30
  1642. 484 98 Pyongyang Boulevard Ohio 11 88749 191958435142 2006-02-15 09:45:30
  1643. 485 984 Novoterkassk Loop Gaziantep 180 28165 435118527255 2006-02-15 09:45:30
  1644. 486 64 Korla Street Mwanza 347 25145 510383179153 2006-02-15 09:45:30
  1645. 487 1785 So Bernardo do Campo Street Veracruz 125 71182 684529463244 2006-02-15 09:45:30
  1646. 488 698 Jelets Boulevard Denizli 142 2596 975185523021 2006-02-15 09:45:30
  1647. 489 1297 Alvorada Parkway Ningxia 587 11839 508348602835 2006-02-15 09:45:30
  1648. 490 1909 Dayton Avenue Guangdong 469 88513 702955450528 2006-02-15 09:45:30
  1649. 491 1789 Saint-Denis Parkway Coahuila de Zaragoza 4 8268 936806643983 2006-02-15 09:45:30
  1650. 492 185 Mannheim Lane Stavropol 408 23661 589377568313 2006-02-15 09:45:30
  1651. 493 184 Mandaluyong Street Baja California Sur 288 94239 488425406814 2006-02-15 09:45:30
  1652. 494 591 Sungai Petani Drive Okayama 376 46400 37247325001 2006-02-15 09:45:30
  1653. 495 656 Matamoros Drive Boyac 487 19489 17305839123 2006-02-15 09:45:30
  1654. 496 775 ostka Drive al-Daqahliya 337 22358 171973024401 2006-02-15 09:45:30
  1655. 497 1013 Tabuk Boulevard West Bengali 261 96203 158399646978 2006-02-15 09:45:30
  1656. 498 319 Plock Parkway Istanbul 504 26101 854259976812 2006-02-15 09:45:30
  1657. 499 1954 Kowloon and New Kowloon Way Chimborazo 434 63667 898559280434 2006-02-15 09:45:30
  1658. 500 362 Rajkot Lane Gansu 47 98030 962020153680 2006-02-15 09:45:30
  1659. 501 1060 Tandil Lane Shandong 432 72349 211256301880 2006-02-15 09:45:30
  1660. 502 1515 Korla Way England 589 57197 959467760895 2006-02-15 09:45:30
  1661. 503 1416 San Juan Bautista Tuxtepec Avenue Zufar 444 50592 144206758053 2006-02-15 09:45:30
  1662. 504 1 Valle de Santiago Avenue Apulia 93 86208 465897838272 2006-02-15 09:45:30
  1663. 505 519 Brescia Parkway East Java 318 69504 793996678771 2006-02-15 09:45:30
  1664. 506 414 Mandaluyong Street Lubelskie 314 16370 52709222667 2006-02-15 09:45:30
  1665. 507 1197 Sokoto Boulevard West Bengali 478 87687 868602816371 2006-02-15 09:45:30
  1666. 508 496 Celaya Drive Nagano 552 90797 759586584889 2006-02-15 09:45:30
  1667. 509 786 Matsue Way Illinois 245 37469 111177206479 2006-02-15 09:45:30
  1668. 510 48 Maracabo Place Central Luzon 519 1570 82671830126 2006-02-15 09:45:30
  1669. 511 1152 al-Qatif Lane Kalimantan Barat 412 44816 131370665218 2006-02-15 09:45:30
  1670. 512 1269 Ipoh Avenue Eskisehir 163 54674 402630109080 2006-02-15 09:45:30
  1671. 513 758 Korolev Parkway Andhra Pradesh 568 75474 441628280920 2006-02-15 09:45:30
  1672. 514 1747 Rustenburg Place Bihar 110 51369 442673923363 2006-02-15 09:45:30
  1673. 515 886 Tonghae Place Volgograd 259 19450 711928348157 2006-02-15 09:45:30
  1674. 516 1574 Goinia Boulevard Heilongjiang 502 39529 59634255214 2006-02-15 09:45:30
  1675. 517 548 Uruapan Street Ontario 312 35653 879347453467 2006-02-15 09:45:30
  1676. 519 962 Tama Loop 583 65952 282667506728 2006-02-15 09:45:30
  1677. 520 1778 Gijn Manor Hubei 594 35156 288910576761 2006-02-15 09:45:30
  1678. 521 568 Dhule (Dhulia) Loop Coquimbo 127 92568 602101369463 2006-02-15 09:45:30
  1679. 522 1768 Udine Loop Battambang 60 32347 448876499197 2006-02-15 09:45:30
  1680. 523 608 Birgunj Parkway Taipei 116 400 627425618482 2006-02-15 09:45:30
  1681. 524 680 A Corua (La Corua) Manor Sivas 482 49806 158326114853 2006-02-15 09:45:30
  1682. 525 1949 Sanya Street Gumma 224 61244 132100972047 2006-02-15 09:45:30
  1683. 526 617 Klerksdorp Place Khanh Hoa 366 94707 574973479129 2006-02-15 09:45:30
  1684. 527 1993 0 Loop Liaoning 588 41214 25865528181 2006-02-15 09:45:30
  1685. 528 1176 Southend-on-Sea Manor Southern Tagalog 458 81651 236679267178 2006-02-15 09:45:30
  1686. 529 600 Purnea (Purnia) Avenue Nghe An 571 18043 638409958875 2006-02-15 09:45:30
  1687. 530 1003 Qinhuangdao Street West Java 419 25972 35533115997 2006-02-15 09:45:30
  1688. 531 1986 Sivas Place Friuli-Venezia Giuli 551 95775 182059202712 2006-02-15 09:45:30
  1689. 532 1427 Tabuk Place Florida 101 31342 214756839122 2006-02-15 09:45:30
  1690. 533 556 Asuncin Way Mogiljov 339 35364 338244023543 2006-02-15 09:45:30
  1691. 534 486 Ondo Parkway Benguela 67 35202 105882218332 2006-02-15 09:45:30
  1692. 535 635 Brest Manor Andhra Pradesh 75 40899 80593242951 2006-02-15 09:45:30
  1693. 536 166 Jinchang Street Buenos Aires 165 86760 717566026669 2006-02-15 09:45:30
  1694. 537 958 Sagamihara Lane Mie 287 88408 427274926505 2006-02-15 09:45:30
  1695. 538 1817 Livorno Way Khanh Hoa 100 79401 478380208348 2006-02-15 09:45:30
  1696. 539 1332 Gaziantep Lane Shandong 80 22813 383353187467 2006-02-15 09:45:30
  1697. 540 949 Allende Lane Uttar Pradesh 24 67521 122981120653 2006-02-15 09:45:30
  1698. 541 195 Ilorin Street Chari-Baguirmi 363 49250 8912935608 2006-02-15 09:45:30
  1699. 542 193 Bhusawal Place Kang-won 539 9750 745267607502 2006-02-15 09:45:30
  1700. 543 43 Vilnius Manor Colorado 42 79814 484500282381 2006-02-15 09:45:30
  1701. 544 183 Haiphong Street Jilin 46 69953 488600270038 2006-02-15 09:45:30
  1702. 545 163 Augusta-Richmond County Loop Carabobo 561 33030 754579047924 2006-02-15 09:45:30
  1703. 546 191 Jos Azueta Parkway Ruse 436 13629 932156667696 2006-02-15 09:45:30
  1704. 547 379 Lublin Parkway Toscana 309 74568 921960450089 2006-02-15 09:45:30
  1705. 548 1658 Cuman Loop Sumatera Selatan 396 51309 784907335610 2006-02-15 09:45:30
  1706. 549 454 Qinhuangdao Drive Tadla-Azilal 68 25866 786270036240 2006-02-15 09:45:30
  1707. 550 1715 Okayama Street So Paulo 485 55676 169352919175 2006-02-15 09:45:30
  1708. 551 182 Nukualofa Drive Sumy 275 15414 426346224043 2006-02-15 09:45:30
  1709. 552 390 Wroclaw Way Hainan 462 5753 357593328658 2006-02-15 09:45:30
  1710. 553 1421 Quilmes Lane Ishikawa 260 19151 135407755975 2006-02-15 09:45:30
  1711. 554 947 Trshavn Place Central Luzon 528 841 50898428626 2006-02-15 09:45:30
  1712. 555 1764 Jalib al-Shuyukh Parkway Galicia 459 77642 84794532510 2006-02-15 09:45:30
  1713. 556 346 Cam Ranh Avenue Zhejiang 599 39976 978430786151 2006-02-15 09:45:30
  1714. 557 1407 Pachuca de Soto Place Rio Grande do Sul 21 26284 380077794770 2006-02-15 09:45:30
  1715. 558 904 Clarksville Drive Zhejiang 193 52234 955349440539 2006-02-15 09:45:30
  1716. 559 1917 Kumbakonam Parkway Vojvodina 368 11892 698182547686 2006-02-15 09:45:30
  1717. 560 1447 Imus Place Gujarat 426 12905 62127829280 2006-02-15 09:45:30
  1718. 561 1497 Fengshan Drive KwaZulu-Natal 112 63022 368738360376 2006-02-15 09:45:30
  1719. 562 869 Shikarpur Way England 496 57380 590764256785 2006-02-15 09:45:30
  1720. 563 1059 Yuncheng Avenue Vilna 570 47498 107092893983 2006-02-15 09:45:30
  1721. 564 505 Madiun Boulevard Dolnoslaskie 577 97271 970638808606 2006-02-15 09:45:30
  1722. 565 1741 Hoshiarpur Boulevard al-Sharqiya 79 22372 855066328617 2006-02-15 09:45:30
  1723. 566 1229 Varanasi (Benares) Manor Buenos Aires 43 40195 817740355461 2006-02-15 09:45:30
  1724. 567 1894 Boa Vista Way Texas 178 77464 239357986667 2006-02-15 09:45:30
  1725. 568 1342 Sharja Way Sokoto & Kebbi & Zam 488 93655 946114054231 2006-02-15 09:45:30
  1726. 569 1342 Abha Boulevard Bukarest 95 10714 997453607116 2006-02-15 09:45:30
  1727. 570 415 Pune Avenue Shandong 580 44274 203202500108 2006-02-15 09:45:30
  1728. 571 1746 Faaa Way Huanuco 214 32515 863080561151 2006-02-15 09:45:30
  1729. 572 539 Hami Way Tokat 538 52196 525518075499 2006-02-15 09:45:30
  1730. 573 1407 Surakarta Manor Moskova 466 33224 324346485054 2006-02-15 09:45:30
  1731. 574 502 Mandi Bahauddin Parkway Anzotegui 55 15992 618156722572 2006-02-15 09:45:30
  1732. 575 1052 Pathankot Avenue Sichuan 299 77397 128499386727 2006-02-15 09:45:30
  1733. 576 1351 Sousse Lane Coahuila de Zaragoza 341 37815 203804046132 2006-02-15 09:45:30
  1734. 577 1501 Pangkal Pinang Avenue Mazowieckie 409 943 770864062795 2006-02-15 09:45:30
  1735. 578 1405 Hagonoy Avenue Slaskie 133 86587 867287719310 2006-02-15 09:45:30
  1736. 579 521 San Juan Bautista Tuxtepec Place Qaraghandy 598 95093 844018348565 2006-02-15 09:45:30
  1737. 580 923 Tangail Boulevard Tokyo-to 10 33384 315528269898 2006-02-15 09:45:30
  1738. 581 186 Skikda Lane Morelos 131 89422 14465669789 2006-02-15 09:45:30
  1739. 582 1568 Celaya Parkway Kaohsiung 168 34750 278669994384 2006-02-15 09:45:30
  1740. 583 1489 Kakamigahara Lane Taipei 526 98883 29341849811 2006-02-15 09:45:30
  1741. 584 1819 Alessandria Loop Campeche 103 53829 377633994405 2006-02-15 09:45:30
  1742. 585 1208 Tama Loop Ninawa 344 73605 954786054144 2006-02-15 09:45:30
  1743. 586 951 Springs Lane Central Mindanao 219 96115 165164761435 2006-02-15 09:45:30
  1744. 587 760 Miyakonojo Drive Guerrero 246 64682 294449058179 2006-02-15 09:45:30
  1745. 588 966 Asuncin Way Hidalgo 212 62703 995527378381 2006-02-15 09:45:30
  1746. 589 1584 Ljubertsy Lane England 494 22954 285710089439 2006-02-15 09:45:30
  1747. 590 247 Jining Parkway Banjul 54 53446 170115379190 2006-02-15 09:45:30
  1748. 591 773 Dallas Manor Buenos Aires 424 12664 914466027044 2006-02-15 09:45:30
  1749. 592 1923 Stara Zagora Lane Nantou 546 95179 182178609211 2006-02-15 09:45:30
  1750. 593 1402 Zanzibar Boulevard Guanajuato 106 71102 387448063440 2006-02-15 09:45:30
  1751. 594 1464 Kursk Parkway Shandong 574 17381 338758048786 2006-02-15 09:45:30
  1752. 595 1074 Sanaa Parkway Loja 311 22474 154124128457 2006-02-15 09:45:30
  1753. 596 1759 Niznekamsk Avenue al-Manama 14 39414 864392582257 2006-02-15 09:45:30
  1754. 597 32 Liaocheng Way Minas Gerais 248 1944 410877354933 2006-02-15 09:45:30
  1755. 598 42 Fontana Avenue Fejr 512 14684 437829801725 2006-02-15 09:45:30
  1756. 599 1895 Zhezqazghan Drive California 177 36693 137809746111 2006-02-15 09:45:30
  1757. 600 1837 Kaduna Parkway Inner Mongolia 241 82580 640843562301 2006-02-15 09:45:30
  1758. 601 844 Bucuresti Place Liaoning 242 36603 935952366111 2006-02-15 09:45:30
  1759. 602 1101 Bucuresti Boulevard West Greece 401 97661 199514580428 2006-02-15 09:45:30
  1760. 603 1103 Quilmes Boulevard Piura 503 52137 644021380889 2006-02-15 09:45:30
  1761. 604 1331 Usak Boulevard Vaud 296 61960 145308717464 2006-02-15 09:45:30
  1762. 605 1325 Fukuyama Street Heilongjiang 537 27107 288241215394 2006-02-15 09:45:30
  1763. \.
  1764.  
  1765.  
  1766. --
  1767. -- Name: address_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  1768. --
  1769.  
  1770. SELECT pg_catalog.setval('"address_address_id_seq"', 605, true);
  1771.  
  1772.  
  1773. --
  1774. -- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: postgres
  1775. --
  1776.  
  1777. COPY "category" ("category_id", "name", "last_update") FROM stdin;
  1778. 1 Action 2006-02-15 09:46:27
  1779. 2 Animation 2006-02-15 09:46:27
  1780. 3 Children 2006-02-15 09:46:27
  1781. 4 Classics 2006-02-15 09:46:27
  1782. 5 Comedy 2006-02-15 09:46:27
  1783. 6 Documentary 2006-02-15 09:46:27
  1784. 7 Drama 2006-02-15 09:46:27
  1785. 8 Family 2006-02-15 09:46:27
  1786. 9 Foreign 2006-02-15 09:46:27
  1787. 10 Games 2006-02-15 09:46:27
  1788. 11 Horror 2006-02-15 09:46:27
  1789. 12 Music 2006-02-15 09:46:27
  1790. 13 New 2006-02-15 09:46:27
  1791. 14 Sci-Fi 2006-02-15 09:46:27
  1792. 15 Sports 2006-02-15 09:46:27
  1793. 16 Travel 2006-02-15 09:46:27
  1794. \.
  1795.  
  1796.  
  1797. --
  1798. -- Name: category_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  1799. --
  1800.  
  1801. SELECT pg_catalog.setval('"category_category_id_seq"', 16, true);
  1802.  
  1803.  
  1804. --
  1805. -- Data for Name: city; Type: TABLE DATA; Schema: public; Owner: postgres
  1806. --
  1807.  
  1808. COPY "city" ("city_id", "city", "country_id", "last_update") FROM stdin;
  1809. 1 A Corua (La Corua) 87 2006-02-15 09:45:25
  1810. 2 Abha 82 2006-02-15 09:45:25
  1811. 3 Abu Dhabi 101 2006-02-15 09:45:25
  1812. 4 Acua 60 2006-02-15 09:45:25
  1813. 5 Adana 97 2006-02-15 09:45:25
  1814. 6 Addis Abeba 31 2006-02-15 09:45:25
  1815. 7 Aden 107 2006-02-15 09:45:25
  1816. 8 Adoni 44 2006-02-15 09:45:25
  1817. 9 Ahmadnagar 44 2006-02-15 09:45:25
  1818. 10 Akishima 50 2006-02-15 09:45:25
  1819. 11 Akron 103 2006-02-15 09:45:25
  1820. 12 al-Ayn 101 2006-02-15 09:45:25
  1821. 13 al-Hawiya 82 2006-02-15 09:45:25
  1822. 14 al-Manama 11 2006-02-15 09:45:25
  1823. 15 al-Qadarif 89 2006-02-15 09:45:25
  1824. 16 al-Qatif 82 2006-02-15 09:45:25
  1825. 17 Alessandria 49 2006-02-15 09:45:25
  1826. 18 Allappuzha (Alleppey) 44 2006-02-15 09:45:25
  1827. 19 Allende 60 2006-02-15 09:45:25
  1828. 20 Almirante Brown 6 2006-02-15 09:45:25
  1829. 21 Alvorada 15 2006-02-15 09:45:25
  1830. 22 Ambattur 44 2006-02-15 09:45:25
  1831. 23 Amersfoort 67 2006-02-15 09:45:25
  1832. 24 Amroha 44 2006-02-15 09:45:25
  1833. 25 Angra dos Reis 15 2006-02-15 09:45:25
  1834. 26 Anpolis 15 2006-02-15 09:45:25
  1835. 27 Antofagasta 22 2006-02-15 09:45:25
  1836. 28 Aparecida de Goinia 15 2006-02-15 09:45:25
  1837. 29 Apeldoorn 67 2006-02-15 09:45:25
  1838. 30 Araatuba 15 2006-02-15 09:45:25
  1839. 31 Arak 46 2006-02-15 09:45:25
  1840. 32 Arecibo 77 2006-02-15 09:45:25
  1841. 33 Arlington 103 2006-02-15 09:45:25
  1842. 34 Ashdod 48 2006-02-15 09:45:25
  1843. 35 Ashgabat 98 2006-02-15 09:45:25
  1844. 36 Ashqelon 48 2006-02-15 09:45:25
  1845. 37 Asuncin 73 2006-02-15 09:45:25
  1846. 38 Athenai 39 2006-02-15 09:45:25
  1847. 39 Atinsk 80 2006-02-15 09:45:25
  1848. 40 Atlixco 60 2006-02-15 09:45:25
  1849. 41 Augusta-Richmond County 103 2006-02-15 09:45:25
  1850. 42 Aurora 103 2006-02-15 09:45:25
  1851. 43 Avellaneda 6 2006-02-15 09:45:25
  1852. 44 Bag 15 2006-02-15 09:45:25
  1853. 45 Baha Blanca 6 2006-02-15 09:45:25
  1854. 46 Baicheng 23 2006-02-15 09:45:25
  1855. 47 Baiyin 23 2006-02-15 09:45:25
  1856. 48 Baku 10 2006-02-15 09:45:25
  1857. 49 Balaiha 80 2006-02-15 09:45:25
  1858. 50 Balikesir 97 2006-02-15 09:45:25
  1859. 51 Balurghat 44 2006-02-15 09:45:25
  1860. 52 Bamenda 19 2006-02-15 09:45:25
  1861. 53 Bandar Seri Begawan 16 2006-02-15 09:45:25
  1862. 54 Banjul 37 2006-02-15 09:45:25
  1863. 55 Barcelona 104 2006-02-15 09:45:25
  1864. 56 Basel 91 2006-02-15 09:45:25
  1865. 57 Bat Yam 48 2006-02-15 09:45:25
  1866. 58 Batman 97 2006-02-15 09:45:25
  1867. 59 Batna 2 2006-02-15 09:45:25
  1868. 60 Battambang 18 2006-02-15 09:45:25
  1869. 61 Baybay 75 2006-02-15 09:45:25
  1870. 62 Bayugan 75 2006-02-15 09:45:25
  1871. 63 Bchar 2 2006-02-15 09:45:25
  1872. 64 Beira 63 2006-02-15 09:45:25
  1873. 65 Bellevue 103 2006-02-15 09:45:25
  1874. 66 Belm 15 2006-02-15 09:45:25
  1875. 67 Benguela 4 2006-02-15 09:45:25
  1876. 68 Beni-Mellal 62 2006-02-15 09:45:25
  1877. 69 Benin City 69 2006-02-15 09:45:25
  1878. 70 Bergamo 49 2006-02-15 09:45:25
  1879. 71 Berhampore (Baharampur) 44 2006-02-15 09:45:25
  1880. 72 Bern 91 2006-02-15 09:45:25
  1881. 73 Bhavnagar 44 2006-02-15 09:45:25
  1882. 74 Bhilwara 44 2006-02-15 09:45:25
  1883. 75 Bhimavaram 44 2006-02-15 09:45:25
  1884. 76 Bhopal 44 2006-02-15 09:45:25
  1885. 77 Bhusawal 44 2006-02-15 09:45:25
  1886. 78 Bijapur 44 2006-02-15 09:45:25
  1887. 79 Bilbays 29 2006-02-15 09:45:25
  1888. 80 Binzhou 23 2006-02-15 09:45:25
  1889. 81 Birgunj 66 2006-02-15 09:45:25
  1890. 82 Bislig 75 2006-02-15 09:45:25
  1891. 83 Blumenau 15 2006-02-15 09:45:25
  1892. 84 Boa Vista 15 2006-02-15 09:45:25
  1893. 85 Boksburg 85 2006-02-15 09:45:25
  1894. 86 Botosani 78 2006-02-15 09:45:25
  1895. 87 Botshabelo 85 2006-02-15 09:45:25
  1896. 88 Bradford 102 2006-02-15 09:45:25
  1897. 89 Braslia 15 2006-02-15 09:45:25
  1898. 90 Bratislava 84 2006-02-15 09:45:25
  1899. 91 Brescia 49 2006-02-15 09:45:25
  1900. 92 Brest 34 2006-02-15 09:45:25
  1901. 93 Brindisi 49 2006-02-15 09:45:25
  1902. 94 Brockton 103 2006-02-15 09:45:25
  1903. 95 Bucuresti 78 2006-02-15 09:45:25
  1904. 96 Buenaventura 24 2006-02-15 09:45:25
  1905. 97 Bydgoszcz 76 2006-02-15 09:45:25
  1906. 98 Cabuyao 75 2006-02-15 09:45:25
  1907. 99 Callao 74 2006-02-15 09:45:25
  1908. 100 Cam Ranh 105 2006-02-15 09:45:25
  1909. 101 Cape Coral 103 2006-02-15 09:45:25
  1910. 102 Caracas 104 2006-02-15 09:45:25
  1911. 103 Carmen 60 2006-02-15 09:45:25
  1912. 104 Cavite 75 2006-02-15 09:45:25
  1913. 105 Cayenne 35 2006-02-15 09:45:25
  1914. 106 Celaya 60 2006-02-15 09:45:25
  1915. 107 Chandrapur 44 2006-02-15 09:45:25
  1916. 108 Changhwa 92 2006-02-15 09:45:25
  1917. 109 Changzhou 23 2006-02-15 09:45:25
  1918. 110 Chapra 44 2006-02-15 09:45:25
  1919. 111 Charlotte Amalie 106 2006-02-15 09:45:25
  1920. 112 Chatsworth 85 2006-02-15 09:45:25
  1921. 113 Cheju 86 2006-02-15 09:45:25
  1922. 114 Chiayi 92 2006-02-15 09:45:25
  1923. 115 Chisinau 61 2006-02-15 09:45:25
  1924. 116 Chungho 92 2006-02-15 09:45:25
  1925. 117 Cianjur 45 2006-02-15 09:45:25
  1926. 118 Ciomas 45 2006-02-15 09:45:25
  1927. 119 Ciparay 45 2006-02-15 09:45:25
  1928. 120 Citrus Heights 103 2006-02-15 09:45:25
  1929. 121 Citt del Vaticano 41 2006-02-15 09:45:25
  1930. 122 Ciudad del Este 73 2006-02-15 09:45:25
  1931. 123 Clarksville 103 2006-02-15 09:45:25
  1932. 124 Coacalco de Berriozbal 60 2006-02-15 09:45:25
  1933. 125 Coatzacoalcos 60 2006-02-15 09:45:25
  1934. 126 Compton 103 2006-02-15 09:45:25
  1935. 127 Coquimbo 22 2006-02-15 09:45:25
  1936. 128 Crdoba 6 2006-02-15 09:45:25
  1937. 129 Cuauhtmoc 60 2006-02-15 09:45:25
  1938. 130 Cuautla 60 2006-02-15 09:45:25
  1939. 131 Cuernavaca 60 2006-02-15 09:45:25
  1940. 132 Cuman 104 2006-02-15 09:45:25
  1941. 133 Czestochowa 76 2006-02-15 09:45:25
  1942. 134 Dadu 72 2006-02-15 09:45:25
  1943. 135 Dallas 103 2006-02-15 09:45:25
  1944. 136 Datong 23 2006-02-15 09:45:25
  1945. 137 Daugavpils 54 2006-02-15 09:45:25
  1946. 138 Davao 75 2006-02-15 09:45:25
  1947. 139 Daxian 23 2006-02-15 09:45:25
  1948. 140 Dayton 103 2006-02-15 09:45:25
  1949. 141 Deba Habe 69 2006-02-15 09:45:25
  1950. 142 Denizli 97 2006-02-15 09:45:25
  1951. 143 Dhaka 12 2006-02-15 09:45:25
  1952. 144 Dhule (Dhulia) 44 2006-02-15 09:45:25
  1953. 145 Dongying 23 2006-02-15 09:45:25
  1954. 146 Donostia-San Sebastin 87 2006-02-15 09:45:25
  1955. 147 Dos Quebradas 24 2006-02-15 09:45:25
  1956. 148 Duisburg 38 2006-02-15 09:45:25
  1957. 149 Dundee 102 2006-02-15 09:45:25
  1958. 150 Dzerzinsk 80 2006-02-15 09:45:25
  1959. 151 Ede 67 2006-02-15 09:45:25
  1960. 152 Effon-Alaiye 69 2006-02-15 09:45:25
  1961. 153 El Alto 14 2006-02-15 09:45:25
  1962. 154 El Fuerte 60 2006-02-15 09:45:25
  1963. 155 El Monte 103 2006-02-15 09:45:25
  1964. 156 Elista 80 2006-02-15 09:45:25
  1965. 157 Emeishan 23 2006-02-15 09:45:25
  1966. 158 Emmen 67 2006-02-15 09:45:25
  1967. 159 Enshi 23 2006-02-15 09:45:25
  1968. 160 Erlangen 38 2006-02-15 09:45:25
  1969. 161 Escobar 6 2006-02-15 09:45:25
  1970. 162 Esfahan 46 2006-02-15 09:45:25
  1971. 163 Eskisehir 97 2006-02-15 09:45:25
  1972. 164 Etawah 44 2006-02-15 09:45:25
  1973. 165 Ezeiza 6 2006-02-15 09:45:25
  1974. 166 Ezhou 23 2006-02-15 09:45:25
  1975. 167 Faaa 36 2006-02-15 09:45:25
  1976. 168 Fengshan 92 2006-02-15 09:45:25
  1977. 169 Firozabad 44 2006-02-15 09:45:25
  1978. 170 Florencia 24 2006-02-15 09:45:25
  1979. 171 Fontana 103 2006-02-15 09:45:25
  1980. 172 Fukuyama 50 2006-02-15 09:45:25
  1981. 173 Funafuti 99 2006-02-15 09:45:25
  1982. 174 Fuyu 23 2006-02-15 09:45:25
  1983. 175 Fuzhou 23 2006-02-15 09:45:25
  1984. 176 Gandhinagar 44 2006-02-15 09:45:25
  1985. 177 Garden Grove 103 2006-02-15 09:45:25
  1986. 178 Garland 103 2006-02-15 09:45:25
  1987. 179 Gatineau 20 2006-02-15 09:45:25
  1988. 180 Gaziantep 97 2006-02-15 09:45:25
  1989. 181 Gijn 87 2006-02-15 09:45:25
  1990. 182 Gingoog 75 2006-02-15 09:45:25
  1991. 183 Goinia 15 2006-02-15 09:45:25
  1992. 184 Gorontalo 45 2006-02-15 09:45:25
  1993. 185 Grand Prairie 103 2006-02-15 09:45:25
  1994. 186 Graz 9 2006-02-15 09:45:25
  1995. 187 Greensboro 103 2006-02-15 09:45:25
  1996. 188 Guadalajara 60 2006-02-15 09:45:25
  1997. 189 Guaruj 15 2006-02-15 09:45:25
  1998. 190 guas Lindas de Gois 15 2006-02-15 09:45:25
  1999. 191 Gulbarga 44 2006-02-15 09:45:25
  2000. 192 Hagonoy 75 2006-02-15 09:45:25
  2001. 193 Haining 23 2006-02-15 09:45:25
  2002. 194 Haiphong 105 2006-02-15 09:45:25
  2003. 195 Haldia 44 2006-02-15 09:45:25
  2004. 196 Halifax 20 2006-02-15 09:45:25
  2005. 197 Halisahar 44 2006-02-15 09:45:25
  2006. 198 Halle/Saale 38 2006-02-15 09:45:25
  2007. 199 Hami 23 2006-02-15 09:45:25
  2008. 200 Hamilton 68 2006-02-15 09:45:25
  2009. 201 Hanoi 105 2006-02-15 09:45:25
  2010. 202 Hidalgo 60 2006-02-15 09:45:25
  2011. 203 Higashiosaka 50 2006-02-15 09:45:25
  2012. 204 Hino 50 2006-02-15 09:45:25
  2013. 205 Hiroshima 50 2006-02-15 09:45:25
  2014. 206 Hodeida 107 2006-02-15 09:45:25
  2015. 207 Hohhot 23 2006-02-15 09:45:25
  2016. 208 Hoshiarpur 44 2006-02-15 09:45:25
  2017. 209 Hsichuh 92 2006-02-15 09:45:25
  2018. 210 Huaian 23 2006-02-15 09:45:25
  2019. 211 Hubli-Dharwad 44 2006-02-15 09:45:25
  2020. 212 Huejutla de Reyes 60 2006-02-15 09:45:25
  2021. 213 Huixquilucan 60 2006-02-15 09:45:25
  2022. 214 Hunuco 74 2006-02-15 09:45:25
  2023. 215 Ibirit 15 2006-02-15 09:45:25
  2024. 216 Idfu 29 2006-02-15 09:45:25
  2025. 217 Ife 69 2006-02-15 09:45:25
  2026. 218 Ikerre 69 2006-02-15 09:45:25
  2027. 219 Iligan 75 2006-02-15 09:45:25
  2028. 220 Ilorin 69 2006-02-15 09:45:25
  2029. 221 Imus 75 2006-02-15 09:45:25
  2030. 222 Inegl 97 2006-02-15 09:45:25
  2031. 223 Ipoh 59 2006-02-15 09:45:25
  2032. 224 Isesaki 50 2006-02-15 09:45:25
  2033. 225 Ivanovo 80 2006-02-15 09:45:25
  2034. 226 Iwaki 50 2006-02-15 09:45:25
  2035. 227 Iwakuni 50 2006-02-15 09:45:25
  2036. 228 Iwatsuki 50 2006-02-15 09:45:25
  2037. 229 Izumisano 50 2006-02-15 09:45:25
  2038. 230 Jaffna 88 2006-02-15 09:45:25
  2039. 231 Jaipur 44 2006-02-15 09:45:25
  2040. 232 Jakarta 45 2006-02-15 09:45:25
  2041. 233 Jalib al-Shuyukh 53 2006-02-15 09:45:25
  2042. 234 Jamalpur 12 2006-02-15 09:45:25
  2043. 235 Jaroslavl 80 2006-02-15 09:45:25
  2044. 236 Jastrzebie-Zdrj 76 2006-02-15 09:45:25
  2045. 237 Jedda 82 2006-02-15 09:45:25
  2046. 238 Jelets 80 2006-02-15 09:45:25
  2047. 239 Jhansi 44 2006-02-15 09:45:25
  2048. 240 Jinchang 23 2006-02-15 09:45:25
  2049. 241 Jining 23 2006-02-15 09:45:25
  2050. 242 Jinzhou 23 2006-02-15 09:45:25
  2051. 243 Jodhpur 44 2006-02-15 09:45:25
  2052. 244 Johannesburg 85 2006-02-15 09:45:25
  2053. 245 Joliet 103 2006-02-15 09:45:25
  2054. 246 Jos Azueta 60 2006-02-15 09:45:25
  2055. 247 Juazeiro do Norte 15 2006-02-15 09:45:25
  2056. 248 Juiz de Fora 15 2006-02-15 09:45:25
  2057. 249 Junan 23 2006-02-15 09:45:25
  2058. 250 Jurez 60 2006-02-15 09:45:25
  2059. 251 Kabul 1 2006-02-15 09:45:25
  2060. 252 Kaduna 69 2006-02-15 09:45:25
  2061. 253 Kakamigahara 50 2006-02-15 09:45:25
  2062. 254 Kaliningrad 80 2006-02-15 09:45:25
  2063. 255 Kalisz 76 2006-02-15 09:45:25
  2064. 256 Kamakura 50 2006-02-15 09:45:25
  2065. 257 Kamarhati 44 2006-02-15 09:45:25
  2066. 258 Kamjanets-Podilskyi 100 2006-02-15 09:45:25
  2067. 259 Kamyin 80 2006-02-15 09:45:25
  2068. 260 Kanazawa 50 2006-02-15 09:45:25
  2069. 261 Kanchrapara 44 2006-02-15 09:45:25
  2070. 262 Kansas City 103 2006-02-15 09:45:25
  2071. 263 Karnal 44 2006-02-15 09:45:25
  2072. 264 Katihar 44 2006-02-15 09:45:25
  2073. 265 Kermanshah 46 2006-02-15 09:45:25
  2074. 266 Kilis 97 2006-02-15 09:45:25
  2075. 267 Kimberley 85 2006-02-15 09:45:25
  2076. 268 Kimchon 86 2006-02-15 09:45:25
  2077. 269 Kingstown 81 2006-02-15 09:45:25
  2078. 270 Kirovo-Tepetsk 80 2006-02-15 09:45:25
  2079. 271 Kisumu 52 2006-02-15 09:45:25
  2080. 272 Kitwe 109 2006-02-15 09:45:25
  2081. 273 Klerksdorp 85 2006-02-15 09:45:25
  2082. 274 Kolpino 80 2006-02-15 09:45:25
  2083. 275 Konotop 100 2006-02-15 09:45:25
  2084. 276 Koriyama 50 2006-02-15 09:45:25
  2085. 277 Korla 23 2006-02-15 09:45:25
  2086. 278 Korolev 80 2006-02-15 09:45:25
  2087. 279 Kowloon and New Kowloon 42 2006-02-15 09:45:25
  2088. 280 Kragujevac 108 2006-02-15 09:45:25
  2089. 281 Ktahya 97 2006-02-15 09:45:25
  2090. 282 Kuching 59 2006-02-15 09:45:25
  2091. 283 Kumbakonam 44 2006-02-15 09:45:25
  2092. 284 Kurashiki 50 2006-02-15 09:45:25
  2093. 285 Kurgan 80 2006-02-15 09:45:25
  2094. 286 Kursk 80 2006-02-15 09:45:25
  2095. 287 Kuwana 50 2006-02-15 09:45:25
  2096. 288 La Paz 60 2006-02-15 09:45:25
  2097. 289 La Plata 6 2006-02-15 09:45:25
  2098. 290 La Romana 27 2006-02-15 09:45:25
  2099. 291 Laiwu 23 2006-02-15 09:45:25
  2100. 292 Lancaster 103 2006-02-15 09:45:25
  2101. 293 Laohekou 23 2006-02-15 09:45:25
  2102. 294 Lapu-Lapu 75 2006-02-15 09:45:25
  2103. 295 Laredo 103 2006-02-15 09:45:25
  2104. 296 Lausanne 91 2006-02-15 09:45:25
  2105. 297 Le Mans 34 2006-02-15 09:45:25
  2106. 298 Lengshuijiang 23 2006-02-15 09:45:25
  2107. 299 Leshan 23 2006-02-15 09:45:25
  2108. 300 Lethbridge 20 2006-02-15 09:45:25
  2109. 301 Lhokseumawe 45 2006-02-15 09:45:25
  2110. 302 Liaocheng 23 2006-02-15 09:45:25
  2111. 303 Liepaja 54 2006-02-15 09:45:25
  2112. 304 Lilongwe 58 2006-02-15 09:45:25
  2113. 305 Lima 74 2006-02-15 09:45:25
  2114. 306 Lincoln 103 2006-02-15 09:45:25
  2115. 307 Linz 9 2006-02-15 09:45:25
  2116. 308 Lipetsk 80 2006-02-15 09:45:25
  2117. 309 Livorno 49 2006-02-15 09:45:25
  2118. 310 Ljubertsy 80 2006-02-15 09:45:25
  2119. 311 Loja 28 2006-02-15 09:45:25
  2120. 312 London 102 2006-02-15 09:45:25
  2121. 313 London 20 2006-02-15 09:45:25
  2122. 314 Lublin 76 2006-02-15 09:45:25
  2123. 315 Lubumbashi 25 2006-02-15 09:45:25
  2124. 316 Lungtan 92 2006-02-15 09:45:25
  2125. 317 Luzinia 15 2006-02-15 09:45:25
  2126. 318 Madiun 45 2006-02-15 09:45:25
  2127. 319 Mahajanga 57 2006-02-15 09:45:25
  2128. 320 Maikop 80 2006-02-15 09:45:25
  2129. 321 Malm 90 2006-02-15 09:45:25
  2130. 322 Manchester 103 2006-02-15 09:45:25
  2131. 323 Mandaluyong 75 2006-02-15 09:45:25
  2132. 324 Mandi Bahauddin 72 2006-02-15 09:45:25
  2133. 325 Mannheim 38 2006-02-15 09:45:25
  2134. 326 Maracabo 104 2006-02-15 09:45:25
  2135. 327 Mardan 72 2006-02-15 09:45:25
  2136. 328 Maring 15 2006-02-15 09:45:25
  2137. 329 Masqat 71 2006-02-15 09:45:25
  2138. 330 Matamoros 60 2006-02-15 09:45:25
  2139. 331 Matsue 50 2006-02-15 09:45:25
  2140. 332 Meixian 23 2006-02-15 09:45:25
  2141. 333 Memphis 103 2006-02-15 09:45:25
  2142. 334 Merlo 6 2006-02-15 09:45:25
  2143. 335 Mexicali 60 2006-02-15 09:45:25
  2144. 336 Miraj 44 2006-02-15 09:45:25
  2145. 337 Mit Ghamr 29 2006-02-15 09:45:25
  2146. 338 Miyakonojo 50 2006-02-15 09:45:25
  2147. 339 Mogiljov 13 2006-02-15 09:45:25
  2148. 340 Molodetno 13 2006-02-15 09:45:25
  2149. 341 Monclova 60 2006-02-15 09:45:25
  2150. 342 Monywa 64 2006-02-15 09:45:25
  2151. 343 Moscow 80 2006-02-15 09:45:25
  2152. 344 Mosul 47 2006-02-15 09:45:25
  2153. 345 Mukateve 100 2006-02-15 09:45:25
  2154. 346 Munger (Monghyr) 44 2006-02-15 09:45:25
  2155. 347 Mwanza 93 2006-02-15 09:45:25
  2156. 348 Mwene-Ditu 25 2006-02-15 09:45:25
  2157. 349 Myingyan 64 2006-02-15 09:45:25
  2158. 350 Mysore 44 2006-02-15 09:45:25
  2159. 351 Naala-Porto 63 2006-02-15 09:45:25
  2160. 352 Nabereznyje Telny 80 2006-02-15 09:45:25
  2161. 353 Nador 62 2006-02-15 09:45:25
  2162. 354 Nagaon 44 2006-02-15 09:45:25
  2163. 355 Nagareyama 50 2006-02-15 09:45:25
  2164. 356 Najafabad 46 2006-02-15 09:45:25
  2165. 357 Naju 86 2006-02-15 09:45:25
  2166. 358 Nakhon Sawan 94 2006-02-15 09:45:25
  2167. 359 Nam Dinh 105 2006-02-15 09:45:25
  2168. 360 Namibe 4 2006-02-15 09:45:25
  2169. 361 Nantou 92 2006-02-15 09:45:25
  2170. 362 Nanyang 23 2006-02-15 09:45:25
  2171. 363 NDjamna 21 2006-02-15 09:45:25
  2172. 364 Newcastle 85 2006-02-15 09:45:25
  2173. 365 Nezahualcyotl 60 2006-02-15 09:45:25
  2174. 366 Nha Trang 105 2006-02-15 09:45:25
  2175. 367 Niznekamsk 80 2006-02-15 09:45:25
  2176. 368 Novi Sad 108 2006-02-15 09:45:25
  2177. 369 Novoterkassk 80 2006-02-15 09:45:25
  2178. 370 Nukualofa 95 2006-02-15 09:45:25
  2179. 371 Nuuk 40 2006-02-15 09:45:25
  2180. 372 Nyeri 52 2006-02-15 09:45:25
  2181. 373 Ocumare del Tuy 104 2006-02-15 09:45:25
  2182. 374 Ogbomosho 69 2006-02-15 09:45:25
  2183. 375 Okara 72 2006-02-15 09:45:25
  2184. 376 Okayama 50 2006-02-15 09:45:25
  2185. 377 Okinawa 50 2006-02-15 09:45:25
  2186. 378 Olomouc 26 2006-02-15 09:45:25
  2187. 379 Omdurman 89 2006-02-15 09:45:25
  2188. 380 Omiya 50 2006-02-15 09:45:25
  2189. 381 Ondo 69 2006-02-15 09:45:25
  2190. 382 Onomichi 50 2006-02-15 09:45:25
  2191. 383 Oshawa 20 2006-02-15 09:45:25
  2192. 384 Osmaniye 97 2006-02-15 09:45:25
  2193. 385 ostka 100 2006-02-15 09:45:25
  2194. 386 Otsu 50 2006-02-15 09:45:25
  2195. 387 Oulu 33 2006-02-15 09:45:25
  2196. 388 Ourense (Orense) 87 2006-02-15 09:45:25
  2197. 389 Owo 69 2006-02-15 09:45:25
  2198. 390 Oyo 69 2006-02-15 09:45:25
  2199. 391 Ozamis 75 2006-02-15 09:45:25
  2200. 392 Paarl 85 2006-02-15 09:45:25
  2201. 393 Pachuca de Soto 60 2006-02-15 09:45:25
  2202. 394 Pak Kret 94 2006-02-15 09:45:25
  2203. 395 Palghat (Palakkad) 44 2006-02-15 09:45:25
  2204. 396 Pangkal Pinang 45 2006-02-15 09:45:25
  2205. 397 Papeete 36 2006-02-15 09:45:25
  2206. 398 Parbhani 44 2006-02-15 09:45:25
  2207. 399 Pathankot 44 2006-02-15 09:45:25
  2208. 400 Patiala 44 2006-02-15 09:45:25
  2209. 401 Patras 39 2006-02-15 09:45:25
  2210. 402 Pavlodar 51 2006-02-15 09:45:25
  2211. 403 Pemalang 45 2006-02-15 09:45:25
  2212. 404 Peoria 103 2006-02-15 09:45:25
  2213. 405 Pereira 24 2006-02-15 09:45:25
  2214. 406 Phnom Penh 18 2006-02-15 09:45:25
  2215. 407 Pingxiang 23 2006-02-15 09:45:25
  2216. 408 Pjatigorsk 80 2006-02-15 09:45:25
  2217. 409 Plock 76 2006-02-15 09:45:25
  2218. 410 Po 15 2006-02-15 09:45:25
  2219. 411 Ponce 77 2006-02-15 09:45:25
  2220. 412 Pontianak 45 2006-02-15 09:45:25
  2221. 413 Poos de Caldas 15 2006-02-15 09:45:25
  2222. 414 Portoviejo 28 2006-02-15 09:45:25
  2223. 415 Probolinggo 45 2006-02-15 09:45:25
  2224. 416 Pudukkottai 44 2006-02-15 09:45:25
  2225. 417 Pune 44 2006-02-15 09:45:25
  2226. 418 Purnea (Purnia) 44 2006-02-15 09:45:25
  2227. 419 Purwakarta 45 2006-02-15 09:45:25
  2228. 420 Pyongyang 70 2006-02-15 09:45:25
  2229. 421 Qalyub 29 2006-02-15 09:45:25
  2230. 422 Qinhuangdao 23 2006-02-15 09:45:25
  2231. 423 Qomsheh 46 2006-02-15 09:45:25
  2232. 424 Quilmes 6 2006-02-15 09:45:25
  2233. 425 Rae Bareli 44 2006-02-15 09:45:25
  2234. 426 Rajkot 44 2006-02-15 09:45:25
  2235. 427 Rampur 44 2006-02-15 09:45:25
  2236. 428 Rancagua 22 2006-02-15 09:45:25
  2237. 429 Ranchi 44 2006-02-15 09:45:25
  2238. 430 Richmond Hill 20 2006-02-15 09:45:25
  2239. 431 Rio Claro 15 2006-02-15 09:45:25
  2240. 432 Rizhao 23 2006-02-15 09:45:25
  2241. 433 Roanoke 103 2006-02-15 09:45:25
  2242. 434 Robamba 28 2006-02-15 09:45:25
  2243. 435 Rockford 103 2006-02-15 09:45:25
  2244. 436 Ruse 17 2006-02-15 09:45:25
  2245. 437 Rustenburg 85 2006-02-15 09:45:25
  2246. 438 s-Hertogenbosch 67 2006-02-15 09:45:25
  2247. 439 Saarbrcken 38 2006-02-15 09:45:25
  2248. 440 Sagamihara 50 2006-02-15 09:45:25
  2249. 441 Saint Louis 103 2006-02-15 09:45:25
  2250. 442 Saint-Denis 79 2006-02-15 09:45:25
  2251. 443 Sal 62 2006-02-15 09:45:25
  2252. 444 Salala 71 2006-02-15 09:45:25
  2253. 445 Salamanca 60 2006-02-15 09:45:25
  2254. 446 Salinas 103 2006-02-15 09:45:25
  2255. 447 Salzburg 9 2006-02-15 09:45:25
  2256. 448 Sambhal 44 2006-02-15 09:45:25
  2257. 449 San Bernardino 103 2006-02-15 09:45:25
  2258. 450 San Felipe de Puerto Plata 27 2006-02-15 09:45:25
  2259. 451 San Felipe del Progreso 60 2006-02-15 09:45:25
  2260. 452 San Juan Bautista Tuxtepec 60 2006-02-15 09:45:25
  2261. 453 San Lorenzo 73 2006-02-15 09:45:25
  2262. 454 San Miguel de Tucumn 6 2006-02-15 09:45:25
  2263. 455 Sanaa 107 2006-02-15 09:45:25
  2264. 456 Santa Brbara dOeste 15 2006-02-15 09:45:25
  2265. 457 Santa F 6 2006-02-15 09:45:25
  2266. 458 Santa Rosa 75 2006-02-15 09:45:25
  2267. 459 Santiago de Compostela 87 2006-02-15 09:45:25
  2268. 460 Santiago de los Caballeros 27 2006-02-15 09:45:25
  2269. 461 Santo Andr 15 2006-02-15 09:45:25
  2270. 462 Sanya 23 2006-02-15 09:45:25
  2271. 463 Sasebo 50 2006-02-15 09:45:25
  2272. 464 Satna 44 2006-02-15 09:45:25
  2273. 465 Sawhaj 29 2006-02-15 09:45:25
  2274. 466 Serpuhov 80 2006-02-15 09:45:25
  2275. 467 Shahr-e Kord 46 2006-02-15 09:45:25
  2276. 468 Shanwei 23 2006-02-15 09:45:25
  2277. 469 Shaoguan 23 2006-02-15 09:45:25
  2278. 470 Sharja 101 2006-02-15 09:45:25
  2279. 471 Shenzhen 23 2006-02-15 09:45:25
  2280. 472 Shikarpur 72 2006-02-15 09:45:25
  2281. 473 Shimoga 44 2006-02-15 09:45:25
  2282. 474 Shimonoseki 50 2006-02-15 09:45:25
  2283. 475 Shivapuri 44 2006-02-15 09:45:25
  2284. 476 Shubra al-Khayma 29 2006-02-15 09:45:25
  2285. 477 Siegen 38 2006-02-15 09:45:25
  2286. 478 Siliguri (Shiliguri) 44 2006-02-15 09:45:25
  2287. 479 Simferopol 100 2006-02-15 09:45:25
  2288. 480 Sincelejo 24 2006-02-15 09:45:25
  2289. 481 Sirjan 46 2006-02-15 09:45:25
  2290. 482 Sivas 97 2006-02-15 09:45:25
  2291. 483 Skikda 2 2006-02-15 09:45:25
  2292. 484 Smolensk 80 2006-02-15 09:45:25
  2293. 485 So Bernardo do Campo 15 2006-02-15 09:45:25
  2294. 486 So Leopoldo 15 2006-02-15 09:45:25
  2295. 487 Sogamoso 24 2006-02-15 09:45:25
  2296. 488 Sokoto 69 2006-02-15 09:45:25
  2297. 489 Songkhla 94 2006-02-15 09:45:25
  2298. 490 Sorocaba 15 2006-02-15 09:45:25
  2299. 491 Soshanguve 85 2006-02-15 09:45:25
  2300. 492 Sousse 96 2006-02-15 09:45:25
  2301. 493 South Hill 5 2006-02-15 09:45:25
  2302. 494 Southampton 102 2006-02-15 09:45:25
  2303. 495 Southend-on-Sea 102 2006-02-15 09:45:25
  2304. 496 Southport 102 2006-02-15 09:45:25
  2305. 497 Springs 85 2006-02-15 09:45:25
  2306. 498 Stara Zagora 17 2006-02-15 09:45:25
  2307. 499 Sterling Heights 103 2006-02-15 09:45:25
  2308. 500 Stockport 102 2006-02-15 09:45:25
  2309. 501 Sucre 14 2006-02-15 09:45:25
  2310. 502 Suihua 23 2006-02-15 09:45:25
  2311. 503 Sullana 74 2006-02-15 09:45:25
  2312. 504 Sultanbeyli 97 2006-02-15 09:45:25
  2313. 505 Sumqayit 10 2006-02-15 09:45:25
  2314. 506 Sumy 100 2006-02-15 09:45:25
  2315. 507 Sungai Petani 59 2006-02-15 09:45:25
  2316. 508 Sunnyvale 103 2006-02-15 09:45:25
  2317. 509 Surakarta 45 2006-02-15 09:45:25
  2318. 510 Syktyvkar 80 2006-02-15 09:45:25
  2319. 511 Syrakusa 49 2006-02-15 09:45:25
  2320. 512 Szkesfehrvr 43 2006-02-15 09:45:25
  2321. 513 Tabora 93 2006-02-15 09:45:25
  2322. 514 Tabriz 46 2006-02-15 09:45:25
  2323. 515 Tabuk 82 2006-02-15 09:45:25
  2324. 516 Tafuna 3 2006-02-15 09:45:25
  2325. 517 Taguig 75 2006-02-15 09:45:25
  2326. 518 Taizz 107 2006-02-15 09:45:25
  2327. 519 Talavera 75 2006-02-15 09:45:25
  2328. 520 Tallahassee 103 2006-02-15 09:45:25
  2329. 521 Tama 50 2006-02-15 09:45:25
  2330. 522 Tambaram 44 2006-02-15 09:45:25
  2331. 523 Tanauan 75 2006-02-15 09:45:25
  2332. 524 Tandil 6 2006-02-15 09:45:25
  2333. 525 Tangail 12 2006-02-15 09:45:25
  2334. 526 Tanshui 92 2006-02-15 09:45:25
  2335. 527 Tanza 75 2006-02-15 09:45:25
  2336. 528 Tarlac 75 2006-02-15 09:45:25
  2337. 529 Tarsus 97 2006-02-15 09:45:25
  2338. 530 Tartu 30 2006-02-15 09:45:25
  2339. 531 Teboksary 80 2006-02-15 09:45:25
  2340. 532 Tegal 45 2006-02-15 09:45:25
  2341. 533 Tel Aviv-Jaffa 48 2006-02-15 09:45:25
  2342. 534 Tete 63 2006-02-15 09:45:25
  2343. 535 Tianjin 23 2006-02-15 09:45:25
  2344. 536 Tiefa 23 2006-02-15 09:45:25
  2345. 537 Tieli 23 2006-02-15 09:45:25
  2346. 538 Tokat 97 2006-02-15 09:45:25
  2347. 539 Tonghae 86 2006-02-15 09:45:25
  2348. 540 Tongliao 23 2006-02-15 09:45:25
  2349. 541 Torren 60 2006-02-15 09:45:25
  2350. 542 Touliu 92 2006-02-15 09:45:25
  2351. 543 Toulon 34 2006-02-15 09:45:25
  2352. 544 Toulouse 34 2006-02-15 09:45:25
  2353. 545 Trshavn 32 2006-02-15 09:45:25
  2354. 546 Tsaotun 92 2006-02-15 09:45:25
  2355. 547 Tsuyama 50 2006-02-15 09:45:25
  2356. 548 Tuguegarao 75 2006-02-15 09:45:25
  2357. 549 Tychy 76 2006-02-15 09:45:25
  2358. 550 Udaipur 44 2006-02-15 09:45:25
  2359. 551 Udine 49 2006-02-15 09:45:25
  2360. 552 Ueda 50 2006-02-15 09:45:25
  2361. 553 Uijongbu 86 2006-02-15 09:45:25
  2362. 554 Uluberia 44 2006-02-15 09:45:25
  2363. 555 Urawa 50 2006-02-15 09:45:25
  2364. 556 Uruapan 60 2006-02-15 09:45:25
  2365. 557 Usak 97 2006-02-15 09:45:25
  2366. 558 Usolje-Sibirskoje 80 2006-02-15 09:45:25
  2367. 559 Uttarpara-Kotrung 44 2006-02-15 09:45:25
  2368. 560 Vaduz 55 2006-02-15 09:45:25
  2369. 561 Valencia 104 2006-02-15 09:45:25
  2370. 562 Valle de la Pascua 104 2006-02-15 09:45:25
  2371. 563 Valle de Santiago 60 2006-02-15 09:45:25
  2372. 564 Valparai 44 2006-02-15 09:45:25
  2373. 565 Vancouver 20 2006-02-15 09:45:25
  2374. 566 Varanasi (Benares) 44 2006-02-15 09:45:25
  2375. 567 Vicente Lpez 6 2006-02-15 09:45:25
  2376. 568 Vijayawada 44 2006-02-15 09:45:25
  2377. 569 Vila Velha 15 2006-02-15 09:45:25
  2378. 570 Vilnius 56 2006-02-15 09:45:25
  2379. 571 Vinh 105 2006-02-15 09:45:25
  2380. 572 Vitria de Santo Anto 15 2006-02-15 09:45:25
  2381. 573 Warren 103 2006-02-15 09:45:25
  2382. 574 Weifang 23 2006-02-15 09:45:25
  2383. 575 Witten 38 2006-02-15 09:45:25
  2384. 576 Woodridge 8 2006-02-15 09:45:25
  2385. 577 Wroclaw 76 2006-02-15 09:45:25
  2386. 578 Xiangfan 23 2006-02-15 09:45:25
  2387. 579 Xiangtan 23 2006-02-15 09:45:25
  2388. 580 Xintai 23 2006-02-15 09:45:25
  2389. 581 Xinxiang 23 2006-02-15 09:45:25
  2390. 582 Yamuna Nagar 44 2006-02-15 09:45:25
  2391. 583 Yangor 65 2006-02-15 09:45:25
  2392. 584 Yantai 23 2006-02-15 09:45:25
  2393. 585 Yaound 19 2006-02-15 09:45:25
  2394. 586 Yerevan 7 2006-02-15 09:45:25
  2395. 587 Yinchuan 23 2006-02-15 09:45:25
  2396. 588 Yingkou 23 2006-02-15 09:45:25
  2397. 589 York 102 2006-02-15 09:45:25
  2398. 590 Yuncheng 23 2006-02-15 09:45:25
  2399. 591 Yuzhou 23 2006-02-15 09:45:25
  2400. 592 Zalantun 23 2006-02-15 09:45:25
  2401. 593 Zanzibar 93 2006-02-15 09:45:25
  2402. 594 Zaoyang 23 2006-02-15 09:45:25
  2403. 595 Zapopan 60 2006-02-15 09:45:25
  2404. 596 Zaria 69 2006-02-15 09:45:25
  2405. 597 Zeleznogorsk 80 2006-02-15 09:45:25
  2406. 598 Zhezqazghan 51 2006-02-15 09:45:25
  2407. 599 Zhoushan 23 2006-02-15 09:45:25
  2408. 600 Ziguinchor 83 2006-02-15 09:45:25
  2409. \.
  2410.  
  2411.  
  2412. --
  2413. -- Name: city_city_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  2414. --
  2415.  
  2416. SELECT pg_catalog.setval('"city_city_id_seq"', 600, true);
  2417.  
  2418.  
  2419. --
  2420. -- Data for Name: country; Type: TABLE DATA; Schema: public; Owner: postgres
  2421. --
  2422.  
  2423. COPY "country" ("country_id", "country", "last_update") FROM stdin;
  2424. 1 Afghanistan 2006-02-15 09:44:00
  2425. 2 Algeria 2006-02-15 09:44:00
  2426. 3 American Samoa 2006-02-15 09:44:00
  2427. 4 Angola 2006-02-15 09:44:00
  2428. 5 Anguilla 2006-02-15 09:44:00
  2429. 6 Argentina 2006-02-15 09:44:00
  2430. 7 Armenia 2006-02-15 09:44:00
  2431. 8 Australia 2006-02-15 09:44:00
  2432. 9 Austria 2006-02-15 09:44:00
  2433. 10 Azerbaijan 2006-02-15 09:44:00
  2434. 11 Bahrain 2006-02-15 09:44:00
  2435. 12 Bangladesh 2006-02-15 09:44:00
  2436. 13 Belarus 2006-02-15 09:44:00
  2437. 14 Bolivia 2006-02-15 09:44:00
  2438. 15 Brazil 2006-02-15 09:44:00
  2439. 16 Brunei 2006-02-15 09:44:00
  2440. 17 Bulgaria 2006-02-15 09:44:00
  2441. 18 Cambodia 2006-02-15 09:44:00
  2442. 19 Cameroon 2006-02-15 09:44:00
  2443. 20 Canada 2006-02-15 09:44:00
  2444. 21 Chad 2006-02-15 09:44:00
  2445. 22 Chile 2006-02-15 09:44:00
  2446. 23 China 2006-02-15 09:44:00
  2447. 24 Colombia 2006-02-15 09:44:00
  2448. 25 Congo, The Democratic Republic of the 2006-02-15 09:44:00
  2449. 26 Czech Republic 2006-02-15 09:44:00
  2450. 27 Dominican Republic 2006-02-15 09:44:00
  2451. 28 Ecuador 2006-02-15 09:44:00
  2452. 29 Egypt 2006-02-15 09:44:00
  2453. 30 Estonia 2006-02-15 09:44:00
  2454. 31 Ethiopia 2006-02-15 09:44:00
  2455. 32 Faroe Islands 2006-02-15 09:44:00
  2456. 33 Finland 2006-02-15 09:44:00
  2457. 34 France 2006-02-15 09:44:00
  2458. 35 French Guiana 2006-02-15 09:44:00
  2459. 36 French Polynesia 2006-02-15 09:44:00
  2460. 37 Gambia 2006-02-15 09:44:00
  2461. 38 Germany 2006-02-15 09:44:00
  2462. 39 Greece 2006-02-15 09:44:00
  2463. 40 Greenland 2006-02-15 09:44:00
  2464. 41 Holy See (Vatican City State) 2006-02-15 09:44:00
  2465. 42 Hong Kong 2006-02-15 09:44:00
  2466. 43 Hungary 2006-02-15 09:44:00
  2467. 44 India 2006-02-15 09:44:00
  2468. 45 Indonesia 2006-02-15 09:44:00
  2469. 46 Iran 2006-02-15 09:44:00
  2470. 47 Iraq 2006-02-15 09:44:00
  2471. 48 Israel 2006-02-15 09:44:00
  2472. 49 Italy 2006-02-15 09:44:00
  2473. 50 Japan 2006-02-15 09:44:00
  2474. 51 Kazakstan 2006-02-15 09:44:00
  2475. 52 Kenya 2006-02-15 09:44:00
  2476. 53 Kuwait 2006-02-15 09:44:00
  2477. 54 Latvia 2006-02-15 09:44:00
  2478. 55 Liechtenstein 2006-02-15 09:44:00
  2479. 56 Lithuania 2006-02-15 09:44:00
  2480. 57 Madagascar 2006-02-15 09:44:00
  2481. 58 Malawi 2006-02-15 09:44:00
  2482. 59 Malaysia 2006-02-15 09:44:00
  2483. 60 Mexico 2006-02-15 09:44:00
  2484. 61 Moldova 2006-02-15 09:44:00
  2485. 62 Morocco 2006-02-15 09:44:00
  2486. 63 Mozambique 2006-02-15 09:44:00
  2487. 64 Myanmar 2006-02-15 09:44:00
  2488. 65 Nauru 2006-02-15 09:44:00
  2489. 66 Nepal 2006-02-15 09:44:00
  2490. 67 Netherlands 2006-02-15 09:44:00
  2491. 68 New Zealand 2006-02-15 09:44:00
  2492. 69 Nigeria 2006-02-15 09:44:00
  2493. 70 North Korea 2006-02-15 09:44:00
  2494. 71 Oman 2006-02-15 09:44:00
  2495. 72 Pakistan 2006-02-15 09:44:00
  2496. 73 Paraguay 2006-02-15 09:44:00
  2497. 74 Peru 2006-02-15 09:44:00
  2498. 75 Philippines 2006-02-15 09:44:00
  2499. 76 Poland 2006-02-15 09:44:00
  2500. 77 Puerto Rico 2006-02-15 09:44:00
  2501. 78 Romania 2006-02-15 09:44:00
  2502. 79 Runion 2006-02-15 09:44:00
  2503. 80 Russian Federation 2006-02-15 09:44:00
  2504. 81 Saint Vincent and the Grenadines 2006-02-15 09:44:00
  2505. 82 Saudi Arabia 2006-02-15 09:44:00
  2506. 83 Senegal 2006-02-15 09:44:00
  2507. 84 Slovakia 2006-02-15 09:44:00
  2508. 85 South Africa 2006-02-15 09:44:00
  2509. 86 South Korea 2006-02-15 09:44:00
  2510. 87 Spain 2006-02-15 09:44:00
  2511. 88 Sri Lanka 2006-02-15 09:44:00
  2512. 89 Sudan 2006-02-15 09:44:00
  2513. 90 Sweden 2006-02-15 09:44:00
  2514. 91 Switzerland 2006-02-15 09:44:00
  2515. 92 Taiwan 2006-02-15 09:44:00
  2516. 93 Tanzania 2006-02-15 09:44:00
  2517. 94 Thailand 2006-02-15 09:44:00
  2518. 95 Tonga 2006-02-15 09:44:00
  2519. 96 Tunisia 2006-02-15 09:44:00
  2520. 97 Turkey 2006-02-15 09:44:00
  2521. 98 Turkmenistan 2006-02-15 09:44:00
  2522. 99 Tuvalu 2006-02-15 09:44:00
  2523. 100 Ukraine 2006-02-15 09:44:00
  2524. 101 United Arab Emirates 2006-02-15 09:44:00
  2525. 102 United Kingdom 2006-02-15 09:44:00
  2526. 103 United States 2006-02-15 09:44:00
  2527. 104 Venezuela 2006-02-15 09:44:00
  2528. 105 Vietnam 2006-02-15 09:44:00
  2529. 106 Virgin Islands, U.S. 2006-02-15 09:44:00
  2530. 107 Yemen 2006-02-15 09:44:00
  2531. 108 Yugoslavia 2006-02-15 09:44:00
  2532. 109 Zambia 2006-02-15 09:44:00
  2533. \.
  2534.  
  2535.  
  2536. --
  2537. -- Name: country_country_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  2538. --
  2539.  
  2540. SELECT pg_catalog.setval('"country_country_id_seq"', 109, true);
  2541.  
  2542.  
  2543. --
  2544. -- Data for Name: customer; Type: TABLE DATA; Schema: public; Owner: postgres
  2545. --
  2546.  
  2547. COPY "customer" ("customer_id", "store_id", "first_name", "last_name", "email", "address_id", "activebool", "create_date", "last_update", "active") FROM stdin;
  2548. 524 1 Jared Ely jared.ely@sakilacustomer.org 530 t 2006-02-14 2013-05-26 14:49:45.738 1
  2549. 1 1 Mary Smith mary.smith@sakilacustomer.org 5 t 2006-02-14 2013-05-26 14:49:45.738 1
  2550. 2 1 Patricia Johnson patricia.johnson@sakilacustomer.org 6 t 2006-02-14 2013-05-26 14:49:45.738 1
  2551. 3 1 Linda Williams linda.williams@sakilacustomer.org 7 t 2006-02-14 2013-05-26 14:49:45.738 1
  2552. 4 2 Barbara Jones barbara.jones@sakilacustomer.org 8 t 2006-02-14 2013-05-26 14:49:45.738 1
  2553. 5 1 Elizabeth Brown elizabeth.brown@sakilacustomer.org 9 t 2006-02-14 2013-05-26 14:49:45.738 1
  2554. 6 2 Jennifer Davis jennifer.davis@sakilacustomer.org 10 t 2006-02-14 2013-05-26 14:49:45.738 1
  2555. 7 1 Maria Miller maria.miller@sakilacustomer.org 11 t 2006-02-14 2013-05-26 14:49:45.738 1
  2556. 8 2 Susan Wilson susan.wilson@sakilacustomer.org 12 t 2006-02-14 2013-05-26 14:49:45.738 1
  2557. 9 2 Margaret Moore margaret.moore@sakilacustomer.org 13 t 2006-02-14 2013-05-26 14:49:45.738 1
  2558. 10 1 Dorothy Taylor dorothy.taylor@sakilacustomer.org 14 t 2006-02-14 2013-05-26 14:49:45.738 1
  2559. 11 2 Lisa Anderson lisa.anderson@sakilacustomer.org 15 t 2006-02-14 2013-05-26 14:49:45.738 1
  2560. 12 1 Nancy Thomas nancy.thomas@sakilacustomer.org 16 t 2006-02-14 2013-05-26 14:49:45.738 1
  2561. 13 2 Karen Jackson karen.jackson@sakilacustomer.org 17 t 2006-02-14 2013-05-26 14:49:45.738 1
  2562. 14 2 Betty White betty.white@sakilacustomer.org 18 t 2006-02-14 2013-05-26 14:49:45.738 1
  2563. 15 1 Helen Harris helen.harris@sakilacustomer.org 19 t 2006-02-14 2013-05-26 14:49:45.738 1
  2564. 16 2 Sandra Martin sandra.martin@sakilacustomer.org 20 t 2006-02-14 2013-05-26 14:49:45.738 0
  2565. 17 1 Donna Thompson donna.thompson@sakilacustomer.org 21 t 2006-02-14 2013-05-26 14:49:45.738 1
  2566. 18 2 Carol Garcia carol.garcia@sakilacustomer.org 22 t 2006-02-14 2013-05-26 14:49:45.738 1
  2567. 19 1 Ruth Martinez ruth.martinez@sakilacustomer.org 23 t 2006-02-14 2013-05-26 14:49:45.738 1
  2568. 20 2 Sharon Robinson sharon.robinson@sakilacustomer.org 24 t 2006-02-14 2013-05-26 14:49:45.738 1
  2569. 21 1 Michelle Clark michelle.clark@sakilacustomer.org 25 t 2006-02-14 2013-05-26 14:49:45.738 1
  2570. 22 1 Laura Rodriguez laura.rodriguez@sakilacustomer.org 26 t 2006-02-14 2013-05-26 14:49:45.738 1
  2571. 23 2 Sarah Lewis sarah.lewis@sakilacustomer.org 27 t 2006-02-14 2013-05-26 14:49:45.738 1
  2572. 24 2 Kimberly Lee kimberly.lee@sakilacustomer.org 28 t 2006-02-14 2013-05-26 14:49:45.738 1
  2573. 25 1 Deborah Walker deborah.walker@sakilacustomer.org 29 t 2006-02-14 2013-05-26 14:49:45.738 1
  2574. 26 2 Jessica Hall jessica.hall@sakilacustomer.org 30 t 2006-02-14 2013-05-26 14:49:45.738 1
  2575. 27 2 Shirley Allen shirley.allen@sakilacustomer.org 31 t 2006-02-14 2013-05-26 14:49:45.738 1
  2576. 28 1 Cynthia Young cynthia.young@sakilacustomer.org 32 t 2006-02-14 2013-05-26 14:49:45.738 1
  2577. 29 2 Angela Hernandez angela.hernandez@sakilacustomer.org 33 t 2006-02-14 2013-05-26 14:49:45.738 1
  2578. 30 1 Melissa King melissa.king@sakilacustomer.org 34 t 2006-02-14 2013-05-26 14:49:45.738 1
  2579. 31 2 Brenda Wright brenda.wright@sakilacustomer.org 35 t 2006-02-14 2013-05-26 14:49:45.738 1
  2580. 32 1 Amy Lopez amy.lopez@sakilacustomer.org 36 t 2006-02-14 2013-05-26 14:49:45.738 1
  2581. 33 2 Anna Hill anna.hill@sakilacustomer.org 37 t 2006-02-14 2013-05-26 14:49:45.738 1
  2582. 34 2 Rebecca Scott rebecca.scott@sakilacustomer.org 38 t 2006-02-14 2013-05-26 14:49:45.738 1
  2583. 35 2 Virginia Green virginia.green@sakilacustomer.org 39 t 2006-02-14 2013-05-26 14:49:45.738 1
  2584. 36 2 Kathleen Adams kathleen.adams@sakilacustomer.org 40 t 2006-02-14 2013-05-26 14:49:45.738 1
  2585. 37 1 Pamela Baker pamela.baker@sakilacustomer.org 41 t 2006-02-14 2013-05-26 14:49:45.738 1
  2586. 38 1 Martha Gonzalez martha.gonzalez@sakilacustomer.org 42 t 2006-02-14 2013-05-26 14:49:45.738 1
  2587. 39 1 Debra Nelson debra.nelson@sakilacustomer.org 43 t 2006-02-14 2013-05-26 14:49:45.738 1
  2588. 40 2 Amanda Carter amanda.carter@sakilacustomer.org 44 t 2006-02-14 2013-05-26 14:49:45.738 1
  2589. 41 1 Stephanie Mitchell stephanie.mitchell@sakilacustomer.org 45 t 2006-02-14 2013-05-26 14:49:45.738 1
  2590. 42 2 Carolyn Perez carolyn.perez@sakilacustomer.org 46 t 2006-02-14 2013-05-26 14:49:45.738 1
  2591. 43 2 Christine Roberts christine.roberts@sakilacustomer.org 47 t 2006-02-14 2013-05-26 14:49:45.738 1
  2592. 44 1 Marie Turner marie.turner@sakilacustomer.org 48 t 2006-02-14 2013-05-26 14:49:45.738 1
  2593. 45 1 Janet Phillips janet.phillips@sakilacustomer.org 49 t 2006-02-14 2013-05-26 14:49:45.738 1
  2594. 46 2 Catherine Campbell catherine.campbell@sakilacustomer.org 50 t 2006-02-14 2013-05-26 14:49:45.738 1
  2595. 47 1 Frances Parker frances.parker@sakilacustomer.org 51 t 2006-02-14 2013-05-26 14:49:45.738 1
  2596. 48 1 Ann Evans ann.evans@sakilacustomer.org 52 t 2006-02-14 2013-05-26 14:49:45.738 1
  2597. 49 2 Joyce Edwards joyce.edwards@sakilacustomer.org 53 t 2006-02-14 2013-05-26 14:49:45.738 1
  2598. 50 1 Diane Collins diane.collins@sakilacustomer.org 54 t 2006-02-14 2013-05-26 14:49:45.738 1
  2599. 51 1 Alice Stewart alice.stewart@sakilacustomer.org 55 t 2006-02-14 2013-05-26 14:49:45.738 1
  2600. 52 1 Julie Sanchez julie.sanchez@sakilacustomer.org 56 t 2006-02-14 2013-05-26 14:49:45.738 1
  2601. 53 1 Heather Morris heather.morris@sakilacustomer.org 57 t 2006-02-14 2013-05-26 14:49:45.738 1
  2602. 54 1 Teresa Rogers teresa.rogers@sakilacustomer.org 58 t 2006-02-14 2013-05-26 14:49:45.738 1
  2603. 55 2 Doris Reed doris.reed@sakilacustomer.org 59 t 2006-02-14 2013-05-26 14:49:45.738 1
  2604. 56 1 Gloria Cook gloria.cook@sakilacustomer.org 60 t 2006-02-14 2013-05-26 14:49:45.738 1
  2605. 57 2 Evelyn Morgan evelyn.morgan@sakilacustomer.org 61 t 2006-02-14 2013-05-26 14:49:45.738 1
  2606. 58 1 Jean Bell jean.bell@sakilacustomer.org 62 t 2006-02-14 2013-05-26 14:49:45.738 1
  2607. 59 1 Cheryl Murphy cheryl.murphy@sakilacustomer.org 63 t 2006-02-14 2013-05-26 14:49:45.738 1
  2608. 60 1 Mildred Bailey mildred.bailey@sakilacustomer.org 64 t 2006-02-14 2013-05-26 14:49:45.738 1
  2609. 61 2 Katherine Rivera katherine.rivera@sakilacustomer.org 65 t 2006-02-14 2013-05-26 14:49:45.738 1
  2610. 62 1 Joan Cooper joan.cooper@sakilacustomer.org 66 t 2006-02-14 2013-05-26 14:49:45.738 1
  2611. 63 1 Ashley Richardson ashley.richardson@sakilacustomer.org 67 t 2006-02-14 2013-05-26 14:49:45.738 1
  2612. 64 2 Judith Cox judith.cox@sakilacustomer.org 68 t 2006-02-14 2013-05-26 14:49:45.738 0
  2613. 65 2 Rose Howard rose.howard@sakilacustomer.org 69 t 2006-02-14 2013-05-26 14:49:45.738 1
  2614. 66 2 Janice Ward janice.ward@sakilacustomer.org 70 t 2006-02-14 2013-05-26 14:49:45.738 1
  2615. 67 1 Kelly Torres kelly.torres@sakilacustomer.org 71 t 2006-02-14 2013-05-26 14:49:45.738 1
  2616. 68 1 Nicole Peterson nicole.peterson@sakilacustomer.org 72 t 2006-02-14 2013-05-26 14:49:45.738 1
  2617. 69 2 Judy Gray judy.gray@sakilacustomer.org 73 t 2006-02-14 2013-05-26 14:49:45.738 1
  2618. 70 2 Christina Ramirez christina.ramirez@sakilacustomer.org 74 t 2006-02-14 2013-05-26 14:49:45.738 1
  2619. 71 1 Kathy James kathy.james@sakilacustomer.org 75 t 2006-02-14 2013-05-26 14:49:45.738 1
  2620. 72 2 Theresa Watson theresa.watson@sakilacustomer.org 76 t 2006-02-14 2013-05-26 14:49:45.738 1
  2621. 73 2 Beverly Brooks beverly.brooks@sakilacustomer.org 77 t 2006-02-14 2013-05-26 14:49:45.738 1
  2622. 74 1 Denise Kelly denise.kelly@sakilacustomer.org 78 t 2006-02-14 2013-05-26 14:49:45.738 1
  2623. 75 2 Tammy Sanders tammy.sanders@sakilacustomer.org 79 t 2006-02-14 2013-05-26 14:49:45.738 1
  2624. 76 2 Irene Price irene.price@sakilacustomer.org 80 t 2006-02-14 2013-05-26 14:49:45.738 1
  2625. 77 2 Jane Bennett jane.bennett@sakilacustomer.org 81 t 2006-02-14 2013-05-26 14:49:45.738 1
  2626. 78 1 Lori Wood lori.wood@sakilacustomer.org 82 t 2006-02-14 2013-05-26 14:49:45.738 1
  2627. 79 1 Rachel Barnes rachel.barnes@sakilacustomer.org 83 t 2006-02-14 2013-05-26 14:49:45.738 1
  2628. 80 1 Marilyn Ross marilyn.ross@sakilacustomer.org 84 t 2006-02-14 2013-05-26 14:49:45.738 1
  2629. 81 1 Andrea Henderson andrea.henderson@sakilacustomer.org 85 t 2006-02-14 2013-05-26 14:49:45.738 1
  2630. 82 1 Kathryn Coleman kathryn.coleman@sakilacustomer.org 86 t 2006-02-14 2013-05-26 14:49:45.738 1
  2631. 83 1 Louise Jenkins louise.jenkins@sakilacustomer.org 87 t 2006-02-14 2013-05-26 14:49:45.738 1
  2632. 84 2 Sara Perry sara.perry@sakilacustomer.org 88 t 2006-02-14 2013-05-26 14:49:45.738 1
  2633. 85 2 Anne Powell anne.powell@sakilacustomer.org 89 t 2006-02-14 2013-05-26 14:49:45.738 1
  2634. 86 2 Jacqueline Long jacqueline.long@sakilacustomer.org 90 t 2006-02-14 2013-05-26 14:49:45.738 1
  2635. 87 1 Wanda Patterson wanda.patterson@sakilacustomer.org 91 t 2006-02-14 2013-05-26 14:49:45.738 1
  2636. 88 2 Bonnie Hughes bonnie.hughes@sakilacustomer.org 92 t 2006-02-14 2013-05-26 14:49:45.738 1
  2637. 89 1 Julia Flores julia.flores@sakilacustomer.org 93 t 2006-02-14 2013-05-26 14:49:45.738 1
  2638. 90 2 Ruby Washington ruby.washington@sakilacustomer.org 94 t 2006-02-14 2013-05-26 14:49:45.738 1
  2639. 91 2 Lois Butler lois.butler@sakilacustomer.org 95 t 2006-02-14 2013-05-26 14:49:45.738 1
  2640. 92 2 Tina Simmons tina.simmons@sakilacustomer.org 96 t 2006-02-14 2013-05-26 14:49:45.738 1
  2641. 93 1 Phyllis Foster phyllis.foster@sakilacustomer.org 97 t 2006-02-14 2013-05-26 14:49:45.738 1
  2642. 94 1 Norma Gonzales norma.gonzales@sakilacustomer.org 98 t 2006-02-14 2013-05-26 14:49:45.738 1
  2643. 95 2 Paula Bryant paula.bryant@sakilacustomer.org 99 t 2006-02-14 2013-05-26 14:49:45.738 1
  2644. 96 1 Diana Alexander diana.alexander@sakilacustomer.org 100 t 2006-02-14 2013-05-26 14:49:45.738 1
  2645. 97 2 Annie Russell annie.russell@sakilacustomer.org 101 t 2006-02-14 2013-05-26 14:49:45.738 1
  2646. 98 1 Lillian Griffin lillian.griffin@sakilacustomer.org 102 t 2006-02-14 2013-05-26 14:49:45.738 1
  2647. 99 2 Emily Diaz emily.diaz@sakilacustomer.org 103 t 2006-02-14 2013-05-26 14:49:45.738 1
  2648. 100 1 Robin Hayes robin.hayes@sakilacustomer.org 104 t 2006-02-14 2013-05-26 14:49:45.738 1
  2649. 101 1 Peggy Myers peggy.myers@sakilacustomer.org 105 t 2006-02-14 2013-05-26 14:49:45.738 1
  2650. 102 1 Crystal Ford crystal.ford@sakilacustomer.org 106 t 2006-02-14 2013-05-26 14:49:45.738 1
  2651. 103 1 Gladys Hamilton gladys.hamilton@sakilacustomer.org 107 t 2006-02-14 2013-05-26 14:49:45.738 1
  2652. 104 1 Rita Graham rita.graham@sakilacustomer.org 108 t 2006-02-14 2013-05-26 14:49:45.738 1
  2653. 105 1 Dawn Sullivan dawn.sullivan@sakilacustomer.org 109 t 2006-02-14 2013-05-26 14:49:45.738 1
  2654. 106 1 Connie Wallace connie.wallace@sakilacustomer.org 110 t 2006-02-14 2013-05-26 14:49:45.738 1
  2655. 107 1 Florence Woods florence.woods@sakilacustomer.org 111 t 2006-02-14 2013-05-26 14:49:45.738 1
  2656. 108 1 Tracy Cole tracy.cole@sakilacustomer.org 112 t 2006-02-14 2013-05-26 14:49:45.738 1
  2657. 109 2 Edna West edna.west@sakilacustomer.org 113 t 2006-02-14 2013-05-26 14:49:45.738 1
  2658. 110 2 Tiffany Jordan tiffany.jordan@sakilacustomer.org 114 t 2006-02-14 2013-05-26 14:49:45.738 1
  2659. 111 1 Carmen Owens carmen.owens@sakilacustomer.org 115 t 2006-02-14 2013-05-26 14:49:45.738 1
  2660. 112 2 Rosa Reynolds rosa.reynolds@sakilacustomer.org 116 t 2006-02-14 2013-05-26 14:49:45.738 1
  2661. 113 2 Cindy Fisher cindy.fisher@sakilacustomer.org 117 t 2006-02-14 2013-05-26 14:49:45.738 1
  2662. 114 2 Grace Ellis grace.ellis@sakilacustomer.org 118 t 2006-02-14 2013-05-26 14:49:45.738 1
  2663. 115 1 Wendy Harrison wendy.harrison@sakilacustomer.org 119 t 2006-02-14 2013-05-26 14:49:45.738 1
  2664. 116 1 Victoria Gibson victoria.gibson@sakilacustomer.org 120 t 2006-02-14 2013-05-26 14:49:45.738 1
  2665. 117 1 Edith Mcdonald edith.mcdonald@sakilacustomer.org 121 t 2006-02-14 2013-05-26 14:49:45.738 1
  2666. 118 1 Kim Cruz kim.cruz@sakilacustomer.org 122 t 2006-02-14 2013-05-26 14:49:45.738 1
  2667. 119 1 Sherry Marshall sherry.marshall@sakilacustomer.org 123 t 2006-02-14 2013-05-26 14:49:45.738 1
  2668. 120 2 Sylvia Ortiz sylvia.ortiz@sakilacustomer.org 124 t 2006-02-14 2013-05-26 14:49:45.738 1
  2669. 121 1 Josephine Gomez josephine.gomez@sakilacustomer.org 125 t 2006-02-14 2013-05-26 14:49:45.738 1
  2670. 122 1 Thelma Murray thelma.murray@sakilacustomer.org 126 t 2006-02-14 2013-05-26 14:49:45.738 1
  2671. 123 2 Shannon Freeman shannon.freeman@sakilacustomer.org 127 t 2006-02-14 2013-05-26 14:49:45.738 1
  2672. 124 1 Sheila Wells sheila.wells@sakilacustomer.org 128 t 2006-02-14 2013-05-26 14:49:45.738 0
  2673. 125 1 Ethel Webb ethel.webb@sakilacustomer.org 129 t 2006-02-14 2013-05-26 14:49:45.738 1
  2674. 126 1 Ellen Simpson ellen.simpson@sakilacustomer.org 130 t 2006-02-14 2013-05-26 14:49:45.738 1
  2675. 127 2 Elaine Stevens elaine.stevens@sakilacustomer.org 131 t 2006-02-14 2013-05-26 14:49:45.738 1
  2676. 128 1 Marjorie Tucker marjorie.tucker@sakilacustomer.org 132 t 2006-02-14 2013-05-26 14:49:45.738 1
  2677. 129 1 Carrie Porter carrie.porter@sakilacustomer.org 133 t 2006-02-14 2013-05-26 14:49:45.738 1
  2678. 130 1 Charlotte Hunter charlotte.hunter@sakilacustomer.org 134 t 2006-02-14 2013-05-26 14:49:45.738 1
  2679. 131 2 Monica Hicks monica.hicks@sakilacustomer.org 135 t 2006-02-14 2013-05-26 14:49:45.738 1
  2680. 132 2 Esther Crawford esther.crawford@sakilacustomer.org 136 t 2006-02-14 2013-05-26 14:49:45.738 1
  2681. 133 1 Pauline Henry pauline.henry@sakilacustomer.org 137 t 2006-02-14 2013-05-26 14:49:45.738 1
  2682. 134 1 Emma Boyd emma.boyd@sakilacustomer.org 138 t 2006-02-14 2013-05-26 14:49:45.738 1
  2683. 135 2 Juanita Mason juanita.mason@sakilacustomer.org 139 t 2006-02-14 2013-05-26 14:49:45.738 1
  2684. 136 2 Anita Morales anita.morales@sakilacustomer.org 140 t 2006-02-14 2013-05-26 14:49:45.738 1
  2685. 137 2 Rhonda Kennedy rhonda.kennedy@sakilacustomer.org 141 t 2006-02-14 2013-05-26 14:49:45.738 1
  2686. 138 1 Hazel Warren hazel.warren@sakilacustomer.org 142 t 2006-02-14 2013-05-26 14:49:45.738 1
  2687. 139 1 Amber Dixon amber.dixon@sakilacustomer.org 143 t 2006-02-14 2013-05-26 14:49:45.738 1
  2688. 140 1 Eva Ramos eva.ramos@sakilacustomer.org 144 t 2006-02-14 2013-05-26 14:49:45.738 1
  2689. 141 1 Debbie Reyes debbie.reyes@sakilacustomer.org 145 t 2006-02-14 2013-05-26 14:49:45.738 1
  2690. 142 1 April Burns april.burns@sakilacustomer.org 146 t 2006-02-14 2013-05-26 14:49:45.738 1
  2691. 143 1 Leslie Gordon leslie.gordon@sakilacustomer.org 147 t 2006-02-14 2013-05-26 14:49:45.738 1
  2692. 144 1 Clara Shaw clara.shaw@sakilacustomer.org 148 t 2006-02-14 2013-05-26 14:49:45.738 1
  2693. 145 1 Lucille Holmes lucille.holmes@sakilacustomer.org 149 t 2006-02-14 2013-05-26 14:49:45.738 1
  2694. 146 1 Jamie Rice jamie.rice@sakilacustomer.org 150 t 2006-02-14 2013-05-26 14:49:45.738 1
  2695. 147 2 Joanne Robertson joanne.robertson@sakilacustomer.org 151 t 2006-02-14 2013-05-26 14:49:45.738 1
  2696. 148 1 Eleanor Hunt eleanor.hunt@sakilacustomer.org 152 t 2006-02-14 2013-05-26 14:49:45.738 1
  2697. 149 1 Valerie Black valerie.black@sakilacustomer.org 153 t 2006-02-14 2013-05-26 14:49:45.738 1
  2698. 150 2 Danielle Daniels danielle.daniels@sakilacustomer.org 154 t 2006-02-14 2013-05-26 14:49:45.738 1
  2699. 151 2 Megan Palmer megan.palmer@sakilacustomer.org 155 t 2006-02-14 2013-05-26 14:49:45.738 1
  2700. 152 1 Alicia Mills alicia.mills@sakilacustomer.org 156 t 2006-02-14 2013-05-26 14:49:45.738 1
  2701. 153 2 Suzanne Nichols suzanne.nichols@sakilacustomer.org 157 t 2006-02-14 2013-05-26 14:49:45.738 1
  2702. 154 2 Michele Grant michele.grant@sakilacustomer.org 158 t 2006-02-14 2013-05-26 14:49:45.738 1
  2703. 155 1 Gail Knight gail.knight@sakilacustomer.org 159 t 2006-02-14 2013-05-26 14:49:45.738 1
  2704. 156 1 Bertha Ferguson bertha.ferguson@sakilacustomer.org 160 t 2006-02-14 2013-05-26 14:49:45.738 1
  2705. 157 2 Darlene Rose darlene.rose@sakilacustomer.org 161 t 2006-02-14 2013-05-26 14:49:45.738 1
  2706. 158 1 Veronica Stone veronica.stone@sakilacustomer.org 162 t 2006-02-14 2013-05-26 14:49:45.738 1
  2707. 159 1 Jill Hawkins jill.hawkins@sakilacustomer.org 163 t 2006-02-14 2013-05-26 14:49:45.738 1
  2708. 160 2 Erin Dunn erin.dunn@sakilacustomer.org 164 t 2006-02-14 2013-05-26 14:49:45.738 1
  2709. 161 1 Geraldine Perkins geraldine.perkins@sakilacustomer.org 165 t 2006-02-14 2013-05-26 14:49:45.738 1
  2710. 162 2 Lauren Hudson lauren.hudson@sakilacustomer.org 166 t 2006-02-14 2013-05-26 14:49:45.738 1
  2711. 163 1 Cathy Spencer cathy.spencer@sakilacustomer.org 167 t 2006-02-14 2013-05-26 14:49:45.738 1
  2712. 164 2 Joann Gardner joann.gardner@sakilacustomer.org 168 t 2006-02-14 2013-05-26 14:49:45.738 1
  2713. 165 2 Lorraine Stephens lorraine.stephens@sakilacustomer.org 169 t 2006-02-14 2013-05-26 14:49:45.738 1
  2714. 166 1 Lynn Payne lynn.payne@sakilacustomer.org 170 t 2006-02-14 2013-05-26 14:49:45.738 1
  2715. 167 2 Sally Pierce sally.pierce@sakilacustomer.org 171 t 2006-02-14 2013-05-26 14:49:45.738 1
  2716. 168 1 Regina Berry regina.berry@sakilacustomer.org 172 t 2006-02-14 2013-05-26 14:49:45.738 1
  2717. 169 2 Erica Matthews erica.matthews@sakilacustomer.org 173 t 2006-02-14 2013-05-26 14:49:45.738 0
  2718. 170 1 Beatrice Arnold beatrice.arnold@sakilacustomer.org 174 t 2006-02-14 2013-05-26 14:49:45.738 1
  2719. 171 2 Dolores Wagner dolores.wagner@sakilacustomer.org 175 t 2006-02-14 2013-05-26 14:49:45.738 1
  2720. 172 1 Bernice Willis bernice.willis@sakilacustomer.org 176 t 2006-02-14 2013-05-26 14:49:45.738 1
  2721. 173 1 Audrey Ray audrey.ray@sakilacustomer.org 177 t 2006-02-14 2013-05-26 14:49:45.738 1
  2722. 174 2 Yvonne Watkins yvonne.watkins@sakilacustomer.org 178 t 2006-02-14 2013-05-26 14:49:45.738 1
  2723. 175 1 Annette Olson annette.olson@sakilacustomer.org 179 t 2006-02-14 2013-05-26 14:49:45.738 1
  2724. 176 1 June Carroll june.carroll@sakilacustomer.org 180 t 2006-02-14 2013-05-26 14:49:45.738 1
  2725. 177 2 Samantha Duncan samantha.duncan@sakilacustomer.org 181 t 2006-02-14 2013-05-26 14:49:45.738 1
  2726. 178 2 Marion Snyder marion.snyder@sakilacustomer.org 182 t 2006-02-14 2013-05-26 14:49:45.738 1
  2727. 179 1 Dana Hart dana.hart@sakilacustomer.org 183 t 2006-02-14 2013-05-26 14:49:45.738 1
  2728. 180 2 Stacy Cunningham stacy.cunningham@sakilacustomer.org 184 t 2006-02-14 2013-05-26 14:49:45.738 1
  2729. 181 2 Ana Bradley ana.bradley@sakilacustomer.org 185 t 2006-02-14 2013-05-26 14:49:45.738 1
  2730. 182 1 Renee Lane renee.lane@sakilacustomer.org 186 t 2006-02-14 2013-05-26 14:49:45.738 1
  2731. 183 2 Ida Andrews ida.andrews@sakilacustomer.org 187 t 2006-02-14 2013-05-26 14:49:45.738 1
  2732. 184 1 Vivian Ruiz vivian.ruiz@sakilacustomer.org 188 t 2006-02-14 2013-05-26 14:49:45.738 1
  2733. 185 1 Roberta Harper roberta.harper@sakilacustomer.org 189 t 2006-02-14 2013-05-26 14:49:45.738 1
  2734. 186 2 Holly Fox holly.fox@sakilacustomer.org 190 t 2006-02-14 2013-05-26 14:49:45.738 1
  2735. 187 2 Brittany Riley brittany.riley@sakilacustomer.org 191 t 2006-02-14 2013-05-26 14:49:45.738 1
  2736. 188 1 Melanie Armstrong melanie.armstrong@sakilacustomer.org 192 t 2006-02-14 2013-05-26 14:49:45.738 1
  2737. 189 1 Loretta Carpenter loretta.carpenter@sakilacustomer.org 193 t 2006-02-14 2013-05-26 14:49:45.738 1
  2738. 190 2 Yolanda Weaver yolanda.weaver@sakilacustomer.org 194 t 2006-02-14 2013-05-26 14:49:45.738 1
  2739. 191 1 Jeanette Greene jeanette.greene@sakilacustomer.org 195 t 2006-02-14 2013-05-26 14:49:45.738 1
  2740. 192 1 Laurie Lawrence laurie.lawrence@sakilacustomer.org 196 t 2006-02-14 2013-05-26 14:49:45.738 1
  2741. 193 2 Katie Elliott katie.elliott@sakilacustomer.org 197 t 2006-02-14 2013-05-26 14:49:45.738 1
  2742. 194 2 Kristen Chavez kristen.chavez@sakilacustomer.org 198 t 2006-02-14 2013-05-26 14:49:45.738 1
  2743. 195 1 Vanessa Sims vanessa.sims@sakilacustomer.org 199 t 2006-02-14 2013-05-26 14:49:45.738 1
  2744. 196 1 Alma Austin alma.austin@sakilacustomer.org 200 t 2006-02-14 2013-05-26 14:49:45.738 1
  2745. 197 2 Sue Peters sue.peters@sakilacustomer.org 201 t 2006-02-14 2013-05-26 14:49:45.738 1
  2746. 198 2 Elsie Kelley elsie.kelley@sakilacustomer.org 202 t 2006-02-14 2013-05-26 14:49:45.738 1
  2747. 199 2 Beth Franklin beth.franklin@sakilacustomer.org 203 t 2006-02-14 2013-05-26 14:49:45.738 1
  2748. 200 2 Jeanne Lawson jeanne.lawson@sakilacustomer.org 204 t 2006-02-14 2013-05-26 14:49:45.738 1
  2749. 201 1 Vicki Fields vicki.fields@sakilacustomer.org 205 t 2006-02-14 2013-05-26 14:49:45.738 1
  2750. 202 2 Carla Gutierrez carla.gutierrez@sakilacustomer.org 206 t 2006-02-14 2013-05-26 14:49:45.738 1
  2751. 203 1 Tara Ryan tara.ryan@sakilacustomer.org 207 t 2006-02-14 2013-05-26 14:49:45.738 1
  2752. 204 1 Rosemary Schmidt rosemary.schmidt@sakilacustomer.org 208 t 2006-02-14 2013-05-26 14:49:45.738 1
  2753. 205 2 Eileen Carr eileen.carr@sakilacustomer.org 209 t 2006-02-14 2013-05-26 14:49:45.738 1
  2754. 206 1 Terri Vasquez terri.vasquez@sakilacustomer.org 210 t 2006-02-14 2013-05-26 14:49:45.738 1
  2755. 207 1 Gertrude Castillo gertrude.castillo@sakilacustomer.org 211 t 2006-02-14 2013-05-26 14:49:45.738 1
  2756. 208 1 Lucy Wheeler lucy.wheeler@sakilacustomer.org 212 t 2006-02-14 2013-05-26 14:49:45.738 1
  2757. 209 2 Tonya Chapman tonya.chapman@sakilacustomer.org 213 t 2006-02-14 2013-05-26 14:49:45.738 1
  2758. 210 2 Ella Oliver ella.oliver@sakilacustomer.org 214 t 2006-02-14 2013-05-26 14:49:45.738 1
  2759. 211 1 Stacey Montgomery stacey.montgomery@sakilacustomer.org 215 t 2006-02-14 2013-05-26 14:49:45.738 1
  2760. 212 2 Wilma Richards wilma.richards@sakilacustomer.org 216 t 2006-02-14 2013-05-26 14:49:45.738 1
  2761. 213 1 Gina Williamson gina.williamson@sakilacustomer.org 217 t 2006-02-14 2013-05-26 14:49:45.738 1
  2762. 214 1 Kristin Johnston kristin.johnston@sakilacustomer.org 218 t 2006-02-14 2013-05-26 14:49:45.738 1
  2763. 215 2 Jessie Banks jessie.banks@sakilacustomer.org 219 t 2006-02-14 2013-05-26 14:49:45.738 1
  2764. 216 1 Natalie Meyer natalie.meyer@sakilacustomer.org 220 t 2006-02-14 2013-05-26 14:49:45.738 1
  2765. 217 2 Agnes Bishop agnes.bishop@sakilacustomer.org 221 t 2006-02-14 2013-05-26 14:49:45.738 1
  2766. 218 1 Vera Mccoy vera.mccoy@sakilacustomer.org 222 t 2006-02-14 2013-05-26 14:49:45.738 1
  2767. 219 2 Willie Howell willie.howell@sakilacustomer.org 223 t 2006-02-14 2013-05-26 14:49:45.738 1
  2768. 220 2 Charlene Alvarez charlene.alvarez@sakilacustomer.org 224 t 2006-02-14 2013-05-26 14:49:45.738 1
  2769. 221 1 Bessie Morrison bessie.morrison@sakilacustomer.org 225 t 2006-02-14 2013-05-26 14:49:45.738 1
  2770. 222 2 Delores Hansen delores.hansen@sakilacustomer.org 226 t 2006-02-14 2013-05-26 14:49:45.738 1
  2771. 223 1 Melinda Fernandez melinda.fernandez@sakilacustomer.org 227 t 2006-02-14 2013-05-26 14:49:45.738 1
  2772. 224 2 Pearl Garza pearl.garza@sakilacustomer.org 228 t 2006-02-14 2013-05-26 14:49:45.738 1
  2773. 225 1 Arlene Harvey arlene.harvey@sakilacustomer.org 229 t 2006-02-14 2013-05-26 14:49:45.738 1
  2774. 226 2 Maureen Little maureen.little@sakilacustomer.org 230 t 2006-02-14 2013-05-26 14:49:45.738 1
  2775. 227 1 Colleen Burton colleen.burton@sakilacustomer.org 231 t 2006-02-14 2013-05-26 14:49:45.738 1
  2776. 228 2 Allison Stanley allison.stanley@sakilacustomer.org 232 t 2006-02-14 2013-05-26 14:49:45.738 1
  2777. 229 1 Tamara Nguyen tamara.nguyen@sakilacustomer.org 233 t 2006-02-14 2013-05-26 14:49:45.738 1
  2778. 230 2 Joy George joy.george@sakilacustomer.org 234 t 2006-02-14 2013-05-26 14:49:45.738 1
  2779. 231 1 Georgia Jacobs georgia.jacobs@sakilacustomer.org 235 t 2006-02-14 2013-05-26 14:49:45.738 1
  2780. 232 2 Constance Reid constance.reid@sakilacustomer.org 236 t 2006-02-14 2013-05-26 14:49:45.738 1
  2781. 233 2 Lillie Kim lillie.kim@sakilacustomer.org 237 t 2006-02-14 2013-05-26 14:49:45.738 1
  2782. 234 1 Claudia Fuller claudia.fuller@sakilacustomer.org 238 t 2006-02-14 2013-05-26 14:49:45.738 1
  2783. 235 1 Jackie Lynch jackie.lynch@sakilacustomer.org 239 t 2006-02-14 2013-05-26 14:49:45.738 1
  2784. 236 1 Marcia Dean marcia.dean@sakilacustomer.org 240 t 2006-02-14 2013-05-26 14:49:45.738 1
  2785. 237 1 Tanya Gilbert tanya.gilbert@sakilacustomer.org 241 t 2006-02-14 2013-05-26 14:49:45.738 1
  2786. 238 1 Nellie Garrett nellie.garrett@sakilacustomer.org 242 t 2006-02-14 2013-05-26 14:49:45.738 1
  2787. 239 2 Minnie Romero minnie.romero@sakilacustomer.org 243 t 2006-02-14 2013-05-26 14:49:45.738 1
  2788. 240 1 Marlene Welch marlene.welch@sakilacustomer.org 244 t 2006-02-14 2013-05-26 14:49:45.738 1
  2789. 241 2 Heidi Larson heidi.larson@sakilacustomer.org 245 t 2006-02-14 2013-05-26 14:49:45.738 0
  2790. 242 1 Glenda Frazier glenda.frazier@sakilacustomer.org 246 t 2006-02-14 2013-05-26 14:49:45.738 1
  2791. 243 1 Lydia Burke lydia.burke@sakilacustomer.org 247 t 2006-02-14 2013-05-26 14:49:45.738 1
  2792. 244 2 Viola Hanson viola.hanson@sakilacustomer.org 248 t 2006-02-14 2013-05-26 14:49:45.738 1
  2793. 245 1 Courtney Day courtney.day@sakilacustomer.org 249 t 2006-02-14 2013-05-26 14:49:45.738 1
  2794. 246 1 Marian Mendoza marian.mendoza@sakilacustomer.org 250 t 2006-02-14 2013-05-26 14:49:45.738 1
  2795. 247 1 Stella Moreno stella.moreno@sakilacustomer.org 251 t 2006-02-14 2013-05-26 14:49:45.738 1
  2796. 248 1 Caroline Bowman caroline.bowman@sakilacustomer.org 252 t 2006-02-14 2013-05-26 14:49:45.738 1
  2797. 249 2 Dora Medina dora.medina@sakilacustomer.org 253 t 2006-02-14 2013-05-26 14:49:45.738 1
  2798. 250 2 Jo Fowler jo.fowler@sakilacustomer.org 254 t 2006-02-14 2013-05-26 14:49:45.738 1
  2799. 251 2 Vickie Brewer vickie.brewer@sakilacustomer.org 255 t 2006-02-14 2013-05-26 14:49:45.738 1
  2800. 252 2 Mattie Hoffman mattie.hoffman@sakilacustomer.org 256 t 2006-02-14 2013-05-26 14:49:45.738 1
  2801. 253 1 Terry Carlson terry.carlson@sakilacustomer.org 258 t 2006-02-14 2013-05-26 14:49:45.738 1
  2802. 254 2 Maxine Silva maxine.silva@sakilacustomer.org 259 t 2006-02-14 2013-05-26 14:49:45.738 1
  2803. 255 2 Irma Pearson irma.pearson@sakilacustomer.org 260 t 2006-02-14 2013-05-26 14:49:45.738 1
  2804. 256 2 Mabel Holland mabel.holland@sakilacustomer.org 261 t 2006-02-14 2013-05-26 14:49:45.738 1
  2805. 257 2 Marsha Douglas marsha.douglas@sakilacustomer.org 262 t 2006-02-14 2013-05-26 14:49:45.738 1
  2806. 258 1 Myrtle Fleming myrtle.fleming@sakilacustomer.org 263 t 2006-02-14 2013-05-26 14:49:45.738 1
  2807. 259 2 Lena Jensen lena.jensen@sakilacustomer.org 264 t 2006-02-14 2013-05-26 14:49:45.738 1
  2808. 260 1 Christy Vargas christy.vargas@sakilacustomer.org 265 t 2006-02-14 2013-05-26 14:49:45.738 1
  2809. 261 1 Deanna Byrd deanna.byrd@sakilacustomer.org 266 t 2006-02-14 2013-05-26 14:49:45.738 1
  2810. 262 2 Patsy Davidson patsy.davidson@sakilacustomer.org 267 t 2006-02-14 2013-05-26 14:49:45.738 1
  2811. 263 1 Hilda Hopkins hilda.hopkins@sakilacustomer.org 268 t 2006-02-14 2013-05-26 14:49:45.738 1
  2812. 264 1 Gwendolyn May gwendolyn.may@sakilacustomer.org 269 t 2006-02-14 2013-05-26 14:49:45.738 1
  2813. 265 2 Jennie Terry jennie.terry@sakilacustomer.org 270 t 2006-02-14 2013-05-26 14:49:45.738 1
  2814. 266 2 Nora Herrera nora.herrera@sakilacustomer.org 271 t 2006-02-14 2013-05-26 14:49:45.738 1
  2815. 267 1 Margie Wade margie.wade@sakilacustomer.org 272 t 2006-02-14 2013-05-26 14:49:45.738 1
  2816. 268 1 Nina Soto nina.soto@sakilacustomer.org 273 t 2006-02-14 2013-05-26 14:49:45.738 1
  2817. 269 1 Cassandra Walters cassandra.walters@sakilacustomer.org 274 t 2006-02-14 2013-05-26 14:49:45.738 1
  2818. 270 1 Leah Curtis leah.curtis@sakilacustomer.org 275 t 2006-02-14 2013-05-26 14:49:45.738 1
  2819. 271 1 Penny Neal penny.neal@sakilacustomer.org 276 t 2006-02-14 2013-05-26 14:49:45.738 0
  2820. 272 1 Kay Caldwell kay.caldwell@sakilacustomer.org 277 t 2006-02-14 2013-05-26 14:49:45.738 1
  2821. 273 2 Priscilla Lowe priscilla.lowe@sakilacustomer.org 278 t 2006-02-14 2013-05-26 14:49:45.738 1
  2822. 274 1 Naomi Jennings naomi.jennings@sakilacustomer.org 279 t 2006-02-14 2013-05-26 14:49:45.738 1
  2823. 275 2 Carole Barnett carole.barnett@sakilacustomer.org 280 t 2006-02-14 2013-05-26 14:49:45.738 1
  2824. 276 1 Brandy Graves brandy.graves@sakilacustomer.org 281 t 2006-02-14 2013-05-26 14:49:45.738 1
  2825. 277 2 Olga Jimenez olga.jimenez@sakilacustomer.org 282 t 2006-02-14 2013-05-26 14:49:45.738 1
  2826. 278 2 Billie Horton billie.horton@sakilacustomer.org 283 t 2006-02-14 2013-05-26 14:49:45.738 1
  2827. 279 2 Dianne Shelton dianne.shelton@sakilacustomer.org 284 t 2006-02-14 2013-05-26 14:49:45.738 1
  2828. 280 2 Tracey Barrett tracey.barrett@sakilacustomer.org 285 t 2006-02-14 2013-05-26 14:49:45.738 1
  2829. 281 2 Leona Obrien leona.obrien@sakilacustomer.org 286 t 2006-02-14 2013-05-26 14:49:45.738 1
  2830. 282 2 Jenny Castro jenny.castro@sakilacustomer.org 287 t 2006-02-14 2013-05-26 14:49:45.738 1
  2831. 283 1 Felicia Sutton felicia.sutton@sakilacustomer.org 288 t 2006-02-14 2013-05-26 14:49:45.738 1
  2832. 284 1 Sonia Gregory sonia.gregory@sakilacustomer.org 289 t 2006-02-14 2013-05-26 14:49:45.738 1
  2833. 285 1 Miriam Mckinney miriam.mckinney@sakilacustomer.org 290 t 2006-02-14 2013-05-26 14:49:45.738 1
  2834. 286 1 Velma Lucas velma.lucas@sakilacustomer.org 291 t 2006-02-14 2013-05-26 14:49:45.738 1
  2835. 287 2 Becky Miles becky.miles@sakilacustomer.org 292 t 2006-02-14 2013-05-26 14:49:45.738 1
  2836. 288 1 Bobbie Craig bobbie.craig@sakilacustomer.org 293 t 2006-02-14 2013-05-26 14:49:45.738 1
  2837. 289 1 Violet Rodriquez violet.rodriquez@sakilacustomer.org 294 t 2006-02-14 2013-05-26 14:49:45.738 1
  2838. 290 1 Kristina Chambers kristina.chambers@sakilacustomer.org 295 t 2006-02-14 2013-05-26 14:49:45.738 1
  2839. 291 1 Toni Holt toni.holt@sakilacustomer.org 296 t 2006-02-14 2013-05-26 14:49:45.738 1
  2840. 292 2 Misty Lambert misty.lambert@sakilacustomer.org 297 t 2006-02-14 2013-05-26 14:49:45.738 1
  2841. 293 2 Mae Fletcher mae.fletcher@sakilacustomer.org 298 t 2006-02-14 2013-05-26 14:49:45.738 1
  2842. 294 2 Shelly Watts shelly.watts@sakilacustomer.org 299 t 2006-02-14 2013-05-26 14:49:45.738 1
  2843. 295 1 Daisy Bates daisy.bates@sakilacustomer.org 300 t 2006-02-14 2013-05-26 14:49:45.738 1
  2844. 296 2 Ramona Hale ramona.hale@sakilacustomer.org 301 t 2006-02-14 2013-05-26 14:49:45.738 1
  2845. 297 1 Sherri Rhodes sherri.rhodes@sakilacustomer.org 302 t 2006-02-14 2013-05-26 14:49:45.738 1
  2846. 298 1 Erika Pena erika.pena@sakilacustomer.org 303 t 2006-02-14 2013-05-26 14:49:45.738 1
  2847. 299 2 James Gannon james.gannon@sakilacustomer.org 304 t 2006-02-14 2013-05-26 14:49:45.738 1
  2848. 300 1 John Farnsworth john.farnsworth@sakilacustomer.org 305 t 2006-02-14 2013-05-26 14:49:45.738 1
  2849. 301 2 Robert Baughman robert.baughman@sakilacustomer.org 306 t 2006-02-14 2013-05-26 14:49:45.738 1
  2850. 302 1 Michael Silverman michael.silverman@sakilacustomer.org 307 t 2006-02-14 2013-05-26 14:49:45.738 1
  2851. 303 2 William Satterfield william.satterfield@sakilacustomer.org 308 t 2006-02-14 2013-05-26 14:49:45.738 1
  2852. 304 2 David Royal david.royal@sakilacustomer.org 309 t 2006-02-14 2013-05-26 14:49:45.738 1
  2853. 305 1 Richard Mccrary richard.mccrary@sakilacustomer.org 310 t 2006-02-14 2013-05-26 14:49:45.738 1
  2854. 306 1 Charles Kowalski charles.kowalski@sakilacustomer.org 311 t 2006-02-14 2013-05-26 14:49:45.738 1
  2855. 307 2 Joseph Joy joseph.joy@sakilacustomer.org 312 t 2006-02-14 2013-05-26 14:49:45.738 1
  2856. 308 1 Thomas Grigsby thomas.grigsby@sakilacustomer.org 313 t 2006-02-14 2013-05-26 14:49:45.738 1
  2857. 309 1 Christopher Greco christopher.greco@sakilacustomer.org 314 t 2006-02-14 2013-05-26 14:49:45.738 1
  2858. 310 2 Daniel Cabral daniel.cabral@sakilacustomer.org 315 t 2006-02-14 2013-05-26 14:49:45.738 1
  2859. 311 2 Paul Trout paul.trout@sakilacustomer.org 316 t 2006-02-14 2013-05-26 14:49:45.738 1
  2860. 312 2 Mark Rinehart mark.rinehart@sakilacustomer.org 317 t 2006-02-14 2013-05-26 14:49:45.738 1
  2861. 313 2 Donald Mahon donald.mahon@sakilacustomer.org 318 t 2006-02-14 2013-05-26 14:49:45.738 1
  2862. 314 1 George Linton george.linton@sakilacustomer.org 319 t 2006-02-14 2013-05-26 14:49:45.738 1
  2863. 315 2 Kenneth Gooden kenneth.gooden@sakilacustomer.org 320 t 2006-02-14 2013-05-26 14:49:45.738 0
  2864. 316 1 Steven Curley steven.curley@sakilacustomer.org 321 t 2006-02-14 2013-05-26 14:49:45.738 1
  2865. 317 2 Edward Baugh edward.baugh@sakilacustomer.org 322 t 2006-02-14 2013-05-26 14:49:45.738 1
  2866. 318 1 Brian Wyman brian.wyman@sakilacustomer.org 323 t 2006-02-14 2013-05-26 14:49:45.738 1
  2867. 319 2 Ronald Weiner ronald.weiner@sakilacustomer.org 324 t 2006-02-14 2013-05-26 14:49:45.738 1
  2868. 320 2 Anthony Schwab anthony.schwab@sakilacustomer.org 325 t 2006-02-14 2013-05-26 14:49:45.738 1
  2869. 321 1 Kevin Schuler kevin.schuler@sakilacustomer.org 326 t 2006-02-14 2013-05-26 14:49:45.738 1
  2870. 322 1 Jason Morrissey jason.morrissey@sakilacustomer.org 327 t 2006-02-14 2013-05-26 14:49:45.738 1
  2871. 323 2 Matthew Mahan matthew.mahan@sakilacustomer.org 328 t 2006-02-14 2013-05-26 14:49:45.738 1
  2872. 324 2 Gary Coy gary.coy@sakilacustomer.org 329 t 2006-02-14 2013-05-26 14:49:45.738 1
  2873. 325 1 Timothy Bunn timothy.bunn@sakilacustomer.org 330 t 2006-02-14 2013-05-26 14:49:45.738 1
  2874. 326 1 Jose Andrew jose.andrew@sakilacustomer.org 331 t 2006-02-14 2013-05-26 14:49:45.738 1
  2875. 327 2 Larry Thrasher larry.thrasher@sakilacustomer.org 332 t 2006-02-14 2013-05-26 14:49:45.738 1
  2876. 328 2 Jeffrey Spear jeffrey.spear@sakilacustomer.org 333 t 2006-02-14 2013-05-26 14:49:45.738 1
  2877. 329 2 Frank Waggoner frank.waggoner@sakilacustomer.org 334 t 2006-02-14 2013-05-26 14:49:45.738 1
  2878. 330 1 Scott Shelley scott.shelley@sakilacustomer.org 335 t 2006-02-14 2013-05-26 14:49:45.738 1
  2879. 331 1 Eric Robert eric.robert@sakilacustomer.org 336 t 2006-02-14 2013-05-26 14:49:45.738 1
  2880. 332 1 Stephen Qualls stephen.qualls@sakilacustomer.org 337 t 2006-02-14 2013-05-26 14:49:45.738 1
  2881. 333 2 Andrew Purdy andrew.purdy@sakilacustomer.org 338 t 2006-02-14 2013-05-26 14:49:45.738 1
  2882. 334 2 Raymond Mcwhorter raymond.mcwhorter@sakilacustomer.org 339 t 2006-02-14 2013-05-26 14:49:45.738 1
  2883. 335 1 Gregory Mauldin gregory.mauldin@sakilacustomer.org 340 t 2006-02-14 2013-05-26 14:49:45.738 1
  2884. 336 1 Joshua Mark joshua.mark@sakilacustomer.org 341 t 2006-02-14 2013-05-26 14:49:45.738 1
  2885. 337 1 Jerry Jordon jerry.jordon@sakilacustomer.org 342 t 2006-02-14 2013-05-26 14:49:45.738 1
  2886. 338 1 Dennis Gilman dennis.gilman@sakilacustomer.org 343 t 2006-02-14 2013-05-26 14:49:45.738 1
  2887. 339 2 Walter Perryman walter.perryman@sakilacustomer.org 344 t 2006-02-14 2013-05-26 14:49:45.738 1
  2888. 340 1 Patrick Newsom patrick.newsom@sakilacustomer.org 345 t 2006-02-14 2013-05-26 14:49:45.738 1
  2889. 341 1 Peter Menard peter.menard@sakilacustomer.org 346 t 2006-02-14 2013-05-26 14:49:45.738 1
  2890. 342 1 Harold Martino harold.martino@sakilacustomer.org 347 t 2006-02-14 2013-05-26 14:49:45.738 1
  2891. 343 1 Douglas Graf douglas.graf@sakilacustomer.org 348 t 2006-02-14 2013-05-26 14:49:45.738 1
  2892. 344 1 Henry Billingsley henry.billingsley@sakilacustomer.org 349 t 2006-02-14 2013-05-26 14:49:45.738 1
  2893. 345 1 Carl Artis carl.artis@sakilacustomer.org 350 t 2006-02-14 2013-05-26 14:49:45.738 1
  2894. 346 1 Arthur Simpkins arthur.simpkins@sakilacustomer.org 351 t 2006-02-14 2013-05-26 14:49:45.738 1
  2895. 347 2 Ryan Salisbury ryan.salisbury@sakilacustomer.org 352 t 2006-02-14 2013-05-26 14:49:45.738 1
  2896. 348 2 Roger Quintanilla roger.quintanilla@sakilacustomer.org 353 t 2006-02-14 2013-05-26 14:49:45.738 1
  2897. 349 2 Joe Gilliland joe.gilliland@sakilacustomer.org 354 t 2006-02-14 2013-05-26 14:49:45.738 1
  2898. 350 1 Juan Fraley juan.fraley@sakilacustomer.org 355 t 2006-02-14 2013-05-26 14:49:45.738 1
  2899. 351 1 Jack Foust jack.foust@sakilacustomer.org 356 t 2006-02-14 2013-05-26 14:49:45.738 1
  2900. 352 1 Albert Crouse albert.crouse@sakilacustomer.org 357 t 2006-02-14 2013-05-26 14:49:45.738 1
  2901. 353 1 Jonathan Scarborough jonathan.scarborough@sakilacustomer.org 358 t 2006-02-14 2013-05-26 14:49:45.738 1
  2902. 354 2 Justin Ngo justin.ngo@sakilacustomer.org 359 t 2006-02-14 2013-05-26 14:49:45.738 1
  2903. 355 2 Terry Grissom terry.grissom@sakilacustomer.org 360 t 2006-02-14 2013-05-26 14:49:45.738 1
  2904. 356 2 Gerald Fultz gerald.fultz@sakilacustomer.org 361 t 2006-02-14 2013-05-26 14:49:45.738 1
  2905. 357 1 Keith Rico keith.rico@sakilacustomer.org 362 t 2006-02-14 2013-05-26 14:49:45.738 1
  2906. 358 2 Samuel Marlow samuel.marlow@sakilacustomer.org 363 t 2006-02-14 2013-05-26 14:49:45.738 1
  2907. 359 2 Willie Markham willie.markham@sakilacustomer.org 364 t 2006-02-14 2013-05-26 14:49:45.738 1
  2908. 360 2 Ralph Madrigal ralph.madrigal@sakilacustomer.org 365 t 2006-02-14 2013-05-26 14:49:45.738 1
  2909. 361 2 Lawrence Lawton lawrence.lawton@sakilacustomer.org 366 t 2006-02-14 2013-05-26 14:49:45.738 1
  2910. 362 1 Nicholas Barfield nicholas.barfield@sakilacustomer.org 367 t 2006-02-14 2013-05-26 14:49:45.738 1
  2911. 363 2 Roy Whiting roy.whiting@sakilacustomer.org 368 t 2006-02-14 2013-05-26 14:49:45.738 1
  2912. 364 1 Benjamin Varney benjamin.varney@sakilacustomer.org 369 t 2006-02-14 2013-05-26 14:49:45.738 1
  2913. 365 2 Bruce Schwarz bruce.schwarz@sakilacustomer.org 370 t 2006-02-14 2013-05-26 14:49:45.738 1
  2914. 366 1 Brandon Huey brandon.huey@sakilacustomer.org 371 t 2006-02-14 2013-05-26 14:49:45.738 1
  2915. 367 1 Adam Gooch adam.gooch@sakilacustomer.org 372 t 2006-02-14 2013-05-26 14:49:45.738 1
  2916. 368 1 Harry Arce harry.arce@sakilacustomer.org 373 t 2006-02-14 2013-05-26 14:49:45.738 0
  2917. 369 2 Fred Wheat fred.wheat@sakilacustomer.org 374 t 2006-02-14 2013-05-26 14:49:45.738 1
  2918. 370 2 Wayne Truong wayne.truong@sakilacustomer.org 375 t 2006-02-14 2013-05-26 14:49:45.738 1
  2919. 371 1 Billy Poulin billy.poulin@sakilacustomer.org 376 t 2006-02-14 2013-05-26 14:49:45.738 1
  2920. 372 2 Steve Mackenzie steve.mackenzie@sakilacustomer.org 377 t 2006-02-14 2013-05-26 14:49:45.738 1
  2921. 373 1 Louis Leone louis.leone@sakilacustomer.org 378 t 2006-02-14 2013-05-26 14:49:45.738 1
  2922. 374 2 Jeremy Hurtado jeremy.hurtado@sakilacustomer.org 379 t 2006-02-14 2013-05-26 14:49:45.738 1
  2923. 375 2 Aaron Selby aaron.selby@sakilacustomer.org 380 t 2006-02-14 2013-05-26 14:49:45.738 1
  2924. 376 1 Randy Gaither randy.gaither@sakilacustomer.org 381 t 2006-02-14 2013-05-26 14:49:45.738 1
  2925. 377 1 Howard Fortner howard.fortner@sakilacustomer.org 382 t 2006-02-14 2013-05-26 14:49:45.738 1
  2926. 378 1 Eugene Culpepper eugene.culpepper@sakilacustomer.org 383 t 2006-02-14 2013-05-26 14:49:45.738 1
  2927. 379 1 Carlos Coughlin carlos.coughlin@sakilacustomer.org 384 t 2006-02-14 2013-05-26 14:49:45.738 1
  2928. 380 1 Russell Brinson russell.brinson@sakilacustomer.org 385 t 2006-02-14 2013-05-26 14:49:45.738 1
  2929. 381 2 Bobby Boudreau bobby.boudreau@sakilacustomer.org 386 t 2006-02-14 2013-05-26 14:49:45.738 1
  2930. 382 2 Victor Barkley victor.barkley@sakilacustomer.org 387 t 2006-02-14 2013-05-26 14:49:45.738 1
  2931. 383 1 Martin Bales martin.bales@sakilacustomer.org 388 t 2006-02-14 2013-05-26 14:49:45.738 1
  2932. 384 2 Ernest Stepp ernest.stepp@sakilacustomer.org 389 t 2006-02-14 2013-05-26 14:49:45.738 1
  2933. 385 1 Phillip Holm phillip.holm@sakilacustomer.org 390 t 2006-02-14 2013-05-26 14:49:45.738 1
  2934. 386 1 Todd Tan todd.tan@sakilacustomer.org 391 t 2006-02-14 2013-05-26 14:49:45.738 1
  2935. 387 2 Jesse Schilling jesse.schilling@sakilacustomer.org 392 t 2006-02-14 2013-05-26 14:49:45.738 1
  2936. 388 2 Craig Morrell craig.morrell@sakilacustomer.org 393 t 2006-02-14 2013-05-26 14:49:45.738 1
  2937. 389 1 Alan Kahn alan.kahn@sakilacustomer.org 394 t 2006-02-14 2013-05-26 14:49:45.738 1
  2938. 390 1 Shawn Heaton shawn.heaton@sakilacustomer.org 395 t 2006-02-14 2013-05-26 14:49:45.738 1
  2939. 391 1 Clarence Gamez clarence.gamez@sakilacustomer.org 396 t 2006-02-14 2013-05-26 14:49:45.738 1
  2940. 392 2 Sean Douglass sean.douglass@sakilacustomer.org 397 t 2006-02-14 2013-05-26 14:49:45.738 1
  2941. 393 1 Philip Causey philip.causey@sakilacustomer.org 398 t 2006-02-14 2013-05-26 14:49:45.738 1
  2942. 394 2 Chris Brothers chris.brothers@sakilacustomer.org 399 t 2006-02-14 2013-05-26 14:49:45.738 1
  2943. 395 2 Johnny Turpin johnny.turpin@sakilacustomer.org 400 t 2006-02-14 2013-05-26 14:49:45.738 1
  2944. 396 1 Earl Shanks earl.shanks@sakilacustomer.org 401 t 2006-02-14 2013-05-26 14:49:45.738 1
  2945. 397 1 Jimmy Schrader jimmy.schrader@sakilacustomer.org 402 t 2006-02-14 2013-05-26 14:49:45.738 1
  2946. 398 1 Antonio Meek antonio.meek@sakilacustomer.org 403 t 2006-02-14 2013-05-26 14:49:45.738 1
  2947. 399 1 Danny Isom danny.isom@sakilacustomer.org 404 t 2006-02-14 2013-05-26 14:49:45.738 1
  2948. 400 2 Bryan Hardison bryan.hardison@sakilacustomer.org 405 t 2006-02-14 2013-05-26 14:49:45.738 1
  2949. 401 2 Tony Carranza tony.carranza@sakilacustomer.org 406 t 2006-02-14 2013-05-26 14:49:45.738 1
  2950. 402 1 Luis Yanez luis.yanez@sakilacustomer.org 407 t 2006-02-14 2013-05-26 14:49:45.738 1
  2951. 403 1 Mike Way mike.way@sakilacustomer.org 408 t 2006-02-14 2013-05-26 14:49:45.738 1
  2952. 404 2 Stanley Scroggins stanley.scroggins@sakilacustomer.org 409 t 2006-02-14 2013-05-26 14:49:45.738 1
  2953. 405 1 Leonard Schofield leonard.schofield@sakilacustomer.org 410 t 2006-02-14 2013-05-26 14:49:45.738 1
  2954. 406 1 Nathan Runyon nathan.runyon@sakilacustomer.org 411 t 2006-02-14 2013-05-26 14:49:45.738 0
  2955. 407 1 Dale Ratcliff dale.ratcliff@sakilacustomer.org 412 t 2006-02-14 2013-05-26 14:49:45.738 1
  2956. 408 1 Manuel Murrell manuel.murrell@sakilacustomer.org 413 t 2006-02-14 2013-05-26 14:49:45.738 1
  2957. 409 2 Rodney Moeller rodney.moeller@sakilacustomer.org 414 t 2006-02-14 2013-05-26 14:49:45.738 1
  2958. 410 2 Curtis Irby curtis.irby@sakilacustomer.org 415 t 2006-02-14 2013-05-26 14:49:45.738 1
  2959. 411 1 Norman Currier norman.currier@sakilacustomer.org 416 t 2006-02-14 2013-05-26 14:49:45.738 1
  2960. 412 2 Allen Butterfield allen.butterfield@sakilacustomer.org 417 t 2006-02-14 2013-05-26 14:49:45.738 1
  2961. 413 2 Marvin Yee marvin.yee@sakilacustomer.org 418 t 2006-02-14 2013-05-26 14:49:45.738 1
  2962. 414 1 Vincent Ralston vincent.ralston@sakilacustomer.org 419 t 2006-02-14 2013-05-26 14:49:45.738 1
  2963. 415 1 Glenn Pullen glenn.pullen@sakilacustomer.org 420 t 2006-02-14 2013-05-26 14:49:45.738 1
  2964. 416 2 Jeffery Pinson jeffery.pinson@sakilacustomer.org 421 t 2006-02-14 2013-05-26 14:49:45.738 1
  2965. 417 1 Travis Estep travis.estep@sakilacustomer.org 422 t 2006-02-14 2013-05-26 14:49:45.738 1
  2966. 418 2 Jeff East jeff.east@sakilacustomer.org 423 t 2006-02-14 2013-05-26 14:49:45.738 1
  2967. 419 1 Chad Carbone chad.carbone@sakilacustomer.org 424 t 2006-02-14 2013-05-26 14:49:45.738 1
  2968. 420 1 Jacob Lance jacob.lance@sakilacustomer.org 425 t 2006-02-14 2013-05-26 14:49:45.738 1
  2969. 421 1 Lee Hawks lee.hawks@sakilacustomer.org 426 t 2006-02-14 2013-05-26 14:49:45.738 1
  2970. 422 1 Melvin Ellington melvin.ellington@sakilacustomer.org 427 t 2006-02-14 2013-05-26 14:49:45.738 1
  2971. 423 2 Alfred Casillas alfred.casillas@sakilacustomer.org 428 t 2006-02-14 2013-05-26 14:49:45.738 1
  2972. 424 2 Kyle Spurlock kyle.spurlock@sakilacustomer.org 429 t 2006-02-14 2013-05-26 14:49:45.738 1
  2973. 425 2 Francis Sikes francis.sikes@sakilacustomer.org 430 t 2006-02-14 2013-05-26 14:49:45.738 1
  2974. 426 1 Bradley Motley bradley.motley@sakilacustomer.org 431 t 2006-02-14 2013-05-26 14:49:45.738 1
  2975. 427 2 Jesus Mccartney jesus.mccartney@sakilacustomer.org 432 t 2006-02-14 2013-05-26 14:49:45.738 1
  2976. 428 2 Herbert Kruger herbert.kruger@sakilacustomer.org 433 t 2006-02-14 2013-05-26 14:49:45.738 1
  2977. 429 2 Frederick Isbell frederick.isbell@sakilacustomer.org 434 t 2006-02-14 2013-05-26 14:49:45.738 1
  2978. 430 1 Ray Houle ray.houle@sakilacustomer.org 435 t 2006-02-14 2013-05-26 14:49:45.738 1
  2979. 431 2 Joel Francisco joel.francisco@sakilacustomer.org 436 t 2006-02-14 2013-05-26 14:49:45.738 1
  2980. 432 1 Edwin Burk edwin.burk@sakilacustomer.org 437 t 2006-02-14 2013-05-26 14:49:45.738 1
  2981. 433 1 Don Bone don.bone@sakilacustomer.org 438 t 2006-02-14 2013-05-26 14:49:45.738 1
  2982. 434 1 Eddie Tomlin eddie.tomlin@sakilacustomer.org 439 t 2006-02-14 2013-05-26 14:49:45.738 1
  2983. 435 2 Ricky Shelby ricky.shelby@sakilacustomer.org 440 t 2006-02-14 2013-05-26 14:49:45.738 1
  2984. 436 1 Troy Quigley troy.quigley@sakilacustomer.org 441 t 2006-02-14 2013-05-26 14:49:45.738 1
  2985. 437 2 Randall Neumann randall.neumann@sakilacustomer.org 442 t 2006-02-14 2013-05-26 14:49:45.738 1
  2986. 438 1 Barry Lovelace barry.lovelace@sakilacustomer.org 443 t 2006-02-14 2013-05-26 14:49:45.738 1
  2987. 439 2 Alexander Fennell alexander.fennell@sakilacustomer.org 444 t 2006-02-14 2013-05-26 14:49:45.738 1
  2988. 440 1 Bernard Colby bernard.colby@sakilacustomer.org 445 t 2006-02-14 2013-05-26 14:49:45.738 1
  2989. 441 1 Mario Cheatham mario.cheatham@sakilacustomer.org 446 t 2006-02-14 2013-05-26 14:49:45.738 1
  2990. 442 1 Leroy Bustamante leroy.bustamante@sakilacustomer.org 447 t 2006-02-14 2013-05-26 14:49:45.738 1
  2991. 443 2 Francisco Skidmore francisco.skidmore@sakilacustomer.org 448 t 2006-02-14 2013-05-26 14:49:45.738 1
  2992. 444 2 Marcus Hidalgo marcus.hidalgo@sakilacustomer.org 449 t 2006-02-14 2013-05-26 14:49:45.738 1
  2993. 445 1 Micheal Forman micheal.forman@sakilacustomer.org 450 t 2006-02-14 2013-05-26 14:49:45.738 1
  2994. 446 2 Theodore Culp theodore.culp@sakilacustomer.org 451 t 2006-02-14 2013-05-26 14:49:45.738 0
  2995. 447 1 Clifford Bowens clifford.bowens@sakilacustomer.org 452 t 2006-02-14 2013-05-26 14:49:45.738 1
  2996. 448 1 Miguel Betancourt miguel.betancourt@sakilacustomer.org 453 t 2006-02-14 2013-05-26 14:49:45.738 1
  2997. 449 2 Oscar Aquino oscar.aquino@sakilacustomer.org 454 t 2006-02-14 2013-05-26 14:49:45.738 1
  2998. 450 1 Jay Robb jay.robb@sakilacustomer.org 455 t 2006-02-14 2013-05-26 14:49:45.738 1
  2999. 451 1 Jim Rea jim.rea@sakilacustomer.org 456 t 2006-02-14 2013-05-26 14:49:45.738 1
  3000. 452 1 Tom Milner tom.milner@sakilacustomer.org 457 t 2006-02-14 2013-05-26 14:49:45.738 1
  3001. 453 1 Calvin Martel calvin.martel@sakilacustomer.org 458 t 2006-02-14 2013-05-26 14:49:45.738 1
  3002. 454 2 Alex Gresham alex.gresham@sakilacustomer.org 459 t 2006-02-14 2013-05-26 14:49:45.738 1
  3003. 455 2 Jon Wiles jon.wiles@sakilacustomer.org 460 t 2006-02-14 2013-05-26 14:49:45.738 1
  3004. 456 2 Ronnie Ricketts ronnie.ricketts@sakilacustomer.org 461 t 2006-02-14 2013-05-26 14:49:45.738 1
  3005. 457 2 Bill Gavin bill.gavin@sakilacustomer.org 462 t 2006-02-14 2013-05-26 14:49:45.738 1
  3006. 458 1 Lloyd Dowd lloyd.dowd@sakilacustomer.org 463 t 2006-02-14 2013-05-26 14:49:45.738 1
  3007. 459 1 Tommy Collazo tommy.collazo@sakilacustomer.org 464 t 2006-02-14 2013-05-26 14:49:45.738 1
  3008. 460 1 Leon Bostic leon.bostic@sakilacustomer.org 465 t 2006-02-14 2013-05-26 14:49:45.738 1
  3009. 461 1 Derek Blakely derek.blakely@sakilacustomer.org 466 t 2006-02-14 2013-05-26 14:49:45.738 1
  3010. 462 2 Warren Sherrod warren.sherrod@sakilacustomer.org 467 t 2006-02-14 2013-05-26 14:49:45.738 1
  3011. 463 2 Darrell Power darrell.power@sakilacustomer.org 468 t 2006-02-14 2013-05-26 14:49:45.738 1
  3012. 464 1 Jerome Kenyon jerome.kenyon@sakilacustomer.org 469 t 2006-02-14 2013-05-26 14:49:45.738 1
  3013. 465 1 Floyd Gandy floyd.gandy@sakilacustomer.org 470 t 2006-02-14 2013-05-26 14:49:45.738 1
  3014. 466 1 Leo Ebert leo.ebert@sakilacustomer.org 471 t 2006-02-14 2013-05-26 14:49:45.738 1
  3015. 467 2 Alvin Deloach alvin.deloach@sakilacustomer.org 472 t 2006-02-14 2013-05-26 14:49:45.738 1
  3016. 468 1 Tim Cary tim.cary@sakilacustomer.org 473 t 2006-02-14 2013-05-26 14:49:45.738 1
  3017. 469 2 Wesley Bull wesley.bull@sakilacustomer.org 474 t 2006-02-14 2013-05-26 14:49:45.738 1
  3018. 470 1 Gordon Allard gordon.allard@sakilacustomer.org 475 t 2006-02-14 2013-05-26 14:49:45.738 1
  3019. 471 1 Dean Sauer dean.sauer@sakilacustomer.org 476 t 2006-02-14 2013-05-26 14:49:45.738 1
  3020. 472 1 Greg Robins greg.robins@sakilacustomer.org 477 t 2006-02-14 2013-05-26 14:49:45.738 1
  3021. 473 2 Jorge Olivares jorge.olivares@sakilacustomer.org 478 t 2006-02-14 2013-05-26 14:49:45.738 1
  3022. 474 2 Dustin Gillette dustin.gillette@sakilacustomer.org 479 t 2006-02-14 2013-05-26 14:49:45.738 1
  3023. 475 2 Pedro Chestnut pedro.chestnut@sakilacustomer.org 480 t 2006-02-14 2013-05-26 14:49:45.738 1
  3024. 476 1 Derrick Bourque derrick.bourque@sakilacustomer.org 481 t 2006-02-14 2013-05-26 14:49:45.738 1
  3025. 477 1 Dan Paine dan.paine@sakilacustomer.org 482 t 2006-02-14 2013-05-26 14:49:45.738 1
  3026. 478 1 Lewis Lyman lewis.lyman@sakilacustomer.org 483 t 2006-02-14 2013-05-26 14:49:45.738 1
  3027. 479 1 Zachary Hite zachary.hite@sakilacustomer.org 484 t 2006-02-14 2013-05-26 14:49:45.738 1
  3028. 480 1 Corey Hauser corey.hauser@sakilacustomer.org 485 t 2006-02-14 2013-05-26 14:49:45.738 1
  3029. 481 1 Herman Devore herman.devore@sakilacustomer.org 486 t 2006-02-14 2013-05-26 14:49:45.738 1
  3030. 482 1 Maurice Crawley maurice.crawley@sakilacustomer.org 487 t 2006-02-14 2013-05-26 14:49:45.738 0
  3031. 483 2 Vernon Chapa vernon.chapa@sakilacustomer.org 488 t 2006-02-14 2013-05-26 14:49:45.738 1
  3032. 484 1 Roberto Vu roberto.vu@sakilacustomer.org 489 t 2006-02-14 2013-05-26 14:49:45.738 1
  3033. 485 1 Clyde Tobias clyde.tobias@sakilacustomer.org 490 t 2006-02-14 2013-05-26 14:49:45.738 1
  3034. 486 1 Glen Talbert glen.talbert@sakilacustomer.org 491 t 2006-02-14 2013-05-26 14:49:45.738 1
  3035. 487 2 Hector Poindexter hector.poindexter@sakilacustomer.org 492 t 2006-02-14 2013-05-26 14:49:45.738 1
  3036. 488 2 Shane Millard shane.millard@sakilacustomer.org 493 t 2006-02-14 2013-05-26 14:49:45.738 1
  3037. 489 1 Ricardo Meador ricardo.meador@sakilacustomer.org 494 t 2006-02-14 2013-05-26 14:49:45.738 1
  3038. 490 1 Sam Mcduffie sam.mcduffie@sakilacustomer.org 495 t 2006-02-14 2013-05-26 14:49:45.738 1
  3039. 491 2 Rick Mattox rick.mattox@sakilacustomer.org 496 t 2006-02-14 2013-05-26 14:49:45.738 1
  3040. 492 2 Lester Kraus lester.kraus@sakilacustomer.org 497 t 2006-02-14 2013-05-26 14:49:45.738 1
  3041. 493 1 Brent Harkins brent.harkins@sakilacustomer.org 498 t 2006-02-14 2013-05-26 14:49:45.738 1
  3042. 494 2 Ramon Choate ramon.choate@sakilacustomer.org 499 t 2006-02-14 2013-05-26 14:49:45.738 1
  3043. 495 2 Charlie Bess charlie.bess@sakilacustomer.org 500 t 2006-02-14 2013-05-26 14:49:45.738 1
  3044. 496 2 Tyler Wren tyler.wren@sakilacustomer.org 501 t 2006-02-14 2013-05-26 14:49:45.738 1
  3045. 497 2 Gilbert Sledge gilbert.sledge@sakilacustomer.org 502 t 2006-02-14 2013-05-26 14:49:45.738 1
  3046. 498 1 Gene Sanborn gene.sanborn@sakilacustomer.org 503 t 2006-02-14 2013-05-26 14:49:45.738 1
  3047. 499 2 Marc Outlaw marc.outlaw@sakilacustomer.org 504 t 2006-02-14 2013-05-26 14:49:45.738 1
  3048. 500 1 Reginald Kinder reginald.kinder@sakilacustomer.org 505 t 2006-02-14 2013-05-26 14:49:45.738 1
  3049. 501 1 Ruben Geary ruben.geary@sakilacustomer.org 506 t 2006-02-14 2013-05-26 14:49:45.738 1
  3050. 502 1 Brett Cornwell brett.cornwell@sakilacustomer.org 507 t 2006-02-14 2013-05-26 14:49:45.738 1
  3051. 503 1 Angel Barclay angel.barclay@sakilacustomer.org 508 t 2006-02-14 2013-05-26 14:49:45.738 1
  3052. 504 1 Nathaniel Adam nathaniel.adam@sakilacustomer.org 509 t 2006-02-14 2013-05-26 14:49:45.738 1
  3053. 505 1 Rafael Abney rafael.abney@sakilacustomer.org 510 t 2006-02-14 2013-05-26 14:49:45.738 1
  3054. 506 2 Leslie Seward leslie.seward@sakilacustomer.org 511 t 2006-02-14 2013-05-26 14:49:45.738 1
  3055. 507 2 Edgar Rhoads edgar.rhoads@sakilacustomer.org 512 t 2006-02-14 2013-05-26 14:49:45.738 1
  3056. 508 2 Milton Howland milton.howland@sakilacustomer.org 513 t 2006-02-14 2013-05-26 14:49:45.738 1
  3057. 509 1 Raul Fortier raul.fortier@sakilacustomer.org 514 t 2006-02-14 2013-05-26 14:49:45.738 1
  3058. 510 2 Ben Easter ben.easter@sakilacustomer.org 515 t 2006-02-14 2013-05-26 14:49:45.738 0
  3059. 511 1 Chester Benner chester.benner@sakilacustomer.org 516 t 2006-02-14 2013-05-26 14:49:45.738 1
  3060. 512 1 Cecil Vines cecil.vines@sakilacustomer.org 517 t 2006-02-14 2013-05-26 14:49:45.738 1
  3061. 513 2 Duane Tubbs duane.tubbs@sakilacustomer.org 519 t 2006-02-14 2013-05-26 14:49:45.738 1
  3062. 514 2 Franklin Troutman franklin.troutman@sakilacustomer.org 520 t 2006-02-14 2013-05-26 14:49:45.738 1
  3063. 515 1 Andre Rapp andre.rapp@sakilacustomer.org 521 t 2006-02-14 2013-05-26 14:49:45.738 1
  3064. 516 2 Elmer Noe elmer.noe@sakilacustomer.org 522 t 2006-02-14 2013-05-26 14:49:45.738 1
  3065. 517 2 Brad Mccurdy brad.mccurdy@sakilacustomer.org 523 t 2006-02-14 2013-05-26 14:49:45.738 1
  3066. 518 1 Gabriel Harder gabriel.harder@sakilacustomer.org 524 t 2006-02-14 2013-05-26 14:49:45.738 1
  3067. 519 2 Ron Deluca ron.deluca@sakilacustomer.org 525 t 2006-02-14 2013-05-26 14:49:45.738 1
  3068. 520 2 Mitchell Westmoreland mitchell.westmoreland@sakilacustomer.org 526 t 2006-02-14 2013-05-26 14:49:45.738 1
  3069. 521 2 Roland South roland.south@sakilacustomer.org 527 t 2006-02-14 2013-05-26 14:49:45.738 1
  3070. 522 2 Arnold Havens arnold.havens@sakilacustomer.org 528 t 2006-02-14 2013-05-26 14:49:45.738 1
  3071. 523 1 Harvey Guajardo harvey.guajardo@sakilacustomer.org 529 t 2006-02-14 2013-05-26 14:49:45.738 1
  3072. 525 2 Adrian Clary adrian.clary@sakilacustomer.org 531 t 2006-02-14 2013-05-26 14:49:45.738 1
  3073. 526 2 Karl Seal karl.seal@sakilacustomer.org 532 t 2006-02-14 2013-05-26 14:49:45.738 1
  3074. 527 1 Cory Meehan cory.meehan@sakilacustomer.org 533 t 2006-02-14 2013-05-26 14:49:45.738 1
  3075. 528 1 Claude Herzog claude.herzog@sakilacustomer.org 534 t 2006-02-14 2013-05-26 14:49:45.738 1
  3076. 529 2 Erik Guillen erik.guillen@sakilacustomer.org 535 t 2006-02-14 2013-05-26 14:49:45.738 1
  3077. 530 2 Darryl Ashcraft darryl.ashcraft@sakilacustomer.org 536 t 2006-02-14 2013-05-26 14:49:45.738 1
  3078. 531 2 Jamie Waugh jamie.waugh@sakilacustomer.org 537 t 2006-02-14 2013-05-26 14:49:45.738 1
  3079. 532 2 Neil Renner neil.renner@sakilacustomer.org 538 t 2006-02-14 2013-05-26 14:49:45.738 1
  3080. 533 1 Jessie Milam jessie.milam@sakilacustomer.org 539 t 2006-02-14 2013-05-26 14:49:45.738 1
  3081. 534 1 Christian Jung christian.jung@sakilacustomer.org 540 t 2006-02-14 2013-05-26 14:49:45.738 0
  3082. 535 1 Javier Elrod javier.elrod@sakilacustomer.org 541 t 2006-02-14 2013-05-26 14:49:45.738 1
  3083. 536 2 Fernando Churchill fernando.churchill@sakilacustomer.org 542 t 2006-02-14 2013-05-26 14:49:45.738 1
  3084. 537 2 Clinton Buford clinton.buford@sakilacustomer.org 543 t 2006-02-14 2013-05-26 14:49:45.738 1
  3085. 538 2 Ted Breaux ted.breaux@sakilacustomer.org 544 t 2006-02-14 2013-05-26 14:49:45.738 1
  3086. 539 1 Mathew Bolin mathew.bolin@sakilacustomer.org 545 t 2006-02-14 2013-05-26 14:49:45.738 1
  3087. 540 1 Tyrone Asher tyrone.asher@sakilacustomer.org 546 t 2006-02-14 2013-05-26 14:49:45.738 1
  3088. 541 2 Darren Windham darren.windham@sakilacustomer.org 547 t 2006-02-14 2013-05-26 14:49:45.738 1
  3089. 542 2 Lonnie Tirado lonnie.tirado@sakilacustomer.org 548 t 2006-02-14 2013-05-26 14:49:45.738 1
  3090. 543 1 Lance Pemberton lance.pemberton@sakilacustomer.org 549 t 2006-02-14 2013-05-26 14:49:45.738 1
  3091. 544 2 Cody Nolen cody.nolen@sakilacustomer.org 550 t 2006-02-14 2013-05-26 14:49:45.738 1
  3092. 545 2 Julio Noland julio.noland@sakilacustomer.org 551 t 2006-02-14 2013-05-26 14:49:45.738 1
  3093. 546 1 Kelly Knott kelly.knott@sakilacustomer.org 552 t 2006-02-14 2013-05-26 14:49:45.738 1
  3094. 547 1 Kurt Emmons kurt.emmons@sakilacustomer.org 553 t 2006-02-14 2013-05-26 14:49:45.738 1
  3095. 548 1 Allan Cornish allan.cornish@sakilacustomer.org 554 t 2006-02-14 2013-05-26 14:49:45.738 1
  3096. 549 1 Nelson Christenson nelson.christenson@sakilacustomer.org 555 t 2006-02-14 2013-05-26 14:49:45.738 1
  3097. 550 2 Guy Brownlee guy.brownlee@sakilacustomer.org 556 t 2006-02-14 2013-05-26 14:49:45.738 1
  3098. 551 2 Clayton Barbee clayton.barbee@sakilacustomer.org 557 t 2006-02-14 2013-05-26 14:49:45.738 1
  3099. 552 2 Hugh Waldrop hugh.waldrop@sakilacustomer.org 558 t 2006-02-14 2013-05-26 14:49:45.738 1
  3100. 553 1 Max Pitt max.pitt@sakilacustomer.org 559 t 2006-02-14 2013-05-26 14:49:45.738 1
  3101. 554 1 Dwayne Olvera dwayne.olvera@sakilacustomer.org 560 t 2006-02-14 2013-05-26 14:49:45.738 1
  3102. 555 1 Dwight Lombardi dwight.lombardi@sakilacustomer.org 561 t 2006-02-14 2013-05-26 14:49:45.738 1
  3103. 556 2 Armando Gruber armando.gruber@sakilacustomer.org 562 t 2006-02-14 2013-05-26 14:49:45.738 1
  3104. 557 1 Felix Gaffney felix.gaffney@sakilacustomer.org 563 t 2006-02-14 2013-05-26 14:49:45.738 1
  3105. 558 1 Jimmie Eggleston jimmie.eggleston@sakilacustomer.org 564 t 2006-02-14 2013-05-26 14:49:45.738 0
  3106. 559 2 Everett Banda everett.banda@sakilacustomer.org 565 t 2006-02-14 2013-05-26 14:49:45.738 1
  3107. 560 1 Jordan Archuleta jordan.archuleta@sakilacustomer.org 566 t 2006-02-14 2013-05-26 14:49:45.738 1
  3108. 561 2 Ian Still ian.still@sakilacustomer.org 567 t 2006-02-14 2013-05-26 14:49:45.738 1
  3109. 562 1 Wallace Slone wallace.slone@sakilacustomer.org 568 t 2006-02-14 2013-05-26 14:49:45.738 1
  3110. 563 2 Ken Prewitt ken.prewitt@sakilacustomer.org 569 t 2006-02-14 2013-05-26 14:49:45.738 1
  3111. 564 2 Bob Pfeiffer bob.pfeiffer@sakilacustomer.org 570 t 2006-02-14 2013-05-26 14:49:45.738 1
  3112. 565 2 Jaime Nettles jaime.nettles@sakilacustomer.org 571 t 2006-02-14 2013-05-26 14:49:45.738 1
  3113. 566 1 Casey Mena casey.mena@sakilacustomer.org 572 t 2006-02-14 2013-05-26 14:49:45.738 1
  3114. 567 2 Alfredo Mcadams alfredo.mcadams@sakilacustomer.org 573 t 2006-02-14 2013-05-26 14:49:45.738 1
  3115. 568 2 Alberto Henning alberto.henning@sakilacustomer.org 574 t 2006-02-14 2013-05-26 14:49:45.738 1
  3116. 569 2 Dave Gardiner dave.gardiner@sakilacustomer.org 575 t 2006-02-14 2013-05-26 14:49:45.738 1
  3117. 570 2 Ivan Cromwell ivan.cromwell@sakilacustomer.org 576 t 2006-02-14 2013-05-26 14:49:45.738 1
  3118. 571 2 Johnnie Chisholm johnnie.chisholm@sakilacustomer.org 577 t 2006-02-14 2013-05-26 14:49:45.738 1
  3119. 572 1 Sidney Burleson sidney.burleson@sakilacustomer.org 578 t 2006-02-14 2013-05-26 14:49:45.738 1
  3120. 573 1 Byron Box byron.box@sakilacustomer.org 579 t 2006-02-14 2013-05-26 14:49:45.738 1
  3121. 574 2 Julian Vest julian.vest@sakilacustomer.org 580 t 2006-02-14 2013-05-26 14:49:45.738 1
  3122. 575 2 Isaac Oglesby isaac.oglesby@sakilacustomer.org 581 t 2006-02-14 2013-05-26 14:49:45.738 1
  3123. 576 2 Morris Mccarter morris.mccarter@sakilacustomer.org 582 t 2006-02-14 2013-05-26 14:49:45.738 1
  3124. 577 2 Clifton Malcolm clifton.malcolm@sakilacustomer.org 583 t 2006-02-14 2013-05-26 14:49:45.738 1
  3125. 578 2 Willard Lumpkin willard.lumpkin@sakilacustomer.org 584 t 2006-02-14 2013-05-26 14:49:45.738 1
  3126. 579 2 Daryl Larue daryl.larue@sakilacustomer.org 585 t 2006-02-14 2013-05-26 14:49:45.738 1
  3127. 580 1 Ross Grey ross.grey@sakilacustomer.org 586 t 2006-02-14 2013-05-26 14:49:45.738 1
  3128. 581 1 Virgil Wofford virgil.wofford@sakilacustomer.org 587 t 2006-02-14 2013-05-26 14:49:45.738 1
  3129. 582 2 Andy Vanhorn andy.vanhorn@sakilacustomer.org 588 t 2006-02-14 2013-05-26 14:49:45.738 1
  3130. 583 1 Marshall Thorn marshall.thorn@sakilacustomer.org 589 t 2006-02-14 2013-05-26 14:49:45.738 1
  3131. 584 2 Salvador Teel salvador.teel@sakilacustomer.org 590 t 2006-02-14 2013-05-26 14:49:45.738 1
  3132. 585 1 Perry Swafford perry.swafford@sakilacustomer.org 591 t 2006-02-14 2013-05-26 14:49:45.738 1
  3133. 586 1 Kirk Stclair kirk.stclair@sakilacustomer.org 592 t 2006-02-14 2013-05-26 14:49:45.738 1
  3134. 587 1 Sergio Stanfield sergio.stanfield@sakilacustomer.org 593 t 2006-02-14 2013-05-26 14:49:45.738 1
  3135. 588 1 Marion Ocampo marion.ocampo@sakilacustomer.org 594 t 2006-02-14 2013-05-26 14:49:45.738 1
  3136. 589 1 Tracy Herrmann tracy.herrmann@sakilacustomer.org 595 t 2006-02-14 2013-05-26 14:49:45.738 1
  3137. 590 2 Seth Hannon seth.hannon@sakilacustomer.org 596 t 2006-02-14 2013-05-26 14:49:45.738 1
  3138. 591 1 Kent Arsenault kent.arsenault@sakilacustomer.org 597 t 2006-02-14 2013-05-26 14:49:45.738 1
  3139. 592 1 Terrance Roush terrance.roush@sakilacustomer.org 598 t 2006-02-14 2013-05-26 14:49:45.738 0
  3140. 593 2 Rene Mcalister rene.mcalister@sakilacustomer.org 599 t 2006-02-14 2013-05-26 14:49:45.738 1
  3141. 594 1 Eduardo Hiatt eduardo.hiatt@sakilacustomer.org 600 t 2006-02-14 2013-05-26 14:49:45.738 1
  3142. 595 1 Terrence Gunderson terrence.gunderson@sakilacustomer.org 601 t 2006-02-14 2013-05-26 14:49:45.738 1
  3143. 596 1 Enrique Forsythe enrique.forsythe@sakilacustomer.org 602 t 2006-02-14 2013-05-26 14:49:45.738 1
  3144. 597 1 Freddie Duggan freddie.duggan@sakilacustomer.org 603 t 2006-02-14 2013-05-26 14:49:45.738 1
  3145. 598 1 Wade Delvalle wade.delvalle@sakilacustomer.org 604 t 2006-02-14 2013-05-26 14:49:45.738 1
  3146. 599 2 Austin Cintron austin.cintron@sakilacustomer.org 605 t 2006-02-14 2013-05-26 14:49:45.738 1
  3147. \.
  3148.  
  3149.  
  3150. --
  3151. -- Name: customer_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  3152. --
  3153.  
  3154. SELECT pg_catalog.setval('"customer_customer_id_seq"', 599, true);
  3155.  
  3156.  
  3157. --
  3158. -- Data for Name: film; Type: TABLE DATA; Schema: public; Owner: postgres
  3159. --
  3160.  
  3161. COPY "film" ("film_id", "title", "description", "release_year", "language_id", "rental_duration", "rental_rate", "length", "replacement_cost", "rating", "last_update", "special_features", "fulltext") FROM stdin;
  3162. 133 Chamber Italian A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria 2006 1 7 4.99 117 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'chamber':1 'fate':4 'husband':11 'italian':2 'monkey':16 'moos':8 'must':13 'nigeria':18 'overcom':14 'reflect':5
  3163. 384 Grosse Wonderful A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia 2006 1 5 4.99 49 19.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'australia':18 'cat':8 'drama':5 'epic':4 'explor':11 'gross':1 'moos':16 'must':13 'redeem':14 'wonder':2
  3164. 8 Airport Pollock A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India 2006 1 6 4.99 54 15.99 R 2013-05-26 14:50:58.951 {Trailers} 'airport':1 'ancient':18 'confront':14 'epic':4 'girl':11 'india':19 'monkey':16 'moos':8 'must':13 'pollock':2 'tale':5
  3165. 98 Bright Encounters A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat 2006 1 4 4.99 73 12.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'boat':20 'bright':1 'conquer':14 'encount':2 'fate':4 'feminist':11 'jet':19 'lumberjack':8 'must':13 'student':16 'yarn':5
  3166. 1 Academy Dinosaur A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies 2006 1 6 0.99 86 20.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'academi':1 'battl':15 'canadian':20 'dinosaur':2 'drama':5 'epic':4 'feminist':8 'mad':11 'must':14 'rocki':21 'scientist':12 'teacher':17
  3167. 2 Ace Goldfinger A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China 2006 1 3 4.99 48 12.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ace':1 'administr':9 'ancient':19 'astound':4 'car':17 'china':20 'databas':8 'epistl':5 'explor':12 'find':15 'goldfing':2 'must':14
  3168. 3 Adaptation Holes A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory 2006 1 7 2.99 50 18.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'adapt':1 'astound':4 'baloon':19 'car':11 'factori':20 'hole':2 'lumberjack':8,16 'must':13 'reflect':5 'sink':14
  3169. 4 Affair Prejudice A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank 2006 1 5 2.99 117 26.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'affair':1 'chase':14 'documentari':5 'fanci':4 'frisbe':8 'lumberjack':11 'monkey':16 'must':13 'prejudic':2 'shark':19 'tank':20
  3170. 5 African Egg A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico 2006 1 6 2.99 130 22.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'african':1 'chef':11 'dentist':14 'documentari':7 'egg':2 'fast':5 'fast-pac':4 'forens':19 'gulf':23 'mexico':25 'must':16 'pace':6 'pastri':10 'psychologist':20 'pursu':17
  3171. 6 Agent Truman A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China 2006 1 3 2.99 169 17.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'agent':1 'ancient':19 'boy':11 'china':20 'escap':14 'intrepid':4 'must':13 'panorama':5 'robot':8 'sumo':16 'truman':2 'wrestler':17
  3172. 7 Airplane Sierra A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat 2006 1 6 4.99 62 28.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'airplan':1 'boat':20 'butler':11,16 'discov':14 'hunter':8 'jet':19 'must':13 'saga':5 'sierra':2 'touch':4
  3173. 9 Alabama Devil A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat 2006 1 3 2.99 114 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'administr':9 'alabama':1 'boat':23 'databas':8 'devil':2 'jet':22 'mad':12,18 'must':15 'outgun':16 'panorama':5 'scientist':13,19 'thought':4
  3174. 10 Aladdin Calendar A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China 2006 1 6 4.99 63 24.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'action':5 'action-pack':4 'aladdin':1 'ancient':20 'calendar':2 'china':21 'feminist':18 'lumberjack':13 'man':10 'must':15 'pack':6 'reach':16 'tale':7
  3175. 11 Alamo Videotape A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention 2006 1 6 0.99 126 16.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'alamo':1 'bore':4 'butler':8 'cat':11 'chef':17 'convent':21 'epistl':5 'fight':14 'must':13 'mysql':20 'pastri':16 'videotap':2
  3176. 12 Alaska Phantom A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia 2006 1 6 0.99 136 22.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'alaska':1 'australia':19 'boy':17 'chef':12 'fanci':4 'hunter':8 'must':14 'pastri':11 'phantom':2 'saga':5 'vanquish':15
  3177. 213 Date Speed A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention 2006 1 4 0.99 104 19.99 R 2013-05-26 14:50:58.951 {Commentaries} 'compos':8 'convent':20 'date':1 'dentist':16 'discov':14 'moos':11 'must':13 'mysql':19 'saga':5 'speed':2 'touch':4
  3178. 13 Ali Forever A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies 2006 1 4 4.99 150 21.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'ali':1 'battl':16 'canadian':21 'crocodil':13 'dentist':10 'drama':7 'feminist':18 'forev':2 'must':15 'pack':6 'rocki':22
  3179. 14 Alice Fantasia A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia 2006 1 6 0.99 94 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'administr':13 'alic':1 'databas':12 'drama':5 'emot':4 'fantasia':2 'georgia':21 'must':15 'pioneer':18 'shark':9 'soviet':20 'vanquish':16
  3180. 15 Alien Center A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention 2006 1 5 2.99 46 10.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'alien':1 'battl':15 'brilliant':4 'cat':8 'center':2 'convent':21 'drama':5 'feminist':17 'mad':11 'must':14 'mysql':20 'scientist':12
  3181. 16 Alley Evolution A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans 2006 1 6 2.99 180 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'alley':1 'astronaut':18 'battl':16 'compos':13 'drama':7 'evolut':2 'fast':5 'fast-pac':4 'must':15 'new':20 'orlean':21 'pace':6 'robot':10
  3182. 17 Alone Trip A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House 2006 1 3 0.99 82 14.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':22 'alon':1 'boat':19 'charact':7 'compos':11 'dog':14 'fast':5 'fast-pac':4 'fun':23 'hous':24 'must':16 'outgun':17 'pace':6 'studi':8 'trip':2
  3183. 18 Alter Victory A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies 2006 1 6 0.99 57 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'agent':17 'alter':1 'canadian':20 'compos':8 'drama':5 'feminist':11 'meet':14 'must':13 'rocki':21 'secret':16 'thought':4 'victori':2
  3184. 19 Amadeus Holy A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon 2006 1 6 0.99 113 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'amadeus':1 'baloon':20 'battl':15 'display':5 'emot':4 'holi':2 'man':17 'must':14 'pioneer':8 'technic':11 'writer':12
  3185. 20 Amelie Hellfighters A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon 2006 1 4 4.99 79 23.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'ameli':1 'baloon':19 'bore':4 'conquer':14 'drama':5 'hellfight':2 'must':13 'squirrel':11 'student':16 'woman':8
  3186. 21 American Circus A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank 2006 1 3 4.99 129 17.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'administr':17 'american':1 'astronaut':11 'circus':2 'databas':16 'drama':5 'face':14 'girl':8 'insight':4 'must':13 'shark':20 'tank':21
  3187. 22 Amistad Midsummer A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California 2006 1 6 2.99 85 10.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'amistad':1 'california':20 'charact':5 'crocodil':12 'dentist':9 'emot':4 'meet':15 'midsumm':2 'must':14 'studi':6 'sumo':17 'wrestler':18
  3188. 23 Anaconda Confessions A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia 2006 1 3 0.99 92 9.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'anaconda':1 'australia':18 'confess':2 'dentist':8,11 'display':5 'fight':14 'girl':16 'lacklustur':4 'must':13
  3189. 24 Analyze Hoosiers A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert 2006 1 6 2.99 181 19.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4
  3190. 25 Angels Life A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin 2006 1 3 2.99 74 15.99 G 2013-05-26 14:50:58.951 {Trailers} 'angel':1 'astronaut':11 'battl':14 'berlin':18 'display':5 'life':2 'must':13 'robot':16 'thought':4 'woman':8
  3191. 26 Annie Identity A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park 2006 1 3 0.99 86 15.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':20 'amaz':4 'amus':21 'anni':1 'boat':12 'chef':9 'escap':15 'ident':2 'must':14 'panorama':5 'park':22 'pastri':8 'woman':17
  3192. 27 Anonymous Human A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank 2006 1 7 0.99 179 12.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'administr':9,18 'amaz':4 'anonym':1 'astronaut':12 'databas':8,17 'human':2 'must':14 'outrac':15 'reflect':5 'shark':21 'tank':22
  3193. 28 Anthem Luke A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park 2006 1 5 4.99 91 16.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'abandon':19 'amus':20 'anthem':1 'dog':16 'luke':2 'must':13 'outrac':14 'panorama':5 'park':21 'touch':4 'waitress':8 'woman':11
  3194. 29 Antitrust Tomatoes A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India 2006 1 5 2.99 168 11.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':17 'ancient':19 'antitrust':1 'databas':16 'fate':4 'feminist':11 'india':20 'must':13 'succumb':14 'tomato':2 'woman':8 'yarn':5
  3195. 30 Anything Savannah A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House 2006 1 4 2.99 82 27.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'anyth':1 'chase':15 'chef':9 'epic':4 'feminist':17 'fun':21 'hous':22 'must':14 'pastri':8 'savannah':2 'stori':5 'woman':12
  3196. 31 Apache Divine A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat 2006 1 5 4.99 92 16.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'apach':1 'awe':5 'awe-inspir':4 'boat':25 'chef':11 'divin':2 'inspir':6 'must':16 'overcom':17 'pastri':10 'reflect':7 'sumo':19 'teacher':14 'u':24 'u-boat':23 'wrestler':20
  3197. 32 Apocalypse Flamingos A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park 2006 1 6 4.99 119 11.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':19 'amus':20 'apocalyps':1 'astound':4 'defeat':14 'dog':8 'flamingo':2 'must':13 'park':21 'squirrel':11 'stori':5 'woman':16
  3198. 33 Apollo Teen A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft 2006 1 5 2.99 153 15.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':22 'action':5 'action-pack':4 'apollo':1 'crocodil':10 'explor':13 'find':16 'mine':23 'must':15 'pack':6 'reflect':7 'shaft':24 'sumo':18 'teen':2 'wrestler':19
  3199. 34 Arabia Dogma A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria 2006 1 6 0.99 62 29.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'arabia':1 'cow':12 'defeat':15 'dogma':2 'epistl':5 'mad':11 'madman':8 'must':14 'nigeria':19 'student':17 'touch':4
  3200. 35 Arachnophobia Rollercoaster A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station 2006 1 4 2.99 147 24.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'arachnophobia':1 'chef':11 'compos':14 'discov':17 'first':23 'mad':19 'man':24 'must':16 'pack':6 'pastri':10 'reflect':7 'rollercoast':2 'scientist':20 'space':25 'station':26
  3201. 36 Argonauts Town A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft 2006 1 7 0.99 127 12.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':20 'argonaut':1 'butler':12 'challeng':15 'emot':4 'epistl':5 'forens':8 'mine':21 'must':14 'psychologist':9 'shaft':22 'town':2 'waitress':17
  3202. 37 Arizona Bang A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery 2006 1 3 2.99 121 28.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'arizona':1 'bang':2 'brilliant':4 'cow':13 'mad':8,12 'meet':16 'monasteri':21 'must':15 'panorama':5 'pioneer':18 'scientist':9
  3203. 38 Ark Ridgemont A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert 2006 1 6 0.99 68 25.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ark':1 'beauti':4 'desert':20 'explor':16 'monkey':11 'must':13 'pioneer':8 'pursu':14 'ridgemont':2 'sahara':19 'yarn':5
  3204. 39 Armageddon Lost A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft 2006 1 5 0.99 99 10.99 G 2013-05-26 14:50:58.951 {Trailers} 'abandon':21 'armageddon':1 'boat':10 'compos':18 'fast':5 'fast-pac':4 'lost':2 'mine':22 'must':15 'pace':6 'shaft':23 'succumb':16 'tale':7 'teacher':13
  3205. 40 Army Flintstones A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria 2006 1 4 0.99 148 22.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'administr':9 'armi':1 'battl':15 'bore':4 'databas':8 'flintston':2 'must':14 'nigeria':19 'saga':5 'waitress':17 'woman':12
  3206. 41 Arsenic Independence A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin 2006 1 4 0.99 137 17.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'arsenic':1 'berlin':19 'cow':9 'dentist':17 'documentari':5 'fanci':4 'find':15 'independ':2 'mad':8 'must':14 'woman':12
  3207. 42 Artist Coldblooded A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California 2006 1 5 2.99 170 10.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'artist':1 'california':18 'challeng':14 'coldblood':2 'moos':11 'must':13 'reflect':5 'robot':8 'stun':4 'woman':16
  3208. 265 Dying Maker A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California 2006 1 5 4.99 168 28.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'boat':8 'california':18 'cat':16 'die':1 'intrepid':4 'kill':14 'maker':2 'monkey':11 'must':13 'tale':5
  3209. 43 Atlantis Cause A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank 2006 1 6 2.99 170 15.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'atlanti':1 'caus':2 'feminist':8 'fight':14 'hunter':11 'must':13 'shark':20 'tank':21 'technic':16 'thrill':4 'writer':17 'yarn':5
  3210. 44 Attacks Hate A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft 2006 1 5 4.99 113 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':23 'attack':1 'fast':5 'fast-pac':4 'feminist':20 'find':18 'hate':2 'mad':14 'mine':24 'must':17 'pace':6 'panorama':7 'scientist':15 'shaft':25 'technic':10 'writer':11
  3211. 45 Attraction Newton A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan 2006 1 5 4.99 83 14.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'ancient':18 'astound':4 'attract':1 'compos':8 'frisbe':11 'husband':16 'japan':19 'must':13 'newton':2 'panorama':5 'reach':14
  3212. 46 Autumn Crow A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert 2006 1 3 4.99 108 13.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'autumn':1 'battl':15 'beauti':4 'cow':12 'crow':2 'dentist':8 'desert':21 'mad':11 'moos':17 'must':14 'sahara':20 'tale':5
  3213. 47 Baby Hall A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft 2006 1 5 4.99 153 23.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'abandon':21 'babi':1 'bore':4 'charact':5 'feminist':18 'girl':13 'hall':2 'mine':22 'must':15 'outrac':16 'shaft':23 'shark':10 'studi':6
  3214. 48 Backlash Undefeated A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery 2006 1 3 4.99 118 24.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'backlash':1 'car':19 'charact':5 'cow':14 'kill':17 'mad':9,13 'monasteri':22 'must':16 'scientist':10 'studi':6 'stun':4 'undef':2
  3215. 49 Badman Dawn A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat 2006 1 6 2.99 162 22.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'badman':1 'boat':21 'compos':11 'dawn':2 'emot':4 'escap':14 'jet':20 'mad':16 'must':13 'panorama':5 'pioneer':8 'scientist':17
  3216. 50 Baked Cleopatra A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery 2006 1 3 2.99 182 20.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17
  3217. 126 Casualties Encino A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery 2006 1 3 4.99 179 16.99 G 2013-05-26 14:50:58.951 {Trailers} 'boy':18 'casualti':1 'chef':13 'encino':2 'face':16 'insight':4 'monasteri':21 'must':15 'pastri':12 'shark':9 'yarn':5
  3218. 51 Balloon Homeward A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station 2006 1 5 2.99 75 10.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'balloon':1 'build':16 'cow':13 'first':22 'forens':8 'homeward':2 'insight':4 'mad':12,18 'man':23 'must':15 'panorama':5 'psychologist':9 'scientist':19 'space':24 'station':25
  3219. 52 Ballroom Mockingbird A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California 2006 1 6 0.99 173 29.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ballroom':1 'california':18 'compos':8 'documentari':5 'feminist':16 'find':14 'mockingbird':2 'monkey':11 'must':13 'thrill':4
  3220. 53 Bang Kwai A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park 2006 1 5 2.99 87 25.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'amus':21 'bang':1 'cat':11 'drama':5 'epic':4 'face':14 'kwai':2 'madman':8 'must':13 'park':22 'shark':17
  3221. 54 Banger Pinocchio A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station 2006 1 5 0.99 113 15.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'banger':1 'car':10 'chase':17 'chef':14 'crocodil':19 'drama':7 'first':22 'inspir':6 'man':23 'must':16 'pastri':13 'pinocchio':2 'space':24 'station':25
  3222. 55 Barbarella Streetcar A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery 2006 1 6 2.99 65 27.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'awe':5 'awe-inspir':4 'barbarella':1 'cat':13 'conquer':16 'dog':18 'feminist':10 'inspir':6 'monasteri':21 'must':15 'stori':7 'streetcar':2
  3223. 56 Barefoot Manchurian A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park 2006 1 6 2.99 129 15.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':19 'amus':20 'barefoot':1 'cat':8 'girl':16 'intrepid':4 'manchurian':2 'must':13 'park':21 'stori':5 'student':11 'vanquish':14
  3224. 57 Basic Easy A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat 2006 1 4 2.99 90 18.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'basic':1 'boat':21 'easi':2 'epistl':5 'husband':11 'jet':20 'mad':16 'man':8 'must':13 'reach':14 'scientist':17 'stun':4
  3225. 58 Beach Heartbreakers A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia 2006 1 6 2.99 122 16.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'beach':1 'display':5 'fate':4 'georgia':21 'heartbreak':2 'mad':11 'must':14 'outgun':15 'scientist':12 'shark':18 'soviet':20 'woman':8
  3226. 59 Bear Graceland A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station 2006 1 4 2.99 160 20.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'astound':4 'bear':1 'boy':11 'dog':8 'first':19 'graceland':2 'kill':14 'man':20 'must':13 'saga':5 'space':21 'station':22 'teacher':16
  3227. 60 Beast Hunchback A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China 2006 1 3 4.99 89 22.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':20 'awe':5 'awe-inspir':4 'beast':1 'boy':18 'china':21 'defeat':16 'epistl':7 'hunchback':2 'inspir':6 'must':15 'squirrel':13 'student':10
  3228. 61 Beauty Grease A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft 2006 1 5 4.99 175 28.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':21 'beauti':1 'compos':10 'display':7 'fast':5 'fast-pac':4 'greas':2 'mine':22 'moos':13 'must':15 'pace':6 'robot':18 'shaft':23 'sink':16
  3229. 62 Bed Highball A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House 2006 1 5 2.99 106 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':19 'astound':4 'bed':1 'dog':11 'fun':20 'highbal':2 'hous':21 'lumberjack':8 'must':13 'panorama':5 'redeem':14 'woman':16
  3230. 63 Bedazzled Married A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House 2006 1 6 0.99 73 21.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':21 'astound':4 'bedazzl':1 'charact':5 'fun':22 'hous':23 'mad':17 'madman':9 'marri':2 'meet':15 'must':14 'robot':12 'scientist':18 'studi':6
  3231. 64 Beethoven Exorcist A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico 2006 1 6 0.99 151 26.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'beethoven':1 'butler':16 'challeng':14 'display':5 'epic':4 'exorcist':2 'gulf':19 'mexico':21 'must':13 'pioneer':8 'student':11
  3232. 65 Behavior Runaway A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin 2006 1 3 4.99 100 20.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'behavior':1 'berlin':19 'drama':5 'husband':11 'must':13 'outrac':14 'runaway':2 'student':8 'sumo':16 'unbeliev':4 'wrestler':17
  3233. 66 Beneath Rush A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station 2006 1 6 0.99 53 27.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'astound':4 'beneath':1 'discov':14 'first':19 'man':8,16,20 'monkey':11 'must':13 'panorama':5 'rush':2 'space':21 'station':22
  3234. 67 Berets Agent A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China 2006 1 5 2.99 77 24.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'agent':2 'ancient':19 'beret':1 'boy':11 'china':20 'crocodil':8 'must':13 'overcom':14 'saga':5 'taut':4 'technic':16 'writer':17
  3235. 68 Betrayed Rear A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank 2006 1 5 4.99 122 26.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'betray':1 'boat':9 'charact':5 'emot':4 'explor':17 'find':15 'must':14 'pioneer':12 'rear':2 'shark':20 'studi':6 'tank':21
  3236. 69 Beverly Outlaw A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station 2006 1 3 2.99 85 21.99 R 2013-05-26 14:50:58.951 {Trailers} 'bever':1 'boat':11 'defeat':14 'documentari':5 'fanci':4 'first':19 'madman':16 'man':20 'must':13 'outlaw':2 'space':21 'station':22 'woman':8
  3237. 70 Bikini Borrowers A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station 2006 1 7 4.99 142 26.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'astound':4 'astronaut':8 'bikini':1 'borrow':2 'cat':11 'discov':14 'drama':5 'first':19 'man':20 'must':13 'space':21 'station':22 'woman':16
  3238. 71 Bilko Anonymous A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station 2006 1 3 4.99 100 25.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'anonym':2 'bilko':1 'cat':16 'emot':4 'first':19 'man':11,20 'meet':14 'must':13 'reflect':5 'space':21 'station':22 'teacher':8
  3239. 72 Bill Others A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention 2006 1 6 2.99 93 12.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'bill':1 'challeng':16 'convent':22 'forens':12 'mad':8 'must':15 'mysql':21 'other':2 'psychologist':13 'saga':5 'scientist':9 'squirrel':18 'stun':4
  3240. 73 Bingo Talented A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria 2006 1 5 2.99 150 22.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'bingo':1 'crocodil':11 'discov':14 'girl':8 'must':13 'nigeria':18 'tale':5 'talent':2 'touch':4 'waitress':16
  3241. 74 Birch Antitrust A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon 2006 1 4 4.99 162 18.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'antitrust':2 'baloon':19 'birch':1 'dog':16 'fanci':4 'husband':8 'must':13 'outgun':14 'panorama':5 'pioneer':11
  3242. 75 Bird Independence A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies 2006 1 6 4.99 163 14.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'bird':1 'canadian':19 'car':8 'documentari':5 'hunter':16 'independ':2 'must':13 'rocki':20 'sink':14 'student':11 'thrill':4
  3243. 76 Birdcage Casper A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India 2006 1 4 0.99 103 23.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':20 'astronaut':13 'birdcag':1 'casper':2 'fast':5 'fast-pac':4 'feminist':18 'frisbe':10 'india':21 'must':15 'overcom':16 'pace':6 'saga':7
  3244. 77 Birds Perdition A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California 2006 1 5 4.99 61 15.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'bird':1 'bore':4 'california':18 'dog':16 'face':14 'must':13 'perdit':2 'pioneer':11 'stori':5 'woman':8
  3245. 78 Blackout Private A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan 2006 1 7 2.99 85 12.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'agent':19 'ancient':21 'blackout':1 'challeng':16 'chef':9 'intrepid':4 'japan':22 'mad':12 'must':15 'pastri':8 'privat':2 'scientist':13 'secret':18 'yarn':5
  3246. 79 Blade Polish A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station 2006 1 5 0.99 114 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'blade':1 'charact':5 'chef':13 'dentist':18 'fight':16 'first':21 'frisbe':9 'man':22 'must':15 'pastri':12 'polish':2 'space':23 'station':24 'studi':6 'thought':4
  3247. 80 Blanket Beverly A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria 2006 1 7 2.99 148 21.99 G 2013-05-26 14:50:58.951 {Trailers} 'bever':2 'blanket':1 'boat':16 'build':14 'documentari':5 'emot':4 'girl':11 'must':13 'nigeria':18 'student':8
  3248. 81 Blindness Gun A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat 2006 1 6 4.99 103 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'blind':1 'boat':20 'dentist':11 'drama':5 'gun':2 'hunter':16 'jet':19 'meet':14 'must':13 'robot':8 'touch':4
  3249. 82 Blood Argonauts A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse 2006 1 3 0.99 71 13.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'argonaut':2 'blood':1 'bore':4 'drama':5 'explor':8 'kill':14 'lumberjack':16 'man':11 'manhattan':19 'must':13 'penthous':20
  3250. 83 Blues Instinct A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House 2006 1 5 2.99 50 18.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'blue':1 'boat':8 'compos':11 'documentari':5 'forens':16 'fun':21 'hous':22 'insight':4 'instinct':2 'meet':14 'must':13 'psychologist':17
  3251. 84 Boiled Dares A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan 2006 1 7 4.99 102 13.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':20 'awe':5 'awe-inspir':4 'boil':1 'dare':2 'dentist':18 'discov':16 'dog':13 'inspir':6 'japan':21 'must':15 'stori':7 'waitress':10
  3252. 85 Bonnie Holocaust A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan 2006 1 4 0.99 63 29.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ancient':20 'bonni':1 'crocodil':10 'fast':5 'fast-pac':4 'find':16 'holocaust':2 'japan':21 'moos':18 'must':15 'pace':6 'robot':13 'stori':7
  3253. 86 Boogie Amelie A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico 2006 1 6 4.99 121 11.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'ameli':2 'boogi':1 'charact':5 'gulf':22 'husband':9 'lacklustur':4 'mexico':24 'must':15 'studi':6 'succumb':16 'sumo':12 'technic':18 'wrestler':13 'writer':19
  3254. 87 Boondock Ballroom A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico 2006 1 7 0.99 76 14.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ballroom':2 'boondock':1 'boy':11 'crocodil':8 'defeat':14 'fate':4 'gulf':19 'mexico':21 'monkey':16 'must':13 'panorama':5
  3255. 88 Born Spinal A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria 2006 1 7 4.99 179 17.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'born':1 'epistl':5 'frisbe':8 'husband':11 'must':13 'nigeria':18 'pursu':14 'spinal':2 'student':16 'touch':4
  3256. 89 Borrowers Bedazzled A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House 2006 1 7 0.99 63 22.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'bedazzl':2 'borrow':1 'brilliant':4 'defeat':15 'epistl':5 'fun':21 'hous':22 'man':17 'must':14 'sumo':11 'teacher':8 'wrestler':12
  3257. 90 Boulevard Mob A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China 2006 1 3 0.99 63 11.99 R 2013-05-26 14:50:58.951 {Trailers} 'ancient':18 'boulevard':1 'china':19 'confront':14 'epistl':5 'fate':4 'lumberjack':16 'mob':2 'monkey':11 'moos':8 'must':13
  3258. 91 Bound Cheaper A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon 2006 1 5 0.99 98 17.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'administr':9 'astronaut':12 'baloon':20 'bound':1 'challeng':15 'cheaper':2 'databas':8 'lumberjack':17 'must':14 'panorama':5 'thrill':4
  3259. 92 Bowfinger Gables A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California 2006 1 7 4.99 72 19.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'bowfing':1 'california':20 'compos':13 'dentist':18 'fast':5 'fast-pac':4 'gabl':2 'must':15 'outgun':16 'pace':6 'waitress':10 'yarn':7
  3260. 93 Brannigan Sunrise A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin 2006 1 4 4.99 121 27.99 PG 2013-05-26 14:50:58.951 {Trailers} 'amaz':4 'berlin':18 'brannigan':1 'crocodil':11 'dog':16 'epistl':5 'moos':8 'must':13 'outrac':14 'sunris':2
  3261. 94 Braveheart Human A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin 2006 1 7 2.99 176 14.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'battl':15 'berlin':19 'braveheart':1 'chef':12 'dog':8 'girl':17 'human':2 'insight':4 'must':14 'pastri':11 'stori':5
  3262. 95 Breakfast Goldfinger A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin 2006 1 5 4.99 123 18.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'beauti':4 'berlin':18 'breakfast':1 'fight':14 'goldfing':2 'moos':16 'must':13 'reflect':5 'student':8,11
  3263. 96 Breaking Home A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft 2006 1 4 2.99 169 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':21 'agent':9 'battl':15 'beauti':4 'break':1 'display':5 'home':2 'mine':22 'monkey':12 'must':14 'secret':8 'shaft':23 'sumo':17 'wrestler':18
  3264. 97 Bride Intrigue A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans 2006 1 7 0.99 56 24.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'bride':1 'epic':4 'intrigu':2 'man':16 'monkey':11 'must':13 'new':18 'orlean':19 'robot':8 'tale':5 'vanquish':14
  3265. 99 Bringing Hysterical A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat 2006 1 7 2.99 136 14.99 PG 2013-05-26 14:50:58.951 {Trailers} 'boat':22 'bring':1 'fate':4 'find':16 'hyster':2 'jet':21 'must':15 'saga':5 'shark':9 'technic':12 'woman':18 'writer':13
  3266. 100 Brooklyn Desert A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station 2006 1 7 4.99 161 21.99 R 2013-05-26 14:50:58.951 {Commentaries} 'battl':14 'beauti':4 'brooklyn':1 'compos':11 'dentist':8 'desert':2 'drama':5 'first':20 'man':21 'must':13 'space':22 'station':23 'sumo':16 'wrestler':17
  3267. 101 Brotherhood Blanket A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan 2006 1 3 0.99 73 26.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':20 'astronaut':18 'blanket':2 'brotherhood':1 'butler':9 'charact':5 'fate':4 'japan':21 'must':15 'sink':16 'studi':6 'technic':12 'writer':13
  3268. 102 Bubble Grosse A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon 2006 1 4 4.99 60 20.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'baloon':21 'bubbl':1 'confront':16 'crocodil':10 'girl':18 'gross':2 'inspir':6 'moos':13 'must':15 'panorama':7
  3269. 103 Bucket Brotherhood A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory 2006 1 7 4.99 133 27.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'amaz':4 'baloon':19 'brotherhood':2 'bucket':1 'display':5 'factori':20 'girl':8 'lumberjack':16 'must':13 'succumb':14 'woman':11
  3270. 104 Bugsy Song A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station 2006 1 4 2.99 119 17.99 G 2013-05-26 14:50:58.951 {Commentaries} 'agent':12 'awe':5 'awe-inspir':4 'boat':15 'bugsi':1 'charact':7 'find':18 'first':23 'inspir':6 'man':24 'must':17 'secret':11 'song':2 'space':25 'squirrel':20 'station':26 'studi':8
  3271. 105 Bull Shawshank A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies 2006 1 6 0.99 125 21.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'bull':1 'canadian':19 'conquer':14 'drama':5 'fanci':4 'moos':8 'must':13 'pioneer':16 'rocki':20 'shawshank':2 'squirrel':11
  3272. 106 Bulworth Commandments A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback 2006 1 4 2.99 61 14.99 G 2013-05-26 14:50:58.951 {Trailers} 'amaz':4 'bulworth':1 'command':2 'cow':9 'display':5 'mad':8 'must':14 'outback':21 'pioneer':12 'redeem':15 'sumo':17 'wrestler':18
  3273. 107 Bunch Minds A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention 2006 1 4 2.99 63 13.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'bunch':1 'chef':17 'convent':21 'emot':4 'escap':14 'feminist':8,11 'mind':2 'must':13 'mysql':20 'pastri':16 'stori':5
  3274. 108 Butch Panther A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans 2006 1 6 0.99 67 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':12 'butch':1 'databas':11 'face':15 'feminist':8 'hunter':17 'lacklustur':4 'must':14 'new':19 'orlean':20 'panther':2 'yarn':5
  3275. 109 Butterfly Chocolat A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank 2006 1 3 0.99 89 17.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'butterfli':1 'chocolat':2 'compos':11 'conquer':14 'fate':4 'girl':8 'husband':16 'must':13 'shark':19 'stori':5 'tank':20
  3276. 110 Cabin Flash A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory 2006 1 4 0.99 53 25.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'baloon':20 'boat':8 'cabin':1 'challeng':14 'epistl':5 'factori':21 'flash':2 'man':11 'must':13 'shark':17 'stun':4
  3277. 111 Caddyshack Jedi A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia 2006 1 3 0.99 52 17.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'caddyshack':1 'epistl':7 'fight':16 'georgia':21 'inspir':6 'jedi':2 'madman':13 'must':15 'robot':18 'soviet':20 'woman':10
  3278. 112 Calendar Gunfight A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria 2006 1 4 4.99 120 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'calendar':1 'drama':5 'frisbe':8 'gunfight':2 'lumberjack':11 'man':16 'must':13 'nigeria':18 'sink':14 'thrill':4
  3279. 113 California Birds A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India 2006 1 4 4.99 75 19.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':9,18 'ancient':20 'battl':15 'bird':2 'california':1 'databas':8,17 'india':21 'must':14 'robot':12 'thrill':4 'yarn':5
  3280. 114 Camelot Vacation A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention 2006 1 3 0.99 61 26.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'battl':15 'camelot':1 'charact':5 'chef':18 'convent':22 'must':14 'mysql':21 'pastri':17 'studi':6 'touch':4 'vacat':2 'waitress':12 'woman':9
  3281. 115 Campus Remember A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat 2006 1 5 2.99 167 27.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astound':4 'boat':21 'build':15 'campus':1 'cow':12 'crocodil':8 'drama':5 'jet':20 'mad':11 'must':14 'rememb':2 'robot':17
  3282. 116 Candidate Perdition A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station 2006 1 4 2.99 70 10.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'administr':12 'brilliant':4 'candid':1 'compos':8 'databas':11 'epistl':5 'first':21 'mad':17 'man':22 'must':14 'perdit':2 'scientist':18 'space':23 'station':24 'vanquish':15
  3283. 117 Candles Grapes A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House 2006 1 6 4.99 135 15.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':20 'astronaut':17 'build':15 'candl':1 'charact':5 'explor':12 'fanci':4 'fun':21 'grape':2 'hous':22 'monkey':9 'must':14 'studi':6
  3284. 118 Canyon Stock A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse 2006 1 7 0.99 85 26.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'canyon':1 'escap':14 'feminist':11 'manhattan':19 'must':13 'penthous':20 'reflect':5 'squirrel':16 'stock':2 'thought':4 'waitress':8
  3285. 119 Caper Motions A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention 2006 1 6 0.99 176 22.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'caper':1 'car':11 'convent':20 'fate':4 'moos':8 'motion':2 'must':13 'mysql':19 'pursu':14 'saga':5 'woman':16
  3286. 120 Caribbean Liberty A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank 2006 1 3 4.99 92 16.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'caribbean':1 'fanci':4 'liberti':2 'must':14 'outgun':15 'pioneer':8,17 'shark':20 'tale':5 'tank':21 'technic':11 'writer':12
  3287. 121 Carol Texas A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery 2006 1 4 2.99 151 15.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'astound':4 'carol':1 'charact':5 'compos':9,17 'monasteri':20 'must':14 'overcom':15 'student':12 'studi':6 'texa':2
  3288. 122 Carrie Bunch A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies 2006 1 7 0.99 114 11.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'amaz':4 'astronaut':11 'bunch':2 'canadian':19 'carri':1 'discov':14 'epistl':5 'frisbe':16 'must':13 'rocki':20 'student':8
  3289. 123 Casablanca Super A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station 2006 1 6 4.99 85 22.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'agent':18 'amaz':4 'casablanca':1 'crocodil':8 'first':21 'forens':11 'man':22 'must':14 'panorama':5 'psychologist':12 'pursu':15 'secret':17 'space':23 'station':24 'super':2
  3290. 124 Casper Dragonfly A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert 2006 1 3 4.99 163 16.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'boat':8 'casper':1 'chase':14 'crocodil':11 'desert':20 'documentari':5 'dragonfli':2 'intrepid':4 'must':13 'robot':16 'sahara':19
  3291. 125 Cassidy Wyoming A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans 2006 1 5 2.99 61 19.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'agent':17 'cassidi':1 'drama':5 'frisbe':8 'hunter':11 'intrepid':4 'kill':14 'must':13 'new':19 'orlean':20 'secret':16 'wyom':2
  3292. 127 Cat Coneheads A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India 2006 1 5 4.99 112 14.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ancient':21 'boy':19 'cat':1 'conehead':2 'confront':17 'fast':5 'fast-pac':4 'girl':10 'india':22 'must':16 'pace':6 'panorama':7 'shark':14
  3293. 128 Catch Amistad A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria 2006 1 7 0.99 183 10.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16
  3294. 129 Cause Date A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention 2006 1 3 2.99 179 16.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'caus':1 'chef':12 'conquer':15 'convent':21 'date':2 'explor':8 'hunter':17 'must':14 'mysql':20 'pastri':11 'tale':5 'taut':4
  3295. 130 Celebrity Horn A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank 2006 1 7 0.99 110 24.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'agent':9 'amaz':4 'astronaut':12 'celebr':1 'documentari':5 'horn':2 'hunter':17 'must':14 'secret':8 'shark':20 'tank':21 'vanquish':15
  3296. 131 Center Dinosaur A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California 2006 1 5 4.99 152 12.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'beauti':4 'california':20 'center':1 'charact':5 'dentist':13 'dinosaur':2 'dog':18 'find':16 'must':15 'studi':6 'sumo':9 'wrestler':10
  3297. 132 Chainsaw Uptown A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia 2006 1 6 0.99 114 25.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'australia':18 'beauti':4 'boy':8 'chainsaw':1 'discov':14 'documentari':5 'must':13 'robot':11 'squirrel':16 'uptown':2
  3298. 134 Champion Flatliners A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery 2006 1 4 4.99 51 21.99 PG 2013-05-26 14:50:58.951 {Trailers} 'amaz':4 'champion':1 'cow':9 'dog':12 'flatlin':2 'husband':17 'kill':15 'mad':8 'monasteri':20 'must':14 'stori':5
  3299. 135 Chance Resurrection A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China 2006 1 3 2.99 70 22.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':20 'astound':4 'chanc':1 'china':21 'forens':8,12 'moos':18 'must':15 'overcom':16 'psychologist':9,13 'resurrect':2 'stori':5
  3300. 154 Clash Freddy A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia 2006 1 6 2.99 81 12.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'amaz':4 'astronaut':16 'australia':18 'clash':1 'compos':8 'escap':14 'freddi':2 'must':13 'squirrel':11 'yarn':5
  3301. 136 Chaplin License A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India 2006 1 7 2.99 146 26.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':19 'bore':4 'chaplin':1 'dog':8 'drama':5 'explor':17 'forens':11 'india':20 'licens':2 'must':14 'outrac':15 'psychologist':12
  3302. 137 Charade Duffel A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention 2006 1 3 2.99 66 21.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'build':16 'charad':1 'convent':22 'display':7 'dog':18 'duffel':2 'man':10 'must':15 'mysql':21 'pack':6 'waitress':13
  3303. 138 Chariots Conspiracy A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station 2006 1 5 2.99 71 29.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'chariot':1 'chase':14 'conspiraci':2 'epistl':5 'first':19 'husband':11 'man':20 'must':13 'robot':8,16 'space':21 'station':22 'unbeliev':4
  3304. 139 Chasing Fight A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank 2006 1 7 4.99 114 21.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'astound':4 'battl':15 'butler':12,17 'chase':1 'fight':2 'must':14 'saga':5 'shark':20 'tank':21 'technic':8 'writer':9
  3305. 140 Cheaper Clyde A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan 2006 1 6 0.99 87 23.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':19 'charact':5 'cheaper':1 'clyde':2 'discov':15 'dog':17 'emot':4 'girl':12 'japan':20 'must':14 'pioneer':9 'studi':6
  3306. 141 Chicago North A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California 2006 1 6 4.99 185 11.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5
  3307. 142 Chicken Hellfighters A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia 2006 1 3 0.99 122 24.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'australia':19 'chicken':1 'dog':8 'drama':5 'emot':4 'explor':11 'hellfight':2 'must':13 'outrac':14 'technic':16 'writer':17
  3308. 143 Chill Luck A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies 2006 1 6 0.99 142 17.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'boat':8 'canadian':21 'chill':1 'epistl':5 'fight':15 'lacklustur':4 'luck':2 'must':14 'rocki':22 'shark':18 'technic':11 'writer':12
  3309. 144 Chinatown Gladiator A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India 2006 1 7 4.99 61 24.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'ancient':19 'brilliant':4 'butler':17 'chinatown':1 'escap':15 'gladiat':2 'india':20 'lumberjack':12 'must':14 'panorama':5 'technic':8 'writer':9
  3310. 145 Chisum Behavior A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India 2006 1 5 4.99 124 25.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':19 'behavior':2 'butler':12 'car':17 'chisum':1 'documentari':5 'epic':4 'india':20 'kill':15 'must':14 'sumo':8 'wrestler':9
  3311. 146 Chitty Lock A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station 2006 1 6 2.99 107 24.99 G 2013-05-26 14:50:58.951 {Commentaries} 'administr':12 'boat':8 'bore':4 'chitti':1 'databas':11 'epistl':5 'first':21 'kill':15 'lock':2 'man':22 'must':14 'space':23 'station':24 'sumo':17 'wrestler':18
  3312. 147 Chocolat Harry A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan 2006 1 5 0.99 101 16.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'ancient':21 'chocolat':1 'cow':19 'dentist':10 'epistl':7 'harri':2 'japan':22 'mad':18 'meet':16 'moos':13 'must':15 'pack':6
  3313. 148 Chocolate Duck A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China 2006 1 3 2.99 132 13.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':20 'china':21 'chocol':1 'compos':18 'discov':16 'duck':2 'mad':8 'must':15 'scientist':9 'stori':5 'technic':12 'unbeliev':4 'writer':13
  3314. 149 Christmas Moonshine A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse 2006 1 7 0.99 150 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'astronaut':13 'boat':18 'christma':1 'conquer':16 'epistl':7 'feminist':10 'manhattan':21 'moonshin':2 'must':15 'pack':6 'penthous':22
  3315. 150 Cider Desire A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia 2006 1 7 2.99 101 9.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'cat':18 'charact':5 'cider':1 'compos':9 'cow':13 'desir':2 'georgia':21 'mad':12 'must':15 'soviet':20 'studi':6 'stun':4 'succumb':16
  3316. 151 Cincinatti Whisperer A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin 2006 1 5 4.99 143 26.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'berlin':19 'brilliant':4 'butler':17 'chef':9 'cincinatti':1 'confront':15 'hunter':12 'must':14 'pastri':8 'saga':5 'whisper':2
  3317. 152 Circus Youth A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon 2006 1 5 2.99 90 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'chef':9 'circus':1 'dentist':12 'drama':5 'girl':17 'must':14 'pastri':8 'pursu':15 'thought':4 'youth':2
  3318. 153 Citizen Shrek A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback 2006 1 7 0.99 165 18.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'charact':5 'citizen':1 'fanci':4 'husband':13 'must':15 'outback':21 'redeem':16 'robot':18 'shrek':2 'studi':6 'technic':9 'writer':10
  3319. 155 Cleopatra Devil A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon 2006 1 6 0.99 150 26.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'baloon':21 'cleopatra':1 'crocodil':8 'devil':2 'documentari':5 'fanci':4 'fight':15 'must':14 'shark':18 'technic':11 'writer':12
  3320. 156 Clerks Angels A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon 2006 1 3 4.99 164 15.99 G 2013-05-26 14:50:58.951 {Commentaries} 'angel':2 'baloon':20 'clerk':1 'confront':15 'display':5 'girl':12 'man':17 'must':14 'sumo':8 'thrill':4 'wrestler':9
  3321. 157 Clockwork Paradise A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon 2006 1 7 0.99 143 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'cat':17 'challeng':15 'clockwork':1 'documentari':5 'feminist':12 'insight':4 'must':14 'paradis':2 'technic':8 'writer':9
  3322. 158 Clones Pinocchio A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans 2006 1 6 2.99 124 16.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'amaz':4 'car':8 'clone':1 'dentist':16 'drama':5 'must':13 'new':18 'orlean':19 'pinocchio':2 'pursu':14 'robot':11
  3323. 159 Closer Bang A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India 2006 1 5 4.99 58 12.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'ancient':18 'bang':2 'closer':1 'frisbe':8 'hunter':11 'india':19 'monkey':16 'must':13 'panorama':5 'unbeliev':4 'vanquish':14
  3324. 160 Club Graffiti A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat 2006 1 4 0.99 65 12.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'boat':21 'club':1 'epic':4 'escap':14 'girl':16 'graffiti':2 'hunter':11 'must':13 'pioneer':8 'tale':5 'u':20 'u-boat':19
  3325. 161 Clue Grail A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China 2006 1 6 4.99 70 27.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':19 'build':15 'butler':8 'china':20 'clue':1 'crocodil':17 'grail':2 'mad':11 'must':14 'scientist':12 'tale':5 'taut':4
  3326. 162 Clueless Bucket A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House 2006 1 4 2.99 95 13.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'bucket':2 'car':8 'clueless':1 'conquer':14 'fun':21 'hous':22 'must':13 'pioneer':11 'sumo':16 'tale':5 'taut':4 'wrestler':17
  3327. 163 Clyde Theory A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat 2006 1 4 0.99 139 29.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'astronaut':8 'beauti':4 'boat':20 'clyde':1 'explor':16 'frisbe':11 'jet':19 'must':13 'overcom':14 'theori':2 'yarn':5
  3328. 164 Coast Rainbow A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert 2006 1 4 0.99 55 20.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'astound':4 'butler':17 'challeng':15 'coast':1 'cow':9 'desert':21 'documentari':5 'mad':8 'must':14 'pioneer':12 'rainbow':2 'sahara':20
  3329. 184 Core Suit A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse 2006 1 3 2.99 92 24.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':16 'car':8 'confront':14 'core':1 'explor':11 'manhattan':19 'must':13 'penthous':20 'suit':2 'tale':5 'unbeliev':4
  3330. 165 Coldblooded Darling A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico 2006 1 7 4.99 70 27.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'brilliant':4 'coldblood':1 'darl':2 'dentist':8 'find':14 'gulf':19 'mexico':21 'moos':11 'must':13 'panorama':5 'student':16
  3331. 166 Color Philadelphia A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert 2006 1 6 2.99 149 19.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'car':8 'color':1 'crocodil':11 'desert':20 'monkey':16 'must':13 'panorama':5 'philadelphia':2 'sahara':19 'sink':14 'thought':4
  3332. 167 Coma Head A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California 2006 1 6 4.99 109 10.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'awe':5 'awe-inspir':4 'boy':10 'california':21 'chef':19 'coma':1 'drama':7 'escap':16 'frisbe':13 'head':2 'inspir':6 'must':15 'pastri':18
  3333. 168 Comancheros Enemy A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico 2006 1 5 0.99 67 23.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'bore':4 'comanchero':1 'enemi':2 'find':14 'gulf':19 'lumberjack':8 'mexico':21 'monkey':11,16 'must':13 'saga':5
  3334. 169 Comforts Rush A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft 2006 1 3 2.99 76 19.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':20 'comfort':1 'cow':17 'husband':11 'mad':16 'meet':14 'mine':21 'must':13 'panorama':5 'pioneer':8 'rush':2 'shaft':22 'unbeliev':4
  3335. 170 Command Darling A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan 2006 1 5 4.99 120 28.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'administr':20 'ancient':22 'awe':5 'awe-inspir':4 'challeng':17 'command':1 'darl':2 'databas':19 'forens':10 'inspir':6 'japan':23 'must':16 'psychologist':11 'tale':7 'woman':14
  3336. 171 Commandments Express A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft 2006 1 6 4.99 59 13.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':20 'battl':15 'command':1 'express':2 'fanci':4 'hunter':17 'mad':11 'mine':21 'must':14 'saga':5 'scientist':12 'shaft':22 'student':8
  3337. 172 Coneheads Smoochy A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria 2006 1 7 4.99 112 12.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'compos':11 'conehead':1 'husband':16 'must':13 'nigeria':18 'pursu':14 'smoochi':2 'stori':5 'touch':4 'woman':8
  3338. 173 Confessions Maguire A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon 2006 1 7 4.99 65 25.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'baloon':20 'battl':14 'boy':11 'car':8 'confess':1 'insight':4 'maguir':2 'must':13 'stori':5 'technic':16 'writer':17
  3339. 174 Confidential Interview A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan 2006 1 6 4.99 180 13.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'ancient':18 'astronaut':16 'cat':8 'confidenti':1 'find':14 'interview':2 'japan':19 'must':13 'reflect':5 'stun':4 'woman':11
  3340. 175 Confused Candles A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon 2006 1 3 2.99 122 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'candl':2 'cat':8 'confront':15 'confus':1 'epistl':5 'forens':11 'must':14 'pioneer':17 'psychologist':12 'stun':4
  3341. 176 Congeniality Quest A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon 2006 1 6 0.99 87 21.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'baloon':20 'cat':8 'chef':12 'congeni':1 'documentari':5 'find':15 'lumberjack':17 'must':14 'pastri':11 'quest':2 'touch':4
  3342. 177 Connecticut Tramp A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank 2006 1 4 4.99 172 20.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'connecticut':1 'cow':12 'crocodil':8 'dentist':17 'drama':5 'mad':11 'must':14 'reach':15 'shark':20 'tank':21 'tramp':2 'unbeliev':4
  3343. 178 Connection Microcosmos A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station 2006 1 6 0.99 115 25.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'connect':1 'crocodil':8 'documentari':5 'face':14 'fate':4 'first':19 'husband':11,16 'man':20 'microcosmo':2 'must':13 'space':21 'station':22
  3344. 179 Conquerer Nuts A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft 2006 1 4 4.99 173 14.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'conquer':1 'drama':5 'escap':15 'mad':8 'man':12 'mine':21 'must':14 'nut':2 'pioneer':17 'scientist':9 'shaft':22 'taut':4
  3345. 180 Conspiracy Spirit A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft 2006 1 4 2.99 184 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10
  3346. 181 Contact Anonymous A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India 2006 1 7 2.99 166 10.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'administr':18 'ancient':20 'anonym':2 'contact':1 'databas':17 'display':5 'face':15 'india':21 'insight':4 'monkey':12 'must':14 'shark':9
  3347. 182 Control Anthem A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery 2006 1 7 4.99 185 9.99 G 2013-05-26 14:50:58.951 {Commentaries} 'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11
  3348. 183 Conversation Downhill A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention 2006 1 4 4.99 112 14.99 R 2013-05-26 14:50:58.951 {Commentaries} 'charact':5 'convent':21 'convers':1 'downhil':2 'husband':9 'must':14 'mysql':20 'sink':15 'squirrel':17 'studi':6 'taut':4 'waitress':12
  3349. 185 Cowboy Doom A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon 2006 1 3 2.99 146 10.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'astound':4 'baloon':19 'boy':8 'butler':16 'cowboy':1 'doom':2 'drama':5 'fight':14 'lumberjack':11 'must':13
  3350. 186 Craft Outfield A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory 2006 1 6 0.99 64 17.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'administr':17 'baloon':20 'craft':1 'databas':16 'display':5 'explor':8 'factori':21 'hunter':11 'lacklustur':4 'must':13 'outfield':2 'succumb':14
  3351. 187 Cranes Reservoir A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory 2006 1 5 2.99 57 12.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'baloon':20 'crane':1 'documentari':5 'dog':11 'factori':21 'fanci':4 'forens':16 'must':13 'outgun':14 'psychologist':17 'reservoir':2 'teacher':8
  3352. 188 Crazy Home A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback 2006 1 7 2.99 136 24.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'administr':17 'boy':8 'crazi':1 'databas':16 'fanci':4 'home':2 'must':13 'outback':20 'panorama':5 'vanquish':14 'woman':11
  3353. 189 Creatures Shakespeare A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India 2006 1 3 0.99 139 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':18 'creatur':1 'crocodil':16 'drama':5 'emot':4 'india':19 'must':13 'shakespear':2 'squirrel':11 'vanquish':14 'woman':8
  3354. 190 Creepers Kane A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat 2006 1 5 4.99 172 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'awe':5 'awe-inspir':4 'boat':13,22 'car':18 'creeper':1 'inspir':6 'jet':21 'kane':2 'must':15 'outrac':16 'reflect':7 'squirrel':10
  3355. 191 Crooked Frogmen A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park 2006 1 6 0.99 143 27.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'administr':12 'amus':21 'battl':15 'crocodil':17 'crook':1 'databas':11 'drama':5 'frogmen':2 'hunter':8 'must':14 'park':22 'unbeliev':4
  3356. 192 Crossing Divorce A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin 2006 1 4 4.99 50 19.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'berlin':18 'cross':1 'divorc':2 'documentari':5 'dog':8 'must':13 'redeem':14 'robot':11 'woman':16
  3357. 193 Crossroads Casualties A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback 2006 1 5 2.99 153 20.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'astronaut':12 'battl':15 'casualti':2 'compos':17 'crossroad':1 'documentari':5 'intrepid':4 'must':14 'outback':20 'sumo':8 'wrestler':9
  3358. 194 Crow Grease A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station 2006 1 6 0.99 104 22.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'administr':19 'awe':5 'awe-inspir':4 'crow':1 'databas':18 'documentari':7 'first':22 'greas':2 'husband':13 'inspir':6 'man':23 'must':15 'sink':16 'space':24 'station':25 'woman':10
  3359. 195 Crowds Telemark A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House 2006 1 3 4.99 112 16.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':20 'astronaut':8 'crowd':1 'documentari':5 'find':15 'forens':11 'frisbe':17 'fun':21 'hous':22 'intrepid':4 'must':14 'psychologist':12 'telemark':2
  3360. 196 Cruelty Unforgiven A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria 2006 1 7 0.99 69 29.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'battl':14 'brilliant':4 'car':8 'cruelti':1 'dentist':16 'moos':11 'must':13 'nigeria':18 'tale':5 'unforgiven':2
  3361. 197 Crusade Honey A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park 2006 1 4 2.99 112 27.99 R 2013-05-26 14:50:58.951 {Commentaries} 'abandon':21 'amus':22 'battl':16 'butler':13 'crusad':1 'explor':10 'fast':5 'fast-pac':4 'honey':2 'madman':18 'must':15 'pace':6 'park':23 'reflect':7
  3362. 198 Crystal Breaking A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan 2006 1 6 2.99 184 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8
  3363. 199 Cupboard Sinners A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park 2006 1 4 2.99 56 29.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':20 'amus':21 'boat':11 'chef':17 'cupboard':1 'emot':4 'frisbe':8 'must':13 'park':22 'pastri':16 'reach':14 'reflect':5 'sinner':2
  3364. 200 Curtain Videotape A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank 2006 1 7 0.99 133 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'agent':18 'bore':4 'chase':15 'cow':12 'curtain':1 'dentist':8 'mad':11 'must':14 'reflect':5 'secret':17 'shark':21 'tank':22 'videotap':2
  3365. 201 Cyclone Family A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention 2006 1 7 2.99 176 18.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'convent':20 'cyclon':1 'drama':5 'famili':2 'lacklustur':4 'monkey':11 'must':13 'mysql':19 'sink':14 'student':8 'woman':16
  3366. 202 Daddy Pittsburgh A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico 2006 1 5 4.99 161 26.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'confront':15 'daddi':1 'epic':4 'explor':17 'gulf':20 'mexico':22 'must':14 'pittsburgh':2 'shark':9 'stori':5 'student':12
  3367. 203 Daisy Menagerie A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India 2006 1 5 4.99 84 9.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':21 'chef':11 'compos':19 'daisi':1 'fast':5 'fast-pac':4 'india':22 'menageri':2 'monkey':14 'must':16 'pace':6 'pastri':10 'saga':7 'sink':17
  3368. 204 Dalmations Sweden A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse 2006 1 4 0.99 106 25.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'dalmat':1 'emot':4 'epistl':5 'hunter':11 'manhattan':19 'moos':8 'must':13 'overcom':14 'penthous':20 'robot':16 'sweden':2
  3369. 205 Dances None A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park 2006 1 3 0.99 58 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'amus':21 'butler':17 'danc':1 'dog':12 'insight':4 'kill':15 'must':14 'none':2 'park':22 'reflect':5 'shark':9
  3370. 206 Dancing Fever A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank 2006 1 6 0.99 144 25.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'crocodil':17 'danc':1 'explor':8 'face':15 'fever':2 'forens':11 'must':14 'psychologist':12 'shark':20 'stori':5 'stun':4 'tank':21
  3371. 207 Dangerous Uptown A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California 2006 1 7 4.99 121 26.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'california':19 'danger':1 'dog':17 'mad':8 'must':14 'overcom':15 'scientist':9 'stori':5 'unbeliev':4 'uptown':2 'woman':12
  3372. 208 Dares Pluto A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans 2006 1 7 2.99 89 16.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'astronaut':16 'dare':1 'defeat':14 'dentist':11 'fate':4 'must':13 'new':18 'orlean':19 'pluto':2 'robot':8 'stori':5
  3373. 209 Darkness War A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert 2006 1 6 2.99 99 24.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'boy':16 'dark':1 'desert':20 'documentari':5 'escap':14 'hunter':11 'husband':8 'must':13 'sahara':19 'touch':4 'war':2
  3374. 210 Darko Dorado A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans 2006 1 3 4.99 130 13.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'darko':1 'dog':16 'dorado':2 'frisbe':8 'husband':11 'must':13 'new':18 'orlean':19 'redeem':14 'reflect':5 'stun':4
  3375. 211 Darling Breaking A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico 2006 1 7 4.99 165 20.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'astronaut':8 'break':2 'brilliant':4 'darl':1 'documentari':5 'gulf':19 'mexico':21 'must':13 'squirrel':11 'student':16 'succumb':14
  3376. 212 Darn Forrester A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat 2006 1 7 4.99 185 14.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':22 'darn':1 'explor':12 'fate':4 'forrest':2 'jet':21 'must':14 'shark':9 'stori':5 'succumb':15 'technic':17 'writer':18
  3377. 214 Daughter Madigan A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station 2006 1 3 4.99 59 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'beauti':4 'confront':15 'daughter':1 'first':20 'hunter':8 'mad':11 'madigan':2 'man':21 'must':14 'scientist':12 'space':22 'squirrel':17 'station':23 'tale':5
  3378. 215 Dawn Pond A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin 2006 1 4 4.99 57 27.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'berlin':19 'dawn':1 'defeat':15 'dentist':8 'documentari':5 'forens':11 'must':14 'pond':2 'psychologist':12 'thought':4 'waitress':17
  3379. 216 Day Unfaithful A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat 2006 1 3 4.99 113 16.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':23 'compos':8 'day':1 'documentari':5 'find':15 'mad':11 'must':14 'scientist':12 'stun':4 'technic':17 'u':22 'u-boat':21 'unfaith':2 'writer':18
  3380. 217 Dazed Punk A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park 2006 1 6 4.99 120 20.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':23 'action':5 'action-pack':4 'amus':24 'daze':1 'discov':17 'forens':19 'must':16 'pack':6 'park':25 'pioneer':10 'psychologist':20 'punk':2 'stori':7 'technic':13 'writer':14
  3381. 218 Deceiver Betrayed A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India 2006 1 7 0.99 122 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':18 'betray':2 'build':14 'deceiv':1 'husband':16 'india':19 'moos':8 'must':13 'squirrel':11 'stori':5 'taut':4
  3382. 219 Deep Crusade A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia 2006 1 6 4.99 51 20.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'amaz':4 'australia':18 'compos':16 'crocodil':8 'crusad':2 'deep':1 'discov':14 'must':13 'squirrel':11 'tale':5
  3383. 220 Deer Virginian A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia 2006 1 7 2.99 106 13.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'cow':9 'deer':1 'georgia':21 'mad':8,17 'must':14 'overcom':15 'scientist':18 'soviet':20 'stori':5 'thought':4 'virginian':2 'woman':12
  3384. 221 Deliverance Mulholland A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank 2006 1 4 0.99 100 9.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'astound':4 'butler':16 'conquer':14 'deliver':1 'monkey':8 'moos':11 'mulholland':2 'must':13 'saga':5 'shark':19 'tank':20
  3385. 222 Desert Poseidon A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans 2006 1 4 4.99 64 27.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'astronaut':16 'brilliant':4 'build':14 'butler':8 'desert':1 'documentari':5 'frisbe':11 'must':13 'new':18 'orlean':19 'poseidon':2
  3386. 223 Desire Alien A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station 2006 1 7 2.99 76 24.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'alien':2 'astronaut':19 'desir':1 'dog':10 'fast':5 'fast-pac':4 'first':22 'forens':13 'man':23 'meet':17 'must':16 'pace':6 'psychologist':14 'space':24 'station':25 'tale':7
  3387. 224 Desperate Trainspotting A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California 2006 1 7 4.99 81 29.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'california':19 'desper':1 'epic':4 'face':15 'forens':8 'lumberjack':17 'must':14 'psychologist':9 'teacher':12 'trainspot':2 'yarn':5
  3388. 225 Destination Jerk A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat 2006 1 3 0.99 76 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'beauti':4 'boat':21 'build':14 'car':16 'cat':11 'destin':1 'jerk':2 'must':13 'teacher':8 'u':20 'u-boat':19 'yarn':5
  3389. 226 Destiny Saturday A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia 2006 1 4 4.99 56 20.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'conquer':14 'crocodil':8,11 'destini':1 'drama':5 'explor':16 'georgia':19 'must':13 'saturday':2 'soviet':18 'touch':4
  3390. 227 Details Packer A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat 2006 1 4 4.99 88 17.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'boat':16,21 'compos':11 'detail':1 'epic':4 'face':14 'must':13 'packer':2 'saga':5 'u':20 'u-boat':19 'waitress':8
  3391. 228 Detective Vision A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan 2006 1 4 0.99 143 16.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':18 'detect':1 'documentari':5 'fanci':4 'hunter':16 'japan':19 'must':13 'pioneer':8 'redeem':14 'vision':2 'woman':11
  3392. 229 Devil Desire A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan 2006 1 6 4.99 87 12.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'administr':17 'ancient':19 'beauti':4 'databas':16 'dentist':11 'desir':2 'devil':1 'face':14 'japan':20 'monkey':8 'must':13 'reflect':5
  3393. 230 Diary Panic A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India 2006 1 7 2.99 107 20.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'ancient':20 'charact':5 'cow':13 'diari':1 'frisbe':9 'india':21 'mad':12 'man':18 'must':15 'outgun':16 'panic':2 'studi':6 'thought':4
  3394. 231 Dinosaur Secretary A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies 2006 1 7 2.99 63 27.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'action':5 'action-pack':4 'canadian':21 'dinosaur':1 'drama':7 'feminist':10 'girl':13 'must':15 'pack':6 'reach':16 'robot':18 'rocki':22 'secretari':2
  3395. 232 Dirty Ace A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback 2006 1 7 2.99 147 29.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'ace':2 'action':5 'action-pack':4 'build':18 'charact':7 'dentist':20 'dirti':1 'forens':11 'girl':15 'must':17 'outback':23 'pack':6 'psychologist':12 'studi':8
  3396. 233 Disciple Mother A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank 2006 1 3 0.99 141 17.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'boat':12 'discipl':1 'face':15 'mad':8 'moos':17 'mother':2 'must':14 'reflect':5 'scientist':9 'shark':20 'tank':21 'touch':4
  3397. 234 Disturbing Scarface A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat 2006 1 6 2.99 94 27.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'boat':21 'butler':11 'crocodil':8 'display':5 'disturb':1 'lacklustur':4 'monkey':16 'must':13 'overcom':14 'scarfac':2 'u':20 'u-boat':19
  3398. 235 Divide Monster A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery 2006 1 6 2.99 68 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'divid':1 'forens':11 'intrepid':4 'man':8 'monasteri':20 'monster':2 'must':14 'psychologist':12 'reach':15 'saga':5 'squirrel':17
  3399. 236 Divine Resurrection A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park 2006 1 4 2.99 100 19.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':20 'amus':21 'bore':4 'charact':5 'divin':1 'man':9 'must':14 'park':22 'resurrect':2 'studi':6 'succumb':15 'teacher':17 'woman':12
  3400. 237 Divorce Shining A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India 2006 1 3 2.99 47 21.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'ancient':18 'cat':16 'crocodil':8 'discov':14 'divorc':1 'india':19 'must':13 'saga':5 'shine':2 'student':11 'unbeliev':4
  3401. 238 Doctor Grail A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback 2006 1 4 2.99 57 29.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'doctor':1 'drama':5 'forens':16 'grail':2 'insight':4 'must':13 'outback':20 'psychologist':17 'reach':14 'waitress':11 'woman':8
  3402. 239 Dogma Family A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans 2006 1 5 4.99 122 16.99 G 2013-05-26 14:50:58.951 {Commentaries} 'administr':10 'astronaut':18 'brilliant':4 'charact':5 'databas':9 'dogma':1 'famili':2 'monkey':13 'must':15 'new':20 'orlean':21 'studi':6 'succumb':16
  3403. 240 Dolls Rage A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback 2006 1 7 2.99 120 10.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'display':5 'doll':1 'escap':14 'frisbe':11 'must':13 'outback':19 'pioneer':8 'rage':2 'teacher':16 'thrill':4
  3404. 241 Donnie Alley A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan 2006 1 4 0.99 125 20.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'alley':2 'ancient':20 'awe':5 'awe-inspir':4 'butler':10 'donni':1 'frisbe':13 'inspir':6 'japan':21 'must':15 'tale':7 'teacher':18 'vanquish':16
  3405. 242 Doom Dancing A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention 2006 1 4 0.99 68 13.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'astound':4 'battl':15 'car':8 'convent':21 'danc':2 'doom':1 'lumberjack':17 'mad':11 'must':14 'mysql':20 'panorama':5 'scientist':12
  3406. 243 Doors President A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico 2006 1 3 4.99 49 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'boy':18 'display':7 'door':1 'gulf':21 'inspir':6 'mexico':23 'must':15 'overcom':16 'presid':2 'squirrel':10 'woman':13
  3407. 244 Dorado Notting A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California 2006 1 5 4.99 139 26.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'action':5 'action-pack':4 'california':22 'dorado':1 'frisbe':20 'meet':18 'must':17 'not':2 'pack':6 'shark':15 'sumo':10 'tale':7 'wrestler':11
  3408. 245 Double Wrath A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico 2006 1 4 0.99 177 28.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'challeng':14 'dog':11 'doubl':1 'gulf':19 'madman':16 'mexico':21 'must':13 'thought':4 'woman':8 'wrath':2 'yarn':5
  3409. 246 Doubtfire Labyrinth A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert 2006 1 5 4.99 154 16.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'butler':8 'compos':11 'cow':17 'desert':21 'doubtfir':1 'intrepid':4 'labyrinth':2 'mad':16 'meet':14 'must':13 'panorama':5 'sahara':20
  3410. 247 Downhill Enough A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert 2006 1 3 0.99 47 19.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'chef':9 'desert':22 'downhil':1 'emot':4 'enough':2 'forens':12 'monkey':18 'must':15 'pastri':8 'psychologist':13 'sahara':21 'succumb':16 'tale':5
  3411. 248 Dozen Lion A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies 2006 1 6 4.99 177 20.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'canadian':19 'cat':8 'defeat':14 'dozen':1 'drama':5 'frisbe':16 'girl':11 'lion':2 'must':13 'rocki':20 'taut':4
  3412. 249 Dracula Crystal A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House 2006 1 7 0.99 176 26.99 G 2013-05-26 14:50:58.951 {Commentaries} 'abandon':19 'cat':11 'crystal':2 'dracula':1 'feminist':8 'find':14 'frisbe':16 'fun':20 'hous':21 'must':13 'reflect':5 'thrill':4
  3413. 250 Dragon Squad A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China 2006 1 4 0.99 170 26.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':18 'boy':8 'china':19 'dragon':1 'must':13 'outgun':14 'reflect':5 'squad':2 'taut':4 'teacher':16 'waitress':11
  3414. 251 Dragonfly Strangers A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria 2006 1 6 4.99 133 19.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'bore':4 'documentari':5 'dragonfli':1 'man':11,16 'must':13 'nigeria':18 'pioneer':8 'stranger':2 'vanquish':14
  3415. 252 Dream Pickup A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico 2006 1 6 2.99 135 18.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'car':8 'compos':11 'display':5 'dream':1 'epic':4 'forens':16 'gulf':20 'mexico':22 'must':13 'overcom':14 'pickup':2 'psychologist':17
  3416. 253 Drifter Commandments A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat 2006 1 5 4.99 61 18.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'boat':20 'command':2 'discov':14 'drifter':1 'epic':4 'husband':16 'jet':19 'must':13 'reflect':5 'squirrel':11 'woman':8
  3417. 254 Driver Annie A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House 2006 1 4 2.99 159 11.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'anni':2 'boat':17 'butler':9 'car':12 'charact':5 'driver':1 'fun':21 'hous':22 'lacklustur':4 'must':14 'redeem':15 'studi':6
  3418. 255 Driving Polish A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft 2006 1 6 4.99 175 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':22 'action':5 'action-pack':4 'boat':19 'drive':1 'feminist':10 'mine':23 'must':16 'pack':6 'polish':2 'shaft':24 'sink':17 'technic':13 'writer':14 'yarn':7
  3419. 256 Drop Waterfront A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China 2006 1 6 4.99 178 20.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':18 'china':19 'documentari':5 'drop':1 'explor':11 'fanci':4 'husband':8 'madman':16 'must':13 'reach':14 'waterfront':2
  3420. 257 Drumline Cyclone A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies 2006 1 3 0.99 110 14.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'canadian':21 'cyclon':2 'drumlin':1 'insight':4 'mad':17 'monkey':8 'must':14 'outrac':15 'panorama':5 'rocki':22 'scientist':18 'sumo':11 'wrestler':12
  3421. 258 Drums Dynamite A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park 2006 1 6 0.99 96 11.99 PG 2013-05-26 14:50:58.951 {Trailers} 'abandon':19 'amus':20 'confront':14 'crocodil':8,11 'display':5 'dog':16 'drum':1 'dynamit':2 'epic':4 'must':13 'park':21
  3422. 259 Duck Racer A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank 2006 1 4 2.99 116 15.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'dog':16 'duck':1 'lacklustur':4 'must':13 'overcom':14 'racer':2 'shark':19 'squirrel':11 'tank':20 'teacher':8 'yarn':5
  3423. 260 Dude Blindness A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House 2006 1 3 4.99 132 9.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'blind':2 'dude':1 'face':14 'frisbe':16 'fun':20 'hous':21 'husband':8 'lumberjack':11 'must':13 'reflect':5 'stun':4
  3424. 261 Duffel Apocalypse A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention 2006 1 5 0.99 171 13.99 G 2013-05-26 14:50:58.951 {Commentaries} 'apocalyps':2 'boat':8 'challeng':14 'convent':20 'display':5 'duffel':1 'emot':4 'explor':11 'madman':16 'must':13 'mysql':19
  3425. 262 Dumbo Lust A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico 2006 1 5 0.99 119 17.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'conquer':14 'dentist':11 'display':5 'dumbo':1 'feminist':8 'gulf':19 'husband':16 'lust':2 'mexico':21 'must':13 'touch':4
  3426. 263 Durham Panky A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft 2006 1 6 4.99 154 14.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':20 'boy':11 'brilliant':4 'durham':1 'face':14 'girl':8 'mad':16 'mine':21 'must':13 'panki':2 'panorama':5 'scientist':17 'shaft':22
  3427. 264 Dwarfs Alter A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan 2006 1 6 2.99 101 13.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'alter':2 'ancient':18 'challeng':14 'compos':16 'dog':11 'dwarf':1 'emot':4 'girl':8 'japan':19 'must':13 'yarn':5
  3428. 266 Dynamite Tarzan A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat 2006 1 4 0.99 141 27.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':23 'documentari':5 'dynamit':1 'explor':18 'face':16 'forens':8 'intrepid':4 'mad':12 'must':15 'psychologist':9 'scientist':13 'tarzan':2 'u':22 'u-boat':21
  3429. 267 Eagles Panky A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert 2006 1 4 4.99 140 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'boy':11 'car':8 'desert':21 'eagl':1 'find':14 'must':13 'panki':2 'sahara':20 'shark':17 'stori':5 'thought':4
  3430. 268 Early Home A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback 2006 1 6 4.99 96 27.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'amaz':4 'earli':1 'home':2 'husband':12 'mad':8 'meet':15 'must':14 'outback':20 'panorama':5 'scientist':9 'woman':17
  3431. 269 Earring Instinct A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria 2006 1 3 0.99 98 22.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'charact':5 'cow':13 'dentist':9 'earring':1 'find':16 'instinct':2 'mad':12 'must':15 'nigeria':20 'studi':6 'stun':4 'teacher':18
  3432. 270 Earth Vision A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India 2006 1 7 0.99 85 29.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'ancient':18 'butler':8 'drama':5 'earth':1 'india':19 'madman':11 'must':13 'outrac':14 'stun':4 'vision':2 'woman':16
  3433. 271 Easy Gladiator A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India 2006 1 5 4.99 148 12.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':19 'chef':17 'easi':1 'fate':4 'girl':11 'gladiat':2 'india':20 'monkey':8 'must':13 'overcom':14 'pastri':16 'stori':5
  3434. 272 Edge Kissing A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat 2006 1 5 4.99 153 9.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'beauti':4 'boat':22 'compos':8 'cow':12 'edg':1 'jet':21 'kiss':2 'mad':11,17 'must':14 'redeem':15 'scientist':18 'yarn':5
  3435. 273 Effect Gladiator A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse 2006 1 6 0.99 107 14.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'beauti':4 'chef':9,13 'display':5 'effect':1 'forens':18 'gladiat':2 'manhattan':22 'must':15 'outgun':16 'pastri':8,12 'penthous':23 'psychologist':19
  3436. 274 Egg Igby A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station 2006 1 4 2.99 67 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'administr':18 'beauti':4 'boat':8 'databas':17 'documentari':5 'egg':1 'first':21 'igbi':2 'man':22 'must':14 'space':23 'station':24 'succumb':15 'sumo':11 'wrestler':12
  3437. 275 Egypt Tenenbaums A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park 2006 1 3 0.99 85 11.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'agent':12 'amus':21 'astronaut':17 'egypt':1 'intrepid':4 'madman':8 'must':14 'outrac':15 'park':22 'secret':11 'stori':5 'tenenbaum':2
  3438. 276 Element Freddy A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat 2006 1 6 4.99 115 28.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'awe':5 'awe-inspir':4 'boat':23 'cow':19 'element':1 'freddi':2 'inspir':6 'jet':22 'kill':16 'mad':18 'must':15 'reflect':7 'squirrel':13 'waitress':10
  3439. 277 Elephant Trojan A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon 2006 1 4 4.99 126 24.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'baloon':20 'beauti':4 'eleph':1 'forens':11 'frisbe':17 'lumberjack':8 'must':14 'overcom':15 'panorama':5 'psychologist':12 'trojan':2
  3440. 278 Elf Murder A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft 2006 1 4 4.99 155 19.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'abandon':21 'action':5 'action-pack':4 'elf':1 'frisbe':10 'girl':18 'mine':22 'murder':2 'must':15 'pack':6 'reach':16 'shaft':23 'stori':7 'woman':13
  3441. 279 Elizabeth Shane A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan 2006 1 7 4.99 152 11.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'ancient':19 'display':5 'dog':11 'elizabeth':1 'face':14 'japan':20 'lacklustur':4 'must':13 'shane':2 'sumo':16 'woman':8 'wrestler':17
  3442. 280 Empire Malkovich A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House 2006 1 7 0.99 177 26.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'abandon':19 'amaz':4 'car':16 'cat':11 'empir':1 'face':14 'feminist':8 'fun':20 'hous':21 'malkovich':2 'must':13 'stori':5
  3443. 281 Encino Elf A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon 2006 1 6 0.99 143 9.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'astound':4 'baloon':19 'confront':14 'drama':5 'elf':2 'encino':1 'feminist':8 'husband':16 'must':13 'teacher':11
  3444. 282 Encounters Curtain A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans 2006 1 5 0.99 92 20.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'boat':17 'build':15 'chef':9 'curtain':2 'encount':1 'epistl':5 'insight':4 'must':14 'new':19 'orlean':20 'pastri':8 'woman':12
  3445. 283 Ending Crowds A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin 2006 1 6 0.99 85 10.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'berlin':18 'crowd':2 'dentist':8 'display':5 'end':1 'madman':11 'must':13 'squirrel':16 'unbeliev':4 'vanquish':14
  3446. 284 Enemy Odds A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India 2006 1 5 4.99 77 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'ancient':19 'astronaut':17 'enemi':1 'fanci':4 'india':20 'mad':8 'must':14 'odd':2 'panorama':5 'pursu':15 'scientist':9 'woman':12
  3447. 285 English Bulworth A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China 2006 1 3 0.99 51 18.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ancient':20 'bulworth':2 'chef':9,13 'china':21 'crocodil':18 'english':1 'epistl':5 'intrepid':4 'must':15 'pastri':8,12 'pursu':16
  3448. 286 Enough Raging A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert 2006 1 7 2.99 158 16.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'agent':13 'astound':4 'boat':9 'charact':5 'cow':19 'desert':23 'enough':1 'find':16 'mad':18 'must':15 'rage':2 'sahara':22 'secret':12 'studi':6
  3449. 287 Entrapment Satisfaction A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat 2006 1 5 0.99 176 19.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':22 'cow':17 'entrap':1 'hunter':8 'mad':16 'must':13 'panorama':5 'reach':14 'satisfact':2 'teacher':11 'thought':4 'u':21 'u-boat':20
  3450. 288 Escape Metropolis A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans 2006 1 7 2.99 167 20.99 R 2013-05-26 14:50:58.951 {Trailers} 'astronaut':8 'boat':17 'escap':1 'metropoli':2 'must':14 'new':19 'orlean':20 'outgun':15 'taut':4 'technic':11 'writer':12 'yarn':5
  3451. 289 Eve Resurrection A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon 2006 1 5 4.99 66 25.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':15 'awe':5 'awe-inspir':4 'baloon':23 'challeng':18 'chef':11 'databas':14 'eve':1 'inspir':6 'must':17 'pastri':10 'resurrect':2 'teacher':20 'yarn':7
  3452. 290 Everyone Craft A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria 2006 1 4 0.99 163 29.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'butler':16 'craft':2 'dentist':11 'display':5 'everyon':1 'fate':4 'must':13 'nigeria':18 'reach':14 'waitress':8
  3453. 291 Evolution Alter A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory 2006 1 5 0.99 174 10.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'alter':2 'baloon':20 'charact':5 'evolut':1 'explor':17 'factori':21 'fanci':4 'feminist':9 'find':15 'madman':12 'must':14 'studi':6
  3454. 292 Excitement Eve A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank 2006 1 3 0.99 51 20.99 G 2013-05-26 14:50:58.951 {Commentaries} 'brilliant':4 'car':11 'conquer':14 'crocodil':16 'documentari':5 'eve':2 'excit':1 'monkey':8 'must':13 'shark':19 'tank':20
  3455. 293 Exorcist Sting A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin 2006 1 6 2.99 167 17.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'berlin':20 'conquer':15 'dog':8 'drama':5 'exorcist':1 'mad':17 'must':14 'scientist':18 'sting':2 'sumo':11 'touch':4 'wrestler':12
  3456. 294 Expecations Natural A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat 2006 1 5 4.99 138 26.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'amaz':4 'boat':22 'butler':8 'drama':5 'expec':1 'husband':11 'must':13 'natur':2 'reach':14 'shark':17 'u':21 'u-boat':20
  3457. 295 Expendable Stallion A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat 2006 1 3 0.99 97 14.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'amaz':4 'boat':23 'charact':5 'cow':10 'discov':16 'expend':1 'hunter':18 'mad':9 'must':15 'squirrel':13 'stallion':2 'studi':6 'u':22 'u-boat':21
  3458. 296 Express Lonely A Boring Drama of a Astronaut And a Boat who must Face a Boat in California 2006 1 5 2.99 178 23.99 R 2013-05-26 14:50:58.951 {Trailers} 'astronaut':8 'boat':11,16 'bore':4 'california':18 'drama':5 'express':1 'face':14 'lone':2 'must':13
  3459. 297 Extraordinary Conquerer A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin 2006 1 6 2.99 122 29.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'berlin':19 'conquer':2 'dog':8 'extraordinari':1 'face':14 'feminist':11 'forens':16 'must':13 'psychologist':17 'stori':5 'stun':4
  3460. 298 Eyes Driving A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback 2006 1 4 2.99 172 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'cat':8 'drive':2 'explor':16 'eye':1 'fight':14 'must':13 'outback':19 'stori':5 'thrill':4 'waitress':11
  3461. 299 Factory Dragon A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert 2006 1 4 0.99 144 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'action':5 'action-pack':4 'desert':22 'dragon':2 'escap':16 'factori':1 'frisbe':13 'lumberjack':18 'must':15 'pack':6 'saga':7 'sahara':21 'teacher':10
  3462. 300 Falcon Volume A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans 2006 1 5 4.99 102 21.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'falcon':1 'fate':4 'hunter':12 'must':14 'new':20 'orlean':21 'redeem':15 'saga':5 'shark':18 'sumo':8 'volum':2 'wrestler':9
  3463. 301 Family Sweet A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin 2006 1 4 0.99 155 24.99 R 2013-05-26 14:50:58.951 {Trailers} 'berlin':18 'boy':11 'documentari':5 'epic':4 'escap':14 'famili':1 'must':13 'sweet':2 'teacher':8 'woman':16
  3464. 302 Fantasia Park A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia 2006 1 5 2.99 131 29.99 G 2013-05-26 14:50:58.951 {Commentaries} 'australia':20 'documentari':5 'fantasia':1 'feminist':18 'mad':8 'must':15 'outrac':16 'park':2 'scientist':9 'shark':13 'thought':4
  3465. 303 Fantasy Troopers A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention 2006 1 6 0.99 58 27.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'agent':17 'convent':21 'fantasi':1 'monkey':11 'must':13 'mysql':20 'overcom':14 'saga':5 'secret':16 'teacher':8 'touch':4 'trooper':2
  3466. 304 Fargo Gandhi A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback 2006 1 3 2.99 130 28.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'chef':9 'crocodil':12 'fargo':1 'gandhi':2 'must':14 'outback':20 'pastri':8 'reach':15 'reflect':5 'teacher':17 'thrill':4
  3467. 305 Fatal Haunted A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan 2006 1 6 2.99 91 24.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'agent':12 'ancient':19 'beauti':4 'confront':15 'dentist':17 'drama':5 'fatal':1 'haunt':2 'japan':20 'must':14 'secret':11 'student':8
  3468. 306 Feathers Metal A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia 2006 1 3 0.99 104 12.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'australia':18 'dog':16 'feather':1 'find':14 'metal':2 'monkey':8 'must':13 'teacher':11 'thought':4 'yarn':5
  3469. 307 Fellowship Autumn A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon 2006 1 6 4.99 77 9.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'autumn':2 'baloon':19 'dentist':8 'fellowship':1 'hunter':11 'lacklustur':4 'meet':14 'must':13 'reflect':5 'teacher':16
  3470. 308 Ferris Mother A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico 2006 1 3 2.99 142 13.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'display':5 'ferri':1 'frisbe':8,11 'girl':16 'gulf':19 'kill':14 'mexico':21 'mother':2 'must':13 'touch':4
  3471. 309 Feud Frogmen A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies 2006 1 6 0.99 98 29.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':9 'brilliant':4 'canadian':21 'chase':16 'cow':13 'databas':8 'feud':1 'frogmen':2 'mad':12 'must':15 'reflect':5 'rocki':22 'woman':18
  3472. 310 Fever Empire A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico 2006 1 5 4.99 158 20.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'boat':11,16 'cat':8 'defeat':14 'empir':2 'fever':1 'gulf':19 'insight':4 'mexico':21 'must':13 'panorama':5
  3473. 311 Fiction Christmas A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft 2006 1 4 0.99 72 14.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'battl':15 'christma':2 'emot':4 'fiction':1 'mine':21 'must':14 'robot':17 'shaft':22 'shark':9 'student':12 'yarn':5
  3474. 312 Fiddler Lost A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico 2006 1 4 4.99 75 20.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'bore':4 'challeng':14 'dog':11 'fiddler':1 'gulf':19 'lost':2 'madman':16 'mexico':21 'must':13 'squirrel':8 'tale':5
  3475. 313 Fidelity Devil A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat 2006 1 5 4.99 118 11.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'boat':25 'chef':20 'compos':14 'devil':2 'drama':7 'fidel':1 'inspir':6 'must':16 'pastri':19 'reach':17 'technic':10 'u':24 'u-boat':23 'writer':11
  3476. 314 Fight Jawbreaker A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse 2006 1 3 0.99 91 13.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'escap':14 'fight':1 'girl':11,16 'intrepid':4 'jawbreak':2 'manhattan':19 'must':13 'panorama':5 'penthous':20 'woman':8
  3477. 315 Finding Anaconda A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans 2006 1 4 0.99 156 10.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'administr':9 'anaconda':2 'battl':15 'databas':8 'fate':4 'find':1 'girl':12 'must':14 'new':19 'orlean':20 'squirrel':17 'tale':5
  3478. 316 Fire Wolves A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria 2006 1 5 4.99 173 18.99 R 2013-05-26 14:50:58.951 {Trailers} 'documentari':5 'dog':11 'fire':1 'frisbe':8 'intrepid':4 'lumberjack':16 'must':13 'nigeria':18 'outrac':14 'wolv':2
  3479. 317 Fireball Philadelphia A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft 2006 1 4 0.99 148 25.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'abandon':20 'amaz':4 'dentist':8 'firebal':1 'madman':17 'mine':21 'must':14 'philadelphia':2 'shaft':22 'shark':12 'vanquish':15 'yarn':5
  3480. 318 Firehouse Vietnam A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert 2006 1 7 0.99 103 14.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'boat':11 'boy':14 'charact':7 'chef':20 'desert':24 'firehous':1 'inspir':6 'kill':17 'must':16 'pastri':19 'sahara':23 'studi':8 'vietnam':2
  3481. 319 Fish Opus A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia 2006 1 4 2.99 125 22.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'astronaut':16 'australia':18 'confront':14 'display':5 'feminist':8 'fish':1 'girl':11 'must':13 'opus':2 'touch':4
  3482. 320 Flamingos Connecticut A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert 2006 1 4 4.99 80 28.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'cat':18 'compos':10,13 'connecticut':2 'desert':22 'fast':5 'fast-pac':4 'flamingo':1 'meet':16 'must':15 'pace':6 'reflect':7 'sahara':21
  3483. 321 Flash Wars A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico 2006 1 3 4.99 123 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'astound':4 'chase':15 'chef':12 'flash':1 'gulf':20 'mexico':22 'moos':8 'must':14 'pastri':11 'saga':5 'student':17 'war':2
  3484. 322 Flatliners Killer A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft 2006 1 5 2.99 100 29.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':20 'agent':9 'display':5 'flatlin':1 'killer':2 'mine':21 'must':14 'robot':17 'secret':8 'shaft':22 'sink':15 'taut':4 'waitress':12
  3485. 323 Flight Lies A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans 2006 1 7 4.99 179 22.99 R 2013-05-26 14:50:58.951 {Trailers} 'charact':5 'crocodil':9 'flight':1 'lie':2 'must':14 'new':19 'orlean':20 'pioneer':12 'pursu':15 'studi':6 'stun':4 'teacher':17
  3486. 324 Flintstones Happiness A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California 2006 1 3 4.99 148 11.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boy':16 'california':18 'fate':4 'flintston':1 'happi':2 'husband':8 'moos':11 'must':13 'stori':5 'vanquish':14
  3487. 325 Floats Garden A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan 2006 1 6 2.99 145 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'ancient':20 'boat':18 'car':13 'chase':16 'epistl':7 'float':1 'garden':2 'japan':21 'must':15 'pack':6 'robot':10
  3488. 326 Flying Hook A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria 2006 1 6 2.99 69 18.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'challeng':15 'cow':9 'display':5 'dog':12 'fli':1 'frisbe':17 'hook':2 'mad':8 'must':14 'nigeria':19 'thrill':4
  3489. 327 Fool Mockingbird A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat 2006 1 3 4.99 158 24.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'boat':21 'compos':11 'crocodil':8 'defeat':14 'fool':1 'lacklustur':4 'madman':16 'mockingbird':2 'must':13 'tale':5 'u':20 'u-boat':19
  3490. 328 Forever Candidate A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat 2006 1 7 2.99 131 28.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':22 'candid':2 'forev':1 'frisbe':17 'man':12 'must':14 'panorama':5 'pursu':15 'technic':8 'u':21 'u-boat':20 'unbeliev':4 'writer':9
  3491. 329 Forrest Sons A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat 2006 1 4 2.99 63 15.99 R 2013-05-26 14:50:58.951 {Commentaries} 'boat':21 'butler':12 'defeat':15 'documentari':5 'explor':17 'forens':8 'forrest':1 'jet':20 'must':14 'psychologist':9 'son':2 'thrill':4
  3492. 330 Forrester Comancheros A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria 2006 1 7 4.99 112 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'comanchero':2 'fate':4 'forens':11 'forrest':1 'man':17 'must':14 'nigeria':19 'psychologist':12 'redeem':15 'squirrel':8 'tale':5
  3493. 331 Forward Temple A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans 2006 1 6 2.99 90 25.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'astound':4 'challeng':16 'display':5 'forens':8 'forward':1 'girl':18 'mad':12 'must':15 'new':20 'orlean':21 'psychologist':9 'scientist':13 'templ':2
  3494. 332 Frankenstein Stranger A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria 2006 1 7 0.99 159 16.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'charact':5 'chef':18 'feminist':9 'frankenstein':1 'insight':4 'must':14 'nigeria':20 'pastri':17 'pioneer':12 'pursu':15 'stranger':2 'studi':6
  3495. 333 Freaky Pocus A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico 2006 1 7 2.99 126 16.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'chase':17 'chef':11 'crocodil':14 'documentari':7 'fast':5 'fast-pac':4 'freaki':1 'gulf':22 'mexico':24 'must':16 'pace':6 'pastri':10 'pocus':2 'squirrel':19
  3496. 334 Freddy Storm A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback 2006 1 6 4.99 65 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'freddi':1 'husband':16 'intrepid':4 'lumberjack':11 'man':8 'must':13 'outback':19 'saga':5 'storm':2 'vanquish':14
  3497. 335 Freedom Cleopatra A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon 2006 1 5 0.99 133 23.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'baloon':20 'cleopatra':2 'cow':12 'dentist':8 'emot':4 'face':15 'freedom':1 'mad':11 'must':14 'reflect':5 'squirrel':17
  3498. 336 French Holiday A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin 2006 1 5 4.99 99 22.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'berlin':18 'dog':8 'epistl':5 'feminist':11 'french':1 'holiday':2 'kill':14 'madman':16 'must':13 'thrill':4
  3499. 337 Frida Slipper A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft 2006 1 6 2.99 73 11.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'boat':16 'car':11 'escap':14 'fate':4 'frida':1 'lumberjack':8 'mine':20 'must':13 'shaft':21 'slipper':2 'stori':5
  3500. 338 Frisco Forrest A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank 2006 1 6 4.99 51 23.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'documentari':5 'forrest':2 'frisco':1 'mad':16 'must':13 'pioneer':11 'pursu':14 'scientist':17 'shark':20 'tank':21 'woman':8
  3501. 339 Frogmen Breaking A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia 2006 1 5 0.99 111 17.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'australia':19 'break':2 'cat':12 'chase':15 'frogmen':1 'lumberjack':17 'mad':8 'must':14 'scientist':9 'unbeliev':4 'yarn':5
  3502. 340 Frontier Cabin A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House 2006 1 6 4.99 183 14.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11
  3503. 341 Frost Head A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention 2006 1 5 0.99 82 13.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'amaz':4 'cat':11 'convent':20 'discov':14 'frost':1 'head':2 'husband':16 'lumberjack':8 'must':13 'mysql':19 'reflect':5
  3504. 342 Fugitive Maguire A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia 2006 1 7 4.99 83 28.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'australia':19 'battl':15 'crocodil':17 'epistl':5 'feminist':8 'fugit':1 'maguir':2 'must':14 'sumo':11 'taut':4 'wrestler':12
  3505. 343 Full Flatliners A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank 2006 1 6 2.99 94 14.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'astronaut':8 'beauti':4 'documentari':5 'flatlin':2 'full':1 'monkey':16 'moos':11 'must':13 'pursu':14 'shark':19 'tank':20
  3506. 344 Fury Murder A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery 2006 1 3 0.99 178 28.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':8 'fight':15 'forens':11 'furi':1 'lacklustur':4 'monasteri':20 'murder':2 'must':14 'psychologist':12 'reflect':5 'waitress':17
  3507. 345 Gables Metropolis A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory 2006 1 3 0.99 161 17.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'baloon':20 'cat':8 'challeng':14 'chef':17 'display':5 'factori':21 'fate':4 'gabl':1 'metropoli':2 'must':13 'pastri':16 'pioneer':11
  3508. 346 Galaxy Sweethearts A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin 2006 1 4 4.99 128 13.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'berlin':18 'emot':4 'face':14 'galaxi':1 'must':13 'pioneer':11 'reflect':5 'squirrel':16 'sweetheart':2 'woman':8
  3509. 347 Games Bowfinger A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery 2006 1 7 4.99 119 17.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astound':4 'bowfing':2 'butler':8,16 'challeng':14 'documentari':5 'explor':11 'game':1 'monasteri':19 'must':13
  3510. 348 Gandhi Kwai A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin 2006 1 7 0.99 86 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'agent':13 'berlin':20 'boat':18 'chase':16 'display':5 'gandhi':1 'kwai':2 'mad':8 'must':15 'scientist':9 'secret':12 'thought':4
  3511. 349 Gangs Pride A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin 2006 1 4 2.99 185 27.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9
  3512. 350 Garden Island A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback 2006 1 3 4.99 80 21.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'charact':5 'garden':1 'island':2 'madman':12 'man':17 'must':14 'outback':20 'reach':15 'studi':6 'unbeliev':4 'woman':9
  3513. 351 Gaslight Crusade A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico 2006 1 4 2.99 106 10.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'amaz':4 'astronaut':11 'boy':8 'crusad':2 'epistl':5 'gaslight':1 'gulf':19 'man':16 'mexico':21 'must':13 'redeem':14
  3514. 352 Gathering Calendar A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention 2006 1 4 0.99 176 22.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'calendar':2 'conquer':14 'convent':20 'frisbe':16 'gather':1 'intrepid':4 'moos':11 'must':13 'mysql':19 'pioneer':8 'tale':5
  3515. 353 Gentlemen Stage A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station 2006 1 6 2.99 125 22.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'dentist':18 'first':21 'gentlemen':1 'inspir':6 'man':22 'monkey':10 'must':15 'overcom':16 'reflect':7 'space':23 'stage':2 'station':24 'student':13
  3516. 354 Ghost Groundhog A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India 2006 1 6 4.99 85 18.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':18 'brilliant':4 'car':16 'compos':11 'ghost':1 'groundhog':2 'india':19 'madman':8 'must':13 'panorama':5 'succumb':14
  3517. 355 Ghostbusters Elf A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin 2006 1 7 0.99 101 18.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'berlin':18 'chase':14 'compos':16 'dog':8 'elf':2 'epistl':5 'feminist':11 'ghostbust':1 'must':13 'thought':4
  3518. 356 Giant Troopers A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies 2006 1 5 2.99 102 10.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'canadian':19 'display':5 'fate':4 'feminist':8 'giant':1 'monkey':11,16 'must':13 'rocki':20 'trooper':2 'vanquish':14
  3519. 357 Gilbert Pelican A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse 2006 1 7 0.99 114 13.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'conquer':14 'crocodil':16 'fate':4 'feminist':11 'gilbert':1 'man':8 'manhattan':19 'must':13 'pelican':2 'penthous':20 'tale':5
  3520. 358 Gilmore Boiled A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat 2006 1 5 0.99 163 29.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'boat':8,21 'boil':2 'documentari':5 'gilmor':1 'husband':11 'must':13 'student':16 'succumb':14 'u':20 'u-boat':19 'unbeliev':4
  3521. 359 Gladiator Westward A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan 2006 1 6 4.99 173 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ancient':19 'astound':4 'dentist':17 'gladiat':1 'japan':20 'must':14 'reflect':5 'sink':15 'squirrel':8 'sumo':11 'westward':2 'wrestler':12
  3522. 360 Glass Dying A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan 2006 1 4 0.99 103 24.99 G 2013-05-26 14:50:58.951 {Trailers} 'ancient':18 'astound':4 'astronaut':11 'die':2 'dog':16 'drama':5 'fight':14 'frisbe':8 'glass':1 'japan':19 'must':13
  3523. 361 Gleaming Jawbreaker A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies 2006 1 5 2.99 89 25.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'amaz':4 'canadian':20 'car':17 'compos':8 'discov':15 'display':5 'forens':11 'gleam':1 'jawbreak':2 'must':14 'psychologist':12 'rocki':21
  3524. 362 Glory Tracy A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station 2006 1 7 2.99 115 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'amaz':4 'cat':16 'discov':14 'first':19 'glori':1 'man':20 'must':13 'saga':5 'space':21 'station':22 'traci':2 'woman':8,11
  3525. 363 Go Purple A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon 2006 1 3 0.99 54 12.99 R 2013-05-26 14:50:58.951 {Trailers} 'administr':14 'baloon':22 'battl':17 'car':10 'databas':13 'display':7 'fast':5 'fast-pac':4 'go':1 'must':16 'pace':6 'purpl':2 'woman':19
  3526. 364 Godfather Diary A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback 2006 1 3 2.99 73 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'car':16 'chase':14 'diari':2 'godfath':1 'lumberjack':8 'must':13 'outback':19 'saga':5 'squirrel':11 'stun':4
  3527. 365 Gold River A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory 2006 1 4 4.99 154 21.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':9 'baloon':21 'databas':8 'documentari':5 'factori':22 'gold':1 'mad':17 'must':14 'reach':15 'river':2 'scientist':18 'taut':4 'waitress':12
  3528. 366 Goldfinger Sensibility A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans 2006 1 3 0.99 93 29.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'chef':18 'defeat':15 'drama':5 'goldfing':1 'hunter':12 'insight':4 'mad':8 'must':14 'new':20 'orlean':21 'pastri':17 'scientist':9 'sensibl':2
  3529. 367 Goldmine Tycoon A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback 2006 1 6 0.99 153 20.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'brilliant':4 'compos':8 'conquer':14 'epistl':5 'frisbe':11 'goldmin':1 'husband':16 'must':13 'outback':19 'tycoon':2
  3530. 368 Gone Trouble A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse 2006 1 7 2.99 84 20.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'charact':5 'conquer':17 'cow':10 'forens':13 'gone':1 'insight':4 'mad':9 'manhattan':23 'must':16 'penthous':24 'psychologist':14 'shark':20 'studi':6 'troubl':2
  3531. 369 Goodfellas Salute A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory 2006 1 4 4.99 56 22.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'baloon':20 'cow':17 'dog':8 'explor':11 'factori':21 'goodfella':1 'mad':16 'must':13 'salut':2 'sink':14 'tale':5 'unbeliev':4
  3532. 370 Gorgeous Bingo A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory 2006 1 4 2.99 108 26.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'baloon':22 'bingo':2 'car':14 'display':7 'factori':23 'gorgeous':1 'must':16 'overcom':17 'pack':6 'sumo':10 'waitress':19 'wrestler':11
  3533. 371 Gosford Donnie A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin 2006 1 5 4.99 129 17.99 G 2013-05-26 14:50:58.951 {Commentaries} 'agent':18 'berlin':20 'donni':2 'epic':4 'gosford':1 'mad':8 'monkey':12 'must':14 'panorama':5 'redeem':15 'scientist':9 'secret':17
  3534. 372 Graceland Dynamite A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans 2006 1 5 4.99 140 26.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'administr':17 'cat':8 'databas':16 'display':5 'dynamit':2 'girl':11 'graceland':1 'must':13 'new':19 'orlean':20 'overcom':14 'taut':4
  3535. 373 Graduate Lord A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China 2006 1 7 2.99 156 14.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'ancient':20 'china':21 'epistl':5 'girl':8 'graduat':1 'lacklustur':4 'lord':2 'mad':17 'meet':15 'must':14 'scientist':18 'shark':12
  3536. 374 Graffiti Love A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin 2006 1 3 0.99 117 29.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'berlin':19 'build':15 'compos':17 'epistl':5 'graffiti':1 'hunter':12 'love':2 'must':14 'sumo':8 'unbeliev':4 'wrestler':9
  3537. 375 Grail Frankenstein A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft 2006 1 4 2.99 85 17.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':19 'fight':14 'frankenstein':2 'girl':16 'grail':1 'mine':20 'monkey':11 'must':13 'saga':5 'shaft':21 'teacher':8 'unbeliev':4
  3538. 376 Grapes Fury A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia 2006 1 4 0.99 155 20.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'australia':20 'bore':4 'cow':9 'furi':2 'grape':1 'mad':8 'meet':16 'must':15 'robot':18 'sumo':12 'wrestler':13 'yarn':5
  3539. 377 Grease Youth A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia 2006 1 7 0.99 135 20.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'agent':9 'compos':17 'emot':4 'escap':15 'georgia':20 'greas':1 'must':14 'panorama':5 'secret':8 'soviet':19 'waitress':12 'youth':2
  3540. 378 Greatest North A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin 2006 1 5 2.99 93 24.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'agent':10 'astound':4 'berlin':21 'build':16 'charact':5 'greatest':1 'must':15 'north':2 'robot':13 'secret':9 'shark':19 'studi':6
  3541. 379 Greedy Roots A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies 2006 1 7 0.99 166 14.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'amaz':4 'butler':12 'canadian':20 'chase':15 'greedi':1 'hunter':17 'must':14 'reflect':5 'rocki':21 'root':2 'shark':9
  3542. 380 Greek Everyone A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station 2006 1 7 2.99 176 11.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'butler':8 'confront':14 'display':5 'everyon':2 'first':20 'greek':1 'man':21 'must':13 'shark':17 'space':22 'station':23 'stun':4 'teacher':11
  3543. 381 Grinch Massage A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station 2006 1 7 4.99 150 25.99 R 2013-05-26 14:50:58.951 {Trailers} 'display':5 'feminist':11 'first':19 'grinch':1 'intrepid':4 'madman':8 'man':20 'massag':2 'must':13 'pioneer':16 'pursu':14 'space':21 'station':22
  3544. 382 Grit Clockwork A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank 2006 1 3 0.99 137 21.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'clockwork':2 'confront':14 'dentist':8 'display':5 'grit':1 'lumberjack':16 'must':13 'shark':19 'squirrel':11 'tank':20 'thought':4
  3545. 383 Groove Fiction A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft 2006 1 6 0.99 111 13.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':20 'defeat':15 'fiction':2 'groov':1 'lumberjack':17 'mine':21 'moos':8 'must':14 'reflect':5 'shaft':22 'shark':12 'unbeliev':4
  3546. 385 Groundhog Uncut A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse 2006 1 6 4.99 139 26.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'astronaut':8 'brilliant':4 'butler':17 'discov':15 'groundhog':1 'manhattan':20 'must':14 'panorama':5 'penthous':21 'technic':11 'uncut':2 'writer':12
  3547. 386 Gump Date A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft 2006 1 3 4.99 53 12.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'abandon':19 'date':2 'explor':8 'gump':1 'husband':16 'intrepid':4 'kill':14 'mine':20 'must':13 'shaft':21 'student':11 'yarn':5
  3548. 387 Gun Bonnie A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico 2006 1 7 0.99 100 27.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'bonni':2 'bore':4 'build':15 'display':5 'gulf':20 'gun':1 'husband':12 'mexico':22 'must':14 'sumo':8 'waitress':17 'wrestler':9
  3549. 388 Gunfight Moon A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert 2006 1 5 0.99 70 16.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'chef':9 'dentist':17 'desert':21 'epic':4 'explor':12 'gunfight':1 'moon':2 'must':14 'pastri':8 'reach':15 'reflect':5 'sahara':20
  3550. 389 Gunfighter Mussolini A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan 2006 1 3 2.99 127 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':18 'boy':11 'gunfight':1 'japan':19 'kill':14 'man':16 'mussolini':2 'must':13 'robot':8 'saga':5 'touch':4
  3551. 390 Guys Falcon A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat 2006 1 4 4.99 84 20.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'boat':21 'bore':4 'falcon':2 'feminist':11 'guy':1 'must':13 'redeem':14 'squirrel':16 'stori':5 'u':20 'u-boat':19 'woman':8
  3552. 391 Half Outfield A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat 2006 1 6 2.99 146 25.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':9 'boat':21 'crocodil':12 'databas':8 'epic':4 'epistl':5 'face':15 'half':1 'jet':20 'madman':17 'must':14 'outfield':2
  3553. 392 Hall Cassidy A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia 2006 1 5 4.99 51 13.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'battl':16 'beauti':4 'cassidi':2 'chef':9 'georgia':21 'hall':1 'must':15 'panorama':5 'pastri':8 'pioneer':18 'shark':13 'soviet':20
  3554. 393 Halloween Nuts A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat 2006 1 6 2.99 47 19.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'amaz':4 'boat':23 'dentist':18 'fight':16 'forens':8 'halloween':1 'must':15 'nut':2 'panorama':5 'psychologist':9 'technic':12 'u':22 'u-boat':21 'writer':13
  3555. 394 Hamlet Wisdom A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback 2006 1 7 2.99 146 21.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'hamlet':1 'man':8,11 'must':13 'outback':19 'reflect':5 'robot':16 'sink':14 'touch':4 'wisdom':2
  3556. 449 Identity Lover A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback 2006 1 4 2.99 119 12.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'bore':4 'car':17 'compos':8 'cow':12 'defeat':15 'ident':1 'lover':2 'mad':11 'must':14 'outback':20 'tale':5
  3557. 395 Handicap Boondock A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia 2006 1 4 0.99 108 28.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'boondock':2 'display':5 'georgia':20 'handicap':1 'must':13 'pioneer':8 'soviet':19 'squirrel':11 'sumo':16 'vanquish':14 'wrestler':17
  3558. 396 Hanging Deep A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin 2006 1 5 4.99 62 18.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'action':5 'action-pack':4 'berlin':20 'boat':10 'build':16 'crocodil':13 'deep':2 'hang':1 'monkey':18 'must':15 'pack':6 'yarn':7
  3559. 397 Hanky October A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia 2006 1 5 2.99 107 26.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':9 'bore':4 'databas':8 'epistl':5 'explor':12 'georgia':20 'hanki':1 'madman':17 'must':14 'octob':2 'pursu':15 'soviet':19
  3560. 398 Hanover Galaxy A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention 2006 1 5 4.99 47 21.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'agent':12 'boy':17 'convent':21 'galaxi':2 'girl':8 'hanov':1 'must':14 'mysql':20 'reflect':5 'secret':11 'stun':4 'succumb':15
  3561. 399 Happiness United A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan 2006 1 6 2.99 100 23.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'action':5 'action-pack':4 'ancient':21 'feminist':13 'forens':18 'happi':1 'husband':10 'japan':22 'meet':16 'must':15 'pack':6 'panorama':7 'psychologist':19 'unit':2
  3562. 400 Hardly Robbers A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin 2006 1 7 2.99 72 15.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'berlin':19 'car':12 'charact':5 'emot':4 'hard':1 'hunter':9 'kill':15 'must':14 'robber':2 'studi':6 'woman':17
  3563. 401 Harold French A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert 2006 1 6 0.99 168 10.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'desert':21 'french':2 'harold':1 'moos':17 'must':14 'outrac':15 'saga':5 'sahara':20 'student':12 'stun':4 'sumo':8 'wrestler':9
  3564. 402 Harper Dying A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert 2006 1 3 0.99 52 15.99 G 2013-05-26 14:50:58.951 {Trailers} 'awe':5 'awe-inspir':4 'cat':13 'confront':16 'desert':22 'die':2 'feminist':18 'harper':1 'inspir':6 'must':15 'reflect':7 'sahara':21 'woman':10
  3565. 403 Harry Idaho A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California 2006 1 5 4.99 121 18.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'california':19 'dog':17 'feminist':12 'harri':1 'idaho':2 'must':14 'outrac':15 'taut':4 'technic':8 'writer':9 'yarn':5
  3566. 404 Hate Handicap A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station 2006 1 4 0.99 107 26.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'first':20 'handicap':2 'hate':1 'hunter':17 'intrepid':4 'mad':8 'man':21 'must':14 'overcom':15 'pioneer':12 'reflect':5 'scientist':9 'space':22 'station':23
  3567. 405 Haunted Antitrust A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India 2006 1 6 4.99 76 13.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'amaz':4 'ancient':19 'antitrust':2 'dentist':11 'haunt':1 'india':20 'man':8 'must':13 'reach':14 'saga':5 'technic':16 'writer':17
  3568. 406 Haunting Pianist A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park 2006 1 5 0.99 181 22.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7
  3569. 407 Hawk Chill A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia 2006 1 5 0.99 47 12.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'action':5 'action-pack':4 'australia':21 'car':19 'chill':2 'compos':14 'drama':7 'hawk':1 'mad':10 'must':16 'outgun':17 'pack':6 'scientist':11
  3570. 408 Head Stranger A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico 2006 1 4 4.99 69 28.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'confront':14 'crocodil':11 'dog':16 'gulf':19 'head':1 'hunter':8 'mexico':21 'must':13 'saga':5 'stranger':2 'thought':4
  3571. 409 Heartbreakers Bright A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies 2006 1 3 4.99 59 9.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'bright':2 'canadian':23 'chef':20 'dentist':14 'documentari':7 'heartbreak':1 'inspir':6 'must':16 'outrac':17 'pastri':19 'rocki':24 'shark':11
  3572. 410 Heaven Freedom A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans 2006 1 7 2.99 48 19.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'butler':8 'car':11 'freedom':2 'heaven':1 'intrepid':4 'man':16 'must':13 'new':18 'orlean':19 'stori':5 'vanquish':14
  3573. 411 Heavenly Gun A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat 2006 1 5 4.99 49 13.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'battl':15 'beauti':4 'boat':21 'forens':8 'frisbe':12 'gun':2 'heaven':1 'jet':20 'moos':17 'must':14 'psychologist':9 'yarn':5
  3574. 412 Heavyweights Beast A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park 2006 1 6 4.99 102 25.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'abandon':19 'amus':20 'beast':2 'compos':8 'dog':11 'heavyweight':1 'must':13 'overcom':14 'park':21 'stori':5 'unbeliev':4 'woman':16
  3575. 413 Hedwig Alter A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery 2006 1 7 2.99 169 16.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'alter':2 'chase':16 'hedwig':1 'lumberjack':13 'monasteri':22 'must':15 'pack':6 'sumo':18 'woman':10 'wrestler':19 'yarn':7
  3576. 414 Hellfighters Sierra A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia 2006 1 3 2.99 75 23.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'battl':15 'boat':17 'dentist':12 'georgia':20 'hellfight':1 'must':14 'reflect':5 'shark':9 'sierra':2 'soviet':19 'taut':4
  3577. 415 High Encino A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia 2006 1 3 2.99 84 23.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'australia':19 'encino':2 'fate':4 'high':1 'hunter':11 'must':13 'outrac':14 'saga':5 'sumo':16 'waitress':8 'wrestler':17
  3578. 416 Highball Potter A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert 2006 1 6 0.99 110 10.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'action':5 'action-pack':4 'administr':19 'databas':18 'desert':23 'dog':13 'highbal':1 'husband':10 'must':15 'pack':6 'potter':2 'redeem':16 'saga':7 'sahara':22
  3579. 417 Hills Neighbors A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat 2006 1 5 0.99 93 29.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':21 'car':16 'display':5 'epic':4 'feminist':11 'hill':1 'hunter':8 'must':13 'neighbor':2 'sink':14 'u':20 'u-boat':19
  3580. 418 Hobbit Alien A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station 2006 1 5 0.99 157 27.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'alien':2 'compos':16 'drama':5 'emot':4 'first':19 'girl':11 'hobbit':1 'husband':8 'man':20 'must':13 'outgun':14 'space':21 'station':22
  3581. 419 Hocus Frida A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank 2006 1 4 2.99 141 19.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'frida':2 'girl':10 'hocus':1 'inspir':6 'madman':13 'must':15 'outgun':16 'shark':21 'student':18 'tale':7 'tank':22
  3582. 420 Holes Brannigan A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies 2006 1 7 4.99 128 27.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'boy':19 'brannigan':2 'canadian':22 'fast':5 'fast-pac':4 'fight':17 'hole':1 'must':16 'pace':6 'reflect':7 'rocki':23 'student':14 'technic':10 'writer':11
  3583. 421 Holiday Games A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan 2006 1 7 4.99 78 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':18 'boy':16 'game':2 'holiday':1 'insight':4 'japan':19 'madman':11 'must':13 'pursu':14 'reflect':5 'waitress':8
  3584. 422 Hollow Jeopardy A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery 2006 1 7 4.99 136 25.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astronaut':12 'beauti':4 'boat':17 'charact':5 'hollow':1 'jeopardi':2 'monasteri':20 'must':14 'overcom':15 'robot':9 'studi':6
  3585. 423 Hollywood Anonymous A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat 2006 1 7 0.99 69 29.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'anonym':2 'boat':23 'boy':10 'dog':18 'epistl':7 'escap':16 'explor':13 'fast':5 'fast-pac':4 'hollywood':1 'must':15 'pace':6 'u':22 'u-boat':21
  3586. 424 Holocaust Highball A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia 2006 1 6 0.99 149 12.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'awe':5 'awe-inspir':4 'compos':10 'find':16 'georgia':21 'highbal':2 'holocaust':1 'inspir':6 'man':13 'must':15 'robot':18 'soviet':20 'yarn':7
  3587. 425 Holy Tadpole A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory 2006 1 6 0.99 88 20.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'action':5 'action-pack':4 'baloon':21 'display':7 'dog':18 'factori':22 'feminist':10 'holi':1 'must':15 'pack':6 'pioneer':13 'pursu':16 'tadpol':2
  3588. 426 Home Pity A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention 2006 1 7 4.99 185 15.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4
  3589. 427 Homeward Cider A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse 2006 1 5 0.99 103 19.99 R 2013-05-26 14:50:58.951 {Trailers} 'astronaut':8 'cider':2 'fight':14 'homeward':1 'manhattan':19 'must':13 'penthous':20 'reflect':5 'squirrel':11,16 'taut':4
  3590. 428 Homicide Peach A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention 2006 1 6 2.99 141 21.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'astound':4 'boy':11,16 'confront':14 'convent':20 'documentari':5 'homicid':1 'hunter':8 'must':13 'mysql':19 'peach':2
  3591. 429 Honey Ties A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank 2006 1 3 0.99 84 29.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'crocodil':11 'honey':1 'lumberjack':16 'must':13 'outrac':14 'shark':19 'stori':5 'tank':20 'taut':4 'tie':2 'waitress':8
  3592. 430 Hook Chariots A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia 2006 1 7 0.99 49 23.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'australia':18 'boy':8,16 'chariot':2 'dog':11 'hook':1 'insight':4 'must':13 'redeem':14 'stori':5
  3593. 450 Idols Snatchers A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery 2006 1 5 2.99 84 29.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'car':8 'compos':11 'drama':5 'fight':14 'idol':1 'insight':4 'man':16 'monasteri':19 'must':13 'snatcher':2
  3594. 431 Hoosiers Birdcage A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station 2006 1 3 2.99 176 12.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'astound':4 'birdcag':2 'boat':11 'car':16 'display':5 'explor':8 'first':19 'hoosier':1 'man':20 'must':13 'space':21 'station':22 'vanquish':14
  3595. 432 Hope Tootsie A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank 2006 1 4 2.99 139 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'amaz':4 'documentari':5 'hope':1 'must':14 'outgun':15 'shark':18,21 'student':8 'sumo':11 'tank':22 'tootsi':2 'wrestler':12
  3596. 433 Horn Working A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank 2006 1 4 2.99 95 23.99 PG 2013-05-26 14:50:58.951 {Trailers} 'display':5 'horn':1 'mad':8 'monkey':18 'must':15 'scientist':9 'shark':21 'stun':4 'succumb':16 'tank':22 'technic':12 'work':2 'writer':13
  3597. 434 Horror Reign A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria 2006 1 3 0.99 139 25.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'build':15 'car':12 'documentari':5 'horror':1 'husband':17 'must':14 'nigeria':19 'reign':2 'shark':9 'touch':4
  3598. 435 Hotel Happiness A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback 2006 1 6 4.99 181 28.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5
  3599. 436 Hours Rage A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia 2006 1 4 0.99 122 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'explor':8 'fate':4 'feminist':11 'georgia':20 'hour':1 'meet':14 'must':13 'rage':2 'soviet':19 'stori':5 'technic':16 'writer':17
  3600. 437 House Dynamite A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia 2006 1 7 2.99 109 13.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'battl':14 'dynamit':2 'georgia':19 'hous':1 'must':13 'pioneer':8 'soviet':18 'squirrel':11 'stori':5 'student':16 'taut':4
  3601. 438 Human Graffiti A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico 2006 1 3 2.99 68 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'administr':18 'beauti':4 'chase':15 'databas':17 'graffiti':2 'gulf':21 'human':1 'mexico':23 'must':14 'reflect':5 'sumo':11 'woman':8 'wrestler':12
  3602. 439 Hunchback Impossible A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan 2006 1 4 4.99 151 28.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':18 'compos':16 'dentist':11 'fight':14 'frisbe':8 'hunchback':1 'imposs':2 'japan':19 'must':13 'touch':4 'yarn':5
  3603. 440 Hunger Roof A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft 2006 1 6 0.99 105 21.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'abandon':20 'administr':12 'databas':11 'hunger':1 'husband':17 'mine':21 'must':14 'outgun':15 'roof':2 'shaft':22 'student':8 'unbeliev':4 'yarn':5
  3604. 441 Hunter Alter A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank 2006 1 5 2.99 125 21.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'agent':18 'alter':2 'boat':12 'cow':9 'drama':5 'emot':4 'hunter':1 'mad':8 'must':14 'redeem':15 'secret':17 'shark':21 'tank':22
  3605. 442 Hunting Musketeers A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft 2006 1 6 2.99 65 24.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'dentist':11 'hunt':1 'mine':20 'musket':2 'must':13 'outrac':14 'pioneer':8 'reflect':5 'shaft':21 'thrill':4 'woman':16
  3606. 443 Hurricane Affair A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft 2006 1 6 2.99 49 11.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'abandon':20 'administr':9 'affair':2 'databas':8 'epistl':5 'hunter':17 'hurrican':1 'lacklustur':4 'meet':15 'mine':21 'must':14 'shaft':22 'woman':12
  3607. 444 Hustler Party A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert 2006 1 3 4.99 83 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'conquer':15 'desert':21 'emot':4 'hustler':1 'monkey':12 'must':14 'parti':2 'reflect':5 'robot':17 'sahara':20 'sumo':8 'wrestler':9
  3608. 445 Hyde Doctor A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat 2006 1 5 2.99 100 11.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'boat':20 'boy':8 'doctor':2 'documentari':5 'fanci':4 'hyde':1 'jet':19 'must':13 'redeem':14 'woman':11,16
  3609. 446 Hysterical Grail A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse 2006 1 5 4.99 150 19.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'amaz':4 'build':14 'car':16 'dentist':11 'grail':2 'hyster':1 'madman':8 'manhattan':19 'must':13 'penthous':20 'saga':5
  3610. 447 Ice Crossing A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse 2006 1 5 2.99 131 28.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'butler':10 'cross':2 'fast':5 'fast-pac':4 'ice':1 'manhattan':21 'moos':13 'must':15 'overcom':16 'pace':6 'penthous':22 'pioneer':18 'tale':7
  3611. 448 Idaho Love A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback 2006 1 3 2.99 172 25.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':19 'crocodil':13 'databas':18 'drama':7 'fast':5 'fast-pac':4 'idaho':1 'love':2 'meet':16 'must':15 'outback':22 'pace':6 'student':10
  3612. 451 Igby Maker A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory 2006 1 7 4.99 160 12.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'baloon':19 'documentari':5 'dog':11,16 'epic':4 'factori':20 'hunter':8 'igbi':1 'maker':2 'must':13 'outgun':14
  3613. 452 Illusion Amelie A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft 2006 1 4 0.99 122 15.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':20 'ameli':2 'boat':8 'emot':4 'epistl':5 'illus':1 'mad':11 'mine':21 'must':14 'outrac':15 'robot':17 'scientist':12 'shaft':22
  3614. 453 Image Princess A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies 2006 1 3 2.99 178 17.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'agent':9 'canadian':20 'crocodil':12 'discov':15 'imag':1 'lacklustur':4 'madman':17 'must':14 'panorama':5 'princess':2 'rocki':21 'secret':8
  3615. 454 Impact Aladdin A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank 2006 1 6 0.99 180 20.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'aladdin':2 'charact':5 'epic':4 'frisbe':9 'impact':1 'moos':12 'must':14 'outgun':15 'shark':21 'studi':6 'tank':22 'technic':17 'writer':18
  3616. 455 Impossible Prejudice A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China 2006 1 7 4.99 103 11.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ancient':20 'awe':5 'awe-inspir':4 'chase':16 'china':21 'hunter':13 'imposs':1 'inspir':6 'monkey':10 'must':15 'prejudic':2 'teacher':18 'yarn':7
  3617. 456 Inch Jet A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery 2006 1 6 4.99 167 18.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'butler':16 'defeat':14 'fate':4 'inch':1 'jet':2 'monasteri':19 'must':13 'saga':5 'student':11 'woman':8
  3618. 457 Independence Hotel A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery 2006 1 5 0.99 157 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'boy':12 'face':15 'hotel':2 'independ':1 'monasteri':20 'must':14 'pioneer':17 'tale':5 'technic':8 'thrill':4 'writer':9
  3619. 458 Indian Love A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House 2006 1 4 0.99 135 26.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':21 'astronaut':18 'fun':22 'hous':23 'indian':1 'insight':4 'kill':16 'love':2 'mad':8,12 'must':15 'saga':5 'scientist':9,13
  3620. 459 Informer Double A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies 2006 1 4 4.99 74 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'action':5 'action-pack':4 'canadian':22 'dentist':13 'display':7 'doubl':2 'forens':18 'inform':1 'must':15 'pack':6 'psychologist':19 'redeem':16 'rocki':23 'woman':10
  3621. 460 Innocent Usual A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback 2006 1 3 4.99 178 26.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'challeng':14 'crocodil':11 'drama':5 'innoc':1 'must':13 'outback':19 'pioneer':8 'student':16 'usual':2
  3622. 461 Insects Stone A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse 2006 1 3 0.99 123 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'butler':8 'crocodil':16 'display':5 'dog':11 'epic':4 'insect':1 'manhattan':19 'must':13 'penthous':20 'stone':2 'vanquish':14
  3623. 462 Insider Arizona A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory 2006 1 5 2.99 78 17.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'arizona':2 'astound':4 'baloon':20 'factori':21 'hunter':12 'insid':1 'mad':8 'must':14 'pursu':15 'robot':17 'saga':5 'scientist':9
  3624. 463 Instinct Airport A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse 2006 1 4 2.99 116 21.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'airport':2 'butler':17 'confront':15 'cow':9 'documentari':5 'explor':12 'instinct':1 'mad':8 'manhattan':20 'must':14 'penthous':21 'touch':4
  3625. 464 Intentions Empire A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat 2006 1 3 2.99 107 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'astound':4 'boat':22 'cat':8,11 'conquer':14 'cow':17 'empir':2 'epistl':5 'intent':1 'mad':16 'must':13 'u':21 'u-boat':20
  3626. 465 Interview Liaisons A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse 2006 1 4 4.99 59 17.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'administr':19 'butler':13 'databas':18 'discov':16 'interview':1 'liaison':2 'manhattan':22 'must':15 'pack':6 'penthous':23 'reflect':7 'student':10
  3627. 466 Intolerable Intentions A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention 2006 1 6 4.99 63 20.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'awe':5 'awe-inspir':4 'chef':14 'convent':23 'inspir':6 'intent':2 'intoler':1 'monkey':10 'must':16 'mysql':22 'pastri':13 'stori':7 'succumb':17 'woman':19
  3628. 467 Intrigue Worst A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat 2006 1 6 0.99 181 10.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2
  3629. 468 Invasion Cyclone A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery 2006 1 5 2.99 97 12.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'charact':5 'cyclon':2 'explor':18 'invas':1 'lacklustur':4 'mad':9 'monasteri':21 'must':15 'outrac':16 'scientist':10 'studi':6 'woman':13
  3630. 469 Iron Moon A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon 2006 1 7 4.99 46 27.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'baloon':22 'boy':14 'cow':11 'dentist':19 'documentari':7 'fast':5 'fast-pac':4 'iron':1 'mad':10 'moon':2 'must':16 'pace':6 'pursu':17
  3631. 470 Ishtar Rocketeer A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House 2006 1 4 4.99 79 24.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':19 'astound':4 'conquer':14 'dog':8,16 'fun':20 'hous':21 'ishtar':1 'must':13 'rocket':2 'saga':5 'squirrel':11
  3632. 471 Island Exorcist A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House 2006 1 7 2.99 84 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':20 'boy':12 'dentist':17 'exorcist':2 'fanci':4 'find':15 'fun':21 'hous':22 'island':1 'must':14 'panorama':5 'technic':8 'writer':9
  3633. 472 Italian African A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat 2006 1 3 4.99 174 24.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'african':2 'astound':4 'boat':22 'cat':17 'charact':5 'italian':1 'monkey':9 'moos':12 'must':14 'outgun':15 'studi':6 'u':21 'u-boat':20
  3634. 473 Jacket Frisco A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon 2006 1 5 2.99 181 16.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8
  3635. 474 Jade Bunch A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station 2006 1 6 2.99 174 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'bunch':2 'confront':15 'cow':12 'first':20 'insight':4 'jade':1 'mad':11 'man':21 'must':14 'panorama':5 'space':22 'squirrel':8 'station':23 'student':17
  3636. 475 Japanese Run A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback 2006 1 6 0.99 135 29.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'awe':5 'awe-inspir':4 'epistl':7 'feminist':10 'girl':13,18 'inspir':6 'japanes':1 'must':15 'outback':21 'run':2 'sink':16
  3637. 476 Jason Trap A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery 2006 1 5 2.99 130 9.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'conquer':15 'dog':17 'jason':1 'monasteri':20 'must':14 'shark':12 'tale':5 'thought':4 'trap':2 'woman':8
  3638. 477 Jawbreaker Brooklyn A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat 2006 1 5 0.99 118 15.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'boat':8,22 'brooklyn':2 'chef':12 'jawbreak':1 'jet':21 'must':14 'pastri':11 'reflect':5 'shark':18 'stun':4 'succumb':15
  3639. 478 Jaws Harry A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House 2006 1 4 2.99 112 10.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'abandon':20 'administr':9 'databas':8 'display':5 'dog':17 'fun':21 'harri':2 'hous':22 'jaw':1 'monkey':12 'must':14 'overcom':15 'thrill':4
  3640. 479 Jedi Beneath A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria 2006 1 7 0.99 128 12.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'astound':4 'beneath':2 'dentist':11 'explor':8 'jedi':1 'must':13 'nigeria':18 'pursu':14 'reflect':5 'student':16
  3641. 480 Jeepers Wedding A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia 2006 1 3 2.99 84 29.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'astound':4 'chef':17 'compos':8 'display':5 'dog':11 'georgia':20 'jeeper':1 'kill':14 'must':13 'pastri':16 'soviet':19 'wed':2
  3642. 481 Jekyll Frogmen A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank 2006 1 4 2.99 58 22.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'astronaut':11 'epistl':5 'fanci':4 'frogmen':2 'jekyl':1 'kill':14 'must':13 'shark':19 'student':8 'tank':20 'waitress':16
  3643. 482 Jeopardy Encino A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India 2006 1 3 0.99 102 12.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':19 'bore':4 'cow':12 'encino':2 'explor':17 'face':15 'india':20 'jeopardi':1 'mad':11 'man':8 'must':14 'panorama':5
  3644. 483 Jericho Mulan A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat 2006 1 3 2.99 171 29.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'amaz':4 'boat':20 'boy':16 'butler':11 'defeat':14 'hunter':8 'jericho':1 'jet':19 'mulan':2 'must':13 'yarn':5
  3645. 484 Jerk Paycheck A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan 2006 1 3 2.99 172 13.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':14 'ancient':22 'charact':5 'chef':10 'databas':13 'japan':23 'jerk':1 'must':16 'pastri':9 'paycheck':2 'reach':17 'shark':20 'studi':6 'touch':4
  3646. 485 Jersey Sassy A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan 2006 1 6 4.99 60 16.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':19 'cow':12 'documentari':5 'feminist':17 'find':15 'japan':20 'jersey':1 'lacklustur':4 'mad':11 'madman':8 'must':14 'sassi':2
  3647. 486 Jet Neighbors A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat 2006 1 7 4.99 59 14.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'amaz':4 'boat':21 'display':5 'jet':1 'lumberjack':8 'must':13 'neighbor':2 'outrac':14 'teacher':11 'u':20 'u-boat':19 'woman':16
  3648. 487 Jingle Sagebrush A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon 2006 1 6 4.99 124 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'baloon':20 'charact':5 'epic':4 'feminist':9 'jingl':1 'meet':15 'must':14 'sagebrush':2 'student':12 'studi':6 'woman':17
  3649. 488 Joon Northwest A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank 2006 1 3 0.99 105 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'car':12 'discov':15 'forens':17 'joon':1 'must':14 'northwest':2 'panorama':5 'psychologist':18 'shark':21 'tank':22 'technic':8 'thrill':4 'writer':9
  3650. 489 Juggler Hardly A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California 2006 1 4 0.99 54 14.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'astronaut':12 'california':19 'car':17 'challeng':15 'cow':9 'epic':4 'hard':2 'juggler':1 'mad':8 'must':14 'stori':5
  3651. 490 Jumanji Blade A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans 2006 1 4 2.99 121 13.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'blade':2 'husband':8 'intrepid':4 'jumanji':1 'mad':16 'must':13 'new':19 'orlean':20 'pursu':14 'scientist':17 'woman':11 'yarn':5
  3652. 491 Jumping Wrath A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin 2006 1 4 0.99 74 18.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'berlin':18 'boat':16 'discov':14 'epistl':5 'feminist':11 'jump':1 'monkey':8 'must':13 'touch':4 'wrath':2
  3653. 492 Jungle Closer A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia 2006 1 6 0.99 134 11.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'astronaut':17 'australia':19 'battl':15 'bore':4 'boy':9 'charact':5 'closer':2 'jungl':1 'must':14 'studi':6 'woman':12
  3654. 493 Kane Exorcist A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin 2006 1 5 0.99 92 18.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'berlin':18 'car':16 'compos':8 'documentari':5 'epic':4 'exorcist':2 'kane':1 'must':13 'overcom':14 'robot':11
  3655. 494 Karate Moon A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention 2006 1 4 0.99 120 21.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astound':4 'convent':20 'dog':11 'karat':1 'moon':2 'must':13 'mysql':19 'reach':14 'waitress':16 'woman':8 'yarn':5
  3656. 495 Kentuckian Giant A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat 2006 1 5 2.99 169 10.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':21 'escap':14 'frisbe':11 'giant':2 'kentuckian':1 'must':13 'stun':4 'u':20 'u-boat':19 'waitress':16 'woman':8 'yarn':5
  3657. 496 Kick Savannah A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans 2006 1 3 0.99 179 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'defeat':14 'drama':5 'emot':4 'kick':1 'monkey':8,16 'must':13 'new':18 'orlean':19 'robot':11 'savannah':2
  3658. 497 Kill Brotherhood A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback 2006 1 4 0.99 54 15.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'agent':12 'brotherhood':2 'display':5 'hunter':8 'husband':17 'kill':1 'must':14 'outback':20 'redeem':15 'secret':11 'touch':4
  3659. 498 Killer Innocent A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft 2006 1 7 2.99 161 11.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':20 'charact':5 'compos':17 'explor':12 'fanci':4 'innoc':2 'killer':1 'mine':21 'must':14 'shaft':22 'student':9 'studi':6 'succumb':15
  3660. 499 King Evolution A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon 2006 1 3 4.99 184 24.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7
  3661. 500 Kiss Glory A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies 2006 1 5 4.99 163 11.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'canadian':19 'find':14 'girl':8 'glori':2 'husband':11 'kiss':1 'lacklustur':4 'must':13 'reflect':5 'robot':16 'rocki':20
  3662. 501 Kissing Dolls A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station 2006 1 3 4.99 141 9.99 R 2013-05-26 14:50:58.951 {Trailers} 'build':14 'compos':16 'doll':2 'first':19 'insight':4 'kiss':1 'man':20 'must':13 'pioneer':8 'reflect':5 'space':21 'station':22 'teacher':11
  3663. 502 Knock Warlock A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon 2006 1 4 2.99 71 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'baloon':19 'boat':11 'confront':14 'knock':1 'moos':16 'must':13 'stori':5 'teacher':8 'unbeliev':4 'warlock':2
  3664. 503 Kramer Chocolate A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback 2006 1 3 2.99 171 24.99 R 2013-05-26 14:50:58.951 {Trailers} 'amaz':4 'chef':12 'chocol':2 'kramer':1 'mad':17 'must':14 'outback':21 'pastri':11 'redeem':15 'robot':8 'scientist':18 'yarn':5
  3665. 504 Kwai Homeward A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia 2006 1 5 0.99 46 25.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'amaz':4 'car':8,16 'drama':5 'georgia':19 'homeward':2 'kwai':1 'must':13 'pursu':14 'soviet':18 'squirrel':11
  3666. 505 Labyrinth League A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert 2006 1 6 2.99 46 24.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'awe':5 'awe-inspir':4 'compos':10 'desert':22 'frisbe':13 'inspir':6 'labyrinth':1 'leagu':2 'must':15 'pioneer':18 'saga':7 'sahara':21 'succumb':16
  3667. 753 Rush Goodfellas A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia 2006 1 3 0.99 48 20.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'australia':18 'challeng':14 'dentist':11 'display':5 'emot':4 'goodfella':2 'man':8 'must':13 'rush':1 'squirrel':16
  3668. 506 Lady Stage A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat 2006 1 4 4.99 67 14.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'boat':22 'charact':5 'explor':17 'ladi':1 'man':12 'must':14 'pursu':15 'stage':2 'studi':6 'u':21 'u-boat':20 'woman':9
  3669. 507 Ladybugs Armageddon A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans 2006 1 4 0.99 113 13.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'armageddon':2 'dog':8 'fate':4 'ladybug':1 'mad':11,17 'meet':15 'must':14 'new':20 'orlean':21 'reflect':5 'scientist':12,18
  3670. 508 Lambs Cincinatti A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia 2006 1 6 4.99 144 18.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'australia':18 'cincinatti':2 'compos':16 'feminist':11 'fight':14 'insight':4 'lamb':1 'man':8 'must':13 'stori':5
  3671. 509 Language Cowboy A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park 2006 1 5 0.99 78 26.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'amus':20 'cat':8 'cowboy':2 'dentist':16 'epic':4 'languag':1 'madman':11 'must':13 'park':21 'vanquish':14 'yarn':5
  3672. 510 Lawless Vision A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback 2006 1 6 4.99 181 29.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5
  3673. 511 Lawrence Love A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin 2006 1 7 0.99 175 23.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':9 'berlin':20 'cow':13 'databas':8 'fanci':4 'lawrenc':1 'love':2 'mad':12 'must':15 'pursu':16 'woman':18 'yarn':5
  3674. 512 League Hellfighters A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China 2006 1 5 4.99 110 25.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'ancient':19 'china':20 'hellfight':2 'leagu':1 'monkey':12 'must':14 'outgun':15 'saga':5 'shark':9 'student':17 'thought':4
  3675. 513 Leathernecks Dwarfs A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft 2006 1 6 2.99 153 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'abandon':20 'cow':12 'dog':8 'dwarf':2 'fate':4 'leatherneck':1 'mad':11 'mine':21 'must':14 'outrac':15 'reflect':5 'shaft':22 'teacher':17
  3676. 514 Lebowski Soldiers A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China 2006 1 6 2.99 69 17.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'agent':9 'ancient':19 'astronaut':17 'beauti':4 'chase':15 'china':20 'epistl':5 'lebowski':1 'must':14 'pioneer':12 'secret':8 'soldier':2
  3677. 515 Legally Secretary A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert 2006 1 7 4.99 113 14.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'astound':4 'desert':21 'legal':1 'meet':15 'moos':12 'must':14 'sahara':20 'secretari':2 'shark':9 'tale':5 'woman':17
  3678. 516 Legend Jedi A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback 2006 1 7 0.99 59 18.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'crocodil':18 'epistl':7 'inspir':6 'jedi':2 'legend':1 'must':15 'outback':21 'outgun':16 'pioneer':10 'student':13
  3679. 517 Lesson Cleopatra A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse 2006 1 3 0.99 167 28.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'boy':16 'build':14 'cleopatra':2 'display':5 'emot':4 'explor':11 'lesson':1 'man':8 'manhattan':19 'must':13 'penthous':20
  3680. 518 Liaisons Sweet A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies 2006 1 5 4.99 140 15.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'bore':4 'canadian':20 'drama':5 'explor':12 'liaison':1 'must':14 'redeem':15 'rocki':21 'shark':9 'sweet':2 'waitress':17
  3681. 519 Liberty Magnificent A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon 2006 1 3 2.99 138 27.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'bore':4 'cat':11 'drama':5 'liberti':1 'magnific':2 'must':13 'sink':14 'student':8 'technic':16 'writer':17
  3682. 520 License Weekend A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery 2006 1 7 2.99 91 28.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'husband':11 'insight':4 'licens':1 'madman':16 'man':8 'monasteri':19 'must':13 'overcom':14 'stori':5 'weekend':2
  3683. 521 Lies Treatment A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station 2006 1 7 4.99 147 28.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'charact':7 'compos':19 'defeat':17 'dentist':11 'fast':5 'fast-pac':4 'first':22 'lie':1 'man':23 'moos':14 'must':16 'pace':6 'space':24 'station':25 'studi':8 'treatment':2
  3684. 522 Life Twisted A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station 2006 1 4 2.99 137 9.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'compos':11 'find':14 'first':19 'life':1 'man':16,20 'must':13 'reflect':5 'space':21 'station':22 'teacher':8 'thrill':4 'twist':2
  3685. 523 Lights Deer A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico 2006 1 7 0.99 174 21.99 R 2013-05-26 14:50:58.951 {Commentaries} 'confront':14 'deer':2 'dog':8 'epistl':5 'gulf':19 'light':1 'mexico':21 'moos':16 'must':13 'unbeliev':4 'woman':11
  3686. 560 Mars Roman A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia 2006 1 6 0.99 62 21.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'bore':4 'car':8 'dog':11 'drama':5 'georgia':19 'madman':16 'mar':1 'must':13 'roman':2 'soviet':18 'succumb':14
  3687. 524 Lion Uncut A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China 2006 1 6 0.99 50 13.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':20 'cat':12 'chef':9 'china':21 'display':5 'intrepid':4 'kill':15 'lion':1 'must':14 'pastri':8 'shark':18 'uncut':2
  3688. 525 Loathing Legally A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico 2006 1 4 0.99 140 29.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'bore':4 'epistl':5 'escap':15 'frisbe':17 'gulf':20 'legal':2 'loath':1 'mad':11 'mexico':22 'must':14 'pioneer':8 'scientist':12
  3689. 526 Lock Rear A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan 2006 1 7 2.99 120 10.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':20 'charact':5 'japan':21 'lock':1 'must':15 'outrac':16 'rear':2 'squirrel':9 'student':18 'studi':6 'technic':12 'thought':4 'writer':13
  3690. 527 Lola Agent A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan 2006 1 4 4.99 85 24.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'administr':18 'agent':2 'ancient':20 'astound':4 'databas':17 'husband':12 'japan':21 'lola':1 'mad':8 'must':14 'redeem':15 'scientist':9 'tale':5
  3691. 528 Lolita World A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft 2006 1 4 2.99 155 25.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'drama':5 'girl':8 'lolita':1 'mine':20 'must':13 'redeem':14 'robot':11 'shaft':21 'thrill':4 'waitress':16 'world':2
  3692. 529 Lonely Elephant A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia 2006 1 3 2.99 67 12.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'challeng':14 'dog':11 'eleph':2 'explor':16 'georgia':19 'intrepid':4 'lone':1 'must':13 'soviet':18 'stori':5 'student':8
  3693. 530 Lord Arizona A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat 2006 1 5 2.99 108 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'action':5 'action-pack':4 'arizona':2 'boat':23 'chef':14 'crocodil':19 'display':7 'frisbe':10 'jet':22 'lord':1 'must':16 'pack':6 'pastri':13 'pursu':17
  3694. 531 Lose Inch A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station 2006 1 3 0.99 137 18.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'battl':15 'butler':17 'first':20 'inch':2 'lose':1 'man':21 'must':14 'reflect':5 'space':22 'station':23 'student':8 'stun':4 'technic':11 'writer':12
  3695. 532 Loser Hustler A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria 2006 1 5 4.99 80 28.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'butler':16 'drama':5 'feminist':11 'hustler':2 'loser':1 'must':13 'nigeria':18 'outgun':14 'robot':8 'stun':4
  3696. 533 Lost Bird A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse 2006 1 4 2.99 98 21.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'bird':2 'charact':5 'defeat':16 'emot':4 'lost':1 'manhattan':22 'must':15 'penthous':23 'robot':9 'shark':13 'studi':6 'technic':18 'writer':19
  3697. 534 Louisiana Harry A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank 2006 1 5 0.99 70 18.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'drama':5 'girl':8 'harri':2 'lacklustur':4 'louisiana':1 'monkey':17 'must':14 'redeem':15 'shark':20 'tank':21 'technic':11 'writer':12
  3698. 535 Love Suicides A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House 2006 1 6 0.99 181 21.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2
  3699. 536 Lovely Jingle A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback 2006 1 3 2.99 65 18.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'crocodil':8,17 'discov':15 'fanci':4 'forens':11 'jingl':2 'love':1 'must':14 'outback':20 'psychologist':12 'yarn':5
  3700. 537 Lover Truman A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat 2006 1 3 2.99 75 29.99 G 2013-05-26 14:50:58.951 {Trailers} 'boat':22 'boy':11 'emot':4 'lover':1 'must':13 'outgun':14 'robot':8 'technic':16 'truman':2 'u':21 'u-boat':20 'writer':17 'yarn':5
  3701. 538 Loverboy Attacks A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia 2006 1 7 0.99 162 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'attack':2 'bore':4 'build':14 'butler':11 'car':8 'georgia':19 'girl':16 'loverboy':1 'must':13 'soviet':18 'stori':5
  3702. 539 Luck Opus A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank 2006 1 7 2.99 152 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'bore':4 'display':5 'luck':1 'moos':8 'must':13 'opus':2 'outrac':14 'shark':19 'squirrel':11 'tank':20 'teacher':16
  3703. 540 Lucky Flying A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat 2006 1 7 2.99 97 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'boat':24 'charact':5 'find':16 'fli':2 'forens':18 'lacklustur':4 'lucki':1 'man':13 'must':15 'psychologist':19 'shark':10 'studi':6 'u':23 'u-boat':22
  3704. 541 Luke Mummy A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India 2006 1 5 2.99 74 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'ancient':20 'boy':9 'charact':5 'india':21 'luke':1 'mad':17 'mummi':2 'must':14 'redeem':15 'robot':12 'scientist':18 'studi':6 'taut':4
  3705. 561 Mask Peach A Boring Character Study of a Student And a Robot who must Meet a Woman in California 2006 1 6 2.99 123 26.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'bore':4 'california':19 'charact':5 'mask':1 'meet':15 'must':14 'peach':2 'robot':12 'student':9 'studi':6 'woman':17
  3706. 542 Lust Lock A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert 2006 1 3 2.99 52 28.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'agent':17 'dentist':11 'desert':21 'fanci':4 'hunter':8 'lock':2 'lust':1 'meet':14 'must':13 'panorama':5 'sahara':20 'secret':16
  3707. 543 Madigan Dorado A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback 2006 1 5 4.99 116 20.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'astound':4 'charact':5 'crocodil':19 'discov':17 'dorado':2 'madigan':1 'must':16 'outback':22 'shark':10,14 'studi':6
  3708. 544 Madison Trap A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat 2006 1 4 2.99 147 11.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'boat':23 'dentist':13 'inspir':6 'madison':1 'monkey':10 'must':15 'overcom':16 'pioneer':18 'reflect':7 'trap':2 'u':22 'u-boat':21
  3709. 545 Madness Attacks A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico 2006 1 4 0.99 178 14.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'attack':2 'boat':11 'crocodil':16 'defeat':14 'fanci':4 'gulf':19 'mad':1 'mexico':21 'must':13 'squirrel':8 'tale':5
  3710. 546 Madre Gables A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station 2006 1 7 2.99 98 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'discov':16 'first':21 'forens':12 'gabl':2 'intrepid':4 'madr':1 'man':22 'moos':18 'must':15 'panorama':5 'psychologist':13 'space':23 'station':24 'sumo':8 'wrestler':9
  3711. 547 Magic Mallrats A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California 2006 1 3 0.99 117 19.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'build':16 'california':21 'chef':9,13 'documentari':5 'mad':18 'magic':1 'mallrat':2 'must':15 'pastri':8,12 'scientist':19 'touch':4
  3712. 548 Magnificent Chitty A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California 2006 1 3 2.99 53 27.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'california':19 'chitti':2 'cow':17 'face':14 'hunter':11 'insight':4 'mad':16 'magnific':1 'must':13 'stori':5 'teacher':8
  3713. 549 Magnolia Forrester A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans 2006 1 4 0.99 171 28.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'compos':8 'conquer':14 'dentist':16 'documentari':5 'explor':11 'forrest':2 'magnolia':1 'must':13 'new':18 'orlean':19 'thought':4
  3714. 550 Maguire Apache A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon 2006 1 6 2.99 74 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'apach':2 'baloon':22 'defeat':16 'fast':5 'fast-pac':4 'forens':18 'hunter':13 'maguir':1 'must':15 'pace':6 'psychologist':19 'reflect':7 'waitress':10
  3715. 551 Maiden Home A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention 2006 1 3 4.99 138 9.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'convent':21 'forens':16 'home':2 'kill':14 'lacklustur':4 'maiden':1 'moos':8 'must':13 'mysql':20 'psychologist':17 'saga':5 'teacher':11
  3716. 552 Majestic Floats A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station 2006 1 5 0.99 130 15.99 PG 2013-05-26 14:50:58.951 {Trailers} 'butler':17 'charact':5 'escap':15 'first':20 'float':2 'majest':1 'man':21 'moos':9 'must':14 'space':22 'station':23 'student':12 'studi':6 'thrill':4
  3717. 553 Maker Gables A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat 2006 1 4 0.99 136 12.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'administr':12 'boat':21 'compos':17 'databas':11 'display':5 'gabl':2 'jet':20 'maker':1 'moos':8 'must':14 'pursu':15 'stun':4
  3718. 554 Malkovich Pet A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback 2006 1 6 2.99 159 22.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'intrepid':4 'kill':15 'malkovich':1 'must':14 'outback':20 'pet':2 'reflect':5 'shark':12 'squirrel':17 'waitress':8
  3719. 555 Mallrats United A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery 2006 1 4 0.99 133 25.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'dentist':11 'find':14 'hunter':16 'mallrat':1 'monasteri':19 'must':13 'thrill':4 'unit':2 'waitress':8 'yarn':5
  3720. 556 Maltese Hope A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California 2006 1 6 4.99 127 26.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'california':21 'conquer':17 'crocodil':10 'documentari':7 'explor':19 'fast':5 'fast-pac':4 'hope':2 'maltes':1 'must':16 'pace':6 'sumo':13 'wrestler':14
  3721. 557 Manchurian Curtain A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin 2006 1 5 2.99 177 27.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'battl':15 'berlin':19 'boy':12,17 'cow':9 'curtain':2 'mad':8 'manchurian':1 'must':14 'stun':4 'tale':5
  3722. 558 Mannequin Worst A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India 2006 1 3 2.99 71 18.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'ancient':20 'astound':4 'chef':13 'cow':9 'discov':16 'husband':18 'india':21 'mad':8 'mannequin':1 'must':15 'pastri':12 'saga':5 'worst':2
  3723. 559 Married Go A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert 2006 1 7 2.99 114 22.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'desert':21 'dog':11 'face':14 'fanci':4 'forens':16 'go':2 'marri':1 'must':13 'psychologist':17 'sahara':20 'stori':5 'woman':8
  3724. 562 Masked Bubble A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft 2006 1 6 0.99 151 12.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':19 'boat':11 'bubbl':2 'documentari':5 'fanci':4 'mask':1 'mine':20 'must':13 'pioneer':8,16 'pursu':14 'shaft':21
  3725. 563 Massacre Usual A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California 2006 1 6 4.99 165 16.99 R 2013-05-26 14:50:58.951 {Commentaries} 'california':19 'challeng':14 'crocodil':11 'fate':4 'forens':16 'massacr':1 'must':13 'psychologist':17 'reflect':5 'usual':2 'waitress':8
  3726. 564 Massage Image A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station 2006 1 4 2.99 161 11.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'crocodil':11 'dog':16 'drama':5 'fate':4 'first':19 'frisbe':8 'imag':2 'man':20 'massag':1 'must':13 'space':21 'station':22 'vanquish':14
  3727. 565 Matrix Snowman A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California 2006 1 6 4.99 56 9.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'california':20 'matrix':1 'must':15 'overcom':16 'pack':6 'saga':7 'snowman':2 'student':18 'woman':10,13
  3728. 566 Maude Mod A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria 2006 1 6 0.99 72 20.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'astronaut':17 'beauti':4 'cat':12 'documentari':5 'forens':8 'maud':1 'mod':2 'must':14 'nigeria':19 'psychologist':9 'reach':15
  3729. 567 Meet Chocolate A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention 2006 1 3 2.99 80 26.99 G 2013-05-26 14:50:58.951 {Trailers} 'bore':4 'butler':11 'chocol':2 'confront':14 'convent':20 'dentist':8 'documentari':5 'meet':1 'monkey':16 'must':13 'mysql':19
  3730. 568 Memento Zoolander A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert 2006 1 4 4.99 77 11.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'chef':17 'desert':21 'epistl':5 'explor':11 'memento':1 'must':13 'pastri':16 'redeem':14 'sahara':20 'squirrel':8 'touch':4 'zooland':2
  3731. 569 Menagerie Rushmore A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station 2006 1 7 2.99 147 18.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':17 'butler':11 'compos':8 'databas':16 'first':20 'man':21 'menageri':1 'must':13 'overcom':14 'panorama':5 'rushmor':2 'space':22 'station':23 'unbeliev':4
  3732. 570 Mermaid Insects A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California 2006 1 5 4.99 104 20.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'california':18 'drama':5 'fight':14 'husband':11,16 'insect':2 'lacklustur':4 'mermaid':1 'must':13 'waitress':8
  3733. 571 Metal Armageddon A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory 2006 1 6 2.99 161 26.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'armageddon':2 'baloon':19 'crocodil':11 'display':5 'factori':20 'lumberjack':8 'meet':14 'metal':1 'monkey':16 'must':13 'thrill':4
  3734. 572 Metropolis Coma A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory 2006 1 4 2.99 64 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'administr':9 'baloon':21 'chef':13 'coma':2 'confront':16 'databas':8 'emot':4 'factori':22 'metropoli':1 'must':15 'pastri':12 'saga':5 'teacher':18
  3735. 573 Microcosmos Paradise A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria 2006 1 6 2.99 105 22.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'boat':9 'charact':5 'microcosmo':1 'must':14 'nigeria':20 'paradis':2 'shark':18 'sink':15 'student':12 'studi':6 'touch':4
  3736. 574 Midnight Westward A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery 2006 1 3 0.99 86 19.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'chef':18 'husband':8 'midnight':1 'monasteri':21 'must':14 'pastri':17 'redeem':15 'reflect':5 'shark':12 'taut':4 'westward':2
  3737. 575 Midsummer Groundhog A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan 2006 1 3 4.99 48 27.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':18 'chase':14 'crocodil':16 'dog':11 'fate':4 'groundhog':2 'japan':19 'midsumm':1 'moos':8 'must':13 'panorama':5
  3738. 576 Mighty Luck A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention 2006 1 7 2.99 122 13.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'administr':18 'astound':4 'convent':22 'databas':17 'epistl':5 'escap':15 'luck':2 'mad':8 'mighti':1 'must':14 'mysql':21 'pioneer':12 'scientist':9
  3739. 577 Mile Mulan A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention 2006 1 4 0.99 64 10.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'boy':16 'cat':8 'confront':14 'convent':20 'epistl':5 'husband':11 'lacklustur':4 'mile':1 'mulan':2 'must':13 'mysql':19
  3740. 578 Million Ace A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert 2006 1 4 4.99 142 16.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ace':2 'brilliant':4 'desert':21 'documentari':5 'find':14 'million':1 'must':13 'sahara':20 'squirrel':11 'technic':16 'woman':8 'writer':17
  3741. 579 Minds Truman A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery 2006 1 3 4.99 149 22.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'administr':18 'crocodil':12 'databas':17 'mad':8 'mind':1 'monasteri':21 'must':14 'outgun':15 'scientist':9 'taut':4 'truman':2 'yarn':5
  3742. 580 Mine Titans A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin 2006 1 3 4.99 166 12.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'amaz':4 'berlin':19 'discov':14 'forens':16 'mine':1 'must':13 'psychologist':17 'robot':8 'titan':2 'woman':11 'yarn':5
  3743. 581 Minority Kiss A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback 2006 1 4 0.99 59 16.99 G 2013-05-26 14:50:58.951 {Trailers} 'display':5 'insight':4 'kiss':2 'lumberjack':8 'man':17 'meet':15 'minor':1 'must':14 'outback':20 'sumo':11 'wrestler':12
  3744. 582 Miracle Virtual A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert 2006 1 3 2.99 162 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'boy':11 'butler':8 'desert':21 'epistl':5 'find':14 'mad':16 'miracl':1 'must':13 'sahara':20 'scientist':17 'touch':4 'virtual':2
  3745. 583 Mission Zoolander A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House 2006 1 3 4.99 164 26.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':21 'fun':22 'hous':23 'intrepid':4 'meet':15 'mission':1 'must':14 'shark':18 'stori':5 'sumo':8 'teacher':12 'wrestler':9 'zooland':2
  3746. 584 Mixed Doors A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India 2006 1 6 2.99 180 26.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':18 'door':2 'drama':5 'india':19 'lumberjack':11 'mix':1 'must':13 'pioneer':16 'succumb':14 'taut':4 'woman':8
  3747. 585 Mob Duffel A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies 2006 1 4 0.99 105 25.99 G 2013-05-26 14:50:58.951 {Trailers} 'boat':11 'boy':16 'canadian':19 'documentari':5 'duffel':2 'frisbe':8 'meet':14 'mob':1 'must':13 'rocki':20 'unbeliev':4
  3748. 586 Mockingbird Hollywood A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin 2006 1 4 0.99 60 27.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'berlin':18 'car':11 'compos':16 'hollywood':2 'man':8 'mockingbird':1 'must':13 'panorama':5 'sink':14 'thought':4
  3749. 587 Mod Secretary A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans 2006 1 6 4.99 77 20.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'bore':4 'build':15 'cat':12 'cow':9 'documentari':5 'lumberjack':17 'mad':8 'mod':1 'must':14 'new':19 'orlean':20 'secretari':2
  3750. 588 Model Fish A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia 2006 1 4 4.99 175 11.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'australia':18 'beauti':4 'boat':8 'crocodil':11 'dog':16 'fish':2 'model':1 'must':13 'outrac':14 'panorama':5
  3751. 589 Modern Dorado A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans 2006 1 3 0.99 74 20.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'boy':19 'butler':10 'dorado':2 'inspir':6 'modern':1 'must':16 'new':21 'orlean':22 'redeem':17 'stori':7 'sumo':13 'wrestler':14
  3752. 590 Money Harold A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia 2006 1 3 2.99 135 17.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'australia':18 'boat':11 'defeat':14 'explor':8 'harold':2 'money':1 'must':13 'robot':16 'tale':5 'touch':4
  3753. 591 Monsoon Cause A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat 2006 1 6 4.99 182 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19
  3754. 592 Monster Spartacus A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia 2006 1 6 2.99 107 28.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'australia':20 'cat':13 'fast':5 'fast-pac':4 'fight':16 'girl':18 'monster':1 'must':15 'pace':6 'spartacus':2 'stori':7 'waitress':10
  3755. 593 Monterey Labyrinth A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat 2006 1 6 0.99 158 13.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'awe':5 'awe-inspir':4 'boat':23 'compos':13 'drama':7 'escap':16 'feminist':18 'inspir':6 'labyrinth':2 'monkey':10 'monterey':1 'must':15 'u':22 'u-boat':21
  3756. 594 Montezuma Command A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat 2006 1 6 0.99 126 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'battl':14 'boat':20 'butler':11,16 'command':2 'jet':19 'montezuma':1 'must':13 'reflect':5 'thrill':4 'waitress':8
  3757. 595 Moon Bunch A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory 2006 1 7 0.99 83 20.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'astronaut':8 'baloon':20 'beauti':4 'bunch':2 'cat':17 'challeng':15 'cow':12 'factori':21 'mad':11 'moon':1 'must':14 'tale':5
  3758. 596 Moonshine Cabin A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat 2006 1 4 4.99 171 25.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astronaut':8 'boat':20 'cabin':2 'chase':14 'display':5 'feminist':11 'frisbe':16 'jet':19 'moonshin':1 'must':13 'thought':4
  3759. 597 Moonwalker Fool A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans 2006 1 5 4.99 184 12.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14
  3760. 598 Mosquito Armageddon A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan 2006 1 6 0.99 57 22.99 G 2013-05-26 14:50:58.951 {Trailers} 'ancient':19 'armageddon':2 'build':15 'charact':5 'feminist':12 'japan':20 'mosquito':1 'must':14 'studi':6 'teacher':17 'thought':4 'waitress':9
  3761. 599 Mother Oleander A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China 2006 1 3 0.99 103 20.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':18 'bore':4 'boy':11 'china':19 'fight':14 'husband':8 'mother':1 'must':13 'oleand':2 'squirrel':16 'tale':5
  3762. 600 Motions Details A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House 2006 1 5 0.99 166 16.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'abandon':21 'awe':5 'awe-inspir':4 'car':18 'detail':2 'dog':10 'fun':22 'hous':23 'inspir':6 'kill':16 'motion':1 'must':15 'reflect':7 'student':13
  3763. 601 Moulin Wake A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft 2006 1 4 0.99 79 20.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'abandon':20 'astound':4 'battl':15 'cat':12 'forens':8 'mine':21 'moulin':1 'must':14 'psychologist':9 'shaft':22 'stori':5 'teacher':17 'wake':2
  3764. 602 Mourning Purple A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans 2006 1 5 0.99 146 14.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'chase':14 'display':5 'lacklustur':4 'lumberjack':11 'mourn':1 'must':13 'new':18 'orlean':19 'pioneer':16 'purpl':2 'waitress':8
  3765. 603 Movie Shakespeare A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin 2006 1 6 4.99 53 27.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':9 'berlin':19 'build':15 'databas':8 'display':5 'hunter':17 'insight':4 'movi':1 'must':14 'shakespear':2 'student':12
  3766. 604 Mulan Moon A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon 2006 1 4 0.99 160 10.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'baloon':19 'dentist':16 'emot':4 'moon':2 'mulan':1 'must':13 'overcom':14 'pioneer':11 'saga':5 'woman':8
  3767. 605 Mulholland Beast A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat 2006 1 7 2.99 157 13.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'battl':16 'beast':2 'boat':23 'display':7 'husband':10 'inspir':6 'jet':22 'mulholland':1 'must':15 'squirrel':13 'sumo':18 'wrestler':19
  3768. 606 Mummy Creatures A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia 2006 1 3 0.99 160 15.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'australia':19 'charact':5 'creatur':2 'crocodil':9 'dentist':17 'fate':4 'meet':15 'monkey':12 'mummi':1 'must':14 'studi':6
  3769. 607 Muppet Mile A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico 2006 1 5 4.99 50 18.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'frisbe':16 'gulf':19 'kill':14 'lacklustur':4 'madman':8 'mexico':21 'mile':2 'muppet':1 'must':13 'stori':5 'teacher':11
  3770. 608 Murder Antitrust A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention 2006 1 6 2.99 166 11.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'administr':12 'antitrust':2 'boy':17 'brilliant':4 'car':8 'convent':21 'databas':11 'escap':15 'murder':1 'must':14 'mysql':20 'yarn':5
  3771. 609 Muscle Bright A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India 2006 1 7 2.99 185 23.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9
  3772. 610 Music Boondock A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station 2006 1 7 0.99 129 17.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'astronaut':11 'battl':14 'boondock':2 'butler':8 'explor':16 'first':19 'man':20 'music':1 'must':13 'space':21 'station':22 'tale':5 'thrill':4
  3773. 611 Musketeers Wait A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia 2006 1 7 4.99 73 17.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'australia':19 'cow':17 'fight':14 'mad':16 'moos':11 'musket':1 'must':13 'student':8 'touch':4 'wait':2 'yarn':5
  3774. 612 Mussolini Spoilers A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China 2006 1 6 2.99 180 10.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':18 'boat':8 'china':19 'compos':16 'display':5 'meet':14 'monkey':11 'mussolini':1 'must':13 'spoiler':2 'thrill':4
  3775. 613 Mystic Truman A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia 2006 1 5 0.99 92 19.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'epic':4 'explor':16 'georgia':19 'hunter':11 'must':13 'mystic':1 'outgun':14 'soviet':18 'teacher':8 'truman':2 'yarn':5
  3776. 614 Name Detective A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria 2006 1 5 4.99 178 11.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'cat':12 'detect':2 'mad':17 'must':14 'name':1 'nigeria':20 'pursu':15 'saga':5 'scientist':18 'sumo':8 'touch':4 'wrestler':9
  3777. 615 Nash Chocolat A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft 2006 1 6 2.99 180 21.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':21 'chocolat':2 'cow':12 'epic':4 'forens':17 'kill':15 'mad':11 'mine':22 'monkey':8 'must':14 'nash':1 'psychologist':18 'reflect':5 'shaft':23
  3778. 616 National Story A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California 2006 1 4 2.99 92 19.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'california':19 'epistl':5 'escap':15 'girl':12 'mad':8 'monkey':17 'must':14 'nation':1 'scientist':9 'stori':2 'taut':4
  3779. 617 Natural Stock A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory 2006 1 4 0.99 50 24.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'baloon':22 'car':19 'defeat':17 'factori':23 'fast':5 'fast-pac':4 'girl':14 'must':16 'natur':1 'pace':6 'stock':2 'stori':7 'sumo':10 'wrestler':11
  3780. 618 Necklace Outbreak A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California 2006 1 3 0.99 132 21.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'administr':9 'astound':4 'california':20 'cat':18 'databas':8 'epistl':5 'mad':12 'must':15 'necklac':1 'outbreak':2 'pursu':16 'scientist':13
  3781. 619 Neighbors Charade A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park 2006 1 3 0.99 161 20.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':19 'amus':20 'astronaut':11 'charad':2 'crocodil':8 'fanci':4 'feminist':16 'must':13 'neighbor':1 'outrac':14 'park':21 'reflect':5
  3782. 620 Nemo Campus A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse 2006 1 5 2.99 131 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'campus':2 'lacklustur':4 'manhattan':19 'monkey':8 'must':13 'nemo':1 'outrac':14 'penthous':20 'reflect':5 'squirrel':11 'woman':16
  3783. 621 Network Peak A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California 2006 1 5 2.99 75 23.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':11 'butler':8 'california':19 'mad':16 'must':13 'network':1 'outgun':14 'peak':2 'reflect':5 'scientist':17 'unbeliev':4
  3784. 622 Newsies Story A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico 2006 1 4 0.99 159 25.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'action':5 'action-pack':4 'charact':7 'dog':11 'gulf':22 'lumberjack':14 'mexico':24 'moos':19 'must':16 'newsi':1 'outrac':17 'pack':6 'stori':2 'studi':8
  3785. 623 Newton Labyrinth A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India 2006 1 4 0.99 75 9.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':20 'charact':5 'find':15 'india':21 'intrepid':4 'labyrinth':2 'moos':9 'must':14 'newton':1 'shark':18 'studi':6 'waitress':12
  3786. 624 Nightmare Chill A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft 2006 1 3 4.99 149 25.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':19 'brilliant':4 'butler':11 'chill':2 'display':5 'fight':14 'mine':20 'must':13 'nightmar':1 'robot':8 'shaft':21 'waitress':16
  3787. 625 None Spiking A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse 2006 1 3 0.99 83 18.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'agent':9 'astronaut':12 'bore':4 'compos':17 'face':15 'manhattan':20 'must':14 'none':1 'penthous':21 'reflect':5 'secret':8 'spike':2
  3788. 626 Noon Papi A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse 2006 1 5 2.99 57 12.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astronaut':13 'charact':5 'find':16 'mad':9 'manhattan':21 'must':15 'noon':1 'papi':2 'penthous':22 'pioneer':18 'scientist':10 'studi':6 'unbeliev':4
  3789. 627 North Tequila A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans 2006 1 4 4.99 67 9.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'charact':5 'cow':10 'mad':9 'must':15 'new':20 'north':1 'orlean':21 'reach':16 'robot':13 'studi':6 'tequila':2 'woman':18
  3790. 628 Northwest Polish A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback 2006 1 5 2.99 172 24.99 PG 2013-05-26 14:50:58.951 {Trailers} 'bore':4 'boy':9 'charact':5 'must':15 'northwest':1 'outback':21 'outrac':16 'polish':2 'shark':13 'studi':6 'woman':18
  3791. 629 Notorious Reunion A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon 2006 1 7 0.99 128 9.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'amaz':4 'baloon':19 'epistl':5 'fight':14 'hunter':16 'must':13 'notori':1 'reunion':2 'squirrel':11 'woman':8
  3792. 630 Notting Speakeasy A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies 2006 1 7 0.99 48 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'butler':8 'canadian':19 'display':5 'find':14 'must':13 'not':1 'rocki':20 'speakeasi':2 'thought':4 'waitress':16 'woman':11
  3793. 631 Novocaine Flight A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria 2006 1 4 0.99 64 11.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'crocodil':16 'display':5 'fanci':4 'flight':2 'must':13 'nigeria':18 'novocain':1 'outgun':14 'student':8 'teacher':11
  3794. 632 Nuts Ties A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California 2006 1 5 4.99 145 10.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'california':18 'drama':5 'explor':8 'meet':14 'must':13 'nut':1 'teacher':16 'thought':4 'tie':2 'woman':11
  3795. 633 October Submarine A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat 2006 1 6 4.99 54 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'boat':20 'boy':11 'confront':14 'epistl':5 'husband':16 'jet':19 'monkey':8 'must':13 'octob':1 'submarin':2 'taut':4
  3796. 634 Odds Boogie A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin 2006 1 6 0.99 48 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'battl':14 'berlin':18 'boogi':2 'feminist':8 'hunter':16 'madman':11 'must':13 'odd':1 'thrill':4 'yarn':5
  3797. 635 Oklahoma Jumanji A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert 2006 1 7 0.99 58 15.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'dentist':8 'desert':20 'drama':5 'husband':16 'jumanji':2 'meet':14 'must':13 'oklahoma':1 'sahara':19 'thought':4 'woman':11
  3798. 636 Oleander Clue A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat 2006 1 5 0.99 161 12.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'boat':21 'bore':4 'clue':2 'forens':16 'jet':20 'monkey':11 'must':13 'oleand':1 'psychologist':17 'stori':5 'succumb':14 'teacher':8
  3799. 637 Open African A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat 2006 1 7 4.99 131 16.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'african':2 'agent':9 'boat':22 'car':17 'discov':15 'drama':5 'explor':12 'lacklustur':4 'must':14 'open':1 'secret':8 'u':21 'u-boat':20
  3800. 638 Operation Operation A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China 2006 1 7 2.99 156 23.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':19 'charact':5 'china':20 'frisbe':12 'intrepid':4 'madman':17 'man':9 'must':14 'oper':1,2 'overcom':15 'studi':6
  3801. 639 Opposite Necklace A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria 2006 1 7 4.99 92 9.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'crocodil':8 'epistl':5 'explor':16 'fate':4 'kill':14 'moos':11 'must':13 'necklac':2 'nigeria':18 'opposit':1
  3802. 640 Opus Ice A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert 2006 1 5 4.99 102 21.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'boy':13 'desert':22 'discov':16 'drama':7 'fast':5 'fast-pac':4 'feminist':18 'hunter':10 'ice':2 'must':15 'opus':1 'pace':6 'sahara':21
  3803. 641 Orange Grapes A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat 2006 1 4 0.99 76 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'astound':4 'boat':21 'butler':8 'documentari':5 'dog':16 'face':14 'grape':2 'must':13 'orang':1 'u':20 'u-boat':19 'woman':11
  3804. 642 Order Betrayed A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert 2006 1 7 2.99 120 13.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'amaz':4 'betray':2 'cat':17 'challeng':15 'desert':21 'dog':8 'must':14 'order':1 'saga':5 'sahara':20 'shark':12
  3805. 643 Orient Closer A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert 2006 1 3 2.99 118 22.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'astound':4 'closer':2 'desert':21 'epistl':5 'fight':15 'must':14 'orient':1 'sahara':20 'squirrel':17 'teacher':12 'technic':8 'writer':9
  3806. 644 Oscar Gold A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia 2006 1 7 2.99 115 29.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'administr':9 'databas':8 'dog':12 'face':15 'georgia':20 'gold':2 'insight':4 'madman':17 'must':14 'oscar':1 'soviet':19 'tale':5
  3807. 645 Others Soup A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico 2006 1 7 2.99 118 18.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'cow':9 'documentari':5 'gulf':20 'lacklustur':4 'mad':8 'madman':12 'mexico':22 'moos':17 'must':14 'other':1 'sink':15 'soup':2
  3808. 646 Outbreak Divine A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat 2006 1 6 0.99 169 12.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'administr':9 'boat':23 'databas':8 'divin':2 'must':14 'outbreak':1 'shark':18 'succumb':15 'u':22 'u-boat':21 'unbeliev':4 'woman':12 'yarn':5
  3809. 647 Outfield Massacre A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India 2006 1 4 0.99 129 18.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'administr':18 'agent':12 'ancient':20 'databas':17 'drama':5 'husband':8 'india':21 'massacr':2 'must':14 'outfield':1 'pursu':15 'secret':11 'thought':4
  3810. 648 Outlaw Hanky A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert 2006 1 7 4.99 148 17.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'astronaut':8 'compos':11 'conquer':14 'desert':20 'dog':16 'hanki':2 'must':13 'outlaw':1 'sahara':19 'stori':5 'thought':4
  3811. 649 Oz Liaisons A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory 2006 1 4 2.99 85 14.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'cat':12 'confront':15 'epic':4 'factori':21 'liaison':2 'mad':8 'must':14 'oz':1 'scientist':9 'woman':17 'yarn':5
  3812. 650 Pacific Amistad A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse 2006 1 3 0.99 144 27.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'amistad':2 'chef':17 'dog':8 'kill':14 'manhattan':20 'moos':11 'must':13 'pacif':1 'pastri':16 'penthous':21 'thrill':4 'yarn':5
  3813. 651 Packer Madigan A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park 2006 1 3 0.99 84 20.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'abandon':21 'amus':22 'build':16 'display':5 'epic':4 'forens':12 'madigan':2 'must':15 'packer':1 'park':23 'psychologist':13 'sumo':8 'woman':18 'wrestler':9
  3814. 652 Pajama Jawbreaker A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California 2006 1 3 0.99 126 14.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'boy':8 'california':20 'drama':5 'emot':4 'jawbreak':2 'must':14 'pajama':1 'redeem':15 'sumo':17 'technic':11 'wrestler':18 'writer':12
  3815. 653 Panic Club A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon 2006 1 3 4.99 102 15.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'baloon':19 'club':2 'crocodil':11 'display':5 'fanci':4 'girl':16 'must':13 'panic':1 'succumb':14 'teacher':8
  3816. 654 Panky Submarine A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico 2006 1 4 4.99 93 19.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boy':17 'dentist':8 'documentari':5 'gulf':20 'mexico':22 'must':14 'overcom':15 'panki':1 'submarin':2 'sumo':11 'touch':4 'wrestler':12
  3817. 655 Panther Reds A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico 2006 1 5 4.99 109 22.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'brilliant':4 'gulf':19 'man':11 'mexico':21 'moos':8 'must':13 'panorama':5 'panther':1 'reach':14 'red':2 'teacher':16
  3818. 656 Papi Necklace A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan 2006 1 3 0.99 128 9.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'ancient':18 'car':8 'display':5 'escap':14 'fanci':4 'japan':19 'monkey':11 'must':13 'necklac':2 'papi':1 'squirrel':16
  3819. 657 Paradise Sabrina A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse 2006 1 5 2.99 48 12.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'car':8 'crocodil':16 'intrepid':4 'manhattan':19 'moos':11 'must':13 'outrac':14 'paradis':1 'penthous':20 'sabrina':2 'yarn':5
  3820. 658 Paris Weekend A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback 2006 1 7 2.99 121 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'crocodil':11 'defeat':14 'intrepid':4 'monkey':16 'must':13 'outback':19 'pari':1 'squirrel':8 'stori':5 'weekend':2
  3821. 659 Park Citizen A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan 2006 1 3 4.99 109 14.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':19 'citizen':2 'epistl':5 'face':15 'girl':12 'husband':17 'japan':20 'must':14 'park':1 'sumo':8 'taut':4 'wrestler':9
  3822. 660 Party Knock A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft 2006 1 7 2.99 107 11.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':21 'battl':15 'butler':12 'display':5 'fate':4 'knock':2 'mine':22 'must':14 'parti':1 'shaft':23 'sumo':17 'technic':8 'wrestler':18 'writer':9
  3823. 661 Past Suicides A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery 2006 1 5 4.99 157 17.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'astronaut':11 'challeng':14 'hunter':16 'intrepid':4 'madman':8 'monasteri':19 'must':13 'past':1 'suicid':2 'tale':5
  3824. 662 Paths Control A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China 2006 1 3 4.99 118 9.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'ancient':18 'astound':4 'butler':8 'cat':11 'china':19 'control':2 'documentari':5 'find':14 'frisbe':16 'must':13 'path':1
  3825. 663 Patient Sister A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia 2006 1 7 0.99 99 29.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'confront':14 'emot':4 'epistl':5 'georgia':19 'lumberjack':16 'must':13 'patient':1 'robot':11 'sister':2 'soviet':18 'squirrel':8
  3826. 664 Patriot Roman A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California 2006 1 6 2.99 65 12.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'administr':12 'astronaut':17 'california':19 'challeng':15 'databas':11 'must':14 'patriot':1 'robot':8 'roman':2 'saga':5 'taut':4
  3827. 665 Patton Interview A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin 2006 1 4 2.99 175 22.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'agent':12 'berlin':19 'cat':17 'compos':8 'documentari':5 'interview':2 'must':14 'patton':1 'secret':11 'succumb':15 'thrill':4
  3828. 666 Paycheck Wait A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert 2006 1 4 4.99 145 27.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'boy':10 'desert':22 'discov':16 'inspir':6 'man':13 'moos':18 'must':15 'paycheck':1 'reflect':7 'sahara':21 'wait':2
  3829. 667 Peach Innocent A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin 2006 1 3 2.99 160 20.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'berlin':20 'butler':18 'chase':16 'dentist':13 'drama':7 'innoc':2 'monkey':10 'must':15 'pack':6 'peach':1
  3830. 668 Peak Forever A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft 2006 1 7 4.99 80 25.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':20 'agent':12 'astronaut':17 'boat':8 'forev':2 'insight':4 'mine':21 'must':14 'peak':1 'reflect':5 'secret':11 'shaft':22 'vanquish':15
  3831. 669 Pearl Destiny A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat 2006 1 3 2.99 74 10.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'astronaut':8 'boat':22 'chef':12 'destini':2 'dog':17 'lacklustur':4 'must':14 'pastri':11 'pearl':1 'sink':15 'u':21 'u-boat':20 'yarn':5
  3832. 670 Pelican Comforts A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin 2006 1 4 4.99 48 17.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'astronaut':16 'berlin':18 'boy':8 'comfort':2 'documentari':5 'epic':4 'monkey':11 'must':13 'pelican':1 'pursu':14
  3833. 671 Perdition Fargo A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin 2006 1 7 4.99 99 27.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'berlin':20 'car':10 'cat':13 'fargo':2 'fast':5 'fast-pac':4 'hunter':18 'must':15 'outgun':16 'pace':6 'perdit':1 'stori':7
  3834. 672 Perfect Groove A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon 2006 1 7 2.99 82 17.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':19 'build':14 'dog':8,11 'groov':2 'husband':16 'must':13 'perfect':1 'thrill':4 'yarn':5
  3835. 673 Personal Ladybugs A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan 2006 1 3 0.99 118 19.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':19 'cat':17 'conquer':15 'epic':4 'hunter':8 'japan':20 'ladybug':2 'must':14 'person':1 'saga':5 'technic':11 'writer':12
  3836. 674 Pet Haunting A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California 2006 1 3 0.99 99 11.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'boat':11 'california':18 'conquer':14 'explor':8 'haunt':2 'must':13 'pet':1 'reflect':5 'unbeliev':4 'woman':16
  3837. 675 Phantom Glory A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery 2006 1 6 2.99 60 17.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'astronaut':8 'beauti':4 'crocodil':11 'discov':14 'documentari':5 'glori':2 'madman':16 'monasteri':19 'must':13 'phantom':1
  3838. 676 Philadelphia Wife A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert 2006 1 7 4.99 137 16.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':17 'astronaut':11 'conquer':14 'databas':16 'desert':21 'hunter':8 'must':13 'philadelphia':1 'sahara':20 'taut':4 'wife':2 'yarn':5
  3839. 677 Pianist Outfield A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery 2006 1 6 0.99 136 25.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'boy':8 'intrepid':4 'lumberjack':17 'monasteri':20 'must':14 'outfield':2 'pianist':1 'pursu':15 'stori':5 'technic':11 'writer':12
  3840. 678 Pickup Driving A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory 2006 1 3 2.99 77 23.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':20 'boat':11 'chef':17 'documentari':5 'drive':2 'factori':21 'husband':8 'meet':14 'must':13 'pastri':16 'pickup':1 'touch':4
  3841. 679 Pilot Hoosiers A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft 2006 1 6 2.99 50 17.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':23 'awe':5 'awe-inspir':4 'crocodil':10 'forens':19 'hoosier':2 'inspir':6 'meet':17 'mine':24 'must':16 'pilot':1 'psychologist':20 'reflect':7 'shaft':25 'sumo':13 'wrestler':14
  3842. 680 Pinocchio Simon A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California 2006 1 4 4.99 103 21.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'california':22 'feminist':20 'find':18 'mad':10 'must':17 'pack':6 'pinocchio':1 'reflect':7 'scientist':11 'shark':15 'simon':2
  3843. 681 Pirates Roxanne A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies 2006 1 4 0.99 100 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'canadian':20 'drama':5 'lumberjack':11 'must':13 'overcom':14 'pirat':1 'rocki':21 'roxann':2 'shark':17 'stun':4 'woman':8
  3844. 682 Pittsburgh Hunchback A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia 2006 1 4 4.99 134 17.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'boat':11 'boy':8 'epistl':5 'find':14 'georgia':19 'hunchback':2 'must':13 'pittsburgh':1 'soviet':18 'student':16 'thrill':4
  3845. 683 Pity Bound A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria 2006 1 5 4.99 60 19.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'administr':17 'bore':4 'bound':2 'databas':16 'defeat':14 'feminist':8 'moos':11 'must':13 'nigeria':19 'panorama':5 'piti':1
  3846. 684 Pizza Jumanji A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat 2006 1 4 2.99 173 11.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'boat':21 'cat':8 'epic':4 'jumanji':2 'must':13 'outgun':14 'pizza':1 'robot':16 'saga':5 'squirrel':11 'u':20 'u-boat':19
  3847. 685 Platoon Instinct A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia 2006 1 6 4.99 132 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'australia':18 'instinct':2 'man':8 'must':13 'panorama':5 'platoon':1 'reach':14 'thrill':4 'woman':11,16
  3848. 686 Pluto Oleander A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank 2006 1 5 4.99 84 9.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'action':5 'action-pack':4 'car':10,18 'moos':13 'must':15 'oleand':2 'outgun':16 'pack':6 'pluto':1 'reflect':7 'shark':21 'tank':22
  3849. 687 Pocus Pulp A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory 2006 1 6 0.99 138 15.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'astronaut':16 'baloon':19 'build':14 'dog':11 'factori':20 'frisbe':8 'intrepid':4 'must':13 'pocus':1 'pulp':2 'yarn':5
  3850. 688 Polish Brooklyn A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback 2006 1 6 0.99 61 12.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':10 'bore':4 'brooklyn':2 'charact':5 'databas':9 'lumberjack':13 'madman':18 'must':15 'outback':21 'polish':1 'reach':16 'studi':6
  3851. 689 Pollock Deliverance A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert 2006 1 5 2.99 137 14.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'boat':16 'deliver':2 'desert':20 'frisbe':11 'intrepid':4 'madman':8 'must':13 'outgun':14 'pollock':1 'sahara':19 'stori':5
  3852. 690 Pond Seattle A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China 2006 1 7 2.99 185 25.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8
  3853. 691 Poseidon Forever A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery 2006 1 6 4.99 159 29.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'dentist':16 'epistl':5 'forev':2 'monasteri':19 'monkey':11 'must':13 'poseidon':1 'thought':4 'vanquish':14 'woman':8
  3854. 692 Potluck Mixed A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon 2006 1 3 2.99 179 10.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'baloon':20 'beauti':4 'dog':8 'mix':2 'must':14 'outgun':15 'potluck':1 'stori':5 'student':17 'technic':11 'writer':12
  3855. 693 Potter Connecticut A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin 2006 1 5 2.99 115 16.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'berlin':19 'cat':11 'connecticut':2 'epistl':5 'fight':14 'frisbe':8 'must':13 'potter':1 'technic':16 'thrill':4 'writer':17
  3856. 694 Prejudice Oleander A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat 2006 1 6 4.99 98 15.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'boat':21 'boy':8 'dentist':11 'epic':4 'madman':16 'must':13 'oleand':2 'outrac':14 'prejudic':1 'saga':5 'u':20 'u-boat':19
  3857. 695 President Bang A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia 2006 1 6 4.99 144 12.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'bang':2 'battl':15 'fate':4 'georgia':20 'moos':12 'must':14 'panorama':5 'presid':1 'robot':17 'soviet':19 'technic':8 'writer':9
  3858. 696 Pride Alamo A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India 2006 1 6 0.99 114 20.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'alamo':2 'ancient':20 'drama':5 'forens':12 'india':21 'must':15 'pride':1 'psychologist':13 'shark':9 'student':18 'thought':4 'vanquish':16
  3859. 697 Primary Glass A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies 2006 1 7 0.99 53 16.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'build':15 'butler':12 'canadian':20 'chef':9 'documentari':5 'dog':17 'fate':4 'glass':2 'must':14 'pastri':8 'primari':1 'rocki':21
  3860. 698 Princess Giant A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank 2006 1 3 2.99 71 29.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'battl':15 'chef':9 'giant':2 'monkey':12,17 'must':14 'pastri':8 'princess':1 'shark':20 'tank':21 'thrill':4 'yarn':5
  3861. 699 Private Drop A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon 2006 1 7 4.99 106 26.99 PG 2013-05-26 14:50:58.951 {Trailers} 'agent':18 'baloon':21 'drop':2 'hunter':12 'must':14 'privat':1 'secret':17 'stori':5 'stun':4 'succumb':15 'technic':8 'writer':9
  3862. 700 Prix Undefeated A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China 2006 1 4 2.99 115 13.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':19 'boat':12 'china':20 'dentist':17 'mad':8 'must':14 'overcom':15 'prix':1 'saga':5 'scientist':9 'stun':4 'undef':2
  3863. 701 Psycho Shrunk A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria 2006 1 5 2.99 155 11.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'amaz':4 'crocodil':8 'explor':11 'fight':14 'husband':16 'must':13 'nigeria':18 'panorama':5 'psycho':1 'shrunk':2
  3864. 702 Pulp Beverly A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria 2006 1 4 2.99 89 12.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'bever':2 'crocodil':11 'display':5 'dog':8 'man':16 'must':13 'nigeria':18 'outrac':14 'pulp':1 'unbeliev':4
  3865. 703 Punk Divorce A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies 2006 1 6 4.99 100 18.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'boat':14 'canadian':22 'chef':11 'divorc':2 'face':17 'fast':5 'fast-pac':4 'frisbe':19 'must':16 'pace':6 'pastri':10 'punk':1 'rocki':23 'tale':7
  3866. 704 Pure Runner A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse 2006 1 3 2.99 121 25.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'challeng':14 'documentari':5 'madman':11 'manhattan':19 'must':13 'penthous':20 'pure':1 'runner':2 'squirrel':16 'student':8 'thought':4
  3867. 705 Purple Movie A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park 2006 1 4 2.99 88 9.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':21 'amus':22 'bore':4 'chef':9 'discov':16 'display':5 'frisbe':18 'movi':2 'must':15 'park':23 'pastri':8 'purpl':1 'sumo':12 'wrestler':13
  3868. 706 Queen Luke A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans 2006 1 5 4.99 163 22.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'astound':4 'boy':11 'challeng':14 'compos':16 'girl':8 'luke':2 'must':13 'new':18 'orlean':19 'queen':1 'stori':5
  3869. 707 Quest Mussolini A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory 2006 1 5 2.99 177 29.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'baloon':21 'battl':15 'chef':18 'drama':5 'factori':22 'fate':4 'husband':8 'mussolini':2 'must':14 'pastri':17 'quest':1 'sumo':11 'wrestler':12
  3870. 708 Quills Bull A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia 2006 1 4 4.99 112 19.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'australia':18 'bull':2 'moos':16 'must':13 'pioneer':8 'quill':1 'reach':14 'stori':5 'thought':4 'woman':11
  3871. 709 Racer Egg A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California 2006 1 7 2.99 147 19.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'agent':17 'california':19 'display':5 'egg':2 'emot':4 'monkey':8 'must':13 'racer':1 'reach':14 'secret':16 'waitress':11
  3872. 710 Rage Games A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park 2006 1 4 4.99 120 18.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':22 'agent':14 'amus':23 'astronaut':10 'escap':17 'fast':5 'fast-pac':4 'game':2 'hunter':19 'must':16 'pace':6 'park':24 'rage':1 'saga':7 'secret':13
  3873. 711 Raging Airplane A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat 2006 1 4 4.99 154 18.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'agent':9 'airplan':2 'astound':4 'boat':23 'display':5 'escap':16 'jet':22 'mad':18 'must':15 'rage':1 'scientist':19 'secret':8 'technic':12 'writer':13
  3874. 712 Raiders Antitrust A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station 2006 1 4 0.99 82 11.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'amaz':4 'antitrust':2 'drama':5 'feminist':11 'first':19 'man':20 'meet':14 'must':13 'raider':1 'space':21 'station':22 'teacher':8 'woman':16
  3875. 713 Rainbow Shock A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India 2006 1 3 4.99 74 14.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'ancient':20 'boy':13 'discov':16 'hunter':10 'india':21 'lumberjack':18 'must':15 'pack':6 'rainbow':1 'shock':2 'stori':7
  3876. 714 Random Go A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank 2006 1 6 2.99 73 29.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'cat':16 'confront':14 'drama':5 'fate':4 'frisbe':8 'go':2 'must':13 'random':1 'shark':19 'student':11 'tank':20
  3877. 715 Range Moonwalker A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon 2006 1 3 4.99 147 25.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'baloon':19 'confront':14 'crocodil':16 'dentist':11 'documentari':5 'hunter':8 'insight':4 'moonwalk':2 'must':13 'rang':1
  3878. 716 Reap Unfaithful A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention 2006 1 6 2.99 136 26.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'challeng':15 'compos':8 'convent':22 'cow':18 'epistl':5 'mad':17 'must':14 'mysql':21 'reap':1 'sumo':11 'thrill':4 'unfaith':2 'wrestler':12
  3879. 717 Rear Trading A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia 2006 1 6 0.99 97 23.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'agent':15 'awe':5 'awe-inspir':4 'chef':21 'forens':10 'georgia':24 'inspir':6 'must':17 'pastri':20 'psychologist':11 'rear':1 'reflect':7 'secret':14 'soviet':23 'succumb':18 'trade':2
  3880. 718 Rebel Airport A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India 2006 1 7 0.99 73 24.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'administr':9 'airport':2 'ancient':19 'boat':12 'databas':8 'husband':17 'india':20 'intrepid':4 'must':14 'outrac':15 'rebel':1 'yarn':5
  3881. 719 Records Zorro A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback 2006 1 7 4.99 182 11.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2
  3882. 720 Redemption Comforts A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China 2006 1 3 2.99 179 20.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'ancient':19 'battl':14 'china':20 'comfort':2 'dentist':8 'documentari':5 'emot':4 'mad':16 'must':13 'redempt':1 'scientist':17 'woman':11
  3883. 721 Reds Pocus A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia 2006 1 7 4.99 182 23.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5
  3884. 722 Reef Salute A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon 2006 1 5 0.99 123 26.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'action':5 'action-pack':4 'baloon':21 'battl':16 'dentist':18 'lumberjack':13 'must':15 'pack':6 'reef':1 'saga':7 'salut':2 'teacher':10
  3885. 723 Reign Gentlemen A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico 2006 1 3 2.99 82 29.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'butler':16 'compos':8 'emot':4 'escap':14 'gentlemen':2 'gulf':19 'man':11 'mexico':21 'must':13 'reign':1 'yarn':5
  3886. 724 Remember Diary A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India 2006 1 5 2.99 110 15.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':19 'conquer':15 'diari':2 'india':20 'insight':4 'monkey':17 'must':14 'rememb':1 'tale':5 'technic':8 'waitress':12 'writer':9
  3887. 725 Requiem Tycoon A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery 2006 1 6 4.99 167 25.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'administr':13 'cat':9 'charact':5 'databas':12 'monasteri':21 'must':15 'pursu':16 'requiem':1 'studi':6 'teacher':18 'tycoon':2 'unbeliev':4
  3888. 726 Reservoir Adaptation A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California 2006 1 7 2.99 61 29.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'adapt':2 'california':18 'car':16 'drama':5 'intrepid':4 'kill':14 'moos':11 'must':13 'reservoir':1 'teacher':8
  3889. 727 Resurrection Silverado A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention 2006 1 6 0.99 117 12.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'challeng':14 'convent':20 'epic':4 'explor':11 'girl':16 'must':13 'mysql':19 'resurrect':1 'robot':8 'silverado':2 'yarn':5
  3890. 728 Reunion Witches A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory 2006 1 3 0.99 63 26.99 R 2013-05-26 14:50:58.951 {Commentaries} 'administr':9 'baloon':21 'databas':8 'documentari':5 'factori':22 'frisbe':12 'mad':17 'must':14 'redeem':15 'reunion':1 'scientist':18 'unbeliev':4 'witch':2
  3891. 729 Rider Caddyshack A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria 2006 1 5 2.99 177 28.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'caddyshack':2 'chase':14 'monkey':8 'moos':16 'must':13 'nigeria':18 'reflect':5 'rider':1 'taut':4 'woman':11
  3892. 730 Ridgemont Submarine A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan 2006 1 3 0.99 46 28.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':19 'compos':11 'cow':17 'drama':5 'japan':20 'mad':16 'must':13 'ridgemont':1 'sink':14 'submarin':2 'unbeliev':4 'waitress':8
  3893. 731 Right Cranes A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat 2006 1 7 4.99 153 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'administr':18 'boat':9,22 'cat':12 'charact':5 'crane':2 'databas':17 'fate':4 'find':15 'jet':21 'must':14 'right':1 'studi':6
  3894. 732 Rings Heartbreakers A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans 2006 1 5 0.99 58 17.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'amaz':4 'boat':12 'conquer':15 'heartbreak':2 'must':14 'new':19 'orlean':20 'ring':1 'sumo':8 'waitress':17 'wrestler':9 'yarn':5
  3895. 733 River Outlaw A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention 2006 1 4 0.99 149 29.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'charact':5 'convent':21 'face':15 'hunter':17 'lumberjack':12 'must':14 'mysql':20 'outlaw':2 'river':1 'squirrel':9 'studi':6 'thrill':4
  3896. 734 Road Roxanne A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan 2006 1 4 4.99 158 12.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':19 'astronaut':12 'bore':4 'charact':5 'crocodil':17 'fight':15 'japan':20 'must':14 'road':1 'roxann':2 'studi':6 'waitress':9
  3897. 735 Robbers Joon A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia 2006 1 7 2.99 102 26.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'confront':15 'forens':17 'georgia':21 'joon':2 'mad':8 'must':14 'psychologist':18 'robber':1 'scientist':9 'soviet':20 'stori':5 'thought':4 'waitress':12
  3898. 736 Robbery Bright A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan 2006 1 4 0.99 134 21.99 R 2013-05-26 14:50:58.951 {Trailers} 'ancient':18 'boat':16 'bright':2 'fight':14 'japan':19 'must':13 'reflect':5 'robberi':1 'robot':8 'squirrel':11 'taut':4
  3899. 737 Rock Instinct A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India 2006 1 4 0.99 102 28.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':19 'astound':4 'astronaut':17 'charact':5 'india':20 'instinct':2 'moos':12 'must':14 'overcom':15 'robot':9 'rock':1 'studi':6
  3900. 738 Rocketeer Mother A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank 2006 1 3 0.99 178 27.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'charact':7 'discov':18 'inspir':6 'mother':2 'must':17 'robot':11 'rocket':1 'shark':23 'studi':8 'sumo':14 'tank':24 'woman':20 'wrestler':15
  3901. 739 Rocky War A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria 2006 1 4 4.99 145 17.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'display':7 'explor':13 'fast':5 'fast-pac':4 'mad':18 'must':15 'nigeria':21 'outgun':16 'pace':6 'rocki':1 'scientist':19 'squirrel':10 'war':2
  3902. 740 Rollercoaster Bringing A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank 2006 1 5 2.99 153 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'beauti':4 'bring':2 'discov':14 'drama':5 'lumberjack':11 'must':13 'robot':8 'rollercoast':1 'shark':20 'tank':21 'technic':16 'writer':17
  3903. 741 Roman Punk A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin 2006 1 7 0.99 81 28.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'battl':15 'berlin':20 'cow':9 'forens':17 'mad':8 'must':14 'panorama':5 'psychologist':18 'punk':2 'roman':1 'student':12 'thought':4
  3904. 742 Roof Champion A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon 2006 1 7 0.99 101 25.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'baloon':19 'car':8 'champion':2 'explor':11 'find':14 'lacklustur':4 'monkey':16 'must':13 'reflect':5 'roof':1
  3905. 743 Room Roman A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank 2006 1 7 0.99 60 27.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'agent':14 'awe':5 'awe-inspir':4 'compos':10,19 'inspir':6 'must':16 'panorama':7 'roman':2 'room':1 'secret':13 'shark':22 'sink':17 'tank':23
  3906. 744 Roots Remember A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin 2006 1 4 0.99 89 23.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'berlin':19 'brilliant':4 'cow':9 'drama':5 'escap':15 'hunter':12,17 'mad':8 'must':14 'rememb':2 'root':1
  3907. 745 Roses Treasure A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station 2006 1 5 4.99 162 23.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'agent':12 'astound':4 'defeat':15 'first':20 'man':21 'monkey':8 'must':14 'panorama':5 'rose':1 'secret':11 'space':22 'station':23 'treasur':2 'woman':17
  3908. 746 Rouge Squad A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia 2006 1 3 0.99 118 10.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'astronaut':10 'australia':21 'awe':5 'awe-inspir':4 'conquer':16 'drama':7 'frisbe':13 'inspir':6 'mad':18 'must':15 'roug':1 'scientist':19 'squad':2
  3909. 747 Roxanne Rebel A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback 2006 1 5 0.99 171 9.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'administr':13 'astound':4 'chef':9 'databas':12 'fight':16 'man':18 'must':15 'outback':21 'pastri':8 'rebel':2 'roxann':1 'stori':5
  3910. 748 Rugrats Shakespeare A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria 2006 1 4 0.99 109 16.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'crocodil':8,11 'discov':14 'must':13 'nigeria':19 'rugrat':1 'saga':5 'shakespear':2 'technic':16 'touch':4 'writer':17
  3911. 749 Rules Human A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House 2006 1 6 4.99 153 19.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'abandon':19 'astronaut':8 'beauti':4 'confront':14 'epistl':5 'fun':20 'hous':21 'human':2 'monkey':16 'must':13 'rule':1 'student':11
  3912. 750 Run Pacific A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention 2006 1 3 0.99 145 25.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'cat':8 'chef':12,18 'conquer':15 'convent':22 'must':14 'mysql':21 'pacif':2 'pastri':11,17 'run':1 'tale':5 'touch':4
  3913. 751 Runaway Tenenbaums A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House 2006 1 6 0.99 181 17.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4
  3914. 752 Runner Madigan A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback 2006 1 6 0.99 101 27.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'crocodil':8 'documentari':5 'madigan':2 'must':13 'outback':19 'outrac':14 'robot':11 'runner':1 'thought':4 'woman':16
  3915. 754 Rushmore Mermaid A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank 2006 1 6 2.99 150 17.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'bore':4 'husband':16 'mermaid':2 'moos':11 'must':13 'reach':14 'rushmor':1 'shark':19 'stori':5 'tank':20 'woman':8
  3916. 755 Sabrina Midnight A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert 2006 1 5 4.99 99 11.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'crocodil':11 'desert':20 'emot':4 'husband':16 'midnight':2 'must':13 'sabrina':1 'sahara':19 'squirrel':8 'stori':5 'succumb':14
  3917. 756 Saddle Antitrust A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House 2006 1 7 2.99 80 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':20 'antitrust':2 'battl':15 'epistl':5 'feminist':8 'fun':21 'hous':22 'must':14 'saddl':1 'shark':12 'stun':4 'woman':17
  3918. 757 Sagebrush Clueless A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan 2006 1 4 2.99 106 28.99 G 2013-05-26 14:50:58.951 {Trailers} 'ancient':18 'boy':16 'clueless':2 'hunter':11 'insight':4 'japan':19 'kill':14 'lumberjack':8 'must':13 'sagebrush':1 'stori':5
  3919. 758 Saints Bride A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico 2006 1 5 2.99 125 11.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'bride':2 'compos':12 'explor':17 'fate':4 'gulf':20 'mexico':22 'must':14 'pursu':15 'saint':1 'tale':5 'technic':8 'writer':9
  3920. 759 Salute Apollo A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China 2006 1 4 2.99 73 29.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':21 'apollo':2 'awe':5 'awe-inspir':4 'boy':11 'charact':7 'china':22 'crocodil':19 'feminist':14 'inspir':6 'must':16 'salut':1 'sink':17 'studi':8
  3921. 760 Samurai Lion A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon 2006 1 5 2.99 110 21.99 G 2013-05-26 14:50:58.951 {Commentaries} 'astronaut':13 'baloon':21 'boat':18 'fast':5 'fast-pac':4 'lion':2 'must':15 'pace':6 'pioneer':10 'reach':16 'samurai':1 'stori':7
  3922. 761 Santa Paris A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory 2006 1 7 2.99 154 23.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'baloon':20 'car':11 'cow':17 'documentari':5 'emot':4 'factori':21 'mad':16 'moos':8 'must':13 'pari':2 'redeem':14 'santa':1
  3923. 762 Sassy Packer A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse 2006 1 6 0.99 154 29.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'documentari':7 'dog':10 'fast':5 'fast-pac':4 'find':16 'manhattan':21 'moos':18 'must':15 'pace':6 'packer':2 'penthous':22 'sassi':1 'teacher':13
  3924. 763 Satisfaction Confidential A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China 2006 1 3 4.99 75 26.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'agent':17 'ancient':19 'butler':11 'china':20 'confidenti':2 'dentist':8 'lacklustur':4 'meet':14 'must':13 'satisfact':1 'secret':16 'yarn':5
  3925. 764 Saturday Lambs A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon 2006 1 3 4.99 150 28.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'baloon':20 'husband':17 'kill':15 'lamb':2 'mad':8 'moos':12 'must':14 'reflect':5 'saturday':1 'scientist':9 'thought':4
  3926. 765 Saturn Name A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin 2006 1 7 4.99 182 18.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16
  3927. 766 Savannah Town A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico 2006 1 5 0.99 84 25.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':14 'agent':20 'astronaut':10 'awe':5 'awe-inspir':4 'chase':17 'databas':13 'gulf':23 'inspir':6 'mexico':25 'must':16 'savannah':1 'secret':19 'tale':7 'town':2
  3928. 767 Scalawag Duck A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery 2006 1 6 4.99 183 13.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16
  3929. 768 Scarface Bang A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory 2006 1 3 4.99 102 11.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'baloon':19 'bang':2 'emot':4 'factori':20 'find':14 'girl':11 'must':13 'scarfac':1 'teacher':8,16 'yarn':5
  3930. 769 School Jacket A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse 2006 1 5 4.99 151 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'boy':11 'compos':16 'fight':14 'intrepid':4 'jacket':2 'manhattan':19 'monkey':8 'must':13 'penthous':20 'school':1 'yarn':5
  3931. 770 Scissorhands Slums A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies 2006 1 5 2.99 147 13.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'canadian':22 'drama':7 'feminist':19 'girl':10 'inspir':6 'meet':17 'must':16 'rocki':23 'scissorhand':1 'slum':2 'technic':13 'writer':14
  3932. 788 Ship Wonderland A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback 2006 1 5 2.99 104 15.99 R 2013-05-26 14:50:58.951 {Commentaries} 'escap':14 'explor':16 'frisbe':11 'monkey':8 'must':13 'outback':19 'saga':5 'ship':1 'thrill':4 'wonderland':2
  3933. 771 Scorpion Apollo A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House 2006 1 3 4.99 137 23.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':22 'apollo':2 'awe':5 'awe-inspir':4 'documentari':7 'fun':23 'hous':24 'husband':14 'inspir':6 'meet':17 'monkey':19 'must':16 'scorpion':1 'technic':10 'writer':11
  3934. 772 Sea Virgin A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat 2006 1 4 2.99 80 24.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':25 'chef':15 'documentari':7 'escap':18 'fast':5 'fast-pac':4 'moos':20 'must':17 'pace':6 'pastri':14 'sea':1 'technic':10 'u':24 'u-boat':23 'virgin':2 'writer':11
  3935. 773 Seabiscuit Punk A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention 2006 1 6 2.99 112 28.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'convent':22 'cow':18 'discov':15 'forens':11 'insight':4 'mad':17 'man':8 'must':14 'mysql':21 'psychologist':12 'punk':2 'saga':5 'seabiscuit':1
  3936. 774 Searchers Wait A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan 2006 1 3 2.99 182 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19
  3937. 775 Seattle Expecations A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert 2006 1 4 4.99 110 18.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'crocodil':8 'desert':22 'expec':2 'insight':4 'meet':15 'must':14 'reflect':5 'sahara':21 'seattl':1 'sumo':11 'technic':17 'wrestler':12 'writer':18
  3938. 776 Secret Groundhog A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans 2006 1 6 4.99 90 11.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'administr':12 'astound':4 'build':15 'cat':8 'databas':11 'groundhog':2 'must':14 'new':20 'orlean':21 'secret':1 'stori':5 'technic':17 'writer':18
  3939. 777 Secretary Rouge A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory 2006 1 5 4.99 158 10.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'baloon':22 'compos':14 'cow':11 'discov':17 'factori':23 'mad':10 'must':16 'pack':6 'panorama':7 'robot':19 'roug':2 'secretari':1
  3940. 778 Secrets Paradise A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse 2006 1 3 4.99 109 24.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'cat':8 'fate':4 'frisbe':11 'girl':16 'kill':14 'manhattan':19 'must':13 'paradis':2 'penthous':20 'saga':5 'secret':1
  3941. 779 Sense Greek A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House 2006 1 4 4.99 54 23.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'abandon':21 'chef':12 'escap':15 'fun':22 'greek':2 'hous':23 'lumberjack':8 'must':14 'pastri':11 'saga':5 'sens':1 'sumo':17 'taut':4 'wrestler':18
  3942. 780 Sensibility Rear A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory 2006 1 7 4.99 98 15.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'baloon':21 'chef':18 'emot':4 'factori':22 'must':14 'pastri':17 'rear':2 'redeem':15 'robot':8 'sensibl':1 'sumo':11 'tale':5 'wrestler':12
  3943. 781 Seven Swarm A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin 2006 1 4 4.99 127 15.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'berlin':20 'charact':5 'cow':13 'dog':9 'kill':16 'mad':12 'monkey':18 'must':15 'seven':1 'studi':6 'swarm':2 'unbeliev':4
  3944. 782 Shakespeare Saddle A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention 2006 1 6 2.99 60 26.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'administr':14 'convent':23 'databas':13 'defeat':17 'fast':5 'fast-pac':4 'lumberjack':10 'madman':19 'must':16 'mysql':22 'pace':6 'panorama':7 'saddl':2 'shakespear':1
  3945. 783 Shane Darkness A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin 2006 1 5 2.99 93 22.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'action':5 'action-pack':4 'berlin':20 'dark':2 'find':16 'lumberjack':13 'moos':10 'must':15 'pack':6 'saga':7 'shane':1 'woman':18
  3946. 784 Shanghai Tycoon A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House 2006 1 7 2.99 47 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':22 'build':17 'charact':7 'crocodil':11 'fast':5 'fast-pac':4 'fun':23 'hous':24 'husband':19 'lumberjack':14 'must':16 'pace':6 'shanghai':1 'studi':8 'tycoon':2
  3947. 785 Shawshank Bubble A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park 2006 1 6 4.99 80 20.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':19 'amus':20 'bubbl':2 'butler':16 'confront':14 'lacklustur':4 'monkey':11 'moos':8 'must':13 'park':21 'shawshank':1 'stori':5
  3948. 786 Shepherd Midsummer A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon 2006 1 7 0.99 113 14.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'baloon':19 'drama':5 'kill':14 'lumberjack':16 'midsumm':2 'must':13 'robot':8 'shepherd':1 'thought':4 'woman':11
  3949. 787 Shining Roses A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India 2006 1 4 0.99 125 12.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':22 'astronaut':11 'awe':5 'awe-inspir':4 'challeng':18 'charact':7 'forens':14 'india':23 'inspir':6 'madman':20 'must':17 'psychologist':15 'rose':2 'shine':1 'studi':8
  3950. 789 Shock Cabin A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans 2006 1 7 2.99 79 15.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'cabin':2 'cow':9 'crocodil':12 'fate':4 'husband':17 'mad':8 'meet':15 'must':14 'new':19 'orlean':20 'shock':1 'tale':5
  3951. 790 Shootist Superfly A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin 2006 1 6 0.99 67 22.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'berlin':21 'crocodil':10 'fast':5 'fast-pac':4 'must':16 'pace':6 'pioneer':19 'shark':14 'shootist':1 'sink':17 'stori':7 'superfli':2
  3952. 791 Show Lord A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan 2006 1 3 4.99 167 24.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ancient':18 'butler':16 'fanci':4 'find':14 'girl':11 'japan':19 'lord':2 'must':13 'saga':5 'show':1 'student':8
  3953. 792 Shrek License A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat 2006 1 7 2.99 154 15.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'agent':9 'boat':21 'fate':4 'feminist':12,17 'find':15 'jet':20 'licens':2 'must':14 'secret':8 'shrek':1 'yarn':5
  3954. 793 Shrunk Divine A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon 2006 1 6 2.99 139 14.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'baloon':21 'battl':16 'charact':5 'divin':2 'fate':4 'hunter':18 'must':15 'shrunk':1 'studi':6 'technic':12 'waitress':9 'writer':13
  3955. 794 Side Ark A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies 2006 1 5 0.99 52 28.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ark':2 'canadian':19 'crocodil':8 'feminist':16 'meet':14 'must':13 'panorama':5 'rocki':20 'side':1 'stun':4 'woman':11
  3956. 795 Siege Madre A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft 2006 1 7 0.99 111 23.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'bore':4 'crocodil':11 'frisbe':8 'madr':2 'mine':20 'moos':16 'must':13 'shaft':21 'sieg':1 'tale':5 'vanquish':14
  3957. 796 Sierra Divide A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California 2006 1 3 0.99 135 12.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'build':16 'california':20 'charact':5 'divid':2 'emot':4 'frisbe':9 'mad':12 'madman':18 'must':15 'scientist':13 'sierra':1 'studi':6
  3958. 797 Silence Kane A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon 2006 1 7 0.99 67 23.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'baloon':21 'confront':15 'dentist':12 'drama':5 'emot':4 'kane':2 'must':14 'silenc':1 'sumo':8,17 'wrestler':9,18
  3959. 798 Silverado Goldfinger A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India 2006 1 4 4.99 74 11.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':19 'challeng':15 'epistl':5 'goldfing':2 'india':20 'man':12 'must':14 'silverado':1 'stun':4 'sumo':8 'waitress':17 'wrestler':9
  3960. 799 Simon North A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank 2006 1 3 0.99 51 26.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'documentari':5 'face':16 'must':15 'north':2 'pioneer':18 'shark':13,21 'simon':1 'tank':22 'technic':8 'thrill':4 'writer':9
  3961. 800 Sinners Atlantis A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft 2006 1 7 2.99 126 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':20 'atlanti':2 'boat':11 'display':5 'dog':8 'epic':4 'mad':16 'mine':21 'must':13 'scientist':17 'shaft':22 'sinner':1 'succumb':14
  3962. 801 Sister Freddy A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia 2006 1 5 4.99 152 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'australia':18 'butler':8 'explor':16 'freddi':2 'must':13 'pursu':14 'saga':5 'sister':1 'stun':4 'woman':11
  3963. 802 Sky Miracle A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House 2006 1 7 2.99 132 15.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':20 'drama':5 'epic':4 'explor':12 'fun':21 'hous':22 'mad':8 'miracl':2 'must':14 'scientist':9 'sky':1 'succumb':15 'waitress':17
  3964. 803 Slacker Liaisons A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China 2006 1 7 4.99 179 29.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':21 'china':22 'crocodil':19 'fast':5 'fast-pac':4 'liaison':2 'meet':17 'must':16 'pace':6 'shark':11 'slacker':1 'student':14 'tale':7
  3965. 804 Sleeping Suspects A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention 2006 1 7 4.99 129 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'convent':21 'explor':12 'frisbe':17 'must':14 'mysql':20 'reflect':5 'sink':15 'sleep':1 'stun':4 'sumo':8 'suspect':2 'wrestler':9
  3966. 805 Sleepless Monsoon A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia 2006 1 5 4.99 64 12.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'amaz':4 'australia':19 'butler':17 'chef':12 'escap':15 'monsoon':2 'moos':8 'must':14 'pastri':11 'saga':5 'sleepless':1
  3967. 806 Sleepy Japanese A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback 2006 1 4 2.99 137 25.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'compos':11 'emot':4 'epistl':5 'fight':14 'japanes':2 'moos':8 'must':13 'outback':20 'sleepi':1 'technic':16 'writer':17
  3968. 807 Sleuth Orient A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India 2006 1 4 0.99 87 25.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':19 'charact':5 'dog':12 'fate':4 'feminist':17 'find':15 'husband':9 'india':20 'must':14 'orient':2 'sleuth':1 'studi':6
  3969. 808 Sling Luke A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park 2006 1 5 0.99 84 10.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':21 'agent':18 'amus':22 'charact':5 'intrepid':4 'luke':2 'monkey':12 'must':14 'park':23 'reach':15 'robot':9 'secret':17 'sling':1 'studi':6
  3970. 809 Slipper Fidelity A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention 2006 1 5 0.99 156 14.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'agent':9 'convent':21 'explor':17 'fidel':2 'man':12 'must':14 'mysql':20 'redeem':15 'reflect':5 'secret':8 'slipper':1 'taut':4
  3971. 810 Slums Duck A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat 2006 1 5 0.99 147 21.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':13 'amaz':4 'boat':22 'charact':5 'databas':12 'defeat':16 'duck':2 'jet':21 'must':15 'slum':1 'studi':6 'teacher':9 'waitress':18
  3972. 811 Smile Earring A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin 2006 1 4 2.99 60 29.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'berlin':19 'build':14 'butler':11 'chef':17 'drama':5 'earring':2 'intrepid':4 'must':13 'pastri':16 'smile':1 'teacher':8
  3973. 812 Smoking Barbarella A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention 2006 1 7 0.99 50 13.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'barbarella':2 'cat':18 'convent':22 'cow':9 'lacklustur':4 'mad':8,12 'must':15 'mysql':21 'saga':5 'scientist':13 'sink':16 'smoke':1
  3974. 813 Smoochy Control A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China 2006 1 7 0.99 184 18.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4
  3975. 814 Snatch Slipper A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin 2006 1 6 4.99 110 15.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'berlin':19 'defeat':14 'feminist':11 'forens':16 'insight':4 'must':13 'panorama':5 'psychologist':17 'slipper':2 'snatch':1 'woman':8
  3976. 815 Snatchers Montezuma A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies 2006 1 4 2.99 74 14.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'bore':4 'canadian':20 'epistl':5 'escap':15 'man':17 'montezuma':2 'must':14 'rocki':21 'snatcher':1 'sumo':8 'woman':12 'wrestler':9
  3977. 816 Snowman Rollercoaster A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse 2006 1 3 0.99 62 27.99 G 2013-05-26 14:50:58.951 {Trailers} 'cow':17 'display':5 'fate':4 'girl':11 'lumberjack':8 'mad':16 'manhattan':20 'must':13 'penthous':21 'rollercoast':2 'snowman':1 'succumb':14
  3978. 817 Soldiers Evolution A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station 2006 1 7 4.99 185 27.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17
  3979. 818 Something Duck A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station 2006 1 4 4.99 180 17.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'bore':4 'car':9 'charact':5 'duck':2 'first':20 'frisbe':17 'husband':12 'man':21 'must':14 'outgun':15 'someth':1 'space':22 'station':23 'studi':6
  3980. 819 Song Hedwig A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention 2006 1 3 0.99 165 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'amaz':4 'confront':14 'convent':20 'documentari':5 'hedwig':2 'husband':11 'man':8 'must':13 'mysql':19 'song':1 'squirrel':16
  3981. 820 Sons Interview A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China 2006 1 3 2.99 184 11.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4
  3982. 821 Sorority Queen A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat 2006 1 6 0.99 184 17.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10
  3983. 822 Soup Wisdom A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention 2006 1 6 0.99 169 12.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'butler':13,18 'convent':22 'defeat':16 'display':7 'fast':5 'fast-pac':4 'must':15 'mysql':21 'pace':6 'robot':10 'soup':1 'wisdom':2
  3984. 823 South Wait A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park 2006 1 4 2.99 143 21.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':19 'amaz':4 'amus':20 'car':8 'documentari':5 'escap':14 'lumberjack':16 'must':13 'park':21 'robot':11 'south':1 'wait':2
  3985. 824 Spartacus Cheaper A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse 2006 1 4 4.99 52 19.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'agent':13 'cheaper':2 'chef':9 'manhattan':21 'must':15 'overcom':16 'panorama':5 'pastri':8 'penthous':22 'secret':12 'spartacus':1 'student':18 'thrill':4
  3986. 825 Speakeasy Date A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse 2006 1 6 2.99 165 22.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'car':12 'date':2 'drama':5 'forens':8 'lacklustur':4 'man':17 'manhattan':20 'must':14 'penthous':21 'psychologist':9 'redeem':15 'speakeasi':1
  3987. 826 Speed Suit A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China 2006 1 7 4.99 124 19.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'ancient':19 'brilliant':4 'china':20 'display':5 'frisbe':8 'mad':11 'must':14 'robot':17 'scientist':12 'speed':1 'succumb':15 'suit':2
  3988. 827 Spice Sorority A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft 2006 1 5 4.99 141 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':19 'defeat':14 'display':5 'fate':4 'hunter':11 'husband':16 'mine':20 'must':13 'pioneer':8 'shaft':21 'soror':2 'spice':1
  3989. 828 Spiking Element A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery 2006 1 7 2.99 79 12.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'dentist':8 'dog':17 'element':2 'epistl':5 'find':15 'lacklustur':4 'monasteri':20 'must':14 'spike':1 'technic':11 'writer':12
  3990. 829 Spinal Rocky A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California 2006 1 7 2.99 138 12.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'california':19 'defeat':15 'epistl':5 'explor':17 'lacklustur':4 'must':14 'rocki':2 'spinal':1 'squirrel':12 'sumo':8 'wrestler':9
  3991. 830 Spirit Flintstones A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan 2006 1 7 0.99 149 23.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ancient':18 'brilliant':4 'car':11 'cat':8 'confront':14 'explor':16 'flintston':2 'japan':19 'must':13 'spirit':1 'yarn':5
  3992. 831 Spirited Casualties A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory 2006 1 5 0.99 138 20.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'baloon':19 'car':16 'casualti':2 'face':14 'factori':20 'man':11 'must':13 'spirit':1 'stori':5 'taut':4 'waitress':8
  3993. 832 Splash Gump A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank 2006 1 5 0.99 175 16.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':11 'conquer':14 'crocodil':8 'gump':2 'hunter':16 'must':13 'saga':5 'shark':19 'splash':1 'tank':20 'taut':4
  3994. 833 Splendor Patton A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin 2006 1 5 0.99 134 20.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'astronaut':16 'berlin':18 'dog':8 'explor':11 'find':14 'must':13 'patton':2 'splendor':1 'stori':5 'taut':4
  3995. 834 Spoilers Hellfighters A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico 2006 1 4 0.99 151 26.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'defeat':15 'dog':17 'fanci':4 'gulf':20 'hellfight':2 'mexico':22 'must':14 'spoiler':1 'squirrel':12 'stori':5 'technic':8 'writer':9
  3996. 835 Spy Mile A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon 2006 1 6 2.99 112 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':19 'confront':14 'documentari':5 'feminist':8,11,16 'mile':2 'must':13 'spi':1 'thrill':4
  3997. 836 Squad Fish A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin 2006 1 3 2.99 136 14.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'berlin':21 'chef':11 'display':7 'dog':14 'fast':5 'fast-pac':4 'fish':2 'kill':17 'must':16 'pace':6 'pastri':10 'squad':1 'teacher':19
  3998. 837 Stage World A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat 2006 1 4 2.99 85 19.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'boat':20 'chase':14 'crocodil':16 'frisbe':11 'jet':19 'lacklustur':4 'must':13 'panorama':5 'stage':1 'woman':8 'world':2
  3999. 838 Stagecoach Armageddon A Touching Display of a Pioneer And a Butler who must Chase a Car in California 2006 1 5 4.99 112 25.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'armageddon':2 'butler':11 'california':18 'car':16 'chase':14 'display':5 'must':13 'pioneer':8 'stagecoach':1 'touch':4
  4000. 839 Stallion Sundance A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia 2006 1 5 0.99 130 23.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'australia':21 'car':10 'dog':13 'fast':5 'fast-pac':4 'must':15 'outgun':16 'pace':6 'shark':19 'stallion':1 'sundanc':2 'tale':7
  4001. 840 Stampede Disturbing A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat 2006 1 5 0.99 75 26.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':21 'disturb':2 'fight':14 'frisbe':16 'lumberjack':11 'must':13 'stamped':1 'tale':5 'u':20 'u-boat':19 'unbeliev':4 'woman':8
  4002. 841 Star Operation A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank 2006 1 5 2.99 181 9.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22
  4003. 842 State Wasteland A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat 2006 1 4 2.99 113 13.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'boat':22 'cat':8 'chef':12 'cow':18 'display':5 'jet':21 'mad':17 'must':14 'outrac':15 'pastri':11 'state':1 'wasteland':2
  4004. 843 Steel Santa A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria 2006 1 4 4.99 143 15.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'compos':10 'face':16 'fast':5 'fast-pac':4 'frisbe':13 'moos':18 'must':15 'nigeria':20 'pace':6 'santa':2 'steel':1 'yarn':7
  4005. 844 Steers Armageddon A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention 2006 1 6 4.99 140 16.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'armageddon':2 'car':9,17 'charact':5 'convent':21 'girl':12 'must':14 'mysql':20 'steer':1 'studi':6 'stun':4 'succumb':15
  4006. 845 Stepmom Dream A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention 2006 1 7 4.99 48 9.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'build':14 'convent':21 'crocodil':8 'dream':2 'epistl':5 'forens':16 'must':13 'mysql':20 'psychologist':17 'stepmom':1 'teacher':11 'touch':4
  4007. 846 Sting Personal A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat 2006 1 3 4.99 93 9.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':20 'dog':11 'drama':5 'fanci':4 'fight':14 'frisbe':8 'jet':19 'madman':16 'must':13 'person':2 'sting':1
  4008. 847 Stock Glass A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China 2006 1 7 2.99 160 10.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'ancient':18 'bore':4 'china':19 'crocodil':8 'epistl':5 'glass':2 'lumberjack':11 'moos':16 'must':13 'outgun':14 'stock':1
  4009. 848 Stone Fire A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia 2006 1 3 0.99 94 19.99 G 2013-05-26 14:50:58.951 {Trailers} 'astronaut':8 'boat':16 'crocodil':11 'drama':5 'find':14 'fire':2 'georgia':19 'intrepid':4 'must':13 'soviet':18 'stone':1
  4010. 849 Storm Happiness A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank 2006 1 6 0.99 57 28.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'boat':17 'drama':5 'feminist':8 'happi':2 'insight':4 'must':14 'shark':12,20 'storm':1 'tank':21 'vanquish':15
  4011. 850 Story Side A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft 2006 1 7 0.99 163 27.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':19 'boy':8 'cat':11 'dentist':16 'lacklustur':4 'mine':20 'must':13 'saga':5 'shaft':21 'side':2 'sink':14 'stori':1
  4012. 851 Straight Hours A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback 2006 1 3 0.99 151 19.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'agent':9 'bore':4 'girl':12 'hour':2 'must':14 'outback':20 'panorama':5 'secret':8 'sink':15 'straight':1 'waitress':17
  4013. 852 Strangelove Desire A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park 2006 1 4 0.99 103 27.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'abandon':21 'amus':22 'awe':5 'awe-inspir':4 'crocodil':18 'defeat':16 'desir':2 'inspir':6 'lumberjack':10 'must':15 'panorama':7 'park':23 'strangelov':1 'waitress':13
  4014. 853 Stranger Strangers A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station 2006 1 3 4.99 139 12.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'awe':5 'awe-inspir':4 'explor':13 'fight':16 'first':21 'inspir':6 'man':22 'must':15 'space':23 'station':24 'stranger':1,2 'woman':10,18 'yarn':7
  4015. 890 Tights Dawn A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon 2006 1 5 0.99 172 14.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'agent':12 'baloon':20 'boat':8 'boy':17 'dawn':2 'epistl':5 'face':15 'must':14 'secret':11 'thrill':4 'tight':1
  4016. 854 Strangers Graffiti A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico 2006 1 4 4.99 119 22.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'agent':10 'brilliant':4 'cat':18 'charact':5 'find':16 'graffiti':2 'gulf':21 'man':13 'mexico':23 'must':15 'secret':9 'stranger':1 'studi':6
  4017. 855 Streak Ridgemont A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans 2006 1 7 0.99 132 28.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'astound':4 'charact':5 'hunter':9 'man':17 'must':14 'new':19 'orlean':20 'ridgemont':2 'sink':15 'streak':1 'studi':6 'waitress':12
  4018. 856 Streetcar Intentions A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico 2006 1 5 4.99 73 11.99 R 2013-05-26 14:50:58.951 {Commentaries} 'charact':5 'crocodil':12 'gulf':20 'insight':4 'intent':2 'mexico':22 'must':14 'sink':15 'streetcar':1 'studi':6 'waitress':9,17
  4019. 857 Strictly Scarface A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House 2006 1 3 2.99 144 24.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'abandon':19 'chase':14 'crocodil':8 'dog':11 'fun':20 'hous':21 'hunter':16 'must':13 'reflect':5 'scarfac':2 'strict':1 'touch':4
  4020. 858 Submarine Bed A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia 2006 1 5 4.99 127 21.99 R 2013-05-26 14:50:58.951 {Trailers} 'amaz':4 'bed':2 'car':8 'display':5 'fight':14 'georgia':19 'monkey':11 'must':13 'soviet':18 'submarin':1 'teacher':16
  4021. 859 Sugar Wonka A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park 2006 1 3 4.99 114 20.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'abandon':20 'administr':12 'amus':21 'astronaut':17 'conquer':15 'databas':11 'dentist':8 'must':14 'park':22 'stori':5 'sugar':1 'touch':4 'wonka':2
  4022. 860 Suicides Silence A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat 2006 1 4 4.99 93 13.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boat':22 'car':9 'charact':5 'compos':17 'emot':4 'face':15 'girl':12 'must':14 'silenc':2 'studi':6 'suicid':1 'u':21 'u-boat':20
  4023. 861 Suit Walls A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia 2006 1 3 4.99 111 12.99 R 2013-05-26 14:50:58.951 {Commentaries} 'australia':18 'build':14 'dog':16 'frisbe':11 'lumberjack':8 'must':13 'panorama':5 'suit':1 'touch':4 'wall':2
  4024. 862 Summer Scarface A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank 2006 1 5 0.99 53 25.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'emot':4 'girl':16 'hunter':11 'lumberjack':8 'meet':14 'must':13 'panorama':5 'scarfac':2 'shark':19 'summer':1 'tank':20
  4025. 863 Sun Confessions A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park 2006 1 5 0.99 141 9.99 R 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':20 'amus':21 'beauti':4 'confess':2 'cow':9 'display':5 'dog':12 'mad':8 'must':14 'park':22 'redeem':15 'sun':1 'waitress':17
  4026. 864 Sundance Invasion A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory 2006 1 5 0.99 92 21.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'baloon':19 'confront':14 'drama':5 'epic':4 'explor':11 'factori':20 'hunter':16 'invas':2 'lumberjack':8 'must':13 'sundanc':1
  4027. 865 Sunrise League A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse 2006 1 3 4.99 135 19.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'beauti':4 'butler':11 'crocodil':16 'epistl':5 'face':14 'leagu':2 'madman':8 'manhattan':19 'must':13 'penthous':20 'sunris':1
  4028. 866 Sunset Racer A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California 2006 1 6 0.99 48 28.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'astronaut':10 'awe':5 'awe-inspir':4 'california':22 'defeat':17 'forens':19 'inspir':6 'must':16 'psychologist':20 'racer':2 'reflect':7 'shark':14 'sunset':1
  4029. 867 Super Wyoming A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback 2006 1 5 4.99 58 10.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'chef':11 'discov':17 'explor':14 'must':16 'outback':23 'pack':6 'pastri':10 'saga':7 'shark':20 'super':1 'wyom':2
  4030. 868 Superfly Trip A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House 2006 1 5 0.99 114 27.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':20 'beauti':4 'build':14 'fun':21 'hous':22 'lumberjack':8 'must':13 'saga':5 'superfli':1 'teacher':11 'technic':16 'trip':2 'writer':17
  4031. 869 Suspects Quills A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse 2006 1 4 2.99 47 22.99 PG 2013-05-26 14:50:58.951 {Trailers} 'battl':14 'crocodil':11 'emot':4 'epistl':5 'man':16 'manhattan':19 'must':13 'penthous':20 'pioneer':8 'quill':2 'suspect':1
  4032. 870 Swarm Gold A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention 2006 1 4 0.99 123 12.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'boat':11 'conquer':14 'convent':21 'crocodil':8 'gold':2 'insight':4 'must':13 'mysql':20 'panorama':5 'sumo':16 'swarm':1 'wrestler':17
  4033. 871 Sweden Shining A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies 2006 1 6 4.99 176 19.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'boy':16 'canadian':19 'car':8 'conquer':14 'documentari':5 'must':13 'robot':11 'rocki':20 'shine':2 'sweden':1 'taut':4
  4034. 891 Timberland Sky A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat 2006 1 3 0.99 69 13.99 G 2013-05-26 14:50:58.951 {Commentaries} 'boat':21 'bore':4 'display':5 'dog':11 'girl':16 'man':8 'must':13 'redeem':14 'sky':2 'timberland':1 'u':20 'u-boat':19
  4035. 872 Sweet Brotherhood A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon 2006 1 3 2.99 185 27.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9
  4036. 873 Sweethearts Suspects A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico 2006 1 3 0.99 108 13.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'brilliant':4 'charact':5 'confront':16 'frisbe':9 'gulf':21 'mexico':23 'must':15 'studi':6 'sumo':12 'suspect':2 'sweetheart':1 'woman':18 'wrestler':13
  4037. 874 Tadpole Park A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park 2006 1 6 2.99 155 13.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':19 'amus':20 'beauti':4 'dog':16 'frisbe':8 'moos':11 'must':13 'park':2,21 'tadpol':1 'tale':5 'vanquish':14
  4038. 875 Talented Homicide A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat 2006 1 6 0.99 173 9.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':22 'dentist':8 'forens':11 'homicid':2 'lacklustur':4 'must':14 'outrac':15 'panorama':5 'pioneer':17 'psychologist':12 'talent':1 'u':21 'u-boat':20
  4039. 876 Tarzan Videotape A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert 2006 1 3 2.99 91 11.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'desert':24 'display':7 'fast':5 'fast-pac':4 'lumberjack':10 'mad':13 'must':16 'pace':6 'sahara':23 'scientist':14 'succumb':17 'sumo':19 'tarzan':1 'videotap':2 'wrestler':20
  4040. 877 Taxi Kick A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia 2006 1 4 0.99 64 23.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'amaz':4 'epistl':5 'georgia':19 'girl':8 'kick':2 'must':13 'outrac':14 'soviet':18 'taxi':1 'waitress':16 'woman':11
  4041. 878 Teen Apollo A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank 2006 1 3 4.99 74 25.99 G 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'apollo':2 'awe':5 'awe-inspir':4 'dog':10 'drama':7 'escap':16 'inspir':6 'man':13 'must':15 'robot':18 'shark':21 'tank':22 'teen':1
  4042. 879 Telegraph Voyage A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat 2006 1 3 4.99 148 20.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'battl':14 'boat':20 'dog':11 'fate':4 'husband':8 'jet':19 'must':13 'telegraph':1 'voyag':2 'waitress':16 'yarn':5
  4043. 880 Telemark Heartbreakers A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse 2006 1 6 2.99 152 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'action':5 'action-pack':4 'build':17 'forens':19 'heartbreak':2 'man':14 'manhattan':23 'must':16 'pack':6 'panorama':7 'penthous':24 'psychologist':20 'technic':10 'telemark':1 'writer':11
  4044. 881 Temple Attraction A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia 2006 1 5 4.99 71 13.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'action':5 'action-pack':4 'attract':2 'battl':17 'forens':10 'georgia':22 'must':16 'pack':6 'psychologist':11 'saga':7 'soviet':21 'templ':1 'woman':14,19
  4045. 882 Tenenbaums Command A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico 2006 1 4 0.99 99 24.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'command':2 'display':5 'girl':16 'gulf':19 'man':11 'mexico':21 'must':13 'pioneer':8 'reach':14 'taut':4 'tenenbaum':1
  4046. 883 Tequila Past A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria 2006 1 6 4.99 53 17.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'challeng':17 'mad':10 'must':16 'nigeria':21 'pack':6 'panorama':7 'past':2 'robot':14 'scientist':11 'student':19 'tequila':1
  4047. 884 Terminator Club A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico 2006 1 5 4.99 88 11.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'club':2 'crocodil':8 'girl':11 'gulf':19 'man':16 'mexico':21 'must':13 'sink':14 'stori':5 'termin':1 'touch':4
  4048. 885 Texas Watch A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park 2006 1 7 0.99 179 22.99 NC-17 2013-05-26 14:50:58.951 {Trailers} 'abandon':21 'amus':22 'awe':5 'awe-inspir':4 'fight':16 'inspir':6 'must':15 'park':23 'student':10 'teacher':13,18 'texa':1 'watch':2 'yarn':7
  4049. 886 Theory Mermaid A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station 2006 1 5 0.99 184 9.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5
  4050. 887 Thief Pelican A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft 2006 1 5 4.99 135 28.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'abandon':20 'documentari':5 'feminist':17 'mad':11 'madman':8 'mine':21 'must':14 'outrac':15 'pelican':2 'scientist':12 'shaft':22 'thief':1 'touch':4
  4051. 888 Thin Sagebrush A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India 2006 1 5 4.99 53 9.99 PG-13 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':18 'build':14 'cat':16 'drama':5 'emot':4 'husband':8 'india':19 'lumberjack':11 'must':13 'sagebrush':2 'thin':1
  4052. 889 Ties Hunger A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat 2006 1 3 4.99 111 28.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'astronaut':8 'boat':22 'explor':11 'hunger':2 'insight':4 'mad':16 'must':13 'pursu':14 'saga':5 'scientist':17 'tie':1 'u':21 'u-boat':20
  4053. 892 Titanic Boondock A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory 2006 1 3 4.99 104 18.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'baloon':19 'boondock':2 'boy':16 'brilliant':4 'dog':11 'factori':20 'feminist':8 'fight':14 'must':13 'reflect':5 'titan':1
  4054. 893 Titans Jerk A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China 2006 1 4 4.99 91 11.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'ancient':20 'challeng':15 'china':21 'feminist':8 'jerk':2 'must':14 'panorama':5 'sumo':11 'technic':17 'titan':1 'unbeliev':4 'wrestler':12 'writer':18
  4055. 894 Tomatoes Hellfighters A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank 2006 1 6 0.99 68 23.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'astronaut':11 'epistl':5 'hellfight':2 'madman':8 'monkey':16 'must':13 'overcom':14 'shark':19 'tank':20 'thought':4 'tomato':1
  4056. 895 Tomorrow Hustler A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert 2006 1 3 2.99 142 21.99 R 2013-05-26 14:50:58.951 {Commentaries} 'agent':17 'desert':21 'face':14 'husband':11 'hustler':2 'moos':8 'must':13 'sahara':20 'secret':16 'stori':5 'thought':4 'tomorrow':1
  4057. 896 Tootsie Pilot A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin 2006 1 3 0.99 157 10.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'berlin':21 'chef':14 'documentari':7 'inspir':6 'kill':17 'lumberjack':19 'must':16 'pastri':13 'pilot':2 'tootsi':1 'woman':10
  4058. 897 Torque Bound A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan 2006 1 3 4.99 179 27.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':18 'bound':2 'crocodil':8 'display':5 'emot':4 'husband':11 'japan':19 'man':16 'must':13 'reach':14 'torqu':1
  4059. 898 Tourist Pelican A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia 2006 1 4 4.99 152 18.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'astronaut':11 'australia':18 'bore':4 'butler':8 'must':13 'outrac':14 'pelican':2 'pioneer':16 'stori':5 'tourist':1
  4060. 899 Towers Hurricane A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention 2006 1 7 0.99 144 14.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'car':11 'convent':20 'display':5 'fate':4 'hurrican':2 'husband':16 'monkey':8 'must':13 'mysql':19 'sink':14 'tower':1
  4061. 900 Town Ark A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft 2006 1 6 2.99 136 17.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':21 'ark':2 'awe':5 'awe-inspir':4 'documentari':7 'dog':18 'inspir':6 'madman':13 'meet':16 'mine':22 'moos':10 'must':15 'shaft':23 'town':1
  4062. 901 Tracy Cider A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria 2006 1 3 0.99 142 29.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'administr':9 'build':15 'cider':2 'databas':8 'lumberjack':17 'madman':12 'must':14 'nigeria':19 'reflect':5 'touch':4 'traci':1
  4063. 902 Trading Pinocchio A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station 2006 1 6 4.99 170 22.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'charact':5 'discov':15 'emot':4 'explor':12 'first':20 'frisbe':17 'man':21 'must':14 'pinocchio':2 'space':22 'station':23 'student':9 'studi':6 'trade':1
  4064. 903 Traffic Hobbit A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat 2006 1 5 4.99 139 13.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'administr':17 'amaz':4 'boat':22 'databas':16 'epistl':5 'hobbit':2 'lumberjack':11 'must':13 'squirrel':8 'succumb':14 'traffic':1 'u':21 'u-boat':20
  4065. 904 Train Bunch A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India 2006 1 3 4.99 71 26.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':19 'bunch':2 'charact':5 'dog':17 'face':15 'india':20 'must':14 'robot':9 'squirrel':12 'studi':6 'thrill':4 'train':1
  4066. 905 Trainspotting Strangers A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan 2006 1 7 4.99 132 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'ancient':21 'challeng':17 'cow':14 'drama':7 'fast':5 'fast-pac':4 'japan':22 'mad':13 'madman':19 'must':16 'pace':6 'pioneer':10 'stranger':2 'trainspot':1
  4067. 906 Tramp Others A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India 2006 1 4 0.99 171 27.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'ancient':19 'brilliant':4 'cat':11 'compos':8 'display':5 'india':20 'must':13 'other':2 'shark':17 'succumb':14 'tramp':1
  4068. 907 Translation Summer A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention 2006 1 4 0.99 168 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'convent':20 'man':8 'monkey':11 'must':13 'mysql':19 'pursu':14 'reflect':5 'summer':2 'touch':4 'translat':1 'woman':16
  4069. 908 Trap Guys A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert 2006 1 3 4.99 110 11.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'administr':18 'boy':8 'challeng':15 'cow':12 'databas':17 'desert':22 'guy':2 'mad':11 'must':14 'sahara':21 'stori':5 'trap':1 'unbeliev':4
  4070. 909 Treasure Command A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California 2006 1 3 0.99 102 28.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'california':18 'car':8 'command':2 'discov':14 'emot':4 'madman':11 'must':13 'pioneer':16 'saga':5 'treasur':1
  4071. 910 Treatment Jekyll A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft 2006 1 3 0.99 87 19.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'abandon':19 'bore':4 'cat':16 'jekyl':2 'mine':20 'must':13 'outgun':14 'shaft':21 'stori':5 'student':11 'teacher':8 'treatment':1
  4072. 911 Trip Newton A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park 2006 1 7 4.99 64 14.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':20 'amus':21 'car':12 'cat':17 'charact':5 'discov':15 'fanci':4 'lumberjack':9 'must':14 'newton':2 'park':22 'studi':6 'trip':1
  4073. 912 Trojan Tomorrow A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India 2006 1 3 2.99 52 9.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ancient':19 'astound':4 'boat':17 'husband':8 'india':20 'must':14 'panorama':5 'pursu':15 'sumo':11 'tomorrow':2 'trojan':1 'wrestler':12
  4074. 913 Troopers Metal A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin 2006 1 3 0.99 115 20.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'berlin':18 'drama':5 'fanci':4 'feminist':11 'man':16 'metal':2 'monkey':8 'must':13 'sink':14 'trooper':1
  4075. 914 Trouble Date A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan 2006 1 6 2.99 61 13.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ancient':19 'date':2 'explor':17 'forens':8 'japan':20 'kill':15 'lacklustur':4 'must':14 'panorama':5 'psychologist':9 'troubl':1 'woman':12
  4076. 915 Truman Crazy A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery 2006 1 7 4.99 92 9.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'administr':17 'boy':11 'crazi':2 'databas':16 'epistl':5 'meet':14 'monasteri':20 'moos':8 'must':13 'thrill':4 'truman':1
  4077. 916 Turn Star A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans 2006 1 3 2.99 80 10.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'chase':14 'man':8 'monkey':11 'must':13 'new':18 'orlean':19 'star':2 'student':16 'stun':4 'tale':5 'turn':1
  4078. 917 Tuxedo Mile A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India 2006 1 3 2.99 152 24.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'ancient':19 'bore':4 'drama':5 'face':15 'forens':11 'frisbe':17 'india':20 'man':8 'mile':2 'must':14 'psychologist':12 'tuxedo':1
  4079. 918 Twisted Pirates A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention 2006 1 4 4.99 152 23.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'boat':11 'convent':20 'display':5 'frisbe':8 'girl':16 'kill':14 'must':13 'mysql':19 'pirat':2 'touch':4 'twist':1
  4080. 919 Tycoon Gathering A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse 2006 1 3 4.99 82 17.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'display':5 'emot':4 'gather':2 'husband':8 'madman':17 'manhattan':20 'must':14 'penthous':21 'shark':12 'succumb':15 'tycoon':1
  4081. 920 Unbreakable Karate A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia 2006 1 3 0.99 62 16.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'amaz':4 'australia':19 'charact':5 'chase':15 'karat':2 'must':14 'robot':9,17 'student':12 'studi':6 'unbreak':1
  4082. 921 Uncut Suicides A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat 2006 1 7 2.99 172 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'boat':23 'chef':12 'cow':18 'explor':8 'intrepid':4 'mad':17 'must':14 'pastri':11 'pursu':15 'suicid':2 'u':22 'u-boat':21 'uncut':1 'yarn':5
  4083. 922 Undefeated Dalmations A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park 2006 1 7 4.99 107 22.99 PG-13 2013-05-26 14:50:58.951 {Commentaries} 'abandon':19 'amus':20 'crocodil':8 'dalmat':2 'display':5 'feminist':11 'moos':16 'must':13 'overcom':14 'park':21 'unbeliev':4 'undef':1
  4084. 923 Unfaithful Kill A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans 2006 1 7 2.99 78 12.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'battl':15 'documentari':5 'kill':2 'mad':11 'must':14 'new':20 'orlean':21 'scientist':12 'taut':4 'technic':17 'unfaith':1 'waitress':8 'writer':18
  4085. 924 Unforgiven Zoolander A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory 2006 1 7 0.99 129 15.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'baloon':21 'epistl':5 'factori':22 'monkey':8 'must':14 'shark':18 'sumo':11 'taut':4 'unforgiven':1 'vanquish':15 'wrestler':12 'zooland':2
  4086. 925 United Pilot A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert 2006 1 3 0.99 164 27.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'car':19 'cat':10 'cow':14 'desert':23 'fast':5 'fast-pac':4 'fight':17 'mad':13 'must':16 'pace':6 'pilot':2 'reflect':7 'sahara':22 'unit':1
  4087. 926 Untouchables Sunrise A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House 2006 1 5 2.99 120 11.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'abandon':19 'amaz':4 'astronaut':11 'documentari':5 'fun':20 'hous':21 'must':13 'outrac':14 'sunris':2 'teacher':16 'untouch':1 'woman':8
  4088. 927 Uprising Uptown A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin 2006 1 6 2.99 174 16.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'berlin':18 'boy':8 'butler':11 'fanci':4 'must':13 'pursu':14 'reflect':5 'upris':1 'uptown':2 'woman':16
  4089. 928 Uptown Young A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park 2006 1 5 2.99 84 16.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'abandon':19 'amus':20 'documentari':5 'dog':8 'fate':4 'hunter':11 'must':13 'park':21 'pursu':14 'teacher':16 'uptown':1 'young':2
  4090. 929 Usual Untouchables A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank 2006 1 5 4.99 128 21.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'display':5 'explor':8 'fight':14 'forens':16 'lumberjack':11 'must':13 'psychologist':17 'shark':20 'tank':21 'touch':4 'untouch':2 'usual':1
  4091. 930 Vacation Boondock A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia 2006 1 4 2.99 145 23.99 R 2013-05-26 14:50:58.951 {Commentaries} 'agent':10 'australia':21 'boondock':2 'charact':5 'fanci':4 'mad':13 'must':16 'reach':17 'scientist':14 'secret':9 'studi':6 'teacher':19 'vacat':1
  4092. 931 Valentine Vanishing A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California 2006 1 7 0.99 48 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'butler':11 'california':19 'chef':17 'display':5 'husband':8 'must':13 'pastri':16 'reach':14 'thrill':4 'valentin':1 'vanish':2
  4093. 932 Valley Packer A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin 2006 1 3 0.99 73 21.99 G 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'astound':4 'astronaut':8 'berlin':19 'boy':11 'documentari':5 'must':13 'outrac':14 'packer':2 'sumo':16 'valley':1 'wrestler':17
  4094. 933 Vampire Whale A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention 2006 1 4 4.99 126 11.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'confront':14 'convent':20 'epic':4 'lumberjack':8 'monkey':11 'must':13 'mysql':19 'pioneer':16 'stori':5 'vampir':1 'whale':2
  4095. 934 Vanilla Day A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria 2006 1 7 4.99 122 20.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'day':2 'fast':5 'fast-pac':4 'forens':13 'girl':10,19 'must':16 'nigeria':21 'pace':6 'psychologist':14 'redeem':17 'saga':7 'vanilla':1
  4096. 935 Vanished Garden A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California 2006 1 5 0.99 142 17.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'california':20 'charact':5 'garden':2 'intrepid':4 'kill':16 'lumberjack':18 'must':15 'shark':13 'squirrel':9 'studi':6 'vanish':1
  4097. 936 Vanishing Rocky A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention 2006 1 3 2.99 123 21.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'brilliant':4 'conquer':14 'convent':20 'man':8 'must':13 'mysql':19 'pioneer':16 'reflect':5 'rocki':2 'vanish':1 'woman':11
  4098. 937 Varsity Trip A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention 2006 1 7 2.99 85 14.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'action':5 'action-pack':4 'astronaut':11 'charact':7 'convent':23 'explor':14 'monkey':19 'must':16 'mysql':22 'pack':6 'reach':17 'studi':8 'trip':2 'varsiti':1
  4099. 938 Velvet Terminator A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park 2006 1 3 4.99 173 14.99 R 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'abandon':21 'amus':22 'chef':9 'confront':16 'crocodil':18 'lacklustur':4 'must':15 'park':23 'pastri':8 'tale':5 'technic':12 'termin':2 'velvet':1 'writer':13
  4100. 939 Vertigo Northwest A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan 2006 1 4 2.99 90 17.99 R 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'ancient':21 'cow':19 'display':5 'japan':22 'mad':8,12,18 'must':15 'northwest':2 'outgun':16 'scientist':9,13 'unbeliev':4 'vertigo':1
  4101. 940 Victory Academy A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert 2006 1 6 0.99 64 19.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'academi':2 'cat':17 'challeng':15 'desert':21 'epistl':5 'explor':12 'insight':4 'mad':8 'must':14 'sahara':20 'scientist':9 'victori':1
  4102. 941 Videotape Arsenic A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia 2006 1 4 4.99 145 10.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'arsenic':2 'astronaut':11 'australia':18 'display':5 'girl':8 'lacklustur':4 'must':13 'student':16 'succumb':14 'videotap':1
  4103. 942 Vietnam Smoochy A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia 2006 1 7 0.99 174 27.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'butler':8 'display':5 'explor':16 'georgia':19 'lacklustur':4 'man':11 'must':13 'sink':14 'smoochi':2 'soviet':18 'vietnam':1
  4104. 943 Villain Desperate A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park 2006 1 4 4.99 76 27.99 PG-13 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'abandon':19 'amus':20 'bore':4 'cat':16 'desper':2 'feminist':11 'must':13 'park':21 'pioneer':8 'redeem':14 'villain':1 'yarn':5
  4105. 944 Virgin Daisy A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank 2006 1 6 4.99 179 29.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'administr':20 'awe':5 'awe-inspir':4 'daisi':2 'databas':19 'documentari':7 'inspir':6 'mad':13 'must':16 'reach':17 'robot':10 'scientist':14 'shark':23 'tank':24 'virgin':1
  4106. 945 Virginian Pluto A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin 2006 1 5 0.99 164 22.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'berlin':18 'boy':16 'crocodil':11 'dentist':8 'emot':4 'meet':14 'must':13 'panorama':5 'pluto':2 'virginian':1
  4107. 946 Virtual Spoilers A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia 2006 1 3 4.99 144 14.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'administr':9 'databas':8 'discov':15 'fate':4 'georgia':20 'must':14 'soviet':19 'spoiler':2 'squirrel':12 'student':17 'tale':5 'virtual':1
  4108. 947 Vision Torque A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank 2006 1 5 0.99 59 16.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'documentari':5 'dog':8 'man':11,16 'must':13 'shark':19 'sink':14 'tank':20 'thought':4 'torqu':2 'vision':1
  4109. 948 Voice Peach A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse 2006 1 6 0.99 139 22.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'amaz':4 'mad':16 'manhattan':20 'must':13 'overcom':14 'panorama':5 'peach':2 'penthous':21 'pioneer':8 'scientist':17 'student':11 'voic':1
  4110. 949 Volcano Texas A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback 2006 1 6 0.99 157 27.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'awe':5 'awe-inspir':4 'challeng':16 'dentist':18 'feminist':13 'hunter':10 'inspir':6 'must':15 'outback':21 'texa':2 'volcano':1 'yarn':7
  4111. 950 Volume House A Boring Tale of a Dog And a Woman who must Meet a Dentist in California 2006 1 7 4.99 132 12.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'bore':4 'california':18 'dentist':16 'dog':8 'hous':2 'meet':14 'must':13 'tale':5 'volum':1 'woman':11
  4112. 951 Voyage Legally A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft 2006 1 6 0.99 78 28.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'abandon':19 'boy':16 'conquer':14 'epic':4 'hunter':11 'legal':2 'mine':20 'must':13 'shaft':21 'squirrel':8 'tale':5 'voyag':1
  4113. 952 Wagon Jaws A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse 2006 1 7 2.99 152 17.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'boat':11 'drama':5 'explor':16 'intrepid':4 'jaw':2 'kill':14 'manhattan':19 'moos':8 'must':13 'penthous':20 'wagon':1
  4114. 953 Wait Cider A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse 2006 1 3 0.99 112 9.99 PG-13 2013-05-26 14:50:58.951 {Trailers} 'astronaut':17 'cider':2 'epistl':5 'forens':11 'intrepid':4 'manhattan':20 'must':14 'penthous':21 'psychologist':12 'succumb':15 'wait':1 'woman':8
  4115. 954 Wake Jaws A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin 2006 1 7 4.99 73 18.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'beauti':4 'berlin':18 'challeng':14 'compos':11 'feminist':8 'jaw':2 'moos':16 'must':13 'saga':5 'wake':1
  4116. 955 Walls Artist A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House 2006 1 7 4.99 135 19.99 PG 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':20 'artist':2 'cow':17 'fun':21 'hous':22 'insight':4 'mad':16 'must':13 'overcom':14 'panorama':5 'teacher':8,11 'wall':1
  4117. 956 Wanda Chamber A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback 2006 1 7 4.99 107 23.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'chamber':2 'drama':5 'find':15 'insight':4 'must':14 'outback':20 'pioneer':12 'shark':9 'wanda':1 'woman':17
  4118. 957 War Notting A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies 2006 1 7 4.99 80 26.99 G 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'agent':18 'bore':4 'canadian':21 'challeng':15 'drama':5 'must':14 'not':2 'rocki':22 'secret':17 'sumo':11 'teacher':8 'war':1 'wrestler':12
  4119. 958 Wardrobe Phantom A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India 2006 1 6 2.99 178 19.99 G 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'action':5 'action-pack':4 'ancient':21 'astronaut':14 'car':19 'cow':11 'display':7 'india':22 'kill':17 'mad':10 'must':16 'pack':6 'phantom':2 'wardrob':1
  4120. 959 Warlock Werewolf A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback 2006 1 6 2.99 83 10.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'astound':4 'crocodil':11 'defeat':14 'must':13 'outback':20 'pioneer':8 'shark':17 'warlock':1 'werewolf':2 'yarn':5
  4121. 960 Wars Pluto A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert 2006 1 5 2.99 128 15.99 G 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'administr':12 'chase':15 'databas':11 'desert':21 'madman':17 'must':14 'pluto':2 'reflect':5 'sahara':20 'taut':4 'teacher':8 'war':1
  4122. 961 Wash Heavenly A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China 2006 1 7 4.99 161 22.99 R 2013-05-26 14:50:58.951 {Commentaries} 'ancient':20 'awe':5 'awe-inspir':4 'cat':10 'china':21 'escap':16 'heaven':2 'hunter':18 'inspir':6 'must':15 'pioneer':13 'reflect':7 'wash':1
  4123. 962 Wasteland Divine A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China 2006 1 7 2.99 85 18.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'administr':9,18 'ancient':20 'china':21 'databas':8,17 'divin':2 'fanci':4 'fight':15 'must':14 'stori':5 'wasteland':1 'woman':12
  4124. 963 Watch Tracy A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria 2006 1 5 0.99 78 12.99 PG 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes","Behind the Scenes"} 'conquer':16 'dog':10 'fast':5 'fast-pac':4 'frisbe':13 'hunter':18 'must':15 'nigeria':20 'pace':6 'traci':2 'watch':1 'yarn':7
  4125. 964 Waterfront Deliverance A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria 2006 1 4 4.99 61 17.99 G 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'build':15 'deliver':2 'dentist':8 'documentari':5 'must':14 'nigeria':19 'technic':11 'unbeliev':4 'waterfront':1 'woman':17 'writer':12
  4126. 965 Watership Frontier A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia 2006 1 6 0.99 112 28.99 G 2013-05-26 14:50:58.951 {Commentaries} 'boat':8 'crocodil':11 'emot':4 'frontier':2 'georgia':19 'meet':14 'moos':16 'must':13 'soviet':18 'watership':1 'yarn':5
  4127. 966 Wedding Apollo A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft 2006 1 3 0.99 70 14.99 PG 2013-05-26 14:50:58.951 {Trailers} 'abandon':21 'action':5 'action-pack':4 'apollo':2 'conquer':16 'lumberjack':18 'mine':22 'must':15 'pack':6 'shaft':23 'student':10 'tale':7 'waitress':13 'wed':1
  4128. 967 Weekend Personal A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat 2006 1 5 2.99 134 26.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'boat':22 'butler':13 'car':10 'documentari':7 'fast':5 'fast-pac':4 'find':16 'frisbe':18 'jet':21 'must':15 'pace':6 'person':2 'weekend':1
  4129. 968 Werewolf Lola A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery 2006 1 6 4.99 79 19.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'fanci':4 'lola':2 'man':8 'monasteri':20 'must':14 'outrac':15 'stori':5 'student':17 'sumo':11 'werewolf':1 'wrestler':12
  4130. 969 West Lion A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse 2006 1 4 4.99 159 29.99 G 2013-05-26 14:50:58.951 {Trailers} 'administr':17 'butler':8 'challeng':14 'databas':16 'drama':5 'intrepid':4 'lion':2 'lumberjack':11 'manhattan':20 'must':13 'penthous':21 'west':1
  4131. 970 Westward Seabiscuit A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China 2006 1 7 0.99 52 11.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ancient':18 'boy':16 'butler':8 'china':19 'face':14 'husband':11 'lacklustur':4 'must':13 'seabiscuit':2 'tale':5 'westward':1
  4132. 971 Whale Bikini A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention 2006 1 4 4.99 109 11.99 PG-13 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'administr':13 'bikini':2 'chef':9 'convent':22 'databas':12 'feminist':18 'intrepid':4 'kill':16 'must':15 'mysql':21 'pastri':8 'stori':5 'whale':1
  4133. 972 Whisperer Giant A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan 2006 1 4 4.99 59 24.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':18 'confront':14 'dentist':8 'giant':2 'hunter':11 'intrepid':4 'japan':19 'monkey':16 'must':13 'stori':5 'whisper':1
  4134. 973 Wife Turn A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan 2006 1 3 4.99 183 27.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1
  4135. 974 Wild Apollo A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention 2006 1 4 0.99 181 24.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"} 'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12
  4136. 975 Willow Tracy A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse 2006 1 6 2.99 137 22.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'astronaut':11 'boat':8 'brilliant':4 'challeng':14 'manhattan':19 'must':13 'panorama':5 'penthous':20 'teacher':16 'traci':2 'willow':1
  4137. 976 Wind Phantom A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft 2006 1 6 0.99 111 12.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'abandon':21 'build':15 'forens':11 'madman':8 'mine':22 'must':14 'phantom':2 'psychologist':12 'saga':5 'shaft':23 'sumo':17 'touch':4 'wind':1 'wrestler':18
  4138. 977 Window Side A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery 2006 1 3 2.99 85 25.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'astound':4 'charact':5 'escap':15 'hunter':12 'monasteri':20 'must':14 'robot':17 'side':2 'studi':6 'window':1 'woman':9
  4139. 978 Wisdom Worker A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station 2006 1 3 0.99 98 12.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'face':15 'first':20 'forens':8 'man':21 'must':14 'psychologist':9 'saga':5 'space':22 'squirrel':17 'station':23 'student':12 'unbeliev':4 'wisdom':1 'worker':2
  4140. 979 Witches Panic A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria 2006 1 6 4.99 100 10.99 NC-17 2013-05-26 14:50:58.951 {Commentaries,"Behind the Scenes"} 'agent':11 'awe':5 'awe-inspir':4 'drama':7 'fight':17 'hunter':14 'inspir':6 'moos':19 'must':16 'nigeria':21 'panic':2 'secret':10 'witch':1
  4141. 980 Wizard Coldblooded A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention 2006 1 4 4.99 75 12.99 PG 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes","Behind the Scenes"} 'coldblood':2 'convent':21 'defeat':14 'display':5 'girl':11 'lacklustur':4 'must':13 'mysql':20 'robot':8 'sumo':16 'wizard':1 'wrestler':17
  4142. 981 Wolves Desire A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse 2006 1 7 0.99 55 13.99 NC-17 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'desir':2 'drama':7 'fast':5 'fast-pac':4 'manhattan':22 'must':15 'pace':6 'penthous':23 'robot':13 'squirrel':10 'succumb':16 'technic':18 'wolv':1 'writer':19
  4143. 982 Women Dorado A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia 2006 1 4 0.99 126 23.99 R 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'australia':18 'butler':11 'compos':16 'documentari':5 'dorado':2 'insight':4 'must':13 'vanquish':14 'waitress':8 'women':1
  4144. 983 Won Dares A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat 2006 1 7 2.99 105 18.99 PG 2013-05-26 14:50:58.951 {"Behind the Scenes"} 'boat':21 'dare':2 'defeat':14 'documentari':5 'explor':16 'monkey':11 'must':13 'teacher':8 'u':20 'u-boat':19 'unbeliev':4 'won':1
  4145. 984 Wonderful Drop A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat 2006 1 3 2.99 126 20.99 NC-17 2013-05-26 14:50:58.951 {Commentaries} 'boat':21 'bore':4 'butler':16 'drop':2 'madman':11 'must':13 'overcom':14 'panorama':5 'u':20 'u-boat':19 'woman':8 'wonder':1
  4146. 985 Wonderland Christmas A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station 2006 1 4 4.99 111 19.99 PG 2013-05-26 14:50:58.951 {Commentaries} 'awe':5 'awe-inspir':4 'car':14 'charact':7 'christma':2 'first':23 'inspir':6 'mad':19 'man':24 'must':16 'pursu':17 'scientist':20 'space':25 'station':26 'studi':8 'waitress':11 'wonderland':1
  4147. 986 Wonka Sea A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India 2006 1 6 2.99 85 24.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'ancient':19 'boat':8 'brilliant':4 'india':20 'mad':11 'meet':15 'moos':17 'must':14 'saga':5 'scientist':12 'sea':2 'wonka':1
  4148. 987 Words Hunter A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention 2006 1 3 2.99 116 13.99 PG 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'action':5 'action-pack':4 'compos':10 'convent':23 'face':17 'hunter':2 'mad':13 'must':16 'mysql':22 'pack':6 'pioneer':19 'reflect':7 'scientist':14 'word':1
  4149. 988 Worker Tarzan A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station 2006 1 7 2.99 139 26.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'action':5 'action-pack':4 'agent':11 'battl':18 'first':24 'man':25 'must':17 'pack':6 'secret':10 'space':26 'station':27 'sumo':20 'tarzan':2 'technic':14 'worker':1 'wrestler':21 'writer':15 'yarn':7
  4150. 989 Working Microcosmos A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China 2006 1 4 4.99 74 22.99 R 2013-05-26 14:50:58.951 {Commentaries,"Deleted Scenes"} 'ancient':18 'china':19 'dentist':8 'dog':11 'epistl':5 'kill':14 'madman':16 'microcosmo':2 'must':13 'stun':4 'work':1
  4151. 990 World Leathernecks A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park 2006 1 3 0.99 171 13.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'abandon':19 'amus':20 'astronaut':11 'leatherneck':2 'must':13 'overcom':14 'park':21 'pioneer':8 'robot':16 'tale':5 'unbeliev':4 'world':1
  4152. 991 Worst Banger A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback 2006 1 4 2.99 185 26.99 PG 2013-05-26 14:50:58.951 {"Deleted Scenes","Behind the Scenes"} 'banger':2 'boy':16 'conquer':14 'dentist':11 'drama':5 'madman':8 'must':13 'outback':19 'thrill':4 'worst':1
  4153. 992 Wrath Mile A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery 2006 1 5 0.99 176 17.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries} 'defeat':15 'hunter':12 'intrepid':4 'mile':2 'monasteri':21 'must':14 'reflect':5 'sumo':17 'technic':8 'wrath':1 'wrestler':18 'writer':9
  4154. 993 Wrong Behavior A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans 2006 1 6 2.99 178 10.99 PG-13 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'behavior':2 'cow':18 'crocodil':8 'discov':15 'emot':4 'mad':17 'must':14 'new':20 'orlean':21 'saga':5 'sumo':11 'wrestler':12 'wrong':1
  4155. 994 Wyoming Storm A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat 2006 1 6 4.99 100 29.99 PG-13 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'awe':5 'awe-inspir':4 'boat':13,23 'feminist':18 'inspir':6 'must':15 'overcom':16 'panorama':7 'robot':10 'storm':2 'u':22 'u-boat':21 'wyom':1
  4156. 995 Yentl Idaho A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin 2006 1 5 4.99 86 11.99 R 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Deleted Scenes"} 'amaz':4 'astronaut':11 'berlin':18 'display':5 'fight':14 'idaho':2 'must':13 'robot':8 'woman':16 'yentl':1
  4157. 996 Young Language A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station 2006 1 6 0.99 183 9.99 G 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1
  4158. 997 Youth Kick A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat 2006 1 4 0.99 179 14.99 NC-17 2013-05-26 14:50:58.951 {Trailers,"Behind the Scenes"} 'boat':22 'cat':11 'challeng':14 'drama':5 'kick':2 'must':13 'teacher':8 'technic':16 'touch':4 'u':21 'u-boat':20 'writer':17 'youth':1
  4159. 998 Zhivago Core A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies 2006 1 6 0.99 105 10.99 NC-17 2013-05-26 14:50:58.951 {"Deleted Scenes"} 'boy':16 'canadian':19 'compos':8 'core':2 'face':14 'fate':4 'man':11 'must':13 'rocki':20 'yarn':5 'zhivago':1
  4160. 999 Zoolander Fiction A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China 2006 1 5 2.99 101 28.99 R 2013-05-26 14:50:58.951 {Trailers,"Deleted Scenes"} 'ancient':19 'boat':11 'china':20 'discov':14 'fate':4 'fiction':2 'must':13 'reflect':5 'sumo':16 'waitress':8 'wrestler':17 'zooland':1
  4161. 1000 Zorro Ark A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery 2006 1 3 4.99 50 18.99 NC-17 2013-05-26 14:50:58.951 {Trailers,Commentaries,"Behind the Scenes"} 'ark':2 'boy':12,17 'intrepid':4 'mad':8 'monasteri':20 'must':14 'panorama':5 'redeem':15 'scientist':9 'zorro':1
  4162. \.
  4163.  
  4164.  
  4165. --
  4166. -- Data for Name: film_actor; Type: TABLE DATA; Schema: public; Owner: postgres
  4167. --
  4168.  
  4169. COPY "film_actor" ("actor_id", "film_id", "last_update") FROM stdin;
  4170. 1 1 2006-02-15 10:05:03
  4171. 1 23 2006-02-15 10:05:03
  4172. 1 25 2006-02-15 10:05:03
  4173. 1 106 2006-02-15 10:05:03
  4174. 1 140 2006-02-15 10:05:03
  4175. 1 166 2006-02-15 10:05:03
  4176. 1 277 2006-02-15 10:05:03
  4177. 1 361 2006-02-15 10:05:03
  4178. 1 438 2006-02-15 10:05:03
  4179. 1 499 2006-02-15 10:05:03
  4180. 1 506 2006-02-15 10:05:03
  4181. 1 509 2006-02-15 10:05:03
  4182. 1 605 2006-02-15 10:05:03
  4183. 1 635 2006-02-15 10:05:03
  4184. 1 749 2006-02-15 10:05:03
  4185. 1 832 2006-02-15 10:05:03
  4186. 1 939 2006-02-15 10:05:03
  4187. 1 970 2006-02-15 10:05:03
  4188. 1 980 2006-02-15 10:05:03
  4189. 2 3 2006-02-15 10:05:03
  4190. 2 31 2006-02-15 10:05:03
  4191. 2 47 2006-02-15 10:05:03
  4192. 2 105 2006-02-15 10:05:03
  4193. 2 132 2006-02-15 10:05:03
  4194. 2 145 2006-02-15 10:05:03
  4195. 2 226 2006-02-15 10:05:03
  4196. 2 249 2006-02-15 10:05:03
  4197. 2 314 2006-02-15 10:05:03
  4198. 2 321 2006-02-15 10:05:03
  4199. 2 357 2006-02-15 10:05:03
  4200. 2 369 2006-02-15 10:05:03
  4201. 2 399 2006-02-15 10:05:03
  4202. 2 458 2006-02-15 10:05:03
  4203. 2 481 2006-02-15 10:05:03
  4204. 2 485 2006-02-15 10:05:03
  4205. 2 518 2006-02-15 10:05:03
  4206. 2 540 2006-02-15 10:05:03
  4207. 2 550 2006-02-15 10:05:03
  4208. 2 555 2006-02-15 10:05:03
  4209. 2 561 2006-02-15 10:05:03
  4210. 2 742 2006-02-15 10:05:03
  4211. 2 754 2006-02-15 10:05:03
  4212. 2 811 2006-02-15 10:05:03
  4213. 2 958 2006-02-15 10:05:03
  4214. 3 17 2006-02-15 10:05:03
  4215. 3 40 2006-02-15 10:05:03
  4216. 3 42 2006-02-15 10:05:03
  4217. 3 87 2006-02-15 10:05:03
  4218. 3 111 2006-02-15 10:05:03
  4219. 3 185 2006-02-15 10:05:03
  4220. 3 289 2006-02-15 10:05:03
  4221. 3 329 2006-02-15 10:05:03
  4222. 3 336 2006-02-15 10:05:03
  4223. 3 341 2006-02-15 10:05:03
  4224. 3 393 2006-02-15 10:05:03
  4225. 3 441 2006-02-15 10:05:03
  4226. 3 453 2006-02-15 10:05:03
  4227. 3 480 2006-02-15 10:05:03
  4228. 3 539 2006-02-15 10:05:03
  4229. 3 618 2006-02-15 10:05:03
  4230. 3 685 2006-02-15 10:05:03
  4231. 3 827 2006-02-15 10:05:03
  4232. 3 966 2006-02-15 10:05:03
  4233. 3 967 2006-02-15 10:05:03
  4234. 3 971 2006-02-15 10:05:03
  4235. 3 996 2006-02-15 10:05:03
  4236. 4 23 2006-02-15 10:05:03
  4237. 4 25 2006-02-15 10:05:03
  4238. 4 56 2006-02-15 10:05:03
  4239. 4 62 2006-02-15 10:05:03
  4240. 4 79 2006-02-15 10:05:03
  4241. 4 87 2006-02-15 10:05:03
  4242. 4 355 2006-02-15 10:05:03
  4243. 4 379 2006-02-15 10:05:03
  4244. 4 398 2006-02-15 10:05:03
  4245. 4 463 2006-02-15 10:05:03
  4246. 4 490 2006-02-15 10:05:03
  4247. 4 616 2006-02-15 10:05:03
  4248. 4 635 2006-02-15 10:05:03
  4249. 4 691 2006-02-15 10:05:03
  4250. 4 712 2006-02-15 10:05:03
  4251. 4 714 2006-02-15 10:05:03
  4252. 4 721 2006-02-15 10:05:03
  4253. 4 798 2006-02-15 10:05:03
  4254. 4 832 2006-02-15 10:05:03
  4255. 4 858 2006-02-15 10:05:03
  4256. 4 909 2006-02-15 10:05:03
  4257. 4 924 2006-02-15 10:05:03
  4258. 5 19 2006-02-15 10:05:03
  4259. 5 54 2006-02-15 10:05:03
  4260. 5 85 2006-02-15 10:05:03
  4261. 5 146 2006-02-15 10:05:03
  4262. 5 171 2006-02-15 10:05:03
  4263. 5 172 2006-02-15 10:05:03
  4264. 5 202 2006-02-15 10:05:03
  4265. 5 203 2006-02-15 10:05:03
  4266. 5 286 2006-02-15 10:05:03
  4267. 5 288 2006-02-15 10:05:03
  4268. 5 316 2006-02-15 10:05:03
  4269. 5 340 2006-02-15 10:05:03
  4270. 5 369 2006-02-15 10:05:03
  4271. 5 375 2006-02-15 10:05:03
  4272. 5 383 2006-02-15 10:05:03
  4273. 5 392 2006-02-15 10:05:03
  4274. 5 411 2006-02-15 10:05:03
  4275. 5 503 2006-02-15 10:05:03
  4276. 5 535 2006-02-15 10:05:03
  4277. 5 571 2006-02-15 10:05:03
  4278. 5 650 2006-02-15 10:05:03
  4279. 5 665 2006-02-15 10:05:03
  4280. 5 687 2006-02-15 10:05:03
  4281. 5 730 2006-02-15 10:05:03
  4282. 5 732 2006-02-15 10:05:03
  4283. 5 811 2006-02-15 10:05:03
  4284. 5 817 2006-02-15 10:05:03
  4285. 5 841 2006-02-15 10:05:03
  4286. 5 865 2006-02-15 10:05:03
  4287. 6 29 2006-02-15 10:05:03
  4288. 6 53 2006-02-15 10:05:03
  4289. 6 60 2006-02-15 10:05:03
  4290. 6 70 2006-02-15 10:05:03
  4291. 6 112 2006-02-15 10:05:03
  4292. 6 164 2006-02-15 10:05:03
  4293. 6 165 2006-02-15 10:05:03
  4294. 6 193 2006-02-15 10:05:03
  4295. 6 256 2006-02-15 10:05:03
  4296. 6 451 2006-02-15 10:05:03
  4297. 6 503 2006-02-15 10:05:03
  4298. 6 509 2006-02-15 10:05:03
  4299. 6 517 2006-02-15 10:05:03
  4300. 6 519 2006-02-15 10:05:03
  4301. 6 605 2006-02-15 10:05:03
  4302. 6 692 2006-02-15 10:05:03
  4303. 6 826 2006-02-15 10:05:03
  4304. 6 892 2006-02-15 10:05:03
  4305. 6 902 2006-02-15 10:05:03
  4306. 6 994 2006-02-15 10:05:03
  4307. 7 25 2006-02-15 10:05:03
  4308. 7 27 2006-02-15 10:05:03
  4309. 7 35 2006-02-15 10:05:03
  4310. 7 67 2006-02-15 10:05:03
  4311. 7 96 2006-02-15 10:05:03
  4312. 7 170 2006-02-15 10:05:03
  4313. 7 173 2006-02-15 10:05:03
  4314. 7 217 2006-02-15 10:05:03
  4315. 7 218 2006-02-15 10:05:03
  4316. 7 225 2006-02-15 10:05:03
  4317. 7 292 2006-02-15 10:05:03
  4318. 7 351 2006-02-15 10:05:03
  4319. 7 414 2006-02-15 10:05:03
  4320. 7 463 2006-02-15 10:05:03
  4321. 7 554 2006-02-15 10:05:03
  4322. 7 618 2006-02-15 10:05:03
  4323. 7 633 2006-02-15 10:05:03
  4324. 7 637 2006-02-15 10:05:03
  4325. 7 691 2006-02-15 10:05:03
  4326. 7 758 2006-02-15 10:05:03
  4327. 7 766 2006-02-15 10:05:03
  4328. 7 770 2006-02-15 10:05:03
  4329. 7 805 2006-02-15 10:05:03
  4330. 7 806 2006-02-15 10:05:03
  4331. 7 846 2006-02-15 10:05:03
  4332. 7 900 2006-02-15 10:05:03
  4333. 7 901 2006-02-15 10:05:03
  4334. 7 910 2006-02-15 10:05:03
  4335. 7 957 2006-02-15 10:05:03
  4336. 7 959 2006-02-15 10:05:03
  4337. 8 47 2006-02-15 10:05:03
  4338. 8 115 2006-02-15 10:05:03
  4339. 8 158 2006-02-15 10:05:03
  4340. 8 179 2006-02-15 10:05:03
  4341. 8 195 2006-02-15 10:05:03
  4342. 8 205 2006-02-15 10:05:03
  4343. 8 255 2006-02-15 10:05:03
  4344. 8 263 2006-02-15 10:05:03
  4345. 8 321 2006-02-15 10:05:03
  4346. 8 396 2006-02-15 10:05:03
  4347. 8 458 2006-02-15 10:05:03
  4348. 8 523 2006-02-15 10:05:03
  4349. 8 532 2006-02-15 10:05:03
  4350. 8 554 2006-02-15 10:05:03
  4351. 8 752 2006-02-15 10:05:03
  4352. 8 769 2006-02-15 10:05:03
  4353. 8 771 2006-02-15 10:05:03
  4354. 8 859 2006-02-15 10:05:03
  4355. 8 895 2006-02-15 10:05:03
  4356. 8 936 2006-02-15 10:05:03
  4357. 9 30 2006-02-15 10:05:03
  4358. 9 74 2006-02-15 10:05:03
  4359. 9 147 2006-02-15 10:05:03
  4360. 9 148 2006-02-15 10:05:03
  4361. 9 191 2006-02-15 10:05:03
  4362. 9 200 2006-02-15 10:05:03
  4363. 9 204 2006-02-15 10:05:03
  4364. 9 434 2006-02-15 10:05:03
  4365. 9 510 2006-02-15 10:05:03
  4366. 9 514 2006-02-15 10:05:03
  4367. 9 552 2006-02-15 10:05:03
  4368. 9 650 2006-02-15 10:05:03
  4369. 9 671 2006-02-15 10:05:03
  4370. 9 697 2006-02-15 10:05:03
  4371. 9 722 2006-02-15 10:05:03
  4372. 9 752 2006-02-15 10:05:03
  4373. 9 811 2006-02-15 10:05:03
  4374. 9 815 2006-02-15 10:05:03
  4375. 9 865 2006-02-15 10:05:03
  4376. 9 873 2006-02-15 10:05:03
  4377. 9 889 2006-02-15 10:05:03
  4378. 9 903 2006-02-15 10:05:03
  4379. 9 926 2006-02-15 10:05:03
  4380. 9 964 2006-02-15 10:05:03
  4381. 9 974 2006-02-15 10:05:03
  4382. 10 1 2006-02-15 10:05:03
  4383. 10 9 2006-02-15 10:05:03
  4384. 10 191 2006-02-15 10:05:03
  4385. 10 236 2006-02-15 10:05:03
  4386. 10 251 2006-02-15 10:05:03
  4387. 10 366 2006-02-15 10:05:03
  4388. 10 477 2006-02-15 10:05:03
  4389. 10 480 2006-02-15 10:05:03
  4390. 10 522 2006-02-15 10:05:03
  4391. 10 530 2006-02-15 10:05:03
  4392. 10 587 2006-02-15 10:05:03
  4393. 10 694 2006-02-15 10:05:03
  4394. 10 703 2006-02-15 10:05:03
  4395. 10 716 2006-02-15 10:05:03
  4396. 10 782 2006-02-15 10:05:03
  4397. 10 914 2006-02-15 10:05:03
  4398. 10 929 2006-02-15 10:05:03
  4399. 10 930 2006-02-15 10:05:03
  4400. 10 964 2006-02-15 10:05:03
  4401. 10 966 2006-02-15 10:05:03
  4402. 10 980 2006-02-15 10:05:03
  4403. 10 983 2006-02-15 10:05:03
  4404. 11 118 2006-02-15 10:05:03
  4405. 11 205 2006-02-15 10:05:03
  4406. 11 281 2006-02-15 10:05:03
  4407. 11 283 2006-02-15 10:05:03
  4408. 11 348 2006-02-15 10:05:03
  4409. 11 364 2006-02-15 10:05:03
  4410. 11 395 2006-02-15 10:05:03
  4411. 11 429 2006-02-15 10:05:03
  4412. 11 433 2006-02-15 10:05:03
  4413. 11 453 2006-02-15 10:05:03
  4414. 11 485 2006-02-15 10:05:03
  4415. 11 532 2006-02-15 10:05:03
  4416. 11 567 2006-02-15 10:05:03
  4417. 11 587 2006-02-15 10:05:03
  4418. 11 597 2006-02-15 10:05:03
  4419. 11 636 2006-02-15 10:05:03
  4420. 11 709 2006-02-15 10:05:03
  4421. 11 850 2006-02-15 10:05:03
  4422. 11 854 2006-02-15 10:05:03
  4423. 11 888 2006-02-15 10:05:03
  4424. 11 896 2006-02-15 10:05:03
  4425. 11 928 2006-02-15 10:05:03
  4426. 11 938 2006-02-15 10:05:03
  4427. 11 969 2006-02-15 10:05:03
  4428. 11 988 2006-02-15 10:05:03
  4429. 12 16 2006-02-15 10:05:03
  4430. 12 17 2006-02-15 10:05:03
  4431. 12 34 2006-02-15 10:05:03
  4432. 12 37 2006-02-15 10:05:03
  4433. 12 91 2006-02-15 10:05:03
  4434. 12 92 2006-02-15 10:05:03
  4435. 12 107 2006-02-15 10:05:03
  4436. 12 155 2006-02-15 10:05:03
  4437. 12 177 2006-02-15 10:05:03
  4438. 12 208 2006-02-15 10:05:03
  4439. 12 213 2006-02-15 10:05:03
  4440. 12 216 2006-02-15 10:05:03
  4441. 12 243 2006-02-15 10:05:03
  4442. 12 344 2006-02-15 10:05:03
  4443. 12 400 2006-02-15 10:05:03
  4444. 12 416 2006-02-15 10:05:03
  4445. 12 420 2006-02-15 10:05:03
  4446. 12 457 2006-02-15 10:05:03
  4447. 12 513 2006-02-15 10:05:03
  4448. 12 540 2006-02-15 10:05:03
  4449. 12 593 2006-02-15 10:05:03
  4450. 12 631 2006-02-15 10:05:03
  4451. 12 635 2006-02-15 10:05:03
  4452. 12 672 2006-02-15 10:05:03
  4453. 12 716 2006-02-15 10:05:03
  4454. 12 728 2006-02-15 10:05:03
  4455. 12 812 2006-02-15 10:05:03
  4456. 12 838 2006-02-15 10:05:03
  4457. 12 871 2006-02-15 10:05:03
  4458. 12 880 2006-02-15 10:05:03
  4459. 12 945 2006-02-15 10:05:03
  4460. 13 17 2006-02-15 10:05:03
  4461. 13 29 2006-02-15 10:05:03
  4462. 13 45 2006-02-15 10:05:03
  4463. 13 87 2006-02-15 10:05:03
  4464. 13 110 2006-02-15 10:05:03
  4465. 13 144 2006-02-15 10:05:03
  4466. 13 154 2006-02-15 10:05:03
  4467. 13 162 2006-02-15 10:05:03
  4468. 13 203 2006-02-15 10:05:03
  4469. 13 254 2006-02-15 10:05:03
  4470. 13 337 2006-02-15 10:05:03
  4471. 13 346 2006-02-15 10:05:03
  4472. 13 381 2006-02-15 10:05:03
  4473. 13 385 2006-02-15 10:05:03
  4474. 13 427 2006-02-15 10:05:03
  4475. 13 456 2006-02-15 10:05:03
  4476. 13 513 2006-02-15 10:05:03
  4477. 13 515 2006-02-15 10:05:03
  4478. 13 522 2006-02-15 10:05:03
  4479. 13 524 2006-02-15 10:05:03
  4480. 13 528 2006-02-15 10:05:03
  4481. 13 571 2006-02-15 10:05:03
  4482. 13 588 2006-02-15 10:05:03
  4483. 13 597 2006-02-15 10:05:03
  4484. 13 600 2006-02-15 10:05:03
  4485. 13 718 2006-02-15 10:05:03
  4486. 13 729 2006-02-15 10:05:03
  4487. 13 816 2006-02-15 10:05:03
  4488. 13 817 2006-02-15 10:05:03
  4489. 13 832 2006-02-15 10:05:03
  4490. 13 833 2006-02-15 10:05:03
  4491. 13 843 2006-02-15 10:05:03
  4492. 13 897 2006-02-15 10:05:03
  4493. 13 966 2006-02-15 10:05:03
  4494. 13 998 2006-02-15 10:05:03
  4495. 14 154 2006-02-15 10:05:03
  4496. 14 187 2006-02-15 10:05:03
  4497. 14 232 2006-02-15 10:05:03
  4498. 14 241 2006-02-15 10:05:03
  4499. 14 253 2006-02-15 10:05:03
  4500. 14 255 2006-02-15 10:05:03
  4501. 14 258 2006-02-15 10:05:03
  4502. 14 284 2006-02-15 10:05:03
  4503. 14 292 2006-02-15 10:05:03
  4504. 14 370 2006-02-15 10:05:03
  4505. 14 415 2006-02-15 10:05:03
  4506. 14 417 2006-02-15 10:05:03
  4507. 14 418 2006-02-15 10:05:03
  4508. 14 454 2006-02-15 10:05:03
  4509. 14 472 2006-02-15 10:05:03
  4510. 14 475 2006-02-15 10:05:03
  4511. 14 495 2006-02-15 10:05:03
  4512. 14 536 2006-02-15 10:05:03
  4513. 14 537 2006-02-15 10:05:03
  4514. 14 612 2006-02-15 10:05:03
  4515. 14 688 2006-02-15 10:05:03
  4516. 14 759 2006-02-15 10:05:03
  4517. 14 764 2006-02-15 10:05:03
  4518. 14 847 2006-02-15 10:05:03
  4519. 14 856 2006-02-15 10:05:03
  4520. 14 890 2006-02-15 10:05:03
  4521. 14 908 2006-02-15 10:05:03
  4522. 14 919 2006-02-15 10:05:03
  4523. 14 948 2006-02-15 10:05:03
  4524. 14 970 2006-02-15 10:05:03
  4525. 15 31 2006-02-15 10:05:03
  4526. 15 89 2006-02-15 10:05:03
  4527. 15 91 2006-02-15 10:05:03
  4528. 15 108 2006-02-15 10:05:03
  4529. 15 125 2006-02-15 10:05:03
  4530. 15 236 2006-02-15 10:05:03
  4531. 15 275 2006-02-15 10:05:03
  4532. 15 280 2006-02-15 10:05:03
  4533. 15 326 2006-02-15 10:05:03
  4534. 15 342 2006-02-15 10:05:03
  4535. 15 414 2006-02-15 10:05:03
  4536. 15 445 2006-02-15 10:05:03
  4537. 15 500 2006-02-15 10:05:03
  4538. 15 502 2006-02-15 10:05:03
  4539. 15 541 2006-02-15 10:05:03
  4540. 15 553 2006-02-15 10:05:03
  4541. 15 594 2006-02-15 10:05:03
  4542. 15 626 2006-02-15 10:05:03
  4543. 15 635 2006-02-15 10:05:03
  4544. 15 745 2006-02-15 10:05:03
  4545. 15 783 2006-02-15 10:05:03
  4546. 15 795 2006-02-15 10:05:03
  4547. 15 817 2006-02-15 10:05:03
  4548. 15 886 2006-02-15 10:05:03
  4549. 15 924 2006-02-15 10:05:03
  4550. 15 949 2006-02-15 10:05:03
  4551. 15 968 2006-02-15 10:05:03
  4552. 15 985 2006-02-15 10:05:03
  4553. 16 80 2006-02-15 10:05:03
  4554. 16 87 2006-02-15 10:05:03
  4555. 16 101 2006-02-15 10:05:03
  4556. 16 121 2006-02-15 10:05:03
  4557. 16 155 2006-02-15 10:05:03
  4558. 16 177 2006-02-15 10:05:03
  4559. 16 218 2006-02-15 10:05:03
  4560. 16 221 2006-02-15 10:05:03
  4561. 16 267 2006-02-15 10:05:03
  4562. 16 269 2006-02-15 10:05:03
  4563. 16 271 2006-02-15 10:05:03
  4564. 16 280 2006-02-15 10:05:03
  4565. 16 287 2006-02-15 10:05:03
  4566. 16 345 2006-02-15 10:05:03
  4567. 16 438 2006-02-15 10:05:03
  4568. 16 453 2006-02-15 10:05:03
  4569. 16 455 2006-02-15 10:05:03
  4570. 16 456 2006-02-15 10:05:03
  4571. 16 503 2006-02-15 10:05:03
  4572. 16 548 2006-02-15 10:05:03
  4573. 16 582 2006-02-15 10:05:03
  4574. 16 583 2006-02-15 10:05:03
  4575. 16 717 2006-02-15 10:05:03
  4576. 16 758 2006-02-15 10:05:03
  4577. 16 779 2006-02-15 10:05:03
  4578. 16 886 2006-02-15 10:05:03
  4579. 16 967 2006-02-15 10:05:03
  4580. 17 96 2006-02-15 10:05:03
  4581. 17 119 2006-02-15 10:05:03
  4582. 17 124 2006-02-15 10:05:03
  4583. 17 127 2006-02-15 10:05:03
  4584. 17 154 2006-02-15 10:05:03
  4585. 17 199 2006-02-15 10:05:03
  4586. 17 201 2006-02-15 10:05:03
  4587. 17 236 2006-02-15 10:05:03
  4588. 17 280 2006-02-15 10:05:03
  4589. 17 310 2006-02-15 10:05:03
  4590. 17 313 2006-02-15 10:05:03
  4591. 17 378 2006-02-15 10:05:03
  4592. 17 457 2006-02-15 10:05:03
  4593. 17 469 2006-02-15 10:05:03
  4594. 17 478 2006-02-15 10:05:03
  4595. 17 500 2006-02-15 10:05:03
  4596. 17 515 2006-02-15 10:05:03
  4597. 17 521 2006-02-15 10:05:03
  4598. 17 573 2006-02-15 10:05:03
  4599. 17 603 2006-02-15 10:05:03
  4600. 17 606 2006-02-15 10:05:03
  4601. 17 734 2006-02-15 10:05:03
  4602. 17 770 2006-02-15 10:05:03
  4603. 17 794 2006-02-15 10:05:03
  4604. 17 800 2006-02-15 10:05:03
  4605. 17 853 2006-02-15 10:05:03
  4606. 17 873 2006-02-15 10:05:03
  4607. 17 874 2006-02-15 10:05:03
  4608. 17 880 2006-02-15 10:05:03
  4609. 17 948 2006-02-15 10:05:03
  4610. 17 957 2006-02-15 10:05:03
  4611. 17 959 2006-02-15 10:05:03
  4612. 18 44 2006-02-15 10:05:03
  4613. 18 84 2006-02-15 10:05:03
  4614. 18 144 2006-02-15 10:05:03
  4615. 18 172 2006-02-15 10:05:03
  4616. 18 268 2006-02-15 10:05:03
  4617. 18 279 2006-02-15 10:05:03
  4618. 18 280 2006-02-15 10:05:03
  4619. 18 321 2006-02-15 10:05:03
  4620. 18 386 2006-02-15 10:05:03
  4621. 18 460 2006-02-15 10:05:03
  4622. 18 462 2006-02-15 10:05:03
  4623. 18 484 2006-02-15 10:05:03
  4624. 18 536 2006-02-15 10:05:03
  4625. 18 561 2006-02-15 10:05:03
  4626. 18 612 2006-02-15 10:05:03
  4627. 18 717 2006-02-15 10:05:03
  4628. 18 808 2006-02-15 10:05:03
  4629. 18 842 2006-02-15 10:05:03
  4630. 18 863 2006-02-15 10:05:03
  4631. 18 883 2006-02-15 10:05:03
  4632. 18 917 2006-02-15 10:05:03
  4633. 18 944 2006-02-15 10:05:03
  4634. 19 2 2006-02-15 10:05:03
  4635. 19 3 2006-02-15 10:05:03
  4636. 19 144 2006-02-15 10:05:03
  4637. 19 152 2006-02-15 10:05:03
  4638. 19 182 2006-02-15 10:05:03
  4639. 19 208 2006-02-15 10:05:03
  4640. 19 212 2006-02-15 10:05:03
  4641. 19 217 2006-02-15 10:05:03
  4642. 19 266 2006-02-15 10:05:03
  4643. 19 404 2006-02-15 10:05:03
  4644. 19 428 2006-02-15 10:05:03
  4645. 19 473 2006-02-15 10:05:03
  4646. 19 490 2006-02-15 10:05:03
  4647. 19 510 2006-02-15 10:05:03
  4648. 19 513 2006-02-15 10:05:03
  4649. 19 644 2006-02-15 10:05:03
  4650. 19 670 2006-02-15 10:05:03
  4651. 19 673 2006-02-15 10:05:03
  4652. 19 711 2006-02-15 10:05:03
  4653. 19 750 2006-02-15 10:05:03
  4654. 19 752 2006-02-15 10:05:03
  4655. 19 756 2006-02-15 10:05:03
  4656. 19 771 2006-02-15 10:05:03
  4657. 19 785 2006-02-15 10:05:03
  4658. 19 877 2006-02-15 10:05:03
  4659. 20 1 2006-02-15 10:05:03
  4660. 20 54 2006-02-15 10:05:03
  4661. 20 63 2006-02-15 10:05:03
  4662. 20 140 2006-02-15 10:05:03
  4663. 20 146 2006-02-15 10:05:03
  4664. 20 165 2006-02-15 10:05:03
  4665. 20 231 2006-02-15 10:05:03
  4666. 20 243 2006-02-15 10:05:03
  4667. 20 269 2006-02-15 10:05:03
  4668. 20 274 2006-02-15 10:05:03
  4669. 20 348 2006-02-15 10:05:03
  4670. 20 366 2006-02-15 10:05:03
  4671. 20 445 2006-02-15 10:05:03
  4672. 20 478 2006-02-15 10:05:03
  4673. 20 492 2006-02-15 10:05:03
  4674. 20 499 2006-02-15 10:05:03
  4675. 20 527 2006-02-15 10:05:03
  4676. 20 531 2006-02-15 10:05:03
  4677. 20 538 2006-02-15 10:05:03
  4678. 20 589 2006-02-15 10:05:03
  4679. 20 643 2006-02-15 10:05:03
  4680. 20 652 2006-02-15 10:05:03
  4681. 20 663 2006-02-15 10:05:03
  4682. 20 714 2006-02-15 10:05:03
  4683. 20 717 2006-02-15 10:05:03
  4684. 20 757 2006-02-15 10:05:03
  4685. 20 784 2006-02-15 10:05:03
  4686. 20 863 2006-02-15 10:05:03
  4687. 20 962 2006-02-15 10:05:03
  4688. 20 977 2006-02-15 10:05:03
  4689. 21 6 2006-02-15 10:05:03
  4690. 21 87 2006-02-15 10:05:03
  4691. 21 88 2006-02-15 10:05:03
  4692. 21 142 2006-02-15 10:05:03
  4693. 21 159 2006-02-15 10:05:03
  4694. 21 179 2006-02-15 10:05:03
  4695. 21 253 2006-02-15 10:05:03
  4696. 21 281 2006-02-15 10:05:03
  4697. 21 321 2006-02-15 10:05:03
  4698. 21 398 2006-02-15 10:05:03
  4699. 21 426 2006-02-15 10:05:03
  4700. 21 429 2006-02-15 10:05:03
  4701. 21 497 2006-02-15 10:05:03
  4702. 21 507 2006-02-15 10:05:03
  4703. 21 530 2006-02-15 10:05:03
  4704. 21 680 2006-02-15 10:05:03
  4705. 21 686 2006-02-15 10:05:03
  4706. 21 700 2006-02-15 10:05:03
  4707. 21 702 2006-02-15 10:05:03
  4708. 21 733 2006-02-15 10:05:03
  4709. 21 734 2006-02-15 10:05:03
  4710. 21 798 2006-02-15 10:05:03
  4711. 21 804 2006-02-15 10:05:03
  4712. 21 887 2006-02-15 10:05:03
  4713. 21 893 2006-02-15 10:05:03
  4714. 21 920 2006-02-15 10:05:03
  4715. 21 983 2006-02-15 10:05:03
  4716. 22 9 2006-02-15 10:05:03
  4717. 22 23 2006-02-15 10:05:03
  4718. 22 56 2006-02-15 10:05:03
  4719. 22 89 2006-02-15 10:05:03
  4720. 22 111 2006-02-15 10:05:03
  4721. 22 146 2006-02-15 10:05:03
  4722. 22 291 2006-02-15 10:05:03
  4723. 22 294 2006-02-15 10:05:03
  4724. 22 349 2006-02-15 10:05:03
  4725. 22 369 2006-02-15 10:05:03
  4726. 22 418 2006-02-15 10:05:03
  4727. 22 430 2006-02-15 10:05:03
  4728. 22 483 2006-02-15 10:05:03
  4729. 22 491 2006-02-15 10:05:03
  4730. 22 495 2006-02-15 10:05:03
  4731. 22 536 2006-02-15 10:05:03
  4732. 22 600 2006-02-15 10:05:03
  4733. 22 634 2006-02-15 10:05:03
  4734. 22 648 2006-02-15 10:05:03
  4735. 22 688 2006-02-15 10:05:03
  4736. 22 731 2006-02-15 10:05:03
  4737. 22 742 2006-02-15 10:05:03
  4738. 22 775 2006-02-15 10:05:03
  4739. 22 802 2006-02-15 10:05:03
  4740. 22 912 2006-02-15 10:05:03
  4741. 22 964 2006-02-15 10:05:03
  4742. 23 6 2006-02-15 10:05:03
  4743. 23 42 2006-02-15 10:05:03
  4744. 23 78 2006-02-15 10:05:03
  4745. 23 105 2006-02-15 10:05:03
  4746. 23 116 2006-02-15 10:05:03
  4747. 23 117 2006-02-15 10:05:03
  4748. 23 125 2006-02-15 10:05:03
  4749. 23 212 2006-02-15 10:05:03
  4750. 23 226 2006-02-15 10:05:03
  4751. 23 235 2006-02-15 10:05:03
  4752. 23 254 2006-02-15 10:05:03
  4753. 23 367 2006-02-15 10:05:03
  4754. 23 370 2006-02-15 10:05:03
  4755. 23 414 2006-02-15 10:05:03
  4756. 23 419 2006-02-15 10:05:03
  4757. 23 435 2006-02-15 10:05:03
  4758. 23 449 2006-02-15 10:05:03
  4759. 23 491 2006-02-15 10:05:03
  4760. 23 536 2006-02-15 10:05:03
  4761. 23 549 2006-02-15 10:05:03
  4762. 23 636 2006-02-15 10:05:03
  4763. 23 649 2006-02-15 10:05:03
  4764. 23 673 2006-02-15 10:05:03
  4765. 23 691 2006-02-15 10:05:03
  4766. 23 766 2006-02-15 10:05:03
  4767. 23 782 2006-02-15 10:05:03
  4768. 23 804 2006-02-15 10:05:03
  4769. 23 820 2006-02-15 10:05:03
  4770. 23 826 2006-02-15 10:05:03
  4771. 23 833 2006-02-15 10:05:03
  4772. 23 842 2006-02-15 10:05:03
  4773. 23 853 2006-02-15 10:05:03
  4774. 23 855 2006-02-15 10:05:03
  4775. 23 856 2006-02-15 10:05:03
  4776. 23 935 2006-02-15 10:05:03
  4777. 23 981 2006-02-15 10:05:03
  4778. 23 997 2006-02-15 10:05:03
  4779. 24 3 2006-02-15 10:05:03
  4780. 24 83 2006-02-15 10:05:03
  4781. 24 112 2006-02-15 10:05:03
  4782. 24 126 2006-02-15 10:05:03
  4783. 24 148 2006-02-15 10:05:03
  4784. 24 164 2006-02-15 10:05:03
  4785. 24 178 2006-02-15 10:05:03
  4786. 24 194 2006-02-15 10:05:03
  4787. 24 199 2006-02-15 10:05:03
  4788. 24 242 2006-02-15 10:05:03
  4789. 24 256 2006-02-15 10:05:03
  4790. 24 277 2006-02-15 10:05:03
  4791. 24 335 2006-02-15 10:05:03
  4792. 24 405 2006-02-15 10:05:03
  4793. 24 463 2006-02-15 10:05:03
  4794. 24 515 2006-02-15 10:05:03
  4795. 24 585 2006-02-15 10:05:03
  4796. 24 603 2006-02-15 10:05:03
  4797. 24 653 2006-02-15 10:05:03
  4798. 24 704 2006-02-15 10:05:03
  4799. 24 781 2006-02-15 10:05:03
  4800. 24 829 2006-02-15 10:05:03
  4801. 24 832 2006-02-15 10:05:03
  4802. 24 969 2006-02-15 10:05:03
  4803. 25 21 2006-02-15 10:05:03
  4804. 25 86 2006-02-15 10:05:03
  4805. 25 153 2006-02-15 10:05:03
  4806. 25 179 2006-02-15 10:05:03
  4807. 25 204 2006-02-15 10:05:03
  4808. 25 213 2006-02-15 10:05:03
  4809. 25 226 2006-02-15 10:05:03
  4810. 25 245 2006-02-15 10:05:03
  4811. 25 311 2006-02-15 10:05:03
  4812. 25 404 2006-02-15 10:05:03
  4813. 25 411 2006-02-15 10:05:03
  4814. 25 420 2006-02-15 10:05:03
  4815. 25 538 2006-02-15 10:05:03
  4816. 25 564 2006-02-15 10:05:03
  4817. 25 583 2006-02-15 10:05:03
  4818. 25 606 2006-02-15 10:05:03
  4819. 25 688 2006-02-15 10:05:03
  4820. 25 697 2006-02-15 10:05:03
  4821. 25 755 2006-02-15 10:05:03
  4822. 25 871 2006-02-15 10:05:03
  4823. 25 914 2006-02-15 10:05:03
  4824. 26 9 2006-02-15 10:05:03
  4825. 26 21 2006-02-15 10:05:03
  4826. 26 34 2006-02-15 10:05:03
  4827. 26 90 2006-02-15 10:05:03
  4828. 26 93 2006-02-15 10:05:03
  4829. 26 103 2006-02-15 10:05:03
  4830. 26 147 2006-02-15 10:05:03
  4831. 26 186 2006-02-15 10:05:03
  4832. 26 201 2006-02-15 10:05:03
  4833. 26 225 2006-02-15 10:05:03
  4834. 26 241 2006-02-15 10:05:03
  4835. 26 327 2006-02-15 10:05:03
  4836. 26 329 2006-02-15 10:05:03
  4837. 26 340 2006-02-15 10:05:03
  4838. 26 345 2006-02-15 10:05:03
  4839. 26 390 2006-02-15 10:05:03
  4840. 26 392 2006-02-15 10:05:03
  4841. 26 529 2006-02-15 10:05:03
  4842. 26 544 2006-02-15 10:05:03
  4843. 26 564 2006-02-15 10:05:03
  4844. 26 635 2006-02-15 10:05:03
  4845. 26 644 2006-02-15 10:05:03
  4846. 26 682 2006-02-15 10:05:03
  4847. 26 688 2006-02-15 10:05:03
  4848. 26 715 2006-02-15 10:05:03
  4849. 26 732 2006-02-15 10:05:03
  4850. 26 758 2006-02-15 10:05:03
  4851. 26 764 2006-02-15 10:05:03
  4852. 26 795 2006-02-15 10:05:03
  4853. 26 821 2006-02-15 10:05:03
  4854. 26 885 2006-02-15 10:05:03
  4855. 26 904 2006-02-15 10:05:03
  4856. 26 906 2006-02-15 10:05:03
  4857. 27 19 2006-02-15 10:05:03
  4858. 27 34 2006-02-15 10:05:03
  4859. 27 85 2006-02-15 10:05:03
  4860. 27 150 2006-02-15 10:05:03
  4861. 27 172 2006-02-15 10:05:03
  4862. 27 273 2006-02-15 10:05:03
  4863. 27 334 2006-02-15 10:05:03
  4864. 27 347 2006-02-15 10:05:03
  4865. 27 359 2006-02-15 10:05:03
  4866. 27 398 2006-02-15 10:05:03
  4867. 27 415 2006-02-15 10:05:03
  4868. 27 462 2006-02-15 10:05:03
  4869. 27 477 2006-02-15 10:05:03
  4870. 27 500 2006-02-15 10:05:03
  4871. 27 503 2006-02-15 10:05:03
  4872. 27 540 2006-02-15 10:05:03
  4873. 27 586 2006-02-15 10:05:03
  4874. 27 593 2006-02-15 10:05:03
  4875. 27 637 2006-02-15 10:05:03
  4876. 27 679 2006-02-15 10:05:03
  4877. 27 682 2006-02-15 10:05:03
  4878. 27 695 2006-02-15 10:05:03
  4879. 27 771 2006-02-15 10:05:03
  4880. 27 805 2006-02-15 10:05:03
  4881. 27 830 2006-02-15 10:05:03
  4882. 27 854 2006-02-15 10:05:03
  4883. 27 873 2006-02-15 10:05:03
  4884. 27 880 2006-02-15 10:05:03
  4885. 27 889 2006-02-15 10:05:03
  4886. 27 904 2006-02-15 10:05:03
  4887. 27 967 2006-02-15 10:05:03
  4888. 27 986 2006-02-15 10:05:03
  4889. 27 996 2006-02-15 10:05:03
  4890. 28 14 2006-02-15 10:05:03
  4891. 28 43 2006-02-15 10:05:03
  4892. 28 58 2006-02-15 10:05:03
  4893. 28 74 2006-02-15 10:05:03
  4894. 28 96 2006-02-15 10:05:03
  4895. 28 107 2006-02-15 10:05:03
  4896. 28 259 2006-02-15 10:05:03
  4897. 28 263 2006-02-15 10:05:03
  4898. 28 287 2006-02-15 10:05:03
  4899. 28 358 2006-02-15 10:05:03
  4900. 28 502 2006-02-15 10:05:03
  4901. 28 508 2006-02-15 10:05:03
  4902. 28 532 2006-02-15 10:05:03
  4903. 28 551 2006-02-15 10:05:03
  4904. 28 574 2006-02-15 10:05:03
  4905. 28 597 2006-02-15 10:05:03
  4906. 28 619 2006-02-15 10:05:03
  4907. 28 625 2006-02-15 10:05:03
  4908. 28 652 2006-02-15 10:05:03
  4909. 28 679 2006-02-15 10:05:03
  4910. 28 743 2006-02-15 10:05:03
  4911. 28 790 2006-02-15 10:05:03
  4912. 28 793 2006-02-15 10:05:03
  4913. 28 816 2006-02-15 10:05:03
  4914. 28 827 2006-02-15 10:05:03
  4915. 28 835 2006-02-15 10:05:03
  4916. 28 879 2006-02-15 10:05:03
  4917. 28 908 2006-02-15 10:05:03
  4918. 28 953 2006-02-15 10:05:03
  4919. 28 973 2006-02-15 10:05:03
  4920. 28 994 2006-02-15 10:05:03
  4921. 29 10 2006-02-15 10:05:03
  4922. 29 79 2006-02-15 10:05:03
  4923. 29 105 2006-02-15 10:05:03
  4924. 29 110 2006-02-15 10:05:03
  4925. 29 131 2006-02-15 10:05:03
  4926. 29 133 2006-02-15 10:05:03
  4927. 29 172 2006-02-15 10:05:03
  4928. 29 226 2006-02-15 10:05:03
  4929. 29 273 2006-02-15 10:05:03
  4930. 29 282 2006-02-15 10:05:03
  4931. 29 296 2006-02-15 10:05:03
  4932. 29 311 2006-02-15 10:05:03
  4933. 29 335 2006-02-15 10:05:03
  4934. 29 342 2006-02-15 10:05:03
  4935. 29 436 2006-02-15 10:05:03
  4936. 29 444 2006-02-15 10:05:03
  4937. 29 449 2006-02-15 10:05:03
  4938. 29 462 2006-02-15 10:05:03
  4939. 29 482 2006-02-15 10:05:03
  4940. 29 488 2006-02-15 10:05:03
  4941. 29 519 2006-02-15 10:05:03
  4942. 29 547 2006-02-15 10:05:03
  4943. 29 590 2006-02-15 10:05:03
  4944. 29 646 2006-02-15 10:05:03
  4945. 29 723 2006-02-15 10:05:03
  4946. 29 812 2006-02-15 10:05:03
  4947. 29 862 2006-02-15 10:05:03
  4948. 29 928 2006-02-15 10:05:03
  4949. 29 944 2006-02-15 10:05:03
  4950. 30 1 2006-02-15 10:05:03
  4951. 30 53 2006-02-15 10:05:03
  4952. 30 64 2006-02-15 10:05:03
  4953. 30 69 2006-02-15 10:05:03
  4954. 30 77 2006-02-15 10:05:03
  4955. 30 87 2006-02-15 10:05:03
  4956. 30 260 2006-02-15 10:05:03
  4957. 30 262 2006-02-15 10:05:03
  4958. 30 286 2006-02-15 10:05:03
  4959. 30 292 2006-02-15 10:05:03
  4960. 30 301 2006-02-15 10:05:03
  4961. 30 318 2006-02-15 10:05:03
  4962. 30 321 2006-02-15 10:05:03
  4963. 30 357 2006-02-15 10:05:03
  4964. 30 565 2006-02-15 10:05:03
  4965. 30 732 2006-02-15 10:05:03
  4966. 30 797 2006-02-15 10:05:03
  4967. 30 838 2006-02-15 10:05:03
  4968. 30 945 2006-02-15 10:05:03
  4969. 31 88 2006-02-15 10:05:03
  4970. 31 146 2006-02-15 10:05:03
  4971. 31 163 2006-02-15 10:05:03
  4972. 31 164 2006-02-15 10:05:03
  4973. 31 188 2006-02-15 10:05:03
  4974. 31 299 2006-02-15 10:05:03
  4975. 31 308 2006-02-15 10:05:03
  4976. 31 368 2006-02-15 10:05:03
  4977. 31 380 2006-02-15 10:05:03
  4978. 31 431 2006-02-15 10:05:03
  4979. 31 585 2006-02-15 10:05:03
  4980. 31 637 2006-02-15 10:05:03
  4981. 31 700 2006-02-15 10:05:03
  4982. 31 739 2006-02-15 10:05:03
  4983. 31 793 2006-02-15 10:05:03
  4984. 31 802 2006-02-15 10:05:03
  4985. 31 880 2006-02-15 10:05:03
  4986. 31 978 2006-02-15 10:05:03
  4987. 32 65 2006-02-15 10:05:03
  4988. 32 84 2006-02-15 10:05:03
  4989. 32 103 2006-02-15 10:05:03
  4990. 32 112 2006-02-15 10:05:03
  4991. 32 136 2006-02-15 10:05:03
  4992. 32 197 2006-02-15 10:05:03
  4993. 32 199 2006-02-15 10:05:03
  4994. 32 219 2006-02-15 10:05:03
  4995. 32 309 2006-02-15 10:05:03
  4996. 32 312 2006-02-15 10:05:03
  4997. 32 401 2006-02-15 10:05:03
  4998. 32 427 2006-02-15 10:05:03
  4999. 32 431 2006-02-15 10:05:03
  5000. 32 523 2006-02-15 10:05:03
  5001. 32 567 2006-02-15 10:05:03
  5002. 32 585 2006-02-15 10:05:03
  5003. 32 606 2006-02-15 10:05:03
  5004. 32 651 2006-02-15 10:05:03
  5005. 32 667 2006-02-15 10:05:03
  5006. 32 669 2006-02-15 10:05:03
  5007. 32 815 2006-02-15 10:05:03
  5008. 32 928 2006-02-15 10:05:03
  5009. 32 980 2006-02-15 10:05:03
  5010. 33 56 2006-02-15 10:05:03
  5011. 33 112 2006-02-15 10:05:03
  5012. 33 135 2006-02-15 10:05:03
  5013. 33 154 2006-02-15 10:05:03
  5014. 33 214 2006-02-15 10:05:03
  5015. 33 252 2006-02-15 10:05:03
  5016. 33 305 2006-02-15 10:05:03
  5017. 33 306 2006-02-15 10:05:03
  5018. 33 473 2006-02-15 10:05:03
  5019. 33 489 2006-02-15 10:05:03
  5020. 33 574 2006-02-15 10:05:03
  5021. 33 618 2006-02-15 10:05:03
  5022. 33 667 2006-02-15 10:05:03
  5023. 33 694 2006-02-15 10:05:03
  5024. 33 712 2006-02-15 10:05:03
  5025. 33 735 2006-02-15 10:05:03
  5026. 33 737 2006-02-15 10:05:03
  5027. 33 754 2006-02-15 10:05:03
  5028. 33 775 2006-02-15 10:05:03
  5029. 33 878 2006-02-15 10:05:03
  5030. 33 881 2006-02-15 10:05:03
  5031. 33 965 2006-02-15 10:05:03
  5032. 33 972 2006-02-15 10:05:03
  5033. 33 993 2006-02-15 10:05:03
  5034. 34 43 2006-02-15 10:05:03
  5035. 34 90 2006-02-15 10:05:03
  5036. 34 119 2006-02-15 10:05:03
  5037. 34 125 2006-02-15 10:05:03
  5038. 34 172 2006-02-15 10:05:03
  5039. 34 182 2006-02-15 10:05:03
  5040. 34 244 2006-02-15 10:05:03
  5041. 34 336 2006-02-15 10:05:03
  5042. 34 389 2006-02-15 10:05:03
  5043. 34 393 2006-02-15 10:05:03
  5044. 34 438 2006-02-15 10:05:03
  5045. 34 493 2006-02-15 10:05:03
  5046. 34 502 2006-02-15 10:05:03
  5047. 34 525 2006-02-15 10:05:03
  5048. 34 668 2006-02-15 10:05:03
  5049. 34 720 2006-02-15 10:05:03
  5050. 34 779 2006-02-15 10:05:03
  5051. 34 788 2006-02-15 10:05:03
  5052. 34 794 2006-02-15 10:05:03
  5053. 34 836 2006-02-15 10:05:03
  5054. 34 846 2006-02-15 10:05:03
  5055. 34 853 2006-02-15 10:05:03
  5056. 34 929 2006-02-15 10:05:03
  5057. 34 950 2006-02-15 10:05:03
  5058. 34 971 2006-02-15 10:05:03
  5059. 35 10 2006-02-15 10:05:03
  5060. 35 35 2006-02-15 10:05:03
  5061. 35 52 2006-02-15 10:05:03
  5062. 35 201 2006-02-15 10:05:03
  5063. 35 256 2006-02-15 10:05:03
  5064. 35 389 2006-02-15 10:05:03
  5065. 35 589 2006-02-15 10:05:03
  5066. 35 612 2006-02-15 10:05:03
  5067. 35 615 2006-02-15 10:05:03
  5068. 35 707 2006-02-15 10:05:03
  5069. 35 732 2006-02-15 10:05:03
  5070. 35 738 2006-02-15 10:05:03
  5071. 35 748 2006-02-15 10:05:03
  5072. 35 817 2006-02-15 10:05:03
  5073. 35 914 2006-02-15 10:05:03
  5074. 36 15 2006-02-15 10:05:03
  5075. 36 81 2006-02-15 10:05:03
  5076. 36 171 2006-02-15 10:05:03
  5077. 36 231 2006-02-15 10:05:03
  5078. 36 245 2006-02-15 10:05:03
  5079. 36 283 2006-02-15 10:05:03
  5080. 36 380 2006-02-15 10:05:03
  5081. 36 381 2006-02-15 10:05:03
  5082. 36 387 2006-02-15 10:05:03
  5083. 36 390 2006-02-15 10:05:03
  5084. 36 410 2006-02-15 10:05:03
  5085. 36 426 2006-02-15 10:05:03
  5086. 36 427 2006-02-15 10:05:03
  5087. 36 453 2006-02-15 10:05:03
  5088. 36 466 2006-02-15 10:05:03
  5089. 36 484 2006-02-15 10:05:03
  5090. 36 493 2006-02-15 10:05:03
  5091. 36 499 2006-02-15 10:05:03
  5092. 36 569 2006-02-15 10:05:03
  5093. 36 590 2006-02-15 10:05:03
  5094. 36 600 2006-02-15 10:05:03
  5095. 36 714 2006-02-15 10:05:03
  5096. 36 715 2006-02-15 10:05:03
  5097. 36 716 2006-02-15 10:05:03
  5098. 36 731 2006-02-15 10:05:03
  5099. 36 875 2006-02-15 10:05:03
  5100. 36 915 2006-02-15 10:05:03
  5101. 36 931 2006-02-15 10:05:03
  5102. 36 956 2006-02-15 10:05:03
  5103. 37 10 2006-02-15 10:05:03
  5104. 37 12 2006-02-15 10:05:03
  5105. 37 19 2006-02-15 10:05:03
  5106. 37 118 2006-02-15 10:05:03
  5107. 37 119 2006-02-15 10:05:03
  5108. 37 122 2006-02-15 10:05:03
  5109. 37 146 2006-02-15 10:05:03
  5110. 37 204 2006-02-15 10:05:03
  5111. 37 253 2006-02-15 10:05:03
  5112. 37 260 2006-02-15 10:05:03
  5113. 37 277 2006-02-15 10:05:03
  5114. 37 317 2006-02-15 10:05:03
  5115. 37 467 2006-02-15 10:05:03
  5116. 37 477 2006-02-15 10:05:03
  5117. 37 485 2006-02-15 10:05:03
  5118. 37 508 2006-02-15 10:05:03
  5119. 37 529 2006-02-15 10:05:03
  5120. 37 553 2006-02-15 10:05:03
  5121. 37 555 2006-02-15 10:05:03
  5122. 37 572 2006-02-15 10:05:03
  5123. 37 588 2006-02-15 10:05:03
  5124. 37 662 2006-02-15 10:05:03
  5125. 37 663 2006-02-15 10:05:03
  5126. 37 694 2006-02-15 10:05:03
  5127. 37 697 2006-02-15 10:05:03
  5128. 37 785 2006-02-15 10:05:03
  5129. 37 839 2006-02-15 10:05:03
  5130. 37 840 2006-02-15 10:05:03
  5131. 37 853 2006-02-15 10:05:03
  5132. 37 900 2006-02-15 10:05:03
  5133. 37 925 2006-02-15 10:05:03
  5134. 37 963 2006-02-15 10:05:03
  5135. 37 966 2006-02-15 10:05:03
  5136. 37 989 2006-02-15 10:05:03
  5137. 37 997 2006-02-15 10:05:03
  5138. 38 24 2006-02-15 10:05:03
  5139. 38 111 2006-02-15 10:05:03
  5140. 38 160 2006-02-15 10:05:03
  5141. 38 176 2006-02-15 10:05:03
  5142. 38 223 2006-02-15 10:05:03
  5143. 38 241 2006-02-15 10:05:03
  5144. 38 274 2006-02-15 10:05:03
  5145. 38 335 2006-02-15 10:05:03
  5146. 38 338 2006-02-15 10:05:03
  5147. 38 353 2006-02-15 10:05:03
  5148. 38 448 2006-02-15 10:05:03
  5149. 38 450 2006-02-15 10:05:03
  5150. 38 458 2006-02-15 10:05:03
  5151. 38 501 2006-02-15 10:05:03
  5152. 38 516 2006-02-15 10:05:03
  5153. 38 547 2006-02-15 10:05:03
  5154. 38 583 2006-02-15 10:05:03
  5155. 38 618 2006-02-15 10:05:03
  5156. 38 619 2006-02-15 10:05:03
  5157. 38 705 2006-02-15 10:05:03
  5158. 38 793 2006-02-15 10:05:03
  5159. 38 827 2006-02-15 10:05:03
  5160. 38 839 2006-02-15 10:05:03
  5161. 38 853 2006-02-15 10:05:03
  5162. 38 876 2006-02-15 10:05:03
  5163. 39 71 2006-02-15 10:05:03
  5164. 39 73 2006-02-15 10:05:03
  5165. 39 168 2006-02-15 10:05:03
  5166. 39 203 2006-02-15 10:05:03
  5167. 39 222 2006-02-15 10:05:03
  5168. 39 290 2006-02-15 10:05:03
  5169. 39 293 2006-02-15 10:05:03
  5170. 39 320 2006-02-15 10:05:03
  5171. 39 415 2006-02-15 10:05:03
  5172. 39 425 2006-02-15 10:05:03
  5173. 39 431 2006-02-15 10:05:03
  5174. 39 456 2006-02-15 10:05:03
  5175. 39 476 2006-02-15 10:05:03
  5176. 39 559 2006-02-15 10:05:03
  5177. 39 587 2006-02-15 10:05:03
  5178. 39 598 2006-02-15 10:05:03
  5179. 39 606 2006-02-15 10:05:03
  5180. 39 648 2006-02-15 10:05:03
  5181. 39 683 2006-02-15 10:05:03
  5182. 39 689 2006-02-15 10:05:03
  5183. 39 696 2006-02-15 10:05:03
  5184. 39 700 2006-02-15 10:05:03
  5185. 39 703 2006-02-15 10:05:03
  5186. 39 736 2006-02-15 10:05:03
  5187. 39 772 2006-02-15 10:05:03
  5188. 39 815 2006-02-15 10:05:03
  5189. 39 831 2006-02-15 10:05:03
  5190. 39 920 2006-02-15 10:05:03
  5191. 40 1 2006-02-15 10:05:03
  5192. 40 11 2006-02-15 10:05:03
  5193. 40 34 2006-02-15 10:05:03
  5194. 40 107 2006-02-15 10:05:03
  5195. 40 128 2006-02-15 10:05:03
  5196. 40 163 2006-02-15 10:05:03
  5197. 40 177 2006-02-15 10:05:03
  5198. 40 223 2006-02-15 10:05:03
  5199. 40 233 2006-02-15 10:05:03
  5200. 40 326 2006-02-15 10:05:03
  5201. 40 374 2006-02-15 10:05:03
  5202. 40 394 2006-02-15 10:05:03
  5203. 40 396 2006-02-15 10:05:03
  5204. 40 463 2006-02-15 10:05:03
  5205. 40 466 2006-02-15 10:05:03
  5206. 40 494 2006-02-15 10:05:03
  5207. 40 521 2006-02-15 10:05:03
  5208. 40 723 2006-02-15 10:05:03
  5209. 40 737 2006-02-15 10:05:03
  5210. 40 744 2006-02-15 10:05:03
  5211. 40 747 2006-02-15 10:05:03
  5212. 40 754 2006-02-15 10:05:03
  5213. 40 799 2006-02-15 10:05:03
  5214. 40 835 2006-02-15 10:05:03
  5215. 40 868 2006-02-15 10:05:03
  5216. 40 869 2006-02-15 10:05:03
  5217. 40 887 2006-02-15 10:05:03
  5218. 40 933 2006-02-15 10:05:03
  5219. 40 938 2006-02-15 10:05:03
  5220. 41 4 2006-02-15 10:05:03
  5221. 41 60 2006-02-15 10:05:03
  5222. 41 69 2006-02-15 10:05:03
  5223. 41 86 2006-02-15 10:05:03
  5224. 41 100 2006-02-15 10:05:03
  5225. 41 150 2006-02-15 10:05:03
  5226. 41 159 2006-02-15 10:05:03
  5227. 41 194 2006-02-15 10:05:03
  5228. 41 203 2006-02-15 10:05:03
  5229. 41 212 2006-02-15 10:05:03
  5230. 41 230 2006-02-15 10:05:03
  5231. 41 249 2006-02-15 10:05:03
  5232. 41 252 2006-02-15 10:05:03
  5233. 41 305 2006-02-15 10:05:03
  5234. 41 336 2006-02-15 10:05:03
  5235. 41 383 2006-02-15 10:05:03
  5236. 41 544 2006-02-15 10:05:03
  5237. 41 596 2006-02-15 10:05:03
  5238. 41 657 2006-02-15 10:05:03
  5239. 41 674 2006-02-15 10:05:03
  5240. 41 678 2006-02-15 10:05:03
  5241. 41 721 2006-02-15 10:05:03
  5242. 41 724 2006-02-15 10:05:03
  5243. 41 779 2006-02-15 10:05:03
  5244. 41 784 2006-02-15 10:05:03
  5245. 41 799 2006-02-15 10:05:03
  5246. 41 894 2006-02-15 10:05:03
  5247. 41 912 2006-02-15 10:05:03
  5248. 41 942 2006-02-15 10:05:03
  5249. 42 24 2006-02-15 10:05:03
  5250. 42 139 2006-02-15 10:05:03
  5251. 42 309 2006-02-15 10:05:03
  5252. 42 320 2006-02-15 10:05:03
  5253. 42 333 2006-02-15 10:05:03
  5254. 42 500 2006-02-15 10:05:03
  5255. 42 502 2006-02-15 10:05:03
  5256. 42 505 2006-02-15 10:05:03
  5257. 42 527 2006-02-15 10:05:03
  5258. 42 535 2006-02-15 10:05:03
  5259. 42 546 2006-02-15 10:05:03
  5260. 42 568 2006-02-15 10:05:03
  5261. 42 648 2006-02-15 10:05:03
  5262. 42 665 2006-02-15 10:05:03
  5263. 42 673 2006-02-15 10:05:03
  5264. 42 687 2006-02-15 10:05:03
  5265. 42 713 2006-02-15 10:05:03
  5266. 42 738 2006-02-15 10:05:03
  5267. 42 798 2006-02-15 10:05:03
  5268. 42 861 2006-02-15 10:05:03
  5269. 42 865 2006-02-15 10:05:03
  5270. 42 867 2006-02-15 10:05:03
  5271. 42 876 2006-02-15 10:05:03
  5272. 42 890 2006-02-15 10:05:03
  5273. 42 907 2006-02-15 10:05:03
  5274. 42 922 2006-02-15 10:05:03
  5275. 42 932 2006-02-15 10:05:03
  5276. 43 19 2006-02-15 10:05:03
  5277. 43 42 2006-02-15 10:05:03
  5278. 43 56 2006-02-15 10:05:03
  5279. 43 89 2006-02-15 10:05:03
  5280. 43 105 2006-02-15 10:05:03
  5281. 43 147 2006-02-15 10:05:03
  5282. 43 161 2006-02-15 10:05:03
  5283. 43 180 2006-02-15 10:05:03
  5284. 43 239 2006-02-15 10:05:03
  5285. 43 276 2006-02-15 10:05:03
  5286. 43 330 2006-02-15 10:05:03
  5287. 43 344 2006-02-15 10:05:03
  5288. 43 359 2006-02-15 10:05:03
  5289. 43 377 2006-02-15 10:05:03
  5290. 43 410 2006-02-15 10:05:03
  5291. 43 462 2006-02-15 10:05:03
  5292. 43 533 2006-02-15 10:05:03
  5293. 43 598 2006-02-15 10:05:03
  5294. 43 605 2006-02-15 10:05:03
  5295. 43 608 2006-02-15 10:05:03
  5296. 43 621 2006-02-15 10:05:03
  5297. 43 753 2006-02-15 10:05:03
  5298. 43 827 2006-02-15 10:05:03
  5299. 43 833 2006-02-15 10:05:03
  5300. 43 917 2006-02-15 10:05:03
  5301. 43 958 2006-02-15 10:05:03
  5302. 44 58 2006-02-15 10:05:03
  5303. 44 84 2006-02-15 10:05:03
  5304. 44 88 2006-02-15 10:05:03
  5305. 44 94 2006-02-15 10:05:03
  5306. 44 109 2006-02-15 10:05:03
  5307. 44 176 2006-02-15 10:05:03
  5308. 44 242 2006-02-15 10:05:03
  5309. 44 273 2006-02-15 10:05:03
  5310. 44 322 2006-02-15 10:05:03
  5311. 44 420 2006-02-15 10:05:03
  5312. 44 434 2006-02-15 10:05:03
  5313. 44 490 2006-02-15 10:05:03
  5314. 44 591 2006-02-15 10:05:03
  5315. 44 598 2006-02-15 10:05:03
  5316. 44 604 2006-02-15 10:05:03
  5317. 44 699 2006-02-15 10:05:03
  5318. 44 751 2006-02-15 10:05:03
  5319. 44 784 2006-02-15 10:05:03
  5320. 44 825 2006-02-15 10:05:03
  5321. 44 854 2006-02-15 10:05:03
  5322. 44 875 2006-02-15 10:05:03
  5323. 44 878 2006-02-15 10:05:03
  5324. 44 883 2006-02-15 10:05:03
  5325. 44 896 2006-02-15 10:05:03
  5326. 44 902 2006-02-15 10:05:03
  5327. 44 937 2006-02-15 10:05:03
  5328. 44 944 2006-02-15 10:05:03
  5329. 44 952 2006-02-15 10:05:03
  5330. 44 982 2006-02-15 10:05:03
  5331. 44 998 2006-02-15 10:05:03
  5332. 45 18 2006-02-15 10:05:03
  5333. 45 65 2006-02-15 10:05:03
  5334. 45 66 2006-02-15 10:05:03
  5335. 45 115 2006-02-15 10:05:03
  5336. 45 117 2006-02-15 10:05:03
  5337. 45 164 2006-02-15 10:05:03
  5338. 45 187 2006-02-15 10:05:03
  5339. 45 198 2006-02-15 10:05:03
  5340. 45 219 2006-02-15 10:05:03
  5341. 45 330 2006-02-15 10:05:03
  5342. 45 407 2006-02-15 10:05:03
  5343. 45 416 2006-02-15 10:05:03
  5344. 45 463 2006-02-15 10:05:03
  5345. 45 467 2006-02-15 10:05:03
  5346. 45 484 2006-02-15 10:05:03
  5347. 45 502 2006-02-15 10:05:03
  5348. 45 503 2006-02-15 10:05:03
  5349. 45 508 2006-02-15 10:05:03
  5350. 45 537 2006-02-15 10:05:03
  5351. 45 680 2006-02-15 10:05:03
  5352. 45 714 2006-02-15 10:05:03
  5353. 45 767 2006-02-15 10:05:03
  5354. 45 778 2006-02-15 10:05:03
  5355. 45 797 2006-02-15 10:05:03
  5356. 45 810 2006-02-15 10:05:03
  5357. 45 895 2006-02-15 10:05:03
  5358. 45 900 2006-02-15 10:05:03
  5359. 45 901 2006-02-15 10:05:03
  5360. 45 920 2006-02-15 10:05:03
  5361. 45 925 2006-02-15 10:05:03
  5362. 45 975 2006-02-15 10:05:03
  5363. 45 978 2006-02-15 10:05:03
  5364. 46 38 2006-02-15 10:05:03
  5365. 46 51 2006-02-15 10:05:03
  5366. 46 174 2006-02-15 10:05:03
  5367. 46 254 2006-02-15 10:05:03
  5368. 46 296 2006-02-15 10:05:03
  5369. 46 319 2006-02-15 10:05:03
  5370. 46 407 2006-02-15 10:05:03
  5371. 46 448 2006-02-15 10:05:03
  5372. 46 456 2006-02-15 10:05:03
  5373. 46 463 2006-02-15 10:05:03
  5374. 46 478 2006-02-15 10:05:03
  5375. 46 538 2006-02-15 10:05:03
  5376. 46 540 2006-02-15 10:05:03
  5377. 46 567 2006-02-15 10:05:03
  5378. 46 731 2006-02-15 10:05:03
  5379. 46 766 2006-02-15 10:05:03
  5380. 46 768 2006-02-15 10:05:03
  5381. 46 820 2006-02-15 10:05:03
  5382. 46 829 2006-02-15 10:05:03
  5383. 46 830 2006-02-15 10:05:03
  5384. 46 836 2006-02-15 10:05:03
  5385. 46 889 2006-02-15 10:05:03
  5386. 46 980 2006-02-15 10:05:03
  5387. 46 991 2006-02-15 10:05:03
  5388. 47 25 2006-02-15 10:05:03
  5389. 47 36 2006-02-15 10:05:03
  5390. 47 53 2006-02-15 10:05:03
  5391. 47 67 2006-02-15 10:05:03
  5392. 47 172 2006-02-15 10:05:03
  5393. 47 233 2006-02-15 10:05:03
  5394. 47 273 2006-02-15 10:05:03
  5395. 47 351 2006-02-15 10:05:03
  5396. 47 385 2006-02-15 10:05:03
  5397. 47 484 2006-02-15 10:05:03
  5398. 47 508 2006-02-15 10:05:03
  5399. 47 576 2006-02-15 10:05:03
  5400. 47 670 2006-02-15 10:05:03
  5401. 47 734 2006-02-15 10:05:03
  5402. 47 737 2006-02-15 10:05:03
  5403. 47 770 2006-02-15 10:05:03
  5404. 47 777 2006-02-15 10:05:03
  5405. 47 787 2006-02-15 10:05:03
  5406. 47 790 2006-02-15 10:05:03
  5407. 47 913 2006-02-15 10:05:03
  5408. 47 923 2006-02-15 10:05:03
  5409. 47 924 2006-02-15 10:05:03
  5410. 47 944 2006-02-15 10:05:03
  5411. 47 973 2006-02-15 10:05:03
  5412. 48 99 2006-02-15 10:05:03
  5413. 48 101 2006-02-15 10:05:03
  5414. 48 134 2006-02-15 10:05:03
  5415. 48 150 2006-02-15 10:05:03
  5416. 48 164 2006-02-15 10:05:03
  5417. 48 211 2006-02-15 10:05:03
  5418. 48 245 2006-02-15 10:05:03
  5419. 48 267 2006-02-15 10:05:03
  5420. 48 287 2006-02-15 10:05:03
  5421. 48 295 2006-02-15 10:05:03
  5422. 48 312 2006-02-15 10:05:03
  5423. 48 315 2006-02-15 10:05:03
  5424. 48 345 2006-02-15 10:05:03
  5425. 48 349 2006-02-15 10:05:03
  5426. 48 428 2006-02-15 10:05:03
  5427. 48 506 2006-02-15 10:05:03
  5428. 48 545 2006-02-15 10:05:03
  5429. 48 559 2006-02-15 10:05:03
  5430. 48 570 2006-02-15 10:05:03
  5431. 48 599 2006-02-15 10:05:03
  5432. 48 645 2006-02-15 10:05:03
  5433. 48 705 2006-02-15 10:05:03
  5434. 48 757 2006-02-15 10:05:03
  5435. 48 792 2006-02-15 10:05:03
  5436. 48 922 2006-02-15 10:05:03
  5437. 48 926 2006-02-15 10:05:03
  5438. 49 31 2006-02-15 10:05:03
  5439. 49 151 2006-02-15 10:05:03
  5440. 49 195 2006-02-15 10:05:03
  5441. 49 207 2006-02-15 10:05:03
  5442. 49 250 2006-02-15 10:05:03
  5443. 49 282 2006-02-15 10:05:03
  5444. 49 348 2006-02-15 10:05:03
  5445. 49 391 2006-02-15 10:05:03
  5446. 49 400 2006-02-15 10:05:03
  5447. 49 407 2006-02-15 10:05:03
  5448. 49 423 2006-02-15 10:05:03
  5449. 49 433 2006-02-15 10:05:03
  5450. 49 469 2006-02-15 10:05:03
  5451. 49 506 2006-02-15 10:05:03
  5452. 49 542 2006-02-15 10:05:03
  5453. 49 558 2006-02-15 10:05:03
  5454. 49 579 2006-02-15 10:05:03
  5455. 49 595 2006-02-15 10:05:03
  5456. 49 662 2006-02-15 10:05:03
  5457. 49 709 2006-02-15 10:05:03
  5458. 49 716 2006-02-15 10:05:03
  5459. 49 725 2006-02-15 10:05:03
  5460. 49 729 2006-02-15 10:05:03
  5461. 49 811 2006-02-15 10:05:03
  5462. 49 927 2006-02-15 10:05:03
  5463. 49 977 2006-02-15 10:05:03
  5464. 49 980 2006-02-15 10:05:03
  5465. 50 111 2006-02-15 10:05:03
  5466. 50 178 2006-02-15 10:05:03
  5467. 50 243 2006-02-15 10:05:03
  5468. 50 248 2006-02-15 10:05:03
  5469. 50 274 2006-02-15 10:05:03
  5470. 50 288 2006-02-15 10:05:03
  5471. 50 303 2006-02-15 10:05:03
  5472. 50 306 2006-02-15 10:05:03
  5473. 50 327 2006-02-15 10:05:03
  5474. 50 372 2006-02-15 10:05:03
  5475. 50 401 2006-02-15 10:05:03
  5476. 50 417 2006-02-15 10:05:03
  5477. 50 420 2006-02-15 10:05:03
  5478. 50 437 2006-02-15 10:05:03
  5479. 50 476 2006-02-15 10:05:03
  5480. 50 504 2006-02-15 10:05:03
  5481. 50 520 2006-02-15 10:05:03
  5482. 50 552 2006-02-15 10:05:03
  5483. 50 591 2006-02-15 10:05:03
  5484. 50 621 2006-02-15 10:05:03
  5485. 50 632 2006-02-15 10:05:03
  5486. 50 645 2006-02-15 10:05:03
  5487. 50 672 2006-02-15 10:05:03
  5488. 50 717 2006-02-15 10:05:03
  5489. 50 732 2006-02-15 10:05:03
  5490. 50 795 2006-02-15 10:05:03
  5491. 50 829 2006-02-15 10:05:03
  5492. 50 840 2006-02-15 10:05:03
  5493. 50 897 2006-02-15 10:05:03
  5494. 50 918 2006-02-15 10:05:03
  5495. 50 924 2006-02-15 10:05:03
  5496. 50 957 2006-02-15 10:05:03
  5497. 51 5 2006-02-15 10:05:03
  5498. 51 63 2006-02-15 10:05:03
  5499. 51 103 2006-02-15 10:05:03
  5500. 51 112 2006-02-15 10:05:03
  5501. 51 121 2006-02-15 10:05:03
  5502. 51 153 2006-02-15 10:05:03
  5503. 51 395 2006-02-15 10:05:03
  5504. 51 408 2006-02-15 10:05:03
  5505. 51 420 2006-02-15 10:05:03
  5506. 51 461 2006-02-15 10:05:03
  5507. 51 490 2006-02-15 10:05:03
  5508. 51 525 2006-02-15 10:05:03
  5509. 51 627 2006-02-15 10:05:03
  5510. 51 678 2006-02-15 10:05:03
  5511. 51 733 2006-02-15 10:05:03
  5512. 51 734 2006-02-15 10:05:03
  5513. 51 737 2006-02-15 10:05:03
  5514. 51 750 2006-02-15 10:05:03
  5515. 51 847 2006-02-15 10:05:03
  5516. 51 891 2006-02-15 10:05:03
  5517. 51 895 2006-02-15 10:05:03
  5518. 51 940 2006-02-15 10:05:03
  5519. 51 974 2006-02-15 10:05:03
  5520. 51 990 2006-02-15 10:05:03
  5521. 51 993 2006-02-15 10:05:03
  5522. 52 20 2006-02-15 10:05:03
  5523. 52 92 2006-02-15 10:05:03
  5524. 52 96 2006-02-15 10:05:03
  5525. 52 108 2006-02-15 10:05:03
  5526. 52 203 2006-02-15 10:05:03
  5527. 52 249 2006-02-15 10:05:03
  5528. 52 341 2006-02-15 10:05:03
  5529. 52 376 2006-02-15 10:05:03
  5530. 52 388 2006-02-15 10:05:03
  5531. 52 407 2006-02-15 10:05:03
  5532. 52 424 2006-02-15 10:05:03
  5533. 52 474 2006-02-15 10:05:03
  5534. 52 515 2006-02-15 10:05:03
  5535. 52 517 2006-02-15 10:05:03
  5536. 52 584 2006-02-15 10:05:03
  5537. 52 596 2006-02-15 10:05:03
  5538. 52 664 2006-02-15 10:05:03
  5539. 52 675 2006-02-15 10:05:03
  5540. 52 689 2006-02-15 10:05:03
  5541. 52 714 2006-02-15 10:05:03
  5542. 52 812 2006-02-15 10:05:03
  5543. 52 878 2006-02-15 10:05:03
  5544. 52 879 2006-02-15 10:05:03
  5545. 52 915 2006-02-15 10:05:03
  5546. 52 951 2006-02-15 10:05:03
  5547. 52 999 2006-02-15 10:05:03
  5548. 53 1 2006-02-15 10:05:03
  5549. 53 9 2006-02-15 10:05:03
  5550. 53 51 2006-02-15 10:05:03
  5551. 53 58 2006-02-15 10:05:03
  5552. 53 109 2006-02-15 10:05:03
  5553. 53 122 2006-02-15 10:05:03
  5554. 53 126 2006-02-15 10:05:03
  5555. 53 181 2006-02-15 10:05:03
  5556. 53 256 2006-02-15 10:05:03
  5557. 53 268 2006-02-15 10:05:03
  5558. 53 285 2006-02-15 10:05:03
  5559. 53 307 2006-02-15 10:05:03
  5560. 53 358 2006-02-15 10:05:03
  5561. 53 386 2006-02-15 10:05:03
  5562. 53 447 2006-02-15 10:05:03
  5563. 53 465 2006-02-15 10:05:03
  5564. 53 490 2006-02-15 10:05:03
  5565. 53 492 2006-02-15 10:05:03
  5566. 53 508 2006-02-15 10:05:03
  5567. 53 518 2006-02-15 10:05:03
  5568. 53 573 2006-02-15 10:05:03
  5569. 53 576 2006-02-15 10:05:03
  5570. 53 577 2006-02-15 10:05:03
  5571. 53 697 2006-02-15 10:05:03
  5572. 53 725 2006-02-15 10:05:03
  5573. 53 727 2006-02-15 10:05:03
  5574. 53 937 2006-02-15 10:05:03
  5575. 53 947 2006-02-15 10:05:03
  5576. 53 961 2006-02-15 10:05:03
  5577. 53 980 2006-02-15 10:05:03
  5578. 54 84 2006-02-15 10:05:03
  5579. 54 129 2006-02-15 10:05:03
  5580. 54 150 2006-02-15 10:05:03
  5581. 54 184 2006-02-15 10:05:03
  5582. 54 285 2006-02-15 10:05:03
  5583. 54 292 2006-02-15 10:05:03
  5584. 54 301 2006-02-15 10:05:03
  5585. 54 348 2006-02-15 10:05:03
  5586. 54 489 2006-02-15 10:05:03
  5587. 54 510 2006-02-15 10:05:03
  5588. 54 524 2006-02-15 10:05:03
  5589. 54 546 2006-02-15 10:05:03
  5590. 54 600 2006-02-15 10:05:03
  5591. 54 636 2006-02-15 10:05:03
  5592. 54 649 2006-02-15 10:05:03
  5593. 54 658 2006-02-15 10:05:03
  5594. 54 754 2006-02-15 10:05:03
  5595. 54 764 2006-02-15 10:05:03
  5596. 54 842 2006-02-15 10:05:03
  5597. 54 858 2006-02-15 10:05:03
  5598. 54 861 2006-02-15 10:05:03
  5599. 54 913 2006-02-15 10:05:03
  5600. 54 970 2006-02-15 10:05:03
  5601. 54 988 2006-02-15 10:05:03
  5602. 54 990 2006-02-15 10:05:03
  5603. 55 8 2006-02-15 10:05:03
  5604. 55 27 2006-02-15 10:05:03
  5605. 55 75 2006-02-15 10:05:03
  5606. 55 197 2006-02-15 10:05:03
  5607. 55 307 2006-02-15 10:05:03
  5608. 55 320 2006-02-15 10:05:03
  5609. 55 340 2006-02-15 10:05:03
  5610. 55 403 2006-02-15 10:05:03
  5611. 55 485 2006-02-15 10:05:03
  5612. 55 486 2006-02-15 10:05:03
  5613. 55 603 2006-02-15 10:05:03
  5614. 55 612 2006-02-15 10:05:03
  5615. 55 620 2006-02-15 10:05:03
  5616. 55 709 2006-02-15 10:05:03
  5617. 55 776 2006-02-15 10:05:03
  5618. 55 790 2006-02-15 10:05:03
  5619. 55 815 2006-02-15 10:05:03
  5620. 55 827 2006-02-15 10:05:03
  5621. 55 930 2006-02-15 10:05:03
  5622. 55 963 2006-02-15 10:05:03
  5623. 56 63 2006-02-15 10:05:03
  5624. 56 87 2006-02-15 10:05:03
  5625. 56 226 2006-02-15 10:05:03
  5626. 56 236 2006-02-15 10:05:03
  5627. 56 298 2006-02-15 10:05:03
  5628. 56 307 2006-02-15 10:05:03
  5629. 56 354 2006-02-15 10:05:03
  5630. 56 383 2006-02-15 10:05:03
  5631. 56 417 2006-02-15 10:05:03
  5632. 56 421 2006-02-15 10:05:03
  5633. 56 457 2006-02-15 10:05:03
  5634. 56 462 2006-02-15 10:05:03
  5635. 56 474 2006-02-15 10:05:03
  5636. 56 521 2006-02-15 10:05:03
  5637. 56 593 2006-02-15 10:05:03
  5638. 56 728 2006-02-15 10:05:03
  5639. 56 750 2006-02-15 10:05:03
  5640. 56 769 2006-02-15 10:05:03
  5641. 56 781 2006-02-15 10:05:03
  5642. 56 795 2006-02-15 10:05:03
  5643. 56 844 2006-02-15 10:05:03
  5644. 56 851 2006-02-15 10:05:03
  5645. 56 862 2006-02-15 10:05:03
  5646. 56 868 2006-02-15 10:05:03
  5647. 56 892 2006-02-15 10:05:03
  5648. 56 893 2006-02-15 10:05:03
  5649. 56 936 2006-02-15 10:05:03
  5650. 56 965 2006-02-15 10:05:03
  5651. 57 16 2006-02-15 10:05:03
  5652. 57 34 2006-02-15 10:05:03
  5653. 57 101 2006-02-15 10:05:03
  5654. 57 114 2006-02-15 10:05:03
  5655. 57 122 2006-02-15 10:05:03
  5656. 57 134 2006-02-15 10:05:03
  5657. 57 144 2006-02-15 10:05:03
  5658. 57 153 2006-02-15 10:05:03
  5659. 57 192 2006-02-15 10:05:03
  5660. 57 213 2006-02-15 10:05:03
  5661. 57 258 2006-02-15 10:05:03
  5662. 57 267 2006-02-15 10:05:03
  5663. 57 317 2006-02-15 10:05:03
  5664. 57 340 2006-02-15 10:05:03
  5665. 57 393 2006-02-15 10:05:03
  5666. 57 437 2006-02-15 10:05:03
  5667. 57 447 2006-02-15 10:05:03
  5668. 57 502 2006-02-15 10:05:03
  5669. 57 592 2006-02-15 10:05:03
  5670. 57 605 2006-02-15 10:05:03
  5671. 57 637 2006-02-15 10:05:03
  5672. 57 685 2006-02-15 10:05:03
  5673. 57 707 2006-02-15 10:05:03
  5674. 57 714 2006-02-15 10:05:03
  5675. 57 717 2006-02-15 10:05:03
  5676. 57 737 2006-02-15 10:05:03
  5677. 57 767 2006-02-15 10:05:03
  5678. 57 852 2006-02-15 10:05:03
  5679. 57 891 2006-02-15 10:05:03
  5680. 57 918 2006-02-15 10:05:03
  5681. 58 48 2006-02-15 10:05:03
  5682. 58 68 2006-02-15 10:05:03
  5683. 58 119 2006-02-15 10:05:03
  5684. 58 128 2006-02-15 10:05:03
  5685. 58 135 2006-02-15 10:05:03
  5686. 58 175 2006-02-15 10:05:03
  5687. 58 199 2006-02-15 10:05:03
  5688. 58 235 2006-02-15 10:05:03
  5689. 58 242 2006-02-15 10:05:03
  5690. 58 243 2006-02-15 10:05:03
  5691. 58 254 2006-02-15 10:05:03
  5692. 58 306 2006-02-15 10:05:03
  5693. 58 316 2006-02-15 10:05:03
  5694. 58 417 2006-02-15 10:05:03
  5695. 58 426 2006-02-15 10:05:03
  5696. 58 460 2006-02-15 10:05:03
  5697. 58 477 2006-02-15 10:05:03
  5698. 58 541 2006-02-15 10:05:03
  5699. 58 549 2006-02-15 10:05:03
  5700. 58 551 2006-02-15 10:05:03
  5701. 58 553 2006-02-15 10:05:03
  5702. 58 578 2006-02-15 10:05:03
  5703. 58 602 2006-02-15 10:05:03
  5704. 58 632 2006-02-15 10:05:03
  5705. 58 635 2006-02-15 10:05:03
  5706. 58 638 2006-02-15 10:05:03
  5707. 58 698 2006-02-15 10:05:03
  5708. 58 726 2006-02-15 10:05:03
  5709. 58 755 2006-02-15 10:05:03
  5710. 58 800 2006-02-15 10:05:03
  5711. 58 856 2006-02-15 10:05:03
  5712. 58 858 2006-02-15 10:05:03
  5713. 59 5 2006-02-15 10:05:03
  5714. 59 46 2006-02-15 10:05:03
  5715. 59 54 2006-02-15 10:05:03
  5716. 59 72 2006-02-15 10:05:03
  5717. 59 88 2006-02-15 10:05:03
  5718. 59 121 2006-02-15 10:05:03
  5719. 59 129 2006-02-15 10:05:03
  5720. 59 130 2006-02-15 10:05:03
  5721. 59 183 2006-02-15 10:05:03
  5722. 59 210 2006-02-15 10:05:03
  5723. 59 241 2006-02-15 10:05:03
  5724. 59 295 2006-02-15 10:05:03
  5725. 59 418 2006-02-15 10:05:03
  5726. 59 572 2006-02-15 10:05:03
  5727. 59 644 2006-02-15 10:05:03
  5728. 59 650 2006-02-15 10:05:03
  5729. 59 689 2006-02-15 10:05:03
  5730. 59 694 2006-02-15 10:05:03
  5731. 59 702 2006-02-15 10:05:03
  5732. 59 713 2006-02-15 10:05:03
  5733. 59 749 2006-02-15 10:05:03
  5734. 59 772 2006-02-15 10:05:03
  5735. 59 853 2006-02-15 10:05:03
  5736. 59 862 2006-02-15 10:05:03
  5737. 59 943 2006-02-15 10:05:03
  5738. 59 946 2006-02-15 10:05:03
  5739. 59 984 2006-02-15 10:05:03
  5740. 60 31 2006-02-15 10:05:03
  5741. 60 85 2006-02-15 10:05:03
  5742. 60 133 2006-02-15 10:05:03
  5743. 60 142 2006-02-15 10:05:03
  5744. 60 177 2006-02-15 10:05:03
  5745. 60 179 2006-02-15 10:05:03
  5746. 60 186 2006-02-15 10:05:03
  5747. 60 222 2006-02-15 10:05:03
  5748. 60 235 2006-02-15 10:05:03
  5749. 60 239 2006-02-15 10:05:03
  5750. 60 253 2006-02-15 10:05:03
  5751. 60 262 2006-02-15 10:05:03
  5752. 60 297 2006-02-15 10:05:03
  5753. 60 299 2006-02-15 10:05:03
  5754. 60 334 2006-02-15 10:05:03
  5755. 60 376 2006-02-15 10:05:03
  5756. 60 423 2006-02-15 10:05:03
  5757. 60 436 2006-02-15 10:05:03
  5758. 60 493 2006-02-15 10:05:03
  5759. 60 534 2006-02-15 10:05:03
  5760. 60 551 2006-02-15 10:05:03
  5761. 60 658 2006-02-15 10:05:03
  5762. 60 665 2006-02-15 10:05:03
  5763. 60 679 2006-02-15 10:05:03
  5764. 60 754 2006-02-15 10:05:03
  5765. 60 771 2006-02-15 10:05:03
  5766. 60 783 2006-02-15 10:05:03
  5767. 60 784 2006-02-15 10:05:03
  5768. 60 805 2006-02-15 10:05:03
  5769. 60 830 2006-02-15 10:05:03
  5770. 60 835 2006-02-15 10:05:03
  5771. 60 928 2006-02-15 10:05:03
  5772. 60 952 2006-02-15 10:05:03
  5773. 60 971 2006-02-15 10:05:03
  5774. 60 986 2006-02-15 10:05:03
  5775. 61 235 2006-02-15 10:05:03
  5776. 61 237 2006-02-15 10:05:03
  5777. 61 307 2006-02-15 10:05:03
  5778. 61 362 2006-02-15 10:05:03
  5779. 61 372 2006-02-15 10:05:03
  5780. 61 374 2006-02-15 10:05:03
  5781. 61 423 2006-02-15 10:05:03
  5782. 61 433 2006-02-15 10:05:03
  5783. 61 508 2006-02-15 10:05:03
  5784. 61 518 2006-02-15 10:05:03
  5785. 61 519 2006-02-15 10:05:03
  5786. 61 535 2006-02-15 10:05:03
  5787. 61 537 2006-02-15 10:05:03
  5788. 61 585 2006-02-15 10:05:03
  5789. 61 639 2006-02-15 10:05:03
  5790. 61 648 2006-02-15 10:05:03
  5791. 61 649 2006-02-15 10:05:03
  5792. 61 703 2006-02-15 10:05:03
  5793. 61 752 2006-02-15 10:05:03
  5794. 61 766 2006-02-15 10:05:03
  5795. 61 767 2006-02-15 10:05:03
  5796. 61 780 2006-02-15 10:05:03
  5797. 61 831 2006-02-15 10:05:03
  5798. 61 832 2006-02-15 10:05:03
  5799. 61 990 2006-02-15 10:05:03
  5800. 62 6 2006-02-15 10:05:03
  5801. 62 42 2006-02-15 10:05:03
  5802. 62 54 2006-02-15 10:05:03
  5803. 62 100 2006-02-15 10:05:03
  5804. 62 101 2006-02-15 10:05:03
  5805. 62 129 2006-02-15 10:05:03
  5806. 62 198 2006-02-15 10:05:03
  5807. 62 211 2006-02-15 10:05:03
  5808. 62 231 2006-02-15 10:05:03
  5809. 62 272 2006-02-15 10:05:03
  5810. 62 295 2006-02-15 10:05:03
  5811. 62 337 2006-02-15 10:05:03
  5812. 62 375 2006-02-15 10:05:03
  5813. 62 385 2006-02-15 10:05:03
  5814. 62 393 2006-02-15 10:05:03
  5815. 62 398 2006-02-15 10:05:03
  5816. 62 406 2006-02-15 10:05:03
  5817. 62 413 2006-02-15 10:05:03
  5818. 62 428 2006-02-15 10:05:03
  5819. 62 445 2006-02-15 10:05:03
  5820. 62 457 2006-02-15 10:05:03
  5821. 62 465 2006-02-15 10:05:03
  5822. 62 688 2006-02-15 10:05:03
  5823. 62 707 2006-02-15 10:05:03
  5824. 62 719 2006-02-15 10:05:03
  5825. 62 951 2006-02-15 10:05:03
  5826. 62 981 2006-02-15 10:05:03
  5827. 62 988 2006-02-15 10:05:03
  5828. 62 990 2006-02-15 10:05:03
  5829. 63 73 2006-02-15 10:05:03
  5830. 63 134 2006-02-15 10:05:03
  5831. 63 167 2006-02-15 10:05:03
  5832. 63 208 2006-02-15 10:05:03
  5833. 63 225 2006-02-15 10:05:03
  5834. 63 248 2006-02-15 10:05:03
  5835. 63 249 2006-02-15 10:05:03
  5836. 63 278 2006-02-15 10:05:03
  5837. 63 392 2006-02-15 10:05:03
  5838. 63 517 2006-02-15 10:05:03
  5839. 63 633 2006-02-15 10:05:03
  5840. 63 763 2006-02-15 10:05:03
  5841. 63 781 2006-02-15 10:05:03
  5842. 63 809 2006-02-15 10:05:03
  5843. 63 893 2006-02-15 10:05:03
  5844. 63 932 2006-02-15 10:05:03
  5845. 63 944 2006-02-15 10:05:03
  5846. 63 945 2006-02-15 10:05:03
  5847. 63 981 2006-02-15 10:05:03
  5848. 64 3 2006-02-15 10:05:03
  5849. 64 10 2006-02-15 10:05:03
  5850. 64 37 2006-02-15 10:05:03
  5851. 64 87 2006-02-15 10:05:03
  5852. 64 88 2006-02-15 10:05:03
  5853. 64 124 2006-02-15 10:05:03
  5854. 64 197 2006-02-15 10:05:03
  5855. 64 280 2006-02-15 10:05:03
  5856. 64 291 2006-02-15 10:05:03
  5857. 64 307 2006-02-15 10:05:03
  5858. 64 335 2006-02-15 10:05:03
  5859. 64 345 2006-02-15 10:05:03
  5860. 64 448 2006-02-15 10:05:03
  5861. 64 469 2006-02-15 10:05:03
  5862. 64 471 2006-02-15 10:05:03
  5863. 64 506 2006-02-15 10:05:03
  5864. 64 543 2006-02-15 10:05:03
  5865. 64 557 2006-02-15 10:05:03
  5866. 64 569 2006-02-15 10:05:03
  5867. 64 572 2006-02-15 10:05:03
  5868. 64 597 2006-02-15 10:05:03
  5869. 64 616 2006-02-15 10:05:03
  5870. 64 646 2006-02-15 10:05:03
  5871. 64 694 2006-02-15 10:05:03
  5872. 64 832 2006-02-15 10:05:03
  5873. 64 852 2006-02-15 10:05:03
  5874. 64 860 2006-02-15 10:05:03
  5875. 64 921 2006-02-15 10:05:03
  5876. 64 925 2006-02-15 10:05:03
  5877. 64 980 2006-02-15 10:05:03
  5878. 65 39 2006-02-15 10:05:03
  5879. 65 46 2006-02-15 10:05:03
  5880. 65 97 2006-02-15 10:05:03
  5881. 65 106 2006-02-15 10:05:03
  5882. 65 117 2006-02-15 10:05:03
  5883. 65 125 2006-02-15 10:05:03
  5884. 65 158 2006-02-15 10:05:03
  5885. 65 276 2006-02-15 10:05:03
  5886. 65 305 2006-02-15 10:05:03
  5887. 65 338 2006-02-15 10:05:03
  5888. 65 347 2006-02-15 10:05:03
  5889. 65 371 2006-02-15 10:05:03
  5890. 65 398 2006-02-15 10:05:03
  5891. 65 471 2006-02-15 10:05:03
  5892. 65 475 2006-02-15 10:05:03
  5893. 65 476 2006-02-15 10:05:03
  5894. 65 491 2006-02-15 10:05:03
  5895. 65 496 2006-02-15 10:05:03
  5896. 65 516 2006-02-15 10:05:03
  5897. 65 517 2006-02-15 10:05:03
  5898. 65 541 2006-02-15 10:05:03
  5899. 65 556 2006-02-15 10:05:03
  5900. 65 571 2006-02-15 10:05:03
  5901. 65 577 2006-02-15 10:05:03
  5902. 65 615 2006-02-15 10:05:03
  5903. 65 658 2006-02-15 10:05:03
  5904. 65 683 2006-02-15 10:05:03
  5905. 65 694 2006-02-15 10:05:03
  5906. 65 714 2006-02-15 10:05:03
  5907. 65 735 2006-02-15 10:05:03
  5908. 65 852 2006-02-15 10:05:03
  5909. 65 938 2006-02-15 10:05:03
  5910. 65 951 2006-02-15 10:05:03
  5911. 65 965 2006-02-15 10:05:03
  5912. 66 55 2006-02-15 10:05:03
  5913. 66 143 2006-02-15 10:05:03
  5914. 66 207 2006-02-15 10:05:03
  5915. 66 226 2006-02-15 10:05:03
  5916. 66 229 2006-02-15 10:05:03
  5917. 66 230 2006-02-15 10:05:03
  5918. 66 283 2006-02-15 10:05:03
  5919. 66 300 2006-02-15 10:05:03
  5920. 66 342 2006-02-15 10:05:03
  5921. 66 350 2006-02-15 10:05:03
  5922. 66 361 2006-02-15 10:05:03
  5923. 66 376 2006-02-15 10:05:03
  5924. 66 424 2006-02-15 10:05:03
  5925. 66 434 2006-02-15 10:05:03
  5926. 66 553 2006-02-15 10:05:03
  5927. 66 608 2006-02-15 10:05:03
  5928. 66 676 2006-02-15 10:05:03
  5929. 66 697 2006-02-15 10:05:03
  5930. 66 706 2006-02-15 10:05:03
  5931. 66 725 2006-02-15 10:05:03
  5932. 66 769 2006-02-15 10:05:03
  5933. 66 793 2006-02-15 10:05:03
  5934. 66 829 2006-02-15 10:05:03
  5935. 66 871 2006-02-15 10:05:03
  5936. 66 909 2006-02-15 10:05:03
  5937. 66 915 2006-02-15 10:05:03
  5938. 66 928 2006-02-15 10:05:03
  5939. 66 951 2006-02-15 10:05:03
  5940. 66 957 2006-02-15 10:05:03
  5941. 66 960 2006-02-15 10:05:03
  5942. 66 999 2006-02-15 10:05:03
  5943. 67 24 2006-02-15 10:05:03
  5944. 67 57 2006-02-15 10:05:03
  5945. 67 67 2006-02-15 10:05:03
  5946. 67 144 2006-02-15 10:05:03
  5947. 67 242 2006-02-15 10:05:03
  5948. 67 244 2006-02-15 10:05:03
  5949. 67 256 2006-02-15 10:05:03
  5950. 67 408 2006-02-15 10:05:03
  5951. 67 477 2006-02-15 10:05:03
  5952. 67 496 2006-02-15 10:05:03
  5953. 67 512 2006-02-15 10:05:03
  5954. 67 576 2006-02-15 10:05:03
  5955. 67 601 2006-02-15 10:05:03
  5956. 67 725 2006-02-15 10:05:03
  5957. 67 726 2006-02-15 10:05:03
  5958. 67 731 2006-02-15 10:05:03
  5959. 67 766 2006-02-15 10:05:03
  5960. 67 861 2006-02-15 10:05:03
  5961. 67 870 2006-02-15 10:05:03
  5962. 67 915 2006-02-15 10:05:03
  5963. 67 945 2006-02-15 10:05:03
  5964. 67 972 2006-02-15 10:05:03
  5965. 67 981 2006-02-15 10:05:03
  5966. 68 9 2006-02-15 10:05:03
  5967. 68 45 2006-02-15 10:05:03
  5968. 68 133 2006-02-15 10:05:03
  5969. 68 161 2006-02-15 10:05:03
  5970. 68 205 2006-02-15 10:05:03
  5971. 68 213 2006-02-15 10:05:03
  5972. 68 215 2006-02-15 10:05:03
  5973. 68 255 2006-02-15 10:05:03
  5974. 68 296 2006-02-15 10:05:03
  5975. 68 315 2006-02-15 10:05:03
  5976. 68 325 2006-02-15 10:05:03
  5977. 68 331 2006-02-15 10:05:03
  5978. 68 347 2006-02-15 10:05:03
  5979. 68 357 2006-02-15 10:05:03
  5980. 68 378 2006-02-15 10:05:03
  5981. 68 380 2006-02-15 10:05:03
  5982. 68 386 2006-02-15 10:05:03
  5983. 68 396 2006-02-15 10:05:03
  5984. 68 435 2006-02-15 10:05:03
  5985. 68 497 2006-02-15 10:05:03
  5986. 68 607 2006-02-15 10:05:03
  5987. 68 654 2006-02-15 10:05:03
  5988. 68 665 2006-02-15 10:05:03
  5989. 68 671 2006-02-15 10:05:03
  5990. 68 706 2006-02-15 10:05:03
  5991. 68 747 2006-02-15 10:05:03
  5992. 68 834 2006-02-15 10:05:03
  5993. 68 839 2006-02-15 10:05:03
  5994. 68 840 2006-02-15 10:05:03
  5995. 68 971 2006-02-15 10:05:03
  5996. 69 15 2006-02-15 10:05:03
  5997. 69 88 2006-02-15 10:05:03
  5998. 69 111 2006-02-15 10:05:03
  5999. 69 202 2006-02-15 10:05:03
  6000. 69 236 2006-02-15 10:05:03
  6001. 69 292 2006-02-15 10:05:03
  6002. 69 300 2006-02-15 10:05:03
  6003. 69 306 2006-02-15 10:05:03
  6004. 69 374 2006-02-15 10:05:03
  6005. 69 396 2006-02-15 10:05:03
  6006. 69 452 2006-02-15 10:05:03
  6007. 69 466 2006-02-15 10:05:03
  6008. 69 529 2006-02-15 10:05:03
  6009. 69 612 2006-02-15 10:05:03
  6010. 69 720 2006-02-15 10:05:03
  6011. 69 722 2006-02-15 10:05:03
  6012. 69 761 2006-02-15 10:05:03
  6013. 69 791 2006-02-15 10:05:03
  6014. 69 864 2006-02-15 10:05:03
  6015. 69 877 2006-02-15 10:05:03
  6016. 69 914 2006-02-15 10:05:03
  6017. 70 50 2006-02-15 10:05:03
  6018. 70 53 2006-02-15 10:05:03
  6019. 70 92 2006-02-15 10:05:03
  6020. 70 202 2006-02-15 10:05:03
  6021. 70 227 2006-02-15 10:05:03
  6022. 70 249 2006-02-15 10:05:03
  6023. 70 290 2006-02-15 10:05:03
  6024. 70 304 2006-02-15 10:05:03
  6025. 70 343 2006-02-15 10:05:03
  6026. 70 414 2006-02-15 10:05:03
  6027. 70 453 2006-02-15 10:05:03
  6028. 70 466 2006-02-15 10:05:03
  6029. 70 504 2006-02-15 10:05:03
  6030. 70 584 2006-02-15 10:05:03
  6031. 70 628 2006-02-15 10:05:03
  6032. 70 654 2006-02-15 10:05:03
  6033. 70 725 2006-02-15 10:05:03
  6034. 70 823 2006-02-15 10:05:03
  6035. 70 834 2006-02-15 10:05:03
  6036. 70 856 2006-02-15 10:05:03
  6037. 70 869 2006-02-15 10:05:03
  6038. 70 953 2006-02-15 10:05:03
  6039. 70 964 2006-02-15 10:05:03
  6040. 71 26 2006-02-15 10:05:03
  6041. 71 52 2006-02-15 10:05:03
  6042. 71 233 2006-02-15 10:05:03
  6043. 71 317 2006-02-15 10:05:03
  6044. 71 359 2006-02-15 10:05:03
  6045. 71 362 2006-02-15 10:05:03
  6046. 71 385 2006-02-15 10:05:03
  6047. 71 399 2006-02-15 10:05:03
  6048. 71 450 2006-02-15 10:05:03
  6049. 71 532 2006-02-15 10:05:03
  6050. 71 560 2006-02-15 10:05:03
  6051. 71 574 2006-02-15 10:05:03
  6052. 71 638 2006-02-15 10:05:03
  6053. 71 773 2006-02-15 10:05:03
  6054. 71 833 2006-02-15 10:05:03
  6055. 71 874 2006-02-15 10:05:03
  6056. 71 918 2006-02-15 10:05:03
  6057. 71 956 2006-02-15 10:05:03
  6058. 72 34 2006-02-15 10:05:03
  6059. 72 144 2006-02-15 10:05:03
  6060. 72 237 2006-02-15 10:05:03
  6061. 72 249 2006-02-15 10:05:03
  6062. 72 286 2006-02-15 10:05:03
  6063. 72 296 2006-02-15 10:05:03
  6064. 72 325 2006-02-15 10:05:03
  6065. 72 331 2006-02-15 10:05:03
  6066. 72 405 2006-02-15 10:05:03
  6067. 72 450 2006-02-15 10:05:03
  6068. 72 550 2006-02-15 10:05:03
  6069. 72 609 2006-02-15 10:05:03
  6070. 72 623 2006-02-15 10:05:03
  6071. 72 636 2006-02-15 10:05:03
  6072. 72 640 2006-02-15 10:05:03
  6073. 72 665 2006-02-15 10:05:03
  6074. 72 718 2006-02-15 10:05:03
  6075. 72 743 2006-02-15 10:05:03
  6076. 72 757 2006-02-15 10:05:03
  6077. 72 773 2006-02-15 10:05:03
  6078. 72 854 2006-02-15 10:05:03
  6079. 72 865 2006-02-15 10:05:03
  6080. 72 938 2006-02-15 10:05:03
  6081. 72 956 2006-02-15 10:05:03
  6082. 72 964 2006-02-15 10:05:03
  6083. 72 969 2006-02-15 10:05:03
  6084. 73 36 2006-02-15 10:05:03
  6085. 73 45 2006-02-15 10:05:03
  6086. 73 51 2006-02-15 10:05:03
  6087. 73 77 2006-02-15 10:05:03
  6088. 73 148 2006-02-15 10:05:03
  6089. 73 245 2006-02-15 10:05:03
  6090. 73 275 2006-02-15 10:05:03
  6091. 73 322 2006-02-15 10:05:03
  6092. 73 374 2006-02-15 10:05:03
  6093. 73 379 2006-02-15 10:05:03
  6094. 73 467 2006-02-15 10:05:03
  6095. 73 548 2006-02-15 10:05:03
  6096. 73 561 2006-02-15 10:05:03
  6097. 73 562 2006-02-15 10:05:03
  6098. 73 565 2006-02-15 10:05:03
  6099. 73 627 2006-02-15 10:05:03
  6100. 73 666 2006-02-15 10:05:03
  6101. 73 667 2006-02-15 10:05:03
  6102. 73 707 2006-02-15 10:05:03
  6103. 73 748 2006-02-15 10:05:03
  6104. 73 772 2006-02-15 10:05:03
  6105. 73 823 2006-02-15 10:05:03
  6106. 73 936 2006-02-15 10:05:03
  6107. 73 946 2006-02-15 10:05:03
  6108. 73 950 2006-02-15 10:05:03
  6109. 73 998 2006-02-15 10:05:03
  6110. 74 28 2006-02-15 10:05:03
  6111. 74 44 2006-02-15 10:05:03
  6112. 74 117 2006-02-15 10:05:03
  6113. 74 185 2006-02-15 10:05:03
  6114. 74 192 2006-02-15 10:05:03
  6115. 74 203 2006-02-15 10:05:03
  6116. 74 263 2006-02-15 10:05:03
  6117. 74 321 2006-02-15 10:05:03
  6118. 74 415 2006-02-15 10:05:03
  6119. 74 484 2006-02-15 10:05:03
  6120. 74 503 2006-02-15 10:05:03
  6121. 74 537 2006-02-15 10:05:03
  6122. 74 543 2006-02-15 10:05:03
  6123. 74 617 2006-02-15 10:05:03
  6124. 74 626 2006-02-15 10:05:03
  6125. 74 637 2006-02-15 10:05:03
  6126. 74 663 2006-02-15 10:05:03
  6127. 74 704 2006-02-15 10:05:03
  6128. 74 720 2006-02-15 10:05:03
  6129. 74 747 2006-02-15 10:05:03
  6130. 74 780 2006-02-15 10:05:03
  6131. 74 804 2006-02-15 10:05:03
  6132. 74 834 2006-02-15 10:05:03
  6133. 74 836 2006-02-15 10:05:03
  6134. 74 848 2006-02-15 10:05:03
  6135. 74 872 2006-02-15 10:05:03
  6136. 74 902 2006-02-15 10:05:03
  6137. 74 956 2006-02-15 10:05:03
  6138. 75 12 2006-02-15 10:05:03
  6139. 75 34 2006-02-15 10:05:03
  6140. 75 143 2006-02-15 10:05:03
  6141. 75 170 2006-02-15 10:05:03
  6142. 75 222 2006-02-15 10:05:03
  6143. 75 301 2006-02-15 10:05:03
  6144. 75 347 2006-02-15 10:05:03
  6145. 75 372 2006-02-15 10:05:03
  6146. 75 436 2006-02-15 10:05:03
  6147. 75 445 2006-02-15 10:05:03
  6148. 75 446 2006-02-15 10:05:03
  6149. 75 492 2006-02-15 10:05:03
  6150. 75 498 2006-02-15 10:05:03
  6151. 75 508 2006-02-15 10:05:03
  6152. 75 541 2006-02-15 10:05:03
  6153. 75 547 2006-02-15 10:05:03
  6154. 75 579 2006-02-15 10:05:03
  6155. 75 645 2006-02-15 10:05:03
  6156. 75 667 2006-02-15 10:05:03
  6157. 75 744 2006-02-15 10:05:03
  6158. 75 764 2006-02-15 10:05:03
  6159. 75 780 2006-02-15 10:05:03
  6160. 75 870 2006-02-15 10:05:03
  6161. 75 920 2006-02-15 10:05:03
  6162. 76 60 2006-02-15 10:05:03
  6163. 76 66 2006-02-15 10:05:03
  6164. 76 68 2006-02-15 10:05:03
  6165. 76 95 2006-02-15 10:05:03
  6166. 76 122 2006-02-15 10:05:03
  6167. 76 187 2006-02-15 10:05:03
  6168. 76 223 2006-02-15 10:05:03
  6169. 76 234 2006-02-15 10:05:03
  6170. 76 251 2006-02-15 10:05:03
  6171. 76 348 2006-02-15 10:05:03
  6172. 76 444 2006-02-15 10:05:03
  6173. 76 464 2006-02-15 10:05:03
  6174. 76 474 2006-02-15 10:05:03
  6175. 76 498 2006-02-15 10:05:03
  6176. 76 568 2006-02-15 10:05:03
  6177. 76 604 2006-02-15 10:05:03
  6178. 76 606 2006-02-15 10:05:03
  6179. 76 642 2006-02-15 10:05:03
  6180. 76 648 2006-02-15 10:05:03
  6181. 76 650 2006-02-15 10:05:03
  6182. 76 709 2006-02-15 10:05:03
  6183. 76 760 2006-02-15 10:05:03
  6184. 76 765 2006-02-15 10:05:03
  6185. 76 781 2006-02-15 10:05:03
  6186. 76 850 2006-02-15 10:05:03
  6187. 76 862 2006-02-15 10:05:03
  6188. 76 866 2006-02-15 10:05:03
  6189. 76 870 2006-02-15 10:05:03
  6190. 76 912 2006-02-15 10:05:03
  6191. 76 935 2006-02-15 10:05:03
  6192. 76 958 2006-02-15 10:05:03
  6193. 77 13 2006-02-15 10:05:03
  6194. 77 22 2006-02-15 10:05:03
  6195. 77 40 2006-02-15 10:05:03
  6196. 77 73 2006-02-15 10:05:03
  6197. 77 78 2006-02-15 10:05:03
  6198. 77 153 2006-02-15 10:05:03
  6199. 77 224 2006-02-15 10:05:03
  6200. 77 240 2006-02-15 10:05:03
  6201. 77 245 2006-02-15 10:05:03
  6202. 77 261 2006-02-15 10:05:03
  6203. 77 343 2006-02-15 10:05:03
  6204. 77 442 2006-02-15 10:05:03
  6205. 77 458 2006-02-15 10:05:03
  6206. 77 538 2006-02-15 10:05:03
  6207. 77 566 2006-02-15 10:05:03
  6208. 77 612 2006-02-15 10:05:03
  6209. 77 635 2006-02-15 10:05:03
  6210. 77 694 2006-02-15 10:05:03
  6211. 77 749 2006-02-15 10:05:03
  6212. 77 938 2006-02-15 10:05:03
  6213. 77 943 2006-02-15 10:05:03
  6214. 77 963 2006-02-15 10:05:03
  6215. 77 969 2006-02-15 10:05:03
  6216. 77 993 2006-02-15 10:05:03
  6217. 78 86 2006-02-15 10:05:03
  6218. 78 239 2006-02-15 10:05:03
  6219. 78 260 2006-02-15 10:05:03
  6220. 78 261 2006-02-15 10:05:03
  6221. 78 265 2006-02-15 10:05:03
  6222. 78 301 2006-02-15 10:05:03
  6223. 78 387 2006-02-15 10:05:03
  6224. 78 393 2006-02-15 10:05:03
  6225. 78 428 2006-02-15 10:05:03
  6226. 78 457 2006-02-15 10:05:03
  6227. 78 505 2006-02-15 10:05:03
  6228. 78 520 2006-02-15 10:05:03
  6229. 78 530 2006-02-15 10:05:03
  6230. 78 549 2006-02-15 10:05:03
  6231. 78 552 2006-02-15 10:05:03
  6232. 78 599 2006-02-15 10:05:03
  6233. 78 670 2006-02-15 10:05:03
  6234. 78 674 2006-02-15 10:05:03
  6235. 78 689 2006-02-15 10:05:03
  6236. 78 762 2006-02-15 10:05:03
  6237. 78 767 2006-02-15 10:05:03
  6238. 78 811 2006-02-15 10:05:03
  6239. 78 852 2006-02-15 10:05:03
  6240. 78 880 2006-02-15 10:05:03
  6241. 78 963 2006-02-15 10:05:03
  6242. 78 968 2006-02-15 10:05:03
  6243. 79 32 2006-02-15 10:05:03
  6244. 79 33 2006-02-15 10:05:03
  6245. 79 40 2006-02-15 10:05:03
  6246. 79 141 2006-02-15 10:05:03
  6247. 79 205 2006-02-15 10:05:03
  6248. 79 230 2006-02-15 10:05:03
  6249. 79 242 2006-02-15 10:05:03
  6250. 79 262 2006-02-15 10:05:03
  6251. 79 267 2006-02-15 10:05:03
  6252. 79 269 2006-02-15 10:05:03
  6253. 79 299 2006-02-15 10:05:03
  6254. 79 367 2006-02-15 10:05:03
  6255. 79 428 2006-02-15 10:05:03
  6256. 79 430 2006-02-15 10:05:03
  6257. 79 473 2006-02-15 10:05:03
  6258. 79 607 2006-02-15 10:05:03
  6259. 79 628 2006-02-15 10:05:03
  6260. 79 634 2006-02-15 10:05:03
  6261. 79 646 2006-02-15 10:05:03
  6262. 79 727 2006-02-15 10:05:03
  6263. 79 750 2006-02-15 10:05:03
  6264. 79 753 2006-02-15 10:05:03
  6265. 79 769 2006-02-15 10:05:03
  6266. 79 776 2006-02-15 10:05:03
  6267. 79 788 2006-02-15 10:05:03
  6268. 79 840 2006-02-15 10:05:03
  6269. 79 853 2006-02-15 10:05:03
  6270. 79 916 2006-02-15 10:05:03
  6271. 80 69 2006-02-15 10:05:03
  6272. 80 118 2006-02-15 10:05:03
  6273. 80 124 2006-02-15 10:05:03
  6274. 80 175 2006-02-15 10:05:03
  6275. 80 207 2006-02-15 10:05:03
  6276. 80 212 2006-02-15 10:05:03
  6277. 80 260 2006-02-15 10:05:03
  6278. 80 262 2006-02-15 10:05:03
  6279. 80 280 2006-02-15 10:05:03
  6280. 80 341 2006-02-15 10:05:03
  6281. 80 342 2006-02-15 10:05:03
  6282. 80 343 2006-02-15 10:05:03
  6283. 80 362 2006-02-15 10:05:03
  6284. 80 436 2006-02-15 10:05:03
  6285. 80 475 2006-02-15 10:05:03
  6286. 80 553 2006-02-15 10:05:03
  6287. 80 619 2006-02-15 10:05:03
  6288. 80 622 2006-02-15 10:05:03
  6289. 80 680 2006-02-15 10:05:03
  6290. 80 687 2006-02-15 10:05:03
  6291. 80 688 2006-02-15 10:05:03
  6292. 80 709 2006-02-15 10:05:03
  6293. 80 788 2006-02-15 10:05:03
  6294. 80 807 2006-02-15 10:05:03
  6295. 80 858 2006-02-15 10:05:03
  6296. 80 888 2006-02-15 10:05:03
  6297. 80 941 2006-02-15 10:05:03
  6298. 80 979 2006-02-15 10:05:03
  6299. 81 4 2006-02-15 10:05:03
  6300. 81 11 2006-02-15 10:05:03
  6301. 81 59 2006-02-15 10:05:03
  6302. 81 89 2006-02-15 10:05:03
  6303. 81 178 2006-02-15 10:05:03
  6304. 81 186 2006-02-15 10:05:03
  6305. 81 194 2006-02-15 10:05:03
  6306. 81 215 2006-02-15 10:05:03
  6307. 81 219 2006-02-15 10:05:03
  6308. 81 232 2006-02-15 10:05:03
  6309. 81 260 2006-02-15 10:05:03
  6310. 81 267 2006-02-15 10:05:03
  6311. 81 268 2006-02-15 10:05:03
  6312. 81 304 2006-02-15 10:05:03
  6313. 81 332 2006-02-15 10:05:03
  6314. 81 389 2006-02-15 10:05:03
  6315. 81 398 2006-02-15 10:05:03
  6316. 81 453 2006-02-15 10:05:03
  6317. 81 458 2006-02-15 10:05:03
  6318. 81 465 2006-02-15 10:05:03
  6319. 81 505 2006-02-15 10:05:03
  6320. 81 508 2006-02-15 10:05:03
  6321. 81 527 2006-02-15 10:05:03
  6322. 81 545 2006-02-15 10:05:03
  6323. 81 564 2006-02-15 10:05:03
  6324. 81 578 2006-02-15 10:05:03
  6325. 81 579 2006-02-15 10:05:03
  6326. 81 613 2006-02-15 10:05:03
  6327. 81 619 2006-02-15 10:05:03
  6328. 81 643 2006-02-15 10:05:03
  6329. 81 692 2006-02-15 10:05:03
  6330. 81 710 2006-02-15 10:05:03
  6331. 81 729 2006-02-15 10:05:03
  6332. 81 761 2006-02-15 10:05:03
  6333. 81 827 2006-02-15 10:05:03
  6334. 81 910 2006-02-15 10:05:03
  6335. 82 17 2006-02-15 10:05:03
  6336. 82 33 2006-02-15 10:05:03
  6337. 82 104 2006-02-15 10:05:03
  6338. 82 143 2006-02-15 10:05:03
  6339. 82 188 2006-02-15 10:05:03
  6340. 82 242 2006-02-15 10:05:03
  6341. 82 247 2006-02-15 10:05:03
  6342. 82 290 2006-02-15 10:05:03
  6343. 82 306 2006-02-15 10:05:03
  6344. 82 316 2006-02-15 10:05:03
  6345. 82 344 2006-02-15 10:05:03
  6346. 82 453 2006-02-15 10:05:03
  6347. 82 468 2006-02-15 10:05:03
  6348. 82 480 2006-02-15 10:05:03
  6349. 82 497 2006-02-15 10:05:03
  6350. 82 503 2006-02-15 10:05:03
  6351. 82 527 2006-02-15 10:05:03
  6352. 82 551 2006-02-15 10:05:03
  6353. 82 561 2006-02-15 10:05:03
  6354. 82 750 2006-02-15 10:05:03
  6355. 82 787 2006-02-15 10:05:03
  6356. 82 802 2006-02-15 10:05:03
  6357. 82 838 2006-02-15 10:05:03
  6358. 82 839 2006-02-15 10:05:03
  6359. 82 870 2006-02-15 10:05:03
  6360. 82 877 2006-02-15 10:05:03
  6361. 82 893 2006-02-15 10:05:03
  6362. 82 911 2006-02-15 10:05:03
  6363. 82 954 2006-02-15 10:05:03
  6364. 82 978 2006-02-15 10:05:03
  6365. 82 985 2006-02-15 10:05:03
  6366. 83 49 2006-02-15 10:05:03
  6367. 83 52 2006-02-15 10:05:03
  6368. 83 58 2006-02-15 10:05:03
  6369. 83 110 2006-02-15 10:05:03
  6370. 83 120 2006-02-15 10:05:03
  6371. 83 121 2006-02-15 10:05:03
  6372. 83 135 2006-02-15 10:05:03
  6373. 83 165 2006-02-15 10:05:03
  6374. 83 217 2006-02-15 10:05:03
  6375. 83 247 2006-02-15 10:05:03
  6376. 83 249 2006-02-15 10:05:03
  6377. 83 263 2006-02-15 10:05:03
  6378. 83 268 2006-02-15 10:05:03
  6379. 83 279 2006-02-15 10:05:03
  6380. 83 281 2006-02-15 10:05:03
  6381. 83 339 2006-02-15 10:05:03
  6382. 83 340 2006-02-15 10:05:03
  6383. 83 369 2006-02-15 10:05:03
  6384. 83 412 2006-02-15 10:05:03
  6385. 83 519 2006-02-15 10:05:03
  6386. 83 529 2006-02-15 10:05:03
  6387. 83 615 2006-02-15 10:05:03
  6388. 83 631 2006-02-15 10:05:03
  6389. 83 655 2006-02-15 10:05:03
  6390. 83 672 2006-02-15 10:05:03
  6391. 83 686 2006-02-15 10:05:03
  6392. 83 719 2006-02-15 10:05:03
  6393. 83 764 2006-02-15 10:05:03
  6394. 83 777 2006-02-15 10:05:03
  6395. 83 784 2006-02-15 10:05:03
  6396. 83 833 2006-02-15 10:05:03
  6397. 83 873 2006-02-15 10:05:03
  6398. 83 932 2006-02-15 10:05:03
  6399. 84 19 2006-02-15 10:05:03
  6400. 84 39 2006-02-15 10:05:03
  6401. 84 46 2006-02-15 10:05:03
  6402. 84 175 2006-02-15 10:05:03
  6403. 84 238 2006-02-15 10:05:03
  6404. 84 281 2006-02-15 10:05:03
  6405. 84 290 2006-02-15 10:05:03
  6406. 84 312 2006-02-15 10:05:03
  6407. 84 317 2006-02-15 10:05:03
  6408. 84 413 2006-02-15 10:05:03
  6409. 84 414 2006-02-15 10:05:03
  6410. 84 460 2006-02-15 10:05:03
  6411. 84 479 2006-02-15 10:05:03
  6412. 84 491 2006-02-15 10:05:03
  6413. 84 529 2006-02-15 10:05:03
  6414. 84 540 2006-02-15 10:05:03
  6415. 84 566 2006-02-15 10:05:03
  6416. 84 574 2006-02-15 10:05:03
  6417. 84 589 2006-02-15 10:05:03
  6418. 84 616 2006-02-15 10:05:03
  6419. 84 646 2006-02-15 10:05:03
  6420. 84 703 2006-02-15 10:05:03
  6421. 84 729 2006-02-15 10:05:03
  6422. 84 764 2006-02-15 10:05:03
  6423. 84 782 2006-02-15 10:05:03
  6424. 84 809 2006-02-15 10:05:03
  6425. 84 830 2006-02-15 10:05:03
  6426. 84 843 2006-02-15 10:05:03
  6427. 84 887 2006-02-15 10:05:03
  6428. 84 975 2006-02-15 10:05:03
  6429. 84 996 2006-02-15 10:05:03
  6430. 85 2 2006-02-15 10:05:03
  6431. 85 14 2006-02-15 10:05:03
  6432. 85 72 2006-02-15 10:05:03
  6433. 85 85 2006-02-15 10:05:03
  6434. 85 92 2006-02-15 10:05:03
  6435. 85 148 2006-02-15 10:05:03
  6436. 85 216 2006-02-15 10:05:03
  6437. 85 290 2006-02-15 10:05:03
  6438. 85 296 2006-02-15 10:05:03
  6439. 85 297 2006-02-15 10:05:03
  6440. 85 337 2006-02-15 10:05:03
  6441. 85 383 2006-02-15 10:05:03
  6442. 85 421 2006-02-15 10:05:03
  6443. 85 446 2006-02-15 10:05:03
  6444. 85 461 2006-02-15 10:05:03
  6445. 85 475 2006-02-15 10:05:03
  6446. 85 478 2006-02-15 10:05:03
  6447. 85 522 2006-02-15 10:05:03
  6448. 85 543 2006-02-15 10:05:03
  6449. 85 558 2006-02-15 10:05:03
  6450. 85 591 2006-02-15 10:05:03
  6451. 85 630 2006-02-15 10:05:03
  6452. 85 678 2006-02-15 10:05:03
  6453. 85 711 2006-02-15 10:05:03
  6454. 85 761 2006-02-15 10:05:03
  6455. 85 812 2006-02-15 10:05:03
  6456. 85 869 2006-02-15 10:05:03
  6457. 85 875 2006-02-15 10:05:03
  6458. 85 895 2006-02-15 10:05:03
  6459. 85 957 2006-02-15 10:05:03
  6460. 85 960 2006-02-15 10:05:03
  6461. 86 137 2006-02-15 10:05:03
  6462. 86 163 2006-02-15 10:05:03
  6463. 86 196 2006-02-15 10:05:03
  6464. 86 216 2006-02-15 10:05:03
  6465. 86 249 2006-02-15 10:05:03
  6466. 86 303 2006-02-15 10:05:03
  6467. 86 331 2006-02-15 10:05:03
  6468. 86 364 2006-02-15 10:05:03
  6469. 86 391 2006-02-15 10:05:03
  6470. 86 432 2006-02-15 10:05:03
  6471. 86 482 2006-02-15 10:05:03
  6472. 86 486 2006-02-15 10:05:03
  6473. 86 519 2006-02-15 10:05:03
  6474. 86 520 2006-02-15 10:05:03
  6475. 86 548 2006-02-15 10:05:03
  6476. 86 623 2006-02-15 10:05:03
  6477. 86 631 2006-02-15 10:05:03
  6478. 86 636 2006-02-15 10:05:03
  6479. 86 752 2006-02-15 10:05:03
  6480. 86 760 2006-02-15 10:05:03
  6481. 86 808 2006-02-15 10:05:03
  6482. 86 857 2006-02-15 10:05:03
  6483. 86 878 2006-02-15 10:05:03
  6484. 86 893 2006-02-15 10:05:03
  6485. 86 905 2006-02-15 10:05:03
  6486. 86 923 2006-02-15 10:05:03
  6487. 86 929 2006-02-15 10:05:03
  6488. 87 48 2006-02-15 10:05:03
  6489. 87 157 2006-02-15 10:05:03
  6490. 87 161 2006-02-15 10:05:03
  6491. 87 199 2006-02-15 10:05:03
  6492. 87 207 2006-02-15 10:05:03
  6493. 87 250 2006-02-15 10:05:03
  6494. 87 253 2006-02-15 10:05:03
  6495. 87 312 2006-02-15 10:05:03
  6496. 87 421 2006-02-15 10:05:03
  6497. 87 570 2006-02-15 10:05:03
  6498. 87 599 2006-02-15 10:05:03
  6499. 87 606 2006-02-15 10:05:03
  6500. 87 654 2006-02-15 10:05:03
  6501. 87 679 2006-02-15 10:05:03
  6502. 87 706 2006-02-15 10:05:03
  6503. 87 718 2006-02-15 10:05:03
  6504. 87 721 2006-02-15 10:05:03
  6505. 87 830 2006-02-15 10:05:03
  6506. 87 870 2006-02-15 10:05:03
  6507. 87 952 2006-02-15 10:05:03
  6508. 87 961 2006-02-15 10:05:03
  6509. 88 4 2006-02-15 10:05:03
  6510. 88 76 2006-02-15 10:05:03
  6511. 88 87 2006-02-15 10:05:03
  6512. 88 128 2006-02-15 10:05:03
  6513. 88 170 2006-02-15 10:05:03
  6514. 88 193 2006-02-15 10:05:03
  6515. 88 234 2006-02-15 10:05:03
  6516. 88 304 2006-02-15 10:05:03
  6517. 88 602 2006-02-15 10:05:03
  6518. 88 620 2006-02-15 10:05:03
  6519. 88 668 2006-02-15 10:05:03
  6520. 88 717 2006-02-15 10:05:03
  6521. 88 785 2006-02-15 10:05:03
  6522. 88 819 2006-02-15 10:05:03
  6523. 88 839 2006-02-15 10:05:03
  6524. 88 881 2006-02-15 10:05:03
  6525. 88 908 2006-02-15 10:05:03
  6526. 88 929 2006-02-15 10:05:03
  6527. 88 940 2006-02-15 10:05:03
  6528. 88 968 2006-02-15 10:05:03
  6529. 89 47 2006-02-15 10:05:03
  6530. 89 103 2006-02-15 10:05:03
  6531. 89 117 2006-02-15 10:05:03
  6532. 89 162 2006-02-15 10:05:03
  6533. 89 182 2006-02-15 10:05:03
  6534. 89 187 2006-02-15 10:05:03
  6535. 89 212 2006-02-15 10:05:03
  6536. 89 254 2006-02-15 10:05:03
  6537. 89 266 2006-02-15 10:05:03
  6538. 89 306 2006-02-15 10:05:03
  6539. 89 342 2006-02-15 10:05:03
  6540. 89 406 2006-02-15 10:05:03
  6541. 89 410 2006-02-15 10:05:03
  6542. 89 446 2006-02-15 10:05:03
  6543. 89 473 2006-02-15 10:05:03
  6544. 89 488 2006-02-15 10:05:03
  6545. 89 529 2006-02-15 10:05:03
  6546. 89 542 2006-02-15 10:05:03
  6547. 89 564 2006-02-15 10:05:03
  6548. 89 697 2006-02-15 10:05:03
  6549. 89 833 2006-02-15 10:05:03
  6550. 89 864 2006-02-15 10:05:03
  6551. 89 970 2006-02-15 10:05:03
  6552. 89 976 2006-02-15 10:05:03
  6553. 90 2 2006-02-15 10:05:03
  6554. 90 11 2006-02-15 10:05:03
  6555. 90 100 2006-02-15 10:05:03
  6556. 90 197 2006-02-15 10:05:03
  6557. 90 212 2006-02-15 10:05:03
  6558. 90 262 2006-02-15 10:05:03
  6559. 90 303 2006-02-15 10:05:03
  6560. 90 330 2006-02-15 10:05:03
  6561. 90 363 2006-02-15 10:05:03
  6562. 90 374 2006-02-15 10:05:03
  6563. 90 384 2006-02-15 10:05:03
  6564. 90 385 2006-02-15 10:05:03
  6565. 90 391 2006-02-15 10:05:03
  6566. 90 406 2006-02-15 10:05:03
  6567. 90 433 2006-02-15 10:05:03
  6568. 90 442 2006-02-15 10:05:03
  6569. 90 451 2006-02-15 10:05:03
  6570. 90 520 2006-02-15 10:05:03
  6571. 90 529 2006-02-15 10:05:03
  6572. 90 542 2006-02-15 10:05:03
  6573. 90 586 2006-02-15 10:05:03
  6574. 90 633 2006-02-15 10:05:03
  6575. 90 663 2006-02-15 10:05:03
  6576. 90 676 2006-02-15 10:05:03
  6577. 90 771 2006-02-15 10:05:03
  6578. 90 817 2006-02-15 10:05:03
  6579. 90 838 2006-02-15 10:05:03
  6580. 90 855 2006-02-15 10:05:03
  6581. 90 858 2006-02-15 10:05:03
  6582. 90 868 2006-02-15 10:05:03
  6583. 90 880 2006-02-15 10:05:03
  6584. 90 901 2006-02-15 10:05:03
  6585. 90 925 2006-02-15 10:05:03
  6586. 91 13 2006-02-15 10:05:03
  6587. 91 25 2006-02-15 10:05:03
  6588. 91 48 2006-02-15 10:05:03
  6589. 91 176 2006-02-15 10:05:03
  6590. 91 181 2006-02-15 10:05:03
  6591. 91 190 2006-02-15 10:05:03
  6592. 91 335 2006-02-15 10:05:03
  6593. 91 416 2006-02-15 10:05:03
  6594. 91 447 2006-02-15 10:05:03
  6595. 91 480 2006-02-15 10:05:03
  6596. 91 493 2006-02-15 10:05:03
  6597. 91 509 2006-02-15 10:05:03
  6598. 91 511 2006-02-15 10:05:03
  6599. 91 608 2006-02-15 10:05:03
  6600. 91 807 2006-02-15 10:05:03
  6601. 91 829 2006-02-15 10:05:03
  6602. 91 849 2006-02-15 10:05:03
  6603. 91 859 2006-02-15 10:05:03
  6604. 91 941 2006-02-15 10:05:03
  6605. 91 982 2006-02-15 10:05:03
  6606. 92 90 2006-02-15 10:05:03
  6607. 92 94 2006-02-15 10:05:03
  6608. 92 103 2006-02-15 10:05:03
  6609. 92 104 2006-02-15 10:05:03
  6610. 92 123 2006-02-15 10:05:03
  6611. 92 137 2006-02-15 10:05:03
  6612. 92 207 2006-02-15 10:05:03
  6613. 92 229 2006-02-15 10:05:03
  6614. 92 338 2006-02-15 10:05:03
  6615. 92 381 2006-02-15 10:05:03
  6616. 92 436 2006-02-15 10:05:03
  6617. 92 443 2006-02-15 10:05:03
  6618. 92 453 2006-02-15 10:05:03
  6619. 92 470 2006-02-15 10:05:03
  6620. 92 505 2006-02-15 10:05:03
  6621. 92 512 2006-02-15 10:05:03
  6622. 92 543 2006-02-15 10:05:03
  6623. 92 545 2006-02-15 10:05:03
  6624. 92 547 2006-02-15 10:05:03
  6625. 92 553 2006-02-15 10:05:03
  6626. 92 564 2006-02-15 10:05:03
  6627. 92 568 2006-02-15 10:05:03
  6628. 92 618 2006-02-15 10:05:03
  6629. 92 662 2006-02-15 10:05:03
  6630. 92 686 2006-02-15 10:05:03
  6631. 92 699 2006-02-15 10:05:03
  6632. 92 712 2006-02-15 10:05:03
  6633. 92 728 2006-02-15 10:05:03
  6634. 92 802 2006-02-15 10:05:03
  6635. 92 825 2006-02-15 10:05:03
  6636. 92 838 2006-02-15 10:05:03
  6637. 92 889 2006-02-15 10:05:03
  6638. 92 929 2006-02-15 10:05:03
  6639. 92 991 2006-02-15 10:05:03
  6640. 93 71 2006-02-15 10:05:03
  6641. 93 120 2006-02-15 10:05:03
  6642. 93 124 2006-02-15 10:05:03
  6643. 93 280 2006-02-15 10:05:03
  6644. 93 325 2006-02-15 10:05:03
  6645. 93 339 2006-02-15 10:05:03
  6646. 93 427 2006-02-15 10:05:03
  6647. 93 445 2006-02-15 10:05:03
  6648. 93 453 2006-02-15 10:05:03
  6649. 93 473 2006-02-15 10:05:03
  6650. 93 573 2006-02-15 10:05:03
  6651. 93 621 2006-02-15 10:05:03
  6652. 93 644 2006-02-15 10:05:03
  6653. 93 678 2006-02-15 10:05:03
  6654. 93 680 2006-02-15 10:05:03
  6655. 93 699 2006-02-15 10:05:03
  6656. 93 744 2006-02-15 10:05:03
  6657. 93 768 2006-02-15 10:05:03
  6658. 93 777 2006-02-15 10:05:03
  6659. 93 835 2006-02-15 10:05:03
  6660. 93 856 2006-02-15 10:05:03
  6661. 93 874 2006-02-15 10:05:03
  6662. 93 909 2006-02-15 10:05:03
  6663. 93 916 2006-02-15 10:05:03
  6664. 93 982 2006-02-15 10:05:03
  6665. 94 13 2006-02-15 10:05:03
  6666. 94 60 2006-02-15 10:05:03
  6667. 94 76 2006-02-15 10:05:03
  6668. 94 122 2006-02-15 10:05:03
  6669. 94 153 2006-02-15 10:05:03
  6670. 94 193 2006-02-15 10:05:03
  6671. 94 206 2006-02-15 10:05:03
  6672. 94 228 2006-02-15 10:05:03
  6673. 94 270 2006-02-15 10:05:03
  6674. 94 275 2006-02-15 10:05:03
  6675. 94 320 2006-02-15 10:05:03
  6676. 94 322 2006-02-15 10:05:03
  6677. 94 337 2006-02-15 10:05:03
  6678. 94 354 2006-02-15 10:05:03
  6679. 94 402 2006-02-15 10:05:03
  6680. 94 428 2006-02-15 10:05:03
  6681. 94 457 2006-02-15 10:05:03
  6682. 94 473 2006-02-15 10:05:03
  6683. 94 475 2006-02-15 10:05:03
  6684. 94 512 2006-02-15 10:05:03
  6685. 94 517 2006-02-15 10:05:03
  6686. 94 521 2006-02-15 10:05:03
  6687. 94 533 2006-02-15 10:05:03
  6688. 94 540 2006-02-15 10:05:03
  6689. 94 548 2006-02-15 10:05:03
  6690. 94 551 2006-02-15 10:05:03
  6691. 94 712 2006-02-15 10:05:03
  6692. 94 713 2006-02-15 10:05:03
  6693. 94 724 2006-02-15 10:05:03
  6694. 94 775 2006-02-15 10:05:03
  6695. 94 788 2006-02-15 10:05:03
  6696. 94 950 2006-02-15 10:05:03
  6697. 94 989 2006-02-15 10:05:03
  6698. 95 22 2006-02-15 10:05:03
  6699. 95 35 2006-02-15 10:05:03
  6700. 95 47 2006-02-15 10:05:03
  6701. 95 52 2006-02-15 10:05:03
  6702. 95 65 2006-02-15 10:05:03
  6703. 95 74 2006-02-15 10:05:03
  6704. 95 126 2006-02-15 10:05:03
  6705. 95 207 2006-02-15 10:05:03
  6706. 95 245 2006-02-15 10:05:03
  6707. 95 294 2006-02-15 10:05:03
  6708. 95 301 2006-02-15 10:05:03
  6709. 95 312 2006-02-15 10:05:03
  6710. 95 329 2006-02-15 10:05:03
  6711. 95 353 2006-02-15 10:05:03
  6712. 95 375 2006-02-15 10:05:03
  6713. 95 420 2006-02-15 10:05:03
  6714. 95 424 2006-02-15 10:05:03
  6715. 95 431 2006-02-15 10:05:03
  6716. 95 498 2006-02-15 10:05:03
  6717. 95 522 2006-02-15 10:05:03
  6718. 95 546 2006-02-15 10:05:03
  6719. 95 551 2006-02-15 10:05:03
  6720. 95 619 2006-02-15 10:05:03
  6721. 95 627 2006-02-15 10:05:03
  6722. 95 690 2006-02-15 10:05:03
  6723. 95 748 2006-02-15 10:05:03
  6724. 95 813 2006-02-15 10:05:03
  6725. 95 828 2006-02-15 10:05:03
  6726. 95 855 2006-02-15 10:05:03
  6727. 95 903 2006-02-15 10:05:03
  6728. 95 923 2006-02-15 10:05:03
  6729. 96 8 2006-02-15 10:05:03
  6730. 96 36 2006-02-15 10:05:03
  6731. 96 40 2006-02-15 10:05:03
  6732. 96 54 2006-02-15 10:05:03
  6733. 96 58 2006-02-15 10:05:03
  6734. 96 66 2006-02-15 10:05:03
  6735. 96 134 2006-02-15 10:05:03
  6736. 96 209 2006-02-15 10:05:03
  6737. 96 244 2006-02-15 10:05:03
  6738. 96 320 2006-02-15 10:05:03
  6739. 96 430 2006-02-15 10:05:03
  6740. 96 452 2006-02-15 10:05:03
  6741. 96 486 2006-02-15 10:05:03
  6742. 96 572 2006-02-15 10:05:03
  6743. 96 590 2006-02-15 10:05:03
  6744. 96 661 2006-02-15 10:05:03
  6745. 96 778 2006-02-15 10:05:03
  6746. 96 832 2006-02-15 10:05:03
  6747. 96 846 2006-02-15 10:05:03
  6748. 96 874 2006-02-15 10:05:03
  6749. 96 945 2006-02-15 10:05:03
  6750. 96 968 2006-02-15 10:05:03
  6751. 96 987 2006-02-15 10:05:03
  6752. 97 143 2006-02-15 10:05:03
  6753. 97 177 2006-02-15 10:05:03
  6754. 97 188 2006-02-15 10:05:03
  6755. 97 197 2006-02-15 10:05:03
  6756. 97 256 2006-02-15 10:05:03
  6757. 97 312 2006-02-15 10:05:03
  6758. 97 342 2006-02-15 10:05:03
  6759. 97 348 2006-02-15 10:05:03
  6760. 97 358 2006-02-15 10:05:03
  6761. 97 370 2006-02-15 10:05:03
  6762. 97 437 2006-02-15 10:05:03
  6763. 97 446 2006-02-15 10:05:03
  6764. 97 466 2006-02-15 10:05:03
  6765. 97 518 2006-02-15 10:05:03
  6766. 97 553 2006-02-15 10:05:03
  6767. 97 561 2006-02-15 10:05:03
  6768. 97 641 2006-02-15 10:05:03
  6769. 97 656 2006-02-15 10:05:03
  6770. 97 728 2006-02-15 10:05:03
  6771. 97 755 2006-02-15 10:05:03
  6772. 97 757 2006-02-15 10:05:03
  6773. 97 826 2006-02-15 10:05:03
  6774. 97 862 2006-02-15 10:05:03
  6775. 97 930 2006-02-15 10:05:03
  6776. 97 933 2006-02-15 10:05:03
  6777. 97 947 2006-02-15 10:05:03
  6778. 97 951 2006-02-15 10:05:03
  6779. 98 66 2006-02-15 10:05:03
  6780. 98 72 2006-02-15 10:05:03
  6781. 98 81 2006-02-15 10:05:03
  6782. 98 87 2006-02-15 10:05:03
  6783. 98 107 2006-02-15 10:05:03
  6784. 98 120 2006-02-15 10:05:03
  6785. 98 183 2006-02-15 10:05:03
  6786. 98 194 2006-02-15 10:05:03
  6787. 98 212 2006-02-15 10:05:03
  6788. 98 297 2006-02-15 10:05:03
  6789. 98 607 2006-02-15 10:05:03
  6790. 98 634 2006-02-15 10:05:03
  6791. 98 686 2006-02-15 10:05:03
  6792. 98 705 2006-02-15 10:05:03
  6793. 98 710 2006-02-15 10:05:03
  6794. 98 721 2006-02-15 10:05:03
  6795. 98 725 2006-02-15 10:05:03
  6796. 98 734 2006-02-15 10:05:03
  6797. 98 738 2006-02-15 10:05:03
  6798. 98 765 2006-02-15 10:05:03
  6799. 98 782 2006-02-15 10:05:03
  6800. 98 824 2006-02-15 10:05:03
  6801. 98 829 2006-02-15 10:05:03
  6802. 98 912 2006-02-15 10:05:03
  6803. 98 955 2006-02-15 10:05:03
  6804. 98 985 2006-02-15 10:05:03
  6805. 98 990 2006-02-15 10:05:03
  6806. 99 7 2006-02-15 10:05:03
  6807. 99 27 2006-02-15 10:05:03
  6808. 99 84 2006-02-15 10:05:03
  6809. 99 250 2006-02-15 10:05:03
  6810. 99 322 2006-02-15 10:05:03
  6811. 99 325 2006-02-15 10:05:03
  6812. 99 381 2006-02-15 10:05:03
  6813. 99 414 2006-02-15 10:05:03
  6814. 99 475 2006-02-15 10:05:03
  6815. 99 490 2006-02-15 10:05:03
  6816. 99 512 2006-02-15 10:05:03
  6817. 99 540 2006-02-15 10:05:03
  6818. 99 572 2006-02-15 10:05:03
  6819. 99 600 2006-02-15 10:05:03
  6820. 99 618 2006-02-15 10:05:03
  6821. 99 620 2006-02-15 10:05:03
  6822. 99 622 2006-02-15 10:05:03
  6823. 99 636 2006-02-15 10:05:03
  6824. 99 672 2006-02-15 10:05:03
  6825. 99 726 2006-02-15 10:05:03
  6826. 99 741 2006-02-15 10:05:03
  6827. 99 796 2006-02-15 10:05:03
  6828. 99 835 2006-02-15 10:05:03
  6829. 99 967 2006-02-15 10:05:03
  6830. 99 978 2006-02-15 10:05:03
  6831. 99 982 2006-02-15 10:05:03
  6832. 100 17 2006-02-15 10:05:03
  6833. 100 118 2006-02-15 10:05:03
  6834. 100 250 2006-02-15 10:05:03
  6835. 100 411 2006-02-15 10:05:03
  6836. 100 414 2006-02-15 10:05:03
  6837. 100 513 2006-02-15 10:05:03
  6838. 100 563 2006-02-15 10:05:03
  6839. 100 642 2006-02-15 10:05:03
  6840. 100 714 2006-02-15 10:05:03
  6841. 100 718 2006-02-15 10:05:03
  6842. 100 759 2006-02-15 10:05:03
  6843. 100 779 2006-02-15 10:05:03
  6844. 100 815 2006-02-15 10:05:03
  6845. 100 846 2006-02-15 10:05:03
  6846. 100 850 2006-02-15 10:05:03
  6847. 100 872 2006-02-15 10:05:03
  6848. 100 877 2006-02-15 10:05:03
  6849. 100 909 2006-02-15 10:05:03
  6850. 100 919 2006-02-15 10:05:03
  6851. 100 944 2006-02-15 10:05:03
  6852. 100 967 2006-02-15 10:05:03
  6853. 100 979 2006-02-15 10:05:03
  6854. 100 991 2006-02-15 10:05:03
  6855. 100 992 2006-02-15 10:05:03
  6856. 101 60 2006-02-15 10:05:03
  6857. 101 66 2006-02-15 10:05:03
  6858. 101 85 2006-02-15 10:05:03
  6859. 101 146 2006-02-15 10:05:03
  6860. 101 189 2006-02-15 10:05:03
  6861. 101 250 2006-02-15 10:05:03
  6862. 101 255 2006-02-15 10:05:03
  6863. 101 263 2006-02-15 10:05:03
  6864. 101 275 2006-02-15 10:05:03
  6865. 101 289 2006-02-15 10:05:03
  6866. 101 491 2006-02-15 10:05:03
  6867. 101 494 2006-02-15 10:05:03
  6868. 101 511 2006-02-15 10:05:03
  6869. 101 568 2006-02-15 10:05:03
  6870. 101 608 2006-02-15 10:05:03
  6871. 101 617 2006-02-15 10:05:03
  6872. 101 655 2006-02-15 10:05:03
  6873. 101 662 2006-02-15 10:05:03
  6874. 101 700 2006-02-15 10:05:03
  6875. 101 702 2006-02-15 10:05:03
  6876. 101 758 2006-02-15 10:05:03
  6877. 101 774 2006-02-15 10:05:03
  6878. 101 787 2006-02-15 10:05:03
  6879. 101 828 2006-02-15 10:05:03
  6880. 101 841 2006-02-15 10:05:03
  6881. 101 928 2006-02-15 10:05:03
  6882. 101 932 2006-02-15 10:05:03
  6883. 101 936 2006-02-15 10:05:03
  6884. 101 941 2006-02-15 10:05:03
  6885. 101 978 2006-02-15 10:05:03
  6886. 101 980 2006-02-15 10:05:03
  6887. 101 984 2006-02-15 10:05:03
  6888. 101 988 2006-02-15 10:05:03
  6889. 102 20 2006-02-15 10:05:03
  6890. 102 34 2006-02-15 10:05:03
  6891. 102 53 2006-02-15 10:05:03
  6892. 102 123 2006-02-15 10:05:03
  6893. 102 124 2006-02-15 10:05:03
  6894. 102 194 2006-02-15 10:05:03
  6895. 102 200 2006-02-15 10:05:03
  6896. 102 205 2006-02-15 10:05:03
  6897. 102 268 2006-02-15 10:05:03
  6898. 102 326 2006-02-15 10:05:03
  6899. 102 329 2006-02-15 10:05:03
  6900. 102 334 2006-02-15 10:05:03
  6901. 102 351 2006-02-15 10:05:03
  6902. 102 418 2006-02-15 10:05:03
  6903. 102 431 2006-02-15 10:05:03
  6904. 102 446 2006-02-15 10:05:03
  6905. 102 485 2006-02-15 10:05:03
  6906. 102 508 2006-02-15 10:05:03
  6907. 102 517 2006-02-15 10:05:03
  6908. 102 521 2006-02-15 10:05:03
  6909. 102 526 2006-02-15 10:05:03
  6910. 102 529 2006-02-15 10:05:03
  6911. 102 544 2006-02-15 10:05:03
  6912. 102 600 2006-02-15 10:05:03
  6913. 102 605 2006-02-15 10:05:03
  6914. 102 606 2006-02-15 10:05:03
  6915. 102 624 2006-02-15 10:05:03
  6916. 102 631 2006-02-15 10:05:03
  6917. 102 712 2006-02-15 10:05:03
  6918. 102 728 2006-02-15 10:05:03
  6919. 102 744 2006-02-15 10:05:03
  6920. 102 796 2006-02-15 10:05:03
  6921. 102 802 2006-02-15 10:05:03
  6922. 102 810 2006-02-15 10:05:03
  6923. 102 828 2006-02-15 10:05:03
  6924. 102 837 2006-02-15 10:05:03
  6925. 102 845 2006-02-15 10:05:03
  6926. 102 852 2006-02-15 10:05:03
  6927. 102 958 2006-02-15 10:05:03
  6928. 102 979 2006-02-15 10:05:03
  6929. 102 980 2006-02-15 10:05:03
  6930. 103 5 2006-02-15 10:05:03
  6931. 103 118 2006-02-15 10:05:03
  6932. 103 130 2006-02-15 10:05:03
  6933. 103 197 2006-02-15 10:05:03
  6934. 103 199 2006-02-15 10:05:03
  6935. 103 206 2006-02-15 10:05:03
  6936. 103 215 2006-02-15 10:05:03
  6937. 103 221 2006-02-15 10:05:03
  6938. 103 271 2006-02-15 10:05:03
  6939. 103 285 2006-02-15 10:05:03
  6940. 103 315 2006-02-15 10:05:03
  6941. 103 318 2006-02-15 10:05:03
  6942. 103 333 2006-02-15 10:05:03
  6943. 103 347 2006-02-15 10:05:03
  6944. 103 356 2006-02-15 10:05:03
  6945. 103 360 2006-02-15 10:05:03
  6946. 103 378 2006-02-15 10:05:03
  6947. 103 437 2006-02-15 10:05:03
  6948. 103 585 2006-02-15 10:05:03
  6949. 103 609 2006-02-15 10:05:03
  6950. 103 639 2006-02-15 10:05:03
  6951. 103 643 2006-02-15 10:05:03
  6952. 103 692 2006-02-15 10:05:03
  6953. 103 735 2006-02-15 10:05:03
  6954. 103 822 2006-02-15 10:05:03
  6955. 103 895 2006-02-15 10:05:03
  6956. 103 903 2006-02-15 10:05:03
  6957. 103 912 2006-02-15 10:05:03
  6958. 103 942 2006-02-15 10:05:03
  6959. 103 956 2006-02-15 10:05:03
  6960. 104 19 2006-02-15 10:05:03
  6961. 104 39 2006-02-15 10:05:03
  6962. 104 40 2006-02-15 10:05:03
  6963. 104 59 2006-02-15 10:05:03
  6964. 104 70 2006-02-15 10:05:03
  6965. 104 136 2006-02-15 10:05:03
  6966. 104 156 2006-02-15 10:05:03
  6967. 104 184 2006-02-15 10:05:03
  6968. 104 198 2006-02-15 10:05:03
  6969. 104 233 2006-02-15 10:05:03
  6970. 104 259 2006-02-15 10:05:03
  6971. 104 287 2006-02-15 10:05:03
  6972. 104 309 2006-02-15 10:05:03
  6973. 104 313 2006-02-15 10:05:03
  6974. 104 394 2006-02-15 10:05:03
  6975. 104 401 2006-02-15 10:05:03
  6976. 104 463 2006-02-15 10:05:03
  6977. 104 506 2006-02-15 10:05:03
  6978. 104 516 2006-02-15 10:05:03
  6979. 104 583 2006-02-15 10:05:03
  6980. 104 600 2006-02-15 10:05:03
  6981. 104 607 2006-02-15 10:05:03
  6982. 104 657 2006-02-15 10:05:03
  6983. 104 677 2006-02-15 10:05:03
  6984. 104 739 2006-02-15 10:05:03
  6985. 104 892 2006-02-15 10:05:03
  6986. 104 904 2006-02-15 10:05:03
  6987. 104 926 2006-02-15 10:05:03
  6988. 104 945 2006-02-15 10:05:03
  6989. 104 984 2006-02-15 10:05:03
  6990. 104 999 2006-02-15 10:05:03
  6991. 105 12 2006-02-15 10:05:03
  6992. 105 15 2006-02-15 10:05:03
  6993. 105 21 2006-02-15 10:05:03
  6994. 105 29 2006-02-15 10:05:03
  6995. 105 42 2006-02-15 10:05:03
  6996. 105 116 2006-02-15 10:05:03
  6997. 105 158 2006-02-15 10:05:03
  6998. 105 239 2006-02-15 10:05:03
  6999. 105 280 2006-02-15 10:05:03
  7000. 105 283 2006-02-15 10:05:03
  7001. 105 315 2006-02-15 10:05:03
  7002. 105 333 2006-02-15 10:05:03
  7003. 105 372 2006-02-15 10:05:03
  7004. 105 377 2006-02-15 10:05:03
  7005. 105 530 2006-02-15 10:05:03
  7006. 105 558 2006-02-15 10:05:03
  7007. 105 561 2006-02-15 10:05:03
  7008. 105 606 2006-02-15 10:05:03
  7009. 105 649 2006-02-15 10:05:03
  7010. 105 686 2006-02-15 10:05:03
  7011. 105 750 2006-02-15 10:05:03
  7012. 105 795 2006-02-15 10:05:03
  7013. 105 831 2006-02-15 10:05:03
  7014. 105 835 2006-02-15 10:05:03
  7015. 105 858 2006-02-15 10:05:03
  7016. 105 864 2006-02-15 10:05:03
  7017. 105 893 2006-02-15 10:05:03
  7018. 105 906 2006-02-15 10:05:03
  7019. 105 910 2006-02-15 10:05:03
  7020. 105 915 2006-02-15 10:05:03
  7021. 105 954 2006-02-15 10:05:03
  7022. 105 990 2006-02-15 10:05:03
  7023. 105 993 2006-02-15 10:05:03
  7024. 105 994 2006-02-15 10:05:03
  7025. 106 44 2006-02-15 10:05:03
  7026. 106 83 2006-02-15 10:05:03
  7027. 106 108 2006-02-15 10:05:03
  7028. 106 126 2006-02-15 10:05:03
  7029. 106 136 2006-02-15 10:05:03
  7030. 106 166 2006-02-15 10:05:03
  7031. 106 189 2006-02-15 10:05:03
  7032. 106 194 2006-02-15 10:05:03
  7033. 106 204 2006-02-15 10:05:03
  7034. 106 229 2006-02-15 10:05:03
  7035. 106 241 2006-02-15 10:05:03
  7036. 106 345 2006-02-15 10:05:03
  7037. 106 365 2006-02-15 10:05:03
  7038. 106 399 2006-02-15 10:05:03
  7039. 106 439 2006-02-15 10:05:03
  7040. 106 457 2006-02-15 10:05:03
  7041. 106 469 2006-02-15 10:05:03
  7042. 106 500 2006-02-15 10:05:03
  7043. 106 505 2006-02-15 10:05:03
  7044. 106 559 2006-02-15 10:05:03
  7045. 106 566 2006-02-15 10:05:03
  7046. 106 585 2006-02-15 10:05:03
  7047. 106 639 2006-02-15 10:05:03
  7048. 106 654 2006-02-15 10:05:03
  7049. 106 659 2006-02-15 10:05:03
  7050. 106 675 2006-02-15 10:05:03
  7051. 106 687 2006-02-15 10:05:03
  7052. 106 752 2006-02-15 10:05:03
  7053. 106 763 2006-02-15 10:05:03
  7054. 106 780 2006-02-15 10:05:03
  7055. 106 858 2006-02-15 10:05:03
  7056. 106 866 2006-02-15 10:05:03
  7057. 106 881 2006-02-15 10:05:03
  7058. 106 894 2006-02-15 10:05:03
  7059. 106 934 2006-02-15 10:05:03
  7060. 107 62 2006-02-15 10:05:03
  7061. 107 112 2006-02-15 10:05:03
  7062. 107 133 2006-02-15 10:05:03
  7063. 107 136 2006-02-15 10:05:03
  7064. 107 138 2006-02-15 10:05:03
  7065. 107 162 2006-02-15 10:05:03
  7066. 107 165 2006-02-15 10:05:03
  7067. 107 172 2006-02-15 10:05:03
  7068. 107 209 2006-02-15 10:05:03
  7069. 107 220 2006-02-15 10:05:03
  7070. 107 239 2006-02-15 10:05:03
  7071. 107 277 2006-02-15 10:05:03
  7072. 107 292 2006-02-15 10:05:03
  7073. 107 338 2006-02-15 10:05:03
  7074. 107 348 2006-02-15 10:05:03
  7075. 107 369 2006-02-15 10:05:03
  7076. 107 388 2006-02-15 10:05:03
  7077. 107 392 2006-02-15 10:05:03
  7078. 107 409 2006-02-15 10:05:03
  7079. 107 430 2006-02-15 10:05:03
  7080. 107 445 2006-02-15 10:05:03
  7081. 107 454 2006-02-15 10:05:03
  7082. 107 458 2006-02-15 10:05:03
  7083. 107 467 2006-02-15 10:05:03
  7084. 107 520 2006-02-15 10:05:03
  7085. 107 534 2006-02-15 10:05:03
  7086. 107 548 2006-02-15 10:05:03
  7087. 107 571 2006-02-15 10:05:03
  7088. 107 574 2006-02-15 10:05:03
  7089. 107 603 2006-02-15 10:05:03
  7090. 107 606 2006-02-15 10:05:03
  7091. 107 637 2006-02-15 10:05:03
  7092. 107 774 2006-02-15 10:05:03
  7093. 107 781 2006-02-15 10:05:03
  7094. 107 796 2006-02-15 10:05:03
  7095. 107 831 2006-02-15 10:05:03
  7096. 107 849 2006-02-15 10:05:03
  7097. 107 859 2006-02-15 10:05:03
  7098. 107 879 2006-02-15 10:05:03
  7099. 107 905 2006-02-15 10:05:03
  7100. 107 973 2006-02-15 10:05:03
  7101. 107 977 2006-02-15 10:05:03
  7102. 108 1 2006-02-15 10:05:03
  7103. 108 6 2006-02-15 10:05:03
  7104. 108 9 2006-02-15 10:05:03
  7105. 108 137 2006-02-15 10:05:03
  7106. 108 208 2006-02-15 10:05:03
  7107. 108 219 2006-02-15 10:05:03
  7108. 108 242 2006-02-15 10:05:03
  7109. 108 278 2006-02-15 10:05:03
  7110. 108 302 2006-02-15 10:05:03
  7111. 108 350 2006-02-15 10:05:03
  7112. 108 378 2006-02-15 10:05:03
  7113. 108 379 2006-02-15 10:05:03
  7114. 108 495 2006-02-15 10:05:03
  7115. 108 507 2006-02-15 10:05:03
  7116. 108 517 2006-02-15 10:05:03
  7117. 108 561 2006-02-15 10:05:03
  7118. 108 567 2006-02-15 10:05:03
  7119. 108 648 2006-02-15 10:05:03
  7120. 108 652 2006-02-15 10:05:03
  7121. 108 655 2006-02-15 10:05:03
  7122. 108 673 2006-02-15 10:05:03
  7123. 108 693 2006-02-15 10:05:03
  7124. 108 696 2006-02-15 10:05:03
  7125. 108 702 2006-02-15 10:05:03
  7126. 108 721 2006-02-15 10:05:03
  7127. 108 733 2006-02-15 10:05:03
  7128. 108 741 2006-02-15 10:05:03
  7129. 108 744 2006-02-15 10:05:03
  7130. 108 887 2006-02-15 10:05:03
  7131. 108 892 2006-02-15 10:05:03
  7132. 108 894 2006-02-15 10:05:03
  7133. 108 920 2006-02-15 10:05:03
  7134. 108 958 2006-02-15 10:05:03
  7135. 108 966 2006-02-15 10:05:03
  7136. 109 12 2006-02-15 10:05:03
  7137. 109 48 2006-02-15 10:05:03
  7138. 109 77 2006-02-15 10:05:03
  7139. 109 157 2006-02-15 10:05:03
  7140. 109 174 2006-02-15 10:05:03
  7141. 109 190 2006-02-15 10:05:03
  7142. 109 243 2006-02-15 10:05:03
  7143. 109 281 2006-02-15 10:05:03
  7144. 109 393 2006-02-15 10:05:03
  7145. 109 463 2006-02-15 10:05:03
  7146. 109 622 2006-02-15 10:05:03
  7147. 109 657 2006-02-15 10:05:03
  7148. 109 694 2006-02-15 10:05:03
  7149. 109 700 2006-02-15 10:05:03
  7150. 109 732 2006-02-15 10:05:03
  7151. 109 753 2006-02-15 10:05:03
  7152. 109 785 2006-02-15 10:05:03
  7153. 109 786 2006-02-15 10:05:03
  7154. 109 863 2006-02-15 10:05:03
  7155. 109 885 2006-02-15 10:05:03
  7156. 109 955 2006-02-15 10:05:03
  7157. 109 967 2006-02-15 10:05:03
  7158. 110 8 2006-02-15 10:05:03
  7159. 110 27 2006-02-15 10:05:03
  7160. 110 62 2006-02-15 10:05:03
  7161. 110 120 2006-02-15 10:05:03
  7162. 110 126 2006-02-15 10:05:03
  7163. 110 156 2006-02-15 10:05:03
  7164. 110 292 2006-02-15 10:05:03
  7165. 110 343 2006-02-15 10:05:03
  7166. 110 360 2006-02-15 10:05:03
  7167. 110 369 2006-02-15 10:05:03
  7168. 110 435 2006-02-15 10:05:03
  7169. 110 513 2006-02-15 10:05:03
  7170. 110 525 2006-02-15 10:05:03
  7171. 110 539 2006-02-15 10:05:03
  7172. 110 545 2006-02-15 10:05:03
  7173. 110 625 2006-02-15 10:05:03
  7174. 110 650 2006-02-15 10:05:03
  7175. 110 801 2006-02-15 10:05:03
  7176. 110 912 2006-02-15 10:05:03
  7177. 110 961 2006-02-15 10:05:03
  7178. 110 987 2006-02-15 10:05:03
  7179. 111 61 2006-02-15 10:05:03
  7180. 111 78 2006-02-15 10:05:03
  7181. 111 98 2006-02-15 10:05:03
  7182. 111 162 2006-02-15 10:05:03
  7183. 111 179 2006-02-15 10:05:03
  7184. 111 194 2006-02-15 10:05:03
  7185. 111 325 2006-02-15 10:05:03
  7186. 111 359 2006-02-15 10:05:03
  7187. 111 382 2006-02-15 10:05:03
  7188. 111 403 2006-02-15 10:05:03
  7189. 111 407 2006-02-15 10:05:03
  7190. 111 414 2006-02-15 10:05:03
  7191. 111 474 2006-02-15 10:05:03
  7192. 111 489 2006-02-15 10:05:03
  7193. 111 508 2006-02-15 10:05:03
  7194. 111 555 2006-02-15 10:05:03
  7195. 111 603 2006-02-15 10:05:03
  7196. 111 608 2006-02-15 10:05:03
  7197. 111 643 2006-02-15 10:05:03
  7198. 111 669 2006-02-15 10:05:03
  7199. 111 679 2006-02-15 10:05:03
  7200. 111 680 2006-02-15 10:05:03
  7201. 111 699 2006-02-15 10:05:03
  7202. 111 731 2006-02-15 10:05:03
  7203. 111 732 2006-02-15 10:05:03
  7204. 111 737 2006-02-15 10:05:03
  7205. 111 744 2006-02-15 10:05:03
  7206. 111 777 2006-02-15 10:05:03
  7207. 111 847 2006-02-15 10:05:03
  7208. 111 894 2006-02-15 10:05:03
  7209. 111 919 2006-02-15 10:05:03
  7210. 111 962 2006-02-15 10:05:03
  7211. 111 973 2006-02-15 10:05:03
  7212. 112 34 2006-02-15 10:05:03
  7213. 112 37 2006-02-15 10:05:03
  7214. 112 151 2006-02-15 10:05:03
  7215. 112 173 2006-02-15 10:05:03
  7216. 112 188 2006-02-15 10:05:03
  7217. 112 231 2006-02-15 10:05:03
  7218. 112 312 2006-02-15 10:05:03
  7219. 112 322 2006-02-15 10:05:03
  7220. 112 443 2006-02-15 10:05:03
  7221. 112 450 2006-02-15 10:05:03
  7222. 112 565 2006-02-15 10:05:03
  7223. 112 603 2006-02-15 10:05:03
  7224. 112 606 2006-02-15 10:05:03
  7225. 112 654 2006-02-15 10:05:03
  7226. 112 666 2006-02-15 10:05:03
  7227. 112 700 2006-02-15 10:05:03
  7228. 112 728 2006-02-15 10:05:03
  7229. 112 772 2006-02-15 10:05:03
  7230. 112 796 2006-02-15 10:05:03
  7231. 112 817 2006-02-15 10:05:03
  7232. 112 829 2006-02-15 10:05:03
  7233. 112 856 2006-02-15 10:05:03
  7234. 112 865 2006-02-15 10:05:03
  7235. 112 869 2006-02-15 10:05:03
  7236. 112 988 2006-02-15 10:05:03
  7237. 113 35 2006-02-15 10:05:03
  7238. 113 84 2006-02-15 10:05:03
  7239. 113 116 2006-02-15 10:05:03
  7240. 113 181 2006-02-15 10:05:03
  7241. 113 218 2006-02-15 10:05:03
  7242. 113 249 2006-02-15 10:05:03
  7243. 113 258 2006-02-15 10:05:03
  7244. 113 292 2006-02-15 10:05:03
  7245. 113 322 2006-02-15 10:05:03
  7246. 113 353 2006-02-15 10:05:03
  7247. 113 403 2006-02-15 10:05:03
  7248. 113 525 2006-02-15 10:05:03
  7249. 113 642 2006-02-15 10:05:03
  7250. 113 656 2006-02-15 10:05:03
  7251. 113 674 2006-02-15 10:05:03
  7252. 113 680 2006-02-15 10:05:03
  7253. 113 700 2006-02-15 10:05:03
  7254. 113 719 2006-02-15 10:05:03
  7255. 113 723 2006-02-15 10:05:03
  7256. 113 726 2006-02-15 10:05:03
  7257. 113 732 2006-02-15 10:05:03
  7258. 113 748 2006-02-15 10:05:03
  7259. 113 838 2006-02-15 10:05:03
  7260. 113 890 2006-02-15 10:05:03
  7261. 113 921 2006-02-15 10:05:03
  7262. 113 969 2006-02-15 10:05:03
  7263. 113 981 2006-02-15 10:05:03
  7264. 114 13 2006-02-15 10:05:03
  7265. 114 68 2006-02-15 10:05:03
  7266. 114 90 2006-02-15 10:05:03
  7267. 114 162 2006-02-15 10:05:03
  7268. 114 188 2006-02-15 10:05:03
  7269. 114 194 2006-02-15 10:05:03
  7270. 114 210 2006-02-15 10:05:03
  7271. 114 237 2006-02-15 10:05:03
  7272. 114 254 2006-02-15 10:05:03
  7273. 114 305 2006-02-15 10:05:03
  7274. 114 339 2006-02-15 10:05:03
  7275. 114 420 2006-02-15 10:05:03
  7276. 114 425 2006-02-15 10:05:03
  7277. 114 452 2006-02-15 10:05:03
  7278. 114 538 2006-02-15 10:05:03
  7279. 114 619 2006-02-15 10:05:03
  7280. 114 757 2006-02-15 10:05:03
  7281. 114 807 2006-02-15 10:05:03
  7282. 114 827 2006-02-15 10:05:03
  7283. 114 841 2006-02-15 10:05:03
  7284. 114 861 2006-02-15 10:05:03
  7285. 114 866 2006-02-15 10:05:03
  7286. 114 913 2006-02-15 10:05:03
  7287. 114 961 2006-02-15 10:05:03
  7288. 114 993 2006-02-15 10:05:03
  7289. 115 49 2006-02-15 10:05:03
  7290. 115 52 2006-02-15 10:05:03
  7291. 115 245 2006-02-15 10:05:03
  7292. 115 246 2006-02-15 10:05:03
  7293. 115 277 2006-02-15 10:05:03
  7294. 115 302 2006-02-15 10:05:03
  7295. 115 379 2006-02-15 10:05:03
  7296. 115 383 2006-02-15 10:05:03
  7297. 115 391 2006-02-15 10:05:03
  7298. 115 428 2006-02-15 10:05:03
  7299. 115 506 2006-02-15 10:05:03
  7300. 115 531 2006-02-15 10:05:03
  7301. 115 607 2006-02-15 10:05:03
  7302. 115 615 2006-02-15 10:05:03
  7303. 115 661 2006-02-15 10:05:03
  7304. 115 671 2006-02-15 10:05:03
  7305. 115 686 2006-02-15 10:05:03
  7306. 115 703 2006-02-15 10:05:03
  7307. 115 714 2006-02-15 10:05:03
  7308. 115 740 2006-02-15 10:05:03
  7309. 115 754 2006-02-15 10:05:03
  7310. 115 846 2006-02-15 10:05:03
  7311. 115 887 2006-02-15 10:05:03
  7312. 115 952 2006-02-15 10:05:03
  7313. 115 955 2006-02-15 10:05:03
  7314. 115 966 2006-02-15 10:05:03
  7315. 115 985 2006-02-15 10:05:03
  7316. 115 994 2006-02-15 10:05:03
  7317. 116 36 2006-02-15 10:05:03
  7318. 116 48 2006-02-15 10:05:03
  7319. 116 88 2006-02-15 10:05:03
  7320. 116 90 2006-02-15 10:05:03
  7321. 116 105 2006-02-15 10:05:03
  7322. 116 128 2006-02-15 10:05:03
  7323. 116 336 2006-02-15 10:05:03
  7324. 116 338 2006-02-15 10:05:03
  7325. 116 384 2006-02-15 10:05:03
  7326. 116 412 2006-02-15 10:05:03
  7327. 116 420 2006-02-15 10:05:03
  7328. 116 451 2006-02-15 10:05:03
  7329. 116 481 2006-02-15 10:05:03
  7330. 116 492 2006-02-15 10:05:03
  7331. 116 584 2006-02-15 10:05:03
  7332. 116 606 2006-02-15 10:05:03
  7333. 116 622 2006-02-15 10:05:03
  7334. 116 647 2006-02-15 10:05:03
  7335. 116 653 2006-02-15 10:05:03
  7336. 116 742 2006-02-15 10:05:03
  7337. 116 784 2006-02-15 10:05:03
  7338. 116 844 2006-02-15 10:05:03
  7339. 116 939 2006-02-15 10:05:03
  7340. 116 956 2006-02-15 10:05:03
  7341. 117 10 2006-02-15 10:05:03
  7342. 117 15 2006-02-15 10:05:03
  7343. 117 42 2006-02-15 10:05:03
  7344. 117 167 2006-02-15 10:05:03
  7345. 117 178 2006-02-15 10:05:03
  7346. 117 190 2006-02-15 10:05:03
  7347. 117 197 2006-02-15 10:05:03
  7348. 117 224 2006-02-15 10:05:03
  7349. 117 246 2006-02-15 10:05:03
  7350. 117 273 2006-02-15 10:05:03
  7351. 117 298 2006-02-15 10:05:03
  7352. 117 316 2006-02-15 10:05:03
  7353. 117 337 2006-02-15 10:05:03
  7354. 117 395 2006-02-15 10:05:03
  7355. 117 423 2006-02-15 10:05:03
  7356. 117 432 2006-02-15 10:05:03
  7357. 117 459 2006-02-15 10:05:03
  7358. 117 468 2006-02-15 10:05:03
  7359. 117 550 2006-02-15 10:05:03
  7360. 117 578 2006-02-15 10:05:03
  7361. 117 707 2006-02-15 10:05:03
  7362. 117 710 2006-02-15 10:05:03
  7363. 117 738 2006-02-15 10:05:03
  7364. 117 739 2006-02-15 10:05:03
  7365. 117 778 2006-02-15 10:05:03
  7366. 117 783 2006-02-15 10:05:03
  7367. 117 785 2006-02-15 10:05:03
  7368. 117 797 2006-02-15 10:05:03
  7369. 117 812 2006-02-15 10:05:03
  7370. 117 831 2006-02-15 10:05:03
  7371. 117 864 2006-02-15 10:05:03
  7372. 117 887 2006-02-15 10:05:03
  7373. 117 926 2006-02-15 10:05:03
  7374. 118 35 2006-02-15 10:05:03
  7375. 118 39 2006-02-15 10:05:03
  7376. 118 41 2006-02-15 10:05:03
  7377. 118 49 2006-02-15 10:05:03
  7378. 118 55 2006-02-15 10:05:03
  7379. 118 136 2006-02-15 10:05:03
  7380. 118 141 2006-02-15 10:05:03
  7381. 118 151 2006-02-15 10:05:03
  7382. 118 311 2006-02-15 10:05:03
  7383. 118 384 2006-02-15 10:05:03
  7384. 118 399 2006-02-15 10:05:03
  7385. 118 499 2006-02-15 10:05:03
  7386. 118 517 2006-02-15 10:05:03
  7387. 118 553 2006-02-15 10:05:03
  7388. 118 558 2006-02-15 10:05:03
  7389. 118 572 2006-02-15 10:05:03
  7390. 118 641 2006-02-15 10:05:03
  7391. 118 656 2006-02-15 10:05:03
  7392. 118 695 2006-02-15 10:05:03
  7393. 118 735 2006-02-15 10:05:03
  7394. 118 788 2006-02-15 10:05:03
  7395. 118 852 2006-02-15 10:05:03
  7396. 118 938 2006-02-15 10:05:03
  7397. 118 957 2006-02-15 10:05:03
  7398. 118 969 2006-02-15 10:05:03
  7399. 119 21 2006-02-15 10:05:03
  7400. 119 49 2006-02-15 10:05:03
  7401. 119 64 2006-02-15 10:05:03
  7402. 119 87 2006-02-15 10:05:03
  7403. 119 143 2006-02-15 10:05:03
  7404. 119 171 2006-02-15 10:05:03
  7405. 119 172 2006-02-15 10:05:03
  7406. 119 173 2006-02-15 10:05:03
  7407. 119 381 2006-02-15 10:05:03
  7408. 119 394 2006-02-15 10:05:03
  7409. 119 412 2006-02-15 10:05:03
  7410. 119 418 2006-02-15 10:05:03
  7411. 119 454 2006-02-15 10:05:03
  7412. 119 509 2006-02-15 10:05:03
  7413. 119 521 2006-02-15 10:05:03
  7414. 119 567 2006-02-15 10:05:03
  7415. 119 570 2006-02-15 10:05:03
  7416. 119 592 2006-02-15 10:05:03
  7417. 119 614 2006-02-15 10:05:03
  7418. 119 636 2006-02-15 10:05:03
  7419. 119 649 2006-02-15 10:05:03
  7420. 119 693 2006-02-15 10:05:03
  7421. 119 738 2006-02-15 10:05:03
  7422. 119 751 2006-02-15 10:05:03
  7423. 119 782 2006-02-15 10:05:03
  7424. 119 786 2006-02-15 10:05:03
  7425. 119 788 2006-02-15 10:05:03
  7426. 119 802 2006-02-15 10:05:03
  7427. 119 858 2006-02-15 10:05:03
  7428. 119 868 2006-02-15 10:05:03
  7429. 119 900 2006-02-15 10:05:03
  7430. 119 939 2006-02-15 10:05:03
  7431. 120 57 2006-02-15 10:05:03
  7432. 120 63 2006-02-15 10:05:03
  7433. 120 144 2006-02-15 10:05:03
  7434. 120 149 2006-02-15 10:05:03
  7435. 120 208 2006-02-15 10:05:03
  7436. 120 231 2006-02-15 10:05:03
  7437. 120 238 2006-02-15 10:05:03
  7438. 120 255 2006-02-15 10:05:03
  7439. 120 414 2006-02-15 10:05:03
  7440. 120 424 2006-02-15 10:05:03
  7441. 120 489 2006-02-15 10:05:03
  7442. 120 513 2006-02-15 10:05:03
  7443. 120 590 2006-02-15 10:05:03
  7444. 120 641 2006-02-15 10:05:03
  7445. 120 642 2006-02-15 10:05:03
  7446. 120 659 2006-02-15 10:05:03
  7447. 120 682 2006-02-15 10:05:03
  7448. 120 691 2006-02-15 10:05:03
  7449. 120 715 2006-02-15 10:05:03
  7450. 120 717 2006-02-15 10:05:03
  7451. 120 722 2006-02-15 10:05:03
  7452. 120 746 2006-02-15 10:05:03
  7453. 120 830 2006-02-15 10:05:03
  7454. 120 894 2006-02-15 10:05:03
  7455. 120 898 2006-02-15 10:05:03
  7456. 120 911 2006-02-15 10:05:03
  7457. 120 994 2006-02-15 10:05:03
  7458. 121 141 2006-02-15 10:05:03
  7459. 121 154 2006-02-15 10:05:03
  7460. 121 161 2006-02-15 10:05:03
  7461. 121 170 2006-02-15 10:05:03
  7462. 121 186 2006-02-15 10:05:03
  7463. 121 198 2006-02-15 10:05:03
  7464. 121 220 2006-02-15 10:05:03
  7465. 121 222 2006-02-15 10:05:03
  7466. 121 284 2006-02-15 10:05:03
  7467. 121 297 2006-02-15 10:05:03
  7468. 121 338 2006-02-15 10:05:03
  7469. 121 353 2006-02-15 10:05:03
  7470. 121 449 2006-02-15 10:05:03
  7471. 121 479 2006-02-15 10:05:03
  7472. 121 517 2006-02-15 10:05:03
  7473. 121 633 2006-02-15 10:05:03
  7474. 121 654 2006-02-15 10:05:03
  7475. 121 658 2006-02-15 10:05:03
  7476. 121 666 2006-02-15 10:05:03
  7477. 121 771 2006-02-15 10:05:03
  7478. 121 780 2006-02-15 10:05:03
  7479. 121 847 2006-02-15 10:05:03
  7480. 121 884 2006-02-15 10:05:03
  7481. 121 885 2006-02-15 10:05:03
  7482. 121 966 2006-02-15 10:05:03
  7483. 122 22 2006-02-15 10:05:03
  7484. 122 29 2006-02-15 10:05:03
  7485. 122 76 2006-02-15 10:05:03
  7486. 122 83 2006-02-15 10:05:03
  7487. 122 157 2006-02-15 10:05:03
  7488. 122 158 2006-02-15 10:05:03
  7489. 122 166 2006-02-15 10:05:03
  7490. 122 227 2006-02-15 10:05:03
  7491. 122 238 2006-02-15 10:05:03
  7492. 122 300 2006-02-15 10:05:03
  7493. 122 307 2006-02-15 10:05:03
  7494. 122 363 2006-02-15 10:05:03
  7495. 122 470 2006-02-15 10:05:03
  7496. 122 489 2006-02-15 10:05:03
  7497. 122 491 2006-02-15 10:05:03
  7498. 122 542 2006-02-15 10:05:03
  7499. 122 620 2006-02-15 10:05:03
  7500. 122 649 2006-02-15 10:05:03
  7501. 122 654 2006-02-15 10:05:03
  7502. 122 673 2006-02-15 10:05:03
  7503. 122 718 2006-02-15 10:05:03
  7504. 122 795 2006-02-15 10:05:03
  7505. 122 957 2006-02-15 10:05:03
  7506. 122 961 2006-02-15 10:05:03
  7507. 122 998 2006-02-15 10:05:03
  7508. 123 3 2006-02-15 10:05:03
  7509. 123 43 2006-02-15 10:05:03
  7510. 123 67 2006-02-15 10:05:03
  7511. 123 105 2006-02-15 10:05:03
  7512. 123 148 2006-02-15 10:05:03
  7513. 123 151 2006-02-15 10:05:03
  7514. 123 185 2006-02-15 10:05:03
  7515. 123 223 2006-02-15 10:05:03
  7516. 123 234 2006-02-15 10:05:03
  7517. 123 245 2006-02-15 10:05:03
  7518. 123 246 2006-02-15 10:05:03
  7519. 123 266 2006-02-15 10:05:03
  7520. 123 286 2006-02-15 10:05:03
  7521. 123 429 2006-02-15 10:05:03
  7522. 123 442 2006-02-15 10:05:03
  7523. 123 446 2006-02-15 10:05:03
  7524. 123 479 2006-02-15 10:05:03
  7525. 123 480 2006-02-15 10:05:03
  7526. 123 494 2006-02-15 10:05:03
  7527. 123 503 2006-02-15 10:05:03
  7528. 123 530 2006-02-15 10:05:03
  7529. 123 576 2006-02-15 10:05:03
  7530. 123 577 2006-02-15 10:05:03
  7531. 123 589 2006-02-15 10:05:03
  7532. 123 593 2006-02-15 10:05:03
  7533. 123 725 2006-02-15 10:05:03
  7534. 123 730 2006-02-15 10:05:03
  7535. 123 786 2006-02-15 10:05:03
  7536. 123 860 2006-02-15 10:05:03
  7537. 123 892 2006-02-15 10:05:03
  7538. 123 926 2006-02-15 10:05:03
  7539. 123 988 2006-02-15 10:05:03
  7540. 124 22 2006-02-15 10:05:03
  7541. 124 64 2006-02-15 10:05:03
  7542. 124 106 2006-02-15 10:05:03
  7543. 124 113 2006-02-15 10:05:03
  7544. 124 190 2006-02-15 10:05:03
  7545. 124 246 2006-02-15 10:05:03
  7546. 124 260 2006-02-15 10:05:03
  7547. 124 263 2006-02-15 10:05:03
  7548. 124 289 2006-02-15 10:05:03
  7549. 124 306 2006-02-15 10:05:03
  7550. 124 312 2006-02-15 10:05:03
  7551. 124 322 2006-02-15 10:05:03
  7552. 124 343 2006-02-15 10:05:03
  7553. 124 449 2006-02-15 10:05:03
  7554. 124 468 2006-02-15 10:05:03
  7555. 124 539 2006-02-15 10:05:03
  7556. 124 601 2006-02-15 10:05:03
  7557. 124 726 2006-02-15 10:05:03
  7558. 124 742 2006-02-15 10:05:03
  7559. 124 775 2006-02-15 10:05:03
  7560. 124 785 2006-02-15 10:05:03
  7561. 124 814 2006-02-15 10:05:03
  7562. 124 858 2006-02-15 10:05:03
  7563. 124 882 2006-02-15 10:05:03
  7564. 124 987 2006-02-15 10:05:03
  7565. 124 997 2006-02-15 10:05:03
  7566. 125 62 2006-02-15 10:05:03
  7567. 125 98 2006-02-15 10:05:03
  7568. 125 100 2006-02-15 10:05:03
  7569. 125 114 2006-02-15 10:05:03
  7570. 125 175 2006-02-15 10:05:03
  7571. 125 188 2006-02-15 10:05:03
  7572. 125 204 2006-02-15 10:05:03
  7573. 125 238 2006-02-15 10:05:03
  7574. 125 250 2006-02-15 10:05:03
  7575. 125 324 2006-02-15 10:05:03
  7576. 125 338 2006-02-15 10:05:03
  7577. 125 361 2006-02-15 10:05:03
  7578. 125 367 2006-02-15 10:05:03
  7579. 125 395 2006-02-15 10:05:03
  7580. 125 414 2006-02-15 10:05:03
  7581. 125 428 2006-02-15 10:05:03
  7582. 125 429 2006-02-15 10:05:03
  7583. 125 450 2006-02-15 10:05:03
  7584. 125 497 2006-02-15 10:05:03
  7585. 125 557 2006-02-15 10:05:03
  7586. 125 568 2006-02-15 10:05:03
  7587. 125 584 2006-02-15 10:05:03
  7588. 125 602 2006-02-15 10:05:03
  7589. 125 623 2006-02-15 10:05:03
  7590. 125 664 2006-02-15 10:05:03
  7591. 125 683 2006-02-15 10:05:03
  7592. 125 710 2006-02-15 10:05:03
  7593. 125 877 2006-02-15 10:05:03
  7594. 125 908 2006-02-15 10:05:03
  7595. 125 949 2006-02-15 10:05:03
  7596. 125 965 2006-02-15 10:05:03
  7597. 126 21 2006-02-15 10:05:03
  7598. 126 34 2006-02-15 10:05:03
  7599. 126 43 2006-02-15 10:05:03
  7600. 126 58 2006-02-15 10:05:03
  7601. 126 85 2006-02-15 10:05:03
  7602. 126 96 2006-02-15 10:05:03
  7603. 126 193 2006-02-15 10:05:03
  7604. 126 194 2006-02-15 10:05:03
  7605. 126 199 2006-02-15 10:05:03
  7606. 126 256 2006-02-15 10:05:03
  7607. 126 263 2006-02-15 10:05:03
  7608. 126 288 2006-02-15 10:05:03
  7609. 126 317 2006-02-15 10:05:03
  7610. 126 347 2006-02-15 10:05:03
  7611. 126 369 2006-02-15 10:05:03
  7612. 126 370 2006-02-15 10:05:03
  7613. 126 419 2006-02-15 10:05:03
  7614. 126 468 2006-02-15 10:05:03
  7615. 126 469 2006-02-15 10:05:03
  7616. 126 545 2006-02-15 10:05:03
  7617. 126 685 2006-02-15 10:05:03
  7618. 126 836 2006-02-15 10:05:03
  7619. 126 860 2006-02-15 10:05:03
  7620. 127 36 2006-02-15 10:05:03
  7621. 127 47 2006-02-15 10:05:03
  7622. 127 48 2006-02-15 10:05:03
  7623. 127 79 2006-02-15 10:05:03
  7624. 127 119 2006-02-15 10:05:03
  7625. 127 141 2006-02-15 10:05:03
  7626. 127 157 2006-02-15 10:05:03
  7627. 127 202 2006-02-15 10:05:03
  7628. 127 286 2006-02-15 10:05:03
  7629. 127 333 2006-02-15 10:05:03
  7630. 127 354 2006-02-15 10:05:03
  7631. 127 366 2006-02-15 10:05:03
  7632. 127 382 2006-02-15 10:05:03
  7633. 127 388 2006-02-15 10:05:03
  7634. 127 411 2006-02-15 10:05:03
  7635. 127 459 2006-02-15 10:05:03
  7636. 127 553 2006-02-15 10:05:03
  7637. 127 573 2006-02-15 10:05:03
  7638. 127 613 2006-02-15 10:05:03
  7639. 127 617 2006-02-15 10:05:03
  7640. 127 641 2006-02-15 10:05:03
  7641. 127 710 2006-02-15 10:05:03
  7642. 127 727 2006-02-15 10:05:03
  7643. 127 749 2006-02-15 10:05:03
  7644. 127 763 2006-02-15 10:05:03
  7645. 127 771 2006-02-15 10:05:03
  7646. 127 791 2006-02-15 10:05:03
  7647. 127 819 2006-02-15 10:05:03
  7648. 127 839 2006-02-15 10:05:03
  7649. 127 846 2006-02-15 10:05:03
  7650. 127 911 2006-02-15 10:05:03
  7651. 127 953 2006-02-15 10:05:03
  7652. 127 970 2006-02-15 10:05:03
  7653. 128 26 2006-02-15 10:05:03
  7654. 128 82 2006-02-15 10:05:03
  7655. 128 119 2006-02-15 10:05:03
  7656. 128 168 2006-02-15 10:05:03
  7657. 128 212 2006-02-15 10:05:03
  7658. 128 238 2006-02-15 10:05:03
  7659. 128 299 2006-02-15 10:05:03
  7660. 128 312 2006-02-15 10:05:03
  7661. 128 326 2006-02-15 10:05:03
  7662. 128 336 2006-02-15 10:05:03
  7663. 128 345 2006-02-15 10:05:03
  7664. 128 407 2006-02-15 10:05:03
  7665. 128 462 2006-02-15 10:05:03
  7666. 128 485 2006-02-15 10:05:03
  7667. 128 516 2006-02-15 10:05:03
  7668. 128 564 2006-02-15 10:05:03
  7669. 128 614 2006-02-15 10:05:03
  7670. 128 650 2006-02-15 10:05:03
  7671. 128 665 2006-02-15 10:05:03
  7672. 128 671 2006-02-15 10:05:03
  7673. 128 693 2006-02-15 10:05:03
  7674. 128 696 2006-02-15 10:05:03
  7675. 128 759 2006-02-15 10:05:03
  7676. 128 774 2006-02-15 10:05:03
  7677. 128 814 2006-02-15 10:05:03
  7678. 128 899 2006-02-15 10:05:03
  7679. 128 912 2006-02-15 10:05:03
  7680. 128 944 2006-02-15 10:05:03
  7681. 128 949 2006-02-15 10:05:03
  7682. 128 965 2006-02-15 10:05:03
  7683. 129 56 2006-02-15 10:05:03
  7684. 129 89 2006-02-15 10:05:03
  7685. 129 101 2006-02-15 10:05:03
  7686. 129 166 2006-02-15 10:05:03
  7687. 129 202 2006-02-15 10:05:03
  7688. 129 230 2006-02-15 10:05:03
  7689. 129 247 2006-02-15 10:05:03
  7690. 129 249 2006-02-15 10:05:03
  7691. 129 348 2006-02-15 10:05:03
  7692. 129 367 2006-02-15 10:05:03
  7693. 129 391 2006-02-15 10:05:03
  7694. 129 418 2006-02-15 10:05:03
  7695. 129 431 2006-02-15 10:05:03
  7696. 129 452 2006-02-15 10:05:03
  7697. 129 471 2006-02-15 10:05:03
  7698. 129 520 2006-02-15 10:05:03
  7699. 129 597 2006-02-15 10:05:03
  7700. 129 602 2006-02-15 10:05:03
  7701. 129 640 2006-02-15 10:05:03
  7702. 129 669 2006-02-15 10:05:03
  7703. 129 684 2006-02-15 10:05:03
  7704. 129 705 2006-02-15 10:05:03
  7705. 129 805 2006-02-15 10:05:03
  7706. 129 826 2006-02-15 10:05:03
  7707. 129 834 2006-02-15 10:05:03
  7708. 129 857 2006-02-15 10:05:03
  7709. 129 910 2006-02-15 10:05:03
  7710. 129 920 2006-02-15 10:05:03
  7711. 129 938 2006-02-15 10:05:03
  7712. 129 962 2006-02-15 10:05:03
  7713. 130 9 2006-02-15 10:05:03
  7714. 130 26 2006-02-15 10:05:03
  7715. 130 37 2006-02-15 10:05:03
  7716. 130 43 2006-02-15 10:05:03
  7717. 130 49 2006-02-15 10:05:03
  7718. 130 57 2006-02-15 10:05:03
  7719. 130 107 2006-02-15 10:05:03
  7720. 130 112 2006-02-15 10:05:03
  7721. 130 208 2006-02-15 10:05:03
  7722. 130 326 2006-02-15 10:05:03
  7723. 130 375 2006-02-15 10:05:03
  7724. 130 416 2006-02-15 10:05:03
  7725. 130 431 2006-02-15 10:05:03
  7726. 130 452 2006-02-15 10:05:03
  7727. 130 453 2006-02-15 10:05:03
  7728. 130 478 2006-02-15 10:05:03
  7729. 130 507 2006-02-15 10:05:03
  7730. 130 525 2006-02-15 10:05:03
  7731. 130 549 2006-02-15 10:05:03
  7732. 130 592 2006-02-15 10:05:03
  7733. 130 702 2006-02-15 10:05:03
  7734. 130 725 2006-02-15 10:05:03
  7735. 130 764 2006-02-15 10:05:03
  7736. 130 809 2006-02-15 10:05:03
  7737. 130 869 2006-02-15 10:05:03
  7738. 130 930 2006-02-15 10:05:03
  7739. 130 981 2006-02-15 10:05:03
  7740. 131 48 2006-02-15 10:05:03
  7741. 131 66 2006-02-15 10:05:03
  7742. 131 94 2006-02-15 10:05:03
  7743. 131 120 2006-02-15 10:05:03
  7744. 131 147 2006-02-15 10:05:03
  7745. 131 206 2006-02-15 10:05:03
  7746. 131 320 2006-02-15 10:05:03
  7747. 131 383 2006-02-15 10:05:03
  7748. 131 432 2006-02-15 10:05:03
  7749. 131 436 2006-02-15 10:05:03
  7750. 131 450 2006-02-15 10:05:03
  7751. 131 479 2006-02-15 10:05:03
  7752. 131 494 2006-02-15 10:05:03
  7753. 131 515 2006-02-15 10:05:03
  7754. 131 539 2006-02-15 10:05:03
  7755. 131 590 2006-02-15 10:05:03
  7756. 131 647 2006-02-15 10:05:03
  7757. 131 693 2006-02-15 10:05:03
  7758. 131 713 2006-02-15 10:05:03
  7759. 131 770 2006-02-15 10:05:03
  7760. 131 798 2006-02-15 10:05:03
  7761. 131 809 2006-02-15 10:05:03
  7762. 131 875 2006-02-15 10:05:03
  7763. 131 881 2006-02-15 10:05:03
  7764. 131 921 2006-02-15 10:05:03
  7765. 132 81 2006-02-15 10:05:03
  7766. 132 82 2006-02-15 10:05:03
  7767. 132 133 2006-02-15 10:05:03
  7768. 132 156 2006-02-15 10:05:03
  7769. 132 162 2006-02-15 10:05:03
  7770. 132 311 2006-02-15 10:05:03
  7771. 132 345 2006-02-15 10:05:03
  7772. 132 377 2006-02-15 10:05:03
  7773. 132 410 2006-02-15 10:05:03
  7774. 132 538 2006-02-15 10:05:03
  7775. 132 562 2006-02-15 10:05:03
  7776. 132 586 2006-02-15 10:05:03
  7777. 132 626 2006-02-15 10:05:03
  7778. 132 637 2006-02-15 10:05:03
  7779. 132 698 2006-02-15 10:05:03
  7780. 132 756 2006-02-15 10:05:03
  7781. 132 806 2006-02-15 10:05:03
  7782. 132 897 2006-02-15 10:05:03
  7783. 132 899 2006-02-15 10:05:03
  7784. 132 904 2006-02-15 10:05:03
  7785. 132 930 2006-02-15 10:05:03
  7786. 132 987 2006-02-15 10:05:03
  7787. 133 7 2006-02-15 10:05:03
  7788. 133 51 2006-02-15 10:05:03
  7789. 133 133 2006-02-15 10:05:03
  7790. 133 172 2006-02-15 10:05:03
  7791. 133 210 2006-02-15 10:05:03
  7792. 133 270 2006-02-15 10:05:03
  7793. 133 280 2006-02-15 10:05:03
  7794. 133 286 2006-02-15 10:05:03
  7795. 133 338 2006-02-15 10:05:03
  7796. 133 342 2006-02-15 10:05:03
  7797. 133 351 2006-02-15 10:05:03
  7798. 133 368 2006-02-15 10:05:03
  7799. 133 385 2006-02-15 10:05:03
  7800. 133 390 2006-02-15 10:05:03
  7801. 133 397 2006-02-15 10:05:03
  7802. 133 410 2006-02-15 10:05:03
  7803. 133 452 2006-02-15 10:05:03
  7804. 133 463 2006-02-15 10:05:03
  7805. 133 514 2006-02-15 10:05:03
  7806. 133 588 2006-02-15 10:05:03
  7807. 133 594 2006-02-15 10:05:03
  7808. 133 635 2006-02-15 10:05:03
  7809. 133 652 2006-02-15 10:05:03
  7810. 133 727 2006-02-15 10:05:03
  7811. 133 806 2006-02-15 10:05:03
  7812. 133 868 2006-02-15 10:05:03
  7813. 133 882 2006-02-15 10:05:03
  7814. 133 894 2006-02-15 10:05:03
  7815. 133 933 2006-02-15 10:05:03
  7816. 133 952 2006-02-15 10:05:03
  7817. 134 132 2006-02-15 10:05:03
  7818. 134 145 2006-02-15 10:05:03
  7819. 134 161 2006-02-15 10:05:03
  7820. 134 219 2006-02-15 10:05:03
  7821. 134 243 2006-02-15 10:05:03
  7822. 134 250 2006-02-15 10:05:03
  7823. 134 278 2006-02-15 10:05:03
  7824. 134 341 2006-02-15 10:05:03
  7825. 134 386 2006-02-15 10:05:03
  7826. 134 413 2006-02-15 10:05:03
  7827. 134 558 2006-02-15 10:05:03
  7828. 134 588 2006-02-15 10:05:03
  7829. 134 624 2006-02-15 10:05:03
  7830. 134 655 2006-02-15 10:05:03
  7831. 134 683 2006-02-15 10:05:03
  7832. 134 690 2006-02-15 10:05:03
  7833. 134 861 2006-02-15 10:05:03
  7834. 134 896 2006-02-15 10:05:03
  7835. 134 897 2006-02-15 10:05:03
  7836. 134 915 2006-02-15 10:05:03
  7837. 134 927 2006-02-15 10:05:03
  7838. 134 936 2006-02-15 10:05:03
  7839. 135 35 2006-02-15 10:05:03
  7840. 135 41 2006-02-15 10:05:03
  7841. 135 65 2006-02-15 10:05:03
  7842. 135 88 2006-02-15 10:05:03
  7843. 135 170 2006-02-15 10:05:03
  7844. 135 269 2006-02-15 10:05:03
  7845. 135 320 2006-02-15 10:05:03
  7846. 135 353 2006-02-15 10:05:03
  7847. 135 357 2006-02-15 10:05:03
  7848. 135 364 2006-02-15 10:05:03
  7849. 135 455 2006-02-15 10:05:03
  7850. 135 458 2006-02-15 10:05:03
  7851. 135 484 2006-02-15 10:05:03
  7852. 135 541 2006-02-15 10:05:03
  7853. 135 553 2006-02-15 10:05:03
  7854. 135 616 2006-02-15 10:05:03
  7855. 135 628 2006-02-15 10:05:03
  7856. 135 719 2006-02-15 10:05:03
  7857. 135 814 2006-02-15 10:05:03
  7858. 135 905 2006-02-15 10:05:03
  7859. 136 20 2006-02-15 10:05:03
  7860. 136 25 2006-02-15 10:05:03
  7861. 136 33 2006-02-15 10:05:03
  7862. 136 56 2006-02-15 10:05:03
  7863. 136 61 2006-02-15 10:05:03
  7864. 136 193 2006-02-15 10:05:03
  7865. 136 214 2006-02-15 10:05:03
  7866. 136 229 2006-02-15 10:05:03
  7867. 136 243 2006-02-15 10:05:03
  7868. 136 256 2006-02-15 10:05:03
  7869. 136 262 2006-02-15 10:05:03
  7870. 136 271 2006-02-15 10:05:03
  7871. 136 288 2006-02-15 10:05:03
  7872. 136 300 2006-02-15 10:05:03
  7873. 136 364 2006-02-15 10:05:03
  7874. 136 401 2006-02-15 10:05:03
  7875. 136 414 2006-02-15 10:05:03
  7876. 136 420 2006-02-15 10:05:03
  7877. 136 474 2006-02-15 10:05:03
  7878. 136 485 2006-02-15 10:05:03
  7879. 136 542 2006-02-15 10:05:03
  7880. 136 552 2006-02-15 10:05:03
  7881. 136 620 2006-02-15 10:05:03
  7882. 136 649 2006-02-15 10:05:03
  7883. 136 686 2006-02-15 10:05:03
  7884. 136 781 2006-02-15 10:05:03
  7885. 136 806 2006-02-15 10:05:03
  7886. 136 808 2006-02-15 10:05:03
  7887. 136 818 2006-02-15 10:05:03
  7888. 136 842 2006-02-15 10:05:03
  7889. 136 933 2006-02-15 10:05:03
  7890. 136 993 2006-02-15 10:05:03
  7891. 137 6 2006-02-15 10:05:03
  7892. 137 14 2006-02-15 10:05:03
  7893. 137 56 2006-02-15 10:05:03
  7894. 137 96 2006-02-15 10:05:03
  7895. 137 160 2006-02-15 10:05:03
  7896. 137 224 2006-02-15 10:05:03
  7897. 137 249 2006-02-15 10:05:03
  7898. 137 254 2006-02-15 10:05:03
  7899. 137 263 2006-02-15 10:05:03
  7900. 137 268 2006-02-15 10:05:03
  7901. 137 304 2006-02-15 10:05:03
  7902. 137 390 2006-02-15 10:05:03
  7903. 137 410 2006-02-15 10:05:03
  7904. 137 433 2006-02-15 10:05:03
  7905. 137 446 2006-02-15 10:05:03
  7906. 137 489 2006-02-15 10:05:03
  7907. 137 530 2006-02-15 10:05:03
  7908. 137 564 2006-02-15 10:05:03
  7909. 137 603 2006-02-15 10:05:03
  7910. 137 610 2006-02-15 10:05:03
  7911. 137 688 2006-02-15 10:05:03
  7912. 137 703 2006-02-15 10:05:03
  7913. 137 745 2006-02-15 10:05:03
  7914. 137 758 2006-02-15 10:05:03
  7915. 137 832 2006-02-15 10:05:03
  7916. 137 841 2006-02-15 10:05:03
  7917. 137 917 2006-02-15 10:05:03
  7918. 138 8 2006-02-15 10:05:03
  7919. 138 52 2006-02-15 10:05:03
  7920. 138 61 2006-02-15 10:05:03
  7921. 138 125 2006-02-15 10:05:03
  7922. 138 157 2006-02-15 10:05:03
  7923. 138 214 2006-02-15 10:05:03
  7924. 138 258 2006-02-15 10:05:03
  7925. 138 376 2006-02-15 10:05:03
  7926. 138 403 2006-02-15 10:05:03
  7927. 138 446 2006-02-15 10:05:03
  7928. 138 453 2006-02-15 10:05:03
  7929. 138 508 2006-02-15 10:05:03
  7930. 138 553 2006-02-15 10:05:03
  7931. 138 561 2006-02-15 10:05:03
  7932. 138 583 2006-02-15 10:05:03
  7933. 138 627 2006-02-15 10:05:03
  7934. 138 639 2006-02-15 10:05:03
  7935. 138 695 2006-02-15 10:05:03
  7936. 138 747 2006-02-15 10:05:03
  7937. 138 879 2006-02-15 10:05:03
  7938. 138 885 2006-02-15 10:05:03
  7939. 138 923 2006-02-15 10:05:03
  7940. 138 970 2006-02-15 10:05:03
  7941. 138 989 2006-02-15 10:05:03
  7942. 139 20 2006-02-15 10:05:03
  7943. 139 35 2006-02-15 10:05:03
  7944. 139 57 2006-02-15 10:05:03
  7945. 139 74 2006-02-15 10:05:03
  7946. 139 90 2006-02-15 10:05:03
  7947. 139 107 2006-02-15 10:05:03
  7948. 139 155 2006-02-15 10:05:03
  7949. 139 170 2006-02-15 10:05:03
  7950. 139 181 2006-02-15 10:05:03
  7951. 139 200 2006-02-15 10:05:03
  7952. 139 229 2006-02-15 10:05:03
  7953. 139 233 2006-02-15 10:05:03
  7954. 139 261 2006-02-15 10:05:03
  7955. 139 262 2006-02-15 10:05:03
  7956. 139 266 2006-02-15 10:05:03
  7957. 139 282 2006-02-15 10:05:03
  7958. 139 284 2006-02-15 10:05:03
  7959. 139 373 2006-02-15 10:05:03
  7960. 139 447 2006-02-15 10:05:03
  7961. 139 489 2006-02-15 10:05:03
  7962. 139 529 2006-02-15 10:05:03
  7963. 139 540 2006-02-15 10:05:03
  7964. 139 570 2006-02-15 10:05:03
  7965. 139 602 2006-02-15 10:05:03
  7966. 139 605 2006-02-15 10:05:03
  7967. 139 636 2006-02-15 10:05:03
  7968. 139 691 2006-02-15 10:05:03
  7969. 139 706 2006-02-15 10:05:03
  7970. 139 719 2006-02-15 10:05:03
  7971. 139 744 2006-02-15 10:05:03
  7972. 139 746 2006-02-15 10:05:03
  7973. 139 862 2006-02-15 10:05:03
  7974. 139 892 2006-02-15 10:05:03
  7975. 140 27 2006-02-15 10:05:03
  7976. 140 77 2006-02-15 10:05:03
  7977. 140 112 2006-02-15 10:05:03
  7978. 140 135 2006-02-15 10:05:03
  7979. 140 185 2006-02-15 10:05:03
  7980. 140 258 2006-02-15 10:05:03
  7981. 140 370 2006-02-15 10:05:03
  7982. 140 373 2006-02-15 10:05:03
  7983. 140 498 2006-02-15 10:05:03
  7984. 140 509 2006-02-15 10:05:03
  7985. 140 576 2006-02-15 10:05:03
  7986. 140 587 2006-02-15 10:05:03
  7987. 140 599 2006-02-15 10:05:03
  7988. 140 608 2006-02-15 10:05:03
  7989. 140 647 2006-02-15 10:05:03
  7990. 140 665 2006-02-15 10:05:03
  7991. 140 670 2006-02-15 10:05:03
  7992. 140 693 2006-02-15 10:05:03
  7993. 140 702 2006-02-15 10:05:03
  7994. 140 729 2006-02-15 10:05:03
  7995. 140 730 2006-02-15 10:05:03
  7996. 140 731 2006-02-15 10:05:03
  7997. 140 736 2006-02-15 10:05:03
  7998. 140 742 2006-02-15 10:05:03
  7999. 140 778 2006-02-15 10:05:03
  8000. 140 820 2006-02-15 10:05:03
  8001. 140 830 2006-02-15 10:05:03
  8002. 140 835 2006-02-15 10:05:03
  8003. 140 857 2006-02-15 10:05:03
  8004. 140 923 2006-02-15 10:05:03
  8005. 140 934 2006-02-15 10:05:03
  8006. 140 999 2006-02-15 10:05:03
  8007. 141 43 2006-02-15 10:05:03
  8008. 141 67 2006-02-15 10:05:03
  8009. 141 188 2006-02-15 10:05:03
  8010. 141 191 2006-02-15 10:05:03
  8011. 141 207 2006-02-15 10:05:03
  8012. 141 223 2006-02-15 10:05:03
  8013. 141 341 2006-02-15 10:05:03
  8014. 141 358 2006-02-15 10:05:03
  8015. 141 380 2006-02-15 10:05:03
  8016. 141 395 2006-02-15 10:05:03
  8017. 141 467 2006-02-15 10:05:03
  8018. 141 491 2006-02-15 10:05:03
  8019. 141 589 2006-02-15 10:05:03
  8020. 141 607 2006-02-15 10:05:03
  8021. 141 673 2006-02-15 10:05:03
  8022. 141 740 2006-02-15 10:05:03
  8023. 141 752 2006-02-15 10:05:03
  8024. 141 768 2006-02-15 10:05:03
  8025. 141 772 2006-02-15 10:05:03
  8026. 141 787 2006-02-15 10:05:03
  8027. 141 821 2006-02-15 10:05:03
  8028. 141 829 2006-02-15 10:05:03
  8029. 141 840 2006-02-15 10:05:03
  8030. 141 849 2006-02-15 10:05:03
  8031. 141 862 2006-02-15 10:05:03
  8032. 141 863 2006-02-15 10:05:03
  8033. 141 909 2006-02-15 10:05:03
  8034. 141 992 2006-02-15 10:05:03
  8035. 142 10 2006-02-15 10:05:03
  8036. 142 18 2006-02-15 10:05:03
  8037. 142 107 2006-02-15 10:05:03
  8038. 142 139 2006-02-15 10:05:03
  8039. 142 186 2006-02-15 10:05:03
  8040. 142 199 2006-02-15 10:05:03
  8041. 142 248 2006-02-15 10:05:03
  8042. 142 328 2006-02-15 10:05:03
  8043. 142 350 2006-02-15 10:05:03
  8044. 142 371 2006-02-15 10:05:03
  8045. 142 470 2006-02-15 10:05:03
  8046. 142 481 2006-02-15 10:05:03
  8047. 142 494 2006-02-15 10:05:03
  8048. 142 501 2006-02-15 10:05:03
  8049. 142 504 2006-02-15 10:05:03
  8050. 142 540 2006-02-15 10:05:03
  8051. 142 554 2006-02-15 10:05:03
  8052. 142 575 2006-02-15 10:05:03
  8053. 142 608 2006-02-15 10:05:03
  8054. 142 710 2006-02-15 10:05:03
  8055. 142 712 2006-02-15 10:05:03
  8056. 142 735 2006-02-15 10:05:03
  8057. 142 759 2006-02-15 10:05:03
  8058. 142 794 2006-02-15 10:05:03
  8059. 142 842 2006-02-15 10:05:03
  8060. 142 859 2006-02-15 10:05:03
  8061. 142 863 2006-02-15 10:05:03
  8062. 142 875 2006-02-15 10:05:03
  8063. 142 906 2006-02-15 10:05:03
  8064. 142 914 2006-02-15 10:05:03
  8065. 142 999 2006-02-15 10:05:03
  8066. 143 47 2006-02-15 10:05:03
  8067. 143 79 2006-02-15 10:05:03
  8068. 143 141 2006-02-15 10:05:03
  8069. 143 175 2006-02-15 10:05:03
  8070. 143 232 2006-02-15 10:05:03
  8071. 143 239 2006-02-15 10:05:03
  8072. 143 316 2006-02-15 10:05:03
  8073. 143 339 2006-02-15 10:05:03
  8074. 143 361 2006-02-15 10:05:03
  8075. 143 386 2006-02-15 10:05:03
  8076. 143 404 2006-02-15 10:05:03
  8077. 143 457 2006-02-15 10:05:03
  8078. 143 485 2006-02-15 10:05:03
  8079. 143 497 2006-02-15 10:05:03
  8080. 143 560 2006-02-15 10:05:03
  8081. 143 576 2006-02-15 10:05:03
  8082. 143 603 2006-02-15 10:05:03
  8083. 143 613 2006-02-15 10:05:03
  8084. 143 659 2006-02-15 10:05:03
  8085. 143 660 2006-02-15 10:05:03
  8086. 143 680 2006-02-15 10:05:03
  8087. 143 687 2006-02-15 10:05:03
  8088. 143 690 2006-02-15 10:05:03
  8089. 143 706 2006-02-15 10:05:03
  8090. 143 792 2006-02-15 10:05:03
  8091. 143 821 2006-02-15 10:05:03
  8092. 143 830 2006-02-15 10:05:03
  8093. 143 872 2006-02-15 10:05:03
  8094. 143 878 2006-02-15 10:05:03
  8095. 143 906 2006-02-15 10:05:03
  8096. 143 958 2006-02-15 10:05:03
  8097. 144 18 2006-02-15 10:05:03
  8098. 144 67 2006-02-15 10:05:03
  8099. 144 79 2006-02-15 10:05:03
  8100. 144 90 2006-02-15 10:05:03
  8101. 144 99 2006-02-15 10:05:03
  8102. 144 105 2006-02-15 10:05:03
  8103. 144 123 2006-02-15 10:05:03
  8104. 144 125 2006-02-15 10:05:03
  8105. 144 127 2006-02-15 10:05:03
  8106. 144 130 2006-02-15 10:05:03
  8107. 144 135 2006-02-15 10:05:03
  8108. 144 164 2006-02-15 10:05:03
  8109. 144 184 2006-02-15 10:05:03
  8110. 144 216 2006-02-15 10:05:03
  8111. 144 228 2006-02-15 10:05:03
  8112. 144 260 2006-02-15 10:05:03
  8113. 144 272 2006-02-15 10:05:03
  8114. 144 291 2006-02-15 10:05:03
  8115. 144 293 2006-02-15 10:05:03
  8116. 144 312 2006-02-15 10:05:03
  8117. 144 393 2006-02-15 10:05:03
  8118. 144 396 2006-02-15 10:05:03
  8119. 144 473 2006-02-15 10:05:03
  8120. 144 504 2006-02-15 10:05:03
  8121. 144 540 2006-02-15 10:05:03
  8122. 144 599 2006-02-15 10:05:03
  8123. 144 668 2006-02-15 10:05:03
  8124. 144 702 2006-02-15 10:05:03
  8125. 144 753 2006-02-15 10:05:03
  8126. 144 762 2006-02-15 10:05:03
  8127. 144 776 2006-02-15 10:05:03
  8128. 144 785 2006-02-15 10:05:03
  8129. 144 845 2006-02-15 10:05:03
  8130. 144 894 2006-02-15 10:05:03
  8131. 144 953 2006-02-15 10:05:03
  8132. 145 39 2006-02-15 10:05:03
  8133. 145 109 2006-02-15 10:05:03
  8134. 145 120 2006-02-15 10:05:03
  8135. 145 154 2006-02-15 10:05:03
  8136. 145 155 2006-02-15 10:05:03
  8137. 145 243 2006-02-15 10:05:03
  8138. 145 293 2006-02-15 10:05:03
  8139. 145 402 2006-02-15 10:05:03
  8140. 145 409 2006-02-15 10:05:03
  8141. 145 457 2006-02-15 10:05:03
  8142. 145 475 2006-02-15 10:05:03
  8143. 145 487 2006-02-15 10:05:03
  8144. 145 494 2006-02-15 10:05:03
  8145. 145 527 2006-02-15 10:05:03
  8146. 145 592 2006-02-15 10:05:03
  8147. 145 625 2006-02-15 10:05:03
  8148. 145 629 2006-02-15 10:05:03
  8149. 145 641 2006-02-15 10:05:03
  8150. 145 661 2006-02-15 10:05:03
  8151. 145 664 2006-02-15 10:05:03
  8152. 145 692 2006-02-15 10:05:03
  8153. 145 713 2006-02-15 10:05:03
  8154. 145 726 2006-02-15 10:05:03
  8155. 145 748 2006-02-15 10:05:03
  8156. 145 822 2006-02-15 10:05:03
  8157. 145 893 2006-02-15 10:05:03
  8158. 145 923 2006-02-15 10:05:03
  8159. 145 953 2006-02-15 10:05:03
  8160. 146 12 2006-02-15 10:05:03
  8161. 146 16 2006-02-15 10:05:03
  8162. 146 33 2006-02-15 10:05:03
  8163. 146 117 2006-02-15 10:05:03
  8164. 146 177 2006-02-15 10:05:03
  8165. 146 191 2006-02-15 10:05:03
  8166. 146 197 2006-02-15 10:05:03
  8167. 146 207 2006-02-15 10:05:03
  8168. 146 218 2006-02-15 10:05:03
  8169. 146 278 2006-02-15 10:05:03
  8170. 146 296 2006-02-15 10:05:03
  8171. 146 314 2006-02-15 10:05:03
  8172. 146 320 2006-02-15 10:05:03
  8173. 146 372 2006-02-15 10:05:03
  8174. 146 384 2006-02-15 10:05:03
  8175. 146 402 2006-02-15 10:05:03
  8176. 146 410 2006-02-15 10:05:03
  8177. 146 427 2006-02-15 10:05:03
  8178. 146 429 2006-02-15 10:05:03
  8179. 146 512 2006-02-15 10:05:03
  8180. 146 514 2006-02-15 10:05:03
  8181. 146 571 2006-02-15 10:05:03
  8182. 146 591 2006-02-15 10:05:03
  8183. 146 720 2006-02-15 10:05:03
  8184. 146 731 2006-02-15 10:05:03
  8185. 146 734 2006-02-15 10:05:03
  8186. 146 871 2006-02-15 10:05:03
  8187. 146 909 2006-02-15 10:05:03
  8188. 146 922 2006-02-15 10:05:03
  8189. 146 945 2006-02-15 10:05:03
  8190. 146 955 2006-02-15 10:05:03
  8191. 146 966 2006-02-15 10:05:03
  8192. 146 969 2006-02-15 10:05:03
  8193. 147 4 2006-02-15 10:05:03
  8194. 147 85 2006-02-15 10:05:03
  8195. 147 131 2006-02-15 10:05:03
  8196. 147 139 2006-02-15 10:05:03
  8197. 147 145 2006-02-15 10:05:03
  8198. 147 178 2006-02-15 10:05:03
  8199. 147 251 2006-02-15 10:05:03
  8200. 147 254 2006-02-15 10:05:03
  8201. 147 295 2006-02-15 10:05:03
  8202. 147 298 2006-02-15 10:05:03
  8203. 147 305 2006-02-15 10:05:03
  8204. 147 310 2006-02-15 10:05:03
  8205. 147 318 2006-02-15 10:05:03
  8206. 147 333 2006-02-15 10:05:03
  8207. 147 341 2006-02-15 10:05:03
  8208. 147 351 2006-02-15 10:05:03
  8209. 147 394 2006-02-15 10:05:03
  8210. 147 402 2006-02-15 10:05:03
  8211. 147 405 2006-02-15 10:05:03
  8212. 147 410 2006-02-15 10:05:03
  8213. 147 431 2006-02-15 10:05:03
  8214. 147 443 2006-02-15 10:05:03
  8215. 147 508 2006-02-15 10:05:03
  8216. 147 554 2006-02-15 10:05:03
  8217. 147 563 2006-02-15 10:05:03
  8218. 147 649 2006-02-15 10:05:03
  8219. 147 688 2006-02-15 10:05:03
  8220. 147 708 2006-02-15 10:05:03
  8221. 147 864 2006-02-15 10:05:03
  8222. 147 957 2006-02-15 10:05:03
  8223. 147 987 2006-02-15 10:05:03
  8224. 148 27 2006-02-15 10:05:03
  8225. 148 57 2006-02-15 10:05:03
  8226. 148 133 2006-02-15 10:05:03
  8227. 148 149 2006-02-15 10:05:03
  8228. 148 226 2006-02-15 10:05:03
  8229. 148 342 2006-02-15 10:05:03
  8230. 148 368 2006-02-15 10:05:03
  8231. 148 422 2006-02-15 10:05:03
  8232. 148 468 2006-02-15 10:05:03
  8233. 148 633 2006-02-15 10:05:03
  8234. 148 718 2006-02-15 10:05:03
  8235. 148 768 2006-02-15 10:05:03
  8236. 148 772 2006-02-15 10:05:03
  8237. 148 792 2006-02-15 10:05:03
  8238. 149 53 2006-02-15 10:05:03
  8239. 149 72 2006-02-15 10:05:03
  8240. 149 95 2006-02-15 10:05:03
  8241. 149 118 2006-02-15 10:05:03
  8242. 149 139 2006-02-15 10:05:03
  8243. 149 146 2006-02-15 10:05:03
  8244. 149 153 2006-02-15 10:05:03
  8245. 149 159 2006-02-15 10:05:03
  8246. 149 169 2006-02-15 10:05:03
  8247. 149 178 2006-02-15 10:05:03
  8248. 149 188 2006-02-15 10:05:03
  8249. 149 193 2006-02-15 10:05:03
  8250. 149 339 2006-02-15 10:05:03
  8251. 149 354 2006-02-15 10:05:03
  8252. 149 362 2006-02-15 10:05:03
  8253. 149 365 2006-02-15 10:05:03
  8254. 149 458 2006-02-15 10:05:03
  8255. 149 631 2006-02-15 10:05:03
  8256. 149 670 2006-02-15 10:05:03
  8257. 149 685 2006-02-15 10:05:03
  8258. 149 761 2006-02-15 10:05:03
  8259. 149 782 2006-02-15 10:05:03
  8260. 149 810 2006-02-15 10:05:03
  8261. 149 811 2006-02-15 10:05:03
  8262. 149 899 2006-02-15 10:05:03
  8263. 149 905 2006-02-15 10:05:03
  8264. 149 913 2006-02-15 10:05:03
  8265. 149 921 2006-02-15 10:05:03
  8266. 149 947 2006-02-15 10:05:03
  8267. 149 949 2006-02-15 10:05:03
  8268. 149 992 2006-02-15 10:05:03
  8269. 150 23 2006-02-15 10:05:03
  8270. 150 63 2006-02-15 10:05:03
  8271. 150 75 2006-02-15 10:05:03
  8272. 150 94 2006-02-15 10:05:03
  8273. 150 105 2006-02-15 10:05:03
  8274. 150 168 2006-02-15 10:05:03
  8275. 150 190 2006-02-15 10:05:03
  8276. 150 206 2006-02-15 10:05:03
  8277. 150 233 2006-02-15 10:05:03
  8278. 150 270 2006-02-15 10:05:03
  8279. 150 285 2006-02-15 10:05:03
  8280. 150 306 2006-02-15 10:05:03
  8281. 150 386 2006-02-15 10:05:03
  8282. 150 433 2006-02-15 10:05:03
  8283. 150 446 2006-02-15 10:05:03
  8284. 150 447 2006-02-15 10:05:03
  8285. 150 468 2006-02-15 10:05:03
  8286. 150 508 2006-02-15 10:05:03
  8287. 150 542 2006-02-15 10:05:03
  8288. 150 551 2006-02-15 10:05:03
  8289. 150 629 2006-02-15 10:05:03
  8290. 150 647 2006-02-15 10:05:03
  8291. 150 672 2006-02-15 10:05:03
  8292. 150 697 2006-02-15 10:05:03
  8293. 150 728 2006-02-15 10:05:03
  8294. 150 777 2006-02-15 10:05:03
  8295. 150 854 2006-02-15 10:05:03
  8296. 150 873 2006-02-15 10:05:03
  8297. 150 880 2006-02-15 10:05:03
  8298. 150 887 2006-02-15 10:05:03
  8299. 150 889 2006-02-15 10:05:03
  8300. 150 892 2006-02-15 10:05:03
  8301. 150 953 2006-02-15 10:05:03
  8302. 150 962 2006-02-15 10:05:03
  8303. 151 131 2006-02-15 10:05:03
  8304. 151 144 2006-02-15 10:05:03
  8305. 151 167 2006-02-15 10:05:03
  8306. 151 170 2006-02-15 10:05:03
  8307. 151 217 2006-02-15 10:05:03
  8308. 151 232 2006-02-15 10:05:03
  8309. 151 342 2006-02-15 10:05:03
  8310. 151 367 2006-02-15 10:05:03
  8311. 151 370 2006-02-15 10:05:03
  8312. 151 382 2006-02-15 10:05:03
  8313. 151 451 2006-02-15 10:05:03
  8314. 151 463 2006-02-15 10:05:03
  8315. 151 482 2006-02-15 10:05:03
  8316. 151 501 2006-02-15 10:05:03
  8317. 151 527 2006-02-15 10:05:03
  8318. 151 539 2006-02-15 10:05:03
  8319. 151 570 2006-02-15 10:05:03
  8320. 151 574 2006-02-15 10:05:03
  8321. 151 634 2006-02-15 10:05:03
  8322. 151 658 2006-02-15 10:05:03
  8323. 151 665 2006-02-15 10:05:03
  8324. 151 703 2006-02-15 10:05:03
  8325. 151 880 2006-02-15 10:05:03
  8326. 151 892 2006-02-15 10:05:03
  8327. 151 895 2006-02-15 10:05:03
  8328. 151 989 2006-02-15 10:05:03
  8329. 152 59 2006-02-15 10:05:03
  8330. 152 153 2006-02-15 10:05:03
  8331. 152 217 2006-02-15 10:05:03
  8332. 152 248 2006-02-15 10:05:03
  8333. 152 318 2006-02-15 10:05:03
  8334. 152 332 2006-02-15 10:05:03
  8335. 152 475 2006-02-15 10:05:03
  8336. 152 476 2006-02-15 10:05:03
  8337. 152 578 2006-02-15 10:05:03
  8338. 152 607 2006-02-15 10:05:03
  8339. 152 611 2006-02-15 10:05:03
  8340. 152 615 2006-02-15 10:05:03
  8341. 152 674 2006-02-15 10:05:03
  8342. 152 680 2006-02-15 10:05:03
  8343. 152 729 2006-02-15 10:05:03
  8344. 152 768 2006-02-15 10:05:03
  8345. 152 821 2006-02-15 10:05:03
  8346. 152 846 2006-02-15 10:05:03
  8347. 152 891 2006-02-15 10:05:03
  8348. 152 898 2006-02-15 10:05:03
  8349. 152 927 2006-02-15 10:05:03
  8350. 152 964 2006-02-15 10:05:03
  8351. 152 968 2006-02-15 10:05:03
  8352. 153 47 2006-02-15 10:05:03
  8353. 153 64 2006-02-15 10:05:03
  8354. 153 136 2006-02-15 10:05:03
  8355. 153 180 2006-02-15 10:05:03
  8356. 153 203 2006-02-15 10:05:03
  8357. 153 231 2006-02-15 10:05:03
  8358. 153 444 2006-02-15 10:05:03
  8359. 153 476 2006-02-15 10:05:03
  8360. 153 480 2006-02-15 10:05:03
  8361. 153 486 2006-02-15 10:05:03
  8362. 153 536 2006-02-15 10:05:03
  8363. 153 627 2006-02-15 10:05:03
  8364. 153 732 2006-02-15 10:05:03
  8365. 153 756 2006-02-15 10:05:03
  8366. 153 766 2006-02-15 10:05:03
  8367. 153 817 2006-02-15 10:05:03
  8368. 153 847 2006-02-15 10:05:03
  8369. 153 919 2006-02-15 10:05:03
  8370. 153 938 2006-02-15 10:05:03
  8371. 153 988 2006-02-15 10:05:03
  8372. 154 27 2006-02-15 10:05:03
  8373. 154 111 2006-02-15 10:05:03
  8374. 154 141 2006-02-15 10:05:03
  8375. 154 158 2006-02-15 10:05:03
  8376. 154 169 2006-02-15 10:05:03
  8377. 154 170 2006-02-15 10:05:03
  8378. 154 193 2006-02-15 10:05:03
  8379. 154 208 2006-02-15 10:05:03
  8380. 154 274 2006-02-15 10:05:03
  8381. 154 276 2006-02-15 10:05:03
  8382. 154 282 2006-02-15 10:05:03
  8383. 154 299 2006-02-15 10:05:03
  8384. 154 314 2006-02-15 10:05:03
  8385. 154 396 2006-02-15 10:05:03
  8386. 154 399 2006-02-15 10:05:03
  8387. 154 421 2006-02-15 10:05:03
  8388. 154 440 2006-02-15 10:05:03
  8389. 154 467 2006-02-15 10:05:03
  8390. 154 474 2006-02-15 10:05:03
  8391. 154 489 2006-02-15 10:05:03
  8392. 154 588 2006-02-15 10:05:03
  8393. 154 602 2006-02-15 10:05:03
  8394. 154 680 2006-02-15 10:05:03
  8395. 154 698 2006-02-15 10:05:03
  8396. 154 802 2006-02-15 10:05:03
  8397. 154 842 2006-02-15 10:05:03
  8398. 154 954 2006-02-15 10:05:03
  8399. 154 988 2006-02-15 10:05:03
  8400. 155 20 2006-02-15 10:05:03
  8401. 155 67 2006-02-15 10:05:03
  8402. 155 128 2006-02-15 10:05:03
  8403. 155 153 2006-02-15 10:05:03
  8404. 155 220 2006-02-15 10:05:03
  8405. 155 249 2006-02-15 10:05:03
  8406. 155 303 2006-02-15 10:05:03
  8407. 155 312 2006-02-15 10:05:03
  8408. 155 359 2006-02-15 10:05:03
  8409. 155 361 2006-02-15 10:05:03
  8410. 155 383 2006-02-15 10:05:03
  8411. 155 387 2006-02-15 10:05:03
  8412. 155 407 2006-02-15 10:05:03
  8413. 155 427 2006-02-15 10:05:03
  8414. 155 459 2006-02-15 10:05:03
  8415. 155 513 2006-02-15 10:05:03
  8416. 155 584 2006-02-15 10:05:03
  8417. 155 590 2006-02-15 10:05:03
  8418. 155 630 2006-02-15 10:05:03
  8419. 155 688 2006-02-15 10:05:03
  8420. 155 757 2006-02-15 10:05:03
  8421. 155 768 2006-02-15 10:05:03
  8422. 155 785 2006-02-15 10:05:03
  8423. 155 849 2006-02-15 10:05:03
  8424. 155 885 2006-02-15 10:05:03
  8425. 155 890 2006-02-15 10:05:03
  8426. 155 941 2006-02-15 10:05:03
  8427. 155 966 2006-02-15 10:05:03
  8428. 155 987 2006-02-15 10:05:03
  8429. 155 997 2006-02-15 10:05:03
  8430. 155 1000 2006-02-15 10:05:03
  8431. 156 53 2006-02-15 10:05:03
  8432. 156 155 2006-02-15 10:05:03
  8433. 156 198 2006-02-15 10:05:03
  8434. 156 244 2006-02-15 10:05:03
  8435. 156 262 2006-02-15 10:05:03
  8436. 156 263 2006-02-15 10:05:03
  8437. 156 285 2006-02-15 10:05:03
  8438. 156 297 2006-02-15 10:05:03
  8439. 156 301 2006-02-15 10:05:03
  8440. 156 349 2006-02-15 10:05:03
  8441. 156 379 2006-02-15 10:05:03
  8442. 156 448 2006-02-15 10:05:03
  8443. 156 462 2006-02-15 10:05:03
  8444. 156 467 2006-02-15 10:05:03
  8445. 156 504 2006-02-15 10:05:03
  8446. 156 518 2006-02-15 10:05:03
  8447. 156 593 2006-02-15 10:05:03
  8448. 156 646 2006-02-15 10:05:03
  8449. 156 705 2006-02-15 10:05:03
  8450. 156 754 2006-02-15 10:05:03
  8451. 156 775 2006-02-15 10:05:03
  8452. 156 844 2006-02-15 10:05:03
  8453. 157 10 2006-02-15 10:05:03
  8454. 157 24 2006-02-15 10:05:03
  8455. 157 34 2006-02-15 10:05:03
  8456. 157 122 2006-02-15 10:05:03
  8457. 157 159 2006-02-15 10:05:03
  8458. 157 183 2006-02-15 10:05:03
  8459. 157 210 2006-02-15 10:05:03
  8460. 157 217 2006-02-15 10:05:03
  8461. 157 291 2006-02-15 10:05:03
  8462. 157 303 2006-02-15 10:05:03
  8463. 157 321 2006-02-15 10:05:03
  8464. 157 326 2006-02-15 10:05:03
  8465. 157 353 2006-02-15 10:05:03
  8466. 157 400 2006-02-15 10:05:03
  8467. 157 406 2006-02-15 10:05:03
  8468. 157 431 2006-02-15 10:05:03
  8469. 157 496 2006-02-15 10:05:03
  8470. 157 535 2006-02-15 10:05:03
  8471. 157 573 2006-02-15 10:05:03
  8472. 157 574 2006-02-15 10:05:03
  8473. 157 604 2006-02-15 10:05:03
  8474. 157 616 2006-02-15 10:05:03
  8475. 157 642 2006-02-15 10:05:03
  8476. 157 661 2006-02-15 10:05:03
  8477. 157 696 2006-02-15 10:05:03
  8478. 157 713 2006-02-15 10:05:03
  8479. 157 802 2006-02-15 10:05:03
  8480. 157 835 2006-02-15 10:05:03
  8481. 157 874 2006-02-15 10:05:03
  8482. 157 913 2006-02-15 10:05:03
  8483. 157 967 2006-02-15 10:05:03
  8484. 157 973 2006-02-15 10:05:03
  8485. 158 32 2006-02-15 10:05:03
  8486. 158 47 2006-02-15 10:05:03
  8487. 158 64 2006-02-15 10:05:03
  8488. 158 66 2006-02-15 10:05:03
  8489. 158 102 2006-02-15 10:05:03
  8490. 158 121 2006-02-15 10:05:03
  8491. 158 177 2006-02-15 10:05:03
  8492. 158 178 2006-02-15 10:05:03
  8493. 158 188 2006-02-15 10:05:03
  8494. 158 215 2006-02-15 10:05:03
  8495. 158 241 2006-02-15 10:05:03
  8496. 158 293 2006-02-15 10:05:03
  8497. 158 437 2006-02-15 10:05:03
  8498. 158 473 2006-02-15 10:05:03
  8499. 158 483 2006-02-15 10:05:03
  8500. 158 532 2006-02-15 10:05:03
  8501. 158 555 2006-02-15 10:05:03
  8502. 158 581 2006-02-15 10:05:03
  8503. 158 601 2006-02-15 10:05:03
  8504. 158 616 2006-02-15 10:05:03
  8505. 158 626 2006-02-15 10:05:03
  8506. 158 637 2006-02-15 10:05:03
  8507. 158 799 2006-02-15 10:05:03
  8508. 158 812 2006-02-15 10:05:03
  8509. 158 824 2006-02-15 10:05:03
  8510. 158 830 2006-02-15 10:05:03
  8511. 158 840 2006-02-15 10:05:03
  8512. 158 869 2006-02-15 10:05:03
  8513. 158 879 2006-02-15 10:05:03
  8514. 158 880 2006-02-15 10:05:03
  8515. 158 894 2006-02-15 10:05:03
  8516. 158 896 2006-02-15 10:05:03
  8517. 158 967 2006-02-15 10:05:03
  8518. 158 968 2006-02-15 10:05:03
  8519. 158 990 2006-02-15 10:05:03
  8520. 159 20 2006-02-15 10:05:03
  8521. 159 82 2006-02-15 10:05:03
  8522. 159 127 2006-02-15 10:05:03
  8523. 159 187 2006-02-15 10:05:03
  8524. 159 206 2006-02-15 10:05:03
  8525. 159 208 2006-02-15 10:05:03
  8526. 159 223 2006-02-15 10:05:03
  8527. 159 248 2006-02-15 10:05:03
  8528. 159 342 2006-02-15 10:05:03
  8529. 159 343 2006-02-15 10:05:03
  8530. 159 344 2006-02-15 10:05:03
  8531. 159 364 2006-02-15 10:05:03
  8532. 159 418 2006-02-15 10:05:03
  8533. 159 549 2006-02-15 10:05:03
  8534. 159 561 2006-02-15 10:05:03
  8535. 159 600 2006-02-15 10:05:03
  8536. 159 674 2006-02-15 10:05:03
  8537. 159 680 2006-02-15 10:05:03
  8538. 159 784 2006-02-15 10:05:03
  8539. 159 789 2006-02-15 10:05:03
  8540. 159 800 2006-02-15 10:05:03
  8541. 159 802 2006-02-15 10:05:03
  8542. 159 818 2006-02-15 10:05:03
  8543. 159 876 2006-02-15 10:05:03
  8544. 159 907 2006-02-15 10:05:03
  8545. 159 978 2006-02-15 10:05:03
  8546. 160 2 2006-02-15 10:05:03
  8547. 160 17 2006-02-15 10:05:03
  8548. 160 43 2006-02-15 10:05:03
  8549. 160 242 2006-02-15 10:05:03
  8550. 160 267 2006-02-15 10:05:03
  8551. 160 275 2006-02-15 10:05:03
  8552. 160 368 2006-02-15 10:05:03
  8553. 160 455 2006-02-15 10:05:03
  8554. 160 469 2006-02-15 10:05:03
  8555. 160 484 2006-02-15 10:05:03
  8556. 160 579 2006-02-15 10:05:03
  8557. 160 660 2006-02-15 10:05:03
  8558. 160 755 2006-02-15 10:05:03
  8559. 160 767 2006-02-15 10:05:03
  8560. 160 769 2006-02-15 10:05:03
  8561. 160 794 2006-02-15 10:05:03
  8562. 160 826 2006-02-15 10:05:03
  8563. 160 883 2006-02-15 10:05:03
  8564. 160 950 2006-02-15 10:05:03
  8565. 160 954 2006-02-15 10:05:03
  8566. 161 43 2006-02-15 10:05:03
  8567. 161 58 2006-02-15 10:05:03
  8568. 161 89 2006-02-15 10:05:03
  8569. 161 90 2006-02-15 10:05:03
  8570. 161 120 2006-02-15 10:05:03
  8571. 161 188 2006-02-15 10:05:03
  8572. 161 247 2006-02-15 10:05:03
  8573. 161 269 2006-02-15 10:05:03
  8574. 161 281 2006-02-15 10:05:03
  8575. 161 340 2006-02-15 10:05:03
  8576. 161 353 2006-02-15 10:05:03
  8577. 161 401 2006-02-15 10:05:03
  8578. 161 414 2006-02-15 10:05:03
  8579. 161 425 2006-02-15 10:05:03
  8580. 161 469 2006-02-15 10:05:03
  8581. 161 526 2006-02-15 10:05:03
  8582. 161 588 2006-02-15 10:05:03
  8583. 161 644 2006-02-15 10:05:03
  8584. 161 653 2006-02-15 10:05:03
  8585. 161 655 2006-02-15 10:05:03
  8586. 161 669 2006-02-15 10:05:03
  8587. 161 684 2006-02-15 10:05:03
  8588. 161 714 2006-02-15 10:05:03
  8589. 161 749 2006-02-15 10:05:03
  8590. 161 807 2006-02-15 10:05:03
  8591. 161 825 2006-02-15 10:05:03
  8592. 161 850 2006-02-15 10:05:03
  8593. 161 880 2006-02-15 10:05:03
  8594. 161 920 2006-02-15 10:05:03
  8595. 161 921 2006-02-15 10:05:03
  8596. 161 924 2006-02-15 10:05:03
  8597. 161 927 2006-02-15 10:05:03
  8598. 162 1 2006-02-15 10:05:03
  8599. 162 4 2006-02-15 10:05:03
  8600. 162 7 2006-02-15 10:05:03
  8601. 162 18 2006-02-15 10:05:03
  8602. 162 28 2006-02-15 10:05:03
  8603. 162 32 2006-02-15 10:05:03
  8604. 162 33 2006-02-15 10:05:03
  8605. 162 41 2006-02-15 10:05:03
  8606. 162 85 2006-02-15 10:05:03
  8607. 162 121 2006-02-15 10:05:03
  8608. 162 164 2006-02-15 10:05:03
  8609. 162 274 2006-02-15 10:05:03
  8610. 162 279 2006-02-15 10:05:03
  8611. 162 409 2006-02-15 10:05:03
  8612. 162 410 2006-02-15 10:05:03
  8613. 162 415 2006-02-15 10:05:03
  8614. 162 500 2006-02-15 10:05:03
  8615. 162 574 2006-02-15 10:05:03
  8616. 162 612 2006-02-15 10:05:03
  8617. 162 636 2006-02-15 10:05:03
  8618. 162 659 2006-02-15 10:05:03
  8619. 162 786 2006-02-15 10:05:03
  8620. 162 844 2006-02-15 10:05:03
  8621. 162 909 2006-02-15 10:05:03
  8622. 162 968 2006-02-15 10:05:03
  8623. 163 30 2006-02-15 10:05:03
  8624. 163 45 2006-02-15 10:05:03
  8625. 163 166 2006-02-15 10:05:03
  8626. 163 180 2006-02-15 10:05:03
  8627. 163 239 2006-02-15 10:05:03
  8628. 163 283 2006-02-15 10:05:03
  8629. 163 303 2006-02-15 10:05:03
  8630. 163 304 2006-02-15 10:05:03
  8631. 163 307 2006-02-15 10:05:03
  8632. 163 394 2006-02-15 10:05:03
  8633. 163 409 2006-02-15 10:05:03
  8634. 163 434 2006-02-15 10:05:03
  8635. 163 444 2006-02-15 10:05:03
  8636. 163 522 2006-02-15 10:05:03
  8637. 163 719 2006-02-15 10:05:03
  8638. 163 785 2006-02-15 10:05:03
  8639. 163 833 2006-02-15 10:05:03
  8640. 163 881 2006-02-15 10:05:03
  8641. 163 891 2006-02-15 10:05:03
  8642. 163 947 2006-02-15 10:05:03
  8643. 163 996 2006-02-15 10:05:03
  8644. 164 15 2006-02-15 10:05:03
  8645. 164 23 2006-02-15 10:05:03
  8646. 164 148 2006-02-15 10:05:03
  8647. 164 169 2006-02-15 10:05:03
  8648. 164 252 2006-02-15 10:05:03
  8649. 164 324 2006-02-15 10:05:03
  8650. 164 347 2006-02-15 10:05:03
  8651. 164 367 2006-02-15 10:05:03
  8652. 164 431 2006-02-15 10:05:03
  8653. 164 448 2006-02-15 10:05:03
  8654. 164 469 2006-02-15 10:05:03
  8655. 164 545 2006-02-15 10:05:03
  8656. 164 610 2006-02-15 10:05:03
  8657. 164 613 2006-02-15 10:05:03
  8658. 164 673 2006-02-15 10:05:03
  8659. 164 681 2006-02-15 10:05:03
  8660. 164 698 2006-02-15 10:05:03
  8661. 164 801 2006-02-15 10:05:03
  8662. 164 820 2006-02-15 10:05:03
  8663. 164 832 2006-02-15 10:05:03
  8664. 164 834 2006-02-15 10:05:03
  8665. 164 851 2006-02-15 10:05:03
  8666. 164 884 2006-02-15 10:05:03
  8667. 164 908 2006-02-15 10:05:03
  8668. 164 957 2006-02-15 10:05:03
  8669. 164 984 2006-02-15 10:05:03
  8670. 165 72 2006-02-15 10:05:03
  8671. 165 95 2006-02-15 10:05:03
  8672. 165 146 2006-02-15 10:05:03
  8673. 165 204 2006-02-15 10:05:03
  8674. 165 253 2006-02-15 10:05:03
  8675. 165 286 2006-02-15 10:05:03
  8676. 165 360 2006-02-15 10:05:03
  8677. 165 375 2006-02-15 10:05:03
  8678. 165 395 2006-02-15 10:05:03
  8679. 165 421 2006-02-15 10:05:03
  8680. 165 437 2006-02-15 10:05:03
  8681. 165 473 2006-02-15 10:05:03
  8682. 165 607 2006-02-15 10:05:03
  8683. 165 644 2006-02-15 10:05:03
  8684. 165 659 2006-02-15 10:05:03
  8685. 165 693 2006-02-15 10:05:03
  8686. 165 737 2006-02-15 10:05:03
  8687. 165 779 2006-02-15 10:05:03
  8688. 165 798 2006-02-15 10:05:03
  8689. 165 807 2006-02-15 10:05:03
  8690. 165 809 2006-02-15 10:05:03
  8691. 165 832 2006-02-15 10:05:03
  8692. 165 833 2006-02-15 10:05:03
  8693. 165 947 2006-02-15 10:05:03
  8694. 165 948 2006-02-15 10:05:03
  8695. 165 962 2006-02-15 10:05:03
  8696. 166 25 2006-02-15 10:05:03
  8697. 166 38 2006-02-15 10:05:03
  8698. 166 55 2006-02-15 10:05:03
  8699. 166 61 2006-02-15 10:05:03
  8700. 166 68 2006-02-15 10:05:03
  8701. 166 86 2006-02-15 10:05:03
  8702. 166 146 2006-02-15 10:05:03
  8703. 166 255 2006-02-15 10:05:03
  8704. 166 297 2006-02-15 10:05:03
  8705. 166 306 2006-02-15 10:05:03
  8706. 166 326 2006-02-15 10:05:03
  8707. 166 361 2006-02-15 10:05:03
  8708. 166 366 2006-02-15 10:05:03
  8709. 166 426 2006-02-15 10:05:03
  8710. 166 580 2006-02-15 10:05:03
  8711. 166 622 2006-02-15 10:05:03
  8712. 166 674 2006-02-15 10:05:03
  8713. 166 714 2006-02-15 10:05:03
  8714. 166 788 2006-02-15 10:05:03
  8715. 166 867 2006-02-15 10:05:03
  8716. 166 944 2006-02-15 10:05:03
  8717. 166 1000 2006-02-15 10:05:03
  8718. 167 17 2006-02-15 10:05:03
  8719. 167 25 2006-02-15 10:05:03
  8720. 167 63 2006-02-15 10:05:03
  8721. 167 72 2006-02-15 10:05:03
  8722. 167 107 2006-02-15 10:05:03
  8723. 167 120 2006-02-15 10:05:03
  8724. 167 191 2006-02-15 10:05:03
  8725. 167 294 2006-02-15 10:05:03
  8726. 167 319 2006-02-15 10:05:03
  8727. 167 339 2006-02-15 10:05:03
  8728. 167 341 2006-02-15 10:05:03
  8729. 167 496 2006-02-15 10:05:03
  8730. 167 554 2006-02-15 10:05:03
  8731. 167 626 2006-02-15 10:05:03
  8732. 167 628 2006-02-15 10:05:03
  8733. 167 672 2006-02-15 10:05:03
  8734. 167 692 2006-02-15 10:05:03
  8735. 167 717 2006-02-15 10:05:03
  8736. 167 734 2006-02-15 10:05:03
  8737. 167 794 2006-02-15 10:05:03
  8738. 167 800 2006-02-15 10:05:03
  8739. 167 802 2006-02-15 10:05:03
  8740. 167 856 2006-02-15 10:05:03
  8741. 167 864 2006-02-15 10:05:03
  8742. 167 882 2006-02-15 10:05:03
  8743. 167 923 2006-02-15 10:05:03
  8744. 168 32 2006-02-15 10:05:03
  8745. 168 56 2006-02-15 10:05:03
  8746. 168 92 2006-02-15 10:05:03
  8747. 168 115 2006-02-15 10:05:03
  8748. 168 188 2006-02-15 10:05:03
  8749. 168 196 2006-02-15 10:05:03
  8750. 168 208 2006-02-15 10:05:03
  8751. 168 237 2006-02-15 10:05:03
  8752. 168 241 2006-02-15 10:05:03
  8753. 168 255 2006-02-15 10:05:03
  8754. 168 305 2006-02-15 10:05:03
  8755. 168 336 2006-02-15 10:05:03
  8756. 168 387 2006-02-15 10:05:03
  8757. 168 433 2006-02-15 10:05:03
  8758. 168 438 2006-02-15 10:05:03
  8759. 168 519 2006-02-15 10:05:03
  8760. 168 602 2006-02-15 10:05:03
  8761. 168 619 2006-02-15 10:05:03
  8762. 168 626 2006-02-15 10:05:03
  8763. 168 652 2006-02-15 10:05:03
  8764. 168 678 2006-02-15 10:05:03
  8765. 168 685 2006-02-15 10:05:03
  8766. 168 804 2006-02-15 10:05:03
  8767. 168 807 2006-02-15 10:05:03
  8768. 168 826 2006-02-15 10:05:03
  8769. 168 841 2006-02-15 10:05:03
  8770. 168 886 2006-02-15 10:05:03
  8771. 168 889 2006-02-15 10:05:03
  8772. 168 892 2006-02-15 10:05:03
  8773. 168 927 2006-02-15 10:05:03
  8774. 168 959 2006-02-15 10:05:03
  8775. 169 6 2006-02-15 10:05:03
  8776. 169 78 2006-02-15 10:05:03
  8777. 169 93 2006-02-15 10:05:03
  8778. 169 246 2006-02-15 10:05:03
  8779. 169 248 2006-02-15 10:05:03
  8780. 169 289 2006-02-15 10:05:03
  8781. 169 301 2006-02-15 10:05:03
  8782. 169 326 2006-02-15 10:05:03
  8783. 169 349 2006-02-15 10:05:03
  8784. 169 372 2006-02-15 10:05:03
  8785. 169 398 2006-02-15 10:05:03
  8786. 169 434 2006-02-15 10:05:03
  8787. 169 505 2006-02-15 10:05:03
  8788. 169 564 2006-02-15 10:05:03
  8789. 169 571 2006-02-15 10:05:03
  8790. 169 634 2006-02-15 10:05:03
  8791. 169 642 2006-02-15 10:05:03
  8792. 169 673 2006-02-15 10:05:03
  8793. 169 694 2006-02-15 10:05:03
  8794. 169 727 2006-02-15 10:05:03
  8795. 169 778 2006-02-15 10:05:03
  8796. 169 815 2006-02-15 10:05:03
  8797. 169 847 2006-02-15 10:05:03
  8798. 169 849 2006-02-15 10:05:03
  8799. 169 894 2006-02-15 10:05:03
  8800. 169 897 2006-02-15 10:05:03
  8801. 169 954 2006-02-15 10:05:03
  8802. 169 992 2006-02-15 10:05:03
  8803. 169 998 2006-02-15 10:05:03
  8804. 170 7 2006-02-15 10:05:03
  8805. 170 15 2006-02-15 10:05:03
  8806. 170 27 2006-02-15 10:05:03
  8807. 170 33 2006-02-15 10:05:03
  8808. 170 102 2006-02-15 10:05:03
  8809. 170 139 2006-02-15 10:05:03
  8810. 170 180 2006-02-15 10:05:03
  8811. 170 184 2006-02-15 10:05:03
  8812. 170 212 2006-02-15 10:05:03
  8813. 170 299 2006-02-15 10:05:03
  8814. 170 322 2006-02-15 10:05:03
  8815. 170 358 2006-02-15 10:05:03
  8816. 170 416 2006-02-15 10:05:03
  8817. 170 508 2006-02-15 10:05:03
  8818. 170 537 2006-02-15 10:05:03
  8819. 170 705 2006-02-15 10:05:03
  8820. 170 758 2006-02-15 10:05:03
  8821. 170 764 2006-02-15 10:05:03
  8822. 170 868 2006-02-15 10:05:03
  8823. 170 877 2006-02-15 10:05:03
  8824. 170 886 2006-02-15 10:05:03
  8825. 170 925 2006-02-15 10:05:03
  8826. 170 993 2006-02-15 10:05:03
  8827. 170 996 2006-02-15 10:05:03
  8828. 171 49 2006-02-15 10:05:03
  8829. 171 146 2006-02-15 10:05:03
  8830. 171 166 2006-02-15 10:05:03
  8831. 171 181 2006-02-15 10:05:03
  8832. 171 219 2006-02-15 10:05:03
  8833. 171 273 2006-02-15 10:05:03
  8834. 171 296 2006-02-15 10:05:03
  8835. 171 318 2006-02-15 10:05:03
  8836. 171 342 2006-02-15 10:05:03
  8837. 171 397 2006-02-15 10:05:03
  8838. 171 447 2006-02-15 10:05:03
  8839. 171 450 2006-02-15 10:05:03
  8840. 171 466 2006-02-15 10:05:03
  8841. 171 549 2006-02-15 10:05:03
  8842. 171 560 2006-02-15 10:05:03
  8843. 171 566 2006-02-15 10:05:03
  8844. 171 608 2006-02-15 10:05:03
  8845. 171 625 2006-02-15 10:05:03
  8846. 171 645 2006-02-15 10:05:03
  8847. 171 701 2006-02-15 10:05:03
  8848. 171 761 2006-02-15 10:05:03
  8849. 171 779 2006-02-15 10:05:03
  8850. 171 849 2006-02-15 10:05:03
  8851. 171 872 2006-02-15 10:05:03
  8852. 171 892 2006-02-15 10:05:03
  8853. 171 898 2006-02-15 10:05:03
  8854. 171 903 2006-02-15 10:05:03
  8855. 171 953 2006-02-15 10:05:03
  8856. 172 57 2006-02-15 10:05:03
  8857. 172 100 2006-02-15 10:05:03
  8858. 172 148 2006-02-15 10:05:03
  8859. 172 215 2006-02-15 10:05:03
  8860. 172 302 2006-02-15 10:05:03
  8861. 172 345 2006-02-15 10:05:03
  8862. 172 368 2006-02-15 10:05:03
  8863. 172 385 2006-02-15 10:05:03
  8864. 172 423 2006-02-15 10:05:03
  8865. 172 487 2006-02-15 10:05:03
  8866. 172 493 2006-02-15 10:05:03
  8867. 172 529 2006-02-15 10:05:03
  8868. 172 538 2006-02-15 10:05:03
  8869. 172 567 2006-02-15 10:05:03
  8870. 172 609 2006-02-15 10:05:03
  8871. 172 639 2006-02-15 10:05:03
  8872. 172 649 2006-02-15 10:05:03
  8873. 172 661 2006-02-15 10:05:03
  8874. 172 667 2006-02-15 10:05:03
  8875. 172 710 2006-02-15 10:05:03
  8876. 172 744 2006-02-15 10:05:03
  8877. 172 758 2006-02-15 10:05:03
  8878. 172 771 2006-02-15 10:05:03
  8879. 172 833 2006-02-15 10:05:03
  8880. 172 959 2006-02-15 10:05:03
  8881. 173 49 2006-02-15 10:05:03
  8882. 173 55 2006-02-15 10:05:03
  8883. 173 74 2006-02-15 10:05:03
  8884. 173 80 2006-02-15 10:05:03
  8885. 173 106 2006-02-15 10:05:03
  8886. 173 154 2006-02-15 10:05:03
  8887. 173 162 2006-02-15 10:05:03
  8888. 173 188 2006-02-15 10:05:03
  8889. 173 235 2006-02-15 10:05:03
  8890. 173 313 2006-02-15 10:05:03
  8891. 173 379 2006-02-15 10:05:03
  8892. 173 405 2006-02-15 10:05:03
  8893. 173 491 2006-02-15 10:05:03
  8894. 173 496 2006-02-15 10:05:03
  8895. 173 529 2006-02-15 10:05:03
  8896. 173 550 2006-02-15 10:05:03
  8897. 173 564 2006-02-15 10:05:03
  8898. 173 571 2006-02-15 10:05:03
  8899. 173 592 2006-02-15 10:05:03
  8900. 173 688 2006-02-15 10:05:03
  8901. 173 753 2006-02-15 10:05:03
  8902. 173 757 2006-02-15 10:05:03
  8903. 173 852 2006-02-15 10:05:03
  8904. 173 857 2006-02-15 10:05:03
  8905. 173 921 2006-02-15 10:05:03
  8906. 173 928 2006-02-15 10:05:03
  8907. 173 933 2006-02-15 10:05:03
  8908. 174 11 2006-02-15 10:05:03
  8909. 174 61 2006-02-15 10:05:03
  8910. 174 168 2006-02-15 10:05:03
  8911. 174 298 2006-02-15 10:05:03
  8912. 174 352 2006-02-15 10:05:03
  8913. 174 442 2006-02-15 10:05:03
  8914. 174 451 2006-02-15 10:05:03
  8915. 174 496 2006-02-15 10:05:03
  8916. 174 610 2006-02-15 10:05:03
  8917. 174 618 2006-02-15 10:05:03
  8918. 174 622 2006-02-15 10:05:03
  8919. 174 659 2006-02-15 10:05:03
  8920. 174 677 2006-02-15 10:05:03
  8921. 174 705 2006-02-15 10:05:03
  8922. 174 722 2006-02-15 10:05:03
  8923. 174 780 2006-02-15 10:05:03
  8924. 174 797 2006-02-15 10:05:03
  8925. 174 809 2006-02-15 10:05:03
  8926. 174 827 2006-02-15 10:05:03
  8927. 174 830 2006-02-15 10:05:03
  8928. 174 852 2006-02-15 10:05:03
  8929. 174 853 2006-02-15 10:05:03
  8930. 174 879 2006-02-15 10:05:03
  8931. 174 982 2006-02-15 10:05:03
  8932. 175 9 2006-02-15 10:05:03
  8933. 175 29 2006-02-15 10:05:03
  8934. 175 67 2006-02-15 10:05:03
  8935. 175 129 2006-02-15 10:05:03
  8936. 175 155 2006-02-15 10:05:03
  8937. 175 190 2006-02-15 10:05:03
  8938. 175 191 2006-02-15 10:05:03
  8939. 175 362 2006-02-15 10:05:03
  8940. 175 405 2006-02-15 10:05:03
  8941. 175 424 2006-02-15 10:05:03
  8942. 175 439 2006-02-15 10:05:03
  8943. 175 442 2006-02-15 10:05:03
  8944. 175 483 2006-02-15 10:05:03
  8945. 175 591 2006-02-15 10:05:03
  8946. 175 596 2006-02-15 10:05:03
  8947. 175 616 2006-02-15 10:05:03
  8948. 175 719 2006-02-15 10:05:03
  8949. 175 729 2006-02-15 10:05:03
  8950. 175 772 2006-02-15 10:05:03
  8951. 175 778 2006-02-15 10:05:03
  8952. 175 828 2006-02-15 10:05:03
  8953. 175 842 2006-02-15 10:05:03
  8954. 175 890 2006-02-15 10:05:03
  8955. 175 908 2006-02-15 10:05:03
  8956. 175 977 2006-02-15 10:05:03
  8957. 175 978 2006-02-15 10:05:03
  8958. 175 998 2006-02-15 10:05:03
  8959. 176 13 2006-02-15 10:05:03
  8960. 176 73 2006-02-15 10:05:03
  8961. 176 89 2006-02-15 10:05:03
  8962. 176 150 2006-02-15 10:05:03
  8963. 176 162 2006-02-15 10:05:03
  8964. 176 238 2006-02-15 10:05:03
  8965. 176 252 2006-02-15 10:05:03
  8966. 176 303 2006-02-15 10:05:03
  8967. 176 320 2006-02-15 10:05:03
  8968. 176 401 2006-02-15 10:05:03
  8969. 176 417 2006-02-15 10:05:03
  8970. 176 441 2006-02-15 10:05:03
  8971. 176 458 2006-02-15 10:05:03
  8972. 176 461 2006-02-15 10:05:03
  8973. 176 517 2006-02-15 10:05:03
  8974. 176 521 2006-02-15 10:05:03
  8975. 176 543 2006-02-15 10:05:03
  8976. 176 573 2006-02-15 10:05:03
  8977. 176 699 2006-02-15 10:05:03
  8978. 176 726 2006-02-15 10:05:03
  8979. 176 740 2006-02-15 10:05:03
  8980. 176 746 2006-02-15 10:05:03
  8981. 176 758 2006-02-15 10:05:03
  8982. 176 802 2006-02-15 10:05:03
  8983. 176 827 2006-02-15 10:05:03
  8984. 176 839 2006-02-15 10:05:03
  8985. 176 859 2006-02-15 10:05:03
  8986. 176 872 2006-02-15 10:05:03
  8987. 176 946 2006-02-15 10:05:03
  8988. 177 12 2006-02-15 10:05:03
  8989. 177 39 2006-02-15 10:05:03
  8990. 177 52 2006-02-15 10:05:03
  8991. 177 55 2006-02-15 10:05:03
  8992. 177 86 2006-02-15 10:05:03
  8993. 177 175 2006-02-15 10:05:03
  8994. 177 188 2006-02-15 10:05:03
  8995. 177 235 2006-02-15 10:05:03
  8996. 177 237 2006-02-15 10:05:03
  8997. 177 289 2006-02-15 10:05:03
  8998. 177 363 2006-02-15 10:05:03
  8999. 177 401 2006-02-15 10:05:03
  9000. 177 433 2006-02-15 10:05:03
  9001. 177 458 2006-02-15 10:05:03
  9002. 177 522 2006-02-15 10:05:03
  9003. 177 543 2006-02-15 10:05:03
  9004. 177 563 2006-02-15 10:05:03
  9005. 177 649 2006-02-15 10:05:03
  9006. 177 683 2006-02-15 10:05:03
  9007. 177 684 2006-02-15 10:05:03
  9008. 177 726 2006-02-15 10:05:03
  9009. 177 751 2006-02-15 10:05:03
  9010. 177 763 2006-02-15 10:05:03
  9011. 177 764 2006-02-15 10:05:03
  9012. 177 827 2006-02-15 10:05:03
  9013. 177 910 2006-02-15 10:05:03
  9014. 177 956 2006-02-15 10:05:03
  9015. 178 30 2006-02-15 10:05:03
  9016. 178 34 2006-02-15 10:05:03
  9017. 178 109 2006-02-15 10:05:03
  9018. 178 146 2006-02-15 10:05:03
  9019. 178 160 2006-02-15 10:05:03
  9020. 178 164 2006-02-15 10:05:03
  9021. 178 194 2006-02-15 10:05:03
  9022. 178 197 2006-02-15 10:05:03
  9023. 178 273 2006-02-15 10:05:03
  9024. 178 311 2006-02-15 10:05:03
  9025. 178 397 2006-02-15 10:05:03
  9026. 178 483 2006-02-15 10:05:03
  9027. 178 517 2006-02-15 10:05:03
  9028. 178 537 2006-02-15 10:05:03
  9029. 178 587 2006-02-15 10:05:03
  9030. 178 708 2006-02-15 10:05:03
  9031. 178 733 2006-02-15 10:05:03
  9032. 178 744 2006-02-15 10:05:03
  9033. 178 762 2006-02-15 10:05:03
  9034. 178 930 2006-02-15 10:05:03
  9035. 178 974 2006-02-15 10:05:03
  9036. 178 983 2006-02-15 10:05:03
  9037. 178 1000 2006-02-15 10:05:03
  9038. 179 24 2006-02-15 10:05:03
  9039. 179 27 2006-02-15 10:05:03
  9040. 179 65 2006-02-15 10:05:03
  9041. 179 85 2006-02-15 10:05:03
  9042. 179 109 2006-02-15 10:05:03
  9043. 179 131 2006-02-15 10:05:03
  9044. 179 159 2006-02-15 10:05:03
  9045. 179 193 2006-02-15 10:05:03
  9046. 179 250 2006-02-15 10:05:03
  9047. 179 291 2006-02-15 10:05:03
  9048. 179 353 2006-02-15 10:05:03
  9049. 179 415 2006-02-15 10:05:03
  9050. 179 463 2006-02-15 10:05:03
  9051. 179 468 2006-02-15 10:05:03
  9052. 179 489 2006-02-15 10:05:03
  9053. 179 566 2006-02-15 10:05:03
  9054. 179 588 2006-02-15 10:05:03
  9055. 179 650 2006-02-15 10:05:03
  9056. 179 698 2006-02-15 10:05:03
  9057. 179 732 2006-02-15 10:05:03
  9058. 179 737 2006-02-15 10:05:03
  9059. 179 769 2006-02-15 10:05:03
  9060. 179 811 2006-02-15 10:05:03
  9061. 179 817 2006-02-15 10:05:03
  9062. 179 852 2006-02-15 10:05:03
  9063. 179 924 2006-02-15 10:05:03
  9064. 179 931 2006-02-15 10:05:03
  9065. 179 960 2006-02-15 10:05:03
  9066. 179 976 2006-02-15 10:05:03
  9067. 180 12 2006-02-15 10:05:03
  9068. 180 33 2006-02-15 10:05:03
  9069. 180 144 2006-02-15 10:05:03
  9070. 180 195 2006-02-15 10:05:03
  9071. 180 258 2006-02-15 10:05:03
  9072. 180 441 2006-02-15 10:05:03
  9073. 180 506 2006-02-15 10:05:03
  9074. 180 561 2006-02-15 10:05:03
  9075. 180 609 2006-02-15 10:05:03
  9076. 180 622 2006-02-15 10:05:03
  9077. 180 628 2006-02-15 10:05:03
  9078. 180 657 2006-02-15 10:05:03
  9079. 180 724 2006-02-15 10:05:03
  9080. 180 729 2006-02-15 10:05:03
  9081. 180 732 2006-02-15 10:05:03
  9082. 180 777 2006-02-15 10:05:03
  9083. 180 809 2006-02-15 10:05:03
  9084. 180 811 2006-02-15 10:05:03
  9085. 180 820 2006-02-15 10:05:03
  9086. 180 824 2006-02-15 10:05:03
  9087. 180 847 2006-02-15 10:05:03
  9088. 180 869 2006-02-15 10:05:03
  9089. 180 874 2006-02-15 10:05:03
  9090. 180 955 2006-02-15 10:05:03
  9091. 180 963 2006-02-15 10:05:03
  9092. 181 5 2006-02-15 10:05:03
  9093. 181 40 2006-02-15 10:05:03
  9094. 181 74 2006-02-15 10:05:03
  9095. 181 78 2006-02-15 10:05:03
  9096. 181 83 2006-02-15 10:05:03
  9097. 181 152 2006-02-15 10:05:03
  9098. 181 195 2006-02-15 10:05:03
  9099. 181 233 2006-02-15 10:05:03
  9100. 181 286 2006-02-15 10:05:03
  9101. 181 301 2006-02-15 10:05:03
  9102. 181 311 2006-02-15 10:05:03
  9103. 181 381 2006-02-15 10:05:03
  9104. 181 387 2006-02-15 10:05:03
  9105. 181 403 2006-02-15 10:05:03
  9106. 181 409 2006-02-15 10:05:03
  9107. 181 420 2006-02-15 10:05:03
  9108. 181 437 2006-02-15 10:05:03
  9109. 181 456 2006-02-15 10:05:03
  9110. 181 507 2006-02-15 10:05:03
  9111. 181 522 2006-02-15 10:05:03
  9112. 181 539 2006-02-15 10:05:03
  9113. 181 542 2006-02-15 10:05:03
  9114. 181 546 2006-02-15 10:05:03
  9115. 181 579 2006-02-15 10:05:03
  9116. 181 596 2006-02-15 10:05:03
  9117. 181 604 2006-02-15 10:05:03
  9118. 181 609 2006-02-15 10:05:03
  9119. 181 625 2006-02-15 10:05:03
  9120. 181 744 2006-02-15 10:05:03
  9121. 181 816 2006-02-15 10:05:03
  9122. 181 836 2006-02-15 10:05:03
  9123. 181 868 2006-02-15 10:05:03
  9124. 181 870 2006-02-15 10:05:03
  9125. 181 874 2006-02-15 10:05:03
  9126. 181 892 2006-02-15 10:05:03
  9127. 181 907 2006-02-15 10:05:03
  9128. 181 911 2006-02-15 10:05:03
  9129. 181 921 2006-02-15 10:05:03
  9130. 181 991 2006-02-15 10:05:03
  9131. 182 33 2006-02-15 10:05:03
  9132. 182 160 2006-02-15 10:05:03
  9133. 182 301 2006-02-15 10:05:03
  9134. 182 324 2006-02-15 10:05:03
  9135. 182 346 2006-02-15 10:05:03
  9136. 182 362 2006-02-15 10:05:03
  9137. 182 391 2006-02-15 10:05:03
  9138. 182 413 2006-02-15 10:05:03
  9139. 182 421 2006-02-15 10:05:03
  9140. 182 437 2006-02-15 10:05:03
  9141. 182 590 2006-02-15 10:05:03
  9142. 182 639 2006-02-15 10:05:03
  9143. 182 668 2006-02-15 10:05:03
  9144. 182 677 2006-02-15 10:05:03
  9145. 182 679 2006-02-15 10:05:03
  9146. 182 695 2006-02-15 10:05:03
  9147. 182 714 2006-02-15 10:05:03
  9148. 182 720 2006-02-15 10:05:03
  9149. 182 819 2006-02-15 10:05:03
  9150. 182 828 2006-02-15 10:05:03
  9151. 182 845 2006-02-15 10:05:03
  9152. 182 864 2006-02-15 10:05:03
  9153. 182 940 2006-02-15 10:05:03
  9154. 182 990 2006-02-15 10:05:03
  9155. 183 32 2006-02-15 10:05:03
  9156. 183 40 2006-02-15 10:05:03
  9157. 183 71 2006-02-15 10:05:03
  9158. 183 113 2006-02-15 10:05:03
  9159. 183 313 2006-02-15 10:05:03
  9160. 183 388 2006-02-15 10:05:03
  9161. 183 389 2006-02-15 10:05:03
  9162. 183 390 2006-02-15 10:05:03
  9163. 183 495 2006-02-15 10:05:03
  9164. 183 520 2006-02-15 10:05:03
  9165. 183 576 2006-02-15 10:05:03
  9166. 183 636 2006-02-15 10:05:03
  9167. 183 715 2006-02-15 10:05:03
  9168. 183 850 2006-02-15 10:05:03
  9169. 183 862 2006-02-15 10:05:03
  9170. 183 914 2006-02-15 10:05:03
  9171. 183 941 2006-02-15 10:05:03
  9172. 183 949 2006-02-15 10:05:03
  9173. 183 983 2006-02-15 10:05:03
  9174. 184 35 2006-02-15 10:05:03
  9175. 184 87 2006-02-15 10:05:03
  9176. 184 146 2006-02-15 10:05:03
  9177. 184 169 2006-02-15 10:05:03
  9178. 184 221 2006-02-15 10:05:03
  9179. 184 336 2006-02-15 10:05:03
  9180. 184 371 2006-02-15 10:05:03
  9181. 184 452 2006-02-15 10:05:03
  9182. 184 486 2006-02-15 10:05:03
  9183. 184 492 2006-02-15 10:05:03
  9184. 184 500 2006-02-15 10:05:03
  9185. 184 574 2006-02-15 10:05:03
  9186. 184 580 2006-02-15 10:05:03
  9187. 184 597 2006-02-15 10:05:03
  9188. 184 615 2006-02-15 10:05:03
  9189. 184 640 2006-02-15 10:05:03
  9190. 184 642 2006-02-15 10:05:03
  9191. 184 650 2006-02-15 10:05:03
  9192. 184 661 2006-02-15 10:05:03
  9193. 184 684 2006-02-15 10:05:03
  9194. 184 745 2006-02-15 10:05:03
  9195. 184 772 2006-02-15 10:05:03
  9196. 184 787 2006-02-15 10:05:03
  9197. 184 867 2006-02-15 10:05:03
  9198. 184 959 2006-02-15 10:05:03
  9199. 184 966 2006-02-15 10:05:03
  9200. 184 967 2006-02-15 10:05:03
  9201. 184 969 2006-02-15 10:05:03
  9202. 184 985 2006-02-15 10:05:03
  9203. 185 7 2006-02-15 10:05:03
  9204. 185 95 2006-02-15 10:05:03
  9205. 185 138 2006-02-15 10:05:03
  9206. 185 265 2006-02-15 10:05:03
  9207. 185 286 2006-02-15 10:05:03
  9208. 185 360 2006-02-15 10:05:03
  9209. 185 411 2006-02-15 10:05:03
  9210. 185 427 2006-02-15 10:05:03
  9211. 185 437 2006-02-15 10:05:03
  9212. 185 448 2006-02-15 10:05:03
  9213. 185 494 2006-02-15 10:05:03
  9214. 185 510 2006-02-15 10:05:03
  9215. 185 518 2006-02-15 10:05:03
  9216. 185 554 2006-02-15 10:05:03
  9217. 185 560 2006-02-15 10:05:03
  9218. 185 571 2006-02-15 10:05:03
  9219. 185 584 2006-02-15 10:05:03
  9220. 185 631 2006-02-15 10:05:03
  9221. 185 665 2006-02-15 10:05:03
  9222. 185 694 2006-02-15 10:05:03
  9223. 185 730 2006-02-15 10:05:03
  9224. 185 761 2006-02-15 10:05:03
  9225. 185 818 2006-02-15 10:05:03
  9226. 185 845 2006-02-15 10:05:03
  9227. 185 880 2006-02-15 10:05:03
  9228. 185 882 2006-02-15 10:05:03
  9229. 185 919 2006-02-15 10:05:03
  9230. 185 920 2006-02-15 10:05:03
  9231. 185 965 2006-02-15 10:05:03
  9232. 185 973 2006-02-15 10:05:03
  9233. 186 95 2006-02-15 10:05:03
  9234. 186 187 2006-02-15 10:05:03
  9235. 186 208 2006-02-15 10:05:03
  9236. 186 228 2006-02-15 10:05:03
  9237. 186 237 2006-02-15 10:05:03
  9238. 186 422 2006-02-15 10:05:03
  9239. 186 482 2006-02-15 10:05:03
  9240. 186 508 2006-02-15 10:05:03
  9241. 186 552 2006-02-15 10:05:03
  9242. 186 579 2006-02-15 10:05:03
  9243. 186 637 2006-02-15 10:05:03
  9244. 186 648 2006-02-15 10:05:03
  9245. 186 654 2006-02-15 10:05:03
  9246. 186 729 2006-02-15 10:05:03
  9247. 186 983 2006-02-15 10:05:03
  9248. 186 994 2006-02-15 10:05:03
  9249. 187 17 2006-02-15 10:05:03
  9250. 187 25 2006-02-15 10:05:03
  9251. 187 29 2006-02-15 10:05:03
  9252. 187 51 2006-02-15 10:05:03
  9253. 187 73 2006-02-15 10:05:03
  9254. 187 76 2006-02-15 10:05:03
  9255. 187 98 2006-02-15 10:05:03
  9256. 187 110 2006-02-15 10:05:03
  9257. 187 127 2006-02-15 10:05:03
  9258. 187 168 2006-02-15 10:05:03
  9259. 187 222 2006-02-15 10:05:03
  9260. 187 224 2006-02-15 10:05:03
  9261. 187 297 2006-02-15 10:05:03
  9262. 187 354 2006-02-15 10:05:03
  9263. 187 379 2006-02-15 10:05:03
  9264. 187 417 2006-02-15 10:05:03
  9265. 187 435 2006-02-15 10:05:03
  9266. 187 441 2006-02-15 10:05:03
  9267. 187 474 2006-02-15 10:05:03
  9268. 187 499 2006-02-15 10:05:03
  9269. 187 538 2006-02-15 10:05:03
  9270. 187 548 2006-02-15 10:05:03
  9271. 187 561 2006-02-15 10:05:03
  9272. 187 617 2006-02-15 10:05:03
  9273. 187 625 2006-02-15 10:05:03
  9274. 187 664 2006-02-15 10:05:03
  9275. 187 671 2006-02-15 10:05:03
  9276. 187 768 2006-02-15 10:05:03
  9277. 187 779 2006-02-15 10:05:03
  9278. 187 906 2006-02-15 10:05:03
  9279. 187 914 2006-02-15 10:05:03
  9280. 187 923 2006-02-15 10:05:03
  9281. 187 976 2006-02-15 10:05:03
  9282. 188 1 2006-02-15 10:05:03
  9283. 188 10 2006-02-15 10:05:03
  9284. 188 14 2006-02-15 10:05:03
  9285. 188 51 2006-02-15 10:05:03
  9286. 188 102 2006-02-15 10:05:03
  9287. 188 111 2006-02-15 10:05:03
  9288. 188 146 2006-02-15 10:05:03
  9289. 188 206 2006-02-15 10:05:03
  9290. 188 223 2006-02-15 10:05:03
  9291. 188 289 2006-02-15 10:05:03
  9292. 188 311 2006-02-15 10:05:03
  9293. 188 322 2006-02-15 10:05:03
  9294. 188 338 2006-02-15 10:05:03
  9295. 188 396 2006-02-15 10:05:03
  9296. 188 412 2006-02-15 10:05:03
  9297. 188 506 2006-02-15 10:05:03
  9298. 188 517 2006-02-15 10:05:03
  9299. 188 529 2006-02-15 10:05:03
  9300. 188 566 2006-02-15 10:05:03
  9301. 188 593 2006-02-15 10:05:03
  9302. 188 606 2006-02-15 10:05:03
  9303. 188 662 2006-02-15 10:05:03
  9304. 188 770 2006-02-15 10:05:03
  9305. 188 773 2006-02-15 10:05:03
  9306. 188 774 2006-02-15 10:05:03
  9307. 188 815 2006-02-15 10:05:03
  9308. 188 849 2006-02-15 10:05:03
  9309. 188 925 2006-02-15 10:05:03
  9310. 188 988 2006-02-15 10:05:03
  9311. 188 989 2006-02-15 10:05:03
  9312. 189 43 2006-02-15 10:05:03
  9313. 189 82 2006-02-15 10:05:03
  9314. 189 171 2006-02-15 10:05:03
  9315. 189 266 2006-02-15 10:05:03
  9316. 189 272 2006-02-15 10:05:03
  9317. 189 315 2006-02-15 10:05:03
  9318. 189 378 2006-02-15 10:05:03
  9319. 189 492 2006-02-15 10:05:03
  9320. 189 509 2006-02-15 10:05:03
  9321. 189 512 2006-02-15 10:05:03
  9322. 189 519 2006-02-15 10:05:03
  9323. 189 533 2006-02-15 10:05:03
  9324. 189 548 2006-02-15 10:05:03
  9325. 189 560 2006-02-15 10:05:03
  9326. 189 628 2006-02-15 10:05:03
  9327. 189 734 2006-02-15 10:05:03
  9328. 189 748 2006-02-15 10:05:03
  9329. 189 788 2006-02-15 10:05:03
  9330. 189 820 2006-02-15 10:05:03
  9331. 189 853 2006-02-15 10:05:03
  9332. 189 882 2006-02-15 10:05:03
  9333. 189 896 2006-02-15 10:05:03
  9334. 189 899 2006-02-15 10:05:03
  9335. 189 940 2006-02-15 10:05:03
  9336. 190 38 2006-02-15 10:05:03
  9337. 190 54 2006-02-15 10:05:03
  9338. 190 62 2006-02-15 10:05:03
  9339. 190 87 2006-02-15 10:05:03
  9340. 190 173 2006-02-15 10:05:03
  9341. 190 234 2006-02-15 10:05:03
  9342. 190 253 2006-02-15 10:05:03
  9343. 190 278 2006-02-15 10:05:03
  9344. 190 310 2006-02-15 10:05:03
  9345. 190 374 2006-02-15 10:05:03
  9346. 190 411 2006-02-15 10:05:03
  9347. 190 426 2006-02-15 10:05:03
  9348. 190 472 2006-02-15 10:05:03
  9349. 190 549 2006-02-15 10:05:03
  9350. 190 562 2006-02-15 10:05:03
  9351. 190 606 2006-02-15 10:05:03
  9352. 190 623 2006-02-15 10:05:03
  9353. 190 679 2006-02-15 10:05:03
  9354. 190 682 2006-02-15 10:05:03
  9355. 190 693 2006-02-15 10:05:03
  9356. 190 695 2006-02-15 10:05:03
  9357. 190 705 2006-02-15 10:05:03
  9358. 190 708 2006-02-15 10:05:03
  9359. 190 802 2006-02-15 10:05:03
  9360. 190 806 2006-02-15 10:05:03
  9361. 190 874 2006-02-15 10:05:03
  9362. 190 959 2006-02-15 10:05:03
  9363. 191 16 2006-02-15 10:05:03
  9364. 191 39 2006-02-15 10:05:03
  9365. 191 84 2006-02-15 10:05:03
  9366. 191 185 2006-02-15 10:05:03
  9367. 191 219 2006-02-15 10:05:03
  9368. 191 293 2006-02-15 10:05:03
  9369. 191 296 2006-02-15 10:05:03
  9370. 191 378 2006-02-15 10:05:03
  9371. 191 410 2006-02-15 10:05:03
  9372. 191 420 2006-02-15 10:05:03
  9373. 191 461 2006-02-15 10:05:03
  9374. 191 544 2006-02-15 10:05:03
  9375. 191 551 2006-02-15 10:05:03
  9376. 191 596 2006-02-15 10:05:03
  9377. 191 638 2006-02-15 10:05:03
  9378. 191 668 2006-02-15 10:05:03
  9379. 191 692 2006-02-15 10:05:03
  9380. 191 775 2006-02-15 10:05:03
  9381. 191 801 2006-02-15 10:05:03
  9382. 191 819 2006-02-15 10:05:03
  9383. 191 827 2006-02-15 10:05:03
  9384. 191 830 2006-02-15 10:05:03
  9385. 191 834 2006-02-15 10:05:03
  9386. 191 849 2006-02-15 10:05:03
  9387. 191 858 2006-02-15 10:05:03
  9388. 191 914 2006-02-15 10:05:03
  9389. 191 958 2006-02-15 10:05:03
  9390. 191 969 2006-02-15 10:05:03
  9391. 191 971 2006-02-15 10:05:03
  9392. 191 993 2006-02-15 10:05:03
  9393. 192 16 2006-02-15 10:05:03
  9394. 192 69 2006-02-15 10:05:03
  9395. 192 117 2006-02-15 10:05:03
  9396. 192 155 2006-02-15 10:05:03
  9397. 192 166 2006-02-15 10:05:03
  9398. 192 179 2006-02-15 10:05:03
  9399. 192 214 2006-02-15 10:05:03
  9400. 192 361 2006-02-15 10:05:03
  9401. 192 367 2006-02-15 10:05:03
  9402. 192 426 2006-02-15 10:05:03
  9403. 192 465 2006-02-15 10:05:03
  9404. 192 470 2006-02-15 10:05:03
  9405. 192 475 2006-02-15 10:05:03
  9406. 192 485 2006-02-15 10:05:03
  9407. 192 541 2006-02-15 10:05:03
  9408. 192 578 2006-02-15 10:05:03
  9409. 192 592 2006-02-15 10:05:03
  9410. 192 614 2006-02-15 10:05:03
  9411. 192 618 2006-02-15 10:05:03
  9412. 192 622 2006-02-15 10:05:03
  9413. 192 674 2006-02-15 10:05:03
  9414. 192 677 2006-02-15 10:05:03
  9415. 192 680 2006-02-15 10:05:03
  9416. 192 682 2006-02-15 10:05:03
  9417. 192 708 2006-02-15 10:05:03
  9418. 192 711 2006-02-15 10:05:03
  9419. 192 747 2006-02-15 10:05:03
  9420. 192 763 2006-02-15 10:05:03
  9421. 192 819 2006-02-15 10:05:03
  9422. 193 44 2006-02-15 10:05:03
  9423. 193 80 2006-02-15 10:05:03
  9424. 193 103 2006-02-15 10:05:03
  9425. 193 109 2006-02-15 10:05:03
  9426. 193 119 2006-02-15 10:05:03
  9427. 193 141 2006-02-15 10:05:03
  9428. 193 164 2006-02-15 10:05:03
  9429. 193 291 2006-02-15 10:05:03
  9430. 193 352 2006-02-15 10:05:03
  9431. 193 358 2006-02-15 10:05:03
  9432. 193 376 2006-02-15 10:05:03
  9433. 193 412 2006-02-15 10:05:03
  9434. 193 462 2006-02-15 10:05:03
  9435. 193 689 2006-02-15 10:05:03
  9436. 193 709 2006-02-15 10:05:03
  9437. 193 745 2006-02-15 10:05:03
  9438. 193 807 2006-02-15 10:05:03
  9439. 193 828 2006-02-15 10:05:03
  9440. 193 834 2006-02-15 10:05:03
  9441. 193 851 2006-02-15 10:05:03
  9442. 193 937 2006-02-15 10:05:03
  9443. 193 953 2006-02-15 10:05:03
  9444. 193 960 2006-02-15 10:05:03
  9445. 194 9 2006-02-15 10:05:03
  9446. 194 42 2006-02-15 10:05:03
  9447. 194 67 2006-02-15 10:05:03
  9448. 194 86 2006-02-15 10:05:03
  9449. 194 88 2006-02-15 10:05:03
  9450. 194 98 2006-02-15 10:05:03
  9451. 194 135 2006-02-15 10:05:03
  9452. 194 161 2006-02-15 10:05:03
  9453. 194 163 2006-02-15 10:05:03
  9454. 194 215 2006-02-15 10:05:03
  9455. 194 232 2006-02-15 10:05:03
  9456. 194 352 2006-02-15 10:05:03
  9457. 194 415 2006-02-15 10:05:03
  9458. 194 486 2006-02-15 10:05:03
  9459. 194 498 2006-02-15 10:05:03
  9460. 194 531 2006-02-15 10:05:03
  9461. 194 719 2006-02-15 10:05:03
  9462. 194 738 2006-02-15 10:05:03
  9463. 194 786 2006-02-15 10:05:03
  9464. 194 872 2006-02-15 10:05:03
  9465. 194 938 2006-02-15 10:05:03
  9466. 194 940 2006-02-15 10:05:03
  9467. 195 129 2006-02-15 10:05:03
  9468. 195 130 2006-02-15 10:05:03
  9469. 195 141 2006-02-15 10:05:03
  9470. 195 144 2006-02-15 10:05:03
  9471. 195 298 2006-02-15 10:05:03
  9472. 195 359 2006-02-15 10:05:03
  9473. 195 361 2006-02-15 10:05:03
  9474. 195 392 2006-02-15 10:05:03
  9475. 195 403 2006-02-15 10:05:03
  9476. 195 494 2006-02-15 10:05:03
  9477. 195 520 2006-02-15 10:05:03
  9478. 195 534 2006-02-15 10:05:03
  9479. 195 560 2006-02-15 10:05:03
  9480. 195 592 2006-02-15 10:05:03
  9481. 195 649 2006-02-15 10:05:03
  9482. 195 658 2006-02-15 10:05:03
  9483. 195 673 2006-02-15 10:05:03
  9484. 195 677 2006-02-15 10:05:03
  9485. 195 706 2006-02-15 10:05:03
  9486. 195 738 2006-02-15 10:05:03
  9487. 195 769 2006-02-15 10:05:03
  9488. 195 781 2006-02-15 10:05:03
  9489. 195 794 2006-02-15 10:05:03
  9490. 195 813 2006-02-15 10:05:03
  9491. 195 869 2006-02-15 10:05:03
  9492. 195 885 2006-02-15 10:05:03
  9493. 195 962 2006-02-15 10:05:03
  9494. 196 64 2006-02-15 10:05:03
  9495. 196 122 2006-02-15 10:05:03
  9496. 196 156 2006-02-15 10:05:03
  9497. 196 169 2006-02-15 10:05:03
  9498. 196 276 2006-02-15 10:05:03
  9499. 196 284 2006-02-15 10:05:03
  9500. 196 303 2006-02-15 10:05:03
  9501. 196 324 2006-02-15 10:05:03
  9502. 196 423 2006-02-15 10:05:03
  9503. 196 473 2006-02-15 10:05:03
  9504. 196 484 2006-02-15 10:05:03
  9505. 196 515 2006-02-15 10:05:03
  9506. 196 524 2006-02-15 10:05:03
  9507. 196 541 2006-02-15 10:05:03
  9508. 196 560 2006-02-15 10:05:03
  9509. 196 575 2006-02-15 10:05:03
  9510. 196 576 2006-02-15 10:05:03
  9511. 196 587 2006-02-15 10:05:03
  9512. 196 615 2006-02-15 10:05:03
  9513. 196 635 2006-02-15 10:05:03
  9514. 196 684 2006-02-15 10:05:03
  9515. 196 795 2006-02-15 10:05:03
  9516. 196 815 2006-02-15 10:05:03
  9517. 196 833 2006-02-15 10:05:03
  9518. 196 837 2006-02-15 10:05:03
  9519. 196 906 2006-02-15 10:05:03
  9520. 196 908 2006-02-15 10:05:03
  9521. 196 919 2006-02-15 10:05:03
  9522. 196 939 2006-02-15 10:05:03
  9523. 196 972 2006-02-15 10:05:03
  9524. 197 6 2006-02-15 10:05:03
  9525. 197 29 2006-02-15 10:05:03
  9526. 197 63 2006-02-15 10:05:03
  9527. 197 123 2006-02-15 10:05:03
  9528. 197 129 2006-02-15 10:05:03
  9529. 197 147 2006-02-15 10:05:03
  9530. 197 164 2006-02-15 10:05:03
  9531. 197 189 2006-02-15 10:05:03
  9532. 197 243 2006-02-15 10:05:03
  9533. 197 249 2006-02-15 10:05:03
  9534. 197 258 2006-02-15 10:05:03
  9535. 197 364 2006-02-15 10:05:03
  9536. 197 369 2006-02-15 10:05:03
  9537. 197 370 2006-02-15 10:05:03
  9538. 197 418 2006-02-15 10:05:03
  9539. 197 522 2006-02-15 10:05:03
  9540. 197 531 2006-02-15 10:05:03
  9541. 197 554 2006-02-15 10:05:03
  9542. 197 598 2006-02-15 10:05:03
  9543. 197 628 2006-02-15 10:05:03
  9544. 197 691 2006-02-15 10:05:03
  9545. 197 724 2006-02-15 10:05:03
  9546. 197 746 2006-02-15 10:05:03
  9547. 197 752 2006-02-15 10:05:03
  9548. 197 758 2006-02-15 10:05:03
  9549. 197 769 2006-02-15 10:05:03
  9550. 197 815 2006-02-15 10:05:03
  9551. 197 916 2006-02-15 10:05:03
  9552. 197 950 2006-02-15 10:05:03
  9553. 197 967 2006-02-15 10:05:03
  9554. 197 974 2006-02-15 10:05:03
  9555. 197 979 2006-02-15 10:05:03
  9556. 197 995 2006-02-15 10:05:03
  9557. 198 1 2006-02-15 10:05:03
  9558. 198 109 2006-02-15 10:05:03
  9559. 198 125 2006-02-15 10:05:03
  9560. 198 186 2006-02-15 10:05:03
  9561. 198 262 2006-02-15 10:05:03
  9562. 198 264 2006-02-15 10:05:03
  9563. 198 303 2006-02-15 10:05:03
  9564. 198 309 2006-02-15 10:05:03
  9565. 198 311 2006-02-15 10:05:03
  9566. 198 329 2006-02-15 10:05:03
  9567. 198 347 2006-02-15 10:05:03
  9568. 198 379 2006-02-15 10:05:03
  9569. 198 395 2006-02-15 10:05:03
  9570. 198 406 2006-02-15 10:05:03
  9571. 198 450 2006-02-15 10:05:03
  9572. 198 464 2006-02-15 10:05:03
  9573. 198 482 2006-02-15 10:05:03
  9574. 198 499 2006-02-15 10:05:03
  9575. 198 536 2006-02-15 10:05:03
  9576. 198 541 2006-02-15 10:05:03
  9577. 198 545 2006-02-15 10:05:03
  9578. 198 555 2006-02-15 10:05:03
  9579. 198 568 2006-02-15 10:05:03
  9580. 198 570 2006-02-15 10:05:03
  9581. 198 588 2006-02-15 10:05:03
  9582. 198 597 2006-02-15 10:05:03
  9583. 198 628 2006-02-15 10:05:03
  9584. 198 745 2006-02-15 10:05:03
  9585. 198 758 2006-02-15 10:05:03
  9586. 198 796 2006-02-15 10:05:03
  9587. 198 806 2006-02-15 10:05:03
  9588. 198 817 2006-02-15 10:05:03
  9589. 198 843 2006-02-15 10:05:03
  9590. 198 858 2006-02-15 10:05:03
  9591. 198 871 2006-02-15 10:05:03
  9592. 198 886 2006-02-15 10:05:03
  9593. 198 892 2006-02-15 10:05:03
  9594. 198 924 2006-02-15 10:05:03
  9595. 198 952 2006-02-15 10:05:03
  9596. 198 997 2006-02-15 10:05:03
  9597. 199 67 2006-02-15 10:05:03
  9598. 199 84 2006-02-15 10:05:03
  9599. 199 145 2006-02-15 10:05:03
  9600. 199 159 2006-02-15 10:05:03
  9601. 199 216 2006-02-15 10:05:03
  9602. 199 432 2006-02-15 10:05:03
  9603. 199 541 2006-02-15 10:05:03
  9604. 199 604 2006-02-15 10:05:03
  9605. 199 640 2006-02-15 10:05:03
  9606. 199 689 2006-02-15 10:05:03
  9607. 199 730 2006-02-15 10:05:03
  9608. 199 784 2006-02-15 10:05:03
  9609. 199 785 2006-02-15 10:05:03
  9610. 199 886 2006-02-15 10:05:03
  9611. 199 953 2006-02-15 10:05:03
  9612. 200 5 2006-02-15 10:05:03
  9613. 200 49 2006-02-15 10:05:03
  9614. 200 80 2006-02-15 10:05:03
  9615. 200 116 2006-02-15 10:05:03
  9616. 200 121 2006-02-15 10:05:03
  9617. 200 149 2006-02-15 10:05:03
  9618. 200 346 2006-02-15 10:05:03
  9619. 200 419 2006-02-15 10:05:03
  9620. 200 462 2006-02-15 10:05:03
  9621. 200 465 2006-02-15 10:05:03
  9622. 200 474 2006-02-15 10:05:03
  9623. 200 537 2006-02-15 10:05:03
  9624. 200 538 2006-02-15 10:05:03
  9625. 200 544 2006-02-15 10:05:03
  9626. 200 714 2006-02-15 10:05:03
  9627. 200 879 2006-02-15 10:05:03
  9628. 200 912 2006-02-15 10:05:03
  9629. 200 945 2006-02-15 10:05:03
  9630. 200 958 2006-02-15 10:05:03
  9631. 200 993 2006-02-15 10:05:03
  9632. \.
  9633.  
  9634.  
  9635. --
  9636. -- Data for Name: film_category; Type: TABLE DATA; Schema: public; Owner: postgres
  9637. --
  9638.  
  9639. COPY "film_category" ("film_id", "category_id", "last_update") FROM stdin;
  9640. 1 6 2006-02-15 10:07:09
  9641. 2 11 2006-02-15 10:07:09
  9642. 3 6 2006-02-15 10:07:09
  9643. 4 11 2006-02-15 10:07:09
  9644. 5 8 2006-02-15 10:07:09
  9645. 6 9 2006-02-15 10:07:09
  9646. 7 5 2006-02-15 10:07:09
  9647. 8 11 2006-02-15 10:07:09
  9648. 9 11 2006-02-15 10:07:09
  9649. 10 15 2006-02-15 10:07:09
  9650. 11 9 2006-02-15 10:07:09
  9651. 12 12 2006-02-15 10:07:09
  9652. 13 11 2006-02-15 10:07:09
  9653. 14 4 2006-02-15 10:07:09
  9654. 15 9 2006-02-15 10:07:09
  9655. 16 9 2006-02-15 10:07:09
  9656. 17 12 2006-02-15 10:07:09
  9657. 18 2 2006-02-15 10:07:09
  9658. 19 1 2006-02-15 10:07:09
  9659. 20 12 2006-02-15 10:07:09
  9660. 21 1 2006-02-15 10:07:09
  9661. 22 13 2006-02-15 10:07:09
  9662. 23 2 2006-02-15 10:07:09
  9663. 24 11 2006-02-15 10:07:09
  9664. 25 13 2006-02-15 10:07:09
  9665. 26 14 2006-02-15 10:07:09
  9666. 27 15 2006-02-15 10:07:09
  9667. 28 5 2006-02-15 10:07:09
  9668. 29 1 2006-02-15 10:07:09
  9669. 30 11 2006-02-15 10:07:09
  9670. 31 8 2006-02-15 10:07:09
  9671. 32 13 2006-02-15 10:07:09
  9672. 33 7 2006-02-15 10:07:09
  9673. 34 11 2006-02-15 10:07:09
  9674. 35 11 2006-02-15 10:07:09
  9675. 36 2 2006-02-15 10:07:09
  9676. 37 4 2006-02-15 10:07:09
  9677. 38 1 2006-02-15 10:07:09
  9678. 39 14 2006-02-15 10:07:09
  9679. 40 6 2006-02-15 10:07:09
  9680. 41 16 2006-02-15 10:07:09
  9681. 42 15 2006-02-15 10:07:09
  9682. 43 8 2006-02-15 10:07:09
  9683. 44 14 2006-02-15 10:07:09
  9684. 45 13 2006-02-15 10:07:09
  9685. 46 10 2006-02-15 10:07:09
  9686. 47 9 2006-02-15 10:07:09
  9687. 48 3 2006-02-15 10:07:09
  9688. 49 14 2006-02-15 10:07:09
  9689. 50 8 2006-02-15 10:07:09
  9690. 51 12 2006-02-15 10:07:09
  9691. 52 9 2006-02-15 10:07:09
  9692. 53 8 2006-02-15 10:07:09
  9693. 54 12 2006-02-15 10:07:09
  9694. 55 14 2006-02-15 10:07:09
  9695. 56 1 2006-02-15 10:07:09
  9696. 57 16 2006-02-15 10:07:09
  9697. 58 6 2006-02-15 10:07:09
  9698. 59 3 2006-02-15 10:07:09
  9699. 60 4 2006-02-15 10:07:09
  9700. 61 7 2006-02-15 10:07:09
  9701. 62 6 2006-02-15 10:07:09
  9702. 63 8 2006-02-15 10:07:09
  9703. 64 7 2006-02-15 10:07:09
  9704. 65 11 2006-02-15 10:07:09
  9705. 66 3 2006-02-15 10:07:09
  9706. 67 1 2006-02-15 10:07:09
  9707. 68 3 2006-02-15 10:07:09
  9708. 69 14 2006-02-15 10:07:09
  9709. 70 2 2006-02-15 10:07:09
  9710. 71 8 2006-02-15 10:07:09
  9711. 72 6 2006-02-15 10:07:09
  9712. 73 14 2006-02-15 10:07:09
  9713. 74 12 2006-02-15 10:07:09
  9714. 75 16 2006-02-15 10:07:09
  9715. 76 12 2006-02-15 10:07:09
  9716. 77 13 2006-02-15 10:07:09
  9717. 78 2 2006-02-15 10:07:09
  9718. 79 7 2006-02-15 10:07:09
  9719. 80 8 2006-02-15 10:07:09
  9720. 81 14 2006-02-15 10:07:09
  9721. 82 8 2006-02-15 10:07:09
  9722. 83 8 2006-02-15 10:07:09
  9723. 84 16 2006-02-15 10:07:09
  9724. 85 6 2006-02-15 10:07:09
  9725. 86 12 2006-02-15 10:07:09
  9726. 87 16 2006-02-15 10:07:09
  9727. 88 16 2006-02-15 10:07:09
  9728. 89 2 2006-02-15 10:07:09
  9729. 90 13 2006-02-15 10:07:09
  9730. 91 4 2006-02-15 10:07:09
  9731. 92 11 2006-02-15 10:07:09
  9732. 93 13 2006-02-15 10:07:09
  9733. 94 8 2006-02-15 10:07:09
  9734. 95 13 2006-02-15 10:07:09
  9735. 96 13 2006-02-15 10:07:09
  9736. 97 1 2006-02-15 10:07:09
  9737. 98 7 2006-02-15 10:07:09
  9738. 99 5 2006-02-15 10:07:09
  9739. 100 9 2006-02-15 10:07:09
  9740. 101 6 2006-02-15 10:07:09
  9741. 102 15 2006-02-15 10:07:09
  9742. 103 16 2006-02-15 10:07:09
  9743. 104 9 2006-02-15 10:07:09
  9744. 105 1 2006-02-15 10:07:09
  9745. 106 10 2006-02-15 10:07:09
  9746. 107 7 2006-02-15 10:07:09
  9747. 108 13 2006-02-15 10:07:09
  9748. 109 13 2006-02-15 10:07:09
  9749. 110 3 2006-02-15 10:07:09
  9750. 111 1 2006-02-15 10:07:09
  9751. 112 9 2006-02-15 10:07:09
  9752. 113 15 2006-02-15 10:07:09
  9753. 114 14 2006-02-15 10:07:09
  9754. 115 1 2006-02-15 10:07:09
  9755. 116 4 2006-02-15 10:07:09
  9756. 117 10 2006-02-15 10:07:09
  9757. 118 2 2006-02-15 10:07:09
  9758. 119 5 2006-02-15 10:07:09
  9759. 120 15 2006-02-15 10:07:09
  9760. 121 2 2006-02-15 10:07:09
  9761. 122 11 2006-02-15 10:07:09
  9762. 123 16 2006-02-15 10:07:09
  9763. 124 3 2006-02-15 10:07:09
  9764. 125 16 2006-02-15 10:07:09
  9765. 126 1 2006-02-15 10:07:09
  9766. 127 5 2006-02-15 10:07:09
  9767. 128 9 2006-02-15 10:07:09
  9768. 129 6 2006-02-15 10:07:09
  9769. 130 1 2006-02-15 10:07:09
  9770. 131 4 2006-02-15 10:07:09
  9771. 132 14 2006-02-15 10:07:09
  9772. 133 12 2006-02-15 10:07:09
  9773. 134 2 2006-02-15 10:07:09
  9774. 135 15 2006-02-15 10:07:09
  9775. 136 13 2006-02-15 10:07:09
  9776. 137 14 2006-02-15 10:07:09
  9777. 138 14 2006-02-15 10:07:09
  9778. 139 8 2006-02-15 10:07:09
  9779. 140 14 2006-02-15 10:07:09
  9780. 141 10 2006-02-15 10:07:09
  9781. 142 6 2006-02-15 10:07:09
  9782. 143 7 2006-02-15 10:07:09
  9783. 144 13 2006-02-15 10:07:09
  9784. 145 8 2006-02-15 10:07:09
  9785. 146 7 2006-02-15 10:07:09
  9786. 147 8 2006-02-15 10:07:09
  9787. 148 9 2006-02-15 10:07:09
  9788. 149 3 2006-02-15 10:07:09
  9789. 150 6 2006-02-15 10:07:09
  9790. 151 14 2006-02-15 10:07:09
  9791. 152 3 2006-02-15 10:07:09
  9792. 153 14 2006-02-15 10:07:09
  9793. 154 2 2006-02-15 10:07:09
  9794. 155 13 2006-02-15 10:07:09
  9795. 156 6 2006-02-15 10:07:09
  9796. 157 3 2006-02-15 10:07:09
  9797. 158 12 2006-02-15 10:07:09
  9798. 159 5 2006-02-15 10:07:09
  9799. 160 2 2006-02-15 10:07:09
  9800. 161 12 2006-02-15 10:07:09
  9801. 162 1 2006-02-15 10:07:09
  9802. 163 13 2006-02-15 10:07:09
  9803. 164 6 2006-02-15 10:07:09
  9804. 165 14 2006-02-15 10:07:09
  9805. 166 4 2006-02-15 10:07:09
  9806. 167 16 2006-02-15 10:07:09
  9807. 168 3 2006-02-15 10:07:09
  9808. 169 16 2006-02-15 10:07:09
  9809. 170 9 2006-02-15 10:07:09
  9810. 171 11 2006-02-15 10:07:09
  9811. 172 7 2006-02-15 10:07:09
  9812. 173 7 2006-02-15 10:07:09
  9813. 174 12 2006-02-15 10:07:09
  9814. 175 8 2006-02-15 10:07:09
  9815. 176 15 2006-02-15 10:07:09
  9816. 177 14 2006-02-15 10:07:09
  9817. 178 5 2006-02-15 10:07:09
  9818. 179 7 2006-02-15 10:07:09
  9819. 180 4 2006-02-15 10:07:09
  9820. 181 16 2006-02-15 10:07:09
  9821. 182 5 2006-02-15 10:07:09
  9822. 183 8 2006-02-15 10:07:09
  9823. 184 4 2006-02-15 10:07:09
  9824. 185 9 2006-02-15 10:07:09
  9825. 186 7 2006-02-15 10:07:09
  9826. 187 15 2006-02-15 10:07:09
  9827. 188 5 2006-02-15 10:07:09
  9828. 189 10 2006-02-15 10:07:09
  9829. 190 4 2006-02-15 10:07:09
  9830. 191 3 2006-02-15 10:07:09
  9831. 192 9 2006-02-15 10:07:09
  9832. 193 2 2006-02-15 10:07:09
  9833. 194 1 2006-02-15 10:07:09
  9834. 195 14 2006-02-15 10:07:09
  9835. 196 4 2006-02-15 10:07:09
  9836. 197 15 2006-02-15 10:07:09
  9837. 198 9 2006-02-15 10:07:09
  9838. 199 6 2006-02-15 10:07:09
  9839. 200 10 2006-02-15 10:07:09
  9840. 201 9 2006-02-15 10:07:09
  9841. 202 5 2006-02-15 10:07:09
  9842. 203 14 2006-02-15 10:07:09
  9843. 204 7 2006-02-15 10:07:09
  9844. 205 1 2006-02-15 10:07:09
  9845. 206 6 2006-02-15 10:07:09
  9846. 207 9 2006-02-15 10:07:09
  9847. 208 2 2006-02-15 10:07:09
  9848. 209 7 2006-02-15 10:07:09
  9849. 210 1 2006-02-15 10:07:09
  9850. 211 10 2006-02-15 10:07:09
  9851. 212 1 2006-02-15 10:07:09
  9852. 213 8 2006-02-15 10:07:09
  9853. 214 3 2006-02-15 10:07:09
  9854. 215 10 2006-02-15 10:07:09
  9855. 216 13 2006-02-15 10:07:09
  9856. 217 10 2006-02-15 10:07:09
  9857. 218 7 2006-02-15 10:07:09
  9858. 219 6 2006-02-15 10:07:09
  9859. 220 12 2006-02-15 10:07:09
  9860. 221 6 2006-02-15 10:07:09
  9861. 222 11 2006-02-15 10:07:09
  9862. 223 2 2006-02-15 10:07:09
  9863. 224 16 2006-02-15 10:07:09
  9864. 225 7 2006-02-15 10:07:09
  9865. 226 13 2006-02-15 10:07:09
  9866. 227 10 2006-02-15 10:07:09
  9867. 228 4 2006-02-15 10:07:09
  9868. 229 1 2006-02-15 10:07:09
  9869. 230 7 2006-02-15 10:07:09
  9870. 231 8 2006-02-15 10:07:09
  9871. 232 10 2006-02-15 10:07:09
  9872. 233 16 2006-02-15 10:07:09
  9873. 234 14 2006-02-15 10:07:09
  9874. 235 14 2006-02-15 10:07:09
  9875. 236 10 2006-02-15 10:07:09
  9876. 237 15 2006-02-15 10:07:09
  9877. 238 3 2006-02-15 10:07:09
  9878. 239 2 2006-02-15 10:07:09
  9879. 240 14 2006-02-15 10:07:09
  9880. 241 2 2006-02-15 10:07:09
  9881. 242 5 2006-02-15 10:07:09
  9882. 243 2 2006-02-15 10:07:09
  9883. 244 12 2006-02-15 10:07:09
  9884. 245 2 2006-02-15 10:07:09
  9885. 246 9 2006-02-15 10:07:09
  9886. 247 5 2006-02-15 10:07:09
  9887. 248 6 2006-02-15 10:07:09
  9888. 249 4 2006-02-15 10:07:09
  9889. 250 1 2006-02-15 10:07:09
  9890. 251 13 2006-02-15 10:07:09
  9891. 252 1 2006-02-15 10:07:09
  9892. 253 1 2006-02-15 10:07:09
  9893. 254 15 2006-02-15 10:07:09
  9894. 255 12 2006-02-15 10:07:09
  9895. 256 15 2006-02-15 10:07:09
  9896. 257 16 2006-02-15 10:07:09
  9897. 258 11 2006-02-15 10:07:09
  9898. 259 2 2006-02-15 10:07:09
  9899. 260 15 2006-02-15 10:07:09
  9900. 261 6 2006-02-15 10:07:09
  9901. 262 8 2006-02-15 10:07:09
  9902. 263 15 2006-02-15 10:07:09
  9903. 264 10 2006-02-15 10:07:09
  9904. 265 5 2006-02-15 10:07:09
  9905. 266 4 2006-02-15 10:07:09
  9906. 267 13 2006-02-15 10:07:09
  9907. 268 2 2006-02-15 10:07:09
  9908. 269 8 2006-02-15 10:07:09
  9909. 270 13 2006-02-15 10:07:09
  9910. 271 1 2006-02-15 10:07:09
  9911. 272 7 2006-02-15 10:07:09
  9912. 273 8 2006-02-15 10:07:09
  9913. 274 6 2006-02-15 10:07:09
  9914. 275 11 2006-02-15 10:07:09
  9915. 276 5 2006-02-15 10:07:09
  9916. 277 11 2006-02-15 10:07:09
  9917. 278 12 2006-02-15 10:07:09
  9918. 279 15 2006-02-15 10:07:09
  9919. 280 3 2006-02-15 10:07:09
  9920. 281 10 2006-02-15 10:07:09
  9921. 282 7 2006-02-15 10:07:09
  9922. 283 13 2006-02-15 10:07:09
  9923. 284 12 2006-02-15 10:07:09
  9924. 285 14 2006-02-15 10:07:09
  9925. 286 16 2006-02-15 10:07:09
  9926. 287 1 2006-02-15 10:07:09
  9927. 288 16 2006-02-15 10:07:09
  9928. 289 13 2006-02-15 10:07:09
  9929. 290 9 2006-02-15 10:07:09
  9930. 291 15 2006-02-15 10:07:09
  9931. 292 1 2006-02-15 10:07:09
  9932. 293 15 2006-02-15 10:07:09
  9933. 294 16 2006-02-15 10:07:09
  9934. 295 6 2006-02-15 10:07:09
  9935. 296 14 2006-02-15 10:07:09
  9936. 297 4 2006-02-15 10:07:09
  9937. 298 14 2006-02-15 10:07:09
  9938. 299 16 2006-02-15 10:07:09
  9939. 300 2 2006-02-15 10:07:09
  9940. 301 11 2006-02-15 10:07:09
  9941. 302 10 2006-02-15 10:07:09
  9942. 303 1 2006-02-15 10:07:09
  9943. 304 3 2006-02-15 10:07:09
  9944. 305 13 2006-02-15 10:07:09
  9945. 306 10 2006-02-15 10:07:09
  9946. 307 16 2006-02-15 10:07:09
  9947. 308 5 2006-02-15 10:07:09
  9948. 309 8 2006-02-15 10:07:09
  9949. 310 10 2006-02-15 10:07:09
  9950. 311 9 2006-02-15 10:07:09
  9951. 312 14 2006-02-15 10:07:09
  9952. 313 11 2006-02-15 10:07:09
  9953. 314 2 2006-02-15 10:07:09
  9954. 315 8 2006-02-15 10:07:09
  9955. 316 10 2006-02-15 10:07:09
  9956. 317 5 2006-02-15 10:07:09
  9957. 318 1 2006-02-15 10:07:09
  9958. 319 14 2006-02-15 10:07:09
  9959. 320 13 2006-02-15 10:07:09
  9960. 321 13 2006-02-15 10:07:09
  9961. 322 15 2006-02-15 10:07:09
  9962. 323 15 2006-02-15 10:07:09
  9963. 324 5 2006-02-15 10:07:09
  9964. 325 2 2006-02-15 10:07:09
  9965. 326 2 2006-02-15 10:07:09
  9966. 327 1 2006-02-15 10:07:09
  9967. 328 3 2006-02-15 10:07:09
  9968. 329 1 2006-02-15 10:07:09
  9969. 330 2 2006-02-15 10:07:09
  9970. 331 10 2006-02-15 10:07:09
  9971. 332 5 2006-02-15 10:07:09
  9972. 333 12 2006-02-15 10:07:09
  9973. 334 11 2006-02-15 10:07:09
  9974. 335 5 2006-02-15 10:07:09
  9975. 336 6 2006-02-15 10:07:09
  9976. 337 9 2006-02-15 10:07:09
  9977. 338 14 2006-02-15 10:07:09
  9978. 339 16 2006-02-15 10:07:09
  9979. 340 13 2006-02-15 10:07:09
  9980. 341 4 2006-02-15 10:07:09
  9981. 342 16 2006-02-15 10:07:09
  9982. 343 3 2006-02-15 10:07:09
  9983. 344 3 2006-02-15 10:07:09
  9984. 345 8 2006-02-15 10:07:09
  9985. 346 4 2006-02-15 10:07:09
  9986. 347 16 2006-02-15 10:07:09
  9987. 348 8 2006-02-15 10:07:09
  9988. 349 2 2006-02-15 10:07:09
  9989. 350 14 2006-02-15 10:07:09
  9990. 351 11 2006-02-15 10:07:09
  9991. 352 10 2006-02-15 10:07:09
  9992. 353 9 2006-02-15 10:07:09
  9993. 354 3 2006-02-15 10:07:09
  9994. 355 2 2006-02-15 10:07:09
  9995. 356 3 2006-02-15 10:07:09
  9996. 357 4 2006-02-15 10:07:09
  9997. 358 4 2006-02-15 10:07:09
  9998. 359 8 2006-02-15 10:07:09
  9999. 360 1 2006-02-15 10:07:09
  10000. 361 15 2006-02-15 10:07:09
  10001. 362 10 2006-02-15 10:07:09
  10002. 363 12 2006-02-15 10:07:09
  10003. 364 13 2006-02-15 10:07:09
  10004. 365 5 2006-02-15 10:07:09
  10005. 366 7 2006-02-15 10:07:09
  10006. 367 14 2006-02-15 10:07:09
  10007. 368 7 2006-02-15 10:07:09
  10008. 369 14 2006-02-15 10:07:09
  10009. 370 3 2006-02-15 10:07:09
  10010. 371 1 2006-02-15 10:07:09
  10011. 372 15 2006-02-15 10:07:09
  10012. 373 3 2006-02-15 10:07:09
  10013. 374 14 2006-02-15 10:07:09
  10014. 375 1 2006-02-15 10:07:09
  10015. 376 9 2006-02-15 10:07:09
  10016. 377 8 2006-02-15 10:07:09
  10017. 378 12 2006-02-15 10:07:09
  10018. 379 7 2006-02-15 10:07:09
  10019. 380 9 2006-02-15 10:07:09
  10020. 381 10 2006-02-15 10:07:09
  10021. 382 10 2006-02-15 10:07:09
  10022. 383 15 2006-02-15 10:07:09
  10023. 384 12 2006-02-15 10:07:09
  10024. 385 5 2006-02-15 10:07:09
  10025. 386 16 2006-02-15 10:07:09
  10026. 387 10 2006-02-15 10:07:09
  10027. 388 5 2006-02-15 10:07:09
  10028. 389 15 2006-02-15 10:07:09
  10029. 390 14 2006-02-15 10:07:09
  10030. 391 8 2006-02-15 10:07:09
  10031. 392 3 2006-02-15 10:07:09
  10032. 393 6 2006-02-15 10:07:09
  10033. 394 14 2006-02-15 10:07:09
  10034. 395 1 2006-02-15 10:07:09
  10035. 396 7 2006-02-15 10:07:09
  10036. 397 14 2006-02-15 10:07:09
  10037. 398 12 2006-02-15 10:07:09
  10038. 399 9 2006-02-15 10:07:09
  10039. 400 6 2006-02-15 10:07:09
  10040. 401 7 2006-02-15 10:07:09
  10041. 402 2 2006-02-15 10:07:09
  10042. 403 7 2006-02-15 10:07:09
  10043. 404 5 2006-02-15 10:07:09
  10044. 405 16 2006-02-15 10:07:09
  10045. 406 10 2006-02-15 10:07:09
  10046. 407 6 2006-02-15 10:07:09
  10047. 408 10 2006-02-15 10:07:09
  10048. 409 3 2006-02-15 10:07:09
  10049. 410 5 2006-02-15 10:07:09
  10050. 411 12 2006-02-15 10:07:09
  10051. 412 6 2006-02-15 10:07:09
  10052. 413 5 2006-02-15 10:07:09
  10053. 414 9 2006-02-15 10:07:09
  10054. 415 11 2006-02-15 10:07:09
  10055. 416 9 2006-02-15 10:07:09
  10056. 417 1 2006-02-15 10:07:09
  10057. 418 7 2006-02-15 10:07:09
  10058. 419 8 2006-02-15 10:07:09
  10059. 420 15 2006-02-15 10:07:09
  10060. 421 9 2006-02-15 10:07:09
  10061. 422 14 2006-02-15 10:07:09
  10062. 423 3 2006-02-15 10:07:09
  10063. 424 3 2006-02-15 10:07:09
  10064. 425 4 2006-02-15 10:07:09
  10065. 426 12 2006-02-15 10:07:09
  10066. 427 6 2006-02-15 10:07:09
  10067. 428 8 2006-02-15 10:07:09
  10068. 429 15 2006-02-15 10:07:09
  10069. 430 2 2006-02-15 10:07:09
  10070. 431 9 2006-02-15 10:07:09
  10071. 432 4 2006-02-15 10:07:09
  10072. 433 2 2006-02-15 10:07:09
  10073. 434 16 2006-02-15 10:07:09
  10074. 435 9 2006-02-15 10:07:09
  10075. 436 13 2006-02-15 10:07:09
  10076. 437 8 2006-02-15 10:07:09
  10077. 438 10 2006-02-15 10:07:09
  10078. 439 7 2006-02-15 10:07:09
  10079. 440 9 2006-02-15 10:07:09
  10080. 441 6 2006-02-15 10:07:09
  10081. 442 8 2006-02-15 10:07:09
  10082. 443 5 2006-02-15 10:07:09
  10083. 444 5 2006-02-15 10:07:09
  10084. 445 4 2006-02-15 10:07:09
  10085. 446 15 2006-02-15 10:07:09
  10086. 447 10 2006-02-15 10:07:09
  10087. 448 13 2006-02-15 10:07:09
  10088. 449 14 2006-02-15 10:07:09
  10089. 450 3 2006-02-15 10:07:09
  10090. 451 16 2006-02-15 10:07:09
  10091. 452 9 2006-02-15 10:07:09
  10092. 453 15 2006-02-15 10:07:09
  10093. 454 12 2006-02-15 10:07:09
  10094. 455 9 2006-02-15 10:07:09
  10095. 456 2 2006-02-15 10:07:09
  10096. 457 6 2006-02-15 10:07:09
  10097. 458 8 2006-02-15 10:07:09
  10098. 459 9 2006-02-15 10:07:09
  10099. 460 9 2006-02-15 10:07:09
  10100. 461 2 2006-02-15 10:07:09
  10101. 462 12 2006-02-15 10:07:09
  10102. 463 15 2006-02-15 10:07:09
  10103. 464 2 2006-02-15 10:07:09
  10104. 465 13 2006-02-15 10:07:09
  10105. 466 6 2006-02-15 10:07:09
  10106. 467 9 2006-02-15 10:07:09
  10107. 468 3 2006-02-15 10:07:09
  10108. 469 4 2006-02-15 10:07:09
  10109. 470 2 2006-02-15 10:07:09
  10110. 471 4 2006-02-15 10:07:09
  10111. 472 16 2006-02-15 10:07:09
  10112. 473 7 2006-02-15 10:07:09
  10113. 474 15 2006-02-15 10:07:09
  10114. 475 11 2006-02-15 10:07:09
  10115. 476 8 2006-02-15 10:07:09
  10116. 477 12 2006-02-15 10:07:09
  10117. 478 5 2006-02-15 10:07:09
  10118. 479 8 2006-02-15 10:07:09
  10119. 480 4 2006-02-15 10:07:09
  10120. 481 13 2006-02-15 10:07:09
  10121. 482 4 2006-02-15 10:07:09
  10122. 483 10 2006-02-15 10:07:09
  10123. 484 4 2006-02-15 10:07:09
  10124. 485 3 2006-02-15 10:07:09
  10125. 486 9 2006-02-15 10:07:09
  10126. 487 4 2006-02-15 10:07:09
  10127. 488 15 2006-02-15 10:07:09
  10128. 489 2 2006-02-15 10:07:09
  10129. 490 13 2006-02-15 10:07:09
  10130. 491 3 2006-02-15 10:07:09
  10131. 492 13 2006-02-15 10:07:09
  10132. 493 9 2006-02-15 10:07:09
  10133. 494 11 2006-02-15 10:07:09
  10134. 495 11 2006-02-15 10:07:09
  10135. 496 16 2006-02-15 10:07:09
  10136. 497 6 2006-02-15 10:07:09
  10137. 498 8 2006-02-15 10:07:09
  10138. 499 8 2006-02-15 10:07:09
  10139. 500 9 2006-02-15 10:07:09
  10140. 501 1 2006-02-15 10:07:09
  10141. 502 5 2006-02-15 10:07:09
  10142. 503 15 2006-02-15 10:07:09
  10143. 504 7 2006-02-15 10:07:09
  10144. 505 3 2006-02-15 10:07:09
  10145. 506 11 2006-02-15 10:07:09
  10146. 507 10 2006-02-15 10:07:09
  10147. 508 10 2006-02-15 10:07:09
  10148. 509 3 2006-02-15 10:07:09
  10149. 510 2 2006-02-15 10:07:09
  10150. 511 1 2006-02-15 10:07:09
  10151. 512 4 2006-02-15 10:07:09
  10152. 513 16 2006-02-15 10:07:09
  10153. 514 7 2006-02-15 10:07:09
  10154. 515 3 2006-02-15 10:07:09
  10155. 516 12 2006-02-15 10:07:09
  10156. 517 15 2006-02-15 10:07:09
  10157. 518 16 2006-02-15 10:07:09
  10158. 519 15 2006-02-15 10:07:09
  10159. 520 14 2006-02-15 10:07:09
  10160. 521 7 2006-02-15 10:07:09
  10161. 522 5 2006-02-15 10:07:09
  10162. 523 4 2006-02-15 10:07:09
  10163. 524 5 2006-02-15 10:07:09
  10164. 525 4 2006-02-15 10:07:09
  10165. 526 16 2006-02-15 10:07:09
  10166. 527 11 2006-02-15 10:07:09
  10167. 528 8 2006-02-15 10:07:09
  10168. 529 5 2006-02-15 10:07:09
  10169. 530 1 2006-02-15 10:07:09
  10170. 531 9 2006-02-15 10:07:09
  10171. 532 15 2006-02-15 10:07:09
  10172. 533 9 2006-02-15 10:07:09
  10173. 534 8 2006-02-15 10:07:09
  10174. 535 11 2006-02-15 10:07:09
  10175. 536 4 2006-02-15 10:07:09
  10176. 537 4 2006-02-15 10:07:09
  10177. 538 13 2006-02-15 10:07:09
  10178. 539 7 2006-02-15 10:07:09
  10179. 540 12 2006-02-15 10:07:09
  10180. 541 2 2006-02-15 10:07:09
  10181. 542 1 2006-02-15 10:07:09
  10182. 543 16 2006-02-15 10:07:09
  10183. 544 6 2006-02-15 10:07:09
  10184. 545 9 2006-02-15 10:07:09
  10185. 546 10 2006-02-15 10:07:09
  10186. 547 3 2006-02-15 10:07:09
  10187. 548 4 2006-02-15 10:07:09
  10188. 549 1 2006-02-15 10:07:09
  10189. 550 8 2006-02-15 10:07:09
  10190. 551 13 2006-02-15 10:07:09
  10191. 552 6 2006-02-15 10:07:09
  10192. 553 3 2006-02-15 10:07:09
  10193. 554 4 2006-02-15 10:07:09
  10194. 555 5 2006-02-15 10:07:09
  10195. 556 10 2006-02-15 10:07:09
  10196. 557 8 2006-02-15 10:07:09
  10197. 558 13 2006-02-15 10:07:09
  10198. 559 14 2006-02-15 10:07:09
  10199. 560 10 2006-02-15 10:07:09
  10200. 561 13 2006-02-15 10:07:09
  10201. 562 12 2006-02-15 10:07:09
  10202. 563 10 2006-02-15 10:07:09
  10203. 564 2 2006-02-15 10:07:09
  10204. 565 9 2006-02-15 10:07:09
  10205. 566 9 2006-02-15 10:07:09
  10206. 567 9 2006-02-15 10:07:09
  10207. 568 5 2006-02-15 10:07:09
  10208. 569 2 2006-02-15 10:07:09
  10209. 570 15 2006-02-15 10:07:09
  10210. 571 6 2006-02-15 10:07:09
  10211. 572 14 2006-02-15 10:07:09
  10212. 573 3 2006-02-15 10:07:09
  10213. 574 1 2006-02-15 10:07:09
  10214. 575 6 2006-02-15 10:07:09
  10215. 576 6 2006-02-15 10:07:09
  10216. 577 15 2006-02-15 10:07:09
  10217. 578 4 2006-02-15 10:07:09
  10218. 579 1 2006-02-15 10:07:09
  10219. 580 13 2006-02-15 10:07:09
  10220. 581 12 2006-02-15 10:07:09
  10221. 582 2 2006-02-15 10:07:09
  10222. 583 2 2006-02-15 10:07:09
  10223. 584 9 2006-02-15 10:07:09
  10224. 585 7 2006-02-15 10:07:09
  10225. 586 1 2006-02-15 10:07:09
  10226. 587 6 2006-02-15 10:07:09
  10227. 588 3 2006-02-15 10:07:09
  10228. 589 6 2006-02-15 10:07:09
  10229. 590 13 2006-02-15 10:07:09
  10230. 591 10 2006-02-15 10:07:09
  10231. 592 12 2006-02-15 10:07:09
  10232. 593 11 2006-02-15 10:07:09
  10233. 594 1 2006-02-15 10:07:09
  10234. 595 9 2006-02-15 10:07:09
  10235. 596 10 2006-02-15 10:07:09
  10236. 597 10 2006-02-15 10:07:09
  10237. 598 15 2006-02-15 10:07:09
  10238. 599 15 2006-02-15 10:07:09
  10239. 600 11 2006-02-15 10:07:09
  10240. 601 16 2006-02-15 10:07:09
  10241. 602 14 2006-02-15 10:07:09
  10242. 603 8 2006-02-15 10:07:09
  10243. 604 5 2006-02-15 10:07:09
  10244. 605 9 2006-02-15 10:07:09
  10245. 606 15 2006-02-15 10:07:09
  10246. 607 9 2006-02-15 10:07:09
  10247. 608 3 2006-02-15 10:07:09
  10248. 609 16 2006-02-15 10:07:09
  10249. 610 8 2006-02-15 10:07:09
  10250. 611 4 2006-02-15 10:07:09
  10251. 612 15 2006-02-15 10:07:09
  10252. 613 5 2006-02-15 10:07:09
  10253. 614 10 2006-02-15 10:07:09
  10254. 615 2 2006-02-15 10:07:09
  10255. 616 6 2006-02-15 10:07:09
  10256. 617 8 2006-02-15 10:07:09
  10257. 618 7 2006-02-15 10:07:09
  10258. 619 15 2006-02-15 10:07:09
  10259. 620 14 2006-02-15 10:07:09
  10260. 621 8 2006-02-15 10:07:09
  10261. 622 6 2006-02-15 10:07:09
  10262. 623 9 2006-02-15 10:07:09
  10263. 624 10 2006-02-15 10:07:09
  10264. 625 14 2006-02-15 10:07:09
  10265. 626 3 2006-02-15 10:07:09
  10266. 627 6 2006-02-15 10:07:09
  10267. 628 15 2006-02-15 10:07:09
  10268. 629 6 2006-02-15 10:07:09
  10269. 630 7 2006-02-15 10:07:09
  10270. 631 15 2006-02-15 10:07:09
  10271. 632 13 2006-02-15 10:07:09
  10272. 633 4 2006-02-15 10:07:09
  10273. 634 8 2006-02-15 10:07:09
  10274. 635 13 2006-02-15 10:07:09
  10275. 636 12 2006-02-15 10:07:09
  10276. 637 14 2006-02-15 10:07:09
  10277. 638 5 2006-02-15 10:07:09
  10278. 639 8 2006-02-15 10:07:09
  10279. 640 9 2006-02-15 10:07:09
  10280. 641 9 2006-02-15 10:07:09
  10281. 642 16 2006-02-15 10:07:09
  10282. 643 7 2006-02-15 10:07:09
  10283. 644 2 2006-02-15 10:07:09
  10284. 645 16 2006-02-15 10:07:09
  10285. 646 10 2006-02-15 10:07:09
  10286. 647 12 2006-02-15 10:07:09
  10287. 648 16 2006-02-15 10:07:09
  10288. 649 2 2006-02-15 10:07:09
  10289. 650 6 2006-02-15 10:07:09
  10290. 651 2 2006-02-15 10:07:09
  10291. 652 4 2006-02-15 10:07:09
  10292. 653 11 2006-02-15 10:07:09
  10293. 654 10 2006-02-15 10:07:09
  10294. 655 14 2006-02-15 10:07:09
  10295. 656 16 2006-02-15 10:07:09
  10296. 657 5 2006-02-15 10:07:09
  10297. 658 11 2006-02-15 10:07:09
  10298. 659 1 2006-02-15 10:07:09
  10299. 660 5 2006-02-15 10:07:09
  10300. 661 9 2006-02-15 10:07:09
  10301. 662 7 2006-02-15 10:07:09
  10302. 663 4 2006-02-15 10:07:09
  10303. 664 1 2006-02-15 10:07:09
  10304. 665 11 2006-02-15 10:07:09
  10305. 666 7 2006-02-15 10:07:09
  10306. 667 15 2006-02-15 10:07:09
  10307. 668 15 2006-02-15 10:07:09
  10308. 669 9 2006-02-15 10:07:09
  10309. 670 6 2006-02-15 10:07:09
  10310. 671 15 2006-02-15 10:07:09
  10311. 672 5 2006-02-15 10:07:09
  10312. 673 12 2006-02-15 10:07:09
  10313. 674 9 2006-02-15 10:07:09
  10314. 675 13 2006-02-15 10:07:09
  10315. 676 15 2006-02-15 10:07:09
  10316. 677 13 2006-02-15 10:07:09
  10317. 678 15 2006-02-15 10:07:09
  10318. 679 8 2006-02-15 10:07:09
  10319. 680 5 2006-02-15 10:07:09
  10320. 681 15 2006-02-15 10:07:09
  10321. 682 8 2006-02-15 10:07:09
  10322. 683 7 2006-02-15 10:07:09
  10323. 684 10 2006-02-15 10:07:09
  10324. 685 13 2006-02-15 10:07:09
  10325. 686 13 2006-02-15 10:07:09
  10326. 687 6 2006-02-15 10:07:09
  10327. 688 3 2006-02-15 10:07:09
  10328. 689 9 2006-02-15 10:07:09
  10329. 690 2 2006-02-15 10:07:09
  10330. 691 15 2006-02-15 10:07:09
  10331. 692 2 2006-02-15 10:07:09
  10332. 693 2 2006-02-15 10:07:09
  10333. 694 4 2006-02-15 10:07:09
  10334. 695 8 2006-02-15 10:07:09
  10335. 696 2 2006-02-15 10:07:09
  10336. 697 1 2006-02-15 10:07:09
  10337. 698 6 2006-02-15 10:07:09
  10338. 699 10 2006-02-15 10:07:09
  10339. 700 8 2006-02-15 10:07:09
  10340. 701 10 2006-02-15 10:07:09
  10341. 702 11 2006-02-15 10:07:09
  10342. 703 2 2006-02-15 10:07:09
  10343. 704 5 2006-02-15 10:07:09
  10344. 705 9 2006-02-15 10:07:09
  10345. 706 7 2006-02-15 10:07:09
  10346. 707 1 2006-02-15 10:07:09
  10347. 708 6 2006-02-15 10:07:09
  10348. 709 7 2006-02-15 10:07:09
  10349. 710 8 2006-02-15 10:07:09
  10350. 711 14 2006-02-15 10:07:09
  10351. 712 6 2006-02-15 10:07:09
  10352. 713 6 2006-02-15 10:07:09
  10353. 714 14 2006-02-15 10:07:09
  10354. 715 8 2006-02-15 10:07:09
  10355. 716 11 2006-02-15 10:07:09
  10356. 717 1 2006-02-15 10:07:09
  10357. 718 12 2006-02-15 10:07:09
  10358. 719 15 2006-02-15 10:07:09
  10359. 720 13 2006-02-15 10:07:09
  10360. 721 12 2006-02-15 10:07:09
  10361. 722 11 2006-02-15 10:07:09
  10362. 723 14 2006-02-15 10:07:09
  10363. 724 8 2006-02-15 10:07:09
  10364. 725 4 2006-02-15 10:07:09
  10365. 726 9 2006-02-15 10:07:09
  10366. 727 8 2006-02-15 10:07:09
  10367. 728 7 2006-02-15 10:07:09
  10368. 729 15 2006-02-15 10:07:09
  10369. 730 13 2006-02-15 10:07:09
  10370. 731 4 2006-02-15 10:07:09
  10371. 732 1 2006-02-15 10:07:09
  10372. 733 15 2006-02-15 10:07:09
  10373. 734 6 2006-02-15 10:07:09
  10374. 735 3 2006-02-15 10:07:09
  10375. 736 8 2006-02-15 10:07:09
  10376. 737 11 2006-02-15 10:07:09
  10377. 738 9 2006-02-15 10:07:09
  10378. 739 7 2006-02-15 10:07:09
  10379. 740 11 2006-02-15 10:07:09
  10380. 741 12 2006-02-15 10:07:09
  10381. 742 10 2006-02-15 10:07:09
  10382. 743 2 2006-02-15 10:07:09
  10383. 744 4 2006-02-15 10:07:09
  10384. 745 15 2006-02-15 10:07:09
  10385. 746 10 2006-02-15 10:07:09
  10386. 747 10 2006-02-15 10:07:09
  10387. 748 1 2006-02-15 10:07:09
  10388. 749 11 2006-02-15 10:07:09
  10389. 750 13 2006-02-15 10:07:09
  10390. 751 13 2006-02-15 10:07:09
  10391. 752 12 2006-02-15 10:07:09
  10392. 753 8 2006-02-15 10:07:09
  10393. 754 5 2006-02-15 10:07:09
  10394. 755 3 2006-02-15 10:07:09
  10395. 756 5 2006-02-15 10:07:09
  10396. 757 6 2006-02-15 10:07:09
  10397. 758 7 2006-02-15 10:07:09
  10398. 759 13 2006-02-15 10:07:09
  10399. 760 13 2006-02-15 10:07:09
  10400. 761 3 2006-02-15 10:07:09
  10401. 762 10 2006-02-15 10:07:09
  10402. 763 15 2006-02-15 10:07:09
  10403. 764 15 2006-02-15 10:07:09
  10404. 765 5 2006-02-15 10:07:09
  10405. 766 7 2006-02-15 10:07:09
  10406. 767 12 2006-02-15 10:07:09
  10407. 768 3 2006-02-15 10:07:09
  10408. 769 9 2006-02-15 10:07:09
  10409. 770 9 2006-02-15 10:07:09
  10410. 771 7 2006-02-15 10:07:09
  10411. 772 7 2006-02-15 10:07:09
  10412. 773 15 2006-02-15 10:07:09
  10413. 774 5 2006-02-15 10:07:09
  10414. 775 7 2006-02-15 10:07:09
  10415. 776 6 2006-02-15 10:07:09
  10416. 777 15 2006-02-15 10:07:09
  10417. 778 8 2006-02-15 10:07:09
  10418. 779 15 2006-02-15 10:07:09
  10419. 780 8 2006-02-15 10:07:09
  10420. 781 10 2006-02-15 10:07:09
  10421. 782 15 2006-02-15 10:07:09
  10422. 783 16 2006-02-15 10:07:09
  10423. 784 16 2006-02-15 10:07:09
  10424. 785 16 2006-02-15 10:07:09
  10425. 786 3 2006-02-15 10:07:09
  10426. 787 16 2006-02-15 10:07:09
  10427. 788 6 2006-02-15 10:07:09
  10428. 789 9 2006-02-15 10:07:09
  10429. 790 7 2006-02-15 10:07:09
  10430. 791 6 2006-02-15 10:07:09
  10431. 792 9 2006-02-15 10:07:09
  10432. 793 1 2006-02-15 10:07:09
  10433. 794 1 2006-02-15 10:07:09
  10434. 795 8 2006-02-15 10:07:09
  10435. 796 15 2006-02-15 10:07:09
  10436. 797 12 2006-02-15 10:07:09
  10437. 798 14 2006-02-15 10:07:09
  10438. 799 11 2006-02-15 10:07:09
  10439. 800 11 2006-02-15 10:07:09
  10440. 801 3 2006-02-15 10:07:09
  10441. 802 1 2006-02-15 10:07:09
  10442. 803 7 2006-02-15 10:07:09
  10443. 804 11 2006-02-15 10:07:09
  10444. 805 2 2006-02-15 10:07:09
  10445. 806 13 2006-02-15 10:07:09
  10446. 807 10 2006-02-15 10:07:09
  10447. 808 4 2006-02-15 10:07:09
  10448. 809 15 2006-02-15 10:07:09
  10449. 810 8 2006-02-15 10:07:09
  10450. 811 16 2006-02-15 10:07:09
  10451. 812 6 2006-02-15 10:07:09
  10452. 813 15 2006-02-15 10:07:09
  10453. 814 5 2006-02-15 10:07:09
  10454. 815 4 2006-02-15 10:07:09
  10455. 816 2 2006-02-15 10:07:09
  10456. 817 14 2006-02-15 10:07:09
  10457. 818 7 2006-02-15 10:07:09
  10458. 819 12 2006-02-15 10:07:09
  10459. 820 2 2006-02-15 10:07:09
  10460. 821 9 2006-02-15 10:07:09
  10461. 822 8 2006-02-15 10:07:09
  10462. 823 1 2006-02-15 10:07:09
  10463. 824 8 2006-02-15 10:07:09
  10464. 825 1 2006-02-15 10:07:09
  10465. 826 16 2006-02-15 10:07:09
  10466. 827 7 2006-02-15 10:07:09
  10467. 828 4 2006-02-15 10:07:09
  10468. 829 8 2006-02-15 10:07:09
  10469. 830 11 2006-02-15 10:07:09
  10470. 831 14 2006-02-15 10:07:09
  10471. 832 8 2006-02-15 10:07:09
  10472. 833 3 2006-02-15 10:07:09
  10473. 834 6 2006-02-15 10:07:09
  10474. 835 10 2006-02-15 10:07:09
  10475. 836 15 2006-02-15 10:07:09
  10476. 837 5 2006-02-15 10:07:09
  10477. 838 1 2006-02-15 10:07:09
  10478. 839 14 2006-02-15 10:07:09
  10479. 840 10 2006-02-15 10:07:09
  10480. 841 15 2006-02-15 10:07:09
  10481. 842 10 2006-02-15 10:07:09
  10482. 843 4 2006-02-15 10:07:09
  10483. 844 15 2006-02-15 10:07:09
  10484. 845 9 2006-02-15 10:07:09
  10485. 846 13 2006-02-15 10:07:09
  10486. 847 13 2006-02-15 10:07:09
  10487. 848 16 2006-02-15 10:07:09
  10488. 849 2 2006-02-15 10:07:09
  10489. 850 1 2006-02-15 10:07:09
  10490. 851 15 2006-02-15 10:07:09
  10491. 852 3 2006-02-15 10:07:09
  10492. 853 3 2006-02-15 10:07:09
  10493. 854 11 2006-02-15 10:07:09
  10494. 855 6 2006-02-15 10:07:09
  10495. 856 11 2006-02-15 10:07:09
  10496. 857 5 2006-02-15 10:07:09
  10497. 858 5 2006-02-15 10:07:09
  10498. 859 2 2006-02-15 10:07:09
  10499. 860 14 2006-02-15 10:07:09
  10500. 861 10 2006-02-15 10:07:09
  10501. 862 4 2006-02-15 10:07:09
  10502. 863 14 2006-02-15 10:07:09
  10503. 864 3 2006-02-15 10:07:09
  10504. 865 2 2006-02-15 10:07:09
  10505. 866 8 2006-02-15 10:07:09
  10506. 867 8 2006-02-15 10:07:09
  10507. 868 16 2006-02-15 10:07:09
  10508. 869 1 2006-02-15 10:07:09
  10509. 870 11 2006-02-15 10:07:09
  10510. 871 5 2006-02-15 10:07:09
  10511. 872 16 2006-02-15 10:07:09
  10512. 873 3 2006-02-15 10:07:09
  10513. 874 4 2006-02-15 10:07:09
  10514. 875 15 2006-02-15 10:07:09
  10515. 876 11 2006-02-15 10:07:09
  10516. 877 12 2006-02-15 10:07:09
  10517. 878 16 2006-02-15 10:07:09
  10518. 879 12 2006-02-15 10:07:09
  10519. 880 2 2006-02-15 10:07:09
  10520. 881 11 2006-02-15 10:07:09
  10521. 882 7 2006-02-15 10:07:09
  10522. 883 3 2006-02-15 10:07:09
  10523. 884 12 2006-02-15 10:07:09
  10524. 885 11 2006-02-15 10:07:09
  10525. 886 2 2006-02-15 10:07:09
  10526. 887 2 2006-02-15 10:07:09
  10527. 888 6 2006-02-15 10:07:09
  10528. 889 3 2006-02-15 10:07:09
  10529. 890 15 2006-02-15 10:07:09
  10530. 891 4 2006-02-15 10:07:09
  10531. 892 2 2006-02-15 10:07:09
  10532. 893 14 2006-02-15 10:07:09
  10533. 894 16 2006-02-15 10:07:09
  10534. 895 4 2006-02-15 10:07:09
  10535. 896 3 2006-02-15 10:07:09
  10536. 897 7 2006-02-15 10:07:09
  10537. 898 15 2006-02-15 10:07:09
  10538. 899 4 2006-02-15 10:07:09
  10539. 900 9 2006-02-15 10:07:09
  10540. 901 2 2006-02-15 10:07:09
  10541. 902 15 2006-02-15 10:07:09
  10542. 903 16 2006-02-15 10:07:09
  10543. 904 11 2006-02-15 10:07:09
  10544. 905 5 2006-02-15 10:07:09
  10545. 906 5 2006-02-15 10:07:09
  10546. 907 7 2006-02-15 10:07:09
  10547. 908 9 2006-02-15 10:07:09
  10548. 909 11 2006-02-15 10:07:09
  10549. 910 7 2006-02-15 10:07:09
  10550. 911 1 2006-02-15 10:07:09
  10551. 912 14 2006-02-15 10:07:09
  10552. 913 13 2006-02-15 10:07:09
  10553. 914 16 2006-02-15 10:07:09
  10554. 915 1 2006-02-15 10:07:09
  10555. 916 2 2006-02-15 10:07:09
  10556. 917 15 2006-02-15 10:07:09
  10557. 918 3 2006-02-15 10:07:09
  10558. 919 10 2006-02-15 10:07:09
  10559. 920 13 2006-02-15 10:07:09
  10560. 921 12 2006-02-15 10:07:09
  10561. 922 11 2006-02-15 10:07:09
  10562. 923 7 2006-02-15 10:07:09
  10563. 924 14 2006-02-15 10:07:09
  10564. 925 6 2006-02-15 10:07:09
  10565. 926 6 2006-02-15 10:07:09
  10566. 927 1 2006-02-15 10:07:09
  10567. 928 3 2006-02-15 10:07:09
  10568. 929 9 2006-02-15 10:07:09
  10569. 930 14 2006-02-15 10:07:09
  10570. 931 16 2006-02-15 10:07:09
  10571. 932 5 2006-02-15 10:07:09
  10572. 933 13 2006-02-15 10:07:09
  10573. 934 10 2006-02-15 10:07:09
  10574. 935 13 2006-02-15 10:07:09
  10575. 936 12 2006-02-15 10:07:09
  10576. 937 13 2006-02-15 10:07:09
  10577. 938 5 2006-02-15 10:07:09
  10578. 939 5 2006-02-15 10:07:09
  10579. 940 15 2006-02-15 10:07:09
  10580. 941 10 2006-02-15 10:07:09
  10581. 942 7 2006-02-15 10:07:09
  10582. 943 6 2006-02-15 10:07:09
  10583. 944 7 2006-02-15 10:07:09
  10584. 945 6 2006-02-15 10:07:09
  10585. 946 8 2006-02-15 10:07:09
  10586. 947 9 2006-02-15 10:07:09
  10587. 948 13 2006-02-15 10:07:09
  10588. 949 10 2006-02-15 10:07:09
  10589. 950 4 2006-02-15 10:07:09
  10590. 951 4 2006-02-15 10:07:09
  10591. 952 6 2006-02-15 10:07:09
  10592. 953 2 2006-02-15 10:07:09
  10593. 954 13 2006-02-15 10:07:09
  10594. 955 3 2006-02-15 10:07:09
  10595. 956 10 2006-02-15 10:07:09
  10596. 957 9 2006-02-15 10:07:09
  10597. 958 7 2006-02-15 10:07:09
  10598. 959 3 2006-02-15 10:07:09
  10599. 960 6 2006-02-15 10:07:09
  10600. 961 9 2006-02-15 10:07:09
  10601. 962 4 2006-02-15 10:07:09
  10602. 963 2 2006-02-15 10:07:09
  10603. 964 1 2006-02-15 10:07:09
  10604. 965 11 2006-02-15 10:07:09
  10605. 966 6 2006-02-15 10:07:09
  10606. 967 14 2006-02-15 10:07:09
  10607. 968 1 2006-02-15 10:07:09
  10608. 969 7 2006-02-15 10:07:09
  10609. 970 4 2006-02-15 10:07:09
  10610. 971 9 2006-02-15 10:07:09
  10611. 972 14 2006-02-15 10:07:09
  10612. 973 6 2006-02-15 10:07:09
  10613. 974 13 2006-02-15 10:07:09
  10614. 975 8 2006-02-15 10:07:09
  10615. 976 10 2006-02-15 10:07:09
  10616. 977 16 2006-02-15 10:07:09
  10617. 978 5 2006-02-15 10:07:09
  10618. 979 7 2006-02-15 10:07:09
  10619. 980 12 2006-02-15 10:07:09
  10620. 981 16 2006-02-15 10:07:09
  10621. 982 1 2006-02-15 10:07:09
  10622. 983 12 2006-02-15 10:07:09
  10623. 984 9 2006-02-15 10:07:09
  10624. 985 14 2006-02-15 10:07:09
  10625. 986 2 2006-02-15 10:07:09
  10626. 987 12 2006-02-15 10:07:09
  10627. 988 16 2006-02-15 10:07:09
  10628. 989 16 2006-02-15 10:07:09
  10629. 990 11 2006-02-15 10:07:09
  10630. 991 1 2006-02-15 10:07:09
  10631. 992 6 2006-02-15 10:07:09
  10632. 993 3 2006-02-15 10:07:09
  10633. 994 13 2006-02-15 10:07:09
  10634. 995 11 2006-02-15 10:07:09
  10635. 996 6 2006-02-15 10:07:09
  10636. 997 12 2006-02-15 10:07:09
  10637. 998 11 2006-02-15 10:07:09
  10638. 999 3 2006-02-15 10:07:09
  10639. 1000 5 2006-02-15 10:07:09
  10640. \.
  10641.  
  10642.  
  10643. --
  10644. -- Name: film_film_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  10645. --
  10646.  
  10647. SELECT pg_catalog.setval('"film_film_id_seq"', 1000, true);
  10648.  
  10649.  
  10650. --
  10651. -- Data for Name: inventory; Type: TABLE DATA; Schema: public; Owner: postgres
  10652. --
  10653.  
  10654. COPY "inventory" ("inventory_id", "film_id", "store_id", "last_update") FROM stdin;
  10655. 1 1 1 2006-02-15 10:09:17
  10656. 2 1 1 2006-02-15 10:09:17
  10657. 3 1 1 2006-02-15 10:09:17
  10658. 4 1 1 2006-02-15 10:09:17
  10659. 5 1 2 2006-02-15 10:09:17
  10660. 6 1 2 2006-02-15 10:09:17
  10661. 7 1 2 2006-02-15 10:09:17
  10662. 8 1 2 2006-02-15 10:09:17
  10663. 9 2 2 2006-02-15 10:09:17
  10664. 10 2 2 2006-02-15 10:09:17
  10665. 11 2 2 2006-02-15 10:09:17
  10666. 12 3 2 2006-02-15 10:09:17
  10667. 13 3 2 2006-02-15 10:09:17
  10668. 14 3 2 2006-02-15 10:09:17
  10669. 15 3 2 2006-02-15 10:09:17
  10670. 16 4 1 2006-02-15 10:09:17
  10671. 17 4 1 2006-02-15 10:09:17
  10672. 18 4 1 2006-02-15 10:09:17
  10673. 19 4 1 2006-02-15 10:09:17
  10674. 20 4 2 2006-02-15 10:09:17
  10675. 21 4 2 2006-02-15 10:09:17
  10676. 22 4 2 2006-02-15 10:09:17
  10677. 23 5 2 2006-02-15 10:09:17
  10678. 24 5 2 2006-02-15 10:09:17
  10679. 25 5 2 2006-02-15 10:09:17
  10680. 26 6 1 2006-02-15 10:09:17
  10681. 27 6 1 2006-02-15 10:09:17
  10682. 28 6 1 2006-02-15 10:09:17
  10683. 29 6 2 2006-02-15 10:09:17
  10684. 30 6 2 2006-02-15 10:09:17
  10685. 31 6 2 2006-02-15 10:09:17
  10686. 32 7 1 2006-02-15 10:09:17
  10687. 33 7 1 2006-02-15 10:09:17
  10688. 34 7 2 2006-02-15 10:09:17
  10689. 35 7 2 2006-02-15 10:09:17
  10690. 36 7 2 2006-02-15 10:09:17
  10691. 37 8 2 2006-02-15 10:09:17
  10692. 38 8 2 2006-02-15 10:09:17
  10693. 39 8 2 2006-02-15 10:09:17
  10694. 40 8 2 2006-02-15 10:09:17
  10695. 41 9 1 2006-02-15 10:09:17
  10696. 42 9 1 2006-02-15 10:09:17
  10697. 43 9 1 2006-02-15 10:09:17
  10698. 44 9 2 2006-02-15 10:09:17
  10699. 45 9 2 2006-02-15 10:09:17
  10700. 46 10 1 2006-02-15 10:09:17
  10701. 47 10 1 2006-02-15 10:09:17
  10702. 48 10 1 2006-02-15 10:09:17
  10703. 49 10 1 2006-02-15 10:09:17
  10704. 50 10 2 2006-02-15 10:09:17
  10705. 51 10 2 2006-02-15 10:09:17
  10706. 52 10 2 2006-02-15 10:09:17
  10707. 53 11 1 2006-02-15 10:09:17
  10708. 54 11 1 2006-02-15 10:09:17
  10709. 55 11 1 2006-02-15 10:09:17
  10710. 56 11 1 2006-02-15 10:09:17
  10711. 57 11 2 2006-02-15 10:09:17
  10712. 58 11 2 2006-02-15 10:09:17
  10713. 59 11 2 2006-02-15 10:09:17
  10714. 60 12 1 2006-02-15 10:09:17
  10715. 61 12 1 2006-02-15 10:09:17
  10716. 62 12 1 2006-02-15 10:09:17
  10717. 63 12 2 2006-02-15 10:09:17
  10718. 64 12 2 2006-02-15 10:09:17
  10719. 65 12 2 2006-02-15 10:09:17
  10720. 66 12 2 2006-02-15 10:09:17
  10721. 67 13 2 2006-02-15 10:09:17
  10722. 68 13 2 2006-02-15 10:09:17
  10723. 69 13 2 2006-02-15 10:09:17
  10724. 70 13 2 2006-02-15 10:09:17
  10725. 71 15 1 2006-02-15 10:09:17
  10726. 72 15 1 2006-02-15 10:09:17
  10727. 73 15 2 2006-02-15 10:09:17
  10728. 74 15 2 2006-02-15 10:09:17
  10729. 75 15 2 2006-02-15 10:09:17
  10730. 76 15 2 2006-02-15 10:09:17
  10731. 77 16 1 2006-02-15 10:09:17
  10732. 78 16 1 2006-02-15 10:09:17
  10733. 79 16 2 2006-02-15 10:09:17
  10734. 80 16 2 2006-02-15 10:09:17
  10735. 81 17 1 2006-02-15 10:09:17
  10736. 82 17 1 2006-02-15 10:09:17
  10737. 83 17 1 2006-02-15 10:09:17
  10738. 84 17 2 2006-02-15 10:09:17
  10739. 85 17 2 2006-02-15 10:09:17
  10740. 86 17 2 2006-02-15 10:09:17
  10741. 87 18 1 2006-02-15 10:09:17
  10742. 88 18 1 2006-02-15 10:09:17
  10743. 89 18 1 2006-02-15 10:09:17
  10744. 90 18 2 2006-02-15 10:09:17
  10745. 91 18 2 2006-02-15 10:09:17
  10746. 92 18 2 2006-02-15 10:09:17
  10747. 93 19 1 2006-02-15 10:09:17
  10748. 94 19 1 2006-02-15 10:09:17
  10749. 95 19 1 2006-02-15 10:09:17
  10750. 96 19 1 2006-02-15 10:09:17
  10751. 97 19 2 2006-02-15 10:09:17
  10752. 98 19 2 2006-02-15 10:09:17
  10753. 99 20 1 2006-02-15 10:09:17
  10754. 100 20 1 2006-02-15 10:09:17
  10755. 101 20 1 2006-02-15 10:09:17
  10756. 102 21 1 2006-02-15 10:09:17
  10757. 103 21 1 2006-02-15 10:09:17
  10758. 104 21 2 2006-02-15 10:09:17
  10759. 105 21 2 2006-02-15 10:09:17
  10760. 106 21 2 2006-02-15 10:09:17
  10761. 107 21 2 2006-02-15 10:09:17
  10762. 108 22 1 2006-02-15 10:09:17
  10763. 109 22 1 2006-02-15 10:09:17
  10764. 110 22 1 2006-02-15 10:09:17
  10765. 111 22 1 2006-02-15 10:09:17
  10766. 112 22 2 2006-02-15 10:09:17
  10767. 113 22 2 2006-02-15 10:09:17
  10768. 114 22 2 2006-02-15 10:09:17
  10769. 115 23 1 2006-02-15 10:09:17
  10770. 116 23 1 2006-02-15 10:09:17
  10771. 117 23 1 2006-02-15 10:09:17
  10772. 118 23 2 2006-02-15 10:09:17
  10773. 119 23 2 2006-02-15 10:09:17
  10774. 120 24 1 2006-02-15 10:09:17
  10775. 121 24 1 2006-02-15 10:09:17
  10776. 122 24 1 2006-02-15 10:09:17
  10777. 123 24 1 2006-02-15 10:09:17
  10778. 124 25 1 2006-02-15 10:09:17
  10779. 125 25 1 2006-02-15 10:09:17
  10780. 126 25 1 2006-02-15 10:09:17
  10781. 127 25 1 2006-02-15 10:09:17
  10782. 128 25 2 2006-02-15 10:09:17
  10783. 129 25 2 2006-02-15 10:09:17
  10784. 130 26 1 2006-02-15 10:09:17
  10785. 131 26 1 2006-02-15 10:09:17
  10786. 132 26 2 2006-02-15 10:09:17
  10787. 133 26 2 2006-02-15 10:09:17
  10788. 134 26 2 2006-02-15 10:09:17
  10789. 135 27 1 2006-02-15 10:09:17
  10790. 136 27 1 2006-02-15 10:09:17
  10791. 137 27 1 2006-02-15 10:09:17
  10792. 138 27 1 2006-02-15 10:09:17
  10793. 139 28 1 2006-02-15 10:09:17
  10794. 140 28 1 2006-02-15 10:09:17
  10795. 141 28 1 2006-02-15 10:09:17
  10796. 142 29 1 2006-02-15 10:09:17
  10797. 143 29 1 2006-02-15 10:09:17
  10798. 144 30 1 2006-02-15 10:09:17
  10799. 145 30 1 2006-02-15 10:09:17
  10800. 146 31 1 2006-02-15 10:09:17
  10801. 147 31 1 2006-02-15 10:09:17
  10802. 148 31 1 2006-02-15 10:09:17
  10803. 149 31 1 2006-02-15 10:09:17
  10804. 150 31 2 2006-02-15 10:09:17
  10805. 151 31 2 2006-02-15 10:09:17
  10806. 152 31 2 2006-02-15 10:09:17
  10807. 153 31 2 2006-02-15 10:09:17
  10808. 154 32 2 2006-02-15 10:09:17
  10809. 155 32 2 2006-02-15 10:09:17
  10810. 156 34 2 2006-02-15 10:09:17
  10811. 157 34 2 2006-02-15 10:09:17
  10812. 158 34 2 2006-02-15 10:09:17
  10813. 159 34 2 2006-02-15 10:09:17
  10814. 160 35 1 2006-02-15 10:09:17
  10815. 161 35 1 2006-02-15 10:09:17
  10816. 162 35 1 2006-02-15 10:09:17
  10817. 163 35 1 2006-02-15 10:09:17
  10818. 164 35 2 2006-02-15 10:09:17
  10819. 165 35 2 2006-02-15 10:09:17
  10820. 166 35 2 2006-02-15 10:09:17
  10821. 167 37 1 2006-02-15 10:09:17
  10822. 168 37 1 2006-02-15 10:09:17
  10823. 169 37 1 2006-02-15 10:09:17
  10824. 170 37 1 2006-02-15 10:09:17
  10825. 171 37 2 2006-02-15 10:09:17
  10826. 172 37 2 2006-02-15 10:09:17
  10827. 173 37 2 2006-02-15 10:09:17
  10828. 174 39 1 2006-02-15 10:09:17
  10829. 175 39 1 2006-02-15 10:09:17
  10830. 176 39 1 2006-02-15 10:09:17
  10831. 177 39 2 2006-02-15 10:09:17
  10832. 178 39 2 2006-02-15 10:09:17
  10833. 179 39 2 2006-02-15 10:09:17
  10834. 180 39 2 2006-02-15 10:09:17
  10835. 181 40 2 2006-02-15 10:09:17
  10836. 182 40 2 2006-02-15 10:09:17
  10837. 183 40 2 2006-02-15 10:09:17
  10838. 184 40 2 2006-02-15 10:09:17
  10839. 185 42 2 2006-02-15 10:09:17
  10840. 186 42 2 2006-02-15 10:09:17
  10841. 187 42 2 2006-02-15 10:09:17
  10842. 188 42 2 2006-02-15 10:09:17
  10843. 189 43 1 2006-02-15 10:09:17
  10844. 190 43 1 2006-02-15 10:09:17
  10845. 191 43 1 2006-02-15 10:09:17
  10846. 192 43 2 2006-02-15 10:09:17
  10847. 193 43 2 2006-02-15 10:09:17
  10848. 194 43 2 2006-02-15 10:09:17
  10849. 195 43 2 2006-02-15 10:09:17
  10850. 196 44 1 2006-02-15 10:09:17
  10851. 197 44 1 2006-02-15 10:09:17
  10852. 198 44 2 2006-02-15 10:09:17
  10853. 199 44 2 2006-02-15 10:09:17
  10854. 200 44 2 2006-02-15 10:09:17
  10855. 201 45 1 2006-02-15 10:09:17
  10856. 202 45 1 2006-02-15 10:09:17
  10857. 203 45 1 2006-02-15 10:09:17
  10858. 204 45 1 2006-02-15 10:09:17
  10859. 205 45 2 2006-02-15 10:09:17
  10860. 206 45 2 2006-02-15 10:09:17
  10861. 207 46 2 2006-02-15 10:09:17
  10862. 208 46 2 2006-02-15 10:09:17
  10863. 209 46 2 2006-02-15 10:09:17
  10864. 210 47 2 2006-02-15 10:09:17
  10865. 211 47 2 2006-02-15 10:09:17
  10866. 212 48 1 2006-02-15 10:09:17
  10867. 213 48 1 2006-02-15 10:09:17
  10868. 214 48 2 2006-02-15 10:09:17
  10869. 215 48 2 2006-02-15 10:09:17
  10870. 216 49 1 2006-02-15 10:09:17
  10871. 217 49 1 2006-02-15 10:09:17
  10872. 218 49 1 2006-02-15 10:09:17
  10873. 219 49 2 2006-02-15 10:09:17
  10874. 220 49 2 2006-02-15 10:09:17
  10875. 221 49 2 2006-02-15 10:09:17
  10876. 222 50 1 2006-02-15 10:09:17
  10877. 223 50 1 2006-02-15 10:09:17
  10878. 224 50 1 2006-02-15 10:09:17
  10879. 225 50 2 2006-02-15 10:09:17
  10880. 226 50 2 2006-02-15 10:09:17
  10881. 227 51 1 2006-02-15 10:09:17
  10882. 228 51 1 2006-02-15 10:09:17
  10883. 229 51 2 2006-02-15 10:09:17
  10884. 230 51 2 2006-02-15 10:09:17
  10885. 231 51 2 2006-02-15 10:09:17
  10886. 232 51 2 2006-02-15 10:09:17
  10887. 233 52 2 2006-02-15 10:09:17
  10888. 234 52 2 2006-02-15 10:09:17
  10889. 235 53 1 2006-02-15 10:09:17
  10890. 236 53 1 2006-02-15 10:09:17
  10891. 237 54 1 2006-02-15 10:09:17
  10892. 238 54 1 2006-02-15 10:09:17
  10893. 239 54 1 2006-02-15 10:09:17
  10894. 240 54 2 2006-02-15 10:09:17
  10895. 241 54 2 2006-02-15 10:09:17
  10896. 242 55 1 2006-02-15 10:09:17
  10897. 243 55 1 2006-02-15 10:09:17
  10898. 244 55 1 2006-02-15 10:09:17
  10899. 245 55 1 2006-02-15 10:09:17
  10900. 246 55 2 2006-02-15 10:09:17
  10901. 247 55 2 2006-02-15 10:09:17
  10902. 248 56 1 2006-02-15 10:09:17
  10903. 249 56 1 2006-02-15 10:09:17
  10904. 250 56 1 2006-02-15 10:09:17
  10905. 251 56 2 2006-02-15 10:09:17
  10906. 252 56 2 2006-02-15 10:09:17
  10907. 253 57 1 2006-02-15 10:09:17
  10908. 254 57 1 2006-02-15 10:09:17
  10909. 255 57 1 2006-02-15 10:09:17
  10910. 256 57 1 2006-02-15 10:09:17
  10911. 257 57 2 2006-02-15 10:09:17
  10912. 258 57 2 2006-02-15 10:09:17
  10913. 259 57 2 2006-02-15 10:09:17
  10914. 260 58 2 2006-02-15 10:09:17
  10915. 261 58 2 2006-02-15 10:09:17
  10916. 262 58 2 2006-02-15 10:09:17
  10917. 263 58 2 2006-02-15 10:09:17
  10918. 264 59 1 2006-02-15 10:09:17
  10919. 265 59 1 2006-02-15 10:09:17
  10920. 266 59 1 2006-02-15 10:09:17
  10921. 267 59 2 2006-02-15 10:09:17
  10922. 268 59 2 2006-02-15 10:09:17
  10923. 269 60 1 2006-02-15 10:09:17
  10924. 270 60 1 2006-02-15 10:09:17
  10925. 271 60 1 2006-02-15 10:09:17
  10926. 272 61 1 2006-02-15 10:09:17
  10927. 273 61 1 2006-02-15 10:09:17
  10928. 274 61 1 2006-02-15 10:09:17
  10929. 275 61 1 2006-02-15 10:09:17
  10930. 276 61 2 2006-02-15 10:09:17
  10931. 277 61 2 2006-02-15 10:09:17
  10932. 278 62 2 2006-02-15 10:09:17
  10933. 279 62 2 2006-02-15 10:09:17
  10934. 280 63 1 2006-02-15 10:09:17
  10935. 281 63 1 2006-02-15 10:09:17
  10936. 282 63 2 2006-02-15 10:09:17
  10937. 283 63 2 2006-02-15 10:09:17
  10938. 284 64 2 2006-02-15 10:09:17
  10939. 285 64 2 2006-02-15 10:09:17
  10940. 286 64 2 2006-02-15 10:09:17
  10941. 287 65 2 2006-02-15 10:09:17
  10942. 288 65 2 2006-02-15 10:09:17
  10943. 289 65 2 2006-02-15 10:09:17
  10944. 290 65 2 2006-02-15 10:09:17
  10945. 291 66 1 2006-02-15 10:09:17
  10946. 292 66 1 2006-02-15 10:09:17
  10947. 293 66 1 2006-02-15 10:09:17
  10948. 294 67 1 2006-02-15 10:09:17
  10949. 295 67 1 2006-02-15 10:09:17
  10950. 296 67 2 2006-02-15 10:09:17
  10951. 297 67 2 2006-02-15 10:09:17
  10952. 298 67 2 2006-02-15 10:09:17
  10953. 299 67 2 2006-02-15 10:09:17
  10954. 300 68 1 2006-02-15 10:09:17
  10955. 301 68 1 2006-02-15 10:09:17
  10956. 302 68 2 2006-02-15 10:09:17
  10957. 303 68 2 2006-02-15 10:09:17
  10958. 304 69 1 2006-02-15 10:09:17
  10959. 305 69 1 2006-02-15 10:09:17
  10960. 306 69 1 2006-02-15 10:09:17
  10961. 307 69 1 2006-02-15 10:09:17
  10962. 308 69 2 2006-02-15 10:09:17
  10963. 309 69 2 2006-02-15 10:09:17
  10964. 310 69 2 2006-02-15 10:09:17
  10965. 311 69 2 2006-02-15 10:09:17
  10966. 312 70 1 2006-02-15 10:09:17
  10967. 313 70 1 2006-02-15 10:09:17
  10968. 314 70 2 2006-02-15 10:09:17
  10969. 315 70 2 2006-02-15 10:09:17
  10970. 316 71 2 2006-02-15 10:09:17
  10971. 317 71 2 2006-02-15 10:09:17
  10972. 318 71 2 2006-02-15 10:09:17
  10973. 319 71 2 2006-02-15 10:09:17
  10974. 320 72 1 2006-02-15 10:09:17
  10975. 321 72 1 2006-02-15 10:09:17
  10976. 322 72 1 2006-02-15 10:09:17
  10977. 323 72 1 2006-02-15 10:09:17
  10978. 324 72 2 2006-02-15 10:09:17
  10979. 325 72 2 2006-02-15 10:09:17
  10980. 326 73 1 2006-02-15 10:09:17
  10981. 327 73 1 2006-02-15 10:09:17
  10982. 328 73 1 2006-02-15 10:09:17
  10983. 329 73 1 2006-02-15 10:09:17
  10984. 330 73 2 2006-02-15 10:09:17
  10985. 331 73 2 2006-02-15 10:09:17
  10986. 332 73 2 2006-02-15 10:09:17
  10987. 333 73 2 2006-02-15 10:09:17
  10988. 334 74 1 2006-02-15 10:09:17
  10989. 335 74 1 2006-02-15 10:09:17
  10990. 336 74 1 2006-02-15 10:09:17
  10991. 337 74 2 2006-02-15 10:09:17
  10992. 338 74 2 2006-02-15 10:09:17
  10993. 339 75 2 2006-02-15 10:09:17
  10994. 340 75 2 2006-02-15 10:09:17
  10995. 341 75 2 2006-02-15 10:09:17
  10996. 342 76 1 2006-02-15 10:09:17
  10997. 343 76 1 2006-02-15 10:09:17
  10998. 344 76 1 2006-02-15 10:09:17
  10999. 345 77 1 2006-02-15 10:09:17
  11000. 346 77 1 2006-02-15 10:09:17
  11001. 347 77 1 2006-02-15 10:09:17
  11002. 348 77 1 2006-02-15 10:09:17
  11003. 349 77 2 2006-02-15 10:09:17
  11004. 350 77 2 2006-02-15 10:09:17
  11005. 351 78 1 2006-02-15 10:09:17
  11006. 352 78 1 2006-02-15 10:09:17
  11007. 353 78 1 2006-02-15 10:09:17
  11008. 354 78 2 2006-02-15 10:09:17
  11009. 355 78 2 2006-02-15 10:09:17
  11010. 356 78 2 2006-02-15 10:09:17
  11011. 357 78 2 2006-02-15 10:09:17
  11012. 358 79 1 2006-02-15 10:09:17
  11013. 359 79 1 2006-02-15 10:09:17
  11014. 360 79 1 2006-02-15 10:09:17
  11015. 361 79 2 2006-02-15 10:09:17
  11016. 362 79 2 2006-02-15 10:09:17
  11017. 363 79 2 2006-02-15 10:09:17
  11018. 364 80 1 2006-02-15 10:09:17
  11019. 365 80 1 2006-02-15 10:09:17
  11020. 366 80 1 2006-02-15 10:09:17
  11021. 367 80 1 2006-02-15 10:09:17
  11022. 368 81 1 2006-02-15 10:09:17
  11023. 369 81 1 2006-02-15 10:09:17
  11024. 370 81 1 2006-02-15 10:09:17
  11025. 371 81 1 2006-02-15 10:09:17
  11026. 372 82 1 2006-02-15 10:09:17
  11027. 373 82 1 2006-02-15 10:09:17
  11028. 374 83 1 2006-02-15 10:09:17
  11029. 375 83 1 2006-02-15 10:09:17
  11030. 376 83 1 2006-02-15 10:09:17
  11031. 377 83 2 2006-02-15 10:09:17
  11032. 378 83 2 2006-02-15 10:09:17
  11033. 379 84 1 2006-02-15 10:09:17
  11034. 380 84 1 2006-02-15 10:09:17
  11035. 381 84 1 2006-02-15 10:09:17
  11036. 382 84 1 2006-02-15 10:09:17
  11037. 383 85 2 2006-02-15 10:09:17
  11038. 384 85 2 2006-02-15 10:09:17
  11039. 385 85 2 2006-02-15 10:09:17
  11040. 386 85 2 2006-02-15 10:09:17
  11041. 387 86 1 2006-02-15 10:09:17
  11042. 388 86 1 2006-02-15 10:09:17
  11043. 389 86 1 2006-02-15 10:09:17
  11044. 390 86 1 2006-02-15 10:09:17
  11045. 391 86 2 2006-02-15 10:09:17
  11046. 392 86 2 2006-02-15 10:09:17
  11047. 393 86 2 2006-02-15 10:09:17
  11048. 394 86 2 2006-02-15 10:09:17
  11049. 395 88 2 2006-02-15 10:09:17
  11050. 396 88 2 2006-02-15 10:09:17
  11051. 397 88 2 2006-02-15 10:09:17
  11052. 398 88 2 2006-02-15 10:09:17
  11053. 399 89 1 2006-02-15 10:09:17
  11054. 400 89 1 2006-02-15 10:09:17
  11055. 401 89 1 2006-02-15 10:09:17
  11056. 402 89 2 2006-02-15 10:09:17
  11057. 403 89 2 2006-02-15 10:09:17
  11058. 404 89 2 2006-02-15 10:09:17
  11059. 405 90 1 2006-02-15 10:09:17
  11060. 406 90 1 2006-02-15 10:09:17
  11061. 407 90 1 2006-02-15 10:09:17
  11062. 408 90 2 2006-02-15 10:09:17
  11063. 409 90 2 2006-02-15 10:09:17
  11064. 410 90 2 2006-02-15 10:09:17
  11065. 411 91 1 2006-02-15 10:09:17
  11066. 412 91 1 2006-02-15 10:09:17
  11067. 413 91 1 2006-02-15 10:09:17
  11068. 414 91 1 2006-02-15 10:09:17
  11069. 415 91 2 2006-02-15 10:09:17
  11070. 416 91 2 2006-02-15 10:09:17
  11071. 417 91 2 2006-02-15 10:09:17
  11072. 418 91 2 2006-02-15 10:09:17
  11073. 419 92 1 2006-02-15 10:09:17
  11074. 420 92 1 2006-02-15 10:09:17
  11075. 421 92 2 2006-02-15 10:09:17
  11076. 422 92 2 2006-02-15 10:09:17
  11077. 423 93 2 2006-02-15 10:09:17
  11078. 424 93 2 2006-02-15 10:09:17
  11079. 425 93 2 2006-02-15 10:09:17
  11080. 426 94 1 2006-02-15 10:09:17
  11081. 427 94 1 2006-02-15 10:09:17
  11082. 428 95 1 2006-02-15 10:09:17
  11083. 429 95 1 2006-02-15 10:09:17
  11084. 430 95 2 2006-02-15 10:09:17
  11085. 431 95 2 2006-02-15 10:09:17
  11086. 432 95 2 2006-02-15 10:09:17
  11087. 433 96 1 2006-02-15 10:09:17
  11088. 434 96 1 2006-02-15 10:09:17
  11089. 435 96 1 2006-02-15 10:09:17
  11090. 436 97 1 2006-02-15 10:09:17
  11091. 437 97 1 2006-02-15 10:09:17
  11092. 438 97 1 2006-02-15 10:09:17
  11093. 439 97 1 2006-02-15 10:09:17
  11094. 440 97 2 2006-02-15 10:09:17
  11095. 441 97 2 2006-02-15 10:09:17
  11096. 442 98 1 2006-02-15 10:09:17
  11097. 443 98 1 2006-02-15 10:09:17
  11098. 444 98 1 2006-02-15 10:09:17
  11099. 445 99 1 2006-02-15 10:09:17
  11100. 446 99 1 2006-02-15 10:09:17
  11101. 447 99 1 2006-02-15 10:09:17
  11102. 448 99 2 2006-02-15 10:09:17
  11103. 449 99 2 2006-02-15 10:09:17
  11104. 450 99 2 2006-02-15 10:09:17
  11105. 451 100 1 2006-02-15 10:09:17
  11106. 452 100 1 2006-02-15 10:09:17
  11107. 453 100 1 2006-02-15 10:09:17
  11108. 454 100 1 2006-02-15 10:09:17
  11109. 455 100 2 2006-02-15 10:09:17
  11110. 456 100 2 2006-02-15 10:09:17
  11111. 457 101 1 2006-02-15 10:09:17
  11112. 458 101 1 2006-02-15 10:09:17
  11113. 459 101 1 2006-02-15 10:09:17
  11114. 460 101 1 2006-02-15 10:09:17
  11115. 461 101 2 2006-02-15 10:09:17
  11116. 462 101 2 2006-02-15 10:09:17
  11117. 463 102 2 2006-02-15 10:09:17
  11118. 464 102 2 2006-02-15 10:09:17
  11119. 465 103 1 2006-02-15 10:09:17
  11120. 466 103 1 2006-02-15 10:09:17
  11121. 467 103 1 2006-02-15 10:09:17
  11122. 468 103 1 2006-02-15 10:09:17
  11123. 469 103 2 2006-02-15 10:09:17
  11124. 470 103 2 2006-02-15 10:09:17
  11125. 471 103 2 2006-02-15 10:09:17
  11126. 472 103 2 2006-02-15 10:09:17
  11127. 473 104 2 2006-02-15 10:09:17
  11128. 474 104 2 2006-02-15 10:09:17
  11129. 475 104 2 2006-02-15 10:09:17
  11130. 476 105 1 2006-02-15 10:09:17
  11131. 477 105 1 2006-02-15 10:09:17
  11132. 478 105 2 2006-02-15 10:09:17
  11133. 479 105 2 2006-02-15 10:09:17
  11134. 480 105 2 2006-02-15 10:09:17
  11135. 481 106 1 2006-02-15 10:09:17
  11136. 482 106 1 2006-02-15 10:09:17
  11137. 483 107 2 2006-02-15 10:09:17
  11138. 484 107 2 2006-02-15 10:09:17
  11139. 485 109 1 2006-02-15 10:09:17
  11140. 486 109 1 2006-02-15 10:09:17
  11141. 487 109 1 2006-02-15 10:09:17
  11142. 488 109 1 2006-02-15 10:09:17
  11143. 489 109 2 2006-02-15 10:09:17
  11144. 490 109 2 2006-02-15 10:09:17
  11145. 491 109 2 2006-02-15 10:09:17
  11146. 492 109 2 2006-02-15 10:09:17
  11147. 493 110 1 2006-02-15 10:09:17
  11148. 494 110 1 2006-02-15 10:09:17
  11149. 495 110 1 2006-02-15 10:09:17
  11150. 496 110 1 2006-02-15 10:09:17
  11151. 497 111 2 2006-02-15 10:09:17
  11152. 498 111 2 2006-02-15 10:09:17
  11153. 499 111 2 2006-02-15 10:09:17
  11154. 500 111 2 2006-02-15 10:09:17
  11155. 501 112 1 2006-02-15 10:09:17
  11156. 502 112 1 2006-02-15 10:09:17
  11157. 503 112 1 2006-02-15 10:09:17
  11158. 504 112 1 2006-02-15 10:09:17
  11159. 505 112 2 2006-02-15 10:09:17
  11160. 506 112 2 2006-02-15 10:09:17
  11161. 507 112 2 2006-02-15 10:09:17
  11162. 508 113 2 2006-02-15 10:09:17
  11163. 509 113 2 2006-02-15 10:09:17
  11164. 510 113 2 2006-02-15 10:09:17
  11165. 511 113 2 2006-02-15 10:09:17
  11166. 512 114 1 2006-02-15 10:09:17
  11167. 513 114 1 2006-02-15 10:09:17
  11168. 514 114 1 2006-02-15 10:09:17
  11169. 515 114 1 2006-02-15 10:09:17
  11170. 516 114 2 2006-02-15 10:09:17
  11171. 517 114 2 2006-02-15 10:09:17
  11172. 518 114 2 2006-02-15 10:09:17
  11173. 519 115 1 2006-02-15 10:09:17
  11174. 520 115 1 2006-02-15 10:09:17
  11175. 521 115 1 2006-02-15 10:09:17
  11176. 522 115 2 2006-02-15 10:09:17
  11177. 523 115 2 2006-02-15 10:09:17
  11178. 524 115 2 2006-02-15 10:09:17
  11179. 525 115 2 2006-02-15 10:09:17
  11180. 526 116 1 2006-02-15 10:09:17
  11181. 527 116 1 2006-02-15 10:09:17
  11182. 528 116 2 2006-02-15 10:09:17
  11183. 529 116 2 2006-02-15 10:09:17
  11184. 530 116 2 2006-02-15 10:09:17
  11185. 531 116 2 2006-02-15 10:09:17
  11186. 532 117 1 2006-02-15 10:09:17
  11187. 533 117 1 2006-02-15 10:09:17
  11188. 534 117 1 2006-02-15 10:09:17
  11189. 535 117 1 2006-02-15 10:09:17
  11190. 536 117 2 2006-02-15 10:09:17
  11191. 537 117 2 2006-02-15 10:09:17
  11192. 538 118 1 2006-02-15 10:09:17
  11193. 539 118 1 2006-02-15 10:09:17
  11194. 540 118 1 2006-02-15 10:09:17
  11195. 541 118 1 2006-02-15 10:09:17
  11196. 542 118 2 2006-02-15 10:09:17
  11197. 543 118 2 2006-02-15 10:09:17
  11198. 544 119 1 2006-02-15 10:09:17
  11199. 545 119 1 2006-02-15 10:09:17
  11200. 546 119 1 2006-02-15 10:09:17
  11201. 547 119 2 2006-02-15 10:09:17
  11202. 548 119 2 2006-02-15 10:09:17
  11203. 549 119 2 2006-02-15 10:09:17
  11204. 550 119 2 2006-02-15 10:09:17
  11205. 551 120 1 2006-02-15 10:09:17
  11206. 552 120 1 2006-02-15 10:09:17
  11207. 553 120 1 2006-02-15 10:09:17
  11208. 554 121 1 2006-02-15 10:09:17
  11209. 555 121 1 2006-02-15 10:09:17
  11210. 556 121 1 2006-02-15 10:09:17
  11211. 557 121 2 2006-02-15 10:09:17
  11212. 558 121 2 2006-02-15 10:09:17
  11213. 559 121 2 2006-02-15 10:09:17
  11214. 560 122 1 2006-02-15 10:09:17
  11215. 561 122 1 2006-02-15 10:09:17
  11216. 562 122 1 2006-02-15 10:09:17
  11217. 563 122 1 2006-02-15 10:09:17
  11218. 564 122 2 2006-02-15 10:09:17
  11219. 565 122 2 2006-02-15 10:09:17
  11220. 566 122 2 2006-02-15 10:09:17
  11221. 567 123 1 2006-02-15 10:09:17
  11222. 568 123 1 2006-02-15 10:09:17
  11223. 569 123 2 2006-02-15 10:09:17
  11224. 570 123 2 2006-02-15 10:09:17
  11225. 571 123 2 2006-02-15 10:09:17
  11226. 572 124 2 2006-02-15 10:09:17
  11227. 573 124 2 2006-02-15 10:09:17
  11228. 574 124 2 2006-02-15 10:09:17
  11229. 575 125 2 2006-02-15 10:09:17
  11230. 576 125 2 2006-02-15 10:09:17
  11231. 577 126 2 2006-02-15 10:09:17
  11232. 578 126 2 2006-02-15 10:09:17
  11233. 579 126 2 2006-02-15 10:09:17
  11234. 580 127 1 2006-02-15 10:09:17
  11235. 581 127 1 2006-02-15 10:09:17
  11236. 582 127 1 2006-02-15 10:09:17
  11237. 583 127 1 2006-02-15 10:09:17
  11238. 584 127 2 2006-02-15 10:09:17
  11239. 585 127 2 2006-02-15 10:09:17
  11240. 586 127 2 2006-02-15 10:09:17
  11241. 587 127 2 2006-02-15 10:09:17
  11242. 588 129 1 2006-02-15 10:09:17
  11243. 589 129 1 2006-02-15 10:09:17
  11244. 590 129 1 2006-02-15 10:09:17
  11245. 591 129 2 2006-02-15 10:09:17
  11246. 592 129 2 2006-02-15 10:09:17
  11247. 593 129 2 2006-02-15 10:09:17
  11248. 594 130 1 2006-02-15 10:09:17
  11249. 595 130 1 2006-02-15 10:09:17
  11250. 596 130 2 2006-02-15 10:09:17
  11251. 597 130 2 2006-02-15 10:09:17
  11252. 598 130 2 2006-02-15 10:09:17
  11253. 599 130 2 2006-02-15 10:09:17
  11254. 600 131 1 2006-02-15 10:09:17
  11255. 601 131 1 2006-02-15 10:09:17
  11256. 602 131 1 2006-02-15 10:09:17
  11257. 603 131 1 2006-02-15 10:09:17
  11258. 604 131 2 2006-02-15 10:09:17
  11259. 605 131 2 2006-02-15 10:09:17
  11260. 606 132 1 2006-02-15 10:09:17
  11261. 607 132 1 2006-02-15 10:09:17
  11262. 608 132 1 2006-02-15 10:09:17
  11263. 609 132 1 2006-02-15 10:09:17
  11264. 610 132 2 2006-02-15 10:09:17
  11265. 611 132 2 2006-02-15 10:09:17
  11266. 612 133 1 2006-02-15 10:09:17
  11267. 613 133 1 2006-02-15 10:09:17
  11268. 614 133 2 2006-02-15 10:09:17
  11269. 615 133 2 2006-02-15 10:09:17
  11270. 616 134 2 2006-02-15 10:09:17
  11271. 617 134 2 2006-02-15 10:09:17
  11272. 618 134 2 2006-02-15 10:09:17
  11273. 619 135 1 2006-02-15 10:09:17
  11274. 620 135 1 2006-02-15 10:09:17
  11275. 621 135 1 2006-02-15 10:09:17
  11276. 622 135 2 2006-02-15 10:09:17
  11277. 623 135 2 2006-02-15 10:09:17
  11278. 624 135 2 2006-02-15 10:09:17
  11279. 625 135 2 2006-02-15 10:09:17
  11280. 626 136 1 2006-02-15 10:09:17
  11281. 627 136 1 2006-02-15 10:09:17
  11282. 628 136 1 2006-02-15 10:09:17
  11283. 629 137 2 2006-02-15 10:09:17
  11284. 630 137 2 2006-02-15 10:09:17
  11285. 631 137 2 2006-02-15 10:09:17
  11286. 632 137 2 2006-02-15 10:09:17
  11287. 633 138 1 2006-02-15 10:09:17
  11288. 634 138 1 2006-02-15 10:09:17
  11289. 635 138 2 2006-02-15 10:09:17
  11290. 636 138 2 2006-02-15 10:09:17
  11291. 637 138 2 2006-02-15 10:09:17
  11292. 638 139 1 2006-02-15 10:09:17
  11293. 639 139 1 2006-02-15 10:09:17
  11294. 640 139 1 2006-02-15 10:09:17
  11295. 641 139 1 2006-02-15 10:09:17
  11296. 642 139 2 2006-02-15 10:09:17
  11297. 643 139 2 2006-02-15 10:09:17
  11298. 644 140 1 2006-02-15 10:09:17
  11299. 645 140 1 2006-02-15 10:09:17
  11300. 646 140 2 2006-02-15 10:09:17
  11301. 647 140 2 2006-02-15 10:09:17
  11302. 648 140 2 2006-02-15 10:09:17
  11303. 649 141 1 2006-02-15 10:09:17
  11304. 650 141 1 2006-02-15 10:09:17
  11305. 651 141 1 2006-02-15 10:09:17
  11306. 652 141 2 2006-02-15 10:09:17
  11307. 653 141 2 2006-02-15 10:09:17
  11308. 654 142 1 2006-02-15 10:09:17
  11309. 655 142 1 2006-02-15 10:09:17
  11310. 656 142 1 2006-02-15 10:09:17
  11311. 657 142 2 2006-02-15 10:09:17
  11312. 658 142 2 2006-02-15 10:09:17
  11313. 659 143 1 2006-02-15 10:09:17
  11314. 660 143 1 2006-02-15 10:09:17
  11315. 661 143 1 2006-02-15 10:09:17
  11316. 662 143 1 2006-02-15 10:09:17
  11317. 663 143 2 2006-02-15 10:09:17
  11318. 664 143 2 2006-02-15 10:09:17
  11319. 665 143 2 2006-02-15 10:09:17
  11320. 666 145 2 2006-02-15 10:09:17
  11321. 667 145 2 2006-02-15 10:09:17
  11322. 668 145 2 2006-02-15 10:09:17
  11323. 669 146 1 2006-02-15 10:09:17
  11324. 670 146 1 2006-02-15 10:09:17
  11325. 671 146 1 2006-02-15 10:09:17
  11326. 672 147 1 2006-02-15 10:09:17
  11327. 673 147 1 2006-02-15 10:09:17
  11328. 674 147 1 2006-02-15 10:09:17
  11329. 675 147 2 2006-02-15 10:09:17
  11330. 676 147 2 2006-02-15 10:09:17
  11331. 677 147 2 2006-02-15 10:09:17
  11332. 678 149 1 2006-02-15 10:09:17
  11333. 679 149 1 2006-02-15 10:09:17
  11334. 680 149 1 2006-02-15 10:09:17
  11335. 681 149 2 2006-02-15 10:09:17
  11336. 682 149 2 2006-02-15 10:09:17
  11337. 683 149 2 2006-02-15 10:09:17
  11338. 684 150 1 2006-02-15 10:09:17
  11339. 685 150 1 2006-02-15 10:09:17
  11340. 686 150 2 2006-02-15 10:09:17
  11341. 687 150 2 2006-02-15 10:09:17
  11342. 688 150 2 2006-02-15 10:09:17
  11343. 689 150 2 2006-02-15 10:09:17
  11344. 690 151 1 2006-02-15 10:09:17
  11345. 691 151 1 2006-02-15 10:09:17
  11346. 692 151 2 2006-02-15 10:09:17
  11347. 693 151 2 2006-02-15 10:09:17
  11348. 694 152 1 2006-02-15 10:09:17
  11349. 695 152 1 2006-02-15 10:09:17
  11350. 696 152 1 2006-02-15 10:09:17
  11351. 697 152 1 2006-02-15 10:09:17
  11352. 698 153 1 2006-02-15 10:09:17
  11353. 699 153 1 2006-02-15 10:09:17
  11354. 700 153 1 2006-02-15 10:09:17
  11355. 701 153 1 2006-02-15 10:09:17
  11356. 702 154 1 2006-02-15 10:09:17
  11357. 703 154 1 2006-02-15 10:09:17
  11358. 704 154 1 2006-02-15 10:09:17
  11359. 705 154 2 2006-02-15 10:09:17
  11360. 706 154 2 2006-02-15 10:09:17
  11361. 707 154 2 2006-02-15 10:09:17
  11362. 708 154 2 2006-02-15 10:09:17
  11363. 709 155 1 2006-02-15 10:09:17
  11364. 710 155 1 2006-02-15 10:09:17
  11365. 711 155 2 2006-02-15 10:09:17
  11366. 712 155 2 2006-02-15 10:09:17
  11367. 713 155 2 2006-02-15 10:09:17
  11368. 714 156 2 2006-02-15 10:09:17
  11369. 715 156 2 2006-02-15 10:09:17
  11370. 716 157 2 2006-02-15 10:09:17
  11371. 717 157 2 2006-02-15 10:09:17
  11372. 718 157 2 2006-02-15 10:09:17
  11373. 719 158 1 2006-02-15 10:09:17
  11374. 720 158 1 2006-02-15 10:09:17
  11375. 721 158 2 2006-02-15 10:09:17
  11376. 722 158 2 2006-02-15 10:09:17
  11377. 723 158 2 2006-02-15 10:09:17
  11378. 724 159 1 2006-02-15 10:09:17
  11379. 725 159 1 2006-02-15 10:09:17
  11380. 726 159 1 2006-02-15 10:09:17
  11381. 727 159 1 2006-02-15 10:09:17
  11382. 728 159 2 2006-02-15 10:09:17
  11383. 729 159 2 2006-02-15 10:09:17
  11384. 730 159 2 2006-02-15 10:09:17
  11385. 731 160 1 2006-02-15 10:09:17
  11386. 732 160 1 2006-02-15 10:09:17
  11387. 733 160 2 2006-02-15 10:09:17
  11388. 734 160 2 2006-02-15 10:09:17
  11389. 735 160 2 2006-02-15 10:09:17
  11390. 736 161 1 2006-02-15 10:09:17
  11391. 737 161 1 2006-02-15 10:09:17
  11392. 738 162 1 2006-02-15 10:09:17
  11393. 739 162 1 2006-02-15 10:09:17
  11394. 740 162 1 2006-02-15 10:09:17
  11395. 741 162 2 2006-02-15 10:09:17
  11396. 742 162 2 2006-02-15 10:09:17
  11397. 743 162 2 2006-02-15 10:09:17
  11398. 744 162 2 2006-02-15 10:09:17
  11399. 745 163 2 2006-02-15 10:09:17
  11400. 746 163 2 2006-02-15 10:09:17
  11401. 747 163 2 2006-02-15 10:09:17
  11402. 748 164 1 2006-02-15 10:09:17
  11403. 749 164 1 2006-02-15 10:09:17
  11404. 750 164 2 2006-02-15 10:09:17
  11405. 751 164 2 2006-02-15 10:09:17
  11406. 752 164 2 2006-02-15 10:09:17
  11407. 753 165 1 2006-02-15 10:09:17
  11408. 754 165 1 2006-02-15 10:09:17
  11409. 755 165 1 2006-02-15 10:09:17
  11410. 756 165 2 2006-02-15 10:09:17
  11411. 757 165 2 2006-02-15 10:09:17
  11412. 758 166 1 2006-02-15 10:09:17
  11413. 759 166 1 2006-02-15 10:09:17
  11414. 760 166 1 2006-02-15 10:09:17
  11415. 761 166 1 2006-02-15 10:09:17
  11416. 762 166 2 2006-02-15 10:09:17
  11417. 763 166 2 2006-02-15 10:09:17
  11418. 764 167 1 2006-02-15 10:09:17
  11419. 765 167 1 2006-02-15 10:09:17
  11420. 766 167 1 2006-02-15 10:09:17
  11421. 767 167 1 2006-02-15 10:09:17
  11422. 768 167 2 2006-02-15 10:09:17
  11423. 769 167 2 2006-02-15 10:09:17
  11424. 770 167 2 2006-02-15 10:09:17
  11425. 771 168 1 2006-02-15 10:09:17
  11426. 772 168 1 2006-02-15 10:09:17
  11427. 773 169 1 2006-02-15 10:09:17
  11428. 774 169 1 2006-02-15 10:09:17
  11429. 775 169 2 2006-02-15 10:09:17
  11430. 776 169 2 2006-02-15 10:09:17
  11431. 777 170 1 2006-02-15 10:09:17
  11432. 778 170 1 2006-02-15 10:09:17
  11433. 779 170 2 2006-02-15 10:09:17
  11434. 780 170 2 2006-02-15 10:09:17
  11435. 781 170 2 2006-02-15 10:09:17
  11436. 782 170 2 2006-02-15 10:09:17
  11437. 783 172 1 2006-02-15 10:09:17
  11438. 784 172 1 2006-02-15 10:09:17
  11439. 785 172 1 2006-02-15 10:09:17
  11440. 786 172 1 2006-02-15 10:09:17
  11441. 787 172 2 2006-02-15 10:09:17
  11442. 788 172 2 2006-02-15 10:09:17
  11443. 789 172 2 2006-02-15 10:09:17
  11444. 790 173 1 2006-02-15 10:09:17
  11445. 791 173 1 2006-02-15 10:09:17
  11446. 792 173 1 2006-02-15 10:09:17
  11447. 793 173 2 2006-02-15 10:09:17
  11448. 794 173 2 2006-02-15 10:09:17
  11449. 795 174 1 2006-02-15 10:09:17
  11450. 796 174 1 2006-02-15 10:09:17
  11451. 797 174 1 2006-02-15 10:09:17
  11452. 798 174 1 2006-02-15 10:09:17
  11453. 799 174 2 2006-02-15 10:09:17
  11454. 800 174 2 2006-02-15 10:09:17
  11455. 801 174 2 2006-02-15 10:09:17
  11456. 802 174 2 2006-02-15 10:09:17
  11457. 803 175 1 2006-02-15 10:09:17
  11458. 804 175 1 2006-02-15 10:09:17
  11459. 805 175 2 2006-02-15 10:09:17
  11460. 806 175 2 2006-02-15 10:09:17
  11461. 807 175 2 2006-02-15 10:09:17
  11462. 808 176 1 2006-02-15 10:09:17
  11463. 809 176 1 2006-02-15 10:09:17
  11464. 810 176 2 2006-02-15 10:09:17
  11465. 811 176 2 2006-02-15 10:09:17
  11466. 812 176 2 2006-02-15 10:09:17
  11467. 813 176 2 2006-02-15 10:09:17
  11468. 814 177 2 2006-02-15 10:09:17
  11469. 815 177 2 2006-02-15 10:09:17
  11470. 816 177 2 2006-02-15 10:09:17
  11471. 817 178 1 2006-02-15 10:09:17
  11472. 818 178 1 2006-02-15 10:09:17
  11473. 819 179 1 2006-02-15 10:09:17
  11474. 820 179 1 2006-02-15 10:09:17
  11475. 821 179 1 2006-02-15 10:09:17
  11476. 822 179 1 2006-02-15 10:09:17
  11477. 823 180 2 2006-02-15 10:09:17
  11478. 824 180 2 2006-02-15 10:09:17
  11479. 825 181 1 2006-02-15 10:09:17
  11480. 826 181 1 2006-02-15 10:09:17
  11481. 827 181 1 2006-02-15 10:09:17
  11482. 828 181 2 2006-02-15 10:09:17
  11483. 829 181 2 2006-02-15 10:09:17
  11484. 830 181 2 2006-02-15 10:09:17
  11485. 831 181 2 2006-02-15 10:09:17
  11486. 832 182 1 2006-02-15 10:09:17
  11487. 833 182 1 2006-02-15 10:09:17
  11488. 834 183 1 2006-02-15 10:09:17
  11489. 835 183 1 2006-02-15 10:09:17
  11490. 836 183 1 2006-02-15 10:09:17
  11491. 837 183 2 2006-02-15 10:09:17
  11492. 838 183 2 2006-02-15 10:09:17
  11493. 839 183 2 2006-02-15 10:09:17
  11494. 840 184 1 2006-02-15 10:09:17
  11495. 841 184 1 2006-02-15 10:09:17
  11496. 842 184 2 2006-02-15 10:09:17
  11497. 843 184 2 2006-02-15 10:09:17
  11498. 844 184 2 2006-02-15 10:09:17
  11499. 845 185 1 2006-02-15 10:09:17
  11500. 846 185 1 2006-02-15 10:09:17
  11501. 847 186 1 2006-02-15 10:09:17
  11502. 848 186 1 2006-02-15 10:09:17
  11503. 849 186 2 2006-02-15 10:09:17
  11504. 850 186 2 2006-02-15 10:09:17
  11505. 851 187 2 2006-02-15 10:09:17
  11506. 852 187 2 2006-02-15 10:09:17
  11507. 853 187 2 2006-02-15 10:09:17
  11508. 854 188 1 2006-02-15 10:09:17
  11509. 855 188 1 2006-02-15 10:09:17
  11510. 856 188 1 2006-02-15 10:09:17
  11511. 857 189 1 2006-02-15 10:09:17
  11512. 858 189 1 2006-02-15 10:09:17
  11513. 859 189 2 2006-02-15 10:09:17
  11514. 860 189 2 2006-02-15 10:09:17
  11515. 861 189 2 2006-02-15 10:09:17
  11516. 862 189 2 2006-02-15 10:09:17
  11517. 863 190 2 2006-02-15 10:09:17
  11518. 864 190 2 2006-02-15 10:09:17
  11519. 865 190 2 2006-02-15 10:09:17
  11520. 866 190 2 2006-02-15 10:09:17
  11521. 867 191 1 2006-02-15 10:09:17
  11522. 868 191 1 2006-02-15 10:09:17
  11523. 869 191 1 2006-02-15 10:09:17
  11524. 870 191 2 2006-02-15 10:09:17
  11525. 871 191 2 2006-02-15 10:09:17
  11526. 872 191 2 2006-02-15 10:09:17
  11527. 873 193 1 2006-02-15 10:09:17
  11528. 874 193 1 2006-02-15 10:09:17
  11529. 875 193 1 2006-02-15 10:09:17
  11530. 876 193 1 2006-02-15 10:09:17
  11531. 877 193 2 2006-02-15 10:09:17
  11532. 878 193 2 2006-02-15 10:09:17
  11533. 879 193 2 2006-02-15 10:09:17
  11534. 880 193 2 2006-02-15 10:09:17
  11535. 881 194 1 2006-02-15 10:09:17
  11536. 882 194 1 2006-02-15 10:09:17
  11537. 883 194 2 2006-02-15 10:09:17
  11538. 884 194 2 2006-02-15 10:09:17
  11539. 885 196 1 2006-02-15 10:09:17
  11540. 886 196 1 2006-02-15 10:09:17
  11541. 887 197 1 2006-02-15 10:09:17
  11542. 888 197 1 2006-02-15 10:09:17
  11543. 889 199 1 2006-02-15 10:09:17
  11544. 890 199 1 2006-02-15 10:09:17
  11545. 891 199 1 2006-02-15 10:09:17
  11546. 892 199 1 2006-02-15 10:09:17
  11547. 893 199 2 2006-02-15 10:09:17
  11548. 894 199 2 2006-02-15 10:09:17
  11549. 895 199 2 2006-02-15 10:09:17
  11550. 896 199 2 2006-02-15 10:09:17
  11551. 897 200 1 2006-02-15 10:09:17
  11552. 898 200 1 2006-02-15 10:09:17
  11553. 899 200 1 2006-02-15 10:09:17
  11554. 900 200 1 2006-02-15 10:09:17
  11555. 901 200 2 2006-02-15 10:09:17
  11556. 902 200 2 2006-02-15 10:09:17
  11557. 903 200 2 2006-02-15 10:09:17
  11558. 904 200 2 2006-02-15 10:09:17
  11559. 905 201 1 2006-02-15 10:09:17
  11560. 906 201 1 2006-02-15 10:09:17
  11561. 907 201 1 2006-02-15 10:09:17
  11562. 908 201 1 2006-02-15 10:09:17
  11563. 909 202 1 2006-02-15 10:09:17
  11564. 910 202 1 2006-02-15 10:09:17
  11565. 911 202 1 2006-02-15 10:09:17
  11566. 912 203 2 2006-02-15 10:09:17
  11567. 913 203 2 2006-02-15 10:09:17
  11568. 914 203 2 2006-02-15 10:09:17
  11569. 915 203 2 2006-02-15 10:09:17
  11570. 916 204 1 2006-02-15 10:09:17
  11571. 917 204 1 2006-02-15 10:09:17
  11572. 918 204 1 2006-02-15 10:09:17
  11573. 919 204 1 2006-02-15 10:09:17
  11574. 920 204 2 2006-02-15 10:09:17
  11575. 921 204 2 2006-02-15 10:09:17
  11576. 922 205 1 2006-02-15 10:09:17
  11577. 923 205 1 2006-02-15 10:09:17
  11578. 924 205 1 2006-02-15 10:09:17
  11579. 925 205 1 2006-02-15 10:09:17
  11580. 926 206 1 2006-02-15 10:09:17
  11581. 927 206 1 2006-02-15 10:09:17
  11582. 928 206 1 2006-02-15 10:09:17
  11583. 929 206 1 2006-02-15 10:09:17
  11584. 930 206 2 2006-02-15 10:09:17
  11585. 931 206 2 2006-02-15 10:09:17
  11586. 932 206 2 2006-02-15 10:09:17
  11587. 933 206 2 2006-02-15 10:09:17
  11588. 934 207 1 2006-02-15 10:09:17
  11589. 935 207 1 2006-02-15 10:09:17
  11590. 936 207 1 2006-02-15 10:09:17
  11591. 937 207 1 2006-02-15 10:09:17
  11592. 938 208 1 2006-02-15 10:09:17
  11593. 939 208 1 2006-02-15 10:09:17
  11594. 940 208 1 2006-02-15 10:09:17
  11595. 941 209 1 2006-02-15 10:09:17
  11596. 942 209 1 2006-02-15 10:09:17
  11597. 943 209 1 2006-02-15 10:09:17
  11598. 944 209 1 2006-02-15 10:09:17
  11599. 945 210 2 2006-02-15 10:09:17
  11600. 946 210 2 2006-02-15 10:09:17
  11601. 947 210 2 2006-02-15 10:09:17
  11602. 948 211 1 2006-02-15 10:09:17
  11603. 949 211 1 2006-02-15 10:09:17
  11604. 950 212 1 2006-02-15 10:09:17
  11605. 951 212 1 2006-02-15 10:09:17
  11606. 952 212 1 2006-02-15 10:09:17
  11607. 953 212 2 2006-02-15 10:09:17
  11608. 954 212 2 2006-02-15 10:09:17
  11609. 955 213 1 2006-02-15 10:09:17
  11610. 956 213 1 2006-02-15 10:09:17
  11611. 957 213 1 2006-02-15 10:09:17
  11612. 958 213 1 2006-02-15 10:09:17
  11613. 959 214 2 2006-02-15 10:09:17
  11614. 960 214 2 2006-02-15 10:09:17
  11615. 961 214 2 2006-02-15 10:09:17
  11616. 962 214 2 2006-02-15 10:09:17
  11617. 963 215 1 2006-02-15 10:09:17
  11618. 964 215 1 2006-02-15 10:09:17
  11619. 965 215 1 2006-02-15 10:09:17
  11620. 966 215 2 2006-02-15 10:09:17
  11621. 967 215 2 2006-02-15 10:09:17
  11622. 968 215 2 2006-02-15 10:09:17
  11623. 969 216 1 2006-02-15 10:09:17
  11624. 970 216 1 2006-02-15 10:09:17
  11625. 971 216 2 2006-02-15 10:09:17
  11626. 972 216 2 2006-02-15 10:09:17
  11627. 973 216 2 2006-02-15 10:09:17
  11628. 974 218 1 2006-02-15 10:09:17
  11629. 975 218 1 2006-02-15 10:09:17
  11630. 976 218 1 2006-02-15 10:09:17
  11631. 977 218 1 2006-02-15 10:09:17
  11632. 978 218 2 2006-02-15 10:09:17
  11633. 979 218 2 2006-02-15 10:09:17
  11634. 980 218 2 2006-02-15 10:09:17
  11635. 981 219 1 2006-02-15 10:09:17
  11636. 982 219 1 2006-02-15 10:09:17
  11637. 983 219 1 2006-02-15 10:09:17
  11638. 984 219 1 2006-02-15 10:09:17
  11639. 985 220 1 2006-02-15 10:09:17
  11640. 986 220 1 2006-02-15 10:09:17
  11641. 987 220 1 2006-02-15 10:09:17
  11642. 988 220 1 2006-02-15 10:09:17
  11643. 989 220 2 2006-02-15 10:09:17
  11644. 990 220 2 2006-02-15 10:09:17
  11645. 991 220 2 2006-02-15 10:09:17
  11646. 992 220 2 2006-02-15 10:09:17
  11647. 993 222 1 2006-02-15 10:09:17
  11648. 994 222 1 2006-02-15 10:09:17
  11649. 995 222 2 2006-02-15 10:09:17
  11650. 996 222 2 2006-02-15 10:09:17
  11651. 997 222 2 2006-02-15 10:09:17
  11652. 998 222 2 2006-02-15 10:09:17
  11653. 999 223 2 2006-02-15 10:09:17
  11654. 1000 223 2 2006-02-15 10:09:17
  11655. 1001 224 1 2006-02-15 10:09:17
  11656. 1002 224 1 2006-02-15 10:09:17
  11657. 1003 225 1 2006-02-15 10:09:17
  11658. 1004 225 1 2006-02-15 10:09:17
  11659. 1005 225 1 2006-02-15 10:09:17
  11660. 1006 226 1 2006-02-15 10:09:17
  11661. 1007 226 1 2006-02-15 10:09:17
  11662. 1008 226 2 2006-02-15 10:09:17
  11663. 1009 226 2 2006-02-15 10:09:17
  11664. 1010 226 2 2006-02-15 10:09:17
  11665. 1011 227 1 2006-02-15 10:09:17
  11666. 1012 227 1 2006-02-15 10:09:17
  11667. 1013 227 1 2006-02-15 10:09:17
  11668. 1014 227 2 2006-02-15 10:09:17
  11669. 1015 227 2 2006-02-15 10:09:17
  11670. 1016 228 1 2006-02-15 10:09:17
  11671. 1017 228 1 2006-02-15 10:09:17
  11672. 1018 228 1 2006-02-15 10:09:17
  11673. 1019 228 2 2006-02-15 10:09:17
  11674. 1020 228 2 2006-02-15 10:09:17
  11675. 1021 228 2 2006-02-15 10:09:17
  11676. 1022 228 2 2006-02-15 10:09:17
  11677. 1023 229 1 2006-02-15 10:09:17
  11678. 1024 229 1 2006-02-15 10:09:17
  11679. 1025 229 2 2006-02-15 10:09:17
  11680. 1026 229 2 2006-02-15 10:09:17
  11681. 1027 230 1 2006-02-15 10:09:17
  11682. 1028 230 1 2006-02-15 10:09:17
  11683. 1029 231 1 2006-02-15 10:09:17
  11684. 1030 231 1 2006-02-15 10:09:17
  11685. 1031 231 1 2006-02-15 10:09:17
  11686. 1032 231 1 2006-02-15 10:09:17
  11687. 1033 231 2 2006-02-15 10:09:17
  11688. 1034 231 2 2006-02-15 10:09:17
  11689. 1035 231 2 2006-02-15 10:09:17
  11690. 1036 231 2 2006-02-15 10:09:17
  11691. 1037 232 1 2006-02-15 10:09:17
  11692. 1038 232 1 2006-02-15 10:09:17
  11693. 1039 232 1 2006-02-15 10:09:17
  11694. 1040 232 2 2006-02-15 10:09:17
  11695. 1041 232 2 2006-02-15 10:09:17
  11696. 1042 233 1 2006-02-15 10:09:17
  11697. 1043 233 1 2006-02-15 10:09:17
  11698. 1044 233 1 2006-02-15 10:09:17
  11699. 1045 233 1 2006-02-15 10:09:17
  11700. 1046 233 2 2006-02-15 10:09:17
  11701. 1047 233 2 2006-02-15 10:09:17
  11702. 1048 234 1 2006-02-15 10:09:17
  11703. 1049 234 1 2006-02-15 10:09:17
  11704. 1050 234 1 2006-02-15 10:09:17
  11705. 1051 234 1 2006-02-15 10:09:17
  11706. 1052 234 2 2006-02-15 10:09:17
  11707. 1053 234 2 2006-02-15 10:09:17
  11708. 1054 234 2 2006-02-15 10:09:17
  11709. 1055 235 1 2006-02-15 10:09:17
  11710. 1056 235 1 2006-02-15 10:09:17
  11711. 1057 235 2 2006-02-15 10:09:17
  11712. 1058 235 2 2006-02-15 10:09:17
  11713. 1059 235 2 2006-02-15 10:09:17
  11714. 1060 235 2 2006-02-15 10:09:17
  11715. 1061 236 2 2006-02-15 10:09:17
  11716. 1062 236 2 2006-02-15 10:09:17
  11717. 1063 236 2 2006-02-15 10:09:17
  11718. 1064 236 2 2006-02-15 10:09:17
  11719. 1065 237 1 2006-02-15 10:09:17
  11720. 1066 237 1 2006-02-15 10:09:17
  11721. 1067 238 1 2006-02-15 10:09:17
  11722. 1068 238 1 2006-02-15 10:09:17
  11723. 1069 239 1 2006-02-15 10:09:17
  11724. 1070 239 1 2006-02-15 10:09:17
  11725. 1071 239 1 2006-02-15 10:09:17
  11726. 1072 239 1 2006-02-15 10:09:17
  11727. 1073 239 2 2006-02-15 10:09:17
  11728. 1074 239 2 2006-02-15 10:09:17
  11729. 1075 239 2 2006-02-15 10:09:17
  11730. 1076 239 2 2006-02-15 10:09:17
  11731. 1077 240 2 2006-02-15 10:09:17
  11732. 1078 240 2 2006-02-15 10:09:17
  11733. 1079 240 2 2006-02-15 10:09:17
  11734. 1080 241 1 2006-02-15 10:09:17
  11735. 1081 241 1 2006-02-15 10:09:17
  11736. 1082 241 1 2006-02-15 10:09:17
  11737. 1083 241 1 2006-02-15 10:09:17
  11738. 1084 242 1 2006-02-15 10:09:17
  11739. 1085 242 1 2006-02-15 10:09:17
  11740. 1086 242 2 2006-02-15 10:09:17
  11741. 1087 242 2 2006-02-15 10:09:17
  11742. 1088 242 2 2006-02-15 10:09:17
  11743. 1089 243 1 2006-02-15 10:09:17
  11744. 1090 243 1 2006-02-15 10:09:17
  11745. 1091 243 2 2006-02-15 10:09:17
  11746. 1092 243 2 2006-02-15 10:09:17
  11747. 1093 243 2 2006-02-15 10:09:17
  11748. 1094 243 2 2006-02-15 10:09:17
  11749. 1095 244 1 2006-02-15 10:09:17
  11750. 1096 244 1 2006-02-15 10:09:17
  11751. 1097 244 1 2006-02-15 10:09:17
  11752. 1098 244 1 2006-02-15 10:09:17
  11753. 1099 244 2 2006-02-15 10:09:17
  11754. 1100 244 2 2006-02-15 10:09:17
  11755. 1101 244 2 2006-02-15 10:09:17
  11756. 1102 245 1 2006-02-15 10:09:17
  11757. 1103 245 1 2006-02-15 10:09:17
  11758. 1104 245 1 2006-02-15 10:09:17
  11759. 1105 245 2 2006-02-15 10:09:17
  11760. 1106 245 2 2006-02-15 10:09:17
  11761. 1107 245 2 2006-02-15 10:09:17
  11762. 1108 245 2 2006-02-15 10:09:17
  11763. 1109 246 2 2006-02-15 10:09:17
  11764. 1110 246 2 2006-02-15 10:09:17
  11765. 1111 246 2 2006-02-15 10:09:17
  11766. 1112 247 1 2006-02-15 10:09:17
  11767. 1113 247 1 2006-02-15 10:09:17
  11768. 1114 247 1 2006-02-15 10:09:17
  11769. 1115 247 2 2006-02-15 10:09:17
  11770. 1116 247 2 2006-02-15 10:09:17
  11771. 1117 247 2 2006-02-15 10:09:17
  11772. 1118 247 2 2006-02-15 10:09:17
  11773. 1119 248 2 2006-02-15 10:09:17
  11774. 1120 248 2 2006-02-15 10:09:17
  11775. 1121 249 1 2006-02-15 10:09:17
  11776. 1122 249 1 2006-02-15 10:09:17
  11777. 1123 249 2 2006-02-15 10:09:17
  11778. 1124 249 2 2006-02-15 10:09:17
  11779. 1125 249 2 2006-02-15 10:09:17
  11780. 1126 249 2 2006-02-15 10:09:17
  11781. 1127 250 2 2006-02-15 10:09:17
  11782. 1128 250 2 2006-02-15 10:09:17
  11783. 1129 250 2 2006-02-15 10:09:17
  11784. 1130 250 2 2006-02-15 10:09:17
  11785. 1131 251 1 2006-02-15 10:09:17
  11786. 1132 251 1 2006-02-15 10:09:17
  11787. 1133 251 2 2006-02-15 10:09:17
  11788. 1134 251 2 2006-02-15 10:09:17
  11789. 1135 251 2 2006-02-15 10:09:17
  11790. 1136 252 1 2006-02-15 10:09:17
  11791. 1137 252 1 2006-02-15 10:09:17
  11792. 1138 252 1 2006-02-15 10:09:17
  11793. 1139 252 2 2006-02-15 10:09:17
  11794. 1140 252 2 2006-02-15 10:09:17
  11795. 1141 252 2 2006-02-15 10:09:17
  11796. 1142 253 1 2006-02-15 10:09:17
  11797. 1143 253 1 2006-02-15 10:09:17
  11798. 1144 253 1 2006-02-15 10:09:17
  11799. 1145 253 1 2006-02-15 10:09:17
  11800. 1146 253 2 2006-02-15 10:09:17
  11801. 1147 253 2 2006-02-15 10:09:17
  11802. 1148 254 1 2006-02-15 10:09:17
  11803. 1149 254 1 2006-02-15 10:09:17
  11804. 1150 254 2 2006-02-15 10:09:17
  11805. 1151 254 2 2006-02-15 10:09:17
  11806. 1152 254 2 2006-02-15 10:09:17
  11807. 1153 255 1 2006-02-15 10:09:17
  11808. 1154 255 1 2006-02-15 10:09:17
  11809. 1155 255 1 2006-02-15 10:09:17
  11810. 1156 255 1 2006-02-15 10:09:17
  11811. 1157 255 2 2006-02-15 10:09:17
  11812. 1158 255 2 2006-02-15 10:09:17
  11813. 1159 256 2 2006-02-15 10:09:17
  11814. 1160 256 2 2006-02-15 10:09:17
  11815. 1161 256 2 2006-02-15 10:09:17
  11816. 1162 257 2 2006-02-15 10:09:17
  11817. 1163 257 2 2006-02-15 10:09:17
  11818. 1164 257 2 2006-02-15 10:09:17
  11819. 1165 258 2 2006-02-15 10:09:17
  11820. 1166 258 2 2006-02-15 10:09:17
  11821. 1167 258 2 2006-02-15 10:09:17
  11822. 1168 258 2 2006-02-15 10:09:17
  11823. 1169 259 1 2006-02-15 10:09:17
  11824. 1170 259 1 2006-02-15 10:09:17
  11825. 1171 260 2 2006-02-15 10:09:17
  11826. 1172 260 2 2006-02-15 10:09:17
  11827. 1173 260 2 2006-02-15 10:09:17
  11828. 1174 260 2 2006-02-15 10:09:17
  11829. 1175 261 1 2006-02-15 10:09:17
  11830. 1176 261 1 2006-02-15 10:09:17
  11831. 1177 262 2 2006-02-15 10:09:17
  11832. 1178 262 2 2006-02-15 10:09:17
  11833. 1179 263 1 2006-02-15 10:09:17
  11834. 1180 263 1 2006-02-15 10:09:17
  11835. 1181 263 1 2006-02-15 10:09:17
  11836. 1182 263 1 2006-02-15 10:09:17
  11837. 1183 263 2 2006-02-15 10:09:17
  11838. 1184 263 2 2006-02-15 10:09:17
  11839. 1185 263 2 2006-02-15 10:09:17
  11840. 1186 264 2 2006-02-15 10:09:17
  11841. 1187 264 2 2006-02-15 10:09:17
  11842. 1188 265 1 2006-02-15 10:09:17
  11843. 1189 265 1 2006-02-15 10:09:17
  11844. 1190 265 1 2006-02-15 10:09:17
  11845. 1191 265 1 2006-02-15 10:09:17
  11846. 1192 266 1 2006-02-15 10:09:17
  11847. 1193 266 1 2006-02-15 10:09:17
  11848. 1194 266 1 2006-02-15 10:09:17
  11849. 1195 266 1 2006-02-15 10:09:17
  11850. 1196 266 2 2006-02-15 10:09:17
  11851. 1197 266 2 2006-02-15 10:09:17
  11852. 1198 266 2 2006-02-15 10:09:17
  11853. 1199 266 2 2006-02-15 10:09:17
  11854. 1200 267 1 2006-02-15 10:09:17
  11855. 1201 267 1 2006-02-15 10:09:17
  11856. 1202 267 1 2006-02-15 10:09:17
  11857. 1203 267 1 2006-02-15 10:09:17
  11858. 1204 267 2 2006-02-15 10:09:17
  11859. 1205 267 2 2006-02-15 10:09:17
  11860. 1206 268 2 2006-02-15 10:09:17
  11861. 1207 268 2 2006-02-15 10:09:17
  11862. 1208 269 1 2006-02-15 10:09:17
  11863. 1209 269 1 2006-02-15 10:09:17
  11864. 1210 269 2 2006-02-15 10:09:17
  11865. 1211 269 2 2006-02-15 10:09:17
  11866. 1212 269 2 2006-02-15 10:09:17
  11867. 1213 269 2 2006-02-15 10:09:17
  11868. 1214 270 1 2006-02-15 10:09:17
  11869. 1215 270 1 2006-02-15 10:09:17
  11870. 1216 270 1 2006-02-15 10:09:17
  11871. 1217 270 2 2006-02-15 10:09:17
  11872. 1218 270 2 2006-02-15 10:09:17
  11873. 1219 270 2 2006-02-15 10:09:17
  11874. 1220 270 2 2006-02-15 10:09:17
  11875. 1221 271 1 2006-02-15 10:09:17
  11876. 1222 271 1 2006-02-15 10:09:17
  11877. 1223 271 1 2006-02-15 10:09:17
  11878. 1224 271 2 2006-02-15 10:09:17
  11879. 1225 271 2 2006-02-15 10:09:17
  11880. 1226 272 1 2006-02-15 10:09:17
  11881. 1227 272 1 2006-02-15 10:09:17
  11882. 1228 272 1 2006-02-15 10:09:17
  11883. 1229 272 1 2006-02-15 10:09:17
  11884. 1230 273 1 2006-02-15 10:09:17
  11885. 1231 273 1 2006-02-15 10:09:17
  11886. 1232 273 1 2006-02-15 10:09:17
  11887. 1233 273 1 2006-02-15 10:09:17
  11888. 1234 273 2 2006-02-15 10:09:17
  11889. 1235 273 2 2006-02-15 10:09:17
  11890. 1236 273 2 2006-02-15 10:09:17
  11891. 1237 274 1 2006-02-15 10:09:17
  11892. 1238 274 1 2006-02-15 10:09:17
  11893. 1239 274 1 2006-02-15 10:09:17
  11894. 1240 274 2 2006-02-15 10:09:17
  11895. 1241 274 2 2006-02-15 10:09:17
  11896. 1242 274 2 2006-02-15 10:09:17
  11897. 1243 274 2 2006-02-15 10:09:17
  11898. 1244 275 1 2006-02-15 10:09:17
  11899. 1245 275 1 2006-02-15 10:09:17
  11900. 1246 275 1 2006-02-15 10:09:17
  11901. 1247 275 2 2006-02-15 10:09:17
  11902. 1248 275 2 2006-02-15 10:09:17
  11903. 1249 276 1 2006-02-15 10:09:17
  11904. 1250 276 1 2006-02-15 10:09:17
  11905. 1251 276 1 2006-02-15 10:09:17
  11906. 1252 276 1 2006-02-15 10:09:17
  11907. 1253 277 1 2006-02-15 10:09:17
  11908. 1254 277 1 2006-02-15 10:09:17
  11909. 1255 277 1 2006-02-15 10:09:17
  11910. 1256 278 1 2006-02-15 10:09:17
  11911. 1257 278 1 2006-02-15 10:09:17
  11912. 1258 279 1 2006-02-15 10:09:17
  11913. 1259 279 1 2006-02-15 10:09:17
  11914. 1260 280 1 2006-02-15 10:09:17
  11915. 1261 280 1 2006-02-15 10:09:17
  11916. 1262 280 1 2006-02-15 10:09:17
  11917. 1263 280 1 2006-02-15 10:09:17
  11918. 1264 280 2 2006-02-15 10:09:17
  11919. 1265 280 2 2006-02-15 10:09:17
  11920. 1266 281 1 2006-02-15 10:09:17
  11921. 1267 281 1 2006-02-15 10:09:17
  11922. 1268 281 2 2006-02-15 10:09:17
  11923. 1269 281 2 2006-02-15 10:09:17
  11924. 1270 281 2 2006-02-15 10:09:17
  11925. 1271 281 2 2006-02-15 10:09:17
  11926. 1272 282 1 2006-02-15 10:09:17
  11927. 1273 282 1 2006-02-15 10:09:17
  11928. 1274 282 1 2006-02-15 10:09:17
  11929. 1275 282 2 2006-02-15 10:09:17
  11930. 1276 282 2 2006-02-15 10:09:17
  11931. 1277 282 2 2006-02-15 10:09:17
  11932. 1278 283 1 2006-02-15 10:09:17
  11933. 1279 283 1 2006-02-15 10:09:17
  11934. 1280 283 1 2006-02-15 10:09:17
  11935. 1281 284 1 2006-02-15 10:09:17
  11936. 1282 284 1 2006-02-15 10:09:17
  11937. 1283 284 1 2006-02-15 10:09:17
  11938. 1284 284 2 2006-02-15 10:09:17
  11939. 1285 284 2 2006-02-15 10:09:17
  11940. 1286 284 2 2006-02-15 10:09:17
  11941. 1287 284 2 2006-02-15 10:09:17
  11942. 1288 285 1 2006-02-15 10:09:17
  11943. 1289 285 1 2006-02-15 10:09:17
  11944. 1290 285 1 2006-02-15 10:09:17
  11945. 1291 285 2 2006-02-15 10:09:17
  11946. 1292 285 2 2006-02-15 10:09:17
  11947. 1293 285 2 2006-02-15 10:09:17
  11948. 1294 285 2 2006-02-15 10:09:17
  11949. 1295 286 1 2006-02-15 10:09:17
  11950. 1296 286 1 2006-02-15 10:09:17
  11951. 1297 286 2 2006-02-15 10:09:17
  11952. 1298 286 2 2006-02-15 10:09:17
  11953. 1299 286 2 2006-02-15 10:09:17
  11954. 1300 287 1 2006-02-15 10:09:17
  11955. 1301 287 1 2006-02-15 10:09:17
  11956. 1302 287 2 2006-02-15 10:09:17
  11957. 1303 287 2 2006-02-15 10:09:17
  11958. 1304 288 1 2006-02-15 10:09:17
  11959. 1305 288 1 2006-02-15 10:09:17
  11960. 1306 288 2 2006-02-15 10:09:17
  11961. 1307 288 2 2006-02-15 10:09:17
  11962. 1308 288 2 2006-02-15 10:09:17
  11963. 1309 288 2 2006-02-15 10:09:17
  11964. 1310 289 1 2006-02-15 10:09:17
  11965. 1311 289 1 2006-02-15 10:09:17
  11966. 1312 290 1 2006-02-15 10:09:17
  11967. 1313 290 1 2006-02-15 10:09:17
  11968. 1314 290 1 2006-02-15 10:09:17
  11969. 1315 291 1 2006-02-15 10:09:17
  11970. 1316 291 1 2006-02-15 10:09:17
  11971. 1317 291 1 2006-02-15 10:09:17
  11972. 1318 291 1 2006-02-15 10:09:17
  11973. 1319 292 1 2006-02-15 10:09:17
  11974. 1320 292 1 2006-02-15 10:09:17
  11975. 1321 292 1 2006-02-15 10:09:17
  11976. 1322 292 2 2006-02-15 10:09:17
  11977. 1323 292 2 2006-02-15 10:09:17
  11978. 1324 292 2 2006-02-15 10:09:17
  11979. 1325 293 1 2006-02-15 10:09:17
  11980. 1326 293 1 2006-02-15 10:09:17
  11981. 1327 293 2 2006-02-15 10:09:17
  11982. 1328 293 2 2006-02-15 10:09:17
  11983. 1329 293 2 2006-02-15 10:09:17
  11984. 1330 294 1 2006-02-15 10:09:17
  11985. 1331 294 1 2006-02-15 10:09:17
  11986. 1332 294 2 2006-02-15 10:09:17
  11987. 1333 294 2 2006-02-15 10:09:17
  11988. 1334 294 2 2006-02-15 10:09:17
  11989. 1335 295 1 2006-02-15 10:09:17
  11990. 1336 295 1 2006-02-15 10:09:17
  11991. 1337 295 1 2006-02-15 10:09:17
  11992. 1338 295 1 2006-02-15 10:09:17
  11993. 1339 295 2 2006-02-15 10:09:17
  11994. 1340 295 2 2006-02-15 10:09:17
  11995. 1341 295 2 2006-02-15 10:09:17
  11996. 1342 295 2 2006-02-15 10:09:17
  11997. 1343 296 1 2006-02-15 10:09:17
  11998. 1344 296 1 2006-02-15 10:09:17
  11999. 1345 296 1 2006-02-15 10:09:17
  12000. 1346 296 1 2006-02-15 10:09:17
  12001. 1347 297 2 2006-02-15 10:09:17
  12002. 1348 297 2 2006-02-15 10:09:17
  12003. 1349 298 1 2006-02-15 10:09:17
  12004. 1350 298 1 2006-02-15 10:09:17
  12005. 1351 298 2 2006-02-15 10:09:17
  12006. 1352 298 2 2006-02-15 10:09:17
  12007. 1353 298 2 2006-02-15 10:09:17
  12008. 1354 299 1 2006-02-15 10:09:17
  12009. 1355 299 1 2006-02-15 10:09:17
  12010. 1356 299 1 2006-02-15 10:09:17
  12011. 1357 299 1 2006-02-15 10:09:17
  12012. 1358 300 1 2006-02-15 10:09:17
  12013. 1359 300 1 2006-02-15 10:09:17
  12014. 1360 300 2 2006-02-15 10:09:17
  12015. 1361 300 2 2006-02-15 10:09:17
  12016. 1362 300 2 2006-02-15 10:09:17
  12017. 1363 300 2 2006-02-15 10:09:17
  12018. 1364 301 1 2006-02-15 10:09:17
  12019. 1365 301 1 2006-02-15 10:09:17
  12020. 1366 301 1 2006-02-15 10:09:17
  12021. 1367 301 1 2006-02-15 10:09:17
  12022. 1368 301 2 2006-02-15 10:09:17
  12023. 1369 301 2 2006-02-15 10:09:17
  12024. 1370 301 2 2006-02-15 10:09:17
  12025. 1371 301 2 2006-02-15 10:09:17
  12026. 1372 302 1 2006-02-15 10:09:17
  12027. 1373 302 1 2006-02-15 10:09:17
  12028. 1374 302 2 2006-02-15 10:09:17
  12029. 1375 302 2 2006-02-15 10:09:17
  12030. 1376 302 2 2006-02-15 10:09:17
  12031. 1377 302 2 2006-02-15 10:09:17
  12032. 1378 303 1 2006-02-15 10:09:17
  12033. 1379 303 1 2006-02-15 10:09:17
  12034. 1380 303 1 2006-02-15 10:09:17
  12035. 1381 303 1 2006-02-15 10:09:17
  12036. 1382 303 2 2006-02-15 10:09:17
  12037. 1383 303 2 2006-02-15 10:09:17
  12038. 1384 304 1 2006-02-15 10:09:17
  12039. 1385 304 1 2006-02-15 10:09:17
  12040. 1386 304 1 2006-02-15 10:09:17
  12041. 1387 304 1 2006-02-15 10:09:17
  12042. 1388 304 2 2006-02-15 10:09:17
  12043. 1389 304 2 2006-02-15 10:09:17
  12044. 1390 305 1 2006-02-15 10:09:17
  12045. 1391 305 1 2006-02-15 10:09:17
  12046. 1392 305 1 2006-02-15 10:09:17
  12047. 1393 305 1 2006-02-15 10:09:17
  12048. 1394 305 2 2006-02-15 10:09:17
  12049. 1395 305 2 2006-02-15 10:09:17
  12050. 1396 305 2 2006-02-15 10:09:17
  12051. 1397 306 1 2006-02-15 10:09:17
  12052. 1398 306 1 2006-02-15 10:09:17
  12053. 1399 306 1 2006-02-15 10:09:17
  12054. 1400 307 1 2006-02-15 10:09:17
  12055. 1401 307 1 2006-02-15 10:09:17
  12056. 1402 307 1 2006-02-15 10:09:17
  12057. 1403 307 2 2006-02-15 10:09:17
  12058. 1404 307 2 2006-02-15 10:09:17
  12059. 1405 307 2 2006-02-15 10:09:17
  12060. 1406 308 1 2006-02-15 10:09:17
  12061. 1407 308 1 2006-02-15 10:09:17
  12062. 1408 308 2 2006-02-15 10:09:17
  12063. 1409 308 2 2006-02-15 10:09:17
  12064. 1410 309 1 2006-02-15 10:09:17
  12065. 1411 309 1 2006-02-15 10:09:17
  12066. 1412 309 2 2006-02-15 10:09:17
  12067. 1413 309 2 2006-02-15 10:09:17
  12068. 1414 309 2 2006-02-15 10:09:17
  12069. 1415 309 2 2006-02-15 10:09:17
  12070. 1416 310 1 2006-02-15 10:09:17
  12071. 1417 310 1 2006-02-15 10:09:17
  12072. 1418 311 1 2006-02-15 10:09:17
  12073. 1419 311 1 2006-02-15 10:09:17
  12074. 1420 311 1 2006-02-15 10:09:17
  12075. 1421 311 2 2006-02-15 10:09:17
  12076. 1422 311 2 2006-02-15 10:09:17
  12077. 1423 311 2 2006-02-15 10:09:17
  12078. 1424 311 2 2006-02-15 10:09:17
  12079. 1425 312 2 2006-02-15 10:09:17
  12080. 1426 312 2 2006-02-15 10:09:17
  12081. 1427 312 2 2006-02-15 10:09:17
  12082. 1428 313 1 2006-02-15 10:09:17
  12083. 1429 313 1 2006-02-15 10:09:17
  12084. 1430 313 1 2006-02-15 10:09:17
  12085. 1431 313 1 2006-02-15 10:09:17
  12086. 1432 313 2 2006-02-15 10:09:17
  12087. 1433 313 2 2006-02-15 10:09:17
  12088. 1434 314 1 2006-02-15 10:09:17
  12089. 1435 314 1 2006-02-15 10:09:17
  12090. 1436 314 2 2006-02-15 10:09:17
  12091. 1437 314 2 2006-02-15 10:09:17
  12092. 1438 314 2 2006-02-15 10:09:17
  12093. 1439 314 2 2006-02-15 10:09:17
  12094. 1440 315 2 2006-02-15 10:09:17
  12095. 1441 315 2 2006-02-15 10:09:17
  12096. 1442 315 2 2006-02-15 10:09:17
  12097. 1443 316 2 2006-02-15 10:09:17
  12098. 1444 316 2 2006-02-15 10:09:17
  12099. 1445 317 1 2006-02-15 10:09:17
  12100. 1446 317 1 2006-02-15 10:09:17
  12101. 1447 317 1 2006-02-15 10:09:17
  12102. 1448 317 1 2006-02-15 10:09:17
  12103. 1449 317 2 2006-02-15 10:09:17
  12104. 1450 317 2 2006-02-15 10:09:17
  12105. 1451 317 2 2006-02-15 10:09:17
  12106. 1452 319 1 2006-02-15 10:09:17
  12107. 1453 319 1 2006-02-15 10:09:17
  12108. 1454 319 1 2006-02-15 10:09:17
  12109. 1455 319 2 2006-02-15 10:09:17
  12110. 1456 319 2 2006-02-15 10:09:17
  12111. 1457 319 2 2006-02-15 10:09:17
  12112. 1458 319 2 2006-02-15 10:09:17
  12113. 1459 320 1 2006-02-15 10:09:17
  12114. 1460 320 1 2006-02-15 10:09:17
  12115. 1461 320 1 2006-02-15 10:09:17
  12116. 1462 320 2 2006-02-15 10:09:17
  12117. 1463 320 2 2006-02-15 10:09:17
  12118. 1464 320 2 2006-02-15 10:09:17
  12119. 1465 320 2 2006-02-15 10:09:17
  12120. 1466 321 1 2006-02-15 10:09:17
  12121. 1467 321 1 2006-02-15 10:09:17
  12122. 1468 321 1 2006-02-15 10:09:17
  12123. 1469 321 1 2006-02-15 10:09:17
  12124. 1470 322 1 2006-02-15 10:09:17
  12125. 1471 322 1 2006-02-15 10:09:17
  12126. 1472 322 1 2006-02-15 10:09:17
  12127. 1473 322 1 2006-02-15 10:09:17
  12128. 1474 322 2 2006-02-15 10:09:17
  12129. 1475 322 2 2006-02-15 10:09:17
  12130. 1476 323 2 2006-02-15 10:09:17
  12131. 1477 323 2 2006-02-15 10:09:17
  12132. 1478 323 2 2006-02-15 10:09:17
  12133. 1479 323 2 2006-02-15 10:09:17
  12134. 1480 324 1 2006-02-15 10:09:17
  12135. 1481 324 1 2006-02-15 10:09:17
  12136. 1482 324 1 2006-02-15 10:09:17
  12137. 1483 324 2 2006-02-15 10:09:17
  12138. 1484 324 2 2006-02-15 10:09:17
  12139. 1485 326 1 2006-02-15 10:09:17
  12140. 1486 326 1 2006-02-15 10:09:17
  12141. 1487 326 2 2006-02-15 10:09:17
  12142. 1488 326 2 2006-02-15 10:09:17
  12143. 1489 326 2 2006-02-15 10:09:17
  12144. 1490 326 2 2006-02-15 10:09:17
  12145. 1491 327 1 2006-02-15 10:09:17
  12146. 1492 327 1 2006-02-15 10:09:17
  12147. 1493 327 1 2006-02-15 10:09:17
  12148. 1494 327 1 2006-02-15 10:09:17
  12149. 1495 327 2 2006-02-15 10:09:17
  12150. 1496 327 2 2006-02-15 10:09:17
  12151. 1497 328 2 2006-02-15 10:09:17
  12152. 1498 328 2 2006-02-15 10:09:17
  12153. 1499 328 2 2006-02-15 10:09:17
  12154. 1500 328 2 2006-02-15 10:09:17
  12155. 1501 329 1 2006-02-15 10:09:17
  12156. 1502 329 1 2006-02-15 10:09:17
  12157. 1503 329 1 2006-02-15 10:09:17
  12158. 1504 329 2 2006-02-15 10:09:17
  12159. 1505 329 2 2006-02-15 10:09:17
  12160. 1506 329 2 2006-02-15 10:09:17
  12161. 1507 330 1 2006-02-15 10:09:17
  12162. 1508 330 1 2006-02-15 10:09:17
  12163. 1509 330 1 2006-02-15 10:09:17
  12164. 1510 330 1 2006-02-15 10:09:17
  12165. 1511 330 2 2006-02-15 10:09:17
  12166. 1512 330 2 2006-02-15 10:09:17
  12167. 1513 330 2 2006-02-15 10:09:17
  12168. 1514 331 1 2006-02-15 10:09:17
  12169. 1515 331 1 2006-02-15 10:09:17
  12170. 1516 331 1 2006-02-15 10:09:17
  12171. 1517 331 1 2006-02-15 10:09:17
  12172. 1518 331 2 2006-02-15 10:09:17
  12173. 1519 331 2 2006-02-15 10:09:17
  12174. 1520 331 2 2006-02-15 10:09:17
  12175. 1521 331 2 2006-02-15 10:09:17
  12176. 1522 333 1 2006-02-15 10:09:17
  12177. 1523 333 1 2006-02-15 10:09:17
  12178. 1524 333 2 2006-02-15 10:09:17
  12179. 1525 333 2 2006-02-15 10:09:17
  12180. 1526 334 1 2006-02-15 10:09:17
  12181. 1527 334 1 2006-02-15 10:09:17
  12182. 1528 334 2 2006-02-15 10:09:17
  12183. 1529 334 2 2006-02-15 10:09:17
  12184. 1530 334 2 2006-02-15 10:09:17
  12185. 1531 334 2 2006-02-15 10:09:17
  12186. 1532 335 1 2006-02-15 10:09:17
  12187. 1533 335 1 2006-02-15 10:09:17
  12188. 1534 336 1 2006-02-15 10:09:17
  12189. 1535 336 1 2006-02-15 10:09:17
  12190. 1536 336 1 2006-02-15 10:09:17
  12191. 1537 336 2 2006-02-15 10:09:17
  12192. 1538 336 2 2006-02-15 10:09:17
  12193. 1539 337 1 2006-02-15 10:09:17
  12194. 1540 337 1 2006-02-15 10:09:17
  12195. 1541 337 2 2006-02-15 10:09:17
  12196. 1542 337 2 2006-02-15 10:09:17
  12197. 1543 338 2 2006-02-15 10:09:17
  12198. 1544 338 2 2006-02-15 10:09:17
  12199. 1545 338 2 2006-02-15 10:09:17
  12200. 1546 339 2 2006-02-15 10:09:17
  12201. 1547 339 2 2006-02-15 10:09:17
  12202. 1548 339 2 2006-02-15 10:09:17
  12203. 1549 340 1 2006-02-15 10:09:17
  12204. 1550 340 1 2006-02-15 10:09:17
  12205. 1551 341 1 2006-02-15 10:09:17
  12206. 1552 341 1 2006-02-15 10:09:17
  12207. 1553 341 1 2006-02-15 10:09:17
  12208. 1554 341 1 2006-02-15 10:09:17
  12209. 1555 341 2 2006-02-15 10:09:17
  12210. 1556 341 2 2006-02-15 10:09:17
  12211. 1557 341 2 2006-02-15 10:09:17
  12212. 1558 341 2 2006-02-15 10:09:17
  12213. 1559 342 1 2006-02-15 10:09:17
  12214. 1560 342 1 2006-02-15 10:09:17
  12215. 1561 342 1 2006-02-15 10:09:17
  12216. 1562 342 1 2006-02-15 10:09:17
  12217. 1563 343 1 2006-02-15 10:09:17
  12218. 1564 343 1 2006-02-15 10:09:17
  12219. 1565 344 1 2006-02-15 10:09:17
  12220. 1566 344 1 2006-02-15 10:09:17
  12221. 1567 344 1 2006-02-15 10:09:17
  12222. 1568 344 2 2006-02-15 10:09:17
  12223. 1569 344 2 2006-02-15 10:09:17
  12224. 1570 345 1 2006-02-15 10:09:17
  12225. 1571 345 1 2006-02-15 10:09:17
  12226. 1572 345 1 2006-02-15 10:09:17
  12227. 1573 345 2 2006-02-15 10:09:17
  12228. 1574 345 2 2006-02-15 10:09:17
  12229. 1575 346 1 2006-02-15 10:09:17
  12230. 1576 346 1 2006-02-15 10:09:17
  12231. 1577 346 2 2006-02-15 10:09:17
  12232. 1578 346 2 2006-02-15 10:09:17
  12233. 1579 346 2 2006-02-15 10:09:17
  12234. 1580 346 2 2006-02-15 10:09:17
  12235. 1581 347 1 2006-02-15 10:09:17
  12236. 1582 347 1 2006-02-15 10:09:17
  12237. 1583 347 1 2006-02-15 10:09:17
  12238. 1584 347 1 2006-02-15 10:09:17
  12239. 1585 348 2 2006-02-15 10:09:17
  12240. 1586 348 2 2006-02-15 10:09:17
  12241. 1587 348 2 2006-02-15 10:09:17
  12242. 1588 348 2 2006-02-15 10:09:17
  12243. 1589 349 1 2006-02-15 10:09:17
  12244. 1590 349 1 2006-02-15 10:09:17
  12245. 1591 349 1 2006-02-15 10:09:17
  12246. 1592 349 1 2006-02-15 10:09:17
  12247. 1593 349 2 2006-02-15 10:09:17
  12248. 1594 349 2 2006-02-15 10:09:17
  12249. 1595 349 2 2006-02-15 10:09:17
  12250. 1596 350 1 2006-02-15 10:09:17
  12251. 1597 350 1 2006-02-15 10:09:17
  12252. 1598 350 1 2006-02-15 10:09:17
  12253. 1599 350 1 2006-02-15 10:09:17
  12254. 1600 350 2 2006-02-15 10:09:17
  12255. 1601 350 2 2006-02-15 10:09:17
  12256. 1602 350 2 2006-02-15 10:09:17
  12257. 1603 350 2 2006-02-15 10:09:17
  12258. 1604 351 1 2006-02-15 10:09:17
  12259. 1605 351 1 2006-02-15 10:09:17
  12260. 1606 351 1 2006-02-15 10:09:17
  12261. 1607 351 2 2006-02-15 10:09:17
  12262. 1608 351 2 2006-02-15 10:09:17
  12263. 1609 351 2 2006-02-15 10:09:17
  12264. 1610 352 2 2006-02-15 10:09:17
  12265. 1611 352 2 2006-02-15 10:09:17
  12266. 1612 352 2 2006-02-15 10:09:17
  12267. 1613 352 2 2006-02-15 10:09:17
  12268. 1614 353 1 2006-02-15 10:09:17
  12269. 1615 353 1 2006-02-15 10:09:17
  12270. 1616 353 2 2006-02-15 10:09:17
  12271. 1617 353 2 2006-02-15 10:09:17
  12272. 1618 353 2 2006-02-15 10:09:17
  12273. 1619 353 2 2006-02-15 10:09:17
  12274. 1620 354 1 2006-02-15 10:09:17
  12275. 1621 354 1 2006-02-15 10:09:17
  12276. 1622 354 1 2006-02-15 10:09:17
  12277. 1623 354 2 2006-02-15 10:09:17
  12278. 1624 354 2 2006-02-15 10:09:17
  12279. 1625 355 2 2006-02-15 10:09:17
  12280. 1626 355 2 2006-02-15 10:09:17
  12281. 1627 356 1 2006-02-15 10:09:17
  12282. 1628 356 1 2006-02-15 10:09:17
  12283. 1629 356 1 2006-02-15 10:09:17
  12284. 1630 356 1 2006-02-15 10:09:17
  12285. 1631 356 2 2006-02-15 10:09:17
  12286. 1632 356 2 2006-02-15 10:09:17
  12287. 1633 356 2 2006-02-15 10:09:17
  12288. 1634 356 2 2006-02-15 10:09:17
  12289. 1635 357 2 2006-02-15 10:09:17
  12290. 1636 357 2 2006-02-15 10:09:17
  12291. 1637 357 2 2006-02-15 10:09:17
  12292. 1638 357 2 2006-02-15 10:09:17
  12293. 1639 358 1 2006-02-15 10:09:17
  12294. 1640 358 1 2006-02-15 10:09:17
  12295. 1641 358 1 2006-02-15 10:09:17
  12296. 1642 358 1 2006-02-15 10:09:17
  12297. 1643 358 2 2006-02-15 10:09:17
  12298. 1644 358 2 2006-02-15 10:09:17
  12299. 1645 358 2 2006-02-15 10:09:17
  12300. 1646 358 2 2006-02-15 10:09:17
  12301. 1647 360 1 2006-02-15 10:09:17
  12302. 1648 360 1 2006-02-15 10:09:17
  12303. 1649 360 1 2006-02-15 10:09:17
  12304. 1650 360 1 2006-02-15 10:09:17
  12305. 1651 361 1 2006-02-15 10:09:17
  12306. 1652 361 1 2006-02-15 10:09:17
  12307. 1653 361 1 2006-02-15 10:09:17
  12308. 1654 361 1 2006-02-15 10:09:17
  12309. 1655 361 2 2006-02-15 10:09:17
  12310. 1656 361 2 2006-02-15 10:09:17
  12311. 1657 361 2 2006-02-15 10:09:17
  12312. 1658 361 2 2006-02-15 10:09:17
  12313. 1659 362 1 2006-02-15 10:09:17
  12314. 1660 362 1 2006-02-15 10:09:17
  12315. 1661 363 1 2006-02-15 10:09:17
  12316. 1662 363 1 2006-02-15 10:09:17
  12317. 1663 363 1 2006-02-15 10:09:17
  12318. 1664 363 2 2006-02-15 10:09:17
  12319. 1665 363 2 2006-02-15 10:09:17
  12320. 1666 363 2 2006-02-15 10:09:17
  12321. 1667 364 1 2006-02-15 10:09:17
  12322. 1668 364 1 2006-02-15 10:09:17
  12323. 1669 364 1 2006-02-15 10:09:17
  12324. 1670 365 1 2006-02-15 10:09:17
  12325. 1671 365 1 2006-02-15 10:09:17
  12326. 1672 365 2 2006-02-15 10:09:17
  12327. 1673 365 2 2006-02-15 10:09:17
  12328. 1674 366 1 2006-02-15 10:09:17
  12329. 1675 366 1 2006-02-15 10:09:17
  12330. 1676 366 1 2006-02-15 10:09:17
  12331. 1677 366 1 2006-02-15 10:09:17
  12332. 1678 366 2 2006-02-15 10:09:17
  12333. 1679 366 2 2006-02-15 10:09:17
  12334. 1680 366 2 2006-02-15 10:09:17
  12335. 1681 367 1 2006-02-15 10:09:17
  12336. 1682 367 1 2006-02-15 10:09:17
  12337. 1683 367 1 2006-02-15 10:09:17
  12338. 1684 367 1 2006-02-15 10:09:17
  12339. 1685 367 2 2006-02-15 10:09:17
  12340. 1686 367 2 2006-02-15 10:09:17
  12341. 1687 367 2 2006-02-15 10:09:17
  12342. 1688 368 1 2006-02-15 10:09:17
  12343. 1689 368 1 2006-02-15 10:09:17
  12344. 1690 369 1 2006-02-15 10:09:17
  12345. 1691 369 1 2006-02-15 10:09:17
  12346. 1692 369 1 2006-02-15 10:09:17
  12347. 1693 369 1 2006-02-15 10:09:17
  12348. 1694 369 2 2006-02-15 10:09:17
  12349. 1695 369 2 2006-02-15 10:09:17
  12350. 1696 369 2 2006-02-15 10:09:17
  12351. 1697 369 2 2006-02-15 10:09:17
  12352. 1698 370 1 2006-02-15 10:09:17
  12353. 1699 370 1 2006-02-15 10:09:17
  12354. 1700 370 1 2006-02-15 10:09:17
  12355. 1701 370 2 2006-02-15 10:09:17
  12356. 1702 370 2 2006-02-15 10:09:17
  12357. 1703 371 1 2006-02-15 10:09:17
  12358. 1704 371 1 2006-02-15 10:09:17
  12359. 1705 371 1 2006-02-15 10:09:17
  12360. 1706 372 1 2006-02-15 10:09:17
  12361. 1707 372 1 2006-02-15 10:09:17
  12362. 1708 373 1 2006-02-15 10:09:17
  12363. 1709 373 1 2006-02-15 10:09:17
  12364. 1710 373 1 2006-02-15 10:09:17
  12365. 1711 373 2 2006-02-15 10:09:17
  12366. 1712 373 2 2006-02-15 10:09:17
  12367. 1713 374 1 2006-02-15 10:09:17
  12368. 1714 374 1 2006-02-15 10:09:17
  12369. 1715 374 1 2006-02-15 10:09:17
  12370. 1716 374 2 2006-02-15 10:09:17
  12371. 1717 374 2 2006-02-15 10:09:17
  12372. 1718 374 2 2006-02-15 10:09:17
  12373. 1719 374 2 2006-02-15 10:09:17
  12374. 1720 375 1 2006-02-15 10:09:17
  12375. 1721 375 1 2006-02-15 10:09:17
  12376. 1722 376 1 2006-02-15 10:09:17
  12377. 1723 376 1 2006-02-15 10:09:17
  12378. 1724 376 1 2006-02-15 10:09:17
  12379. 1725 376 1 2006-02-15 10:09:17
  12380. 1726 376 2 2006-02-15 10:09:17
  12381. 1727 376 2 2006-02-15 10:09:17
  12382. 1728 376 2 2006-02-15 10:09:17
  12383. 1729 377 1 2006-02-15 10:09:17
  12384. 1730 377 1 2006-02-15 10:09:17
  12385. 1731 377 1 2006-02-15 10:09:17
  12386. 1732 377 2 2006-02-15 10:09:17
  12387. 1733 377 2 2006-02-15 10:09:17
  12388. 1734 377 2 2006-02-15 10:09:17
  12389. 1735 378 1 2006-02-15 10:09:17
  12390. 1736 378 1 2006-02-15 10:09:17
  12391. 1737 378 1 2006-02-15 10:09:17
  12392. 1738 378 1 2006-02-15 10:09:17
  12393. 1739 378 2 2006-02-15 10:09:17
  12394. 1740 378 2 2006-02-15 10:09:17
  12395. 1741 378 2 2006-02-15 10:09:17
  12396. 1742 378 2 2006-02-15 10:09:17
  12397. 1743 379 2 2006-02-15 10:09:17
  12398. 1744 379 2 2006-02-15 10:09:17
  12399. 1745 379 2 2006-02-15 10:09:17
  12400. 1746 379 2 2006-02-15 10:09:17
  12401. 1747 380 1 2006-02-15 10:09:17
  12402. 1748 380 1 2006-02-15 10:09:17
  12403. 1749 380 2 2006-02-15 10:09:17
  12404. 1750 380 2 2006-02-15 10:09:17
  12405. 1751 380 2 2006-02-15 10:09:17
  12406. 1752 381 1 2006-02-15 10:09:17
  12407. 1753 381 1 2006-02-15 10:09:17
  12408. 1754 381 2 2006-02-15 10:09:17
  12409. 1755 381 2 2006-02-15 10:09:17
  12410. 1756 381 2 2006-02-15 10:09:17
  12411. 1757 382 1 2006-02-15 10:09:17
  12412. 1758 382 1 2006-02-15 10:09:17
  12413. 1759 382 1 2006-02-15 10:09:17
  12414. 1760 382 1 2006-02-15 10:09:17
  12415. 1761 382 2 2006-02-15 10:09:17
  12416. 1762 382 2 2006-02-15 10:09:17
  12417. 1763 382 2 2006-02-15 10:09:17
  12418. 1764 382 2 2006-02-15 10:09:17
  12419. 1765 383 1 2006-02-15 10:09:17
  12420. 1766 383 1 2006-02-15 10:09:17
  12421. 1767 383 1 2006-02-15 10:09:17
  12422. 1768 383 2 2006-02-15 10:09:17
  12423. 1769 383 2 2006-02-15 10:09:17
  12424. 1770 384 2 2006-02-15 10:09:17
  12425. 1771 384 2 2006-02-15 10:09:17
  12426. 1772 384 2 2006-02-15 10:09:17
  12427. 1773 385 1 2006-02-15 10:09:17
  12428. 1774 385 1 2006-02-15 10:09:17
  12429. 1775 385 2 2006-02-15 10:09:17
  12430. 1776 385 2 2006-02-15 10:09:17
  12431. 1777 385 2 2006-02-15 10:09:17
  12432. 1778 387 1 2006-02-15 10:09:17
  12433. 1779 387 1 2006-02-15 10:09:17
  12434. 1780 387 1 2006-02-15 10:09:17
  12435. 1781 387 2 2006-02-15 10:09:17
  12436. 1782 387 2 2006-02-15 10:09:17
  12437. 1783 387 2 2006-02-15 10:09:17
  12438. 1784 388 1 2006-02-15 10:09:17
  12439. 1785 388 1 2006-02-15 10:09:17
  12440. 1786 388 1 2006-02-15 10:09:17
  12441. 1787 388 2 2006-02-15 10:09:17
  12442. 1788 388 2 2006-02-15 10:09:17
  12443. 1789 388 2 2006-02-15 10:09:17
  12444. 1790 389 1 2006-02-15 10:09:17
  12445. 1791 389 1 2006-02-15 10:09:17
  12446. 1792 389 2 2006-02-15 10:09:17
  12447. 1793 389 2 2006-02-15 10:09:17
  12448. 1794 390 1 2006-02-15 10:09:17
  12449. 1795 390 1 2006-02-15 10:09:17
  12450. 1796 390 1 2006-02-15 10:09:17
  12451. 1797 391 1 2006-02-15 10:09:17
  12452. 1798 391 1 2006-02-15 10:09:17
  12453. 1799 391 1 2006-02-15 10:09:17
  12454. 1800 391 1 2006-02-15 10:09:17
  12455. 1801 391 2 2006-02-15 10:09:17
  12456. 1802 391 2 2006-02-15 10:09:17
  12457. 1803 391 2 2006-02-15 10:09:17
  12458. 1804 392 1 2006-02-15 10:09:17
  12459. 1805 392 1 2006-02-15 10:09:17
  12460. 1806 392 1 2006-02-15 10:09:17
  12461. 1807 392 1 2006-02-15 10:09:17
  12462. 1808 392 2 2006-02-15 10:09:17
  12463. 1809 392 2 2006-02-15 10:09:17
  12464. 1810 393 1 2006-02-15 10:09:17
  12465. 1811 393 1 2006-02-15 10:09:17
  12466. 1812 394 1 2006-02-15 10:09:17
  12467. 1813 394 1 2006-02-15 10:09:17
  12468. 1814 394 1 2006-02-15 10:09:17
  12469. 1815 394 1 2006-02-15 10:09:17
  12470. 1816 395 1 2006-02-15 10:09:17
  12471. 1817 395 1 2006-02-15 10:09:17
  12472. 1818 395 1 2006-02-15 10:09:17
  12473. 1819 395 2 2006-02-15 10:09:17
  12474. 1820 395 2 2006-02-15 10:09:17
  12475. 1821 395 2 2006-02-15 10:09:17
  12476. 1822 396 2 2006-02-15 10:09:17
  12477. 1823 396 2 2006-02-15 10:09:17
  12478. 1824 396 2 2006-02-15 10:09:17
  12479. 1825 396 2 2006-02-15 10:09:17
  12480. 1826 397 1 2006-02-15 10:09:17
  12481. 1827 397 1 2006-02-15 10:09:17
  12482. 1828 397 1 2006-02-15 10:09:17
  12483. 1829 397 2 2006-02-15 10:09:17
  12484. 1830 397 2 2006-02-15 10:09:17
  12485. 1831 397 2 2006-02-15 10:09:17
  12486. 1832 397 2 2006-02-15 10:09:17
  12487. 1833 398 2 2006-02-15 10:09:17
  12488. 1834 398 2 2006-02-15 10:09:17
  12489. 1835 398 2 2006-02-15 10:09:17
  12490. 1836 398 2 2006-02-15 10:09:17
  12491. 1837 399 2 2006-02-15 10:09:17
  12492. 1838 399 2 2006-02-15 10:09:17
  12493. 1839 400 1 2006-02-15 10:09:17
  12494. 1840 400 1 2006-02-15 10:09:17
  12495. 1841 401 1 2006-02-15 10:09:17
  12496. 1842 401 1 2006-02-15 10:09:17
  12497. 1843 402 1 2006-02-15 10:09:17
  12498. 1844 402 1 2006-02-15 10:09:17
  12499. 1845 402 1 2006-02-15 10:09:17
  12500. 1846 402 2 2006-02-15 10:09:17
  12501. 1847 402 2 2006-02-15 10:09:17
  12502. 1848 402 2 2006-02-15 10:09:17
  12503. 1849 403 1 2006-02-15 10:09:17
  12504. 1850 403 1 2006-02-15 10:09:17
  12505. 1851 403 1 2006-02-15 10:09:17
  12506. 1852 403 1 2006-02-15 10:09:17
  12507. 1853 403 2 2006-02-15 10:09:17
  12508. 1854 403 2 2006-02-15 10:09:17
  12509. 1855 403 2 2006-02-15 10:09:17
  12510. 1856 403 2 2006-02-15 10:09:17
  12511. 1857 405 2 2006-02-15 10:09:17
  12512. 1858 405 2 2006-02-15 10:09:17
  12513. 1859 406 1 2006-02-15 10:09:17
  12514. 1860 406 1 2006-02-15 10:09:17
  12515. 1861 406 2 2006-02-15 10:09:17
  12516. 1862 406 2 2006-02-15 10:09:17
  12517. 1863 406 2 2006-02-15 10:09:17
  12518. 1864 406 2 2006-02-15 10:09:17
  12519. 1865 407 1 2006-02-15 10:09:17
  12520. 1866 407 1 2006-02-15 10:09:17
  12521. 1867 408 1 2006-02-15 10:09:17
  12522. 1868 408 1 2006-02-15 10:09:17
  12523. 1869 408 1 2006-02-15 10:09:17
  12524. 1870 408 1 2006-02-15 10:09:17
  12525. 1871 408 2 2006-02-15 10:09:17
  12526. 1872 408 2 2006-02-15 10:09:17
  12527. 1873 408 2 2006-02-15 10:09:17
  12528. 1874 409 1 2006-02-15 10:09:17
  12529. 1875 409 1 2006-02-15 10:09:17
  12530. 1876 409 1 2006-02-15 10:09:17
  12531. 1877 409 1 2006-02-15 10:09:17
  12532. 1878 409 2 2006-02-15 10:09:17
  12533. 1879 409 2 2006-02-15 10:09:17
  12534. 1880 409 2 2006-02-15 10:09:17
  12535. 1881 410 1 2006-02-15 10:09:17
  12536. 1882 410 1 2006-02-15 10:09:17
  12537. 1883 410 1 2006-02-15 10:09:17
  12538. 1884 410 2 2006-02-15 10:09:17
  12539. 1885 410 2 2006-02-15 10:09:17
  12540. 1886 411 1 2006-02-15 10:09:17
  12541. 1887 411 1 2006-02-15 10:09:17
  12542. 1888 412 1 2006-02-15 10:09:17
  12543. 1889 412 1 2006-02-15 10:09:17
  12544. 1890 412 1 2006-02-15 10:09:17
  12545. 1891 412 1 2006-02-15 10:09:17
  12546. 1892 412 2 2006-02-15 10:09:17
  12547. 1893 412 2 2006-02-15 10:09:17
  12548. 1894 412 2 2006-02-15 10:09:17
  12549. 1895 412 2 2006-02-15 10:09:17
  12550. 1896 413 1 2006-02-15 10:09:17
  12551. 1897 413 1 2006-02-15 10:09:17
  12552. 1898 413 1 2006-02-15 10:09:17
  12553. 1899 414 1 2006-02-15 10:09:17
  12554. 1900 414 1 2006-02-15 10:09:17
  12555. 1901 414 1 2006-02-15 10:09:17
  12556. 1902 414 2 2006-02-15 10:09:17
  12557. 1903 414 2 2006-02-15 10:09:17
  12558. 1904 414 2 2006-02-15 10:09:17
  12559. 1905 415 1 2006-02-15 10:09:17
  12560. 1906 415 1 2006-02-15 10:09:17
  12561. 1907 415 1 2006-02-15 10:09:17
  12562. 1908 415 2 2006-02-15 10:09:17
  12563. 1909 415 2 2006-02-15 10:09:17
  12564. 1910 415 2 2006-02-15 10:09:17
  12565. 1911 416 1 2006-02-15 10:09:17
  12566. 1912 416 1 2006-02-15 10:09:17
  12567. 1913 416 2 2006-02-15 10:09:17
  12568. 1914 416 2 2006-02-15 10:09:17
  12569. 1915 416 2 2006-02-15 10:09:17
  12570. 1916 416 2 2006-02-15 10:09:17
  12571. 1917 417 1 2006-02-15 10:09:17
  12572. 1918 417 1 2006-02-15 10:09:17
  12573. 1919 417 1 2006-02-15 10:09:17
  12574. 1920 417 1 2006-02-15 10:09:17
  12575. 1921 417 2 2006-02-15 10:09:17
  12576. 1922 417 2 2006-02-15 10:09:17
  12577. 1923 418 1 2006-02-15 10:09:17
  12578. 1924 418 1 2006-02-15 10:09:17
  12579. 1925 418 1 2006-02-15 10:09:17
  12580. 1926 418 1 2006-02-15 10:09:17
  12581. 1927 418 2 2006-02-15 10:09:17
  12582. 1928 418 2 2006-02-15 10:09:17
  12583. 1929 418 2 2006-02-15 10:09:17
  12584. 1930 418 2 2006-02-15 10:09:17
  12585. 1931 420 1 2006-02-15 10:09:17
  12586. 1932 420 1 2006-02-15 10:09:17
  12587. 1933 420 2 2006-02-15 10:09:17
  12588. 1934 420 2 2006-02-15 10:09:17
  12589. 1935 420 2 2006-02-15 10:09:17
  12590. 1936 421 2 2006-02-15 10:09:17
  12591. 1937 421 2 2006-02-15 10:09:17
  12592. 1938 421 2 2006-02-15 10:09:17
  12593. 1939 421 2 2006-02-15 10:09:17
  12594. 1940 422 2 2006-02-15 10:09:17
  12595. 1941 422 2 2006-02-15 10:09:17
  12596. 1942 423 1 2006-02-15 10:09:17
  12597. 1943 423 1 2006-02-15 10:09:17
  12598. 1944 423 2 2006-02-15 10:09:17
  12599. 1945 423 2 2006-02-15 10:09:17
  12600. 1946 424 1 2006-02-15 10:09:17
  12601. 1947 424 1 2006-02-15 10:09:17
  12602. 1948 424 1 2006-02-15 10:09:17
  12603. 1949 424 2 2006-02-15 10:09:17
  12604. 1950 424 2 2006-02-15 10:09:17
  12605. 1951 425 2 2006-02-15 10:09:17
  12606. 1952 425 2 2006-02-15 10:09:17
  12607. 1953 426 2 2006-02-15 10:09:17
  12608. 1954 426 2 2006-02-15 10:09:17
  12609. 1955 426 2 2006-02-15 10:09:17
  12610. 1956 427 1 2006-02-15 10:09:17
  12611. 1957 427 1 2006-02-15 10:09:17
  12612. 1958 427 1 2006-02-15 10:09:17
  12613. 1959 427 1 2006-02-15 10:09:17
  12614. 1960 428 1 2006-02-15 10:09:17
  12615. 1961 428 1 2006-02-15 10:09:17
  12616. 1962 428 1 2006-02-15 10:09:17
  12617. 1963 428 1 2006-02-15 10:09:17
  12618. 1964 428 2 2006-02-15 10:09:17
  12619. 1965 428 2 2006-02-15 10:09:17
  12620. 1966 429 1 2006-02-15 10:09:17
  12621. 1967 429 1 2006-02-15 10:09:17
  12622. 1968 429 2 2006-02-15 10:09:17
  12623. 1969 429 2 2006-02-15 10:09:17
  12624. 1970 429 2 2006-02-15 10:09:17
  12625. 1971 429 2 2006-02-15 10:09:17
  12626. 1972 430 2 2006-02-15 10:09:17
  12627. 1973 430 2 2006-02-15 10:09:17
  12628. 1974 430 2 2006-02-15 10:09:17
  12629. 1975 430 2 2006-02-15 10:09:17
  12630. 1976 431 2 2006-02-15 10:09:17
  12631. 1977 431 2 2006-02-15 10:09:17
  12632. 1978 431 2 2006-02-15 10:09:17
  12633. 1979 432 1 2006-02-15 10:09:17
  12634. 1980 432 1 2006-02-15 10:09:17
  12635. 1981 432 1 2006-02-15 10:09:17
  12636. 1982 432 2 2006-02-15 10:09:17
  12637. 1983 432 2 2006-02-15 10:09:17
  12638. 1984 433 1 2006-02-15 10:09:17
  12639. 1985 433 1 2006-02-15 10:09:17
  12640. 1986 433 1 2006-02-15 10:09:17
  12641. 1987 433 1 2006-02-15 10:09:17
  12642. 1988 433 2 2006-02-15 10:09:17
  12643. 1989 433 2 2006-02-15 10:09:17
  12644. 1990 434 1 2006-02-15 10:09:17
  12645. 1991 434 1 2006-02-15 10:09:17
  12646. 1992 434 1 2006-02-15 10:09:17
  12647. 1993 434 1 2006-02-15 10:09:17
  12648. 1994 434 2 2006-02-15 10:09:17
  12649. 1995 434 2 2006-02-15 10:09:17
  12650. 1996 434 2 2006-02-15 10:09:17
  12651. 1997 434 2 2006-02-15 10:09:17
  12652. 1998 435 1 2006-02-15 10:09:17
  12653. 1999 435 1 2006-02-15 10:09:17
  12654. 2000 436 1 2006-02-15 10:09:17
  12655. 2001 436 1 2006-02-15 10:09:17
  12656. 2002 436 1 2006-02-15 10:09:17
  12657. 2003 436 2 2006-02-15 10:09:17
  12658. 2004 436 2 2006-02-15 10:09:17
  12659. 2005 436 2 2006-02-15 10:09:17
  12660. 2006 437 1 2006-02-15 10:09:17
  12661. 2007 437 1 2006-02-15 10:09:17
  12662. 2008 437 2 2006-02-15 10:09:17
  12663. 2009 437 2 2006-02-15 10:09:17
  12664. 2010 437 2 2006-02-15 10:09:17
  12665. 2011 437 2 2006-02-15 10:09:17
  12666. 2012 438 1 2006-02-15 10:09:17
  12667. 2013 438 1 2006-02-15 10:09:17
  12668. 2014 438 2 2006-02-15 10:09:17
  12669. 2015 438 2 2006-02-15 10:09:17
  12670. 2016 438 2 2006-02-15 10:09:17
  12671. 2017 439 1 2006-02-15 10:09:17
  12672. 2018 439 1 2006-02-15 10:09:17
  12673. 2019 439 1 2006-02-15 10:09:17
  12674. 2020 439 1 2006-02-15 10:09:17
  12675. 2021 439 2 2006-02-15 10:09:17
  12676. 2022 439 2 2006-02-15 10:09:17
  12677. 2023 440 1 2006-02-15 10:09:17
  12678. 2024 440 1 2006-02-15 10:09:17
  12679. 2025 440 2 2006-02-15 10:09:17
  12680. 2026 440 2 2006-02-15 10:09:17
  12681. 2027 441 1 2006-02-15 10:09:17
  12682. 2028 441 1 2006-02-15 10:09:17
  12683. 2029 442 1 2006-02-15 10:09:17
  12684. 2030 442 1 2006-02-15 10:09:17
  12685. 2031 442 1 2006-02-15 10:09:17
  12686. 2032 443 1 2006-02-15 10:09:17
  12687. 2033 443 1 2006-02-15 10:09:17
  12688. 2034 443 1 2006-02-15 10:09:17
  12689. 2035 443 2 2006-02-15 10:09:17
  12690. 2036 443 2 2006-02-15 10:09:17
  12691. 2037 443 2 2006-02-15 10:09:17
  12692. 2038 443 2 2006-02-15 10:09:17
  12693. 2039 444 1 2006-02-15 10:09:17
  12694. 2040 444 1 2006-02-15 10:09:17
  12695. 2041 444 1 2006-02-15 10:09:17
  12696. 2042 444 1 2006-02-15 10:09:17
  12697. 2043 444 2 2006-02-15 10:09:17
  12698. 2044 444 2 2006-02-15 10:09:17
  12699. 2045 444 2 2006-02-15 10:09:17
  12700. 2046 444 2 2006-02-15 10:09:17
  12701. 2047 445 1 2006-02-15 10:09:17
  12702. 2048 445 1 2006-02-15 10:09:17
  12703. 2049 445 1 2006-02-15 10:09:17
  12704. 2050 445 2 2006-02-15 10:09:17
  12705. 2051 445 2 2006-02-15 10:09:17
  12706. 2052 445 2 2006-02-15 10:09:17
  12707. 2053 446 1 2006-02-15 10:09:17
  12708. 2054 446 1 2006-02-15 10:09:17
  12709. 2055 446 2 2006-02-15 10:09:17
  12710. 2056 446 2 2006-02-15 10:09:17
  12711. 2057 447 1 2006-02-15 10:09:17
  12712. 2058 447 1 2006-02-15 10:09:17
  12713. 2059 447 1 2006-02-15 10:09:17
  12714. 2060 447 1 2006-02-15 10:09:17
  12715. 2061 447 2 2006-02-15 10:09:17
  12716. 2062 447 2 2006-02-15 10:09:17
  12717. 2063 447 2 2006-02-15 10:09:17
  12718. 2064 448 1 2006-02-15 10:09:17
  12719. 2065 448 1 2006-02-15 10:09:17
  12720. 2066 448 2 2006-02-15 10:09:17
  12721. 2067 448 2 2006-02-15 10:09:17
  12722. 2068 448 2 2006-02-15 10:09:17
  12723. 2069 449 2 2006-02-15 10:09:17
  12724. 2070 449 2 2006-02-15 10:09:17
  12725. 2071 449 2 2006-02-15 10:09:17
  12726. 2072 449 2 2006-02-15 10:09:17
  12727. 2073 450 1 2006-02-15 10:09:17
  12728. 2074 450 1 2006-02-15 10:09:17
  12729. 2075 450 1 2006-02-15 10:09:17
  12730. 2076 450 2 2006-02-15 10:09:17
  12731. 2077 450 2 2006-02-15 10:09:17
  12732. 2078 450 2 2006-02-15 10:09:17
  12733. 2079 450 2 2006-02-15 10:09:17
  12734. 2080 451 1 2006-02-15 10:09:17
  12735. 2081 451 1 2006-02-15 10:09:17
  12736. 2082 451 2 2006-02-15 10:09:17
  12737. 2083 451 2 2006-02-15 10:09:17
  12738. 2084 451 2 2006-02-15 10:09:17
  12739. 2085 452 2 2006-02-15 10:09:17
  12740. 2086 452 2 2006-02-15 10:09:17
  12741. 2087 452 2 2006-02-15 10:09:17
  12742. 2088 452 2 2006-02-15 10:09:17
  12743. 2089 453 1 2006-02-15 10:09:17
  12744. 2090 453 1 2006-02-15 10:09:17
  12745. 2091 453 1 2006-02-15 10:09:17
  12746. 2092 453 2 2006-02-15 10:09:17
  12747. 2093 453 2 2006-02-15 10:09:17
  12748. 2094 454 1 2006-02-15 10:09:17
  12749. 2095 454 1 2006-02-15 10:09:17
  12750. 2096 455 1 2006-02-15 10:09:17
  12751. 2097 455 1 2006-02-15 10:09:17
  12752. 2098 455 1 2006-02-15 10:09:17
  12753. 2099 455 1 2006-02-15 10:09:17
  12754. 2100 456 1 2006-02-15 10:09:17
  12755. 2101 456 1 2006-02-15 10:09:17
  12756. 2102 456 2 2006-02-15 10:09:17
  12757. 2103 456 2 2006-02-15 10:09:17
  12758. 2104 456 2 2006-02-15 10:09:17
  12759. 2105 456 2 2006-02-15 10:09:17
  12760. 2106 457 1 2006-02-15 10:09:17
  12761. 2107 457 1 2006-02-15 10:09:17
  12762. 2108 457 2 2006-02-15 10:09:17
  12763. 2109 457 2 2006-02-15 10:09:17
  12764. 2110 457 2 2006-02-15 10:09:17
  12765. 2111 457 2 2006-02-15 10:09:17
  12766. 2112 458 1 2006-02-15 10:09:17
  12767. 2113 458 1 2006-02-15 10:09:17
  12768. 2114 458 2 2006-02-15 10:09:17
  12769. 2115 458 2 2006-02-15 10:09:17
  12770. 2116 458 2 2006-02-15 10:09:17
  12771. 2117 458 2 2006-02-15 10:09:17
  12772. 2118 459 2 2006-02-15 10:09:17
  12773. 2119 459 2 2006-02-15 10:09:17
  12774. 2120 460 1 2006-02-15 10:09:17
  12775. 2121 460 1 2006-02-15 10:09:17
  12776. 2122 460 1 2006-02-15 10:09:17
  12777. 2123 460 1 2006-02-15 10:09:17
  12778. 2124 460 2 2006-02-15 10:09:17
  12779. 2125 460 2 2006-02-15 10:09:17
  12780. 2126 460 2 2006-02-15 10:09:17
  12781. 2127 460 2 2006-02-15 10:09:17
  12782. 2128 461 1 2006-02-15 10:09:17
  12783. 2129 461 1 2006-02-15 10:09:17
  12784. 2130 461 2 2006-02-15 10:09:17
  12785. 2131 461 2 2006-02-15 10:09:17
  12786. 2132 461 2 2006-02-15 10:09:17
  12787. 2133 461 2 2006-02-15 10:09:17
  12788. 2134 462 1 2006-02-15 10:09:17
  12789. 2135 462 1 2006-02-15 10:09:17
  12790. 2136 462 2 2006-02-15 10:09:17
  12791. 2137 462 2 2006-02-15 10:09:17
  12792. 2138 462 2 2006-02-15 10:09:17
  12793. 2139 463 1 2006-02-15 10:09:17
  12794. 2140 463 1 2006-02-15 10:09:17
  12795. 2141 463 1 2006-02-15 10:09:17
  12796. 2142 463 2 2006-02-15 10:09:17
  12797. 2143 463 2 2006-02-15 10:09:17
  12798. 2144 464 1 2006-02-15 10:09:17
  12799. 2145 464 1 2006-02-15 10:09:17
  12800. 2146 464 1 2006-02-15 10:09:17
  12801. 2147 464 1 2006-02-15 10:09:17
  12802. 2148 464 2 2006-02-15 10:09:17
  12803. 2149 464 2 2006-02-15 10:09:17
  12804. 2150 464 2 2006-02-15 10:09:17
  12805. 2151 465 1 2006-02-15 10:09:17
  12806. 2152 465 1 2006-02-15 10:09:17
  12807. 2153 465 2 2006-02-15 10:09:17
  12808. 2154 465 2 2006-02-15 10:09:17
  12809. 2155 465 2 2006-02-15 10:09:17
  12810. 2156 466 1 2006-02-15 10:09:17
  12811. 2157 466 1 2006-02-15 10:09:17
  12812. 2158 467 1 2006-02-15 10:09:17
  12813. 2159 467 1 2006-02-15 10:09:17
  12814. 2160 467 1 2006-02-15 10:09:17
  12815. 2161 467 1 2006-02-15 10:09:17
  12816. 2162 467 2 2006-02-15 10:09:17
  12817. 2163 467 2 2006-02-15 10:09:17
  12818. 2164 467 2 2006-02-15 10:09:17
  12819. 2165 468 1 2006-02-15 10:09:17
  12820. 2166 468 1 2006-02-15 10:09:17
  12821. 2167 468 1 2006-02-15 10:09:17
  12822. 2168 468 1 2006-02-15 10:09:17
  12823. 2169 468 2 2006-02-15 10:09:17
  12824. 2170 468 2 2006-02-15 10:09:17
  12825. 2171 468 2 2006-02-15 10:09:17
  12826. 2172 468 2 2006-02-15 10:09:17
  12827. 2173 469 2 2006-02-15 10:09:17
  12828. 2174 469 2 2006-02-15 10:09:17
  12829. 2175 469 2 2006-02-15 10:09:17
  12830. 2176 470 1 2006-02-15 10:09:17
  12831. 2177 470 1 2006-02-15 10:09:17
  12832. 2178 471 1 2006-02-15 10:09:17
  12833. 2179 471 1 2006-02-15 10:09:17
  12834. 2180 471 1 2006-02-15 10:09:17
  12835. 2181 471 2 2006-02-15 10:09:17
  12836. 2182 471 2 2006-02-15 10:09:17
  12837. 2183 471 2 2006-02-15 10:09:17
  12838. 2184 471 2 2006-02-15 10:09:17
  12839. 2185 472 2 2006-02-15 10:09:17
  12840. 2186 472 2 2006-02-15 10:09:17
  12841. 2187 473 1 2006-02-15 10:09:17
  12842. 2188 473 1 2006-02-15 10:09:17
  12843. 2189 473 2 2006-02-15 10:09:17
  12844. 2190 473 2 2006-02-15 10:09:17
  12845. 2191 473 2 2006-02-15 10:09:17
  12846. 2192 474 2 2006-02-15 10:09:17
  12847. 2193 474 2 2006-02-15 10:09:17
  12848. 2194 474 2 2006-02-15 10:09:17
  12849. 2195 474 2 2006-02-15 10:09:17
  12850. 2196 475 2 2006-02-15 10:09:17
  12851. 2197 475 2 2006-02-15 10:09:17
  12852. 2198 476 1 2006-02-15 10:09:17
  12853. 2199 476 1 2006-02-15 10:09:17
  12854. 2200 476 1 2006-02-15 10:09:17
  12855. 2201 476 2 2006-02-15 10:09:17
  12856. 2202 476 2 2006-02-15 10:09:17
  12857. 2203 476 2 2006-02-15 10:09:17
  12858. 2204 476 2 2006-02-15 10:09:17
  12859. 2205 477 2 2006-02-15 10:09:17
  12860. 2206 477 2 2006-02-15 10:09:17
  12861. 2207 477 2 2006-02-15 10:09:17
  12862. 2208 478 1 2006-02-15 10:09:17
  12863. 2209 478 1 2006-02-15 10:09:17
  12864. 2210 478 2 2006-02-15 10:09:17
  12865. 2211 478 2 2006-02-15 10:09:17
  12866. 2212 478 2 2006-02-15 10:09:17
  12867. 2213 479 1 2006-02-15 10:09:17
  12868. 2214 479 1 2006-02-15 10:09:17
  12869. 2215 479 2 2006-02-15 10:09:17
  12870. 2216 479 2 2006-02-15 10:09:17
  12871. 2217 479 2 2006-02-15 10:09:17
  12872. 2218 480 1 2006-02-15 10:09:17
  12873. 2219 480 1 2006-02-15 10:09:17
  12874. 2220 480 2 2006-02-15 10:09:17
  12875. 2221 480 2 2006-02-15 10:09:17
  12876. 2222 481 1 2006-02-15 10:09:17
  12877. 2223 481 1 2006-02-15 10:09:17
  12878. 2224 481 1 2006-02-15 10:09:17
  12879. 2225 481 2 2006-02-15 10:09:17
  12880. 2226 481 2 2006-02-15 10:09:17
  12881. 2227 481 2 2006-02-15 10:09:17
  12882. 2228 482 1 2006-02-15 10:09:17
  12883. 2229 482 1 2006-02-15 10:09:17
  12884. 2230 482 1 2006-02-15 10:09:17
  12885. 2231 483 1 2006-02-15 10:09:17
  12886. 2232 483 1 2006-02-15 10:09:17
  12887. 2233 483 1 2006-02-15 10:09:17
  12888. 2234 483 2 2006-02-15 10:09:17
  12889. 2235 483 2 2006-02-15 10:09:17
  12890. 2236 484 1 2006-02-15 10:09:17
  12891. 2237 484 1 2006-02-15 10:09:17
  12892. 2238 484 1 2006-02-15 10:09:17
  12893. 2239 484 1 2006-02-15 10:09:17
  12894. 2240 484 2 2006-02-15 10:09:17
  12895. 2241 484 2 2006-02-15 10:09:17
  12896. 2242 484 2 2006-02-15 10:09:17
  12897. 2243 485 2 2006-02-15 10:09:17
  12898. 2244 485 2 2006-02-15 10:09:17
  12899. 2245 485 2 2006-02-15 10:09:17
  12900. 2246 486 1 2006-02-15 10:09:17
  12901. 2247 486 1 2006-02-15 10:09:17
  12902. 2248 486 1 2006-02-15 10:09:17
  12903. 2249 486 1 2006-02-15 10:09:17
  12904. 2250 486 2 2006-02-15 10:09:17
  12905. 2251 486 2 2006-02-15 10:09:17
  12906. 2252 487 2 2006-02-15 10:09:17
  12907. 2253 487 2 2006-02-15 10:09:17
  12908. 2254 487 2 2006-02-15 10:09:17
  12909. 2255 488 1 2006-02-15 10:09:17
  12910. 2256 488 1 2006-02-15 10:09:17
  12911. 2257 488 2 2006-02-15 10:09:17
  12912. 2258 488 2 2006-02-15 10:09:17
  12913. 2259 488 2 2006-02-15 10:09:17
  12914. 2260 489 1 2006-02-15 10:09:17
  12915. 2261 489 1 2006-02-15 10:09:17
  12916. 2262 489 1 2006-02-15 10:09:17
  12917. 2263 489 1 2006-02-15 10:09:17
  12918. 2264 489 2 2006-02-15 10:09:17
  12919. 2265 489 2 2006-02-15 10:09:17
  12920. 2266 489 2 2006-02-15 10:09:17
  12921. 2267 489 2 2006-02-15 10:09:17
  12922. 2268 490 1 2006-02-15 10:09:17
  12923. 2269 490 1 2006-02-15 10:09:17
  12924. 2270 491 1 2006-02-15 10:09:17
  12925. 2271 491 1 2006-02-15 10:09:17
  12926. 2272 491 2 2006-02-15 10:09:17
  12927. 2273 491 2 2006-02-15 10:09:17
  12928. 2274 491 2 2006-02-15 10:09:17
  12929. 2275 491 2 2006-02-15 10:09:17
  12930. 2276 492 1 2006-02-15 10:09:17
  12931. 2277 492 1 2006-02-15 10:09:17
  12932. 2278 493 2 2006-02-15 10:09:17
  12933. 2279 493 2 2006-02-15 10:09:17
  12934. 2280 493 2 2006-02-15 10:09:17
  12935. 2281 494 1 2006-02-15 10:09:17
  12936. 2282 494 1 2006-02-15 10:09:17
  12937. 2283 494 1 2006-02-15 10:09:17
  12938. 2284 494 1 2006-02-15 10:09:17
  12939. 2285 494 2 2006-02-15 10:09:17
  12940. 2286 494 2 2006-02-15 10:09:17
  12941. 2287 496 1 2006-02-15 10:09:17
  12942. 2288 496 1 2006-02-15 10:09:17
  12943. 2289 496 2 2006-02-15 10:09:17
  12944. 2290 496 2 2006-02-15 10:09:17
  12945. 2291 496 2 2006-02-15 10:09:17
  12946. 2292 498 1 2006-02-15 10:09:17
  12947. 2293 498 1 2006-02-15 10:09:17
  12948. 2294 499 1 2006-02-15 10:09:17
  12949. 2295 499 1 2006-02-15 10:09:17
  12950. 2296 500 1 2006-02-15 10:09:17
  12951. 2297 500 1 2006-02-15 10:09:17
  12952. 2298 500 1 2006-02-15 10:09:17
  12953. 2299 500 1 2006-02-15 10:09:17
  12954. 2300 500 2 2006-02-15 10:09:17
  12955. 2301 500 2 2006-02-15 10:09:17
  12956. 2302 500 2 2006-02-15 10:09:17
  12957. 2303 500 2 2006-02-15 10:09:17
  12958. 2304 501 1 2006-02-15 10:09:17
  12959. 2305 501 1 2006-02-15 10:09:17
  12960. 2306 501 1 2006-02-15 10:09:17
  12961. 2307 501 2 2006-02-15 10:09:17
  12962. 2308 501 2 2006-02-15 10:09:17
  12963. 2309 502 1 2006-02-15 10:09:17
  12964. 2310 502 1 2006-02-15 10:09:17
  12965. 2311 502 1 2006-02-15 10:09:17
  12966. 2312 502 1 2006-02-15 10:09:17
  12967. 2313 502 2 2006-02-15 10:09:17
  12968. 2314 502 2 2006-02-15 10:09:17
  12969. 2315 502 2 2006-02-15 10:09:17
  12970. 2316 503 1 2006-02-15 10:09:17
  12971. 2317 503 1 2006-02-15 10:09:17
  12972. 2318 503 1 2006-02-15 10:09:17
  12973. 2319 504 1 2006-02-15 10:09:17
  12974. 2320 504 1 2006-02-15 10:09:17
  12975. 2321 504 1 2006-02-15 10:09:17
  12976. 2322 504 1 2006-02-15 10:09:17
  12977. 2323 504 2 2006-02-15 10:09:17
  12978. 2324 504 2 2006-02-15 10:09:17
  12979. 2325 505 2 2006-02-15 10:09:17
  12980. 2326 505 2 2006-02-15 10:09:17
  12981. 2327 505 2 2006-02-15 10:09:17
  12982. 2328 505 2 2006-02-15 10:09:17
  12983. 2329 506 1 2006-02-15 10:09:17
  12984. 2330 506 1 2006-02-15 10:09:17
  12985. 2331 506 1 2006-02-15 10:09:17
  12986. 2332 506 1 2006-02-15 10:09:17
  12987. 2333 506 2 2006-02-15 10:09:17
  12988. 2334 506 2 2006-02-15 10:09:17
  12989. 2335 507 2 2006-02-15 10:09:17
  12990. 2336 507 2 2006-02-15 10:09:17
  12991. 2337 508 2 2006-02-15 10:09:17
  12992. 2338 508 2 2006-02-15 10:09:17
  12993. 2339 508 2 2006-02-15 10:09:17
  12994. 2340 509 2 2006-02-15 10:09:17
  12995. 2341 509 2 2006-02-15 10:09:17
  12996. 2342 509 2 2006-02-15 10:09:17
  12997. 2343 510 1 2006-02-15 10:09:17
  12998. 2344 510 1 2006-02-15 10:09:17
  12999. 2345 510 1 2006-02-15 10:09:17
  13000. 2346 510 1 2006-02-15 10:09:17
  13001. 2347 511 1 2006-02-15 10:09:17
  13002. 2348 511 1 2006-02-15 10:09:17
  13003. 2349 511 2 2006-02-15 10:09:17
  13004. 2350 511 2 2006-02-15 10:09:17
  13005. 2351 511 2 2006-02-15 10:09:17
  13006. 2352 512 1 2006-02-15 10:09:17
  13007. 2353 512 1 2006-02-15 10:09:17
  13008. 2354 512 2 2006-02-15 10:09:17
  13009. 2355 512 2 2006-02-15 10:09:17
  13010. 2356 512 2 2006-02-15 10:09:17
  13011. 2357 512 2 2006-02-15 10:09:17
  13012. 2358 513 2 2006-02-15 10:09:17
  13013. 2359 513 2 2006-02-15 10:09:17
  13014. 2360 514 1 2006-02-15 10:09:17
  13015. 2361 514 1 2006-02-15 10:09:17
  13016. 2362 514 2 2006-02-15 10:09:17
  13017. 2363 514 2 2006-02-15 10:09:17
  13018. 2364 514 2 2006-02-15 10:09:17
  13019. 2365 514 2 2006-02-15 10:09:17
  13020. 2366 515 2 2006-02-15 10:09:17
  13021. 2367 515 2 2006-02-15 10:09:17
  13022. 2368 516 2 2006-02-15 10:09:17
  13023. 2369 516 2 2006-02-15 10:09:17
  13024. 2370 516 2 2006-02-15 10:09:17
  13025. 2371 517 2 2006-02-15 10:09:17
  13026. 2372 517 2 2006-02-15 10:09:17
  13027. 2373 518 1 2006-02-15 10:09:17
  13028. 2374 518 1 2006-02-15 10:09:17
  13029. 2375 518 2 2006-02-15 10:09:17
  13030. 2376 518 2 2006-02-15 10:09:17
  13031. 2377 518 2 2006-02-15 10:09:17
  13032. 2378 518 2 2006-02-15 10:09:17
  13033. 2379 519 2 2006-02-15 10:09:17
  13034. 2380 519 2 2006-02-15 10:09:17
  13035. 2381 519 2 2006-02-15 10:09:17
  13036. 2382 519 2 2006-02-15 10:09:17
  13037. 2383 520 1 2006-02-15 10:09:17
  13038. 2384 520 1 2006-02-15 10:09:17
  13039. 2385 521 1 2006-02-15 10:09:17
  13040. 2386 521 1 2006-02-15 10:09:17
  13041. 2387 521 1 2006-02-15 10:09:17
  13042. 2388 521 1 2006-02-15 10:09:17
  13043. 2389 521 2 2006-02-15 10:09:17
  13044. 2390 521 2 2006-02-15 10:09:17
  13045. 2391 521 2 2006-02-15 10:09:17
  13046. 2392 522 2 2006-02-15 10:09:17
  13047. 2393 522 2 2006-02-15 10:09:17
  13048. 2394 523 1 2006-02-15 10:09:17
  13049. 2395 523 1 2006-02-15 10:09:17
  13050. 2396 524 1 2006-02-15 10:09:17
  13051. 2397 524 1 2006-02-15 10:09:17
  13052. 2398 524 2 2006-02-15 10:09:17
  13053. 2399 524 2 2006-02-15 10:09:17
  13054. 2400 524 2 2006-02-15 10:09:17
  13055. 2401 524 2 2006-02-15 10:09:17
  13056. 2402 525 1 2006-02-15 10:09:17
  13057. 2403 525 1 2006-02-15 10:09:17
  13058. 2404 525 1 2006-02-15 10:09:17
  13059. 2405 525 1 2006-02-15 10:09:17
  13060. 2406 525 2 2006-02-15 10:09:17
  13061. 2407 525 2 2006-02-15 10:09:17
  13062. 2408 525 2 2006-02-15 10:09:17
  13063. 2409 525 2 2006-02-15 10:09:17
  13064. 2410 526 2 2006-02-15 10:09:17
  13065. 2411 526 2 2006-02-15 10:09:17
  13066. 2412 526 2 2006-02-15 10:09:17
  13067. 2413 526 2 2006-02-15 10:09:17
  13068. 2414 527 1 2006-02-15 10:09:17
  13069. 2415 527 1 2006-02-15 10:09:17
  13070. 2416 527 2 2006-02-15 10:09:17
  13071. 2417 527 2 2006-02-15 10:09:17
  13072. 2418 527 2 2006-02-15 10:09:17
  13073. 2419 527 2 2006-02-15 10:09:17
  13074. 2420 528 1 2006-02-15 10:09:17
  13075. 2421 528 1 2006-02-15 10:09:17
  13076. 2422 528 1 2006-02-15 10:09:17
  13077. 2423 529 1 2006-02-15 10:09:17
  13078. 2424 529 1 2006-02-15 10:09:17
  13079. 2425 529 1 2006-02-15 10:09:17
  13080. 2426 529 1 2006-02-15 10:09:17
  13081. 2427 530 1 2006-02-15 10:09:17
  13082. 2428 530 1 2006-02-15 10:09:17
  13083. 2429 530 1 2006-02-15 10:09:17
  13084. 2430 531 1 2006-02-15 10:09:17
  13085. 2431 531 1 2006-02-15 10:09:17
  13086. 2432 531 1 2006-02-15 10:09:17
  13087. 2433 531 1 2006-02-15 10:09:17
  13088. 2434 531 2 2006-02-15 10:09:17
  13089. 2435 531 2 2006-02-15 10:09:17
  13090. 2436 531 2 2006-02-15 10:09:17
  13091. 2437 531 2 2006-02-15 10:09:17
  13092. 2438 532 2 2006-02-15 10:09:17
  13093. 2439 532 2 2006-02-15 10:09:17
  13094. 2440 532 2 2006-02-15 10:09:17
  13095. 2441 532 2 2006-02-15 10:09:17
  13096. 2442 533 1 2006-02-15 10:09:17
  13097. 2443 533 1 2006-02-15 10:09:17
  13098. 2444 533 1 2006-02-15 10:09:17
  13099. 2445 534 1 2006-02-15 10:09:17
  13100. 2446 534 1 2006-02-15 10:09:17
  13101. 2447 534 2 2006-02-15 10:09:17
  13102. 2448 534 2 2006-02-15 10:09:17
  13103. 2449 534 2 2006-02-15 10:09:17
  13104. 2450 535 1 2006-02-15 10:09:17
  13105. 2451 535 1 2006-02-15 10:09:17
  13106. 2452 535 1 2006-02-15 10:09:17
  13107. 2453 535 1 2006-02-15 10:09:17
  13108. 2454 536 1 2006-02-15 10:09:17
  13109. 2455 536 1 2006-02-15 10:09:17
  13110. 2456 536 1 2006-02-15 10:09:17
  13111. 2457 536 2 2006-02-15 10:09:17
  13112. 2458 536 2 2006-02-15 10:09:17
  13113. 2459 537 2 2006-02-15 10:09:17
  13114. 2460 537 2 2006-02-15 10:09:17
  13115. 2461 537 2 2006-02-15 10:09:17
  13116. 2462 538 2 2006-02-15 10:09:17
  13117. 2463 538 2 2006-02-15 10:09:17
  13118. 2464 538 2 2006-02-15 10:09:17
  13119. 2465 539 1 2006-02-15 10:09:17
  13120. 2466 539 1 2006-02-15 10:09:17
  13121. 2467 540 1 2006-02-15 10:09:17
  13122. 2468 540 1 2006-02-15 10:09:17
  13123. 2469 540 1 2006-02-15 10:09:17
  13124. 2470 541 2 2006-02-15 10:09:17
  13125. 2471 541 2 2006-02-15 10:09:17
  13126. 2472 542 1 2006-02-15 10:09:17
  13127. 2473 542 1 2006-02-15 10:09:17
  13128. 2474 542 1 2006-02-15 10:09:17
  13129. 2475 542 1 2006-02-15 10:09:17
  13130. 2476 542 2 2006-02-15 10:09:17
  13131. 2477 542 2 2006-02-15 10:09:17
  13132. 2478 543 1 2006-02-15 10:09:17
  13133. 2479 543 1 2006-02-15 10:09:17
  13134. 2480 544 1 2006-02-15 10:09:17
  13135. 2481 544 1 2006-02-15 10:09:17
  13136. 2482 544 2 2006-02-15 10:09:17
  13137. 2483 544 2 2006-02-15 10:09:17
  13138. 2484 545 1 2006-02-15 10:09:17
  13139. 2485 545 1 2006-02-15 10:09:17
  13140. 2486 545 1 2006-02-15 10:09:17
  13141. 2487 545 1 2006-02-15 10:09:17
  13142. 2488 545 2 2006-02-15 10:09:17
  13143. 2489 545 2 2006-02-15 10:09:17
  13144. 2490 546 2 2006-02-15 10:09:17
  13145. 2491 546 2 2006-02-15 10:09:17
  13146. 2492 546 2 2006-02-15 10:09:17
  13147. 2493 546 2 2006-02-15 10:09:17
  13148. 2494 547 2 2006-02-15 10:09:17
  13149. 2495 547 2 2006-02-15 10:09:17
  13150. 2496 548 1 2006-02-15 10:09:17
  13151. 2497 548 1 2006-02-15 10:09:17
  13152. 2498 549 1 2006-02-15 10:09:17
  13153. 2499 549 1 2006-02-15 10:09:17
  13154. 2500 549 2 2006-02-15 10:09:17
  13155. 2501 549 2 2006-02-15 10:09:17
  13156. 2502 550 1 2006-02-15 10:09:17
  13157. 2503 550 1 2006-02-15 10:09:17
  13158. 2504 550 1 2006-02-15 10:09:17
  13159. 2505 551 1 2006-02-15 10:09:17
  13160. 2506 551 1 2006-02-15 10:09:17
  13161. 2507 551 1 2006-02-15 10:09:17
  13162. 2508 551 2 2006-02-15 10:09:17
  13163. 2509 551 2 2006-02-15 10:09:17
  13164. 2510 551 2 2006-02-15 10:09:17
  13165. 2511 552 2 2006-02-15 10:09:17
  13166. 2512 552 2 2006-02-15 10:09:17
  13167. 2513 552 2 2006-02-15 10:09:17
  13168. 2514 552 2 2006-02-15 10:09:17
  13169. 2515 553 2 2006-02-15 10:09:17
  13170. 2516 553 2 2006-02-15 10:09:17
  13171. 2517 553 2 2006-02-15 10:09:17
  13172. 2518 554 1 2006-02-15 10:09:17
  13173. 2519 554 1 2006-02-15 10:09:17
  13174. 2520 554 1 2006-02-15 10:09:17
  13175. 2521 554 1 2006-02-15 10:09:17
  13176. 2522 554 2 2006-02-15 10:09:17
  13177. 2523 554 2 2006-02-15 10:09:17
  13178. 2524 554 2 2006-02-15 10:09:17
  13179. 2525 555 1 2006-02-15 10:09:17
  13180. 2526 555 1 2006-02-15 10:09:17
  13181. 2527 555 1 2006-02-15 10:09:17
  13182. 2528 555 2 2006-02-15 10:09:17
  13183. 2529 555 2 2006-02-15 10:09:17
  13184. 2530 555 2 2006-02-15 10:09:17
  13185. 2531 555 2 2006-02-15 10:09:17
  13186. 2532 556 1 2006-02-15 10:09:17
  13187. 2533 556 1 2006-02-15 10:09:17
  13188. 2534 556 1 2006-02-15 10:09:17
  13189. 2535 556 2 2006-02-15 10:09:17
  13190. 2536 556 2 2006-02-15 10:09:17
  13191. 2537 556 2 2006-02-15 10:09:17
  13192. 2538 556 2 2006-02-15 10:09:17
  13193. 2539 557 1 2006-02-15 10:09:17
  13194. 2540 557 1 2006-02-15 10:09:17
  13195. 2541 557 2 2006-02-15 10:09:17
  13196. 2542 557 2 2006-02-15 10:09:17
  13197. 2543 557 2 2006-02-15 10:09:17
  13198. 2544 558 2 2006-02-15 10:09:17
  13199. 2545 558 2 2006-02-15 10:09:17
  13200. 2546 559 1 2006-02-15 10:09:17
  13201. 2547 559 1 2006-02-15 10:09:17
  13202. 2548 559 1 2006-02-15 10:09:17
  13203. 2549 559 1 2006-02-15 10:09:17
  13204. 2550 559 2 2006-02-15 10:09:17
  13205. 2551 559 2 2006-02-15 10:09:17
  13206. 2552 559 2 2006-02-15 10:09:17
  13207. 2553 559 2 2006-02-15 10:09:17
  13208. 2554 560 1 2006-02-15 10:09:17
  13209. 2555 560 1 2006-02-15 10:09:17
  13210. 2556 560 1 2006-02-15 10:09:17
  13211. 2557 560 2 2006-02-15 10:09:17
  13212. 2558 560 2 2006-02-15 10:09:17
  13213. 2559 561 1 2006-02-15 10:09:17
  13214. 2560 561 1 2006-02-15 10:09:17
  13215. 2561 561 1 2006-02-15 10:09:17
  13216. 2562 561 1 2006-02-15 10:09:17
  13217. 2563 562 1 2006-02-15 10:09:17
  13218. 2564 562 1 2006-02-15 10:09:17
  13219. 2565 562 1 2006-02-15 10:09:17
  13220. 2566 562 1 2006-02-15 10:09:17
  13221. 2567 562 2 2006-02-15 10:09:17
  13222. 2568 562 2 2006-02-15 10:09:17
  13223. 2569 563 1 2006-02-15 10:09:17
  13224. 2570 563 1 2006-02-15 10:09:17
  13225. 2571 563 1 2006-02-15 10:09:17
  13226. 2572 563 1 2006-02-15 10:09:17
  13227. 2573 563 2 2006-02-15 10:09:17
  13228. 2574 563 2 2006-02-15 10:09:17
  13229. 2575 563 2 2006-02-15 10:09:17
  13230. 2576 564 2 2006-02-15 10:09:17
  13231. 2577 564 2 2006-02-15 10:09:17
  13232. 2578 564 2 2006-02-15 10:09:17
  13233. 2579 565 1 2006-02-15 10:09:17
  13234. 2580 565 1 2006-02-15 10:09:17
  13235. 2581 566 1 2006-02-15 10:09:17
  13236. 2582 566 1 2006-02-15 10:09:17
  13237. 2583 567 1 2006-02-15 10:09:17
  13238. 2584 567 1 2006-02-15 10:09:17
  13239. 2585 567 2 2006-02-15 10:09:17
  13240. 2586 567 2 2006-02-15 10:09:17
  13241. 2587 568 1 2006-02-15 10:09:17
  13242. 2588 568 1 2006-02-15 10:09:17
  13243. 2589 568 2 2006-02-15 10:09:17
  13244. 2590 568 2 2006-02-15 10:09:17
  13245. 2591 569 1 2006-02-15 10:09:17
  13246. 2592 569 1 2006-02-15 10:09:17
  13247. 2593 570 1 2006-02-15 10:09:17
  13248. 2594 570 1 2006-02-15 10:09:17
  13249. 2595 570 2 2006-02-15 10:09:17
  13250. 2596 570 2 2006-02-15 10:09:17
  13251. 2597 570 2 2006-02-15 10:09:17
  13252. 2598 571 1 2006-02-15 10:09:17
  13253. 2599 571 1 2006-02-15 10:09:17
  13254. 2600 571 2 2006-02-15 10:09:17
  13255. 2601 571 2 2006-02-15 10:09:17
  13256. 2602 571 2 2006-02-15 10:09:17
  13257. 2603 571 2 2006-02-15 10:09:17
  13258. 2604 572 1 2006-02-15 10:09:17
  13259. 2605 572 1 2006-02-15 10:09:17
  13260. 2606 572 1 2006-02-15 10:09:17
  13261. 2607 572 1 2006-02-15 10:09:17
  13262. 2608 572 2 2006-02-15 10:09:17
  13263. 2609 572 2 2006-02-15 10:09:17
  13264. 2610 572 2 2006-02-15 10:09:17
  13265. 2611 572 2 2006-02-15 10:09:17
  13266. 2612 573 1 2006-02-15 10:09:17
  13267. 2613 573 1 2006-02-15 10:09:17
  13268. 2614 573 1 2006-02-15 10:09:17
  13269. 2615 573 1 2006-02-15 10:09:17
  13270. 2616 574 1 2006-02-15 10:09:17
  13271. 2617 574 1 2006-02-15 10:09:17
  13272. 2618 574 2 2006-02-15 10:09:17
  13273. 2619 574 2 2006-02-15 10:09:17
  13274. 2620 574 2 2006-02-15 10:09:17
  13275. 2621 575 1 2006-02-15 10:09:17
  13276. 2622 575 1 2006-02-15 10:09:17
  13277. 2623 575 2 2006-02-15 10:09:17
  13278. 2624 575 2 2006-02-15 10:09:17
  13279. 2625 575 2 2006-02-15 10:09:17
  13280. 2626 575 2 2006-02-15 10:09:17
  13281. 2627 576 2 2006-02-15 10:09:17
  13282. 2628 576 2 2006-02-15 10:09:17
  13283. 2629 576 2 2006-02-15 10:09:17
  13284. 2630 577 1 2006-02-15 10:09:17
  13285. 2631 577 1 2006-02-15 10:09:17
  13286. 2632 577 1 2006-02-15 10:09:17
  13287. 2633 578 1 2006-02-15 10:09:17
  13288. 2634 578 1 2006-02-15 10:09:17
  13289. 2635 578 2 2006-02-15 10:09:17
  13290. 2636 578 2 2006-02-15 10:09:17
  13291. 2637 578 2 2006-02-15 10:09:17
  13292. 2638 579 1 2006-02-15 10:09:17
  13293. 2639 579 1 2006-02-15 10:09:17
  13294. 2640 579 1 2006-02-15 10:09:17
  13295. 2641 579 1 2006-02-15 10:09:17
  13296. 2642 579 2 2006-02-15 10:09:17
  13297. 2643 579 2 2006-02-15 10:09:17
  13298. 2644 579 2 2006-02-15 10:09:17
  13299. 2645 580 1 2006-02-15 10:09:17
  13300. 2646 580 1 2006-02-15 10:09:17
  13301. 2647 580 1 2006-02-15 10:09:17
  13302. 2648 580 1 2006-02-15 10:09:17
  13303. 2649 580 2 2006-02-15 10:09:17
  13304. 2650 580 2 2006-02-15 10:09:17
  13305. 2651 581 1 2006-02-15 10:09:17
  13306. 2652 581 1 2006-02-15 10:09:17
  13307. 2653 581 1 2006-02-15 10:09:17
  13308. 2654 582 2 2006-02-15 10:09:17
  13309. 2655 582 2 2006-02-15 10:09:17
  13310. 2656 583 1 2006-02-15 10:09:17
  13311. 2657 583 1 2006-02-15 10:09:17
  13312. 2658 583 1 2006-02-15 10:09:17
  13313. 2659 583 2 2006-02-15 10:09:17
  13314. 2660 583 2 2006-02-15 10:09:17
  13315. 2661 584 1 2006-02-15 10:09:17
  13316. 2662 584 1 2006-02-15 10:09:17
  13317. 2663 585 2 2006-02-15 10:09:17
  13318. 2664 585 2 2006-02-15 10:09:17
  13319. 2665 585 2 2006-02-15 10:09:17
  13320. 2666 585 2 2006-02-15 10:09:17
  13321. 2667 586 1 2006-02-15 10:09:17
  13322. 2668 586 1 2006-02-15 10:09:17
  13323. 2669 586 1 2006-02-15 10:09:17
  13324. 2670 586 1 2006-02-15 10:09:17
  13325. 2671 586 2 2006-02-15 10:09:17
  13326. 2672 586 2 2006-02-15 10:09:17
  13327. 2673 586 2 2006-02-15 10:09:17
  13328. 2674 586 2 2006-02-15 10:09:17
  13329. 2675 587 1 2006-02-15 10:09:17
  13330. 2676 587 1 2006-02-15 10:09:17
  13331. 2677 587 1 2006-02-15 10:09:17
  13332. 2678 588 2 2006-02-15 10:09:17
  13333. 2679 588 2 2006-02-15 10:09:17
  13334. 2680 588 2 2006-02-15 10:09:17
  13335. 2681 588 2 2006-02-15 10:09:17
  13336. 2682 589 2 2006-02-15 10:09:17
  13337. 2683 589 2 2006-02-15 10:09:17
  13338. 2684 589 2 2006-02-15 10:09:17
  13339. 2685 589 2 2006-02-15 10:09:17
  13340. 2686 590 1 2006-02-15 10:09:17
  13341. 2687 590 1 2006-02-15 10:09:17
  13342. 2688 590 1 2006-02-15 10:09:17
  13343. 2689 590 2 2006-02-15 10:09:17
  13344. 2690 590 2 2006-02-15 10:09:17
  13345. 2691 590 2 2006-02-15 10:09:17
  13346. 2692 590 2 2006-02-15 10:09:17
  13347. 2693 591 2 2006-02-15 10:09:17
  13348. 2694 591 2 2006-02-15 10:09:17
  13349. 2695 591 2 2006-02-15 10:09:17
  13350. 2696 592 1 2006-02-15 10:09:17
  13351. 2697 592 1 2006-02-15 10:09:17
  13352. 2698 592 2 2006-02-15 10:09:17
  13353. 2699 592 2 2006-02-15 10:09:17
  13354. 2700 593 2 2006-02-15 10:09:17
  13355. 2701 593 2 2006-02-15 10:09:17
  13356. 2702 593 2 2006-02-15 10:09:17
  13357. 2703 593 2 2006-02-15 10:09:17
  13358. 2704 594 1 2006-02-15 10:09:17
  13359. 2705 594 1 2006-02-15 10:09:17
  13360. 2706 594 1 2006-02-15 10:09:17
  13361. 2707 595 1 2006-02-15 10:09:17
  13362. 2708 595 1 2006-02-15 10:09:17
  13363. 2709 595 1 2006-02-15 10:09:17
  13364. 2710 595 1 2006-02-15 10:09:17
  13365. 2711 595 2 2006-02-15 10:09:17
  13366. 2712 595 2 2006-02-15 10:09:17
  13367. 2713 595 2 2006-02-15 10:09:17
  13368. 2714 595 2 2006-02-15 10:09:17
  13369. 2715 596 1 2006-02-15 10:09:17
  13370. 2716 596 1 2006-02-15 10:09:17
  13371. 2717 596 2 2006-02-15 10:09:17
  13372. 2718 596 2 2006-02-15 10:09:17
  13373. 2719 596 2 2006-02-15 10:09:17
  13374. 2720 596 2 2006-02-15 10:09:17
  13375. 2721 597 2 2006-02-15 10:09:17
  13376. 2722 597 2 2006-02-15 10:09:17
  13377. 2723 597 2 2006-02-15 10:09:17
  13378. 2724 597 2 2006-02-15 10:09:17
  13379. 2725 598 1 2006-02-15 10:09:17
  13380. 2726 598 1 2006-02-15 10:09:17
  13381. 2727 598 1 2006-02-15 10:09:17
  13382. 2728 598 1 2006-02-15 10:09:17
  13383. 2729 599 1 2006-02-15 10:09:17
  13384. 2730 599 1 2006-02-15 10:09:17
  13385. 2731 599 1 2006-02-15 10:09:17
  13386. 2732 599 2 2006-02-15 10:09:17
  13387. 2733 599 2 2006-02-15 10:09:17
  13388. 2734 600 1 2006-02-15 10:09:17
  13389. 2735 600 1 2006-02-15 10:09:17
  13390. 2736 600 2 2006-02-15 10:09:17
  13391. 2737 600 2 2006-02-15 10:09:17
  13392. 2738 601 1 2006-02-15 10:09:17
  13393. 2739 601 1 2006-02-15 10:09:17
  13394. 2740 601 1 2006-02-15 10:09:17
  13395. 2741 601 2 2006-02-15 10:09:17
  13396. 2742 601 2 2006-02-15 10:09:17
  13397. 2743 602 1 2006-02-15 10:09:17
  13398. 2744 602 1 2006-02-15 10:09:17
  13399. 2745 602 2 2006-02-15 10:09:17
  13400. 2746 602 2 2006-02-15 10:09:17
  13401. 2747 602 2 2006-02-15 10:09:17
  13402. 2748 603 1 2006-02-15 10:09:17
  13403. 2749 603 1 2006-02-15 10:09:17
  13404. 2750 603 1 2006-02-15 10:09:17
  13405. 2751 603 1 2006-02-15 10:09:17
  13406. 2752 603 2 2006-02-15 10:09:17
  13407. 2753 603 2 2006-02-15 10:09:17
  13408. 2754 604 2 2006-02-15 10:09:17
  13409. 2755 604 2 2006-02-15 10:09:17
  13410. 2756 604 2 2006-02-15 10:09:17
  13411. 2757 605 2 2006-02-15 10:09:17
  13412. 2758 605 2 2006-02-15 10:09:17
  13413. 2759 606 1 2006-02-15 10:09:17
  13414. 2760 606 1 2006-02-15 10:09:17
  13415. 2761 606 2 2006-02-15 10:09:17
  13416. 2762 606 2 2006-02-15 10:09:17
  13417. 2763 606 2 2006-02-15 10:09:17
  13418. 2764 606 2 2006-02-15 10:09:17
  13419. 2765 608 1 2006-02-15 10:09:17
  13420. 2766 608 1 2006-02-15 10:09:17
  13421. 2767 608 2 2006-02-15 10:09:17
  13422. 2768 608 2 2006-02-15 10:09:17
  13423. 2769 608 2 2006-02-15 10:09:17
  13424. 2770 608 2 2006-02-15 10:09:17
  13425. 2771 609 1 2006-02-15 10:09:17
  13426. 2772 609 1 2006-02-15 10:09:17
  13427. 2773 609 1 2006-02-15 10:09:17
  13428. 2774 609 1 2006-02-15 10:09:17
  13429. 2775 609 2 2006-02-15 10:09:17
  13430. 2776 609 2 2006-02-15 10:09:17
  13431. 2777 609 2 2006-02-15 10:09:17
  13432. 2778 609 2 2006-02-15 10:09:17
  13433. 2779 610 1 2006-02-15 10:09:17
  13434. 2780 610 1 2006-02-15 10:09:17
  13435. 2781 610 2 2006-02-15 10:09:17
  13436. 2782 610 2 2006-02-15 10:09:17
  13437. 2783 610 2 2006-02-15 10:09:17
  13438. 2784 611 1 2006-02-15 10:09:17
  13439. 2785 611 1 2006-02-15 10:09:17
  13440. 2786 611 1 2006-02-15 10:09:17
  13441. 2787 611 1 2006-02-15 10:09:17
  13442. 2788 611 2 2006-02-15 10:09:17
  13443. 2789 611 2 2006-02-15 10:09:17
  13444. 2790 612 2 2006-02-15 10:09:17
  13445. 2791 612 2 2006-02-15 10:09:17
  13446. 2792 613 1 2006-02-15 10:09:17
  13447. 2793 613 1 2006-02-15 10:09:17
  13448. 2794 614 1 2006-02-15 10:09:17
  13449. 2795 614 1 2006-02-15 10:09:17
  13450. 2796 614 1 2006-02-15 10:09:17
  13451. 2797 614 2 2006-02-15 10:09:17
  13452. 2798 614 2 2006-02-15 10:09:17
  13453. 2799 614 2 2006-02-15 10:09:17
  13454. 2800 615 2 2006-02-15 10:09:17
  13455. 2801 615 2 2006-02-15 10:09:17
  13456. 2802 615 2 2006-02-15 10:09:17
  13457. 2803 615 2 2006-02-15 10:09:17
  13458. 2804 616 1 2006-02-15 10:09:17
  13459. 2805 616 1 2006-02-15 10:09:17
  13460. 2806 616 2 2006-02-15 10:09:17
  13461. 2807 616 2 2006-02-15 10:09:17
  13462. 2808 616 2 2006-02-15 10:09:17
  13463. 2809 616 2 2006-02-15 10:09:17
  13464. 2810 617 1 2006-02-15 10:09:17
  13465. 2811 617 1 2006-02-15 10:09:17
  13466. 2812 617 1 2006-02-15 10:09:17
  13467. 2813 618 2 2006-02-15 10:09:17
  13468. 2814 618 2 2006-02-15 10:09:17
  13469. 2815 618 2 2006-02-15 10:09:17
  13470. 2816 618 2 2006-02-15 10:09:17
  13471. 2817 619 1 2006-02-15 10:09:17
  13472. 2818 619 1 2006-02-15 10:09:17
  13473. 2819 619 2 2006-02-15 10:09:17
  13474. 2820 619 2 2006-02-15 10:09:17
  13475. 2821 619 2 2006-02-15 10:09:17
  13476. 2822 619 2 2006-02-15 10:09:17
  13477. 2823 620 1 2006-02-15 10:09:17
  13478. 2824 620 1 2006-02-15 10:09:17
  13479. 2825 620 2 2006-02-15 10:09:17
  13480. 2826 620 2 2006-02-15 10:09:17
  13481. 2827 620 2 2006-02-15 10:09:17
  13482. 2828 621 1 2006-02-15 10:09:17
  13483. 2829 621 1 2006-02-15 10:09:17
  13484. 2830 621 1 2006-02-15 10:09:17
  13485. 2831 621 1 2006-02-15 10:09:17
  13486. 2832 621 2 2006-02-15 10:09:17
  13487. 2833 621 2 2006-02-15 10:09:17
  13488. 2834 621 2 2006-02-15 10:09:17
  13489. 2835 621 2 2006-02-15 10:09:17
  13490. 2836 622 2 2006-02-15 10:09:17
  13491. 2837 622 2 2006-02-15 10:09:17
  13492. 2838 623 1 2006-02-15 10:09:17
  13493. 2839 623 1 2006-02-15 10:09:17
  13494. 2840 623 2 2006-02-15 10:09:17
  13495. 2841 623 2 2006-02-15 10:09:17
  13496. 2842 623 2 2006-02-15 10:09:17
  13497. 2843 624 1 2006-02-15 10:09:17
  13498. 2844 624 1 2006-02-15 10:09:17
  13499. 2845 624 1 2006-02-15 10:09:17
  13500. 2846 624 2 2006-02-15 10:09:17
  13501. 2847 624 2 2006-02-15 10:09:17
  13502. 2848 624 2 2006-02-15 10:09:17
  13503. 2849 624 2 2006-02-15 10:09:17
  13504. 2850 625 1 2006-02-15 10:09:17
  13505. 2851 625 1 2006-02-15 10:09:17
  13506. 2852 625 1 2006-02-15 10:09:17
  13507. 2853 625 2 2006-02-15 10:09:17
  13508. 2854 625 2 2006-02-15 10:09:17
  13509. 2855 625 2 2006-02-15 10:09:17
  13510. 2856 625 2 2006-02-15 10:09:17
  13511. 2857 626 2 2006-02-15 10:09:17
  13512. 2858 626 2 2006-02-15 10:09:17
  13513. 2859 626 2 2006-02-15 10:09:17
  13514. 2860 626 2 2006-02-15 10:09:17
  13515. 2861 627 2 2006-02-15 10:09:17
  13516. 2862 627 2 2006-02-15 10:09:17
  13517. 2863 627 2 2006-02-15 10:09:17
  13518. 2864 628 1 2006-02-15 10:09:17
  13519. 2865 628 1 2006-02-15 10:09:17
  13520. 2866 628 1 2006-02-15 10:09:17
  13521. 2867 628 2 2006-02-15 10:09:17
  13522. 2868 628 2 2006-02-15 10:09:17
  13523. 2869 629 2 2006-02-15 10:09:17
  13524. 2870 629 2 2006-02-15 10:09:17
  13525. 2871 629 2 2006-02-15 10:09:17
  13526. 2872 629 2 2006-02-15 10:09:17
  13527. 2873 630 2 2006-02-15 10:09:17
  13528. 2874 630 2 2006-02-15 10:09:17
  13529. 2875 630 2 2006-02-15 10:09:17
  13530. 2876 631 1 2006-02-15 10:09:17
  13531. 2877 631 1 2006-02-15 10:09:17
  13532. 2878 631 1 2006-02-15 10:09:17
  13533. 2879 631 2 2006-02-15 10:09:17
  13534. 2880 631 2 2006-02-15 10:09:17
  13535. 2881 632 1 2006-02-15 10:09:17
  13536. 2882 632 1 2006-02-15 10:09:17
  13537. 2883 632 1 2006-02-15 10:09:17
  13538. 2884 633 2 2006-02-15 10:09:17
  13539. 2885 633 2 2006-02-15 10:09:17
  13540. 2886 633 2 2006-02-15 10:09:17
  13541. 2887 634 2 2006-02-15 10:09:17
  13542. 2888 634 2 2006-02-15 10:09:17
  13543. 2889 634 2 2006-02-15 10:09:17
  13544. 2890 634 2 2006-02-15 10:09:17
  13545. 2891 635 2 2006-02-15 10:09:17
  13546. 2892 635 2 2006-02-15 10:09:17
  13547. 2893 636 1 2006-02-15 10:09:17
  13548. 2894 636 1 2006-02-15 10:09:17
  13549. 2895 636 1 2006-02-15 10:09:17
  13550. 2896 637 1 2006-02-15 10:09:17
  13551. 2897 637 1 2006-02-15 10:09:17
  13552. 2898 637 2 2006-02-15 10:09:17
  13553. 2899 637 2 2006-02-15 10:09:17
  13554. 2900 637 2 2006-02-15 10:09:17
  13555. 2901 638 1 2006-02-15 10:09:17
  13556. 2902 638 1 2006-02-15 10:09:17
  13557. 2903 638 1 2006-02-15 10:09:17
  13558. 2904 638 1 2006-02-15 10:09:17
  13559. 2905 638 2 2006-02-15 10:09:17
  13560. 2906 638 2 2006-02-15 10:09:17
  13561. 2907 638 2 2006-02-15 10:09:17
  13562. 2908 638 2 2006-02-15 10:09:17
  13563. 2909 639 2 2006-02-15 10:09:17
  13564. 2910 639 2 2006-02-15 10:09:17
  13565. 2911 639 2 2006-02-15 10:09:17
  13566. 2912 640 2 2006-02-15 10:09:17
  13567. 2913 640 2 2006-02-15 10:09:17
  13568. 2914 640 2 2006-02-15 10:09:17
  13569. 2915 641 1 2006-02-15 10:09:17
  13570. 2916 641 1 2006-02-15 10:09:17
  13571. 2917 641 1 2006-02-15 10:09:17
  13572. 2918 641 2 2006-02-15 10:09:17
  13573. 2919 641 2 2006-02-15 10:09:17
  13574. 2920 641 2 2006-02-15 10:09:17
  13575. 2921 641 2 2006-02-15 10:09:17
  13576. 2922 643 1 2006-02-15 10:09:17
  13577. 2923 643 1 2006-02-15 10:09:17
  13578. 2924 643 1 2006-02-15 10:09:17
  13579. 2925 643 2 2006-02-15 10:09:17
  13580. 2926 643 2 2006-02-15 10:09:17
  13581. 2927 643 2 2006-02-15 10:09:17
  13582. 2928 644 1 2006-02-15 10:09:17
  13583. 2929 644 1 2006-02-15 10:09:17
  13584. 2930 644 1 2006-02-15 10:09:17
  13585. 2931 644 2 2006-02-15 10:09:17
  13586. 2932 644 2 2006-02-15 10:09:17
  13587. 2933 644 2 2006-02-15 10:09:17
  13588. 2934 644 2 2006-02-15 10:09:17
  13589. 2935 645 1 2006-02-15 10:09:17
  13590. 2936 645 1 2006-02-15 10:09:17
  13591. 2937 645 1 2006-02-15 10:09:17
  13592. 2938 645 2 2006-02-15 10:09:17
  13593. 2939 645 2 2006-02-15 10:09:17
  13594. 2940 645 2 2006-02-15 10:09:17
  13595. 2941 646 1 2006-02-15 10:09:17
  13596. 2942 646 1 2006-02-15 10:09:17
  13597. 2943 646 1 2006-02-15 10:09:17
  13598. 2944 646 2 2006-02-15 10:09:17
  13599. 2945 646 2 2006-02-15 10:09:17
  13600. 2946 647 1 2006-02-15 10:09:17
  13601. 2947 647 1 2006-02-15 10:09:17
  13602. 2948 647 1 2006-02-15 10:09:17
  13603. 2949 647 2 2006-02-15 10:09:17
  13604. 2950 647 2 2006-02-15 10:09:17
  13605. 2951 647 2 2006-02-15 10:09:17
  13606. 2952 648 1 2006-02-15 10:09:17
  13607. 2953 648 1 2006-02-15 10:09:17
  13608. 2954 648 1 2006-02-15 10:09:17
  13609. 2955 648 1 2006-02-15 10:09:17
  13610. 2956 648 2 2006-02-15 10:09:17
  13611. 2957 648 2 2006-02-15 10:09:17
  13612. 2958 649 1 2006-02-15 10:09:17
  13613. 2959 649 1 2006-02-15 10:09:17
  13614. 2960 649 2 2006-02-15 10:09:17
  13615. 2961 649 2 2006-02-15 10:09:17
  13616. 2962 649 2 2006-02-15 10:09:17
  13617. 2963 649 2 2006-02-15 10:09:17
  13618. 2964 650 1 2006-02-15 10:09:17
  13619. 2965 650 1 2006-02-15 10:09:17
  13620. 2966 650 2 2006-02-15 10:09:17
  13621. 2967 650 2 2006-02-15 10:09:17
  13622. 2968 650 2 2006-02-15 10:09:17
  13623. 2969 650 2 2006-02-15 10:09:17
  13624. 2970 651 1 2006-02-15 10:09:17
  13625. 2971 651 1 2006-02-15 10:09:17
  13626. 2972 651 2 2006-02-15 10:09:17
  13627. 2973 651 2 2006-02-15 10:09:17
  13628. 2974 651 2 2006-02-15 10:09:17
  13629. 2975 651 2 2006-02-15 10:09:17
  13630. 2976 652 1 2006-02-15 10:09:17
  13631. 2977 652 1 2006-02-15 10:09:17
  13632. 2978 652 1 2006-02-15 10:09:17
  13633. 2979 652 1 2006-02-15 10:09:17
  13634. 2980 653 1 2006-02-15 10:09:17
  13635. 2981 653 1 2006-02-15 10:09:17
  13636. 2982 654 1 2006-02-15 10:09:17
  13637. 2983 654 1 2006-02-15 10:09:17
  13638. 2984 654 2 2006-02-15 10:09:17
  13639. 2985 654 2 2006-02-15 10:09:17
  13640. 2986 655 1 2006-02-15 10:09:17
  13641. 2987 655 1 2006-02-15 10:09:17
  13642. 2988 655 1 2006-02-15 10:09:17
  13643. 2989 655 2 2006-02-15 10:09:17
  13644. 2990 655 2 2006-02-15 10:09:17
  13645. 2991 655 2 2006-02-15 10:09:17
  13646. 2992 656 2 2006-02-15 10:09:17
  13647. 2993 656 2 2006-02-15 10:09:17
  13648. 2994 657 1 2006-02-15 10:09:17
  13649. 2995 657 1 2006-02-15 10:09:17
  13650. 2996 657 1 2006-02-15 10:09:17
  13651. 2997 657 1 2006-02-15 10:09:17
  13652. 2998 657 2 2006-02-15 10:09:17
  13653. 2999 657 2 2006-02-15 10:09:17
  13654. 3000 658 2 2006-02-15 10:09:17
  13655. 3001 658 2 2006-02-15 10:09:17
  13656. 3002 658 2 2006-02-15 10:09:17
  13657. 3003 658 2 2006-02-15 10:09:17
  13658. 3004 659 2 2006-02-15 10:09:17
  13659. 3005 659 2 2006-02-15 10:09:17
  13660. 3006 660 1 2006-02-15 10:09:17
  13661. 3007 660 1 2006-02-15 10:09:17
  13662. 3008 660 2 2006-02-15 10:09:17
  13663. 3009 660 2 2006-02-15 10:09:17
  13664. 3010 661 1 2006-02-15 10:09:17
  13665. 3011 661 1 2006-02-15 10:09:17
  13666. 3012 661 1 2006-02-15 10:09:17
  13667. 3013 661 1 2006-02-15 10:09:17
  13668. 3014 662 1 2006-02-15 10:09:17
  13669. 3015 662 1 2006-02-15 10:09:17
  13670. 3016 662 2 2006-02-15 10:09:17
  13671. 3017 662 2 2006-02-15 10:09:17
  13672. 3018 663 1 2006-02-15 10:09:17
  13673. 3019 663 1 2006-02-15 10:09:17
  13674. 3020 663 1 2006-02-15 10:09:17
  13675. 3021 663 2 2006-02-15 10:09:17
  13676. 3022 663 2 2006-02-15 10:09:17
  13677. 3023 664 1 2006-02-15 10:09:17
  13678. 3024 664 1 2006-02-15 10:09:17
  13679. 3025 664 2 2006-02-15 10:09:17
  13680. 3026 664 2 2006-02-15 10:09:17
  13681. 3027 664 2 2006-02-15 10:09:17
  13682. 3028 665 1 2006-02-15 10:09:17
  13683. 3029 665 1 2006-02-15 10:09:17
  13684. 3030 665 1 2006-02-15 10:09:17
  13685. 3031 665 1 2006-02-15 10:09:17
  13686. 3032 665 2 2006-02-15 10:09:17
  13687. 3033 665 2 2006-02-15 10:09:17
  13688. 3034 665 2 2006-02-15 10:09:17
  13689. 3035 666 1 2006-02-15 10:09:17
  13690. 3036 666 1 2006-02-15 10:09:17
  13691. 3037 666 1 2006-02-15 10:09:17
  13692. 3038 666 2 2006-02-15 10:09:17
  13693. 3039 666 2 2006-02-15 10:09:17
  13694. 3040 667 1 2006-02-15 10:09:17
  13695. 3041 667 1 2006-02-15 10:09:17
  13696. 3042 667 2 2006-02-15 10:09:17
  13697. 3043 667 2 2006-02-15 10:09:17
  13698. 3044 668 1 2006-02-15 10:09:17
  13699. 3045 668 1 2006-02-15 10:09:17
  13700. 3046 668 2 2006-02-15 10:09:17
  13701. 3047 668 2 2006-02-15 10:09:17
  13702. 3048 668 2 2006-02-15 10:09:17
  13703. 3049 670 1 2006-02-15 10:09:17
  13704. 3050 670 1 2006-02-15 10:09:17
  13705. 3051 670 1 2006-02-15 10:09:17
  13706. 3052 670 1 2006-02-15 10:09:17
  13707. 3053 670 2 2006-02-15 10:09:17
  13708. 3054 670 2 2006-02-15 10:09:17
  13709. 3055 670 2 2006-02-15 10:09:17
  13710. 3056 672 1 2006-02-15 10:09:17
  13711. 3057 672 1 2006-02-15 10:09:17
  13712. 3058 672 2 2006-02-15 10:09:17
  13713. 3059 672 2 2006-02-15 10:09:17
  13714. 3060 672 2 2006-02-15 10:09:17
  13715. 3061 672 2 2006-02-15 10:09:17
  13716. 3062 673 1 2006-02-15 10:09:17
  13717. 3063 673 1 2006-02-15 10:09:17
  13718. 3064 673 2 2006-02-15 10:09:17
  13719. 3065 673 2 2006-02-15 10:09:17
  13720. 3066 674 1 2006-02-15 10:09:17
  13721. 3067 674 1 2006-02-15 10:09:17
  13722. 3068 674 1 2006-02-15 10:09:17
  13723. 3069 675 1 2006-02-15 10:09:17
  13724. 3070 675 1 2006-02-15 10:09:17
  13725. 3071 676 1 2006-02-15 10:09:17
  13726. 3072 676 1 2006-02-15 10:09:17
  13727. 3073 676 2 2006-02-15 10:09:17
  13728. 3074 676 2 2006-02-15 10:09:17
  13729. 3075 676 2 2006-02-15 10:09:17
  13730. 3076 676 2 2006-02-15 10:09:17
  13731. 3077 677 1 2006-02-15 10:09:17
  13732. 3078 677 1 2006-02-15 10:09:17
  13733. 3079 677 1 2006-02-15 10:09:17
  13734. 3080 677 2 2006-02-15 10:09:17
  13735. 3081 677 2 2006-02-15 10:09:17
  13736. 3082 677 2 2006-02-15 10:09:17
  13737. 3083 677 2 2006-02-15 10:09:17
  13738. 3084 678 1 2006-02-15 10:09:17
  13739. 3085 678 1 2006-02-15 10:09:17
  13740. 3086 678 1 2006-02-15 10:09:17
  13741. 3087 678 1 2006-02-15 10:09:17
  13742. 3088 679 1 2006-02-15 10:09:17
  13743. 3089 679 1 2006-02-15 10:09:17
  13744. 3090 679 2 2006-02-15 10:09:17
  13745. 3091 679 2 2006-02-15 10:09:17
  13746. 3092 680 1 2006-02-15 10:09:17
  13747. 3093 680 1 2006-02-15 10:09:17
  13748. 3094 680 2 2006-02-15 10:09:17
  13749. 3095 680 2 2006-02-15 10:09:17
  13750. 3096 680 2 2006-02-15 10:09:17
  13751. 3097 680 2 2006-02-15 10:09:17
  13752. 3098 681 1 2006-02-15 10:09:17
  13753. 3099 681 1 2006-02-15 10:09:17
  13754. 3100 681 1 2006-02-15 10:09:17
  13755. 3101 681 2 2006-02-15 10:09:17
  13756. 3102 681 2 2006-02-15 10:09:17
  13757. 3103 681 2 2006-02-15 10:09:17
  13758. 3104 682 1 2006-02-15 10:09:17
  13759. 3105 682 1 2006-02-15 10:09:17
  13760. 3106 682 1 2006-02-15 10:09:17
  13761. 3107 683 1 2006-02-15 10:09:17
  13762. 3108 683 1 2006-02-15 10:09:17
  13763. 3109 683 1 2006-02-15 10:09:17
  13764. 3110 683 1 2006-02-15 10:09:17
  13765. 3111 683 2 2006-02-15 10:09:17
  13766. 3112 683 2 2006-02-15 10:09:17
  13767. 3113 683 2 2006-02-15 10:09:17
  13768. 3114 683 2 2006-02-15 10:09:17
  13769. 3115 684 2 2006-02-15 10:09:17
  13770. 3116 684 2 2006-02-15 10:09:17
  13771. 3117 685 2 2006-02-15 10:09:17
  13772. 3118 685 2 2006-02-15 10:09:17
  13773. 3119 686 1 2006-02-15 10:09:17
  13774. 3120 686 1 2006-02-15 10:09:17
  13775. 3121 686 1 2006-02-15 10:09:17
  13776. 3122 686 1 2006-02-15 10:09:17
  13777. 3123 687 1 2006-02-15 10:09:17
  13778. 3124 687 1 2006-02-15 10:09:17
  13779. 3125 687 1 2006-02-15 10:09:17
  13780. 3126 687 2 2006-02-15 10:09:17
  13781. 3127 687 2 2006-02-15 10:09:17
  13782. 3128 687 2 2006-02-15 10:09:17
  13783. 3129 687 2 2006-02-15 10:09:17
  13784. 3130 688 2 2006-02-15 10:09:17
  13785. 3131 688 2 2006-02-15 10:09:17
  13786. 3132 688 2 2006-02-15 10:09:17
  13787. 3133 688 2 2006-02-15 10:09:17
  13788. 3134 689 1 2006-02-15 10:09:17
  13789. 3135 689 1 2006-02-15 10:09:17
  13790. 3136 689 1 2006-02-15 10:09:17
  13791. 3137 689 1 2006-02-15 10:09:17
  13792. 3138 689 2 2006-02-15 10:09:17
  13793. 3139 689 2 2006-02-15 10:09:17
  13794. 3140 690 1 2006-02-15 10:09:17
  13795. 3141 690 1 2006-02-15 10:09:17
  13796. 3142 690 1 2006-02-15 10:09:17
  13797. 3143 690 1 2006-02-15 10:09:17
  13798. 3144 690 2 2006-02-15 10:09:17
  13799. 3145 690 2 2006-02-15 10:09:17
  13800. 3146 691 1 2006-02-15 10:09:17
  13801. 3147 691 1 2006-02-15 10:09:17
  13802. 3148 691 1 2006-02-15 10:09:17
  13803. 3149 691 2 2006-02-15 10:09:17
  13804. 3150 691 2 2006-02-15 10:09:17
  13805. 3151 692 2 2006-02-15 10:09:17
  13806. 3152 692 2 2006-02-15 10:09:17
  13807. 3153 692 2 2006-02-15 10:09:17
  13808. 3154 693 1 2006-02-15 10:09:17
  13809. 3155 693 1 2006-02-15 10:09:17
  13810. 3156 693 2 2006-02-15 10:09:17
  13811. 3157 693 2 2006-02-15 10:09:17
  13812. 3158 693 2 2006-02-15 10:09:17
  13813. 3159 694 1 2006-02-15 10:09:17
  13814. 3160 694 1 2006-02-15 10:09:17
  13815. 3161 694 1 2006-02-15 10:09:17
  13816. 3162 694 1 2006-02-15 10:09:17
  13817. 3163 694 2 2006-02-15 10:09:17
  13818. 3164 694 2 2006-02-15 10:09:17
  13819. 3165 695 1 2006-02-15 10:09:17
  13820. 3166 695 1 2006-02-15 10:09:17
  13821. 3167 696 1 2006-02-15 10:09:17
  13822. 3168 696 1 2006-02-15 10:09:17
  13823. 3169 696 2 2006-02-15 10:09:17
  13824. 3170 696 2 2006-02-15 10:09:17
  13825. 3171 696 2 2006-02-15 10:09:17
  13826. 3172 697 1 2006-02-15 10:09:17
  13827. 3173 697 1 2006-02-15 10:09:17
  13828. 3174 697 1 2006-02-15 10:09:17
  13829. 3175 697 1 2006-02-15 10:09:17
  13830. 3176 697 2 2006-02-15 10:09:17
  13831. 3177 697 2 2006-02-15 10:09:17
  13832. 3178 697 2 2006-02-15 10:09:17
  13833. 3179 697 2 2006-02-15 10:09:17
  13834. 3180 698 1 2006-02-15 10:09:17
  13835. 3181 698 1 2006-02-15 10:09:17
  13836. 3182 698 1 2006-02-15 10:09:17
  13837. 3183 698 1 2006-02-15 10:09:17
  13838. 3184 698 2 2006-02-15 10:09:17
  13839. 3185 698 2 2006-02-15 10:09:17
  13840. 3186 698 2 2006-02-15 10:09:17
  13841. 3187 699 1 2006-02-15 10:09:17
  13842. 3188 699 1 2006-02-15 10:09:17
  13843. 3189 700 2 2006-02-15 10:09:17
  13844. 3190 700 2 2006-02-15 10:09:17
  13845. 3191 700 2 2006-02-15 10:09:17
  13846. 3192 702 1 2006-02-15 10:09:17
  13847. 3193 702 1 2006-02-15 10:09:17
  13848. 3194 702 1 2006-02-15 10:09:17
  13849. 3195 702 1 2006-02-15 10:09:17
  13850. 3196 702 2 2006-02-15 10:09:17
  13851. 3197 702 2 2006-02-15 10:09:17
  13852. 3198 702 2 2006-02-15 10:09:17
  13853. 3199 702 2 2006-02-15 10:09:17
  13854. 3200 703 2 2006-02-15 10:09:17
  13855. 3201 703 2 2006-02-15 10:09:17
  13856. 3202 704 1 2006-02-15 10:09:17
  13857. 3203 704 1 2006-02-15 10:09:17
  13858. 3204 704 2 2006-02-15 10:09:17
  13859. 3205 704 2 2006-02-15 10:09:17
  13860. 3206 704 2 2006-02-15 10:09:17
  13861. 3207 705 1 2006-02-15 10:09:17
  13862. 3208 705 1 2006-02-15 10:09:17
  13863. 3209 705 1 2006-02-15 10:09:17
  13864. 3210 705 1 2006-02-15 10:09:17
  13865. 3211 706 1 2006-02-15 10:09:17
  13866. 3212 706 1 2006-02-15 10:09:17
  13867. 3213 706 2 2006-02-15 10:09:17
  13868. 3214 706 2 2006-02-15 10:09:17
  13869. 3215 706 2 2006-02-15 10:09:17
  13870. 3216 706 2 2006-02-15 10:09:17
  13871. 3217 707 1 2006-02-15 10:09:17
  13872. 3218 707 1 2006-02-15 10:09:17
  13873. 3219 707 2 2006-02-15 10:09:17
  13874. 3220 707 2 2006-02-15 10:09:17
  13875. 3221 707 2 2006-02-15 10:09:17
  13876. 3222 707 2 2006-02-15 10:09:17
  13877. 3223 708 1 2006-02-15 10:09:17
  13878. 3224 708 1 2006-02-15 10:09:17
  13879. 3225 708 2 2006-02-15 10:09:17
  13880. 3226 708 2 2006-02-15 10:09:17
  13881. 3227 709 1 2006-02-15 10:09:17
  13882. 3228 709 1 2006-02-15 10:09:17
  13883. 3229 709 2 2006-02-15 10:09:17
  13884. 3230 709 2 2006-02-15 10:09:17
  13885. 3231 709 2 2006-02-15 10:09:17
  13886. 3232 709 2 2006-02-15 10:09:17
  13887. 3233 710 1 2006-02-15 10:09:17
  13888. 3234 710 1 2006-02-15 10:09:17
  13889. 3235 710 1 2006-02-15 10:09:17
  13890. 3236 710 1 2006-02-15 10:09:17
  13891. 3237 710 2 2006-02-15 10:09:17
  13892. 3238 710 2 2006-02-15 10:09:17
  13893. 3239 711 2 2006-02-15 10:09:17
  13894. 3240 711 2 2006-02-15 10:09:17
  13895. 3241 711 2 2006-02-15 10:09:17
  13896. 3242 711 2 2006-02-15 10:09:17
  13897. 3243 714 2 2006-02-15 10:09:17
  13898. 3244 714 2 2006-02-15 10:09:17
  13899. 3245 714 2 2006-02-15 10:09:17
  13900. 3246 715 1 2006-02-15 10:09:17
  13901. 3247 715 1 2006-02-15 10:09:17
  13902. 3248 715 1 2006-02-15 10:09:17
  13903. 3249 715 1 2006-02-15 10:09:17
  13904. 3250 715 2 2006-02-15 10:09:17
  13905. 3251 715 2 2006-02-15 10:09:17
  13906. 3252 715 2 2006-02-15 10:09:17
  13907. 3253 716 1 2006-02-15 10:09:17
  13908. 3254 716 1 2006-02-15 10:09:17
  13909. 3255 716 2 2006-02-15 10:09:17
  13910. 3256 716 2 2006-02-15 10:09:17
  13911. 3257 716 2 2006-02-15 10:09:17
  13912. 3258 717 1 2006-02-15 10:09:17
  13913. 3259 717 1 2006-02-15 10:09:17
  13914. 3260 717 2 2006-02-15 10:09:17
  13915. 3261 717 2 2006-02-15 10:09:17
  13916. 3262 718 2 2006-02-15 10:09:17
  13917. 3263 718 2 2006-02-15 10:09:17
  13918. 3264 719 1 2006-02-15 10:09:17
  13919. 3265 719 1 2006-02-15 10:09:17
  13920. 3266 720 1 2006-02-15 10:09:17
  13921. 3267 720 1 2006-02-15 10:09:17
  13922. 3268 720 1 2006-02-15 10:09:17
  13923. 3269 720 2 2006-02-15 10:09:17
  13924. 3270 720 2 2006-02-15 10:09:17
  13925. 3271 720 2 2006-02-15 10:09:17
  13926. 3272 720 2 2006-02-15 10:09:17
  13927. 3273 721 1 2006-02-15 10:09:17
  13928. 3274 721 1 2006-02-15 10:09:17
  13929. 3275 722 1 2006-02-15 10:09:17
  13930. 3276 722 1 2006-02-15 10:09:17
  13931. 3277 722 2 2006-02-15 10:09:17
  13932. 3278 722 2 2006-02-15 10:09:17
  13933. 3279 723 1 2006-02-15 10:09:17
  13934. 3280 723 1 2006-02-15 10:09:17
  13935. 3281 723 1 2006-02-15 10:09:17
  13936. 3282 723 1 2006-02-15 10:09:17
  13937. 3283 723 2 2006-02-15 10:09:17
  13938. 3284 723 2 2006-02-15 10:09:17
  13939. 3285 723 2 2006-02-15 10:09:17
  13940. 3286 724 1 2006-02-15 10:09:17
  13941. 3287 724 1 2006-02-15 10:09:17
  13942. 3288 724 2 2006-02-15 10:09:17
  13943. 3289 724 2 2006-02-15 10:09:17
  13944. 3290 724 2 2006-02-15 10:09:17
  13945. 3291 724 2 2006-02-15 10:09:17
  13946. 3292 725 1 2006-02-15 10:09:17
  13947. 3293 725 1 2006-02-15 10:09:17
  13948. 3294 725 1 2006-02-15 10:09:17
  13949. 3295 725 2 2006-02-15 10:09:17
  13950. 3296 725 2 2006-02-15 10:09:17
  13951. 3297 725 2 2006-02-15 10:09:17
  13952. 3298 726 2 2006-02-15 10:09:17
  13953. 3299 726 2 2006-02-15 10:09:17
  13954. 3300 726 2 2006-02-15 10:09:17
  13955. 3301 727 1 2006-02-15 10:09:17
  13956. 3302 727 1 2006-02-15 10:09:17
  13957. 3303 727 2 2006-02-15 10:09:17
  13958. 3304 727 2 2006-02-15 10:09:17
  13959. 3305 727 2 2006-02-15 10:09:17
  13960. 3306 728 1 2006-02-15 10:09:17
  13961. 3307 728 1 2006-02-15 10:09:17
  13962. 3308 728 1 2006-02-15 10:09:17
  13963. 3309 728 2 2006-02-15 10:09:17
  13964. 3310 728 2 2006-02-15 10:09:17
  13965. 3311 729 2 2006-02-15 10:09:17
  13966. 3312 729 2 2006-02-15 10:09:17
  13967. 3313 729 2 2006-02-15 10:09:17
  13968. 3314 729 2 2006-02-15 10:09:17
  13969. 3315 730 1 2006-02-15 10:09:17
  13970. 3316 730 1 2006-02-15 10:09:17
  13971. 3317 730 1 2006-02-15 10:09:17
  13972. 3318 730 1 2006-02-15 10:09:17
  13973. 3319 730 2 2006-02-15 10:09:17
  13974. 3320 730 2 2006-02-15 10:09:17
  13975. 3321 730 2 2006-02-15 10:09:17
  13976. 3322 730 2 2006-02-15 10:09:17
  13977. 3323 731 2 2006-02-15 10:09:17
  13978. 3324 731 2 2006-02-15 10:09:17
  13979. 3325 731 2 2006-02-15 10:09:17
  13980. 3326 732 1 2006-02-15 10:09:17
  13981. 3327 732 1 2006-02-15 10:09:17
  13982. 3328 732 1 2006-02-15 10:09:17
  13983. 3329 732 1 2006-02-15 10:09:17
  13984. 3330 733 1 2006-02-15 10:09:17
  13985. 3331 733 1 2006-02-15 10:09:17
  13986. 3332 733 1 2006-02-15 10:09:17
  13987. 3333 733 1 2006-02-15 10:09:17
  13988. 3334 733 2 2006-02-15 10:09:17
  13989. 3335 733 2 2006-02-15 10:09:17
  13990. 3336 733 2 2006-02-15 10:09:17
  13991. 3337 734 1 2006-02-15 10:09:17
  13992. 3338 734 1 2006-02-15 10:09:17
  13993. 3339 734 2 2006-02-15 10:09:17
  13994. 3340 734 2 2006-02-15 10:09:17
  13995. 3341 734 2 2006-02-15 10:09:17
  13996. 3342 734 2 2006-02-15 10:09:17
  13997. 3343 735 1 2006-02-15 10:09:17
  13998. 3344 735 1 2006-02-15 10:09:17
  13999. 3345 735 1 2006-02-15 10:09:17
  14000. 3346 735 2 2006-02-15 10:09:17
  14001. 3347 735 2 2006-02-15 10:09:17
  14002. 3348 735 2 2006-02-15 10:09:17
  14003. 3349 735 2 2006-02-15 10:09:17
  14004. 3350 736 1 2006-02-15 10:09:17
  14005. 3351 736 1 2006-02-15 10:09:17
  14006. 3352 736 1 2006-02-15 10:09:17
  14007. 3353 736 1 2006-02-15 10:09:17
  14008. 3354 737 1 2006-02-15 10:09:17
  14009. 3355 737 1 2006-02-15 10:09:17
  14010. 3356 737 2 2006-02-15 10:09:17
  14011. 3357 737 2 2006-02-15 10:09:17
  14012. 3358 737 2 2006-02-15 10:09:17
  14013. 3359 737 2 2006-02-15 10:09:17
  14014. 3360 738 1 2006-02-15 10:09:17
  14015. 3361 738 1 2006-02-15 10:09:17
  14016. 3362 738 1 2006-02-15 10:09:17
  14017. 3363 738 1 2006-02-15 10:09:17
  14018. 3364 738 2 2006-02-15 10:09:17
  14019. 3365 738 2 2006-02-15 10:09:17
  14020. 3366 738 2 2006-02-15 10:09:17
  14021. 3367 738 2 2006-02-15 10:09:17
  14022. 3368 739 1 2006-02-15 10:09:17
  14023. 3369 739 1 2006-02-15 10:09:17
  14024. 3370 739 2 2006-02-15 10:09:17
  14025. 3371 739 2 2006-02-15 10:09:17
  14026. 3372 739 2 2006-02-15 10:09:17
  14027. 3373 740 2 2006-02-15 10:09:17
  14028. 3374 740 2 2006-02-15 10:09:17
  14029. 3375 740 2 2006-02-15 10:09:17
  14030. 3376 741 1 2006-02-15 10:09:17
  14031. 3377 741 1 2006-02-15 10:09:17
  14032. 3378 741 1 2006-02-15 10:09:17
  14033. 3379 741 1 2006-02-15 10:09:17
  14034. 3380 741 2 2006-02-15 10:09:17
  14035. 3381 741 2 2006-02-15 10:09:17
  14036. 3382 743 1 2006-02-15 10:09:17
  14037. 3383 743 1 2006-02-15 10:09:17
  14038. 3384 743 2 2006-02-15 10:09:17
  14039. 3385 743 2 2006-02-15 10:09:17
  14040. 3386 743 2 2006-02-15 10:09:17
  14041. 3387 743 2 2006-02-15 10:09:17
  14042. 3388 744 1 2006-02-15 10:09:17
  14043. 3389 744 1 2006-02-15 10:09:17
  14044. 3390 744 2 2006-02-15 10:09:17
  14045. 3391 744 2 2006-02-15 10:09:17
  14046. 3392 744 2 2006-02-15 10:09:17
  14047. 3393 745 1 2006-02-15 10:09:17
  14048. 3394 745 1 2006-02-15 10:09:17
  14049. 3395 745 1 2006-02-15 10:09:17
  14050. 3396 745 1 2006-02-15 10:09:17
  14051. 3397 745 2 2006-02-15 10:09:17
  14052. 3398 745 2 2006-02-15 10:09:17
  14053. 3399 745 2 2006-02-15 10:09:17
  14054. 3400 745 2 2006-02-15 10:09:17
  14055. 3401 746 1 2006-02-15 10:09:17
  14056. 3402 746 1 2006-02-15 10:09:17
  14057. 3403 746 2 2006-02-15 10:09:17
  14058. 3404 746 2 2006-02-15 10:09:17
  14059. 3405 746 2 2006-02-15 10:09:17
  14060. 3406 747 1 2006-02-15 10:09:17
  14061. 3407 747 1 2006-02-15 10:09:17
  14062. 3408 747 2 2006-02-15 10:09:17
  14063. 3409 747 2 2006-02-15 10:09:17
  14064. 3410 747 2 2006-02-15 10:09:17
  14065. 3411 748 1 2006-02-15 10:09:17
  14066. 3412 748 1 2006-02-15 10:09:17
  14067. 3413 748 1 2006-02-15 10:09:17
  14068. 3414 748 1 2006-02-15 10:09:17
  14069. 3415 748 2 2006-02-15 10:09:17
  14070. 3416 748 2 2006-02-15 10:09:17
  14071. 3417 748 2 2006-02-15 10:09:17
  14072. 3418 748 2 2006-02-15 10:09:17
  14073. 3419 749 1 2006-02-15 10:09:17
  14074. 3420 749 1 2006-02-15 10:09:17
  14075. 3421 749 2 2006-02-15 10:09:17
  14076. 3422 749 2 2006-02-15 10:09:17
  14077. 3423 750 1 2006-02-15 10:09:17
  14078. 3424 750 1 2006-02-15 10:09:17
  14079. 3425 750 1 2006-02-15 10:09:17
  14080. 3426 751 2 2006-02-15 10:09:17
  14081. 3427 751 2 2006-02-15 10:09:17
  14082. 3428 752 2 2006-02-15 10:09:17
  14083. 3429 752 2 2006-02-15 10:09:17
  14084. 3430 752 2 2006-02-15 10:09:17
  14085. 3431 753 1 2006-02-15 10:09:17
  14086. 3432 753 1 2006-02-15 10:09:17
  14087. 3433 753 1 2006-02-15 10:09:17
  14088. 3434 753 1 2006-02-15 10:09:17
  14089. 3435 753 2 2006-02-15 10:09:17
  14090. 3436 753 2 2006-02-15 10:09:17
  14091. 3437 753 2 2006-02-15 10:09:17
  14092. 3438 753 2 2006-02-15 10:09:17
  14093. 3439 754 2 2006-02-15 10:09:17
  14094. 3440 754 2 2006-02-15 10:09:17
  14095. 3441 755 1 2006-02-15 10:09:17
  14096. 3442 755 1 2006-02-15 10:09:17
  14097. 3443 755 1 2006-02-15 10:09:17
  14098. 3444 755 1 2006-02-15 10:09:17
  14099. 3445 755 2 2006-02-15 10:09:17
  14100. 3446 755 2 2006-02-15 10:09:17
  14101. 3447 755 2 2006-02-15 10:09:17
  14102. 3448 756 2 2006-02-15 10:09:17
  14103. 3449 756 2 2006-02-15 10:09:17
  14104. 3450 756 2 2006-02-15 10:09:17
  14105. 3451 757 1 2006-02-15 10:09:17
  14106. 3452 757 1 2006-02-15 10:09:17
  14107. 3453 757 1 2006-02-15 10:09:17
  14108. 3454 757 2 2006-02-15 10:09:17
  14109. 3455 757 2 2006-02-15 10:09:17
  14110. 3456 758 2 2006-02-15 10:09:17
  14111. 3457 758 2 2006-02-15 10:09:17
  14112. 3458 758 2 2006-02-15 10:09:17
  14113. 3459 759 1 2006-02-15 10:09:17
  14114. 3460 759 1 2006-02-15 10:09:17
  14115. 3461 759 2 2006-02-15 10:09:17
  14116. 3462 759 2 2006-02-15 10:09:17
  14117. 3463 759 2 2006-02-15 10:09:17
  14118. 3464 759 2 2006-02-15 10:09:17
  14119. 3465 760 1 2006-02-15 10:09:17
  14120. 3466 760 1 2006-02-15 10:09:17
  14121. 3467 760 1 2006-02-15 10:09:17
  14122. 3468 760 2 2006-02-15 10:09:17
  14123. 3469 760 2 2006-02-15 10:09:17
  14124. 3470 760 2 2006-02-15 10:09:17
  14125. 3471 760 2 2006-02-15 10:09:17
  14126. 3472 761 2 2006-02-15 10:09:17
  14127. 3473 761 2 2006-02-15 10:09:17
  14128. 3474 761 2 2006-02-15 10:09:17
  14129. 3475 762 2 2006-02-15 10:09:17
  14130. 3476 762 2 2006-02-15 10:09:17
  14131. 3477 762 2 2006-02-15 10:09:17
  14132. 3478 762 2 2006-02-15 10:09:17
  14133. 3479 763 1 2006-02-15 10:09:17
  14134. 3480 763 1 2006-02-15 10:09:17
  14135. 3481 763 1 2006-02-15 10:09:17
  14136. 3482 763 2 2006-02-15 10:09:17
  14137. 3483 763 2 2006-02-15 10:09:17
  14138. 3484 764 1 2006-02-15 10:09:17
  14139. 3485 764 1 2006-02-15 10:09:17
  14140. 3486 764 1 2006-02-15 10:09:17
  14141. 3487 764 1 2006-02-15 10:09:17
  14142. 3488 764 2 2006-02-15 10:09:17
  14143. 3489 764 2 2006-02-15 10:09:17
  14144. 3490 764 2 2006-02-15 10:09:17
  14145. 3491 764 2 2006-02-15 10:09:17
  14146. 3492 765 1 2006-02-15 10:09:17
  14147. 3493 765 1 2006-02-15 10:09:17
  14148. 3494 765 1 2006-02-15 10:09:17
  14149. 3495 765 1 2006-02-15 10:09:17
  14150. 3496 766 1 2006-02-15 10:09:17
  14151. 3497 766 1 2006-02-15 10:09:17
  14152. 3498 766 1 2006-02-15 10:09:17
  14153. 3499 767 1 2006-02-15 10:09:17
  14154. 3500 767 1 2006-02-15 10:09:17
  14155. 3501 767 1 2006-02-15 10:09:17
  14156. 3502 767 1 2006-02-15 10:09:17
  14157. 3503 767 2 2006-02-15 10:09:17
  14158. 3504 767 2 2006-02-15 10:09:17
  14159. 3505 767 2 2006-02-15 10:09:17
  14160. 3506 767 2 2006-02-15 10:09:17
  14161. 3507 768 1 2006-02-15 10:09:17
  14162. 3508 768 1 2006-02-15 10:09:17
  14163. 3509 768 1 2006-02-15 10:09:17
  14164. 3510 768 2 2006-02-15 10:09:17
  14165. 3511 768 2 2006-02-15 10:09:17
  14166. 3512 768 2 2006-02-15 10:09:17
  14167. 3513 769 2 2006-02-15 10:09:17
  14168. 3514 769 2 2006-02-15 10:09:17
  14169. 3515 770 2 2006-02-15 10:09:17
  14170. 3516 770 2 2006-02-15 10:09:17
  14171. 3517 770 2 2006-02-15 10:09:17
  14172. 3518 771 1 2006-02-15 10:09:17
  14173. 3519 771 1 2006-02-15 10:09:17
  14174. 3520 771 1 2006-02-15 10:09:17
  14175. 3521 771 2 2006-02-15 10:09:17
  14176. 3522 771 2 2006-02-15 10:09:17
  14177. 3523 771 2 2006-02-15 10:09:17
  14178. 3524 771 2 2006-02-15 10:09:17
  14179. 3525 772 1 2006-02-15 10:09:17
  14180. 3526 772 1 2006-02-15 10:09:17
  14181. 3527 772 1 2006-02-15 10:09:17
  14182. 3528 772 1 2006-02-15 10:09:17
  14183. 3529 772 2 2006-02-15 10:09:17
  14184. 3530 772 2 2006-02-15 10:09:17
  14185. 3531 773 1 2006-02-15 10:09:17
  14186. 3532 773 1 2006-02-15 10:09:17
  14187. 3533 773 1 2006-02-15 10:09:17
  14188. 3534 773 1 2006-02-15 10:09:17
  14189. 3535 773 2 2006-02-15 10:09:17
  14190. 3536 773 2 2006-02-15 10:09:17
  14191. 3537 773 2 2006-02-15 10:09:17
  14192. 3538 773 2 2006-02-15 10:09:17
  14193. 3539 774 1 2006-02-15 10:09:17
  14194. 3540 774 1 2006-02-15 10:09:17
  14195. 3541 774 1 2006-02-15 10:09:17
  14196. 3542 774 1 2006-02-15 10:09:17
  14197. 3543 775 1 2006-02-15 10:09:17
  14198. 3544 775 1 2006-02-15 10:09:17
  14199. 3545 775 1 2006-02-15 10:09:17
  14200. 3546 775 2 2006-02-15 10:09:17
  14201. 3547 775 2 2006-02-15 10:09:17
  14202. 3548 776 1 2006-02-15 10:09:17
  14203. 3549 776 1 2006-02-15 10:09:17
  14204. 3550 776 2 2006-02-15 10:09:17
  14205. 3551 776 2 2006-02-15 10:09:17
  14206. 3552 776 2 2006-02-15 10:09:17
  14207. 3553 777 1 2006-02-15 10:09:17
  14208. 3554 777 1 2006-02-15 10:09:17
  14209. 3555 777 1 2006-02-15 10:09:17
  14210. 3556 777 2 2006-02-15 10:09:17
  14211. 3557 777 2 2006-02-15 10:09:17
  14212. 3558 777 2 2006-02-15 10:09:17
  14213. 3559 778 1 2006-02-15 10:09:17
  14214. 3560 778 1 2006-02-15 10:09:17
  14215. 3561 778 1 2006-02-15 10:09:17
  14216. 3562 778 1 2006-02-15 10:09:17
  14217. 3563 778 2 2006-02-15 10:09:17
  14218. 3564 778 2 2006-02-15 10:09:17
  14219. 3565 779 2 2006-02-15 10:09:17
  14220. 3566 779 2 2006-02-15 10:09:17
  14221. 3567 780 2 2006-02-15 10:09:17
  14222. 3568 780 2 2006-02-15 10:09:17
  14223. 3569 780 2 2006-02-15 10:09:17
  14224. 3570 781 2 2006-02-15 10:09:17
  14225. 3571 781 2 2006-02-15 10:09:17
  14226. 3572 782 1 2006-02-15 10:09:17
  14227. 3573 782 1 2006-02-15 10:09:17
  14228. 3574 782 1 2006-02-15 10:09:17
  14229. 3575 782 2 2006-02-15 10:09:17
  14230. 3576 782 2 2006-02-15 10:09:17
  14231. 3577 782 2 2006-02-15 10:09:17
  14232. 3578 783 1 2006-02-15 10:09:17
  14233. 3579 783 1 2006-02-15 10:09:17
  14234. 3580 783 1 2006-02-15 10:09:17
  14235. 3581 783 1 2006-02-15 10:09:17
  14236. 3582 784 1 2006-02-15 10:09:17
  14237. 3583 784 1 2006-02-15 10:09:17
  14238. 3584 784 1 2006-02-15 10:09:17
  14239. 3585 784 2 2006-02-15 10:09:17
  14240. 3586 784 2 2006-02-15 10:09:17
  14241. 3587 784 2 2006-02-15 10:09:17
  14242. 3588 785 1 2006-02-15 10:09:17
  14243. 3589 785 1 2006-02-15 10:09:17
  14244. 3590 785 1 2006-02-15 10:09:17
  14245. 3591 785 1 2006-02-15 10:09:17
  14246. 3592 785 2 2006-02-15 10:09:17
  14247. 3593 785 2 2006-02-15 10:09:17
  14248. 3594 786 1 2006-02-15 10:09:17
  14249. 3595 786 1 2006-02-15 10:09:17
  14250. 3596 786 1 2006-02-15 10:09:17
  14251. 3597 786 2 2006-02-15 10:09:17
  14252. 3598 786 2 2006-02-15 10:09:17
  14253. 3599 786 2 2006-02-15 10:09:17
  14254. 3600 786 2 2006-02-15 10:09:17
  14255. 3601 787 1 2006-02-15 10:09:17
  14256. 3602 787 1 2006-02-15 10:09:17
  14257. 3603 787 1 2006-02-15 10:09:17
  14258. 3604 788 1 2006-02-15 10:09:17
  14259. 3605 788 1 2006-02-15 10:09:17
  14260. 3606 788 2 2006-02-15 10:09:17
  14261. 3607 788 2 2006-02-15 10:09:17
  14262. 3608 789 1 2006-02-15 10:09:17
  14263. 3609 789 1 2006-02-15 10:09:17
  14264. 3610 789 1 2006-02-15 10:09:17
  14265. 3611 789 1 2006-02-15 10:09:17
  14266. 3612 789 2 2006-02-15 10:09:17
  14267. 3613 789 2 2006-02-15 10:09:17
  14268. 3614 789 2 2006-02-15 10:09:17
  14269. 3615 789 2 2006-02-15 10:09:17
  14270. 3616 790 1 2006-02-15 10:09:17
  14271. 3617 790 1 2006-02-15 10:09:17
  14272. 3618 790 1 2006-02-15 10:09:17
  14273. 3619 790 1 2006-02-15 10:09:17
  14274. 3620 790 2 2006-02-15 10:09:17
  14275. 3621 790 2 2006-02-15 10:09:17
  14276. 3622 790 2 2006-02-15 10:09:17
  14277. 3623 791 1 2006-02-15 10:09:17
  14278. 3624 791 1 2006-02-15 10:09:17
  14279. 3625 791 2 2006-02-15 10:09:17
  14280. 3626 791 2 2006-02-15 10:09:17
  14281. 3627 791 2 2006-02-15 10:09:17
  14282. 3628 791 2 2006-02-15 10:09:17
  14283. 3629 792 2 2006-02-15 10:09:17
  14284. 3630 792 2 2006-02-15 10:09:17
  14285. 3631 792 2 2006-02-15 10:09:17
  14286. 3632 793 1 2006-02-15 10:09:17
  14287. 3633 793 1 2006-02-15 10:09:17
  14288. 3634 793 1 2006-02-15 10:09:17
  14289. 3635 793 1 2006-02-15 10:09:17
  14290. 3636 794 1 2006-02-15 10:09:17
  14291. 3637 794 1 2006-02-15 10:09:17
  14292. 3638 794 2 2006-02-15 10:09:17
  14293. 3639 794 2 2006-02-15 10:09:17
  14294. 3640 795 1 2006-02-15 10:09:17
  14295. 3641 795 1 2006-02-15 10:09:17
  14296. 3642 795 1 2006-02-15 10:09:17
  14297. 3643 795 1 2006-02-15 10:09:17
  14298. 3644 796 1 2006-02-15 10:09:17
  14299. 3645 796 1 2006-02-15 10:09:17
  14300. 3646 796 2 2006-02-15 10:09:17
  14301. 3647 796 2 2006-02-15 10:09:17
  14302. 3648 796 2 2006-02-15 10:09:17
  14303. 3649 797 1 2006-02-15 10:09:17
  14304. 3650 797 1 2006-02-15 10:09:17
  14305. 3651 797 2 2006-02-15 10:09:17
  14306. 3652 797 2 2006-02-15 10:09:17
  14307. 3653 797 2 2006-02-15 10:09:17
  14308. 3654 798 1 2006-02-15 10:09:17
  14309. 3655 798 1 2006-02-15 10:09:17
  14310. 3656 798 2 2006-02-15 10:09:17
  14311. 3657 798 2 2006-02-15 10:09:17
  14312. 3658 799 1 2006-02-15 10:09:17
  14313. 3659 799 1 2006-02-15 10:09:17
  14314. 3660 800 1 2006-02-15 10:09:17
  14315. 3661 800 1 2006-02-15 10:09:17
  14316. 3662 800 2 2006-02-15 10:09:17
  14317. 3663 800 2 2006-02-15 10:09:17
  14318. 3664 800 2 2006-02-15 10:09:17
  14319. 3665 800 2 2006-02-15 10:09:17
  14320. 3666 803 1 2006-02-15 10:09:17
  14321. 3667 803 1 2006-02-15 10:09:17
  14322. 3668 803 1 2006-02-15 10:09:17
  14323. 3669 803 1 2006-02-15 10:09:17
  14324. 3670 803 2 2006-02-15 10:09:17
  14325. 3671 803 2 2006-02-15 10:09:17
  14326. 3672 804 1 2006-02-15 10:09:17
  14327. 3673 804 1 2006-02-15 10:09:17
  14328. 3674 804 1 2006-02-15 10:09:17
  14329. 3675 804 1 2006-02-15 10:09:17
  14330. 3676 804 2 2006-02-15 10:09:17
  14331. 3677 804 2 2006-02-15 10:09:17
  14332. 3678 804 2 2006-02-15 10:09:17
  14333. 3679 805 1 2006-02-15 10:09:17
  14334. 3680 805 1 2006-02-15 10:09:17
  14335. 3681 805 2 2006-02-15 10:09:17
  14336. 3682 805 2 2006-02-15 10:09:17
  14337. 3683 805 2 2006-02-15 10:09:17
  14338. 3684 806 1 2006-02-15 10:09:17
  14339. 3685 806 1 2006-02-15 10:09:17
  14340. 3686 806 1 2006-02-15 10:09:17
  14341. 3687 806 2 2006-02-15 10:09:17
  14342. 3688 806 2 2006-02-15 10:09:17
  14343. 3689 807 1 2006-02-15 10:09:17
  14344. 3690 807 1 2006-02-15 10:09:17
  14345. 3691 807 1 2006-02-15 10:09:17
  14346. 3692 807 2 2006-02-15 10:09:17
  14347. 3693 807 2 2006-02-15 10:09:17
  14348. 3694 808 2 2006-02-15 10:09:17
  14349. 3695 808 2 2006-02-15 10:09:17
  14350. 3696 809 2 2006-02-15 10:09:17
  14351. 3697 809 2 2006-02-15 10:09:17
  14352. 3698 809 2 2006-02-15 10:09:17
  14353. 3699 809 2 2006-02-15 10:09:17
  14354. 3700 810 1 2006-02-15 10:09:17
  14355. 3701 810 1 2006-02-15 10:09:17
  14356. 3702 810 1 2006-02-15 10:09:17
  14357. 3703 810 1 2006-02-15 10:09:17
  14358. 3704 810 2 2006-02-15 10:09:17
  14359. 3705 810 2 2006-02-15 10:09:17
  14360. 3706 810 2 2006-02-15 10:09:17
  14361. 3707 811 1 2006-02-15 10:09:17
  14362. 3708 811 1 2006-02-15 10:09:17
  14363. 3709 811 1 2006-02-15 10:09:17
  14364. 3710 812 1 2006-02-15 10:09:17
  14365. 3711 812 1 2006-02-15 10:09:17
  14366. 3712 812 1 2006-02-15 10:09:17
  14367. 3713 812 2 2006-02-15 10:09:17
  14368. 3714 812 2 2006-02-15 10:09:17
  14369. 3715 812 2 2006-02-15 10:09:17
  14370. 3716 813 2 2006-02-15 10:09:17
  14371. 3717 813 2 2006-02-15 10:09:17
  14372. 3718 813 2 2006-02-15 10:09:17
  14373. 3719 813 2 2006-02-15 10:09:17
  14374. 3720 814 1 2006-02-15 10:09:17
  14375. 3721 814 1 2006-02-15 10:09:17
  14376. 3722 814 1 2006-02-15 10:09:17
  14377. 3723 814 2 2006-02-15 10:09:17
  14378. 3724 814 2 2006-02-15 10:09:17
  14379. 3725 814 2 2006-02-15 10:09:17
  14380. 3726 814 2 2006-02-15 10:09:17
  14381. 3727 815 1 2006-02-15 10:09:17
  14382. 3728 815 1 2006-02-15 10:09:17
  14383. 3729 815 1 2006-02-15 10:09:17
  14384. 3730 816 1 2006-02-15 10:09:17
  14385. 3731 816 1 2006-02-15 10:09:17
  14386. 3732 816 1 2006-02-15 10:09:17
  14387. 3733 816 1 2006-02-15 10:09:17
  14388. 3734 816 2 2006-02-15 10:09:17
  14389. 3735 816 2 2006-02-15 10:09:17
  14390. 3736 816 2 2006-02-15 10:09:17
  14391. 3737 817 1 2006-02-15 10:09:17
  14392. 3738 817 1 2006-02-15 10:09:17
  14393. 3739 818 1 2006-02-15 10:09:17
  14394. 3740 818 1 2006-02-15 10:09:17
  14395. 3741 818 1 2006-02-15 10:09:17
  14396. 3742 818 2 2006-02-15 10:09:17
  14397. 3743 818 2 2006-02-15 10:09:17
  14398. 3744 819 1 2006-02-15 10:09:17
  14399. 3745 819 1 2006-02-15 10:09:17
  14400. 3746 819 1 2006-02-15 10:09:17
  14401. 3747 820 1 2006-02-15 10:09:17
  14402. 3748 820 1 2006-02-15 10:09:17
  14403. 3749 820 1 2006-02-15 10:09:17
  14404. 3750 820 1 2006-02-15 10:09:17
  14405. 3751 820 2 2006-02-15 10:09:17
  14406. 3752 820 2 2006-02-15 10:09:17
  14407. 3753 821 2 2006-02-15 10:09:17
  14408. 3754 821 2 2006-02-15 10:09:17
  14409. 3755 821 2 2006-02-15 10:09:17
  14410. 3756 821 2 2006-02-15 10:09:17
  14411. 3757 822 2 2006-02-15 10:09:17
  14412. 3758 822 2 2006-02-15 10:09:17
  14413. 3759 823 1 2006-02-15 10:09:17
  14414. 3760 823 1 2006-02-15 10:09:17
  14415. 3761 823 1 2006-02-15 10:09:17
  14416. 3762 823 2 2006-02-15 10:09:17
  14417. 3763 823 2 2006-02-15 10:09:17
  14418. 3764 823 2 2006-02-15 10:09:17
  14419. 3765 823 2 2006-02-15 10:09:17
  14420. 3766 824 2 2006-02-15 10:09:17
  14421. 3767 824 2 2006-02-15 10:09:17
  14422. 3768 824 2 2006-02-15 10:09:17
  14423. 3769 824 2 2006-02-15 10:09:17
  14424. 3770 825 1 2006-02-15 10:09:17
  14425. 3771 825 1 2006-02-15 10:09:17
  14426. 3772 825 1 2006-02-15 10:09:17
  14427. 3773 826 2 2006-02-15 10:09:17
  14428. 3774 826 2 2006-02-15 10:09:17
  14429. 3775 827 1 2006-02-15 10:09:17
  14430. 3776 827 1 2006-02-15 10:09:17
  14431. 3777 827 2 2006-02-15 10:09:17
  14432. 3778 827 2 2006-02-15 10:09:17
  14433. 3779 827 2 2006-02-15 10:09:17
  14434. 3780 827 2 2006-02-15 10:09:17
  14435. 3781 828 2 2006-02-15 10:09:17
  14436. 3782 828 2 2006-02-15 10:09:17
  14437. 3783 828 2 2006-02-15 10:09:17
  14438. 3784 828 2 2006-02-15 10:09:17
  14439. 3785 829 1 2006-02-15 10:09:17
  14440. 3786 829 1 2006-02-15 10:09:17
  14441. 3787 829 2 2006-02-15 10:09:17
  14442. 3788 829 2 2006-02-15 10:09:17
  14443. 3789 829 2 2006-02-15 10:09:17
  14444. 3790 830 2 2006-02-15 10:09:17
  14445. 3791 830 2 2006-02-15 10:09:17
  14446. 3792 830 2 2006-02-15 10:09:17
  14447. 3793 830 2 2006-02-15 10:09:17
  14448. 3794 831 1 2006-02-15 10:09:17
  14449. 3795 831 1 2006-02-15 10:09:17
  14450. 3796 831 1 2006-02-15 10:09:17
  14451. 3797 832 1 2006-02-15 10:09:17
  14452. 3798 832 1 2006-02-15 10:09:17
  14453. 3799 832 1 2006-02-15 10:09:17
  14454. 3800 832 1 2006-02-15 10:09:17
  14455. 3801 833 1 2006-02-15 10:09:17
  14456. 3802 833 1 2006-02-15 10:09:17
  14457. 3803 833 1 2006-02-15 10:09:17
  14458. 3804 833 2 2006-02-15 10:09:17
  14459. 3805 833 2 2006-02-15 10:09:17
  14460. 3806 833 2 2006-02-15 10:09:17
  14461. 3807 833 2 2006-02-15 10:09:17
  14462. 3808 834 2 2006-02-15 10:09:17
  14463. 3809 834 2 2006-02-15 10:09:17
  14464. 3810 834 2 2006-02-15 10:09:17
  14465. 3811 835 1 2006-02-15 10:09:17
  14466. 3812 835 1 2006-02-15 10:09:17
  14467. 3813 835 1 2006-02-15 10:09:17
  14468. 3814 835 1 2006-02-15 10:09:17
  14469. 3815 835 2 2006-02-15 10:09:17
  14470. 3816 835 2 2006-02-15 10:09:17
  14471. 3817 835 2 2006-02-15 10:09:17
  14472. 3818 835 2 2006-02-15 10:09:17
  14473. 3819 836 1 2006-02-15 10:09:17
  14474. 3820 836 1 2006-02-15 10:09:17
  14475. 3821 836 1 2006-02-15 10:09:17
  14476. 3822 837 2 2006-02-15 10:09:17
  14477. 3823 837 2 2006-02-15 10:09:17
  14478. 3824 837 2 2006-02-15 10:09:17
  14479. 3825 838 1 2006-02-15 10:09:17
  14480. 3826 838 1 2006-02-15 10:09:17
  14481. 3827 838 2 2006-02-15 10:09:17
  14482. 3828 838 2 2006-02-15 10:09:17
  14483. 3829 838 2 2006-02-15 10:09:17
  14484. 3830 838 2 2006-02-15 10:09:17
  14485. 3831 839 2 2006-02-15 10:09:17
  14486. 3832 839 2 2006-02-15 10:09:17
  14487. 3833 840 1 2006-02-15 10:09:17
  14488. 3834 840 1 2006-02-15 10:09:17
  14489. 3835 840 1 2006-02-15 10:09:17
  14490. 3836 840 1 2006-02-15 10:09:17
  14491. 3837 841 1 2006-02-15 10:09:17
  14492. 3838 841 1 2006-02-15 10:09:17
  14493. 3839 841 1 2006-02-15 10:09:17
  14494. 3840 841 2 2006-02-15 10:09:17
  14495. 3841 841 2 2006-02-15 10:09:17
  14496. 3842 841 2 2006-02-15 10:09:17
  14497. 3843 841 2 2006-02-15 10:09:17
  14498. 3844 842 1 2006-02-15 10:09:17
  14499. 3845 842 1 2006-02-15 10:09:17
  14500. 3846 842 2 2006-02-15 10:09:17
  14501. 3847 842 2 2006-02-15 10:09:17
  14502. 3848 843 1 2006-02-15 10:09:17
  14503. 3849 843 1 2006-02-15 10:09:17
  14504. 3850 843 1 2006-02-15 10:09:17
  14505. 3851 843 1 2006-02-15 10:09:17
  14506. 3852 843 2 2006-02-15 10:09:17
  14507. 3853 843 2 2006-02-15 10:09:17
  14508. 3854 843 2 2006-02-15 10:09:17
  14509. 3855 844 1 2006-02-15 10:09:17
  14510. 3856 844 1 2006-02-15 10:09:17
  14511. 3857 844 2 2006-02-15 10:09:17
  14512. 3858 844 2 2006-02-15 10:09:17
  14513. 3859 845 1 2006-02-15 10:09:17
  14514. 3860 845 1 2006-02-15 10:09:17
  14515. 3861 845 1 2006-02-15 10:09:17
  14516. 3862 845 1 2006-02-15 10:09:17
  14517. 3863 845 2 2006-02-15 10:09:17
  14518. 3864 845 2 2006-02-15 10:09:17
  14519. 3865 845 2 2006-02-15 10:09:17
  14520. 3866 846 1 2006-02-15 10:09:17
  14521. 3867 846 1 2006-02-15 10:09:17
  14522. 3868 846 1 2006-02-15 10:09:17
  14523. 3869 846 1 2006-02-15 10:09:17
  14524. 3870 846 2 2006-02-15 10:09:17
  14525. 3871 846 2 2006-02-15 10:09:17
  14526. 3872 846 2 2006-02-15 10:09:17
  14527. 3873 846 2 2006-02-15 10:09:17
  14528. 3874 847 2 2006-02-15 10:09:17
  14529. 3875 847 2 2006-02-15 10:09:17
  14530. 3876 847 2 2006-02-15 10:09:17
  14531. 3877 847 2 2006-02-15 10:09:17
  14532. 3878 848 1 2006-02-15 10:09:17
  14533. 3879 848 1 2006-02-15 10:09:17
  14534. 3880 848 1 2006-02-15 10:09:17
  14535. 3881 849 1 2006-02-15 10:09:17
  14536. 3882 849 1 2006-02-15 10:09:17
  14537. 3883 849 1 2006-02-15 10:09:17
  14538. 3884 849 1 2006-02-15 10:09:17
  14539. 3885 849 2 2006-02-15 10:09:17
  14540. 3886 849 2 2006-02-15 10:09:17
  14541. 3887 849 2 2006-02-15 10:09:17
  14542. 3888 849 2 2006-02-15 10:09:17
  14543. 3889 850 1 2006-02-15 10:09:17
  14544. 3890 850 1 2006-02-15 10:09:17
  14545. 3891 850 1 2006-02-15 10:09:17
  14546. 3892 850 2 2006-02-15 10:09:17
  14547. 3893 850 2 2006-02-15 10:09:17
  14548. 3894 850 2 2006-02-15 10:09:17
  14549. 3895 850 2 2006-02-15 10:09:17
  14550. 3896 851 1 2006-02-15 10:09:17
  14551. 3897 851 1 2006-02-15 10:09:17
  14552. 3898 851 1 2006-02-15 10:09:17
  14553. 3899 851 2 2006-02-15 10:09:17
  14554. 3900 851 2 2006-02-15 10:09:17
  14555. 3901 851 2 2006-02-15 10:09:17
  14556. 3902 852 1 2006-02-15 10:09:17
  14557. 3903 852 1 2006-02-15 10:09:17
  14558. 3904 852 1 2006-02-15 10:09:17
  14559. 3905 852 1 2006-02-15 10:09:17
  14560. 3906 852 2 2006-02-15 10:09:17
  14561. 3907 852 2 2006-02-15 10:09:17
  14562. 3908 852 2 2006-02-15 10:09:17
  14563. 3909 853 1 2006-02-15 10:09:17
  14564. 3910 853 1 2006-02-15 10:09:17
  14565. 3911 853 1 2006-02-15 10:09:17
  14566. 3912 854 2 2006-02-15 10:09:17
  14567. 3913 854 2 2006-02-15 10:09:17
  14568. 3914 854 2 2006-02-15 10:09:17
  14569. 3915 854 2 2006-02-15 10:09:17
  14570. 3916 855 1 2006-02-15 10:09:17
  14571. 3917 855 1 2006-02-15 10:09:17
  14572. 3918 855 2 2006-02-15 10:09:17
  14573. 3919 855 2 2006-02-15 10:09:17
  14574. 3920 856 1 2006-02-15 10:09:17
  14575. 3921 856 1 2006-02-15 10:09:17
  14576. 3922 856 1 2006-02-15 10:09:17
  14577. 3923 856 1 2006-02-15 10:09:17
  14578. 3924 856 2 2006-02-15 10:09:17
  14579. 3925 856 2 2006-02-15 10:09:17
  14580. 3926 856 2 2006-02-15 10:09:17
  14581. 3927 856 2 2006-02-15 10:09:17
  14582. 3928 857 1 2006-02-15 10:09:17
  14583. 3929 857 1 2006-02-15 10:09:17
  14584. 3930 857 1 2006-02-15 10:09:17
  14585. 3931 857 2 2006-02-15 10:09:17
  14586. 3932 857 2 2006-02-15 10:09:17
  14587. 3933 857 2 2006-02-15 10:09:17
  14588. 3934 857 2 2006-02-15 10:09:17
  14589. 3935 858 2 2006-02-15 10:09:17
  14590. 3936 858 2 2006-02-15 10:09:17
  14591. 3937 858 2 2006-02-15 10:09:17
  14592. 3938 858 2 2006-02-15 10:09:17
  14593. 3939 859 1 2006-02-15 10:09:17
  14594. 3940 859 1 2006-02-15 10:09:17
  14595. 3941 859 1 2006-02-15 10:09:17
  14596. 3942 859 2 2006-02-15 10:09:17
  14597. 3943 859 2 2006-02-15 10:09:17
  14598. 3944 859 2 2006-02-15 10:09:17
  14599. 3945 861 1 2006-02-15 10:09:17
  14600. 3946 861 1 2006-02-15 10:09:17
  14601. 3947 861 1 2006-02-15 10:09:17
  14602. 3948 861 2 2006-02-15 10:09:17
  14603. 3949 861 2 2006-02-15 10:09:17
  14604. 3950 861 2 2006-02-15 10:09:17
  14605. 3951 862 1 2006-02-15 10:09:17
  14606. 3952 862 1 2006-02-15 10:09:17
  14607. 3953 862 1 2006-02-15 10:09:17
  14608. 3954 862 2 2006-02-15 10:09:17
  14609. 3955 862 2 2006-02-15 10:09:17
  14610. 3956 863 1 2006-02-15 10:09:17
  14611. 3957 863 1 2006-02-15 10:09:17
  14612. 3958 863 1 2006-02-15 10:09:17
  14613. 3959 863 1 2006-02-15 10:09:17
  14614. 3960 863 2 2006-02-15 10:09:17
  14615. 3961 863 2 2006-02-15 10:09:17
  14616. 3962 863 2 2006-02-15 10:09:17
  14617. 3963 864 1 2006-02-15 10:09:17
  14618. 3964 864 1 2006-02-15 10:09:17
  14619. 3965 864 1 2006-02-15 10:09:17
  14620. 3966 864 1 2006-02-15 10:09:17
  14621. 3967 864 2 2006-02-15 10:09:17
  14622. 3968 864 2 2006-02-15 10:09:17
  14623. 3969 865 1 2006-02-15 10:09:17
  14624. 3970 865 1 2006-02-15 10:09:17
  14625. 3971 865 1 2006-02-15 10:09:17
  14626. 3972 865 1 2006-02-15 10:09:17
  14627. 3973 865 2 2006-02-15 10:09:17
  14628. 3974 865 2 2006-02-15 10:09:17
  14629. 3975 866 2 2006-02-15 10:09:17
  14630. 3976 866 2 2006-02-15 10:09:17
  14631. 3977 867 1 2006-02-15 10:09:17
  14632. 3978 867 1 2006-02-15 10:09:17
  14633. 3979 867 1 2006-02-15 10:09:17
  14634. 3980 867 1 2006-02-15 10:09:17
  14635. 3981 868 1 2006-02-15 10:09:17
  14636. 3982 868 1 2006-02-15 10:09:17
  14637. 3983 868 1 2006-02-15 10:09:17
  14638. 3984 869 1 2006-02-15 10:09:17
  14639. 3985 869 1 2006-02-15 10:09:17
  14640. 3986 869 1 2006-02-15 10:09:17
  14641. 3987 869 1 2006-02-15 10:09:17
  14642. 3988 869 2 2006-02-15 10:09:17
  14643. 3989 869 2 2006-02-15 10:09:17
  14644. 3990 869 2 2006-02-15 10:09:17
  14645. 3991 870 1 2006-02-15 10:09:17
  14646. 3992 870 1 2006-02-15 10:09:17
  14647. 3993 870 1 2006-02-15 10:09:17
  14648. 3994 870 1 2006-02-15 10:09:17
  14649. 3995 870 2 2006-02-15 10:09:17
  14650. 3996 870 2 2006-02-15 10:09:17
  14651. 3997 870 2 2006-02-15 10:09:17
  14652. 3998 870 2 2006-02-15 10:09:17
  14653. 3999 871 1 2006-02-15 10:09:17
  14654. 4000 871 1 2006-02-15 10:09:17
  14655. 4001 871 2 2006-02-15 10:09:17
  14656. 4002 871 2 2006-02-15 10:09:17
  14657. 4003 871 2 2006-02-15 10:09:17
  14658. 4004 872 2 2006-02-15 10:09:17
  14659. 4005 872 2 2006-02-15 10:09:17
  14660. 4006 872 2 2006-02-15 10:09:17
  14661. 4007 873 1 2006-02-15 10:09:17
  14662. 4008 873 1 2006-02-15 10:09:17
  14663. 4009 873 1 2006-02-15 10:09:17
  14664. 4010 873 1 2006-02-15 10:09:17
  14665. 4011 873 2 2006-02-15 10:09:17
  14666. 4012 873 2 2006-02-15 10:09:17
  14667. 4013 873 2 2006-02-15 10:09:17
  14668. 4014 873 2 2006-02-15 10:09:17
  14669. 4015 875 1 2006-02-15 10:09:17
  14670. 4016 875 1 2006-02-15 10:09:17
  14671. 4017 875 1 2006-02-15 10:09:17
  14672. 4018 875 2 2006-02-15 10:09:17
  14673. 4019 875 2 2006-02-15 10:09:17
  14674. 4020 875 2 2006-02-15 10:09:17
  14675. 4021 875 2 2006-02-15 10:09:17
  14676. 4022 876 1 2006-02-15 10:09:17
  14677. 4023 876 1 2006-02-15 10:09:17
  14678. 4024 877 1 2006-02-15 10:09:17
  14679. 4025 877 1 2006-02-15 10:09:17
  14680. 4026 877 1 2006-02-15 10:09:17
  14681. 4027 877 2 2006-02-15 10:09:17
  14682. 4028 877 2 2006-02-15 10:09:17
  14683. 4029 878 2 2006-02-15 10:09:17
  14684. 4030 878 2 2006-02-15 10:09:17
  14685. 4031 878 2 2006-02-15 10:09:17
  14686. 4032 878 2 2006-02-15 10:09:17
  14687. 4033 879 1 2006-02-15 10:09:17
  14688. 4034 879 1 2006-02-15 10:09:17
  14689. 4035 879 1 2006-02-15 10:09:17
  14690. 4036 879 1 2006-02-15 10:09:17
  14691. 4037 879 2 2006-02-15 10:09:17
  14692. 4038 879 2 2006-02-15 10:09:17
  14693. 4039 879 2 2006-02-15 10:09:17
  14694. 4040 880 1 2006-02-15 10:09:17
  14695. 4041 880 1 2006-02-15 10:09:17
  14696. 4042 880 1 2006-02-15 10:09:17
  14697. 4043 880 1 2006-02-15 10:09:17
  14698. 4044 880 2 2006-02-15 10:09:17
  14699. 4045 880 2 2006-02-15 10:09:17
  14700. 4046 880 2 2006-02-15 10:09:17
  14701. 4047 880 2 2006-02-15 10:09:17
  14702. 4048 881 2 2006-02-15 10:09:17
  14703. 4049 881 2 2006-02-15 10:09:17
  14704. 4050 881 2 2006-02-15 10:09:17
  14705. 4051 881 2 2006-02-15 10:09:17
  14706. 4052 882 1 2006-02-15 10:09:17
  14707. 4053 882 1 2006-02-15 10:09:17
  14708. 4054 882 1 2006-02-15 10:09:17
  14709. 4055 882 1 2006-02-15 10:09:17
  14710. 4056 883 2 2006-02-15 10:09:17
  14711. 4057 883 2 2006-02-15 10:09:17
  14712. 4058 884 2 2006-02-15 10:09:17
  14713. 4059 884 2 2006-02-15 10:09:17
  14714. 4060 884 2 2006-02-15 10:09:17
  14715. 4061 885 1 2006-02-15 10:09:17
  14716. 4062 885 1 2006-02-15 10:09:17
  14717. 4063 886 1 2006-02-15 10:09:17
  14718. 4064 886 1 2006-02-15 10:09:17
  14719. 4065 886 1 2006-02-15 10:09:17
  14720. 4066 886 1 2006-02-15 10:09:17
  14721. 4067 887 1 2006-02-15 10:09:17
  14722. 4068 887 1 2006-02-15 10:09:17
  14723. 4069 887 1 2006-02-15 10:09:17
  14724. 4070 887 1 2006-02-15 10:09:17
  14725. 4071 887 2 2006-02-15 10:09:17
  14726. 4072 887 2 2006-02-15 10:09:17
  14727. 4073 888 1 2006-02-15 10:09:17
  14728. 4074 888 1 2006-02-15 10:09:17
  14729. 4075 888 1 2006-02-15 10:09:17
  14730. 4076 888 1 2006-02-15 10:09:17
  14731. 4077 889 1 2006-02-15 10:09:17
  14732. 4078 889 1 2006-02-15 10:09:17
  14733. 4079 889 1 2006-02-15 10:09:17
  14734. 4080 890 1 2006-02-15 10:09:17
  14735. 4081 890 1 2006-02-15 10:09:17
  14736. 4082 890 1 2006-02-15 10:09:17
  14737. 4083 890 2 2006-02-15 10:09:17
  14738. 4084 890 2 2006-02-15 10:09:17
  14739. 4085 890 2 2006-02-15 10:09:17
  14740. 4086 890 2 2006-02-15 10:09:17
  14741. 4087 891 1 2006-02-15 10:09:17
  14742. 4088 891 1 2006-02-15 10:09:17
  14743. 4089 891 1 2006-02-15 10:09:17
  14744. 4090 891 2 2006-02-15 10:09:17
  14745. 4091 891 2 2006-02-15 10:09:17
  14746. 4092 891 2 2006-02-15 10:09:17
  14747. 4093 891 2 2006-02-15 10:09:17
  14748. 4094 892 1 2006-02-15 10:09:17
  14749. 4095 892 1 2006-02-15 10:09:17
  14750. 4096 892 1 2006-02-15 10:09:17
  14751. 4097 892 2 2006-02-15 10:09:17
  14752. 4098 892 2 2006-02-15 10:09:17
  14753. 4099 892 2 2006-02-15 10:09:17
  14754. 4100 892 2 2006-02-15 10:09:17
  14755. 4101 893 1 2006-02-15 10:09:17
  14756. 4102 893 1 2006-02-15 10:09:17
  14757. 4103 893 1 2006-02-15 10:09:17
  14758. 4104 893 1 2006-02-15 10:09:17
  14759. 4105 893 2 2006-02-15 10:09:17
  14760. 4106 893 2 2006-02-15 10:09:17
  14761. 4107 893 2 2006-02-15 10:09:17
  14762. 4108 893 2 2006-02-15 10:09:17
  14763. 4109 894 1 2006-02-15 10:09:17
  14764. 4110 894 1 2006-02-15 10:09:17
  14765. 4111 894 1 2006-02-15 10:09:17
  14766. 4112 894 2 2006-02-15 10:09:17
  14767. 4113 894 2 2006-02-15 10:09:17
  14768. 4114 895 1 2006-02-15 10:09:17
  14769. 4115 895 1 2006-02-15 10:09:17
  14770. 4116 895 1 2006-02-15 10:09:17
  14771. 4117 895 1 2006-02-15 10:09:17
  14772. 4118 895 2 2006-02-15 10:09:17
  14773. 4119 895 2 2006-02-15 10:09:17
  14774. 4120 895 2 2006-02-15 10:09:17
  14775. 4121 896 1 2006-02-15 10:09:17
  14776. 4122 896 1 2006-02-15 10:09:17
  14777. 4123 896 2 2006-02-15 10:09:17
  14778. 4124 896 2 2006-02-15 10:09:17
  14779. 4125 897 1 2006-02-15 10:09:17
  14780. 4126 897 1 2006-02-15 10:09:17
  14781. 4127 897 1 2006-02-15 10:09:17
  14782. 4128 897 1 2006-02-15 10:09:17
  14783. 4129 897 2 2006-02-15 10:09:17
  14784. 4130 897 2 2006-02-15 10:09:17
  14785. 4131 897 2 2006-02-15 10:09:17
  14786. 4132 897 2 2006-02-15 10:09:17
  14787. 4133 898 1 2006-02-15 10:09:17
  14788. 4134 898 1 2006-02-15 10:09:17
  14789. 4135 898 1 2006-02-15 10:09:17
  14790. 4136 898 2 2006-02-15 10:09:17
  14791. 4137 898 2 2006-02-15 10:09:17
  14792. 4138 899 1 2006-02-15 10:09:17
  14793. 4139 899 1 2006-02-15 10:09:17
  14794. 4140 899 1 2006-02-15 10:09:17
  14795. 4141 900 1 2006-02-15 10:09:17
  14796. 4142 900 1 2006-02-15 10:09:17
  14797. 4143 900 2 2006-02-15 10:09:17
  14798. 4144 900 2 2006-02-15 10:09:17
  14799. 4145 901 1 2006-02-15 10:09:17
  14800. 4146 901 1 2006-02-15 10:09:17
  14801. 4147 901 1 2006-02-15 10:09:17
  14802. 4148 901 1 2006-02-15 10:09:17
  14803. 4149 901 2 2006-02-15 10:09:17
  14804. 4150 901 2 2006-02-15 10:09:17
  14805. 4151 901 2 2006-02-15 10:09:17
  14806. 4152 902 1 2006-02-15 10:09:17
  14807. 4153 902 1 2006-02-15 10:09:17
  14808. 4154 902 1 2006-02-15 10:09:17
  14809. 4155 902 1 2006-02-15 10:09:17
  14810. 4156 902 2 2006-02-15 10:09:17
  14811. 4157 902 2 2006-02-15 10:09:17
  14812. 4158 902 2 2006-02-15 10:09:17
  14813. 4159 903 2 2006-02-15 10:09:17
  14814. 4160 903 2 2006-02-15 10:09:17
  14815. 4161 904 1 2006-02-15 10:09:17
  14816. 4162 904 1 2006-02-15 10:09:17
  14817. 4163 905 1 2006-02-15 10:09:17
  14818. 4164 905 1 2006-02-15 10:09:17
  14819. 4165 905 1 2006-02-15 10:09:17
  14820. 4166 906 1 2006-02-15 10:09:17
  14821. 4167 906 1 2006-02-15 10:09:17
  14822. 4168 906 2 2006-02-15 10:09:17
  14823. 4169 906 2 2006-02-15 10:09:17
  14824. 4170 906 2 2006-02-15 10:09:17
  14825. 4171 907 1 2006-02-15 10:09:17
  14826. 4172 907 1 2006-02-15 10:09:17
  14827. 4173 907 1 2006-02-15 10:09:17
  14828. 4174 907 1 2006-02-15 10:09:17
  14829. 4175 908 1 2006-02-15 10:09:17
  14830. 4176 908 1 2006-02-15 10:09:17
  14831. 4177 908 2 2006-02-15 10:09:17
  14832. 4178 908 2 2006-02-15 10:09:17
  14833. 4179 910 2 2006-02-15 10:09:17
  14834. 4180 910 2 2006-02-15 10:09:17
  14835. 4181 911 1 2006-02-15 10:09:17
  14836. 4182 911 1 2006-02-15 10:09:17
  14837. 4183 911 1 2006-02-15 10:09:17
  14838. 4184 911 1 2006-02-15 10:09:17
  14839. 4185 911 2 2006-02-15 10:09:17
  14840. 4186 911 2 2006-02-15 10:09:17
  14841. 4187 911 2 2006-02-15 10:09:17
  14842. 4188 911 2 2006-02-15 10:09:17
  14843. 4189 912 1 2006-02-15 10:09:17
  14844. 4190 912 1 2006-02-15 10:09:17
  14845. 4191 912 1 2006-02-15 10:09:17
  14846. 4192 912 2 2006-02-15 10:09:17
  14847. 4193 912 2 2006-02-15 10:09:17
  14848. 4194 912 2 2006-02-15 10:09:17
  14849. 4195 913 1 2006-02-15 10:09:17
  14850. 4196 913 1 2006-02-15 10:09:17
  14851. 4197 913 1 2006-02-15 10:09:17
  14852. 4198 913 1 2006-02-15 10:09:17
  14853. 4199 913 2 2006-02-15 10:09:17
  14854. 4200 913 2 2006-02-15 10:09:17
  14855. 4201 914 1 2006-02-15 10:09:17
  14856. 4202 914 1 2006-02-15 10:09:17
  14857. 4203 914 2 2006-02-15 10:09:17
  14858. 4204 914 2 2006-02-15 10:09:17
  14859. 4205 914 2 2006-02-15 10:09:17
  14860. 4206 914 2 2006-02-15 10:09:17
  14861. 4207 915 1 2006-02-15 10:09:17
  14862. 4208 915 1 2006-02-15 10:09:17
  14863. 4209 915 1 2006-02-15 10:09:17
  14864. 4210 915 1 2006-02-15 10:09:17
  14865. 4211 915 2 2006-02-15 10:09:17
  14866. 4212 915 2 2006-02-15 10:09:17
  14867. 4213 916 1 2006-02-15 10:09:17
  14868. 4214 916 1 2006-02-15 10:09:17
  14869. 4215 916 2 2006-02-15 10:09:17
  14870. 4216 916 2 2006-02-15 10:09:17
  14871. 4217 917 1 2006-02-15 10:09:17
  14872. 4218 917 1 2006-02-15 10:09:17
  14873. 4219 917 1 2006-02-15 10:09:17
  14874. 4220 917 2 2006-02-15 10:09:17
  14875. 4221 917 2 2006-02-15 10:09:17
  14876. 4222 918 2 2006-02-15 10:09:17
  14877. 4223 918 2 2006-02-15 10:09:17
  14878. 4224 918 2 2006-02-15 10:09:17
  14879. 4225 918 2 2006-02-15 10:09:17
  14880. 4226 919 1 2006-02-15 10:09:17
  14881. 4227 919 1 2006-02-15 10:09:17
  14882. 4228 919 1 2006-02-15 10:09:17
  14883. 4229 919 1 2006-02-15 10:09:17
  14884. 4230 920 1 2006-02-15 10:09:17
  14885. 4231 920 1 2006-02-15 10:09:17
  14886. 4232 920 1 2006-02-15 10:09:17
  14887. 4233 920 2 2006-02-15 10:09:17
  14888. 4234 920 2 2006-02-15 10:09:17
  14889. 4235 921 1 2006-02-15 10:09:17
  14890. 4236 921 1 2006-02-15 10:09:17
  14891. 4237 921 2 2006-02-15 10:09:17
  14892. 4238 921 2 2006-02-15 10:09:17
  14893. 4239 922 1 2006-02-15 10:09:17
  14894. 4240 922 1 2006-02-15 10:09:17
  14895. 4241 922 1 2006-02-15 10:09:17
  14896. 4242 922 2 2006-02-15 10:09:17
  14897. 4243 922 2 2006-02-15 10:09:17
  14898. 4244 922 2 2006-02-15 10:09:17
  14899. 4245 922 2 2006-02-15 10:09:17
  14900. 4246 923 2 2006-02-15 10:09:17
  14901. 4247 923 2 2006-02-15 10:09:17
  14902. 4248 923 2 2006-02-15 10:09:17
  14903. 4249 924 1 2006-02-15 10:09:17
  14904. 4250 924 1 2006-02-15 10:09:17
  14905. 4251 924 2 2006-02-15 10:09:17
  14906. 4252 924 2 2006-02-15 10:09:17
  14907. 4253 924 2 2006-02-15 10:09:17
  14908. 4254 925 1 2006-02-15 10:09:17
  14909. 4255 925 1 2006-02-15 10:09:17
  14910. 4256 925 1 2006-02-15 10:09:17
  14911. 4257 925 2 2006-02-15 10:09:17
  14912. 4258 925 2 2006-02-15 10:09:17
  14913. 4259 926 2 2006-02-15 10:09:17
  14914. 4260 926 2 2006-02-15 10:09:17
  14915. 4261 927 1 2006-02-15 10:09:17
  14916. 4262 927 1 2006-02-15 10:09:17
  14917. 4263 927 1 2006-02-15 10:09:17
  14918. 4264 927 1 2006-02-15 10:09:17
  14919. 4265 928 1 2006-02-15 10:09:17
  14920. 4266 928 1 2006-02-15 10:09:17
  14921. 4267 928 1 2006-02-15 10:09:17
  14922. 4268 929 1 2006-02-15 10:09:17
  14923. 4269 929 1 2006-02-15 10:09:17
  14924. 4270 929 1 2006-02-15 10:09:17
  14925. 4271 929 1 2006-02-15 10:09:17
  14926. 4272 930 1 2006-02-15 10:09:17
  14927. 4273 930 1 2006-02-15 10:09:17
  14928. 4274 930 1 2006-02-15 10:09:17
  14929. 4275 930 2 2006-02-15 10:09:17
  14930. 4276 930 2 2006-02-15 10:09:17
  14931. 4277 930 2 2006-02-15 10:09:17
  14932. 4278 931 2 2006-02-15 10:09:17
  14933. 4279 931 2 2006-02-15 10:09:17
  14934. 4280 931 2 2006-02-15 10:09:17
  14935. 4281 932 1 2006-02-15 10:09:17
  14936. 4282 932 1 2006-02-15 10:09:17
  14937. 4283 932 2 2006-02-15 10:09:17
  14938. 4284 932 2 2006-02-15 10:09:17
  14939. 4285 933 1 2006-02-15 10:09:17
  14940. 4286 933 1 2006-02-15 10:09:17
  14941. 4287 933 1 2006-02-15 10:09:17
  14942. 4288 934 2 2006-02-15 10:09:17
  14943. 4289 934 2 2006-02-15 10:09:17
  14944. 4290 934 2 2006-02-15 10:09:17
  14945. 4291 935 2 2006-02-15 10:09:17
  14946. 4292 935 2 2006-02-15 10:09:17
  14947. 4293 936 1 2006-02-15 10:09:17
  14948. 4294 936 1 2006-02-15 10:09:17
  14949. 4295 936 2 2006-02-15 10:09:17
  14950. 4296 936 2 2006-02-15 10:09:17
  14951. 4297 936 2 2006-02-15 10:09:17
  14952. 4298 936 2 2006-02-15 10:09:17
  14953. 4299 937 1 2006-02-15 10:09:17
  14954. 4300 937 1 2006-02-15 10:09:17
  14955. 4301 937 2 2006-02-15 10:09:17
  14956. 4302 937 2 2006-02-15 10:09:17
  14957. 4303 937 2 2006-02-15 10:09:17
  14958. 4304 938 1 2006-02-15 10:09:17
  14959. 4305 938 1 2006-02-15 10:09:17
  14960. 4306 938 1 2006-02-15 10:09:17
  14961. 4307 938 1 2006-02-15 10:09:17
  14962. 4308 938 2 2006-02-15 10:09:17
  14963. 4309 938 2 2006-02-15 10:09:17
  14964. 4310 939 2 2006-02-15 10:09:17
  14965. 4311 939 2 2006-02-15 10:09:17
  14966. 4312 939 2 2006-02-15 10:09:17
  14967. 4313 939 2 2006-02-15 10:09:17
  14968. 4314 940 1 2006-02-15 10:09:17
  14969. 4315 940 1 2006-02-15 10:09:17
  14970. 4316 940 1 2006-02-15 10:09:17
  14971. 4317 941 1 2006-02-15 10:09:17
  14972. 4318 941 1 2006-02-15 10:09:17
  14973. 4319 941 1 2006-02-15 10:09:17
  14974. 4320 941 1 2006-02-15 10:09:17
  14975. 4321 941 2 2006-02-15 10:09:17
  14976. 4322 941 2 2006-02-15 10:09:17
  14977. 4323 941 2 2006-02-15 10:09:17
  14978. 4324 942 1 2006-02-15 10:09:17
  14979. 4325 942 1 2006-02-15 10:09:17
  14980. 4326 942 2 2006-02-15 10:09:17
  14981. 4327 942 2 2006-02-15 10:09:17
  14982. 4328 944 1 2006-02-15 10:09:17
  14983. 4329 944 1 2006-02-15 10:09:17
  14984. 4330 944 2 2006-02-15 10:09:17
  14985. 4331 944 2 2006-02-15 10:09:17
  14986. 4332 944 2 2006-02-15 10:09:17
  14987. 4333 945 1 2006-02-15 10:09:17
  14988. 4334 945 1 2006-02-15 10:09:17
  14989. 4335 945 1 2006-02-15 10:09:17
  14990. 4336 945 1 2006-02-15 10:09:17
  14991. 4337 945 2 2006-02-15 10:09:17
  14992. 4338 945 2 2006-02-15 10:09:17
  14993. 4339 945 2 2006-02-15 10:09:17
  14994. 4340 945 2 2006-02-15 10:09:17
  14995. 4341 946 2 2006-02-15 10:09:17
  14996. 4342 946 2 2006-02-15 10:09:17
  14997. 4343 946 2 2006-02-15 10:09:17
  14998. 4344 946 2 2006-02-15 10:09:17
  14999. 4345 947 1 2006-02-15 10:09:17
  15000. 4346 947 1 2006-02-15 10:09:17
  15001. 4347 948 1 2006-02-15 10:09:17
  15002. 4348 948 1 2006-02-15 10:09:17
  15003. 4349 948 2 2006-02-15 10:09:17
  15004. 4350 948 2 2006-02-15 10:09:17
  15005. 4351 948 2 2006-02-15 10:09:17
  15006. 4352 948 2 2006-02-15 10:09:17
  15007. 4353 949 1 2006-02-15 10:09:17
  15008. 4354 949 1 2006-02-15 10:09:17
  15009. 4355 949 1 2006-02-15 10:09:17
  15010. 4356 949 1 2006-02-15 10:09:17
  15011. 4357 949 2 2006-02-15 10:09:17
  15012. 4358 949 2 2006-02-15 10:09:17
  15013. 4359 951 1 2006-02-15 10:09:17
  15014. 4360 951 1 2006-02-15 10:09:17
  15015. 4361 951 1 2006-02-15 10:09:17
  15016. 4362 951 2 2006-02-15 10:09:17
  15017. 4363 951 2 2006-02-15 10:09:17
  15018. 4364 951 2 2006-02-15 10:09:17
  15019. 4365 951 2 2006-02-15 10:09:17
  15020. 4366 952 1 2006-02-15 10:09:17
  15021. 4367 952 1 2006-02-15 10:09:17
  15022. 4368 952 1 2006-02-15 10:09:17
  15023. 4369 953 1 2006-02-15 10:09:17
  15024. 4370 953 1 2006-02-15 10:09:17
  15025. 4371 953 1 2006-02-15 10:09:17
  15026. 4372 953 1 2006-02-15 10:09:17
  15027. 4373 953 2 2006-02-15 10:09:17
  15028. 4374 953 2 2006-02-15 10:09:17
  15029. 4375 956 1 2006-02-15 10:09:17
  15030. 4376 956 1 2006-02-15 10:09:17
  15031. 4377 956 1 2006-02-15 10:09:17
  15032. 4378 956 1 2006-02-15 10:09:17
  15033. 4379 957 1 2006-02-15 10:09:17
  15034. 4380 957 1 2006-02-15 10:09:17
  15035. 4381 957 1 2006-02-15 10:09:17
  15036. 4382 957 2 2006-02-15 10:09:17
  15037. 4383 957 2 2006-02-15 10:09:17
  15038. 4384 958 1 2006-02-15 10:09:17
  15039. 4385 958 1 2006-02-15 10:09:17
  15040. 4386 958 1 2006-02-15 10:09:17
  15041. 4387 958 2 2006-02-15 10:09:17
  15042. 4388 958 2 2006-02-15 10:09:17
  15043. 4389 958 2 2006-02-15 10:09:17
  15044. 4390 959 1 2006-02-15 10:09:17
  15045. 4391 959 1 2006-02-15 10:09:17
  15046. 4392 960 2 2006-02-15 10:09:17
  15047. 4393 960 2 2006-02-15 10:09:17
  15048. 4394 960 2 2006-02-15 10:09:17
  15049. 4395 961 1 2006-02-15 10:09:17
  15050. 4396 961 1 2006-02-15 10:09:17
  15051. 4397 961 1 2006-02-15 10:09:17
  15052. 4398 961 2 2006-02-15 10:09:17
  15053. 4399 961 2 2006-02-15 10:09:17
  15054. 4400 962 1 2006-02-15 10:09:17
  15055. 4401 962 1 2006-02-15 10:09:17
  15056. 4402 962 1 2006-02-15 10:09:17
  15057. 4403 962 1 2006-02-15 10:09:17
  15058. 4404 963 1 2006-02-15 10:09:17
  15059. 4405 963 1 2006-02-15 10:09:17
  15060. 4406 963 2 2006-02-15 10:09:17
  15061. 4407 963 2 2006-02-15 10:09:17
  15062. 4408 963 2 2006-02-15 10:09:17
  15063. 4409 964 1 2006-02-15 10:09:17
  15064. 4410 964 1 2006-02-15 10:09:17
  15065. 4411 964 1 2006-02-15 10:09:17
  15066. 4412 964 2 2006-02-15 10:09:17
  15067. 4413 964 2 2006-02-15 10:09:17
  15068. 4414 965 1 2006-02-15 10:09:17
  15069. 4415 965 1 2006-02-15 10:09:17
  15070. 4416 966 1 2006-02-15 10:09:17
  15071. 4417 966 1 2006-02-15 10:09:17
  15072. 4418 966 2 2006-02-15 10:09:17
  15073. 4419 966 2 2006-02-15 10:09:17
  15074. 4420 966 2 2006-02-15 10:09:17
  15075. 4421 966 2 2006-02-15 10:09:17
  15076. 4422 967 1 2006-02-15 10:09:17
  15077. 4423 967 1 2006-02-15 10:09:17
  15078. 4424 967 1 2006-02-15 10:09:17
  15079. 4425 967 2 2006-02-15 10:09:17
  15080. 4426 967 2 2006-02-15 10:09:17
  15081. 4427 968 1 2006-02-15 10:09:17
  15082. 4428 968 1 2006-02-15 10:09:17
  15083. 4429 968 1 2006-02-15 10:09:17
  15084. 4430 969 1 2006-02-15 10:09:17
  15085. 4431 969 1 2006-02-15 10:09:17
  15086. 4432 969 1 2006-02-15 10:09:17
  15087. 4433 969 1 2006-02-15 10:09:17
  15088. 4434 970 1 2006-02-15 10:09:17
  15089. 4435 970 1 2006-02-15 10:09:17
  15090. 4436 970 1 2006-02-15 10:09:17
  15091. 4437 970 2 2006-02-15 10:09:17
  15092. 4438 970 2 2006-02-15 10:09:17
  15093. 4439 970 2 2006-02-15 10:09:17
  15094. 4440 970 2 2006-02-15 10:09:17
  15095. 4441 971 1 2006-02-15 10:09:17
  15096. 4442 971 1 2006-02-15 10:09:17
  15097. 4443 971 1 2006-02-15 10:09:17
  15098. 4444 971 1 2006-02-15 10:09:17
  15099. 4445 972 1 2006-02-15 10:09:17
  15100. 4446 972 1 2006-02-15 10:09:17
  15101. 4447 972 1 2006-02-15 10:09:17
  15102. 4448 972 2 2006-02-15 10:09:17
  15103. 4449 972 2 2006-02-15 10:09:17
  15104. 4450 972 2 2006-02-15 10:09:17
  15105. 4451 973 1 2006-02-15 10:09:17
  15106. 4452 973 1 2006-02-15 10:09:17
  15107. 4453 973 1 2006-02-15 10:09:17
  15108. 4454 973 1 2006-02-15 10:09:17
  15109. 4455 973 2 2006-02-15 10:09:17
  15110. 4456 973 2 2006-02-15 10:09:17
  15111. 4457 973 2 2006-02-15 10:09:17
  15112. 4458 973 2 2006-02-15 10:09:17
  15113. 4459 974 1 2006-02-15 10:09:17
  15114. 4460 974 1 2006-02-15 10:09:17
  15115. 4461 975 1 2006-02-15 10:09:17
  15116. 4462 975 1 2006-02-15 10:09:17
  15117. 4463 975 2 2006-02-15 10:09:17
  15118. 4464 975 2 2006-02-15 10:09:17
  15119. 4465 975 2 2006-02-15 10:09:17
  15120. 4466 976 1 2006-02-15 10:09:17
  15121. 4467 976 1 2006-02-15 10:09:17
  15122. 4468 976 2 2006-02-15 10:09:17
  15123. 4469 976 2 2006-02-15 10:09:17
  15124. 4470 976 2 2006-02-15 10:09:17
  15125. 4471 976 2 2006-02-15 10:09:17
  15126. 4472 977 2 2006-02-15 10:09:17
  15127. 4473 977 2 2006-02-15 10:09:17
  15128. 4474 977 2 2006-02-15 10:09:17
  15129. 4475 978 1 2006-02-15 10:09:17
  15130. 4476 978 1 2006-02-15 10:09:17
  15131. 4477 978 1 2006-02-15 10:09:17
  15132. 4478 979 1 2006-02-15 10:09:17
  15133. 4479 979 1 2006-02-15 10:09:17
  15134. 4480 979 1 2006-02-15 10:09:17
  15135. 4481 979 1 2006-02-15 10:09:17
  15136. 4482 979 2 2006-02-15 10:09:17
  15137. 4483 979 2 2006-02-15 10:09:17
  15138. 4484 979 2 2006-02-15 10:09:17
  15139. 4485 980 1 2006-02-15 10:09:17
  15140. 4486 980 1 2006-02-15 10:09:17
  15141. 4487 980 1 2006-02-15 10:09:17
  15142. 4488 980 2 2006-02-15 10:09:17
  15143. 4489 980 2 2006-02-15 10:09:17
  15144. 4490 981 1 2006-02-15 10:09:17
  15145. 4491 981 1 2006-02-15 10:09:17
  15146. 4492 981 1 2006-02-15 10:09:17
  15147. 4493 981 2 2006-02-15 10:09:17
  15148. 4494 981 2 2006-02-15 10:09:17
  15149. 4495 981 2 2006-02-15 10:09:17
  15150. 4496 982 1 2006-02-15 10:09:17
  15151. 4497 982 1 2006-02-15 10:09:17
  15152. 4498 982 1 2006-02-15 10:09:17
  15153. 4499 982 2 2006-02-15 10:09:17
  15154. 4500 982 2 2006-02-15 10:09:17
  15155. 4501 982 2 2006-02-15 10:09:17
  15156. 4502 982 2 2006-02-15 10:09:17
  15157. 4503 983 1 2006-02-15 10:09:17
  15158. 4504 983 1 2006-02-15 10:09:17
  15159. 4505 983 1 2006-02-15 10:09:17
  15160. 4506 984 1 2006-02-15 10:09:17
  15161. 4507 984 1 2006-02-15 10:09:17
  15162. 4508 985 1 2006-02-15 10:09:17
  15163. 4509 985 1 2006-02-15 10:09:17
  15164. 4510 985 1 2006-02-15 10:09:17
  15165. 4511 985 1 2006-02-15 10:09:17
  15166. 4512 985 2 2006-02-15 10:09:17
  15167. 4513 985 2 2006-02-15 10:09:17
  15168. 4514 985 2 2006-02-15 10:09:17
  15169. 4515 986 1 2006-02-15 10:09:17
  15170. 4516 986 1 2006-02-15 10:09:17
  15171. 4517 986 1 2006-02-15 10:09:17
  15172. 4518 986 1 2006-02-15 10:09:17
  15173. 4519 986 2 2006-02-15 10:09:17
  15174. 4520 986 2 2006-02-15 10:09:17
  15175. 4521 987 1 2006-02-15 10:09:17
  15176. 4522 987 1 2006-02-15 10:09:17
  15177. 4523 987 2 2006-02-15 10:09:17
  15178. 4524 987 2 2006-02-15 10:09:17
  15179. 4525 988 1 2006-02-15 10:09:17
  15180. 4526 988 1 2006-02-15 10:09:17
  15181. 4527 988 1 2006-02-15 10:09:17
  15182. 4528 988 2 2006-02-15 10:09:17
  15183. 4529 988 2 2006-02-15 10:09:17
  15184. 4530 989 1 2006-02-15 10:09:17
  15185. 4531 989 1 2006-02-15 10:09:17
  15186. 4532 989 1 2006-02-15 10:09:17
  15187. 4533 989 1 2006-02-15 10:09:17
  15188. 4534 989 2 2006-02-15 10:09:17
  15189. 4535 989 2 2006-02-15 10:09:17
  15190. 4536 990 2 2006-02-15 10:09:17
  15191. 4537 990 2 2006-02-15 10:09:17
  15192. 4538 991 1 2006-02-15 10:09:17
  15193. 4539 991 1 2006-02-15 10:09:17
  15194. 4540 991 2 2006-02-15 10:09:17
  15195. 4541 991 2 2006-02-15 10:09:17
  15196. 4542 991 2 2006-02-15 10:09:17
  15197. 4543 992 2 2006-02-15 10:09:17
  15198. 4544 992 2 2006-02-15 10:09:17
  15199. 4545 992 2 2006-02-15 10:09:17
  15200. 4546 992 2 2006-02-15 10:09:17
  15201. 4547 993 1 2006-02-15 10:09:17
  15202. 4548 993 1 2006-02-15 10:09:17
  15203. 4549 993 1 2006-02-15 10:09:17
  15204. 4550 993 1 2006-02-15 10:09:17
  15205. 4551 993 2 2006-02-15 10:09:17
  15206. 4552 993 2 2006-02-15 10:09:17
  15207. 4553 993 2 2006-02-15 10:09:17
  15208. 4554 994 1 2006-02-15 10:09:17
  15209. 4555 994 1 2006-02-15 10:09:17
  15210. 4556 994 1 2006-02-15 10:09:17
  15211. 4557 995 1 2006-02-15 10:09:17
  15212. 4558 995 1 2006-02-15 10:09:17
  15213. 4559 995 1 2006-02-15 10:09:17
  15214. 4560 995 1 2006-02-15 10:09:17
  15215. 4561 995 2 2006-02-15 10:09:17
  15216. 4562 995 2 2006-02-15 10:09:17
  15217. 4563 996 1 2006-02-15 10:09:17
  15218. 4564 996 1 2006-02-15 10:09:17
  15219. 4565 997 1 2006-02-15 10:09:17
  15220. 4566 997 1 2006-02-15 10:09:17
  15221. 4567 998 2 2006-02-15 10:09:17
  15222. 4568 998 2 2006-02-15 10:09:17
  15223. 4569 999 1 2006-02-15 10:09:17
  15224. 4570 999 1 2006-02-15 10:09:17
  15225. 4571 999 2 2006-02-15 10:09:17
  15226. 4572 999 2 2006-02-15 10:09:17
  15227. 4573 999 2 2006-02-15 10:09:17
  15228. 4574 1000 1 2006-02-15 10:09:17
  15229. 4575 1000 1 2006-02-15 10:09:17
  15230. 4576 1000 1 2006-02-15 10:09:17
  15231. 4577 1000 1 2006-02-15 10:09:17
  15232. 4578 1000 2 2006-02-15 10:09:17
  15233. 4579 1000 2 2006-02-15 10:09:17
  15234. 4580 1000 2 2006-02-15 10:09:17
  15235. 4581 1000 2 2006-02-15 10:09:17
  15236. \.
  15237.  
  15238.  
  15239. --
  15240. -- Name: inventory_inventory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  15241. --
  15242.  
  15243. SELECT pg_catalog.setval('"inventory_inventory_id_seq"', 4581, true);
  15244.  
  15245.  
  15246. --
  15247. -- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: postgres
  15248. --
  15249.  
  15250. COPY "language" ("language_id", "name", "last_update") FROM stdin;
  15251. 1 English 2006-02-15 10:02:19
  15252. 2 Italian 2006-02-15 10:02:19
  15253. 3 Japanese 2006-02-15 10:02:19
  15254. 4 Mandarin 2006-02-15 10:02:19
  15255. 5 French 2006-02-15 10:02:19
  15256. 6 German 2006-02-15 10:02:19
  15257. \.
  15258.  
  15259.  
  15260. --
  15261. -- Name: language_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  15262. --
  15263.  
  15264. SELECT pg_catalog.setval('"language_language_id_seq"', 6, true);
  15265.  
  15266.  
  15267. --
  15268. -- Data for Name: payment; Type: TABLE DATA; Schema: public; Owner: postgres
  15269. --
  15270.  
  15271. COPY "payment" ("payment_id", "customer_id", "staff_id", "rental_id", "amount", "payment_date") FROM stdin;
  15272. 17503 341 2 1520 7.99 2007-02-15 22:25:46.996577
  15273. 17504 341 1 1778 1.99 2007-02-16 17:23:14.996577
  15274. 17505 341 1 1849 7.99 2007-02-16 22:41:45.996577
  15275. 17506 341 2 2829 2.99 2007-02-19 19:39:56.996577
  15276. 17507 341 2 3130 7.99 2007-02-20 17:31:48.996577
  15277. 17508 341 1 3382 5.99 2007-02-21 12:33:49.996577
  15278. 17509 342 2 2190 5.99 2007-02-17 23:58:17.996577
  15279. 17510 342 1 2914 5.99 2007-02-20 02:11:44.996577
  15280. 17511 342 1 3081 2.99 2007-02-20 13:57:39.996577
  15281. 17512 343 2 1547 4.99 2007-02-16 00:10:50.996577
  15282. 17513 343 1 1564 6.99 2007-02-16 01:15:33.996577
  15283. 17514 343 2 1879 0.99 2007-02-17 01:26:00.996577
  15284. 17515 343 2 1922 0.99 2007-02-17 04:32:51.996577
  15285. 17516 343 2 2461 6.99 2007-02-18 18:26:38.996577
  15286. 17517 343 1 2980 8.99 2007-02-20 07:03:29.996577
  15287. 17518 343 1 3407 0.99 2007-02-21 14:42:28.996577
  15288. 17519 344 1 1341 3.99 2007-02-15 10:54:44.996577
  15289. 17520 344 2 1475 4.99 2007-02-15 19:36:27.996577
  15290. 17521 344 1 1731 0.99 2007-02-16 14:00:38.996577
  15291. 17522 345 2 1210 0.99 2007-02-15 01:26:17.996577
  15292. 17523 345 1 1457 4.99 2007-02-15 18:34:15.996577
  15293. 17524 345 2 1550 0.99 2007-02-16 00:27:01.996577
  15294. 17525 345 2 2766 4.99 2007-02-19 16:13:41.996577
  15295. 17526 346 1 1994 5.99 2007-02-17 09:35:32.996577
  15296. 17527 346 2 3372 2.99 2007-02-21 12:02:45.996577
  15297. 17528 346 1 3421 2.99 2007-02-21 15:51:24.996577
  15298. 17529 347 2 1711 8.99 2007-02-16 12:40:18.996577
  15299. 17530 347 2 2274 0.99 2007-02-18 04:59:41.996577
  15300. 17531 347 1 3026 4.99 2007-02-20 10:16:26.996577
  15301. 17532 347 1 3092 8.99 2007-02-20 14:33:08.996577
  15302. 17533 347 1 3326 7.99 2007-02-21 07:33:16.996577
  15303. 17534 348 1 1654 2.99 2007-02-16 08:11:14.996577
  15304. 17535 348 1 2041 8.99 2007-02-17 12:47:26.996577
  15305. 17536 348 2 2499 0.99 2007-02-18 21:30:02.996577
  15306. 17537 349 1 1197 2.99 2007-02-15 00:11:12.996577
  15307. 17538 349 1 1523 0.99 2007-02-15 22:47:06.996577
  15308. 17539 349 2 2987 6.99 2007-02-20 07:24:16.996577
  15309. 17540 349 1 3067 8.99 2007-02-20 12:27:47.996577
  15310. 17541 350 2 2011 3.99 2007-02-17 10:24:35.996577
  15311. 17542 350 1 2619 0.99 2007-02-19 06:31:38.996577
  15312. 17543 350 1 3079 2.99 2007-02-20 13:42:06.996577
  15313. 17544 350 2 3206 0.99 2007-02-20 23:08:05.996577
  15314. 17545 351 2 1792 5.99 2007-02-16 18:33:16.996577
  15315. 17546 351 1 1869 0.99 2007-02-17 00:36:26.996577
  15316. 17547 351 1 2759 2.99 2007-02-19 15:38:50.996577
  15317. 17548 352 1 1498 0.99 2007-02-15 20:26:26.996577
  15318. 17549 352 1 1649 4.99 2007-02-16 07:48:59.996577
  15319. 17550 352 1 1678 4.99 2007-02-16 09:36:54.996577
  15320. 17551 352 1 1780 4.99 2007-02-16 17:40:11.996577
  15321. 17552 352 2 3331 4.99 2007-02-21 08:06:19.996577
  15322. 17553 353 2 1359 2.99 2007-02-15 11:58:56.996577
  15323. 17554 353 2 1928 7.99 2007-02-17 05:16:57.996577
  15324. 17555 353 2 3233 6.99 2007-02-21 01:07:57.996577
  15325. 17556 354 1 1491 0.99 2007-02-15 20:16:44.996577
  15326. 17557 354 1 2275 4.99 2007-02-18 04:59:55.996577
  15327. 17558 354 1 2769 6.99 2007-02-19 16:20:40.996577
  15328. 17559 354 1 3139 2.99 2007-02-20 18:13:11.996577
  15329. 17560 355 2 1488 0.99 2007-02-15 20:08:20.996577
  15330. 17561 355 1 1612 2.99 2007-02-16 05:20:31.996577
  15331. 17562 356 1 1410 0.99 2007-02-15 15:28:12.996577
  15332. 17563 356 1 2405 2.99 2007-02-18 15:05:04.996577
  15333. 17564 356 1 2433 4.99 2007-02-18 16:38:43.996577
  15334. 17565 357 2 1246 5.99 2007-02-15 03:39:45.996577
  15335. 17566 357 1 1788 1.99 2007-02-16 18:15:44.996577
  15336. 17567 357 2 1971 1.99 2007-02-17 07:52:25.996577
  15337. 17568 357 2 2153 6.99 2007-02-17 21:26:30.996577
  15338. 17569 358 1 1455 2.99 2007-02-15 18:19:32.996577
  15339. 17570 358 2 1908 0.99 2007-02-17 03:39:02.996577
  15340. 17571 358 1 2114 5.99 2007-02-17 18:28:51.996577
  15341. 17572 358 1 2721 2.99 2007-02-19 13:21:50.996577
  15342. 17573 358 1 2749 2.99 2007-02-19 14:56:01.996577
  15343. 17574 358 1 3245 2.99 2007-02-21 01:34:37.996577
  15344. 17575 359 2 1329 4.99 2007-02-15 09:53:32.996577
  15345. 17576 359 2 1770 1.99 2007-02-16 16:36:21.996577
  15346. 17577 359 1 2401 0.99 2007-02-18 14:50:29.996577
  15347. 17578 359 1 2736 4.99 2007-02-19 14:11:46.996577
  15348. 17579 360 2 1492 0.99 2007-02-15 20:17:01.996577
  15349. 17580 360 2 2402 6.99 2007-02-18 14:53:11.996577
  15350. 17581 360 2 2541 3.99 2007-02-19 00:36:36.996577
  15351. 17582 360 2 2780 6.99 2007-02-19 16:47:59.996577
  15352. 17583 361 2 2353 4.99 2007-02-18 11:21:51.996577
  15353. 17584 361 2 2558 1.99 2007-02-19 01:37:42.996577
  15354. 17585 361 1 2851 2.99 2007-02-19 21:35:29.996577
  15355. 17586 361 2 3303 2.99 2007-02-21 06:02:40.996577
  15356. 17587 362 1 1429 2.99 2007-02-15 16:52:36.996577
  15357. 17588 362 1 1529 2.99 2007-02-15 23:06:01.996577
  15358. 17589 362 1 1615 2.99 2007-02-16 05:28:54.996577
  15359. 17590 362 2 3197 2.99 2007-02-20 22:35:49.996577
  15360. 17591 362 2 3393 2.99 2007-02-21 13:42:53.996577
  15361. 17592 363 2 1426 4.99 2007-02-15 16:44:50.996577
  15362. 17593 363 2 1569 4.99 2007-02-16 01:47:35.996577
  15363. 17594 363 1 1847 4.99 2007-02-16 22:33:48.996577
  15364. 17595 363 1 2540 4.99 2007-02-19 00:33:14.996577
  15365. 17596 363 2 3281 2.99 2007-02-21 04:37:13.996577
  15366. 17597 364 1 1722 2.99 2007-02-16 13:41:18.996577
  15367. 17598 364 2 2442 2.99 2007-02-18 17:17:44.996577
  15368. 17599 364 2 2606 4.99 2007-02-19 05:19:58.996577
  15369. 17600 364 2 2857 4.99 2007-02-19 21:43:41.996577
  15370. 17601 364 2 2962 3.99 2007-02-20 06:00:21.996577
  15371. 17602 365 1 1303 1.99 2007-02-15 08:24:23.996577
  15372. 17603 365 1 1578 6.99 2007-02-16 02:36:42.996577
  15373. 17604 365 1 1983 4.99 2007-02-17 08:50:39.996577
  15374. 17605 365 1 2525 2.99 2007-02-18 23:16:48.996577
  15375. 17606 365 2 3156 0.99 2007-02-20 19:32:12.996577
  15376. 17607 366 2 1401 1.99 2007-02-15 14:58:48.996577
  15377. 17608 366 2 2214 0.99 2007-02-18 01:13:03.996577
  15378. 17609 367 1 3078 0.99 2007-02-20 13:38:14.996577
  15379. 17610 368 1 1186 0.99 2007-02-14 23:25:11.996577
  15380. 17611 368 1 1513 9.99 2007-02-15 21:21:56.996577
  15381. 17612 368 1 2531 4.99 2007-02-18 23:49:15.996577
  15382. 17613 368 1 2694 4.99 2007-02-19 11:45:47.996577
  15383. 17614 368 1 2744 4.99 2007-02-19 14:49:06.996577
  15384. 17615 368 2 3275 4.99 2007-02-21 04:01:30.996577
  15385. 17616 369 1 1224 0.99 2007-02-15 02:12:51.996577
  15386. 17617 370 2 1190 6.99 2007-02-14 23:33:58.996577
  15387. 17618 371 2 1212 2.99 2007-02-15 01:31:59.996577
  15388. 17619 371 1 1218 1.99 2007-02-15 01:53:10.996577
  15389. 17620 371 1 1573 6.99 2007-02-16 02:00:05.996577
  15390. 17621 371 2 1675 5.99 2007-02-16 09:33:13.996577
  15391. 17622 371 2 2837 0.99 2007-02-19 20:32:16.996577
  15392. 17623 371 1 3176 3.99 2007-02-20 21:00:20.996577
  15393. 17624 371 2 3396 0.99 2007-02-21 13:51:34.996577
  15394. 17625 372 1 2315 2.99 2007-02-18 07:32:05.996577
  15395. 17626 372 1 2959 4.99 2007-02-20 05:36:20.996577
  15396. 17627 372 1 3283 3.99 2007-02-21 04:47:33.996577
  15397. 17628 373 1 1472 6.99 2007-02-15 19:23:21.996577
  15398. 17629 373 1 3161 2.99 2007-02-20 19:49:27.996577
  15399. 17630 374 1 1548 1.99 2007-02-16 00:11:59.996577
  15400. 17631 374 2 2046 1.99 2007-02-17 13:08:16.996577
  15401. 17632 374 2 2487 4.99 2007-02-18 20:01:20.996577
  15402. 17633 374 2 2641 2.99 2007-02-19 08:06:59.996577
  15403. 17634 375 2 1404 2.99 2007-02-15 15:07:19.996577
  15404. 17635 375 1 1499 5.99 2007-02-15 20:26:33.996577
  15405. 17636 375 1 2236 4.99 2007-02-18 02:40:59.996577
  15406. 17637 376 2 1208 0.99 2007-02-15 00:58:29.996577
  15407. 17638 376 1 2779 0.99 2007-02-19 16:47:33.996577
  15408. 17639 377 2 2556 3.99 2007-02-19 01:35:58.996577
  15409. 17640 377 1 3080 1.99 2007-02-20 13:50:58.996577
  15410. 17641 377 2 3086 0.99 2007-02-20 14:11:06.996577
  15411. 17642 377 2 3136 2.99 2007-02-20 18:07:34.996577
  15412. 17643 377 2 3443 4.99 2007-02-21 18:47:26.996577
  15413. 17644 378 2 1623 4.99 2007-02-16 06:17:16.996577
  15414. 17645 378 1 1662 5.99 2007-02-16 08:42:01.996577
  15415. 17646 378 2 2134 7.99 2007-02-17 19:42:10.996577
  15416. 17647 378 2 2713 4.99 2007-02-19 12:51:35.996577
  15417. 17648 379 1 1383 8.99 2007-02-15 13:48:32.996577
  15418. 17649 379 1 2313 5.99 2007-02-18 07:25:11.996577
  15419. 17650 379 1 2926 2.99 2007-02-20 03:06:11.996577
  15420. 17651 380 1 1868 3.99 2007-02-17 00:31:48.996577
  15421. 17652 380 1 1984 2.99 2007-02-17 08:53:54.996577
  15422. 17653 380 1 2018 3.99 2007-02-17 11:04:24.996577
  15423. 17654 380 1 2440 2.99 2007-02-18 17:09:35.996577
  15424. 17655 380 1 2464 4.99 2007-02-18 18:34:31.996577
  15425. 17656 380 2 2998 1.99 2007-02-20 07:58:48.996577
  15426. 17657 380 2 3099 1.99 2007-02-20 15:12:59.996577
  15427. 17658 380 1 3260 4.99 2007-02-21 02:27:39.996577
  15428. 17659 381 1 1402 3.99 2007-02-15 14:59:34.996577
  15429. 17660 381 1 1878 1.99 2007-02-17 01:23:58.996577
  15430. 17661 381 2 2410 2.99 2007-02-18 15:23:34.996577
  15431. 17662 381 1 2418 4.99 2007-02-18 15:43:08.996577
  15432. 17663 381 2 3425 2.99 2007-02-21 16:35:33.996577
  15433. 17664 382 1 2389 0.99 2007-02-18 13:56:13.996577
  15434. 17665 382 1 2468 4.99 2007-02-18 18:52:18.996577
  15435. 17666 382 1 2489 1.99 2007-02-18 20:29:10.996577
  15436. 17667 382 1 2514 2.99 2007-02-18 22:25:10.996577
  15437. 17668 382 2 3125 4.99 2007-02-20 17:00:24.996577
  15438. 17669 383 1 1831 7.99 2007-02-16 20:50:43.996577
  15439. 17670 383 2 2228 2.99 2007-02-18 02:13:16.996577
  15440. 17671 383 1 2252 2.99 2007-02-18 03:33:44.996577
  15441. 17672 383 2 2318 2.99 2007-02-18 07:42:20.996577
  15442. 17673 383 1 2609 7.99 2007-02-19 05:41:38.996577
  15443. 17674 383 1 3091 2.99 2007-02-20 14:31:25.996577
  15444. 17675 384 1 1961 0.99 2007-02-17 07:31:24.996577
  15445. 17676 384 2 2020 0.99 2007-02-17 11:08:16.996577
  15446. 17677 384 1 2378 7.99 2007-02-18 13:26:15.996577
  15447. 17678 384 2 2510 5.99 2007-02-18 22:12:47.996577
  15448. 17679 384 2 2935 3.99 2007-02-20 03:35:50.996577
  15449. 17680 384 1 3088 9.99 2007-02-20 14:24:31.996577
  15450. 17681 384 2 3101 4.99 2007-02-20 15:17:24.996577
  15451. 17682 385 1 1746 2.99 2007-02-16 15:09:45.996577
  15452. 17683 385 1 1937 0.99 2007-02-17 05:45:12.996577
  15453. 17684 385 1 3105 0.99 2007-02-20 15:40:12.996577
  15454. 17685 386 2 1585 3.99 2007-02-16 03:19:39.996577
  15455. 17686 386 1 1608 2.99 2007-02-16 04:57:23.996577
  15456. 17687 386 2 1819 5.99 2007-02-16 20:01:16.996577
  15457. 17688 386 1 2732 0.99 2007-02-19 13:48:05.996577
  15458. 17689 386 1 3351 2.99 2007-02-21 09:50:05.996577
  15459. 17690 387 1 1464 0.99 2007-02-15 19:06:40.996577
  15460. 17691 387 2 1465 0.99 2007-02-15 19:11:34.996577
  15461. 17692 387 1 2068 0.99 2007-02-17 14:40:12.996577
  15462. 17693 387 2 2100 0.99 2007-02-17 17:21:47.996577
  15463. 17694 387 2 2981 5.99 2007-02-20 07:03:43.996577
  15464. 17695 387 2 3378 4.99 2007-02-21 12:19:54.996577
  15465. 17696 388 2 1276 6.99 2007-02-15 06:28:39.996577
  15466. 17697 388 1 2145 0.99 2007-02-17 20:39:02.996577
  15467. 17698 388 1 2537 5.99 2007-02-19 00:20:47.996577
  15468. 17699 388 1 2692 4.99 2007-02-19 11:36:45.996577
  15469. 17700 388 2 3159 7.99 2007-02-20 19:40:16.996577
  15470. 17701 389 1 1763 4.99 2007-02-16 16:19:27.996577
  15471. 17702 389 1 1946 4.99 2007-02-17 06:27:05.996577
  15472. 17703 389 1 2552 3.99 2007-02-19 01:29:55.996577
  15473. 17704 390 2 1539 5.99 2007-02-15 23:39:51.996577
  15474. 17705 390 2 1730 2.99 2007-02-16 13:58:27.996577
  15475. 17706 390 2 1893 2.99 2007-02-17 02:47:03.996577
  15476. 17707 390 1 2330 7.99 2007-02-18 09:09:45.996577
  15477. 17708 390 1 3147 5.99 2007-02-20 18:53:43.996577
  15478. 17709 391 2 1232 0.99 2007-02-15 02:46:36.996577
  15479. 17710 391 2 1931 0.99 2007-02-17 05:20:22.996577
  15480. 17711 391 1 2045 2.99 2007-02-17 13:06:37.996577
  15481. 17712 391 1 2690 2.99 2007-02-19 11:28:28.996577
  15482. 17713 391 2 3163 2.99 2007-02-20 19:50:39.996577
  15483. 17714 392 2 1530 6.99 2007-02-15 23:06:33.996577
  15484. 17715 392 2 1764 2.99 2007-02-16 16:20:20.996577
  15485. 17716 392 2 2289 2.99 2007-02-18 05:58:09.996577
  15486. 17717 392 2 2890 4.99 2007-02-20 00:29:11.996577
  15487. 17718 393 1 1611 6.99 2007-02-16 05:10:01.996577
  15488. 17719 393 2 1915 1.99 2007-02-17 03:56:54.996577
  15489. 17720 393 2 2219 2.99 2007-02-18 01:45:20.996577
  15490. 17721 393 1 2319 4.99 2007-02-18 07:52:48.996577
  15491. 17722 393 2 3001 2.99 2007-02-20 08:18:42.996577
  15492. 17723 394 2 1324 4.99 2007-02-15 09:31:11.996577
  15493. 17724 395 1 1270 0.99 2007-02-15 05:58:48.996577
  15494. 17725 395 1 1562 0.99 2007-02-16 01:14:53.996577
  15495. 17726 395 2 1603 0.99 2007-02-16 04:42:29.996577
  15496. 17727 395 1 3030 4.99 2007-02-20 10:20:25.996577
  15497. 17728 395 1 3310 0.99 2007-02-21 06:33:17.996577
  15498. 17729 395 1 3389 6.99 2007-02-21 13:06:21.996577
  15499. 17730 396 2 1370 1.99 2007-02-15 12:59:31.996577
  15500. 17731 396 2 1385 4.99 2007-02-15 13:56:49.996577
  15501. 17732 396 2 1408 6.99 2007-02-15 15:26:24.996577
  15502. 17733 397 1 1769 5.99 2007-02-16 16:36:14.996577
  15503. 17734 397 2 3027 1.99 2007-02-20 10:18:56.996577
  15504. 17735 398 2 1228 2.99 2007-02-15 02:19:02.996577
  15505. 17736 398 1 2087 6.99 2007-02-17 16:03:36.996577
  15506. 17737 398 2 3141 9.99 2007-02-20 18:24:13.996577
  15507. 17738 399 2 2961 2.99 2007-02-20 05:57:41.996577
  15508. 17739 399 1 3036 5.99 2007-02-20 10:46:57.996577
  15509. 17740 400 2 1364 0.99 2007-02-15 12:33:58.996577
  15510. 17741 400 1 1917 3.99 2007-02-17 04:04:33.996577
  15511. 17742 400 2 1923 6.99 2007-02-17 04:34:36.996577
  15512. 17743 402 2 1194 4.99 2007-02-14 23:53:34.996577
  15513. 17744 402 2 2490 4.99 2007-02-18 20:29:16.996577
  15514. 17745 402 2 2913 2.99 2007-02-20 02:10:53.996577
  15515. 17746 403 2 1221 4.99 2007-02-15 02:03:42.996577
  15516. 17747 403 1 1249 8.99 2007-02-15 04:06:35.996577
  15517. 17748 403 2 2488 3.99 2007-02-18 20:06:52.996577
  15518. 17749 403 1 2927 4.99 2007-02-20 03:10:07.996577
  15519. 17750 403 2 3049 6.99 2007-02-20 11:19:27.996577
  15520. 17751 403 1 3356 5.99 2007-02-21 10:07:11.996577
  15521. 17752 404 2 1506 2.99 2007-02-15 20:48:03.996577
  15522. 17753 404 2 1840 4.99 2007-02-16 22:08:00.996577
  15523. 17754 404 1 2715 4.99 2007-02-19 12:58:01.996577
  15524. 17755 404 1 2951 2.99 2007-02-20 04:51:27.996577
  15525. 17756 405 2 1315 4.99 2007-02-15 08:51:34.996577
  15526. 17757 405 1 1888 0.99 2007-02-17 02:27:02.996577
  15527. 17758 405 2 1953 5.99 2007-02-17 07:03:23.996577
  15528. 17759 405 2 2654 3.99 2007-02-19 09:06:20.996577
  15529. 17760 405 1 3240 4.99 2007-02-21 01:21:43.996577
  15530. 17761 405 1 3253 5.99 2007-02-21 01:54:03.996577
  15531. 17762 406 1 2113 4.99 2007-02-17 18:26:12.996577
  15532. 17763 406 2 2150 3.99 2007-02-17 21:19:02.996577
  15533. 17764 406 1 2241 2.99 2007-02-18 03:00:07.996577
  15534. 17765 406 2 2325 0.99 2007-02-18 08:36:33.996577
  15535. 17766 406 2 2585 0.99 2007-02-19 03:33:29.996577
  15536. 17767 406 1 3186 7.99 2007-02-20 21:32:46.996577
  15537. 17768 406 1 3306 4.99 2007-02-21 06:15:24.996577
  15538. 17769 407 1 1698 2.99 2007-02-16 11:33:08.996577
  15539. 17770 407 2 2597 0.99 2007-02-19 04:22:12.996577
  15540. 17771 408 2 2479 4.99 2007-02-18 19:31:34.996577
  15541. 17772 408 1 2564 2.99 2007-02-19 02:09:36.996577
  15542. 17773 408 2 2728 2.99 2007-02-19 13:32:30.996577
  15543. 17774 409 2 1226 5.99 2007-02-15 02:14:36.996577
  15544. 17775 409 2 2310 8.99 2007-02-18 07:14:25.996577
  15545. 17776 410 1 1514 2.99 2007-02-15 21:26:00.996577
  15546. 17777 410 1 2073 2.99 2007-02-17 15:02:25.996577
  15547. 17778 410 1 2255 4.99 2007-02-18 03:49:38.996577
  15548. 17779 410 2 2400 5.99 2007-02-18 14:39:12.996577
  15549. 17780 410 2 2971 0.99 2007-02-20 06:24:26.996577
  15550. 17781 410 1 3249 4.99 2007-02-21 01:41:45.996577
  15551. 17782 411 1 1985 0.99 2007-02-17 09:00:03.996577
  15552. 17783 411 2 1997 2.99 2007-02-17 09:48:09.996577
  15553. 17784 411 2 2712 0.99 2007-02-19 12:48:39.996577
  15554. 17785 412 1 3292 2.99 2007-02-21 05:27:37.996577
  15555. 17786 413 2 2130 5.99 2007-02-17 19:29:10.996577
  15556. 17787 413 2 2545 4.99 2007-02-19 00:52:02.996577
  15557. 17788 414 1 2246 4.99 2007-02-18 03:22:55.996577
  15558. 17789 414 1 2559 9.99 2007-02-19 01:38:12.996577
  15559. 17790 414 1 3318 5.99 2007-02-21 06:51:31.996577
  15560. 17791 415 2 1867 4.99 2007-02-17 00:30:03.996577
  15561. 17792 415 1 3211 2.99 2007-02-20 23:29:55.996577
  15562. 17793 416 2 1158 2.99 2007-02-14 21:21:59.996577
  15563. 17794 416 1 1343 4.99 2007-02-15 10:55:45.996577
  15564. 17795 416 2 1553 0.99 2007-02-16 00:31:10.996577
  15565. 17796 416 2 1596 2.99 2007-02-16 03:59:24.996577
  15566. 17797 416 2 1771 0.99 2007-02-16 16:40:43.996577
  15567. 17798 417 1 1921 3.99 2007-02-17 04:32:42.996577
  15568. 17799 418 1 2825 2.99 2007-02-19 19:00:45.996577
  15569. 17800 418 2 2943 2.99 2007-02-20 04:11:31.996577
  15570. 17801 418 2 2969 2.99 2007-02-20 06:12:53.996577
  15571. 17802 419 2 2793 2.99 2007-02-19 17:21:03.996577
  15572. 17803 420 2 2672 3.99 2007-02-19 10:10:30.996577
  15573. 17804 420 1 2698 0.99 2007-02-19 11:57:37.996577
  15574. 17805 420 1 2726 0.99 2007-02-19 13:30:46.996577
  15575. 17806 421 1 1693 4.99 2007-02-16 11:08:17.996577
  15576. 17807 421 2 2407 2.99 2007-02-18 15:19:07.996577
  15577. 17808 421 1 3170 4.99 2007-02-20 20:31:20.996577
  15578. 17809 422 1 1846 0.99 2007-02-16 22:31:10.996577
  15579. 17810 422 1 1897 4.99 2007-02-17 02:54:49.996577
  15580. 17811 422 2 2747 2.99 2007-02-19 14:50:33.996577
  15581. 17812 422 1 2778 5.99 2007-02-19 16:46:38.996577
  15582. 17813 423 1 1504 3.99 2007-02-15 20:36:32.996577
  15583. 17814 423 2 1827 0.99 2007-02-16 20:23:06.996577
  15584. 17815 423 1 2600 6.99 2007-02-19 04:35:51.996577
  15585. 17816 423 2 2758 6.99 2007-02-19 15:33:01.996577
  15586. 17817 423 1 3072 8.99 2007-02-20 12:49:57.996577
  15587. 17818 424 2 3044 4.99 2007-02-20 11:07:15.996577
  15588. 17819 424 1 3166 6.99 2007-02-20 20:00:58.996577
  15589. 17820 424 2 3404 0.99 2007-02-21 14:26:18.996577
  15590. 17821 425 1 3276 6.99 2007-02-21 04:04:18.996577
  15591. 17822 426 1 1709 6.99 2007-02-16 12:38:41.996577
  15592. 17823 426 1 1842 7.99 2007-02-16 22:14:25.996577
  15593. 17824 426 1 2204 2.99 2007-02-18 00:40:04.996577
  15594. 17825 426 1 2804 0.99 2007-02-19 17:53:20.996577
  15595. 17826 426 1 3243 0.99 2007-02-21 01:28:37.996577
  15596. 17827 427 1 1342 5.99 2007-02-15 10:54:47.996577
  15597. 17828 427 2 1628 3.99 2007-02-16 06:21:21.996577
  15598. 17829 427 1 1648 5.99 2007-02-16 07:45:33.996577
  15599. 17830 427 1 1857 1.99 2007-02-16 23:41:24.996577
  15600. 17831 427 2 2466 0.99 2007-02-18 18:47:08.996577
  15601. 17832 428 1 1227 3.99 2007-02-15 02:18:29.996577
  15602. 17833 428 2 1471 2.99 2007-02-15 19:21:52.996577
  15603. 17834 428 1 1601 3.99 2007-02-16 04:39:39.996577
  15604. 17835 428 1 2677 2.99 2007-02-19 10:30:25.996577
  15605. 17836 428 2 3377 0.99 2007-02-21 12:19:38.996577
  15606. 17837 429 2 1781 5.99 2007-02-16 17:48:50.996577
  15607. 17838 429 2 1798 2.99 2007-02-16 18:44:41.996577
  15608. 17839 429 2 1916 7.99 2007-02-17 03:58:25.996577
  15609. 17840 429 1 3409 2.99 2007-02-21 14:46:04.996577
  15610. 17841 430 2 1207 0.99 2007-02-15 00:55:34.996577
  15611. 17842 430 1 1274 2.99 2007-02-15 06:21:18.996577
  15612. 17843 430 1 1538 2.99 2007-02-15 23:34:16.996577
  15613. 17844 430 1 1759 6.99 2007-02-16 16:15:03.996577
  15614. 17845 430 2 2892 0.99 2007-02-20 00:35:05.996577
  15615. 17846 430 2 3153 0.99 2007-02-20 19:12:41.996577
  15616. 17847 431 2 1561 2.99 2007-02-16 01:09:56.996577
  15617. 17848 431 1 2096 4.99 2007-02-17 17:01:30.996577
  15618. 17849 431 1 2269 3.99 2007-02-18 04:49:20.996577
  15619. 17850 431 2 2281 4.99 2007-02-18 05:15:55.996577
  15620. 17851 431 2 2761 2.99 2007-02-19 15:50:43.996577
  15621. 17852 431 2 3304 6.99 2007-02-21 06:12:06.996577
  15622. 17853 431 2 3369 8.99 2007-02-21 11:48:57.996577
  15623. 17854 432 2 1180 5.99 2007-02-14 23:07:27.996577
  15624. 17855 432 2 1597 2.99 2007-02-16 04:15:29.996577
  15625. 17856 432 2 3194 4.99 2007-02-20 22:28:23.996577
  15626. 17857 434 1 1225 0.99 2007-02-15 02:14:01.996577
  15627. 17858 434 2 1584 5.99 2007-02-16 03:19:16.996577
  15628. 17859 434 2 2415 7.99 2007-02-18 15:31:08.996577
  15629. 17860 434 1 2430 3.99 2007-02-18 16:20:12.996577
  15630. 17861 434 1 2494 3.99 2007-02-18 20:43:35.996577
  15631. 17862 434 1 3014 2.99 2007-02-20 09:13:46.996577
  15632. 17863 434 2 3037 2.99 2007-02-20 10:56:29.996577
  15633. 17864 435 2 1443 0.99 2007-02-15 17:26:17.996577
  15634. 17865 435 1 2984 0.99 2007-02-20 07:12:10.996577
  15635. 17866 436 1 2291 9.99 2007-02-18 06:05:12.996577
  15636. 17867 437 2 2239 5.99 2007-02-18 02:52:20.996577
  15637. 17868 437 1 2792 2.99 2007-02-19 17:20:51.996577
  15638. 17869 437 2 3265 2.99 2007-02-21 02:51:39.996577
  15639. 17870 438 1 1431 4.99 2007-02-15 16:54:55.996577
  15640. 17871 438 2 1779 0.99 2007-02-16 17:23:37.996577
  15641. 17872 438 2 2206 0.99 2007-02-18 00:43:11.996577
  15642. 17873 438 1 2591 4.99 2007-02-19 04:00:48.996577
  15643. 17874 438 1 3315 4.99 2007-02-21 06:45:30.996577
  15644. 17875 438 2 3368 0.99 2007-02-21 11:47:04.996577
  15645. 17876 439 1 1264 4.99 2007-02-15 05:28:05.996577
  15646. 17877 439 2 1557 0.99 2007-02-16 00:57:01.996577
  15647. 17878 439 2 2097 4.99 2007-02-17 17:08:30.996577
  15648. 17879 439 1 2621 2.99 2007-02-19 06:35:57.996577
  15649. 17880 439 1 2992 2.99 2007-02-20 07:40:17.996577
  15650. 17881 439 1 3294 6.99 2007-02-21 05:31:49.996577
  15651. 17882 441 1 1602 4.99 2007-02-16 04:41:06.996577
  15652. 17883 441 2 2328 4.99 2007-02-18 08:45:47.996577
  15653. 17884 442 1 1251 5.99 2007-02-15 04:27:21.996577
  15654. 17885 442 2 1358 0.99 2007-02-15 11:57:14.996577
  15655. 17886 442 2 1576 8.99 2007-02-16 02:23:05.996577
  15656. 17887 442 1 1774 2.99 2007-02-16 16:56:18.996577
  15657. 17888 443 1 2871 2.99 2007-02-19 22:56:15.996577
  15658. 17889 444 1 1239 0.99 2007-02-15 03:21:27.996577
  15659. 17890 444 2 1397 3.99 2007-02-15 14:53:52.996577
  15660. 17891 444 2 1441 1.99 2007-02-15 17:22:47.996577
  15661. 17892 444 1 2551 4.99 2007-02-19 01:19:30.996577
  15662. 17893 444 2 3301 7.99 2007-02-21 06:00:51.996577
  15663. 17894 444 2 3415 5.99 2007-02-21 15:28:15.996577
  15664. 17895 446 1 2248 4.99 2007-02-18 03:28:14.996577
  15665. 17896 446 2 2335 3.99 2007-02-18 09:28:02.996577
  15666. 17897 446 2 2520 6.99 2007-02-18 22:57:26.996577
  15667. 17898 446 2 2710 0.99 2007-02-19 12:32:22.996577
  15668. 17899 446 1 3060 2.99 2007-02-20 12:15:46.996577
  15669. 17900 446 2 3168 0.99 2007-02-20 20:14:27.996577
  15670. 17901 447 2 1230 0.99 2007-02-15 02:32:35.996577
  15671. 17902 447 2 1890 2.99 2007-02-17 02:34:39.996577
  15672. 17903 447 1 2025 4.99 2007-02-17 11:32:26.996577
  15673. 17904 447 2 2285 4.99 2007-02-18 05:29:20.996577
  15674. 17905 448 1 1313 5.99 2007-02-15 08:47:00.996577
  15675. 17906 448 2 1823 7.99 2007-02-16 20:16:42.996577
  15676. 17907 448 2 2697 0.99 2007-02-19 11:57:34.996577
  15677. 17908 448 2 3225 3.99 2007-02-21 00:45:21.996577
  15678. 17909 448 2 3347 5.99 2007-02-21 09:36:58.996577
  15679. 17910 449 2 1295 4.99 2007-02-15 07:45:46.996577
  15680. 17911 449 1 2348 0.99 2007-02-18 10:44:09.996577
  15681. 17912 449 2 2970 2.99 2007-02-20 06:20:17.996577
  15682. 17913 450 2 1639 4.99 2007-02-16 07:02:05.996577
  15683. 17914 450 1 1739 0.99 2007-02-16 14:38:04.996577
  15684. 17915 450 2 1914 2.99 2007-02-17 03:54:20.996577
  15685. 17916 450 2 2278 0.99 2007-02-18 05:06:23.996577
  15686. 17917 450 1 2501 4.99 2007-02-18 21:38:37.996577
  15687. 17918 450 1 2626 2.99 2007-02-19 06:57:10.996577
  15688. 17919 450 1 3155 4.99 2007-02-20 19:31:04.996577
  15689. 17920 451 1 1202 0.99 2007-02-15 00:36:30.996577
  15690. 17921 451 1 1851 0.99 2007-02-16 23:00:52.996577
  15691. 17922 451 1 1940 6.99 2007-02-17 06:10:48.996577
  15692. 17923 451 1 2671 1.99 2007-02-19 10:01:37.996577
  15693. 17924 451 1 2909 3.99 2007-02-20 01:47:36.996577
  15694. 17925 451 2 2917 0.99 2007-02-20 02:37:01.996577
  15695. 17926 451 1 3316 6.99 2007-02-21 06:48:44.996577
  15696. 17927 452 2 1203 4.99 2007-02-15 00:37:28.996577
  15697. 17928 452 1 1512 5.99 2007-02-15 21:21:29.996577
  15698. 17929 452 1 1794 3.99 2007-02-16 18:37:03.996577
  15699. 17930 452 1 2263 0.99 2007-02-18 04:26:13.996577
  15700. 17931 452 2 2266 4.99 2007-02-18 04:33:28.996577
  15701. 17932 452 1 2504 0.99 2007-02-18 21:48:19.996577
  15702. 17933 452 2 2661 0.99 2007-02-19 09:19:18.996577
  15703. 17934 453 2 2852 5.99 2007-02-19 21:37:16.996577
  15704. 17935 453 1 2853 7.99 2007-02-19 21:38:07.996577
  15705. 17936 453 2 2887 4.99 2007-02-20 00:08:09.996577
  15706. 17937 454 2 1647 4.99 2007-02-16 07:43:24.996577
  15707. 17938 454 2 1844 7.99 2007-02-16 22:22:19.996577
  15708. 17939 454 1 1861 1.99 2007-02-16 23:45:57.996577
  15709. 17940 454 1 1938 4.99 2007-02-17 05:47:02.996577
  15710. 17941 454 2 2048 5.99 2007-02-17 13:23:55.996577
  15711. 17942 454 2 2182 5.99 2007-02-17 23:24:44.996577
  15712. 17943 454 1 2437 2.99 2007-02-18 16:58:52.996577
  15713. 17944 454 2 2666 9.99 2007-02-19 09:45:38.996577
  15714. 17945 454 1 3221 2.99 2007-02-21 00:18:13.996577
  15715. 17946 454 1 3362 4.99 2007-02-21 10:48:20.996577
  15716. 17947 455 2 1382 1.99 2007-02-15 13:46:34.996577
  15717. 17948 455 1 1802 1.99 2007-02-16 18:51:56.996577
  15718. 17949 455 1 1906 2.99 2007-02-17 03:22:01.996577
  15719. 17950 455 2 2356 0.99 2007-02-18 11:27:49.996577
  15720. 17951 456 1 1288 2.99 2007-02-15 07:10:18.996577
  15721. 17952 456 1 1700 0.99 2007-02-16 11:46:49.996577
  15722. 17953 456 2 2103 5.99 2007-02-17 17:41:36.996577
  15723. 17954 456 2 2146 6.99 2007-02-17 20:54:49.996577
  15724. 17955 456 1 2192 4.99 2007-02-18 00:04:13.996577
  15725. 17956 456 1 2404 0.99 2007-02-18 15:02:14.996577
  15726. 17957 456 1 2581 2.99 2007-02-19 03:22:39.996577
  15727. 17958 457 2 1453 4.99 2007-02-15 18:05:05.996577
  15728. 17959 457 2 1727 0.99 2007-02-16 13:50:13.996577
  15729. 17960 457 1 2030 0.99 2007-02-17 11:41:53.996577
  15730. 17961 457 1 2172 7.99 2007-02-17 22:34:42.996577
  15731. 17962 457 1 2670 4.99 2007-02-19 09:58:42.996577
  15732. 17963 457 1 2762 3.99 2007-02-19 15:50:57.996577
  15733. 17964 457 1 2811 0.99 2007-02-19 18:21:56.996577
  15734. 17965 457 2 3115 2.99 2007-02-20 16:27:31.996577
  15735. 17966 457 2 3184 2.99 2007-02-20 21:26:10.996577
  15736. 17967 458 2 2629 5.99 2007-02-19 07:10:38.996577
  15737. 17968 458 2 3322 0.99 2007-02-21 07:11:03.996577
  15738. 17969 459 2 1876 0.99 2007-02-17 01:19:17.996577
  15739. 17970 459 2 1977 2.99 2007-02-17 08:06:48.996577
  15740. 17971 459 2 2075 4.99 2007-02-17 15:08:59.996577
  15741. 17972 459 1 2899 0.99 2007-02-20 01:07:47.996577
  15742. 17973 459 2 3041 4.99 2007-02-20 11:04:10.996577
  15743. 17974 459 2 3045 0.99 2007-02-20 11:10:26.996577
  15744. 17975 459 2 3234 9.99 2007-02-21 01:08:10.996577
  15745. 17976 460 2 1392 0.99 2007-02-15 14:40:53.996577
  15746. 17977 461 2 3127 5.99 2007-02-20 17:08:09.996577
  15747. 17978 461 2 3319 4.99 2007-02-21 06:54:12.996577
  15748. 17979 462 2 1773 5.99 2007-02-16 16:42:09.996577
  15749. 17980 462 2 1926 9.99 2007-02-17 04:52:56.996577
  15750. 17981 462 1 3279 4.99 2007-02-21 04:34:19.996577
  15751. 17982 463 1 1284 2.99 2007-02-15 06:55:59.996577
  15752. 17983 463 2 2527 4.99 2007-02-18 23:38:57.996577
  15753. 17984 463 1 3217 2.99 2007-02-20 23:56:38.996577
  15754. 17985 463 1 3309 4.99 2007-02-21 06:29:15.996577
  15755. 17986 464 2 1277 4.99 2007-02-15 06:29:55.996577
  15756. 17987 464 1 3167 2.99 2007-02-20 20:10:55.996577
  15757. 17988 465 1 1337 2.99 2007-02-15 10:41:08.996577
  15758. 17989 465 1 2079 4.99 2007-02-17 15:18:11.996577
  15759. 17990 465 1 2159 8.99 2007-02-17 22:05:55.996577
  15760. 17991 465 2 2524 0.99 2007-02-18 23:16:37.996577
  15761. 17992 466 2 1808 7.99 2007-02-16 19:28:01.996577
  15762. 17993 466 2 2446 8.99 2007-02-18 17:33:07.996577
  15763. 17994 466 1 3022 3.99 2007-02-20 09:45:46.996577
  15764. 17995 466 2 3237 4.99 2007-02-21 01:16:22.996577
  15765. 17996 466 2 3343 2.99 2007-02-21 09:25:25.996577
  15766. 17997 467 1 1737 8.99 2007-02-16 14:28:10.996577
  15767. 17998 467 2 2121 4.99 2007-02-17 19:07:20.996577
  15768. 17999 467 2 2870 9.99 2007-02-19 22:46:12.996577
  15769. 18000 467 1 3250 6.99 2007-02-21 01:45:02.996577
  15770. 18001 468 2 1229 2.99 2007-02-15 02:21:39.996577
  15771. 18002 468 1 1627 8.99 2007-02-16 06:19:35.996577
  15772. 18003 468 1 1821 2.99 2007-02-16 20:11:15.996577
  15773. 18004 468 1 1975 2.99 2007-02-17 08:00:36.996577
  15774. 18005 468 2 2462 4.99 2007-02-18 18:28:41.996577
  15775. 18006 468 1 2831 0.99 2007-02-19 19:45:32.996577
  15776. 18007 469 2 1399 0.99 2007-02-15 14:58:17.996577
  15777. 18008 469 1 1680 9.99 2007-02-16 09:45:48.996577
  15778. 18009 470 2 1256 0.99 2007-02-15 04:42:23.996577
  15779. 18010 470 1 1283 0.99 2007-02-15 06:55:56.996577
  15780. 18011 470 2 1594 7.99 2007-02-16 03:43:38.996577
  15781. 18012 471 1 1447 4.99 2007-02-15 17:42:17.996577
  15782. 18013 471 2 1449 2.99 2007-02-15 17:47:42.996577
  15783. 18014 471 2 2165 2.99 2007-02-17 22:19:36.996577
  15784. 18015 471 2 2350 4.99 2007-02-18 10:53:55.996577
  15785. 18016 471 2 3073 4.99 2007-02-20 13:01:52.996577
  15786. 18017 472 1 1389 4.99 2007-02-15 14:17:27.996577
  15787. 18018 472 2 1776 6.99 2007-02-16 17:15:24.996577
  15788. 18019 472 1 2538 5.99 2007-02-19 00:25:25.996577
  15789. 18020 472 1 2974 0.99 2007-02-20 06:28:50.996577
  15790. 18021 472 1 2991 4.99 2007-02-20 07:39:09.996577
  15791. 18022 472 1 3254 0.99 2007-02-21 01:55:36.996577
  15792. 18023 473 2 1748 0.99 2007-02-16 15:22:29.996577
  15793. 18024 473 1 2125 2.99 2007-02-17 19:22:08.996577
  15794. 18025 473 2 2553 4.99 2007-02-19 01:33:25.996577
  15795. 18026 473 2 2748 4.99 2007-02-19 14:50:52.996577
  15796. 18027 474 1 1758 8.99 2007-02-16 16:08:05.996577
  15797. 18028 474 2 2944 7.99 2007-02-20 04:12:08.996577
  15798. 18029 476 1 1682 3.99 2007-02-16 10:22:51.996577
  15799. 18030 476 1 2080 0.99 2007-02-17 15:28:06.996577
  15800. 18031 476 2 2508 4.99 2007-02-18 22:12:24.996577
  15801. 18032 476 2 3448 2.99 2007-02-21 19:27:46.996577
  15802. 18033 477 1 1714 6.99 2007-02-16 12:58:25.996577
  15803. 18034 477 1 2187 2.99 2007-02-17 23:45:53.996577
  15804. 18035 477 1 2306 10.99 2007-02-18 07:01:49.996577
  15805. 18036 477 2 2676 4.99 2007-02-19 10:23:23.996577
  15806. 18037 478 1 1708 0.99 2007-02-16 12:37:10.996577
  15807. 18038 478 2 2358 4.99 2007-02-18 11:29:17.996577
  15808. 18039 478 1 2529 6.99 2007-02-18 23:46:53.996577
  15809. 18040 478 2 2616 8.99 2007-02-19 06:01:26.996577
  15810. 18041 478 2 2765 4.99 2007-02-19 16:03:05.996577
  15811. 18042 478 2 3259 4.99 2007-02-21 02:25:41.996577
  15812. 18043 479 1 1902 2.99 2007-02-17 03:04:18.996577
  15813. 18044 479 2 1947 3.99 2007-02-17 06:30:46.996577
  15814. 18045 479 2 1987 2.99 2007-02-17 09:09:02.996577
  15815. 18046 479 2 2071 3.99 2007-02-17 15:01:43.996577
  15816. 18047 479 2 2376 2.99 2007-02-18 13:23:56.996577
  15817. 18048 479 2 2764 6.99 2007-02-19 15:55:51.996577
  15818. 18049 480 1 1353 0.99 2007-02-15 11:42:02.996577
  15819. 18050 480 1 1733 0.99 2007-02-16 14:05:33.996577
  15820. 18051 481 2 1168 2.99 2007-02-14 22:03:35.996577
  15821. 18052 481 2 2296 4.99 2007-02-18 06:39:08.996577
  15822. 18053 481 2 3285 4.99 2007-02-21 04:58:39.996577
  15823. 18054 481 2 3293 0.99 2007-02-21 05:27:59.996577
  15824. 18055 482 2 3048 2.99 2007-02-20 11:18:21.996577
  15825. 18056 482 2 3255 0.99 2007-02-21 02:08:18.996577
  15826. 18057 483 1 2855 4.99 2007-02-19 21:40:15.996577
  15827. 18058 483 2 2867 0.99 2007-02-19 22:37:04.996577
  15828. 18059 483 1 3380 8.99 2007-02-21 12:27:12.996577
  15829. 18060 484 1 1351 3.99 2007-02-15 11:19:29.996577
  15830. 18061 484 2 1643 3.99 2007-02-16 07:24:01.996577
  15831. 18062 484 1 2015 4.99 2007-02-17 10:44:55.996577
  15832. 18063 484 1 2044 5.99 2007-02-17 13:06:23.996577
  15833. 18064 485 2 1684 2.99 2007-02-16 10:26:00.996577
  15834. 18065 485 1 1721 8.99 2007-02-16 13:30:02.996577
  15835. 18066 486 1 2036 4.99 2007-02-17 12:15:18.996577
  15836. 18067 486 1 2102 5.99 2007-02-17 17:33:48.996577
  15837. 18068 486 2 2566 2.99 2007-02-19 02:14:05.996577
  15838. 18069 486 2 2797 2.99 2007-02-19 17:32:58.996577
  15839. 18070 487 2 3100 3.99 2007-02-20 15:16:23.996577
  15840. 18071 488 2 1655 3.99 2007-02-16 08:20:05.996577
  15841. 18072 488 2 1704 5.99 2007-02-16 12:14:22.996577
  15842. 18073 489 2 1614 3.99 2007-02-16 05:26:28.996577
  15843. 18074 489 1 2201 0.99 2007-02-18 00:36:53.996577
  15844. 18075 489 1 2370 7.99 2007-02-18 12:58:20.996577
  15845. 18076 489 1 2802 4.99 2007-02-19 17:46:43.996577
  15846. 18077 490 1 1665 3.99 2007-02-16 08:44:28.996577
  15847. 18078 491 2 1198 2.99 2007-02-15 00:17:24.996577
  15848. 18079 491 1 1371 4.99 2007-02-15 13:06:41.996577
  15849. 18080 491 2 2026 4.99 2007-02-17 11:34:04.996577
  15850. 18081 491 1 2259 4.99 2007-02-18 04:06:11.996577
  15851. 18082 491 2 2391 4.99 2007-02-18 14:01:56.996577
  15852. 18083 491 2 3031 4.99 2007-02-20 10:21:15.996577
  15853. 18084 491 1 3440 3.99 2007-02-21 18:26:44.996577
  15854. 18085 492 2 1691 1.99 2007-02-16 10:52:54.996577
  15855. 18086 492 2 1855 4.99 2007-02-16 23:23:24.996577
  15856. 18087 492 2 1956 4.99 2007-02-17 07:11:58.996577
  15857. 18088 492 1 3298 9.99 2007-02-21 05:38:10.996577
  15858. 18089 493 2 2109 3.99 2007-02-17 18:10:08.996577
  15859. 18090 493 1 2365 4.99 2007-02-18 12:14:00.996577
  15860. 18091 493 1 2579 0.99 2007-02-19 03:09:10.996577
  15861. 18092 493 1 2864 2.99 2007-02-19 22:29:18.996577
  15862. 18093 494 1 1683 2.99 2007-02-16 10:23:21.996577
  15863. 18094 495 2 2074 2.99 2007-02-17 15:08:29.996577
  15864. 18095 495 1 2349 4.99 2007-02-18 10:53:40.996577
  15865. 18096 495 1 2549 7.99 2007-02-19 01:15:05.996577
  15866. 18097 495 1 3129 3.99 2007-02-20 17:26:14.996577
  15867. 18098 496 1 2567 2.99 2007-02-19 02:33:12.996577
  15868. 18099 497 2 2180 8.99 2007-02-17 23:16:09.996577
  15869. 18100 497 1 2298 5.99 2007-02-18 06:46:55.996577
  15870. 18101 497 1 2406 2.99 2007-02-18 15:08:03.996577
  15871. 18102 497 2 2818 4.99 2007-02-19 18:34:18.996577
  15872. 18103 498 1 1253 6.99 2007-02-15 04:34:59.996577
  15873. 18104 498 1 1782 2.99 2007-02-16 17:49:38.996577
  15874. 18105 498 1 2344 2.99 2007-02-18 10:30:13.996577
  15875. 18106 498 1 2449 4.99 2007-02-18 17:47:02.996577
  15876. 18107 498 1 3098 0.99 2007-02-20 15:05:27.996577
  15877. 18108 498 2 3360 0.99 2007-02-21 10:41:07.996577
  15878. 18109 499 1 1355 2.99 2007-02-15 11:42:25.996577
  15879. 18110 499 2 1526 4.99 2007-02-15 22:56:17.996577
  15880. 18111 499 2 1830 4.99 2007-02-16 20:47:09.996577
  15881. 18112 499 2 3241 1.99 2007-02-21 01:22:58.996577
  15882. 18113 500 1 1375 5.99 2007-02-15 13:23:22.996577
  15883. 18114 500 2 1388 5.99 2007-02-15 14:17:07.996577
  15884. 18115 500 2 2189 3.99 2007-02-17 23:48:52.996577
  15885. 18116 500 2 2526 6.99 2007-02-18 23:31:33.996577
  15886. 18117 500 1 2996 2.99 2007-02-20 07:48:55.996577
  15887. 18118 501 2 3222 5.99 2007-02-21 00:18:55.996577
  15888. 18119 501 1 3412 7.99 2007-02-21 15:12:57.996577
  15889. 18120 502 2 1696 7.99 2007-02-16 11:18:27.996577
  15890. 18121 502 2 2420 0.99 2007-02-18 15:50:54.996577
  15891. 18122 502 1 2911 0.99 2007-02-20 02:01:03.996577
  15892. 18123 503 2 2108 4.99 2007-02-17 18:03:52.996577
  15893. 18124 503 1 2225 2.99 2007-02-18 02:04:06.996577
  15894. 18125 503 2 3430 0.99 2007-02-21 17:14:34.996577
  15895. 18126 504 1 2720 1.99 2007-02-19 13:20:21.996577
  15896. 18127 504 1 2938 6.99 2007-02-20 03:45:48.996577
  15897. 18128 505 2 1799 5.99 2007-02-16 18:45:46.996577
  15898. 18129 505 2 1886 4.99 2007-02-17 02:04:28.996577
  15899. 18130 505 1 2773 7.99 2007-02-19 16:32:44.996577
  15900. 18131 505 1 3137 5.99 2007-02-20 18:09:54.996577
  15901. 18132 506 1 1446 6.99 2007-02-15 17:42:11.996577
  15902. 18133 506 1 1467 2.99 2007-02-15 19:15:36.996577
  15903. 18134 506 2 1565 0.99 2007-02-16 01:41:35.996577
  15904. 18135 506 1 2755 9.99 2007-02-19 15:24:57.996577
  15905. 18136 506 2 2824 6.99 2007-02-19 19:00:11.996577
  15906. 18137 507 2 1307 4.99 2007-02-15 08:34:41.996577
  15907. 18138 507 1 2143 4.99 2007-02-17 20:26:39.996577
  15908. 18139 507 2 2283 4.99 2007-02-18 05:24:32.996577
  15909. 18140 508 2 1661 4.99 2007-02-16 08:41:23.996577
  15910. 18141 509 1 1267 2.99 2007-02-15 05:49:47.996577
  15911. 18142 509 2 2919 4.99 2007-02-20 02:38:42.996577
  15912. 18143 510 2 1435 5.99 2007-02-15 17:00:56.996577
  15913. 18144 510 2 1757 0.99 2007-02-16 16:00:50.996577
  15914. 18145 510 2 1925 0.99 2007-02-17 04:45:13.996577
  15915. 18146 510 1 2729 8.99 2007-02-19 13:34:41.996577
  15916. 18147 510 2 2806 0.99 2007-02-19 17:59:14.996577
  15917. 18148 510 2 2817 0.99 2007-02-19 18:33:48.996577
  15918. 18149 510 2 3352 8.99 2007-02-21 09:54:55.996577
  15919. 18150 510 2 3465 5.99 2007-02-21 20:38:27.996577
  15920. 18151 511 2 1281 2.99 2007-02-15 06:50:05.996577
  15921. 18152 511 1 1508 2.99 2007-02-15 21:01:50.996577
  15922. 18153 511 2 2966 10.99 2007-02-20 06:07:59.996577
  15923. 18154 511 2 3366 4.99 2007-02-21 11:32:03.996577
  15924. 18155 512 1 1176 6.99 2007-02-14 22:57:03.996577
  15925. 18156 512 2 2029 4.99 2007-02-17 11:39:25.996577
  15926. 18157 512 1 2364 2.99 2007-02-18 12:05:58.996577
  15927. 18158 513 1 1607 2.99 2007-02-16 04:54:01.996577
  15928. 18159 513 2 2290 7.99 2007-02-18 06:03:03.996577
  15929. 18160 513 2 2737 1.99 2007-02-19 14:16:59.996577
  15930. 18161 514 2 1692 4.99 2007-02-16 10:58:45.996577
  15931. 18162 514 1 2002 3.99 2007-02-17 10:08:24.996577
  15932. 18163 514 2 2362 0.99 2007-02-18 11:59:41.996577
  15933. 18164 514 1 2789 0.99 2007-02-19 17:16:47.996577
  15934. 18165 514 2 3084 2.99 2007-02-20 14:03:50.996577
  15935. 18166 514 1 3385 0.99 2007-02-21 12:45:14.996577
  15936. 18167 515 1 1244 4.99 2007-02-15 03:37:06.996577
  15937. 18168 515 2 1531 5.99 2007-02-15 23:09:00.996577
  15938. 18169 515 2 2003 4.99 2007-02-17 10:09:01.996577
  15939. 18170 515 2 2484 4.99 2007-02-18 19:53:49.996577
  15940. 18171 515 2 2513 0.99 2007-02-18 22:21:41.996577
  15941. 18172 515 2 3063 3.99 2007-02-20 12:20:29.996577
  15942. 18173 516 2 1159 4.99 2007-02-14 21:23:39.996577
  15943. 18174 516 1 1200 1.99 2007-02-15 00:28:17.996577
  15944. 18175 516 1 1718 10.99 2007-02-16 13:20:28.996577
  15945. 18176 516 1 2017 0.99 2007-02-17 11:01:56.996577
  15946. 18177 516 2 3068 0.99 2007-02-20 12:30:48.996577
  15947. 18178 516 1 3431 2.99 2007-02-21 17:15:14.996577
  15948. 18179 517 2 1653 4.99 2007-02-16 08:03:11.996577
  15949. 18180 517 1 1809 8.99 2007-02-16 19:28:46.996577
  15950. 18181 517 1 1850 4.99 2007-02-16 23:00:01.996577
  15951. 18182 517 2 2534 2.99 2007-02-19 00:07:05.996577
  15952. 18183 517 1 3113 0.99 2007-02-20 16:25:06.996577
  15953. 18184 518 2 1552 5.99 2007-02-16 00:30:03.996577
  15954. 18185 518 2 3311 0.99 2007-02-21 06:33:53.996577
  15955. 18186 519 1 1941 2.99 2007-02-17 06:11:11.996577
  15956. 18187 519 2 2505 8.99 2007-02-18 21:56:53.996577
  15957. 18188 519 2 2997 5.99 2007-02-20 07:52:11.996577
  15958. 18189 520 1 1411 0.99 2007-02-15 15:34:02.996577
  15959. 18190 520 2 2174 6.99 2007-02-17 22:37:27.996577
  15960. 18191 520 1 2772 4.99 2007-02-19 16:27:53.996577
  15961. 18192 521 1 1761 0.99 2007-02-16 16:18:23.996577
  15962. 18193 521 2 2053 0.99 2007-02-17 13:48:00.996577
  15963. 18194 522 1 1289 3.99 2007-02-15 07:12:35.996577
  15964. 18195 522 2 3102 8.99 2007-02-20 15:24:21.996577
  15965. 18196 522 1 3188 2.99 2007-02-20 21:38:53.996577
  15966. 18197 522 2 3191 0.99 2007-02-20 22:15:05.996577
  15967. 18198 523 2 1729 6.99 2007-02-16 13:58:13.996577
  15968. 18199 523 1 2447 8.99 2007-02-18 17:39:21.996577
  15969. 18200 523 1 2583 7.99 2007-02-19 03:30:06.996577
  15970. 18201 523 2 2669 0.99 2007-02-19 09:57:18.996577
  15971. 18202 524 1 1306 1.99 2007-02-15 08:27:50.996577
  15972. 18203 524 2 1651 4.99 2007-02-16 07:53:04.996577
  15973. 18204 524 2 3454 2.99 2007-02-21 19:40:39.996577
  15974. 18205 525 2 1772 2.99 2007-02-16 16:41:20.996577
  15975. 18206 526 1 1255 4.99 2007-02-15 04:42:11.996577
  15976. 18207 526 2 1848 0.99 2007-02-16 22:35:33.996577
  15977. 18208 526 2 1865 7.99 2007-02-17 00:18:02.996577
  15978. 18209 526 2 1972 2.99 2007-02-17 07:54:15.996577
  15979. 18210 526 1 1981 2.99 2007-02-17 08:32:00.996577
  15980. 18211 526 2 2398 4.99 2007-02-18 14:25:19.996577
  15981. 18212 526 1 2828 2.99 2007-02-19 19:19:59.996577
  15982. 18213 526 2 2932 6.99 2007-02-20 03:19:45.996577
  15983. 18214 526 1 3339 6.99 2007-02-21 09:05:37.996577
  15984. 18215 527 1 1398 2.99 2007-02-15 14:57:08.996577
  15985. 18216 527 1 2422 0.99 2007-02-18 15:57:23.996577
  15986. 18217 527 2 2496 0.99 2007-02-18 20:48:37.996577
  15987. 18218 527 1 2539 2.99 2007-02-19 00:27:05.996577
  15988. 18219 528 2 1875 2.99 2007-02-17 01:13:36.996577
  15989. 18220 528 1 2019 4.99 2007-02-17 11:07:10.996577
  15990. 18221 529 1 1234 1.99 2007-02-15 02:50:18.996577
  15991. 18222 529 2 1686 0.99 2007-02-16 10:36:46.996577
  15992. 18223 529 2 3354 0.99 2007-02-21 09:58:15.996577
  15993. 18224 530 2 1273 1.99 2007-02-15 06:21:01.996577
  15994. 18225 530 1 1516 0.99 2007-02-15 21:39:36.996577
  15995. 18226 530 1 2158 2.99 2007-02-17 22:04:53.996577
  15996. 18227 531 2 2972 2.99 2007-02-20 06:26:20.996577
  15997. 18228 532 1 1694 4.99 2007-02-16 11:08:49.996577
  15998. 18229 532 2 2821 3.99 2007-02-19 18:55:18.996577
  15999. 18230 533 1 1421 5.99 2007-02-15 16:25:30.996577
  16000. 18231 533 1 1652 0.99 2007-02-16 08:00:03.996577
  16001. 18232 533 1 1859 0.99 2007-02-16 23:42:04.996577
  16002. 18233 533 1 1954 2.99 2007-02-17 07:06:21.996577
  16003. 18234 533 2 2770 6.99 2007-02-19 16:22:48.996577
  16004. 18235 533 1 2956 0.99 2007-02-20 05:15:49.996577
  16005. 18236 534 1 1610 4.99 2007-02-16 05:04:59.996577
  16006. 18237 534 1 1673 2.99 2007-02-16 09:08:43.996577
  16007. 18238 534 1 2436 0.99 2007-02-18 16:41:58.996577
  16008. 18239 534 2 3213 1.99 2007-02-20 23:33:45.996577
  16009. 18240 534 1 3216 4.99 2007-02-20 23:48:03.996577
  16010. 18241 535 1 1712 4.99 2007-02-16 12:53:35.996577
  16011. 18242 535 1 3228 4.99 2007-02-21 00:48:50.996577
  16012. 18243 536 1 1582 4.99 2007-02-16 03:00:23.996577
  16013. 18244 536 2 1962 2.99 2007-02-17 07:37:24.996577
  16014. 18245 536 2 2403 2.99 2007-02-18 15:01:48.996577
  16015. 18246 537 1 1445 2.99 2007-02-15 17:38:33.996577
  16016. 18247 537 2 2184 2.99 2007-02-17 23:39:02.996577
  16017. 18248 537 1 2586 8.99 2007-02-19 03:33:37.996577
  16018. 18249 537 2 3134 8.99 2007-02-20 17:57:35.996577
  16019. 18250 538 1 1314 5.99 2007-02-15 08:50:11.996577
  16020. 18251 538 1 1912 4.99 2007-02-17 03:46:58.996577
  16021. 18252 538 1 2682 4.99 2007-02-19 10:46:43.996577
  16022. 18253 538 2 3189 2.99 2007-02-20 21:47:59.996577
  16023. 18254 539 2 1282 3.99 2007-02-15 06:53:59.996577
  16024. 18255 539 1 1327 0.99 2007-02-15 09:40:05.996577
  16025. 18256 539 2 1444 4.99 2007-02-15 17:36:42.996577
  16026. 18257 540 2 1263 2.99 2007-02-15 05:25:05.996577
  16027. 18258 540 2 1290 4.99 2007-02-15 07:21:10.996577
  16028. 18259 540 2 2640 2.99 2007-02-19 07:54:39.996577
  16029. 18260 540 1 2953 3.99 2007-02-20 05:07:37.996577
  16030. 18261 540 1 3340 3.99 2007-02-21 09:05:49.996577
  16031. 18262 541 2 1986 2.99 2007-02-17 09:03:25.996577
  16032. 18263 541 1 2708 6.99 2007-02-19 12:27:31.996577
  16033. 18264 542 1 2610 4.99 2007-02-19 05:44:46.996577
  16034. 18265 542 2 2957 10.99 2007-02-20 05:22:13.996577
  16035. 18266 543 2 1720 4.99 2007-02-16 13:28:40.996577
  16036. 18267 543 1 2426 2.99 2007-02-18 16:09:10.996577
  16037. 18268 543 2 3070 4.99 2007-02-20 12:44:05.996577
  16038. 18269 543 1 3128 2.99 2007-02-20 17:10:13.996577
  16039. 18270 543 2 3467 5.99 2007-02-21 20:47:51.996577
  16040. 18271 544 1 1248 1.99 2007-02-15 04:02:18.996577
  16041. 18272 544 2 1434 10.99 2007-02-15 16:59:12.996577
  16042. 18273 544 1 2373 0.99 2007-02-18 13:06:23.996577
  16043. 18274 544 1 2395 2.99 2007-02-18 14:13:41.996577
  16044. 18275 545 1 2123 2.99 2007-02-17 19:16:56.996577
  16045. 18276 546 1 1181 1.99 2007-02-14 23:10:43.996577
  16046. 18277 546 2 1403 0.99 2007-02-15 15:00:25.996577
  16047. 18278 546 1 1787 3.99 2007-02-16 17:59:25.996577
  16048. 18279 546 1 2361 5.99 2007-02-18 11:47:31.996577
  16049. 18280 547 2 2022 8.99 2007-02-17 11:13:05.996577
  16050. 18281 548 1 1326 1.99 2007-02-15 09:36:05.996577
  16051. 18282 548 1 2280 2.99 2007-02-18 05:15:20.996577
  16052. 18283 548 2 2978 0.99 2007-02-20 06:53:42.996577
  16053. 18284 549 1 2050 2.99 2007-02-17 13:35:56.996577
  16054. 18285 550 1 1233 6.99 2007-02-15 02:47:03.996577
  16055. 18286 550 1 1863 3.99 2007-02-17 00:00:12.996577
  16056. 18287 550 2 1883 4.99 2007-02-17 01:47:17.996577
  16057. 18288 550 1 3154 2.99 2007-02-20 19:13:06.996577
  16058. 18289 550 2 3236 9.99 2007-02-21 01:16:09.996577
  16059. 18290 550 1 3272 10.99 2007-02-21 03:46:53.996577
  16060. 18291 551 2 2069 4.99 2007-02-17 14:48:05.996577
  16061. 18292 551 1 2776 3.99 2007-02-19 16:44:50.996577
  16062. 18293 552 2 2320 0.99 2007-02-18 07:53:16.996577
  16063. 18294 552 2 3397 4.99 2007-02-21 13:58:37.996577
  16064. 18295 553 2 1862 3.99 2007-02-16 23:57:56.996577
  16065. 18296 553 1 2460 8.99 2007-02-18 18:22:39.996577
  16066. 18297 553 2 3103 6.99 2007-02-20 15:26:45.996577
  16067. 18298 554 1 1959 4.99 2007-02-17 07:22:36.996577
  16068. 18299 554 1 2279 6.99 2007-02-18 05:06:48.996577
  16069. 18300 554 2 3278 2.99 2007-02-21 04:09:56.996577
  16070. 18301 554 1 3312 6.99 2007-02-21 06:33:58.996577
  16071. 18302 555 2 3232 1.99 2007-02-21 00:59:03.996577
  16072. 18303 556 1 2092 6.99 2007-02-17 16:40:42.996577
  16073. 18304 556 2 2593 5.99 2007-02-19 04:08:37.996577
  16074. 18305 556 2 2986 0.99 2007-02-20 07:18:54.996577
  16075. 18306 556 1 3093 4.99 2007-02-20 14:34:40.996577
  16076. 18307 556 2 3438 6.99 2007-02-21 18:00:06.996577
  16077. 18308 557 1 1666 0.99 2007-02-16 08:45:45.996577
  16078. 18309 557 2 2988 6.99 2007-02-20 07:27:34.996577
  16079. 18310 557 1 3050 3.99 2007-02-20 11:31:29.996577
  16080. 18311 558 2 1967 4.99 2007-02-17 07:48:18.996577
  16081. 18312 558 1 2411 1.99 2007-02-18 15:24:20.996577
  16082. 18313 558 2 2544 4.99 2007-02-19 00:44:43.996577
  16083. 18314 558 2 3016 4.99 2007-02-20 09:23:34.996577
  16084. 18315 558 2 3451 10.99 2007-02-21 19:39:05.996577
  16085. 18316 559 2 2576 4.99 2007-02-19 03:02:41.996577
  16086. 18317 559 1 2706 0.99 2007-02-19 12:25:17.996577
  16087. 18318 559 2 3046 4.99 2007-02-20 11:11:25.996577
  16088. 18319 559 1 3370 1.99 2007-02-21 11:55:27.996577
  16089. 18320 560 1 1271 4.99 2007-02-15 06:00:50.996577
  16090. 18321 560 2 1572 1.99 2007-02-16 01:51:48.996577
  16091. 18322 561 2 1193 2.99 2007-02-14 23:52:46.996577
  16092. 18323 561 2 1505 2.99 2007-02-15 20:41:16.996577
  16093. 18324 561 2 1620 4.99 2007-02-16 05:49:56.996577
  16094. 18325 561 1 2119 4.99 2007-02-17 19:03:08.996577
  16095. 18326 561 1 2357 5.99 2007-02-18 11:28:07.996577
  16096. 18327 561 1 2548 0.99 2007-02-19 01:14:01.996577
  16097. 18328 561 1 2950 4.99 2007-02-20 04:37:02.996577
  16098. 18329 561 1 3160 4.99 2007-02-20 19:49:17.996577
  16099. 18330 561 1 3427 0.99 2007-02-21 16:59:35.996577
  16100. 18331 562 1 1998 3.99 2007-02-17 09:53:23.996577
  16101. 18332 562 1 2705 4.99 2007-02-19 12:22:56.996577
  16102. 18333 562 1 2746 3.99 2007-02-19 14:50:06.996577
  16103. 18334 562 2 3242 4.99 2007-02-21 01:24:50.996577
  16104. 18335 563 2 1545 4.99 2007-02-15 23:59:49.996577
  16105. 18336 563 2 2573 0.99 2007-02-19 02:51:44.996577
  16106. 18337 564 2 1705 2.99 2007-02-16 12:28:08.996577
  16107. 18338 565 2 1460 4.99 2007-02-15 18:55:28.996577
  16108. 18339 565 1 2321 5.99 2007-02-18 08:11:08.996577
  16109. 18340 565 1 3300 5.99 2007-02-21 05:53:27.996577
  16110. 18341 566 1 1635 5.99 2007-02-16 06:55:22.996577
  16111. 18342 566 2 1982 4.99 2007-02-17 08:40:41.996577
  16112. 18343 566 1 2367 0.99 2007-02-18 12:28:57.996577
  16113. 18344 566 1 3379 4.99 2007-02-21 12:23:24.996577
  16114. 18345 567 2 2689 4.99 2007-02-19 11:27:19.996577
  16115. 18346 567 1 3010 2.99 2007-02-20 08:58:25.996577
  16116. 18347 568 2 1658 4.99 2007-02-16 08:35:36.996577
  16117. 18348 568 2 2382 4.99 2007-02-18 13:32:18.996577
  16118. 18349 568 2 2668 0.99 2007-02-19 09:57:13.996577
  16119. 18350 568 1 3227 4.99 2007-02-21 00:46:51.996577
  16120. 18351 568 2 3462 1.99 2007-02-21 20:21:18.996577
  16121. 18352 569 1 1463 6.99 2007-02-15 19:06:17.996577
  16122. 18353 569 2 1668 5.99 2007-02-16 08:48:18.996577
  16123. 18354 570 1 1259 4.99 2007-02-15 05:06:21.996577
  16124. 18355 570 2 1417 4.99 2007-02-15 16:14:17.996577
  16125. 18356 570 2 1804 2.99 2007-02-16 19:01:41.996577
  16126. 18357 570 2 2008 5.99 2007-02-17 10:16:31.996577
  16127. 18358 570 2 2031 6.99 2007-02-17 11:42:29.996577
  16128. 18359 570 2 2261 3.99 2007-02-18 04:14:41.996577
  16129. 18360 570 2 3138 2.99 2007-02-20 18:12:11.996577
  16130. 18361 571 1 1254 4.99 2007-02-15 04:39:42.996577
  16131. 18362 571 2 1400 3.99 2007-02-15 14:58:22.996577
  16132. 18363 571 1 1756 4.99 2007-02-16 15:50:59.996577
  16133. 18364 571 2 1990 4.99 2007-02-17 09:17:10.996577
  16134. 18365 571 1 2327 2.99 2007-02-18 08:45:06.996577
  16135. 18366 571 1 2977 10.99 2007-02-20 06:43:53.996577
  16136. 18367 572 2 1889 10.99 2007-02-17 02:33:38.996577
  16137. 18368 572 1 2007 0.99 2007-02-17 10:15:43.996577
  16138. 18369 572 1 2458 0.99 2007-02-18 18:07:31.996577
  16139. 18370 573 1 1613 4.99 2007-02-16 05:23:36.996577
  16140. 18371 573 2 2622 5.99 2007-02-19 06:39:07.996577
  16141. 18372 573 1 2995 1.99 2007-02-20 07:46:48.996577
  16142. 18373 573 1 3295 7.99 2007-02-21 05:32:43.996577
  16143. 18374 574 1 1559 0.99 2007-02-16 01:03:29.996577
  16144. 18375 574 2 1636 5.99 2007-02-16 06:57:20.996577
  16145. 18376 574 1 1817 0.99 2007-02-16 19:49:18.996577
  16146. 18377 574 1 2632 0.99 2007-02-19 07:20:13.996577
  16147. 18378 574 1 3220 6.99 2007-02-21 00:14:51.996577
  16148. 18379 575 2 1494 2.99 2007-02-15 20:22:46.996577
  16149. 18380 575 1 1824 2.99 2007-02-16 20:19:30.996577
  16150. 18381 575 2 1866 4.99 2007-02-17 00:21:45.996577
  16151. 18382 576 1 1366 4.99 2007-02-15 12:49:26.996577
  16152. 18383 576 2 1742 2.99 2007-02-16 15:06:14.996577
  16153. 18384 576 1 2309 0.99 2007-02-18 07:11:50.996577
  16154. 18385 576 2 2444 8.99 2007-02-18 17:26:38.996577
  16155. 18386 576 1 2651 3.99 2007-02-19 08:51:22.996577
  16156. 18387 576 2 2799 4.99 2007-02-19 17:43:47.996577
  16157. 18388 576 2 3226 6.99 2007-02-21 00:46:40.996577
  16158. 18389 577 2 2399 3.99 2007-02-18 14:34:40.996577
  16159. 18390 577 2 3286 2.99 2007-02-21 04:59:55.996577
  16160. 18391 577 2 3401 6.99 2007-02-21 14:21:09.996577
  16161. 18392 578 2 1826 6.99 2007-02-16 20:22:18.996577
  16162. 18393 578 2 2615 4.99 2007-02-19 05:57:39.996577
  16163. 18394 578 1 3305 2.99 2007-02-21 06:15:23.996577
  16164. 18395 579 2 2425 5.99 2007-02-18 16:06:11.996577
  16165. 18396 579 1 2522 3.99 2007-02-18 23:12:08.996577
  16166. 18397 579 1 3111 2.99 2007-02-20 16:15:13.996577
  16167. 18398 580 1 1469 0.99 2007-02-15 19:21:02.996577
  16168. 18399 581 2 1958 3.99 2007-02-17 07:20:27.996577
  16169. 18400 581 2 2101 2.99 2007-02-17 17:25:28.996577
  16170. 18401 581 1 2137 4.99 2007-02-17 19:46:54.996577
  16171. 18402 582 1 1719 2.99 2007-02-16 13:24:19.996577
  16172. 18403 582 1 2337 7.99 2007-02-18 09:43:53.996577
  16173. 18404 582 2 3071 0.99 2007-02-20 12:49:08.996577
  16174. 18405 583 1 1428 3.99 2007-02-15 16:47:56.996577
  16175. 18406 583 1 2429 9.99 2007-02-18 16:16:54.996577
  16176. 18407 583 2 2663 4.99 2007-02-19 09:22:26.996577
  16177. 18408 583 2 2845 5.99 2007-02-19 21:15:03.996577
  16178. 18409 583 2 2879 3.99 2007-02-19 23:52:36.996577
  16179. 18410 583 1 3424 0.99 2007-02-21 16:11:17.996577
  16180. 18411 584 2 1436 3.99 2007-02-15 17:04:06.996577
  16181. 18412 584 2 3317 6.99 2007-02-21 06:50:58.996577
  16182. 18413 585 1 1344 0.99 2007-02-15 10:58:07.996577
  16183. 18414 585 2 1346 7.99 2007-02-15 11:08:18.996577
  16184. 18415 585 1 2674 0.99 2007-02-19 10:16:25.996577
  16185. 18416 585 1 2930 3.99 2007-02-20 03:18:55.996577
  16186. 18417 586 1 1260 2.99 2007-02-15 05:10:51.996577
  16187. 18418 586 2 1540 0.99 2007-02-15 23:43:22.996577
  16188. 18419 587 2 1330 2.99 2007-02-15 09:57:43.996577
  16189. 18420 587 2 2034 4.99 2007-02-17 11:55:42.996577
  16190. 18421 587 1 2220 2.99 2007-02-18 01:50:02.996577
  16191. 18422 587 1 2329 4.99 2007-02-18 08:51:18.996577
  16192. 18423 588 2 1885 2.99 2007-02-17 02:04:25.996577
  16193. 18424 588 2 1903 6.99 2007-02-17 03:05:46.996577
  16194. 18425 588 2 2270 7.99 2007-02-18 04:57:27.996577
  16195. 18426 588 1 2453 2.99 2007-02-18 17:59:19.996577
  16196. 18427 588 2 2920 3.99 2007-02-20 02:41:12.996577
  16197. 18428 589 1 1439 4.99 2007-02-15 17:13:58.996577
  16198. 18429 589 2 1703 4.99 2007-02-16 11:57:10.996577
  16199. 18430 589 2 2652 8.99 2007-02-19 09:03:52.996577
  16200. 18431 589 1 2707 8.99 2007-02-19 12:25:34.996577
  16201. 18432 589 1 2979 2.99 2007-02-20 06:59:31.996577
  16202. 18433 590 2 1456 7.99 2007-02-15 18:28:37.996577
  16203. 18434 590 2 2352 2.99 2007-02-18 11:08:41.996577
  16204. 18435 590 2 2775 2.99 2007-02-19 16:42:46.996577
  16205. 18436 590 1 2916 6.99 2007-02-20 02:29:30.996577
  16206. 18437 590 1 2964 9.99 2007-02-20 06:01:55.996577
  16207. 18438 591 1 1418 0.99 2007-02-15 16:19:53.996577
  16208. 18439 591 2 3341 2.99 2007-02-21 09:05:51.996577
  16209. 18440 591 2 3435 4.99 2007-02-21 17:43:24.996577
  16210. 18441 592 2 1163 6.99 2007-02-14 21:41:12.996577
  16211. 18442 592 2 1423 5.99 2007-02-15 16:36:38.996577
  16212. 18443 592 1 1479 2.99 2007-02-15 19:42:04.996577
  16213. 18444 592 1 2627 0.99 2007-02-19 07:00:26.996577
  16214. 18445 592 1 3158 7.99 2007-02-20 19:36:45.996577
  16215. 18446 593 2 2055 5.99 2007-02-17 13:55:29.996577
  16216. 18447 593 2 2205 4.99 2007-02-18 00:43:00.996577
  16217. 18448 593 1 2441 4.99 2007-02-18 17:13:37.996577
  16218. 18449 593 1 2832 4.99 2007-02-19 19:50:19.996577
  16219. 18450 594 2 1537 5.99 2007-02-15 23:21:17.996577
  16220. 18451 594 1 1816 4.99 2007-02-16 19:49:07.996577
  16221. 18452 594 1 1950 2.99 2007-02-17 06:55:18.996577
  16222. 18453 594 1 2276 6.99 2007-02-18 05:02:14.996577
  16223. 18454 594 2 2786 0.99 2007-02-19 17:15:09.996577
  16224. 18455 594 2 3302 1.99 2007-02-21 06:02:06.996577
  16225. 18456 595 2 1170 2.99 2007-02-14 22:16:01.996577
  16226. 18457 595 2 3371 4.99 2007-02-21 11:55:48.996577
  16227. 18458 596 1 1644 1.99 2007-02-16 07:26:44.996577
  16228. 18459 596 1 2767 1.99 2007-02-19 16:15:01.996577
  16229. 18460 597 1 2379 0.99 2007-02-18 13:28:05.996577
  16230. 18461 597 1 2696 4.99 2007-02-19 11:57:08.996577
  16231. 18462 597 1 3201 1.99 2007-02-20 22:58:52.996577
  16232. 18463 598 1 3005 2.99 2007-02-20 08:38:55.996577
  16233. 18464 599 1 2272 1.99 2007-02-18 04:58:19.996577
  16234. 18465 599 2 3043 6.99 2007-02-20 11:07:01.996577
  16235. 18466 599 2 3398 4.99 2007-02-21 14:03:04.996577
  16236. 18467 599 1 3429 6.99 2007-02-21 17:14:31.996577
  16237. 18468 202 1 1474 2.99 2007-02-15 19:24:08.996577
  16238. 18469 202 1 1535 4.99 2007-02-15 23:20:30.996577
  16239. 18470 202 1 3008 0.99 2007-02-20 08:51:51.996577
  16240. 18471 202 2 3148 0.99 2007-02-20 18:55:44.996577
  16241. 18472 203 1 1217 4.99 2007-02-15 01:52:40.996577
  16242. 18473 203 1 1715 2.99 2007-02-16 13:05:38.996577
  16243. 18474 203 2 2939 7.99 2007-02-20 03:46:42.996577
  16244. 18475 203 2 3406 2.99 2007-02-21 14:28:44.996577
  16245. 18476 204 1 1321 2.99 2007-02-15 09:17:43.996577
  16246. 18477 204 1 1616 7.99 2007-02-16 05:33:18.996577
  16247. 18478 204 1 1871 4.99 2007-02-17 00:53:38.996577
  16248. 18479 204 2 1894 7.99 2007-02-17 02:47:14.996577
  16249. 18480 204 2 2186 2.99 2007-02-17 23:43:53.996577
  16250. 18481 204 2 2734 4.99 2007-02-19 14:04:53.996577
  16251. 18482 205 1 1238 2.99 2007-02-15 03:17:34.996577
  16252. 18483 205 1 1357 4.99 2007-02-15 11:54:49.996577
  16253. 18484 205 1 1767 0.99 2007-02-16 16:30:02.996577
  16254. 18485 205 2 2237 5.99 2007-02-18 02:46:10.996577
  16255. 18486 206 2 1872 0.99 2007-02-17 00:55:29.996577
  16256. 18487 206 2 2477 5.99 2007-02-18 19:27:12.996577
  16257. 18488 206 2 3012 4.99 2007-02-20 09:11:39.996577
  16258. 18489 207 2 1945 3.99 2007-02-17 06:19:52.996577
  16259. 18490 208 1 1805 0.99 2007-02-16 19:04:26.996577
  16260. 18491 208 1 1949 5.99 2007-02-17 06:47:48.996577
  16261. 18492 208 2 2592 0.99 2007-02-19 04:05:20.996577
  16262. 18493 208 1 2695 2.99 2007-02-19 11:54:19.996577
  16263. 18494 208 2 2907 0.99 2007-02-20 01:43:35.996577
  16264. 18495 1 1 1185 5.99 2007-02-14 23:22:38.996577
  16265. 18496 1 2 1422 0.99 2007-02-15 16:31:19.996577
  16266. 18497 1 2 1476 9.99 2007-02-15 19:37:12.996577
  16267. 18498 1 1 1725 4.99 2007-02-16 13:47:23.996577
  16268. 18499 1 1 2308 4.99 2007-02-18 07:10:14.996577
  16269. 18500 1 2 2363 0.99 2007-02-18 12:02:25.996577
  16270. 18501 1 1 3284 3.99 2007-02-21 04:53:11.996577
  16271. 18502 2 1 2128 2.99 2007-02-17 19:23:24.996577
  16272. 18503 3 1 1546 8.99 2007-02-16 00:02:31.996577
  16273. 18504 3 1 1726 6.99 2007-02-16 13:47:36.996577
  16274. 18505 3 2 1911 6.99 2007-02-17 03:43:41.996577
  16275. 18506 3 1 2628 2.99 2007-02-19 07:03:19.996577
  16276. 18507 4 1 1297 4.99 2007-02-15 07:59:54.996577
  16277. 18508 4 1 1633 0.99 2007-02-16 06:37:06.996577
  16278. 18509 4 2 1707 2.99 2007-02-16 12:29:53.996577
  16279. 18510 4 2 1735 0.99 2007-02-16 14:20:18.996577
  16280. 18511 4 2 2043 0.99 2007-02-17 12:59:38.996577
  16281. 18512 4 1 2642 5.99 2007-02-19 08:07:27.996577
  16282. 18513 5 1 1502 3.99 2007-02-15 20:31:40.996577
  16283. 18514 5 2 1631 2.99 2007-02-16 06:29:28.996577
  16284. 18515 5 2 2063 4.99 2007-02-17 14:25:19.996577
  16285. 18516 5 2 2570 2.99 2007-02-19 02:48:39.996577
  16286. 18517 5 2 3126 4.99 2007-02-20 17:06:48.996577
  16287. 18518 6 1 1575 3.99 2007-02-16 02:10:04.996577
  16288. 18519 6 2 1841 2.99 2007-02-16 22:12:39.996577
  16289. 18520 6 1 1966 0.99 2007-02-17 07:48:11.996577
  16290. 18521 6 1 2345 0.99 2007-02-18 10:31:49.996577
  16291. 18522 7 2 1810 0.99 2007-02-16 19:34:26.996577
  16292. 18523 7 1 2250 2.99 2007-02-18 03:32:02.996577
  16293. 18524 7 1 2709 0.99 2007-02-19 12:28:52.996577
  16294. 18525 7 1 2888 4.99 2007-02-20 00:19:22.996577
  16295. 18526 7 1 3007 0.99 2007-02-20 08:40:19.996577
  16296. 18527 8 2 1305 2.99 2007-02-15 08:27:42.996577
  16297. 18528 8 1 2095 5.99 2007-02-17 16:50:01.996577
  16298. 18529 8 2 3114 4.99 2007-02-20 16:26:13.996577
  16299. 18530 9 2 3142 7.99 2007-02-20 18:27:54.996577
  16300. 18531 9 2 3262 4.99 2007-02-21 02:37:09.996577
  16301. 18532 10 1 1801 4.99 2007-02-16 18:50:19.996577
  16302. 18533 10 1 1995 4.99 2007-02-17 09:39:40.996577
  16303. 18534 10 2 2222 3.99 2007-02-18 01:54:49.996577
  16304. 18535 10 1 2814 0.99 2007-02-19 18:30:25.996577
  16305. 18536 10 1 2865 0.99 2007-02-19 22:29:21.996577
  16306. 18537 11 1 1470 6.99 2007-02-15 19:21:33.996577
  16307. 18538 11 1 1939 7.99 2007-02-17 05:55:11.996577
  16308. 18539 11 1 3192 0.99 2007-02-20 22:17:38.996577
  16309. 18540 12 2 1752 5.99 2007-02-16 15:31:21.996577
  16310. 18541 12 2 2434 5.99 2007-02-18 16:40:17.996577
  16311. 18542 12 2 2500 5.99 2007-02-18 21:35:38.996577
  16312. 18543 12 2 2623 4.99 2007-02-19 06:40:17.996577
  16313. 18544 12 2 3135 2.99 2007-02-20 18:02:18.996577
  16314. 18545 12 1 3411 0.99 2007-02-21 14:59:53.996577
  16315. 18546 13 1 1933 2.99 2007-02-17 05:23:08.996577
  16316. 18547 13 1 2209 4.99 2007-02-18 00:52:27.996577
  16317. 18548 13 1 2952 2.99 2007-02-20 04:55:23.996577
  16318. 18549 13 1 3047 8.99 2007-02-20 11:13:59.996577
  16319. 18550 14 2 1360 4.99 2007-02-15 12:00:41.996577
  16320. 18551 15 1 2486 2.99 2007-02-18 19:55:22.996577
  16321. 18552 15 1 2937 5.99 2007-02-20 03:44:03.996577
  16322. 18553 15 2 3182 0.99 2007-02-20 21:20:44.996577
  16323. 18554 16 2 1934 6.99 2007-02-17 05:33:23.996577
  16324. 18555 16 1 1944 7.99 2007-02-17 06:19:19.996577
  16325. 18556 16 1 2960 7.99 2007-02-20 05:38:35.996577
  16326. 18557 16 2 3348 0.99 2007-02-21 09:45:08.996577
  16327. 18558 17 2 2175 5.99 2007-02-17 22:46:24.996577
  16328. 18559 17 1 2684 8.99 2007-02-19 10:57:34.996577
  16329. 18560 17 2 3269 5.99 2007-02-21 03:34:56.996577
  16330. 18561 18 2 1451 5.99 2007-02-15 17:58:44.996577
  16331. 18562 18 2 1783 4.99 2007-02-16 17:51:49.996577
  16332. 18563 18 2 2112 5.99 2007-02-17 18:21:08.996577
  16333. 18564 18 1 2990 8.99 2007-02-20 07:31:17.996577
  16334. 18565 19 1 2657 2.99 2007-02-19 09:11:25.996577
  16335. 18566 19 1 2848 2.99 2007-02-19 21:24:03.996577
  16336. 18567 19 2 3423 2.99 2007-02-21 16:06:28.996577
  16337. 18568 20 2 1558 0.99 2007-02-16 01:02:19.996577
  16338. 18569 20 2 2136 3.99 2007-02-17 19:45:07.996577
  16339. 18570 20 2 2343 4.99 2007-02-18 10:14:52.996577
  16340. 18571 20 1 3350 4.99 2007-02-21 09:50:04.996577
  16341. 18572 21 2 2235 7.99 2007-02-18 02:37:16.996577
  16342. 18573 21 1 2268 4.99 2007-02-18 04:42:07.996577
  16343. 18574 21 1 2393 2.99 2007-02-18 14:06:21.996577
  16344. 18575 21 2 2830 4.99 2007-02-19 19:42:59.996577
  16345. 18576 21 1 3212 10.99 2007-02-20 23:33:01.996577
  16346. 18577 22 1 3419 2.99 2007-02-21 15:46:27.996577
  16347. 18578 23 1 2753 1.99 2007-02-19 15:13:01.996577
  16348. 18579 23 1 2827 0.99 2007-02-19 19:18:27.996577
  16349. 18580 23 1 3015 5.99 2007-02-20 09:17:22.996577
  16350. 18581 23 1 3055 4.99 2007-02-20 11:48:24.996577
  16351. 18582 23 1 3461 2.99 2007-02-21 20:17:44.996577
  16352. 18583 24 1 1716 2.99 2007-02-16 13:07:57.996577
  16353. 18584 24 1 2070 2.99 2007-02-17 14:56:17.996577
  16354. 18585 24 2 2116 4.99 2007-02-17 18:44:38.996577
  16355. 18586 24 1 2451 5.99 2007-02-18 17:56:28.996577
  16356. 18587 24 2 2963 7.99 2007-02-20 06:01:35.996577
  16357. 18588 25 1 1338 4.99 2007-02-15 10:46:00.996577
  16358. 18589 25 1 1365 2.99 2007-02-15 12:38:21.996577
  16359. 18590 25 2 1754 6.99 2007-02-16 15:41:49.996577
  16360. 18591 25 2 2625 8.99 2007-02-19 06:51:37.996577
  16361. 18592 25 1 2901 4.99 2007-02-20 01:09:54.996577
  16362. 18593 25 1 3447 4.99 2007-02-21 19:21:57.996577
  16363. 18594 26 1 1440 5.99 2007-02-15 17:21:40.996577
  16364. 18595 26 2 1706 4.99 2007-02-16 12:29:28.996577
  16365. 18596 26 1 2093 9.99 2007-02-17 16:42:34.996577
  16366. 18597 26 2 2416 3.99 2007-02-18 15:36:00.996577
  16367. 18598 26 2 2421 6.99 2007-02-18 15:53:31.996577
  16368. 18599 26 1 2532 4.99 2007-02-18 23:56:12.996577
  16369. 18600 26 1 2745 4.99 2007-02-19 14:49:45.996577
  16370. 18601 27 1 1310 4.99 2007-02-15 08:40:08.996577
  16371. 18602 27 2 1480 4.99 2007-02-15 19:45:43.996577
  16372. 18603 27 2 1699 2.99 2007-02-16 11:33:35.996577
  16373. 18604 27 2 1960 3.99 2007-02-17 07:28:23.996577
  16374. 18605 27 2 2512 2.99 2007-02-18 22:17:13.996577
  16375. 18606 27 1 2815 4.99 2007-02-19 18:31:55.996577
  16376. 18607 27 1 3038 1.99 2007-02-20 10:57:25.996577
  16377. 18608 27 2 3420 3.99 2007-02-21 15:51:02.996577
  16378. 18609 28 2 1240 2.99 2007-02-15 03:26:33.996577
  16379. 18610 28 1 1543 4.99 2007-02-15 23:52:34.996577
  16380. 18611 28 2 2299 3.99 2007-02-18 06:47:18.996577
  16381. 18612 28 2 2604 0.99 2007-02-19 04:58:36.996577
  16382. 18613 28 1 3231 0.99 2007-02-21 00:53:26.996577
  16383. 18614 29 1 2655 0.99 2007-02-19 09:07:08.996577
  16384. 18615 29 1 2673 0.99 2007-02-19 10:10:46.996577
  16385. 18616 29 1 2701 7.99 2007-02-19 12:01:32.996577
  16386. 18617 29 1 2735 2.99 2007-02-19 14:10:33.996577
  16387. 18618 29 2 2801 2.99 2007-02-19 17:46:35.996577
  16388. 18619 29 2 2923 2.99 2007-02-20 02:44:33.996577
  16389. 18620 29 1 3324 2.99 2007-02-21 07:17:42.996577
  16390. 18621 30 2 1874 1.99 2007-02-17 01:07:46.996577
  16391. 18622 30 2 1895 2.99 2007-02-17 02:53:38.996577
  16392. 18623 30 2 2154 4.99 2007-02-17 21:28:08.996577
  16393. 18624 30 2 2730 2.99 2007-02-19 13:38:35.996577
  16394. 18625 31 2 1656 4.99 2007-02-16 08:34:06.996577
  16395. 18626 31 1 1838 1.99 2007-02-16 21:48:42.996577
  16396. 18627 31 1 2233 0.99 2007-02-18 02:26:02.996577
  16397. 18628 31 2 2341 6.99 2007-02-18 10:03:56.996577
  16398. 18629 31 1 2396 7.99 2007-02-18 14:18:14.996577
  16399. 18630 31 2 2438 0.99 2007-02-18 17:02:47.996577
  16400. 18631 31 1 2530 0.99 2007-02-18 23:48:26.996577
  16401. 18632 31 2 2648 4.99 2007-02-19 08:34:46.996577
  16402. 18633 31 2 3117 2.99 2007-02-20 16:33:41.996577
  16403. 18634 31 2 3172 1.99 2007-02-20 20:47:51.996577
  16404. 18635 31 1 3205 0.99 2007-02-20 23:07:13.996577
  16405. 18636 32 2 1887 6.99 2007-02-17 02:21:44.996577
  16406. 18637 32 2 2160 0.99 2007-02-17 22:07:37.996577
  16407. 18638 32 2 2624 5.99 2007-02-19 06:50:35.996577
  16408. 18639 32 2 2891 1.99 2007-02-20 00:30:31.996577
  16409. 18640 33 1 1301 10.99 2007-02-15 08:14:59.996577
  16410. 18641 33 2 3173 8.99 2007-02-20 20:49:36.996577
  16411. 18642 34 1 1900 4.99 2007-02-17 02:58:24.996577
  16412. 18643 34 2 2257 5.99 2007-02-18 03:58:18.996577
  16413. 18644 34 1 3150 0.99 2007-02-20 19:03:54.996577
  16414. 18645 35 1 1579 0.99 2007-02-16 02:37:34.996577
  16415. 18646 35 1 1989 2.99 2007-02-17 09:15:50.996577
  16416. 18647 35 1 2229 4.99 2007-02-18 02:18:44.996577
  16417. 18648 35 1 2231 0.99 2007-02-18 02:20:40.996577
  16418. 18649 35 1 2743 2.99 2007-02-19 14:44:22.996577
  16419. 18650 35 2 3112 4.99 2007-02-20 16:21:56.996577
  16420. 18651 36 2 2741 0.99 2007-02-19 14:34:07.996577
  16421. 18652 37 1 1583 4.99 2007-02-16 03:12:49.996577
  16422. 18653 37 2 1812 1.99 2007-02-16 19:37:12.996577
  16423. 18654 37 2 1854 3.99 2007-02-16 23:12:23.996577
  16424. 18655 38 2 1250 2.99 2007-02-15 04:24:06.996577
  16425. 18656 38 1 2550 1.99 2007-02-19 01:18:21.996577
  16426. 18657 38 2 2605 1.99 2007-02-19 05:16:27.996577
  16427. 18658 38 2 3003 4.99 2007-02-20 08:29:17.996577
  16428. 18659 38 2 3392 3.99 2007-02-21 13:41:10.996577
  16429. 18660 39 1 1625 5.99 2007-02-16 06:17:34.996577
  16430. 18661 39 1 1905 4.99 2007-02-17 03:20:09.996577
  16431. 18662 39 2 2135 0.99 2007-02-17 19:42:28.996577
  16432. 18663 39 2 2439 4.99 2007-02-18 17:03:30.996577
  16433. 18664 39 1 2631 4.99 2007-02-19 07:18:19.996577
  16434. 18665 39 1 2876 4.99 2007-02-19 23:35:00.996577
  16435. 18666 40 2 2470 7.99 2007-02-18 18:56:57.996577
  16436. 18667 40 2 2896 2.99 2007-02-20 01:02:08.996577
  16437. 18668 40 1 2993 4.99 2007-02-20 07:40:38.996577
  16438. 18669 40 1 3428 0.99 2007-02-21 17:08:00.996577
  16439. 18670 41 1 2563 4.99 2007-02-19 01:52:43.996577
  16440. 18671 41 2 3246 7.99 2007-02-21 01:38:27.996577
  16441. 18672 42 2 1534 0.99 2007-02-15 23:17:58.996577
  16442. 18673 42 2 2056 2.99 2007-02-17 13:55:59.996577
  16443. 18674 42 1 2170 3.99 2007-02-17 22:26:00.996577
  16444. 18675 42 1 2302 4.99 2007-02-18 06:55:59.996577
  16445. 18676 43 2 1544 4.99 2007-02-15 23:56:48.996577
  16446. 18677 44 1 1497 3.99 2007-02-15 20:25:05.996577
  16447. 18678 44 1 2369 2.99 2007-02-18 12:53:55.996577
  16448. 18679 44 1 2809 3.99 2007-02-19 18:08:53.996577
  16449. 18680 44 2 2866 4.99 2007-02-19 22:30:02.996577
  16450. 18681 45 1 1806 4.99 2007-02-16 19:10:23.996577
  16451. 18682 45 2 1979 2.99 2007-02-17 08:13:56.996577
  16452. 18683 45 2 2722 4.99 2007-02-19 13:23:43.996577
  16453. 18684 45 1 3391 3.99 2007-02-21 13:39:28.996577
  16454. 18685 45 2 3444 0.99 2007-02-21 19:08:05.996577
  16455. 18686 46 1 1166 4.99 2007-02-14 21:45:29.996577
  16456. 18687 46 2 1214 4.99 2007-02-15 01:47:06.996577
  16457. 18688 46 2 2144 0.99 2007-02-17 20:34:06.996577
  16458. 18689 46 1 2203 2.99 2007-02-18 00:39:08.996577
  16459. 18690 46 2 2965 8.99 2007-02-20 06:02:04.996577
  16460. 18691 46 2 2975 4.99 2007-02-20 06:34:44.996577
  16461. 18692 46 2 3439 4.99 2007-02-21 18:04:41.996577
  16462. 18693 47 1 1882 4.99 2007-02-17 01:45:47.996577
  16463. 18694 47 1 2307 6.99 2007-02-18 07:03:25.996577
  16464. 18695 47 2 3320 5.99 2007-02-21 06:58:07.996577
  16465. 18696 48 2 1689 9.99 2007-02-16 10:47:07.996577
  16466. 18697 48 2 2822 0.99 2007-02-19 18:57:50.996577
  16467. 18698 49 1 1164 0.99 2007-02-14 21:44:52.996577
  16468. 18699 49 2 1237 9.99 2007-02-15 03:12:36.996577
  16469. 18700 49 2 1688 0.99 2007-02-16 10:39:46.996577
  16470. 18701 49 2 1777 6.99 2007-02-16 17:20:38.996577
  16471. 18702 49 2 3235 4.99 2007-02-21 01:14:43.996577
  16472. 18703 50 1 1223 2.99 2007-02-15 02:07:19.996577
  16473. 18704 50 1 1785 4.99 2007-02-16 17:55:38.996577
  16474. 18705 50 2 3000 0.99 2007-02-20 08:00:59.996577
  16475. 18706 50 2 3169 2.99 2007-02-20 20:24:20.996577
  16476. 18707 51 2 1373 1.99 2007-02-15 13:16:30.996577
  16477. 18708 51 1 1477 0.99 2007-02-15 19:39:44.996577
  16478. 18709 52 1 1196 4.99 2007-02-15 00:06:57.996577
  16479. 18710 52 2 2232 0.99 2007-02-18 02:22:57.996577
  16480. 18711 52 1 2862 2.99 2007-02-19 22:15:50.996577
  16481. 18712 52 2 3196 4.99 2007-02-20 22:30:54.996577
  16482. 18713 53 1 1964 0.99 2007-02-17 07:38:35.996577
  16483. 18714 53 1 2388 2.99 2007-02-18 13:54:56.996577
  16484. 18715 53 1 2903 2.99 2007-02-20 01:17:27.996577
  16485. 18716 53 2 3140 2.99 2007-02-20 18:15:38.996577
  16486. 18717 53 2 3244 0.99 2007-02-21 01:29:36.996577
  16487. 18718 54 1 1556 4.99 2007-02-16 00:47:28.996577
  16488. 18719 54 1 1571 2.99 2007-02-16 01:50:26.996577
  16489. 18720 54 2 2323 6.99 2007-02-18 08:23:28.996577
  16490. 18721 54 1 2647 4.99 2007-02-19 08:26:22.996577
  16491. 18722 55 2 1825 2.99 2007-02-16 20:21:31.996577
  16492. 18723 55 2 2062 2.99 2007-02-17 14:25:09.996577
  16493. 18724 55 1 2904 2.99 2007-02-20 01:22:32.996577
  16494. 18725 55 1 2976 4.99 2007-02-20 06:37:37.996577
  16495. 18726 55 1 3149 4.99 2007-02-20 19:03:21.996577
  16496. 18727 56 2 1795 6.99 2007-02-16 18:37:27.996577
  16497. 18728 56 1 2140 0.99 2007-02-17 20:08:55.996577
  16498. 18729 56 1 2485 4.99 2007-02-18 19:54:29.996577
  16499. 18730 56 1 2989 0.99 2007-02-20 07:28:03.996577
  16500. 18731 57 1 2058 5.99 2007-02-17 14:03:07.996577
  16501. 18732 57 1 2105 0.99 2007-02-17 17:44:11.996577
  16502. 18733 57 1 2360 4.99 2007-02-18 11:39:39.996577
  16503. 18734 57 2 2910 7.99 2007-02-20 01:59:44.996577
  16504. 18735 57 1 3357 0.99 2007-02-21 10:24:08.996577
  16505. 18736 58 1 2191 4.99 2007-02-18 00:01:35.996577
  16506. 18737 58 2 2543 0.99 2007-02-19 00:42:37.996577
  16507. 18738 58 1 2906 0.99 2007-02-20 01:33:22.996577
  16508. 18739 59 1 1269 2.99 2007-02-15 05:58:25.996577
  16509. 18740 59 1 1728 3.99 2007-02-16 13:57:55.996577
  16510. 18741 59 1 2921 3.99 2007-02-20 02:41:30.996577
  16511. 18742 60 2 1482 4.99 2007-02-15 19:46:42.996577
  16512. 18743 60 2 2394 4.99 2007-02-18 14:10:56.996577
  16513. 18744 62 2 1241 6.99 2007-02-15 03:28:09.996577
  16514. 18745 62 1 1486 0.99 2007-02-15 19:53:56.996577
  16515. 18746 62 1 1587 0.99 2007-02-16 03:20:54.996577
  16516. 18747 62 2 3021 4.99 2007-02-20 09:41:27.996577
  16517. 18748 62 1 3035 5.99 2007-02-20 10:45:29.996577
  16518. 18749 62 1 3287 0.99 2007-02-21 05:01:05.996577
  16519. 18750 62 1 3327 3.99 2007-02-21 07:33:16.996577
  16520. 18751 63 2 1818 0.99 2007-02-16 19:59:00.996577
  16521. 18752 64 2 1335 0.99 2007-02-15 10:19:56.996577
  16522. 18753 64 1 2060 2.99 2007-02-17 14:11:08.996577
  16523. 18754 65 1 2173 7.99 2007-02-17 22:36:46.996577
  16524. 18755 65 1 3051 4.99 2007-02-20 11:35:18.996577
  16525. 18756 66 1 1236 2.99 2007-02-15 03:02:53.996577
  16526. 18757 66 1 1907 2.99 2007-02-17 03:36:53.996577
  16527. 18758 66 1 2106 4.99 2007-02-17 17:57:29.996577
  16528. 18759 66 2 2571 2.99 2007-02-19 02:48:40.996577
  16529. 18760 66 1 2577 4.99 2007-02-19 03:04:29.996577
  16530. 18761 66 1 3334 3.99 2007-02-21 08:32:59.996577
  16531. 18762 66 2 3395 6.99 2007-02-21 13:47:45.996577
  16532. 18763 67 1 2064 3.99 2007-02-17 14:26:22.996577
  16533. 18764 67 1 2542 3.99 2007-02-19 00:37:05.996577
  16534. 18765 67 2 2810 0.99 2007-02-19 18:12:38.996577
  16535. 18766 67 1 3359 4.99 2007-02-21 10:36:44.996577
  16536. 18767 68 2 1828 5.99 2007-02-16 20:33:00.996577
  16537. 18768 68 2 1957 8.99 2007-02-17 07:19:24.996577
  16538. 18769 68 2 2633 2.99 2007-02-19 07:21:36.996577
  16539. 18770 68 2 2662 4.99 2007-02-19 09:22:08.996577
  16540. 18771 68 1 2686 2.99 2007-02-19 11:12:46.996577
  16541. 18772 69 1 1549 2.99 2007-02-16 00:25:41.996577
  16542. 18773 69 1 3358 4.99 2007-02-21 10:25:06.996577
  16543. 18774 70 1 2472 4.99 2007-02-18 19:01:06.996577
  16544. 18775 71 2 1873 2.99 2007-02-17 01:06:54.996577
  16545. 18776 71 1 2374 4.99 2007-02-18 13:12:32.996577
  16546. 18777 71 2 3345 5.99 2007-02-21 09:33:33.996577
  16547. 18778 72 2 2294 4.99 2007-02-18 06:15:00.996577
  16548. 18779 73 1 1669 0.99 2007-02-16 08:48:46.996577
  16549. 18780 73 2 2940 4.99 2007-02-20 03:48:27.996577
  16550. 18781 74 1 2498 1.99 2007-02-18 21:24:52.996577
  16551. 18782 74 2 2517 0.99 2007-02-18 22:39:52.996577
  16552. 18783 74 1 3020 1.99 2007-02-20 09:40:30.996577
  16553. 18784 74 2 3445 7.99 2007-02-21 19:08:54.996577
  16554. 18785 75 1 1920 4.99 2007-02-17 04:28:49.996577
  16555. 18786 75 1 2161 7.99 2007-02-17 22:08:16.996577
  16556. 18787 75 2 2738 4.99 2007-02-19 14:24:56.996577
  16557. 18788 75 2 3062 6.99 2007-02-20 12:18:26.996577
  16558. 18789 75 1 3210 4.99 2007-02-20 23:28:51.996577
  16559. 18790 76 2 1487 0.99 2007-02-15 19:56:08.996577
  16560. 18791 76 1 1791 6.99 2007-02-16 18:32:54.996577
  16561. 18792 76 2 2111 0.99 2007-02-17 18:15:47.996577
  16562. 18793 76 2 2397 1.99 2007-02-18 14:19:51.996577
  16563. 18794 76 1 2894 0.99 2007-02-20 00:51:08.996577
  16564. 18795 76 2 3416 0.99 2007-02-21 15:33:55.996577
  16565. 18796 77 1 1710 4.99 2007-02-16 12:39:50.996577
  16566. 18797 77 1 2354 3.99 2007-02-18 11:22:44.996577
  16567. 18798 77 2 2452 8.99 2007-02-18 17:57:47.996577
  16568. 18799 77 1 3151 2.99 2007-02-20 19:05:19.996577
  16569. 18800 77 2 3238 0.99 2007-02-21 01:16:47.996577
  16570. 18801 78 1 2207 2.99 2007-02-18 00:47:47.996577
  16571. 18802 78 2 2949 6.99 2007-02-20 04:34:19.996577
  16572. 18803 78 2 3248 7.99 2007-02-21 01:40:47.996577
  16573. 18804 79 2 3096 4.99 2007-02-20 14:46:22.996577
  16574. 18805 79 2 3178 2.99 2007-02-20 21:03:38.996577
  16575. 18806 80 1 2596 2.99 2007-02-19 04:16:52.996577
  16576. 18807 80 2 2805 8.99 2007-02-19 17:57:43.996577
  16577. 18808 80 1 3367 3.99 2007-02-21 11:36:47.996577
  16578. 18809 81 1 2714 1.99 2007-02-19 12:54:35.996577
  16579. 18810 81 1 2854 5.99 2007-02-19 21:40:14.996577
  16580. 18811 81 1 3229 4.99 2007-02-21 00:49:07.996577
  16581. 18812 82 1 1438 0.99 2007-02-15 17:07:17.996577
  16582. 18813 82 2 1570 0.99 2007-02-16 01:49:59.996577
  16583. 18814 82 1 2506 8.99 2007-02-18 21:58:19.996577
  16584. 18815 82 1 2819 8.99 2007-02-19 18:41:59.996577
  16585. 18816 82 2 3332 0.99 2007-02-21 08:23:38.996577
  16586. 18817 83 1 1354 5.99 2007-02-15 11:42:15.996577
  16587. 18818 83 1 1591 5.99 2007-02-16 03:41:03.996577
  16588. 18819 83 2 1617 3.99 2007-02-16 05:34:32.996577
  16589. 18820 83 2 3230 4.99 2007-02-21 00:51:42.996577
  16590. 18821 84 2 1195 0.99 2007-02-15 00:06:04.996577
  16591. 18822 84 2 1320 4.99 2007-02-15 09:10:39.996577
  16592. 18823 84 2 1815 0.99 2007-02-16 19:44:33.996577
  16593. 18824 84 1 2012 5.99 2007-02-17 10:25:41.996577
  16594. 18825 84 2 2042 0.99 2007-02-17 12:59:28.996577
  16595. 18826 84 2 2409 0.99 2007-02-18 15:21:59.996577
  16596. 18827 85 1 1685 1.99 2007-02-16 10:35:23.996577
  16597. 18828 85 1 2131 5.99 2007-02-17 19:30:51.996577
  16598. 18829 85 2 2794 0.99 2007-02-19 17:21:31.996577
  16599. 18830 85 1 3165 4.99 2007-02-20 19:57:43.996577
  16600. 18831 85 1 3307 1.99 2007-02-21 06:20:56.996577
  16601. 18832 85 2 3418 3.99 2007-02-21 15:35:04.996577
  16602. 18833 86 2 1640 4.99 2007-02-16 07:04:05.996577
  16603. 18834 86 2 1822 0.99 2007-02-16 20:12:11.996577
  16604. 18835 86 2 1924 2.99 2007-02-17 04:42:00.996577
  16605. 18836 86 1 2141 4.99 2007-02-17 20:10:00.996577
  16606. 18837 86 1 2518 4.99 2007-02-18 22:44:49.996577
  16607. 18838 86 1 3207 0.99 2007-02-20 23:11:42.996577
  16608. 18839 86 2 3270 4.99 2007-02-21 03:35:57.996577
  16609. 18840 87 2 1580 4.99 2007-02-16 02:40:51.996577
  16610. 18841 87 1 1904 2.99 2007-02-17 03:14:07.996577
  16611. 18842 87 2 2408 2.99 2007-02-18 15:19:10.996577
  16612. 18843 87 1 2516 4.99 2007-02-18 22:31:54.996577
  16613. 18844 87 2 3122 9.99 2007-02-20 16:54:23.996577
  16614. 18845 88 1 1433 2.99 2007-02-15 16:58:26.996577
  16615. 18846 88 1 2483 7.99 2007-02-18 19:50:49.996577
  16616. 18847 88 1 2878 2.99 2007-02-19 23:37:40.996577
  16617. 18848 89 1 1252 8.99 2007-02-15 04:33:44.996577
  16618. 18849 89 2 1407 7.99 2007-02-15 15:13:33.996577
  16619. 18850 89 1 1948 4.99 2007-02-17 06:35:19.996577
  16620. 18851 89 1 2523 0.99 2007-02-18 23:14:22.996577
  16621. 18852 89 1 2835 7.99 2007-02-19 20:12:37.996577
  16622. 18853 90 2 2033 0.99 2007-02-17 11:53:09.996577
  16623. 18854 90 2 2584 6.99 2007-02-19 03:31:02.996577
  16624. 18855 90 2 3132 0.99 2007-02-20 17:38:12.996577
  16625. 18856 91 1 1299 4.99 2007-02-15 08:03:16.996577
  16626. 18857 91 1 2457 3.99 2007-02-18 18:06:46.996577
  16627. 18858 91 1 2908 0.99 2007-02-20 01:45:18.996577
  16628. 18859 91 2 3384 2.99 2007-02-21 12:36:01.996577
  16629. 18860 92 2 2084 4.99 2007-02-17 15:45:45.996577
  16630. 18861 92 1 2521 0.99 2007-02-18 23:09:34.996577
  16631. 18862 92 1 2740 8.99 2007-02-19 14:27:30.996577
  16632. 18863 93 2 2256 4.99 2007-02-18 03:50:22.996577
  16633. 18864 93 1 3109 0.99 2007-02-20 16:02:21.996577
  16634. 18865 94 2 1213 2.99 2007-02-15 01:42:31.996577
  16635. 18866 94 1 1367 4.99 2007-02-15 12:53:43.996577
  16636. 18867 94 2 1734 3.99 2007-02-16 14:17:56.996577
  16637. 18868 94 2 2620 4.99 2007-02-19 06:34:55.996577
  16638. 18869 94 1 2816 2.99 2007-02-19 18:32:49.996577
  16639. 18870 95 2 1174 2.99 2007-02-14 22:41:17.996577
  16640. 18871 95 2 1261 1.99 2007-02-15 05:21:23.996577
  16641. 18872 95 2 3056 2.99 2007-02-20 11:49:24.996577
  16642. 18873 95 2 3426 0.99 2007-02-21 16:40:36.996577
  16643. 18874 96 1 1266 3.99 2007-02-15 05:40:05.996577
  16644. 18875 96 2 1413 7.99 2007-02-15 15:53:33.996577
  16645. 18876 96 2 1437 0.99 2007-02-15 17:05:30.996577
  16646. 18877 96 1 2372 0.99 2007-02-18 13:06:03.996577
  16647. 18878 96 2 2973 5.99 2007-02-20 06:27:53.996577
  16648. 18879 96 1 3308 0.99 2007-02-21 06:27:02.996577
  16649. 18880 96 2 3463 0.99 2007-02-21 20:28:26.996577
  16650. 18881 97 2 2083 2.99 2007-02-17 15:42:26.996577
  16651. 18882 97 2 2790 4.99 2007-02-19 17:18:11.996577
  16652. 18883 97 1 3459 0.99 2007-02-21 20:14:13.996577
  16653. 18884 98 1 1362 3.99 2007-02-15 12:21:58.996577
  16654. 18885 98 2 1590 5.99 2007-02-16 03:40:07.996577
  16655. 18886 98 1 2213 4.99 2007-02-18 01:05:13.996577
  16656. 18887 98 1 2445 0.99 2007-02-18 17:30:37.996577
  16657. 18888 98 2 2601 4.99 2007-02-19 04:38:10.996577
  16658. 18889 98 2 3399 4.99 2007-02-21 14:16:14.996577
  16659. 18890 99 1 1858 4.99 2007-02-16 23:41:37.996577
  16660. 18891 99 1 2368 2.99 2007-02-18 12:38:53.996577
  16661. 18892 100 2 1216 4.99 2007-02-15 01:52:14.996577
  16662. 18893 100 1 1340 3.99 2007-02-15 10:52:41.996577
  16663. 18894 100 1 1427 2.99 2007-02-15 16:45:54.996577
  16664. 18895 100 2 3468 6.99 2007-02-21 21:12:11.996577
  16665. 18896 102 2 1215 2.99 2007-02-15 01:49:26.996577
  16666. 18897 102 2 2419 8.99 2007-02-18 15:49:50.996577
  16667. 18898 103 2 1396 4.99 2007-02-15 14:51:04.996577
  16668. 18899 103 1 2118 0.99 2007-02-17 18:56:55.996577
  16669. 18900 103 1 2197 0.99 2007-02-18 00:18:53.996577
  16670. 18901 103 1 2724 0.99 2007-02-19 13:26:20.996577
  16671. 18902 104 2 1287 3.99 2007-02-15 07:10:04.996577
  16672. 18903 104 1 2107 0.99 2007-02-17 17:59:42.996577
  16673. 18904 104 2 2928 0.99 2007-02-20 03:12:11.996577
  16674. 18905 104 2 3273 2.99 2007-02-21 03:52:43.996577
  16675. 18906 105 2 1789 3.99 2007-02-16 18:17:44.996577
  16676. 18907 105 2 1991 3.99 2007-02-17 09:17:49.996577
  16677. 18908 105 2 2635 3.99 2007-02-19 07:37:11.996577
  16678. 18909 106 1 2295 4.99 2007-02-18 06:24:44.996577
  16679. 18910 106 1 3023 4.99 2007-02-20 09:46:37.996577
  16680. 18911 107 2 1243 2.99 2007-02-15 03:35:58.996577
  16681. 18912 107 2 2693 6.99 2007-02-19 11:40:13.996577
  16682. 18913 107 2 2860 4.99 2007-02-19 21:49:06.996577
  16683. 18914 107 2 2897 3.99 2007-02-20 01:02:49.996577
  16684. 18915 107 1 3033 3.99 2007-02-20 10:30:31.996577
  16685. 18916 107 2 3120 0.99 2007-02-20 16:47:55.996577
  16686. 18917 107 2 3174 0.99 2007-02-20 20:52:26.996577
  16687. 18918 108 2 1372 4.99 2007-02-15 13:14:14.996577
  16688. 18919 108 1 1425 2.99 2007-02-15 16:42:12.996577
  16689. 18920 108 1 2061 8.99 2007-02-17 14:15:26.996577
  16690. 18921 108 1 2210 2.99 2007-02-18 00:55:27.996577
  16691. 18922 108 2 3116 4.99 2007-02-20 16:33:21.996577
  16692. 18923 109 2 1581 2.99 2007-02-16 02:57:11.996577
  16693. 18924 109 2 1891 3.99 2007-02-17 02:45:10.996577
  16694. 18925 109 2 2198 6.99 2007-02-18 00:19:48.996577
  16695. 18926 109 2 2679 5.99 2007-02-19 10:40:56.996577
  16696. 18927 109 2 3076 5.99 2007-02-20 13:29:45.996577
  16697. 18928 110 2 1528 8.99 2007-02-15 23:01:18.996577
  16698. 18929 111 1 1593 6.99 2007-02-16 03:43:18.996577
  16699. 18930 111 2 1974 2.99 2007-02-17 07:58:31.996577
  16700. 18931 111 2 1999 1.99 2007-02-17 09:58:34.996577
  16701. 18932 111 2 2297 4.99 2007-02-18 06:46:07.996577
  16702. 18933 111 2 3087 2.99 2007-02-20 14:22:25.996577
  16703. 18934 111 2 3333 2.99 2007-02-21 08:30:02.996577
  16704. 18935 112 1 1835 4.99 2007-02-16 21:34:02.996577
  16705. 18936 112 2 1930 2.99 2007-02-17 05:19:12.996577
  16706. 18937 112 1 2193 4.99 2007-02-18 00:07:11.996577
  16707. 18938 112 2 3018 2.99 2007-02-20 09:39:01.996577
  16708. 18939 113 2 2077 4.99 2007-02-17 15:14:37.996577
  16709. 18940 113 1 2282 2.99 2007-02-18 05:16:49.996577
  16710. 18941 113 1 2783 2.99 2007-02-19 16:57:36.996577
  16711. 18942 113 2 3004 0.99 2007-02-20 08:33:02.996577
  16712. 18943 113 1 3124 8.99 2007-02-20 16:56:45.996577
  16713. 18944 113 1 3162 6.99 2007-02-20 19:49:41.996577
  16714. 18945 114 1 2059 2.99 2007-02-17 14:04:38.996577
  16715. 18946 114 2 2680 7.99 2007-02-19 10:42:03.996577
  16716. 18947 114 1 3094 2.99 2007-02-20 14:35:17.996577
  16717. 18948 114 2 3144 5.99 2007-02-20 18:42:46.996577
  16718. 18949 115 2 1361 0.99 2007-02-15 12:06:04.996577
  16719. 18950 115 2 1515 2.99 2007-02-15 21:36:16.996577
  16720. 18951 115 1 3289 6.99 2007-02-21 05:10:14.996577
  16721. 18952 116 2 1332 0.99 2007-02-15 10:04:27.996577
  16722. 18953 116 2 1533 0.99 2007-02-15 23:14:28.996577
  16723. 18954 116 2 1762 4.99 2007-02-16 16:18:45.996577
  16724. 18955 116 2 1913 4.99 2007-02-17 03:48:13.996577
  16725. 18956 116 1 2639 4.99 2007-02-19 07:52:28.996577
  16726. 18957 116 1 2861 3.99 2007-02-19 21:50:00.996577
  16727. 18958 117 1 1755 2.99 2007-02-16 15:47:10.996577
  16728. 18959 117 2 3218 2.99 2007-02-21 00:06:35.996577
  16729. 18960 118 2 1766 4.99 2007-02-16 16:28:03.996577
  16730. 18961 118 2 2217 0.99 2007-02-18 01:40:55.996577
  16731. 18962 118 1 3263 4.99 2007-02-21 02:44:18.996577
  16732. 18963 119 1 1179 7.99 2007-02-14 23:05:16.996577
  16733. 18964 119 2 2009 2.99 2007-02-17 10:16:57.996577
  16734. 18965 119 2 3388 5.99 2007-02-21 13:03:17.996577
  16735. 18966 120 1 1374 3.99 2007-02-15 13:18:20.996577
  16736. 18967 120 1 1820 4.99 2007-02-16 20:03:16.996577
  16737. 18968 120 2 1932 2.99 2007-02-17 05:23:07.996577
  16738. 18969 120 1 2169 4.99 2007-02-17 22:25:49.996577
  16739. 18970 120 1 2803 9.99 2007-02-19 17:46:53.996577
  16740. 18971 120 1 3133 2.99 2007-02-20 17:46:58.996577
  16741. 18972 121 1 1634 2.99 2007-02-16 06:44:31.996577
  16742. 18973 121 1 1833 1.99 2007-02-16 21:13:29.996577
  16743. 18974 122 1 1211 0.99 2007-02-15 01:29:46.996577
  16744. 18975 122 2 1442 7.99 2007-02-15 17:24:00.996577
  16745. 18976 122 2 2240 3.99 2007-02-18 02:56:53.996577
  16746. 18977 122 1 2253 0.99 2007-02-18 03:40:09.996577
  16747. 18978 122 1 2482 4.99 2007-02-18 19:39:10.996577
  16748. 18979 122 2 2595 4.99 2007-02-19 04:12:21.996577
  16749. 18980 122 2 2834 1.99 2007-02-19 20:10:12.996577
  16750. 18981 123 2 1490 4.99 2007-02-15 20:10:43.996577
  16751. 18982 123 1 1751 0.99 2007-02-16 15:28:40.996577
  16752. 18983 123 2 1775 4.99 2007-02-16 16:56:45.996577
  16753. 18984 123 2 1951 0.99 2007-02-17 06:59:01.996577
  16754. 18985 123 1 2594 2.99 2007-02-19 04:12:09.996577
  16755. 18986 124 2 2336 1.99 2007-02-18 09:28:31.996577
  16756. 18987 125 1 1481 2.99 2007-02-15 19:46:24.996577
  16757. 18988 125 1 2355 3.99 2007-02-18 11:25:32.996577
  16758. 18989 125 1 2826 7.99 2007-02-19 19:10:01.996577
  16759. 18990 125 1 3118 4.99 2007-02-20 16:34:23.996577
  16760. 18991 126 1 3450 2.99 2007-02-21 19:30:23.996577
  16761. 18992 127 1 1293 4.99 2007-02-15 07:34:50.996577
  16762. 18993 127 2 1803 2.99 2007-02-16 19:01:13.996577
  16763. 18994 127 2 2412 3.99 2007-02-18 15:27:24.996577
  16764. 18995 128 2 2519 7.99 2007-02-18 22:47:47.996577
  16765. 18996 128 1 2565 0.99 2007-02-19 02:12:29.996577
  16766. 18997 129 2 1732 0.99 2007-02-16 14:03:07.996577
  16767. 18998 129 1 2727 3.99 2007-02-19 13:31:05.996577
  16768. 18999 129 2 2768 0.99 2007-02-19 16:15:18.996577
  16769. 19000 129 2 2795 4.99 2007-02-19 17:27:19.996577
  16770. 19001 129 1 3183 4.99 2007-02-20 21:24:21.996577
  16771. 19002 129 1 3219 3.99 2007-02-21 00:11:52.996577
  16772. 19003 130 1 1630 2.99 2007-02-16 06:23:27.996577
  16773. 19004 130 2 1864 2.99 2007-02-17 00:08:13.996577
  16774. 19005 130 2 2163 2.99 2007-02-17 22:14:42.996577
  16775. 19006 130 2 2292 2.99 2007-02-18 06:06:14.996577
  16776. 19007 130 1 2535 2.99 2007-02-19 00:07:30.996577
  16777. 19008 130 1 2982 6.99 2007-02-20 07:06:55.996577
  16778. 19009 131 1 1646 9.99 2007-02-16 07:41:19.996577
  16779. 19010 131 2 1768 4.99 2007-02-16 16:30:32.996577
  16780. 19011 132 1 1843 0.99 2007-02-16 22:22:08.996577
  16781. 19012 132 1 2208 4.99 2007-02-18 00:50:33.996577
  16782. 19013 132 1 2384 0.99 2007-02-18 13:47:15.996577
  16783. 19014 132 2 2608 2.99 2007-02-19 05:39:02.996577
  16784. 19015 132 2 2924 4.99 2007-02-20 02:48:40.996577
  16785. 19016 132 1 3121 4.99 2007-02-20 16:51:56.996577
  16786. 19017 133 2 1522 3.99 2007-02-15 22:46:05.996577
  16787. 19018 133 2 2665 7.99 2007-02-19 09:41:01.996577
  16788. 19019 133 1 3006 0.99 2007-02-20 08:38:55.996577
  16789. 19020 133 2 3365 0.99 2007-02-21 11:24:14.996577
  16790. 19021 134 1 1618 9.99 2007-02-16 05:37:04.996577
  16791. 19022 134 2 1784 0.99 2007-02-16 17:53:58.996577
  16792. 19023 134 2 1881 0.99 2007-02-17 01:38:22.996577
  16793. 19024 134 1 3267 5.99 2007-02-21 03:23:47.996577
  16794. 19025 135 2 1272 0.99 2007-02-15 06:11:24.996577
  16795. 19026 135 2 1671 1.99 2007-02-16 08:58:48.996577
  16796. 19027 135 2 2941 2.99 2007-02-20 03:50:44.996577
  16797. 19028 136 2 2104 2.99 2007-02-17 17:42:56.996577
  16798. 19029 137 1 2469 6.99 2007-02-18 18:52:49.996577
  16799. 19030 137 1 2785 2.99 2007-02-19 17:12:23.996577
  16800. 19031 137 2 3058 3.99 2007-02-20 11:57:01.996577
  16801. 19032 137 1 3436 5.99 2007-02-21 17:44:35.996577
  16802. 19033 138 2 1316 0.99 2007-02-15 08:54:49.996577
  16803. 19034 138 2 2038 0.99 2007-02-17 12:29:17.996577
  16804. 19035 138 1 2731 7.99 2007-02-19 13:43:21.996577
  16805. 19036 139 2 1169 2.99 2007-02-14 22:11:22.996577
  16806. 19037 139 1 1736 2.99 2007-02-16 14:20:58.996577
  16807. 19038 139 1 2659 0.99 2007-02-19 09:16:08.996577
  16808. 19039 139 2 2718 7.99 2007-02-19 13:18:08.996577
  16809. 19040 140 1 1586 4.99 2007-02-16 03:19:44.996577
  16810. 19041 140 1 1687 2.99 2007-02-16 10:37:46.996577
  16811. 19042 140 2 2332 6.99 2007-02-18 09:22:17.996577
  16812. 19043 140 2 3171 0.99 2007-02-20 20:44:13.996577
  16813. 19044 141 2 1242 7.99 2007-02-15 03:33:33.996577
  16814. 19045 141 2 2895 7.99 2007-02-20 00:54:57.996577
  16815. 19046 141 1 3434 4.99 2007-02-21 17:36:54.996577
  16816. 19047 142 1 1268 1.99 2007-02-15 05:57:56.996577
  16817. 19048 142 1 3214 2.99 2007-02-20 23:36:52.996577
  16818. 19049 143 2 1898 1.99 2007-02-17 02:56:37.996577
  16819. 19050 143 1 1942 4.99 2007-02-17 06:12:05.996577
  16820. 19051 143 2 2251 3.99 2007-02-18 03:33:34.996577
  16821. 19052 143 1 2574 0.99 2007-02-19 02:52:18.996577
  16822. 19053 143 1 2588 4.99 2007-02-19 03:48:57.996577
  16823. 19054 144 1 1814 5.99 2007-02-16 19:43:48.996577
  16824. 19055 144 1 1943 0.99 2007-02-17 06:17:43.996577
  16825. 19056 144 1 2756 4.99 2007-02-19 15:26:08.996577
  16826. 19057 144 2 3019 4.99 2007-02-20 09:40:18.996577
  16827. 19058 144 1 3145 2.99 2007-02-20 18:49:43.996577
  16828. 19059 144 1 3321 2.99 2007-02-21 07:01:52.996577
  16829. 19060 145 2 2271 4.99 2007-02-18 04:58:18.996577
  16830. 19061 145 2 2614 0.99 2007-02-19 05:56:37.996577
  16831. 19062 146 2 1209 7.99 2007-02-15 00:59:38.996577
  16832. 19063 146 2 1724 1.99 2007-02-16 13:44:09.996577
  16833. 19064 146 2 2099 2.99 2007-02-17 17:15:52.996577
  16834. 19065 146 1 2242 3.99 2007-02-18 03:00:54.996577
  16835. 19066 146 1 2342 2.99 2007-02-18 10:11:06.996577
  16836. 19067 146 1 2800 0.99 2007-02-19 17:44:22.996577
  16837. 19068 146 1 3131 4.99 2007-02-20 17:36:26.996577
  16838. 19069 147 1 2171 0.99 2007-02-17 22:34:30.996577
  16839. 19070 147 1 2456 6.99 2007-02-18 18:05:16.996577
  16840. 19071 147 2 2859 2.99 2007-02-19 21:47:08.996577
  16841. 19072 147 2 3011 5.99 2007-02-20 09:07:36.996577
  16842. 19073 148 1 1501 1.99 2007-02-15 20:31:01.996577
  16843. 19074 148 2 1517 6.99 2007-02-15 21:48:52.996577
  16844. 19075 148 2 2751 3.99 2007-02-19 15:07:49.996577
  16845. 19076 148 2 2843 3.99 2007-02-19 21:05:05.996577
  16846. 19077 148 2 2847 5.99 2007-02-19 21:22:27.996577
  16847. 19078 149 2 1521 2.99 2007-02-15 22:27:19.996577
  16848. 19079 149 1 1800 2.99 2007-02-16 18:47:12.996577
  16849. 19080 149 2 1996 6.99 2007-02-17 09:46:11.996577
  16850. 19081 149 2 2194 4.99 2007-02-18 00:10:03.996577
  16851. 19082 149 1 2305 5.99 2007-02-18 06:59:44.996577
  16852. 19083 149 2 2383 7.99 2007-02-18 13:46:25.996577
  16853. 19084 149 1 2752 0.99 2007-02-19 15:12:44.996577
  16854. 19085 150 2 3187 1.99 2007-02-20 21:34:33.996577
  16855. 19086 150 1 3456 5.99 2007-02-21 19:48:13.996577
  16856. 19087 151 2 2474 2.99 2007-02-18 19:20:00.996577
  16857. 19088 151 2 2947 2.99 2007-02-20 04:28:47.996577
  16858. 19089 151 1 3017 3.99 2007-02-20 09:37:22.996577
  16859. 19090 151 2 3089 0.99 2007-02-20 14:25:27.996577
  16860. 19091 151 2 3390 2.99 2007-02-21 13:39:16.996577
  16861. 19092 152 1 2882 4.99 2007-02-19 23:54:52.996577
  16862. 19093 153 1 2224 0.99 2007-02-18 02:02:24.996577
  16863. 19094 153 1 2649 0.99 2007-02-19 08:48:35.996577
  16864. 19095 153 1 2893 4.99 2007-02-20 00:50:34.996577
  16865. 19096 153 1 2945 5.99 2007-02-20 04:17:53.996577
  16866. 19097 154 1 1963 0.99 2007-02-17 07:37:57.996577
  16867. 19098 154 1 2886 4.99 2007-02-20 00:07:05.996577
  16868. 19099 154 1 2985 2.99 2007-02-20 07:13:34.996577
  16869. 19100 155 2 1519 1.99 2007-02-15 22:23:53.996577
  16870. 19101 155 1 1554 7.99 2007-02-16 00:45:13.996577
  16871. 19102 155 1 2028 7.99 2007-02-17 11:36:34.996577
  16872. 19103 155 1 2869 4.99 2007-02-19 22:37:51.996577
  16873. 19104 155 2 3405 4.99 2007-02-21 14:26:51.996577
  16874. 19105 156 2 2089 9.99 2007-02-17 16:13:35.996577
  16875. 19106 156 2 2221 0.99 2007-02-18 01:53:22.996577
  16876. 19107 156 1 2658 4.99 2007-02-19 09:12:08.996577
  16877. 19108 156 1 2782 0.99 2007-02-19 16:53:33.996577
  16878. 19109 157 2 2340 0.99 2007-02-18 09:59:22.996577
  16879. 19110 158 1 1380 0.99 2007-02-15 13:41:36.996577
  16880. 19111 158 2 1790 4.99 2007-02-16 18:27:06.996577
  16881. 19112 158 2 2035 6.99 2007-02-17 12:13:35.996577
  16882. 19113 158 2 3203 8.99 2007-02-20 23:03:22.996577
  16883. 19114 159 1 1695 0.99 2007-02-16 11:08:54.996577
  16884. 19115 159 1 2572 0.99 2007-02-19 02:49:52.996577
  16885. 19116 160 2 2314 4.99 2007-02-18 07:31:45.996577
  16886. 19117 160 1 2465 2.99 2007-02-18 18:35:28.996577
  16887. 19118 160 2 2873 2.99 2007-02-19 23:09:51.996577
  16888. 19119 161 1 1856 2.99 2007-02-16 23:30:26.996577
  16889. 19120 161 1 3075 3.99 2007-02-20 13:20:45.996577
  16890. 19121 162 2 1339 4.99 2007-02-15 10:50:22.996577
  16891. 19122 162 1 2366 0.99 2007-02-18 12:15:05.996577
  16892. 19123 162 1 2547 4.99 2007-02-19 01:12:43.996577
  16893. 19124 162 1 3040 0.99 2007-02-20 11:02:39.996577
  16894. 19125 162 2 3180 0.99 2007-02-20 21:17:10.996577
  16895. 19126 163 2 1265 4.99 2007-02-15 05:29:16.996577
  16896. 19127 163 2 2000 2.99 2007-02-17 10:00:56.996577
  16897. 19128 163 2 2110 7.99 2007-02-17 18:14:15.996577
  16898. 19129 163 2 2536 5.99 2007-02-19 00:10:00.996577
  16899. 19130 163 1 2994 6.99 2007-02-20 07:45:31.996577
  16900. 19131 163 1 3179 0.99 2007-02-20 21:06:25.996577
  16901. 19132 164 2 1713 4.99 2007-02-16 12:56:59.996577
  16902. 19133 164 2 2589 2.99 2007-02-19 03:49:53.996577
  16903. 19134 164 1 3082 8.99 2007-02-20 14:00:37.996577
  16904. 19135 165 1 2013 3.99 2007-02-17 10:31:27.996577
  16905. 19136 165 2 3195 2.99 2007-02-20 22:30:36.996577
  16906. 19137 166 2 1412 2.99 2007-02-15 15:38:14.996577
  16907. 19138 166 1 2211 3.99 2007-02-18 00:57:36.996577
  16908. 19139 166 1 2874 5.99 2007-02-19 23:10:52.996577
  16909. 19140 166 1 3085 0.99 2007-02-20 14:10:59.996577
  16910. 19141 167 1 1416 3.99 2007-02-15 16:13:23.996577
  16911. 19142 167 1 1509 5.99 2007-02-15 21:04:19.996577
  16912. 19143 167 2 2381 5.99 2007-02-18 13:28:56.996577
  16913. 19144 168 2 1222 4.99 2007-02-15 02:07:15.996577
  16914. 19145 169 1 2023 4.99 2007-02-17 11:21:24.996577
  16915. 19146 169 1 3261 2.99 2007-02-21 02:36:07.996577
  16916. 19147 170 2 2117 0.99 2007-02-17 18:52:26.996577
  16917. 19148 170 2 2413 8.99 2007-02-18 15:28:00.996577
  16918. 19149 171 2 1676 0.99 2007-02-16 09:34:35.996577
  16919. 19150 171 2 2004 4.99 2007-02-17 10:12:04.996577
  16920. 19151 171 2 2199 5.99 2007-02-18 00:26:22.996577
  16921. 19152 171 1 2497 4.99 2007-02-18 21:19:06.996577
  16922. 19153 171 2 2599 5.99 2007-02-19 04:34:33.996577
  16923. 19154 171 2 2788 2.99 2007-02-19 17:16:37.996577
  16924. 19155 171 2 3338 6.99 2007-02-21 08:55:57.996577
  16925. 19156 172 2 1507 0.99 2007-02-15 20:53:52.996577
  16926. 19157 172 1 2052 0.99 2007-02-17 13:43:09.996577
  16927. 19158 172 2 3032 1.99 2007-02-20 10:26:56.996577
  16928. 19159 173 2 1188 2.99 2007-02-14 23:32:33.996577
  16929. 19160 173 2 2435 4.99 2007-02-18 16:40:52.996577
  16930. 19161 173 1 2602 2.99 2007-02-19 04:38:34.996577
  16931. 19162 173 2 3224 0.99 2007-02-21 00:40:02.996577
  16932. 19163 173 1 3336 4.99 2007-02-21 08:42:53.996577
  16933. 19164 174 2 1566 7.99 2007-02-16 01:41:46.996577
  16934. 19165 174 1 1609 0.99 2007-02-16 05:03:25.996577
  16935. 19166 174 1 2326 5.99 2007-02-18 08:42:48.996577
  16936. 19167 174 2 3446 1.99 2007-02-21 19:14:17.996577
  16937. 19168 175 2 1495 0.99 2007-02-15 20:22:57.996577
  16938. 19169 175 2 3266 4.99 2007-02-21 03:17:33.996577
  16939. 19170 176 1 1291 5.99 2007-02-15 07:23:27.996577
  16940. 19171 176 1 1741 7.99 2007-02-16 15:00:03.996577
  16941. 19172 176 1 1836 6.99 2007-02-16 21:41:31.996577
  16942. 19173 176 1 2181 8.99 2007-02-17 23:16:57.996577
  16943. 19174 176 1 2218 2.99 2007-02-18 01:41:39.996577
  16944. 19175 176 2 2427 2.99 2007-02-18 16:13:26.996577
  16945. 19176 176 2 2503 1.99 2007-02-18 21:45:45.996577
  16946. 19177 176 1 2922 4.99 2007-02-20 02:42:13.996577
  16947. 19178 177 1 1393 2.99 2007-02-15 14:41:16.996577
  16948. 19179 177 1 1524 2.99 2007-02-15 22:54:18.996577
  16949. 19180 177 2 1621 4.99 2007-02-16 05:52:38.996577
  16950. 19181 177 1 1738 0.99 2007-02-16 14:35:53.996577
  16951. 19182 177 2 2467 2.99 2007-02-18 18:48:31.996577
  16952. 19183 178 1 1292 6.99 2007-02-15 07:32:18.996577
  16953. 19184 178 2 1458 6.99 2007-02-15 18:52:31.996577
  16954. 19185 178 2 1568 2.99 2007-02-16 01:42:27.996577
  16955. 19186 178 2 1745 3.99 2007-02-16 15:09:42.996577
  16956. 19187 178 2 2124 1.99 2007-02-17 19:17:40.996577
  16957. 19188 178 1 2293 4.99 2007-02-18 06:13:29.996577
  16958. 19189 178 2 2844 6.99 2007-02-19 21:08:38.996577
  16959. 19190 178 1 2898 9.99 2007-02-20 01:06:32.996577
  16960. 19191 179 2 1286 7.99 2007-02-15 07:09:39.996577
  16961. 19192 179 1 2613 4.99 2007-02-19 05:54:16.996577
  16962. 19193 180 2 2700 2.99 2007-02-19 12:00:18.996577
  16963. 19194 180 1 2798 2.99 2007-02-19 17:36:14.996577
  16964. 19195 181 1 1638 2.99 2007-02-16 07:01:02.996577
  16965. 19196 181 1 2645 5.99 2007-02-19 08:19:01.996577
  16966. 19197 181 2 3449 5.99 2007-02-21 19:29:53.996577
  16967. 19198 181 2 3469 4.99 2007-02-21 21:17:25.996577
  16968. 19199 182 2 1542 3.99 2007-02-15 23:48:31.996577
  16969. 19200 182 1 2049 2.99 2007-02-17 13:27:02.996577
  16970. 19201 182 2 2120 5.99 2007-02-17 19:05:16.996577
  16971. 19202 182 1 2234 0.99 2007-02-18 02:29:54.996577
  16972. 19203 183 1 1279 0.99 2007-02-15 06:42:23.996577
  16973. 19204 183 2 2188 1.99 2007-02-17 23:47:30.996577
  16974. 19205 183 2 2471 5.99 2007-02-18 18:59:26.996577
  16975. 19206 183 1 3381 5.99 2007-02-21 12:31:25.996577
  16976. 19207 184 2 1976 2.99 2007-02-17 08:06:34.996577
  16977. 19208 184 1 2312 0.99 2007-02-18 07:24:12.996577
  16978. 19209 185 1 2459 4.99 2007-02-18 18:12:34.996577
  16979. 19210 185 1 3314 4.99 2007-02-21 06:45:26.996577
  16980. 19211 185 1 3325 4.99 2007-02-21 07:20:10.996577
  16981. 19212 186 1 1192 4.99 2007-02-14 23:47:05.996577
  16982. 19213 186 1 1300 2.99 2007-02-15 08:04:45.996577
  16983. 19214 186 1 1663 2.99 2007-02-16 08:42:41.996577
  16984. 19215 186 2 2132 4.99 2007-02-17 19:33:32.996577
  16985. 19216 186 2 2875 4.99 2007-02-19 23:15:44.996577
  16986. 19217 186 1 3039 4.99 2007-02-20 11:00:56.996577
  16987. 19218 187 2 1323 6.99 2007-02-15 09:23:43.996577
  16988. 19219 187 2 1462 4.99 2007-02-15 19:06:06.996577
  16989. 19220 187 2 1592 0.99 2007-02-16 03:43:03.996577
  16990. 19221 187 2 2127 0.99 2007-02-17 19:23:14.996577
  16991. 19222 187 2 2533 0.99 2007-02-19 00:02:52.996577
  16992. 19223 187 1 2742 5.99 2007-02-19 14:34:13.996577
  16993. 19224 187 1 3402 2.99 2007-02-21 14:23:03.996577
  16994. 19225 188 2 1527 2.99 2007-02-15 23:00:06.996577
  16995. 19226 188 2 1927 0.99 2007-02-17 05:16:45.996577
  16996. 19227 188 1 2515 4.99 2007-02-18 22:25:57.996577
  16997. 19228 188 2 2733 4.99 2007-02-19 13:50:19.996577
  16998. 19229 189 1 1541 0.99 2007-02-15 23:44:25.996577
  16999. 19230 189 1 1834 0.99 2007-02-16 21:17:34.996577
  17000. 19231 189 2 2905 1.99 2007-02-20 01:24:42.996577
  17001. 19232 189 1 3108 6.99 2007-02-20 15:57:09.996577
  17002. 19233 189 1 3346 2.99 2007-02-21 09:35:19.996577
  17003. 19234 190 1 1319 2.99 2007-02-15 09:07:31.996577
  17004. 19235 190 1 1347 2.99 2007-02-15 11:12:09.996577
  17005. 19236 190 1 2057 4.99 2007-02-17 14:00:24.996577
  17006. 19237 190 1 2568 3.99 2007-02-19 02:37:29.996577
  17007. 19238 190 1 3386 4.99 2007-02-21 12:49:32.996577
  17008. 19239 191 2 1173 2.99 2007-02-14 22:23:12.996577
  17009. 19240 191 1 1278 0.99 2007-02-15 06:37:38.996577
  17010. 19241 191 1 1677 2.99 2007-02-16 09:35:37.996577
  17011. 19242 191 2 1870 2.99 2007-02-17 00:53:02.996577
  17012. 19243 191 1 2051 4.99 2007-02-17 13:38:42.996577
  17013. 19244 191 2 2555 2.99 2007-02-19 01:35:28.996577
  17014. 19245 192 1 2760 3.99 2007-02-19 15:44:59.996577
  17015. 19246 193 1 1325 4.99 2007-02-15 09:31:50.996577
  17016. 19247 193 2 2377 6.99 2007-02-18 13:24:49.996577
  17017. 19248 193 2 2841 6.99 2007-02-19 20:49:32.996577
  17018. 19249 193 2 2846 4.99 2007-02-19 21:20:40.996577
  17019. 19250 193 2 2880 2.99 2007-02-19 23:53:20.996577
  17020. 19251 193 1 3297 8.99 2007-02-21 05:36:45.996577
  17021. 19252 194 1 1430 0.99 2007-02-15 16:53:21.996577
  17022. 19253 194 1 2245 7.99 2007-02-18 03:21:25.996577
  17023. 19254 194 1 2347 2.99 2007-02-18 10:40:55.996577
  17024. 19255 194 1 2463 3.99 2007-02-18 18:30:09.996577
  17025. 19256 194 1 2807 3.99 2007-02-19 18:01:19.996577
  17026. 19257 196 1 1182 5.99 2007-02-14 23:13:47.996577
  17027. 19258 196 1 1348 2.99 2007-02-15 11:13:56.996577
  17028. 19259 196 2 1600 0.99 2007-02-16 04:32:38.996577
  17029. 19260 196 1 2681 0.99 2007-02-19 10:43:53.996577
  17030. 19261 196 2 2912 4.99 2007-02-20 02:01:11.996577
  17031. 19262 196 1 3104 4.99 2007-02-20 15:35:12.996577
  17032. 19263 196 2 3271 5.99 2007-02-21 03:44:36.996577
  17033. 19264 196 2 3342 4.99 2007-02-21 09:15:02.996577
  17034. 19265 197 2 1175 2.99 2007-02-14 22:43:41.996577
  17035. 19266 197 1 1363 0.99 2007-02-15 12:33:37.996577
  17036. 19267 197 1 1503 2.99 2007-02-15 20:35:35.996577
  17037. 19268 197 2 1605 8.99 2007-02-16 04:46:21.996577
  17038. 19269 197 2 1919 4.99 2007-02-17 04:09:18.996577
  17039. 19270 197 1 2090 2.99 2007-02-17 16:34:40.996577
  17040. 19271 197 1 2750 4.99 2007-02-19 15:05:50.996577
  17041. 19272 197 2 2781 2.99 2007-02-19 16:53:08.996577
  17042. 19273 198 2 2185 0.99 2007-02-17 23:40:48.996577
  17043. 19274 199 1 1406 4.99 2007-02-15 15:12:26.996577
  17044. 19275 199 1 1910 2.99 2007-02-17 03:39:53.996577
  17045. 19276 199 1 3299 0.99 2007-02-21 05:52:00.996577
  17046. 19277 200 2 1296 1.99 2007-02-15 07:52:25.996577
  17047. 19278 200 2 1309 4.99 2007-02-15 08:39:15.996577
  17048. 19279 200 2 1899 6.99 2007-02-17 02:57:41.996577
  17049. 19280 200 1 2227 4.99 2007-02-18 02:11:49.996577
  17050. 19281 200 2 2667 3.99 2007-02-19 09:57:12.996577
  17051. 19282 200 2 2717 4.99 2007-02-19 13:14:36.996577
  17052. 19283 200 1 3190 3.99 2007-02-20 21:55:41.996577
  17053. 19284 201 1 2047 1.99 2007-02-17 13:09:24.996577
  17054. 19285 201 1 2157 3.99 2007-02-17 21:59:18.996577
  17055. 19286 201 2 2359 6.99 2007-02-18 11:33:08.996577
  17056. 19287 201 1 3106 4.99 2007-02-20 15:46:32.996577
  17057. 19288 201 1 3364 7.99 2007-02-21 11:06:12.996577
  17058. 19289 209 2 1201 4.99 2007-02-15 00:34:54.996577
  17059. 19290 209 1 1657 4.99 2007-02-16 08:35:15.996577
  17060. 19291 209 1 2650 4.99 2007-02-19 08:50:11.996577
  17061. 19292 209 1 2796 4.99 2007-02-19 17:29:03.996577
  17062. 19293 210 2 1177 2.99 2007-02-14 23:01:30.996577
  17063. 19294 210 2 2856 0.99 2007-02-19 21:41:30.996577
  17064. 19295 211 2 2812 8.99 2007-02-19 18:26:42.996577
  17065. 19296 211 2 3437 6.99 2007-02-21 17:48:43.996577
  17066. 19297 212 1 1356 0.99 2007-02-15 11:45:27.996577
  17067. 19298 212 2 1379 0.99 2007-02-15 13:33:36.996577
  17068. 19299 212 1 1637 2.99 2007-02-16 06:58:24.996577
  17069. 19300 212 2 2739 9.99 2007-02-19 14:27:04.996577
  17070. 19301 213 1 1489 0.99 2007-02-15 20:10:04.996577
  17071. 19302 213 2 1936 4.99 2007-02-17 05:44:07.996577
  17072. 19303 213 1 2322 5.99 2007-02-18 08:12:47.996577
  17073. 19304 213 1 2509 0.99 2007-02-18 22:12:34.996577
  17074. 19305 213 2 2569 6.99 2007-02-19 02:47:30.996577
  17075. 19306 213 1 2889 4.99 2007-02-20 00:22:34.996577
  17076. 19307 213 2 2946 4.99 2007-02-20 04:19:06.996577
  17077. 19308 213 1 3252 2.99 2007-02-21 01:53:52.996577
  17078. 19309 213 1 3313 2.99 2007-02-21 06:39:44.996577
  17079. 19310 214 2 1275 4.99 2007-02-15 06:24:09.996577
  17080. 19311 214 2 2085 2.99 2007-02-17 15:59:22.996577
  17081. 19312 214 2 2868 2.99 2007-02-19 22:37:24.996577
  17082. 19313 215 2 1376 4.99 2007-02-15 13:27:32.996577
  17083. 19314 215 2 1599 4.99 2007-02-16 04:31:59.996577
  17084. 19315 215 2 1845 4.99 2007-02-16 22:24:37.996577
  17085. 19316 215 2 2006 2.99 2007-02-17 10:15:29.996577
  17086. 19317 215 2 2918 2.99 2007-02-20 02:37:30.996577
  17087. 19318 215 1 3143 2.99 2007-02-20 18:30:18.996577
  17088. 19319 216 2 1461 6.99 2007-02-15 19:00:34.996577
  17089. 19320 216 1 1664 0.99 2007-02-16 08:43:46.996577
  17090. 19321 216 1 1672 3.99 2007-02-16 09:06:00.996577
  17091. 19322 216 2 2351 0.99 2007-02-18 10:56:23.996577
  17092. 19323 216 1 3432 2.99 2007-02-21 17:30:29.996577
  17093. 19324 217 1 1322 2.99 2007-02-15 09:23:35.996577
  17094. 19325 217 1 2076 6.99 2007-02-17 15:12:13.996577
  17095. 19326 217 1 2842 4.99 2007-02-19 21:02:46.996577
  17096. 19327 218 1 1459 2.99 2007-02-15 18:54:19.996577
  17097. 19328 218 1 2262 0.99 2007-02-18 04:18:12.996577
  17098. 19329 218 1 2267 0.99 2007-02-18 04:38:49.996577
  17099. 19330 219 2 2417 3.99 2007-02-18 15:40:27.996577
  17100. 19331 219 2 2580 0.99 2007-02-19 03:12:56.996577
  17101. 19332 220 1 1832 0.99 2007-02-16 21:03:46.996577
  17102. 19333 221 1 1369 0.99 2007-02-15 12:57:40.996577
  17103. 19334 221 1 2331 2.99 2007-02-18 09:18:35.996577
  17104. 19335 221 2 2473 2.99 2007-02-18 19:11:11.996577
  17105. 19336 221 1 2660 10.99 2007-02-19 09:18:28.996577
  17106. 19337 221 1 3200 5.99 2007-02-20 22:51:13.996577
  17107. 19338 222 1 1368 8.99 2007-02-15 12:56:13.996577
  17108. 19339 222 2 2603 6.99 2007-02-19 04:49:51.996577
  17109. 19340 223 2 1839 5.99 2007-02-16 21:50:48.996577
  17110. 19341 223 1 2334 4.99 2007-02-18 09:24:50.996577
  17111. 19342 224 1 1424 7.99 2007-02-15 16:36:40.996577
  17112. 19343 224 1 2277 2.99 2007-02-18 05:03:29.996577
  17113. 19344 224 2 3282 4.99 2007-02-21 04:47:08.996577
  17114. 19345 225 2 2226 7.99 2007-02-18 02:08:22.996577
  17115. 19346 226 2 3414 2.99 2007-02-21 15:27:16.996577
  17116. 19347 226 1 3466 4.99 2007-02-21 20:41:59.996577
  17117. 19348 227 1 1679 2.99 2007-02-16 09:39:27.996577
  17118. 19349 227 2 2155 1.99 2007-02-17 21:35:55.996577
  17119. 19350 227 1 2164 6.99 2007-02-17 22:14:47.996577
  17120. 19351 227 2 3065 0.99 2007-02-20 12:22:19.996577
  17121. 19352 228 2 2284 3.99 2007-02-18 05:28:17.996577
  17122. 19353 228 2 2863 2.99 2007-02-19 22:27:04.996577
  17123. 19354 228 2 2934 2.99 2007-02-20 03:34:19.996577
  17124. 19355 228 2 3433 3.99 2007-02-21 17:35:45.996577
  17125. 19356 229 1 2200 4.99 2007-02-18 00:27:42.996577
  17126. 19357 229 1 3208 0.99 2007-02-20 23:18:29.996577
  17127. 19358 229 1 3277 7.99 2007-02-21 04:05:03.996577
  17128. 19359 229 2 3280 0.99 2007-02-21 04:36:38.996577
  17129. 19360 230 2 1468 3.99 2007-02-15 19:16:48.996577
  17130. 19361 230 1 1744 4.99 2007-02-16 15:08:24.996577
  17131. 19362 230 2 1793 0.99 2007-02-16 18:35:53.996577
  17132. 19363 230 2 2450 8.99 2007-02-18 17:54:13.996577
  17133. 19364 230 2 2675 0.99 2007-02-19 10:20:41.996577
  17134. 19365 230 1 2777 0.99 2007-02-19 16:44:52.996577
  17135. 19366 231 2 2423 0.99 2007-02-18 16:00:34.996577
  17136. 19367 232 2 1619 0.99 2007-02-16 05:42:39.996577
  17137. 19368 232 1 2833 8.99 2007-02-19 20:03:20.996577
  17138. 19369 233 2 1992 2.99 2007-02-17 09:27:19.996577
  17139. 19370 233 2 2244 2.99 2007-02-18 03:14:59.996577
  17140. 19371 233 1 2424 2.99 2007-02-18 16:03:34.996577
  17141. 19372 233 2 2443 4.99 2007-02-18 17:20:56.996577
  17142. 19373 234 2 1245 3.99 2007-02-15 03:37:27.996577
  17143. 19374 234 2 1645 0.99 2007-02-16 07:38:32.996577
  17144. 19375 234 1 1674 2.99 2007-02-16 09:25:26.996577
  17145. 19376 234 2 1993 5.99 2007-02-17 09:27:50.996577
  17146. 19377 234 1 2005 4.99 2007-02-17 10:13:20.996577
  17147. 19378 234 2 2511 5.99 2007-02-18 22:13:56.996577
  17148. 19379 234 2 3185 6.99 2007-02-20 21:26:27.996577
  17149. 19380 234 2 3199 4.99 2007-02-20 22:41:06.996577
  17150. 19381 235 1 1493 4.99 2007-02-15 20:18:58.996577
  17151. 19382 235 2 1811 0.99 2007-02-16 19:34:46.996577
  17152. 19383 236 1 1262 0.99 2007-02-15 05:23:19.996577
  17153. 19384 236 2 1308 5.99 2007-02-15 08:36:14.996577
  17154. 19385 236 2 2139 8.99 2007-02-17 19:58:00.996577
  17155. 19386 236 2 2311 6.99 2007-02-18 07:19:55.996577
  17156. 19387 236 1 2630 2.99 2007-02-19 07:15:47.996577
  17157. 19388 236 2 2840 3.99 2007-02-19 20:46:10.996577
  17158. 19389 236 1 3353 4.99 2007-02-21 09:57:49.996577
  17159. 19390 236 2 3460 2.99 2007-02-21 20:15:22.996577
  17160. 19391 237 1 1500 0.99 2007-02-15 20:29:11.996577
  17161. 19392 237 2 1518 0.99 2007-02-15 22:05:03.996577
  17162. 19393 237 1 2156 4.99 2007-02-17 21:36:38.996577
  17163. 19394 237 1 2492 2.99 2007-02-18 20:32:41.996577
  17164. 19395 237 2 3069 2.99 2007-02-20 12:41:26.996577
  17165. 19396 238 1 1199 2.99 2007-02-15 00:27:16.996577
  17166. 19397 238 1 1660 4.99 2007-02-16 08:41:21.996577
  17167. 19398 238 1 3181 2.99 2007-02-20 21:19:28.996577
  17168. 19399 239 1 1160 4.99 2007-02-14 21:29:00.996577
  17169. 19400 239 2 1560 4.99 2007-02-16 01:05:09.996577
  17170. 19401 239 2 2215 2.99 2007-02-18 01:16:47.996577
  17171. 19402 239 1 2390 4.99 2007-02-18 13:57:52.996577
  17172. 19403 239 1 3383 5.99 2007-02-21 12:35:45.996577
  17173. 19404 240 2 2196 3.99 2007-02-18 00:15:33.996577
  17174. 19405 240 1 2264 4.99 2007-02-18 04:27:11.996577
  17175. 19406 240 2 2872 5.99 2007-02-19 23:06:47.996577
  17176. 19407 241 2 2428 0.99 2007-02-18 16:16:00.996577
  17177. 19408 241 1 2455 0.99 2007-02-18 18:01:32.996577
  17178. 19409 241 2 2478 5.99 2007-02-18 19:29:47.996577
  17179. 19410 241 2 2683 2.99 2007-02-19 10:55:45.996577
  17180. 19411 241 2 3258 0.99 2007-02-21 02:22:24.996577
  17181. 19412 242 2 1304 4.99 2007-02-15 08:24:28.996577
  17182. 19413 242 1 1384 4.99 2007-02-15 13:50:29.996577
  17183. 19414 242 1 1483 4.99 2007-02-15 19:50:24.996577
  17184. 19415 242 2 1702 4.99 2007-02-16 11:49:31.996577
  17185. 19416 242 1 2691 4.99 2007-02-19 11:35:16.996577
  17186. 19417 242 2 2942 4.99 2007-02-20 03:55:57.996577
  17187. 19418 243 1 1405 5.99 2007-02-15 15:09:52.996577
  17188. 19419 243 1 1452 0.99 2007-02-15 18:01:18.996577
  17189. 19420 243 2 2757 5.99 2007-02-19 15:29:40.996577
  17190. 19421 244 2 1189 6.99 2007-02-14 23:32:48.996577
  17191. 19422 244 1 1595 5.99 2007-02-16 03:52:12.996577
  17192. 19423 244 2 2955 3.99 2007-02-20 05:15:01.996577
  17193. 19424 245 1 1377 2.99 2007-02-15 13:30:29.996577
  17194. 19425 245 1 2122 2.99 2007-02-17 19:16:53.996577
  17195. 19426 245 1 3157 2.99 2007-02-20 19:36:20.996577
  17196. 19427 246 2 1448 1.99 2007-02-15 17:45:42.996577
  17197. 19428 246 1 1968 2.99 2007-02-17 07:49:02.996577
  17198. 19429 246 2 2704 1.99 2007-02-19 12:18:36.996577
  17199. 19430 246 1 2725 0.99 2007-02-19 13:29:49.996577
  17200. 19431 246 1 3152 4.99 2007-02-20 19:11:07.996577
  17201. 19432 247 1 2288 5.99 2007-02-18 05:51:43.996577
  17202. 19433 248 1 2066 3.99 2007-02-17 14:35:34.996577
  17203. 19434 248 2 2371 0.99 2007-02-18 13:03:55.996577
  17204. 19435 249 1 1204 0.99 2007-02-15 00:50:12.996577
  17205. 19436 249 1 1473 5.99 2007-02-15 19:23:46.996577
  17206. 19437 249 2 1753 2.99 2007-02-16 15:36:43.996577
  17207. 19438 249 2 2129 1.99 2007-02-17 19:26:58.996577
  17208. 19439 249 2 3175 7.99 2007-02-20 20:58:49.996577
  17209. 19440 250 1 2432 4.99 2007-02-18 16:27:44.996577
  17210. 19441 251 1 2238 6.99 2007-02-18 02:50:32.996577
  17211. 19442 251 2 3422 7.99 2007-02-21 15:53:06.996577
  17212. 19443 251 1 3464 2.99 2007-02-21 20:37:24.996577
  17213. 19444 252 1 1395 5.99 2007-02-15 14:49:30.996577
  17214. 19445 252 2 2716 4.99 2007-02-19 13:08:43.996577
  17215. 19446 252 1 2968 0.99 2007-02-20 06:10:13.996577
  17216. 19447 253 2 1378 1.99 2007-02-15 13:31:41.996577
  17217. 19448 253 2 1606 6.99 2007-02-16 04:46:57.996577
  17218. 19449 253 2 2081 5.99 2007-02-17 15:33:28.996577
  17219. 19450 253 1 2142 4.99 2007-02-17 20:24:09.996577
  17220. 19451 253 1 2454 4.99 2007-02-18 18:01:17.996577
  17221. 19452 253 2 2636 4.99 2007-02-19 07:41:32.996577
  17222. 19453 254 1 1285 2.99 2007-02-15 07:01:32.996577
  17223. 19454 254 2 1390 0.99 2007-02-15 14:34:55.996577
  17224. 19455 254 1 2082 2.99 2007-02-17 15:41:58.996577
  17225. 19456 254 1 2138 2.99 2007-02-17 19:56:40.996577
  17226. 19457 254 2 2687 3.99 2007-02-19 11:15:18.996577
  17227. 19458 255 1 1235 2.99 2007-02-15 02:59:54.996577
  17228. 19459 255 1 1420 6.99 2007-02-15 16:24:40.996577
  17229. 19460 255 2 1681 2.99 2007-02-16 10:06:43.996577
  17230. 19461 255 2 3442 2.99 2007-02-21 18:35:17.996577
  17231. 19462 256 1 1555 2.99 2007-02-16 00:45:33.996577
  17232. 19463 256 2 1965 0.99 2007-02-17 07:46:05.996577
  17233. 19464 256 2 1973 4.99 2007-02-17 07:54:41.996577
  17234. 19465 256 2 2230 4.99 2007-02-18 02:19:15.996577
  17235. 19466 256 1 2380 6.99 2007-02-18 13:28:30.996577
  17236. 19467 256 2 2561 4.99 2007-02-19 01:43:18.996577
  17237. 19468 256 1 2839 4.99 2007-02-19 20:35:50.996577
  17238. 19469 257 1 2557 0.99 2007-02-19 01:37:17.996577
  17239. 19470 257 2 3083 4.99 2007-02-20 14:02:13.996577
  17240. 19471 258 1 1743 2.99 2007-02-16 15:06:36.996577
  17241. 19472 258 2 2678 0.99 2007-02-19 10:40:49.996577
  17242. 19473 258 2 2931 8.99 2007-02-20 03:19:11.996577
  17243. 19474 259 1 1641 7.99 2007-02-16 07:14:52.996577
  17244. 19475 259 2 1723 7.99 2007-02-16 13:42:44.996577
  17245. 19476 259 2 1813 2.99 2007-02-16 19:39:26.996577
  17246. 19477 259 2 2375 5.99 2007-02-18 13:15:55.996577
  17247. 19478 260 1 1626 3.99 2007-02-16 06:18:13.996577
  17248. 19479 260 2 2001 2.99 2007-02-17 10:03:35.996577
  17249. 19480 260 2 2040 2.99 2007-02-17 12:47:03.996577
  17250. 19481 260 1 2091 10.99 2007-02-17 16:37:30.996577
  17251. 19482 260 1 2178 0.99 2007-02-17 23:07:01.996577
  17252. 19483 260 1 2823 7.99 2007-02-19 18:58:47.996577
  17253. 19484 260 2 2958 3.99 2007-02-20 05:24:46.996577
  17254. 19485 260 1 3193 0.99 2007-02-20 22:20:56.996577
  17255. 19486 261 1 1760 2.99 2007-02-16 16:17:03.996577
  17256. 19487 261 1 1877 5.99 2007-02-17 01:22:42.996577
  17257. 19488 261 2 1988 8.99 2007-02-17 09:11:00.996577
  17258. 19489 261 2 2072 3.99 2007-02-17 15:01:58.996577
  17259. 19490 261 2 2392 0.99 2007-02-18 14:02:44.996577
  17260. 19491 261 1 3363 0.99 2007-02-21 10:53:33.996577
  17261. 19492 262 1 1563 2.99 2007-02-16 01:14:54.996577
  17262. 19493 262 1 2771 6.99 2007-02-19 16:23:14.996577
  17263. 19494 262 2 2850 8.99 2007-02-19 21:34:54.996577
  17264. 19495 262 1 2915 1.99 2007-02-20 02:25:43.996577
  17265. 19496 263 2 2126 8.99 2007-02-17 19:23:02.996577
  17266. 19497 263 2 3257 1.99 2007-02-21 02:15:45.996577
  17267. 19498 264 2 1165 3.99 2007-02-14 21:44:53.996577
  17268. 19499 264 1 1206 4.99 2007-02-15 00:55:33.996577
  17269. 19500 264 1 3028 0.99 2007-02-20 10:19:18.996577
  17270. 19501 264 1 3403 3.99 2007-02-21 14:23:32.996577
  17271. 19502 265 2 2027 7.99 2007-02-17 11:35:22.996577
  17272. 19503 265 2 2562 4.99 2007-02-19 01:43:31.996577
  17273. 19504 265 1 2598 2.99 2007-02-19 04:28:23.996577
  17274. 19505 266 2 1280 5.99 2007-02-15 06:44:32.996577
  17275. 19506 266 2 2065 4.99 2007-02-17 14:32:12.996577
  17276. 19507 266 2 3002 4.99 2007-02-20 08:24:38.996577
  17277. 19508 266 1 3059 4.99 2007-02-20 12:07:07.996577
  17278. 19509 267 2 1257 4.99 2007-02-15 04:44:02.996577
  17279. 19510 267 2 1349 4.99 2007-02-15 11:17:28.996577
  17280. 19511 267 2 2265 2.99 2007-02-18 04:31:53.996577
  17281. 19512 267 2 2578 7.99 2007-02-19 03:08:32.996577
  17282. 19513 267 1 2582 6.99 2007-02-19 03:24:53.996577
  17283. 19514 267 2 2699 2.99 2007-02-19 11:57:54.996577
  17284. 19515 267 2 2754 4.99 2007-02-19 15:24:25.996577
  17285. 19516 267 1 2877 1.99 2007-02-19 23:35:42.996577
  17286. 19517 267 2 3090 0.99 2007-02-20 14:28:45.996577
  17287. 19518 16 1 4591 1.99 2007-02-18 03:24:38.996577
  17288. 19519 267 1 10343 2.99 2007-03-01 03:44:13.996577
  17289. 19520 267 2 11373 0.99 2007-03-02 16:42:38.996577
  17290. 19521 267 1 11690 6.99 2007-03-17 05:12:48.996577
  17291. 19522 267 1 12320 4.99 2007-03-18 04:55:17.996577
  17292. 19523 267 1 12979 4.99 2007-03-19 05:29:01.996577
  17293. 19524 267 2 13236 9.99 2007-03-19 14:46:50.996577
  17294. 19525 267 1 14131 5.99 2007-03-21 00:12:06.996577
  17295. 19526 267 2 15020 3.99 2007-03-22 07:22:38.996577
  17296. 19527 267 1 15208 3.99 2007-03-22 15:04:13.996577
  17297. 19528 267 1 15768 0.99 2007-03-23 11:43:13.996577
  17298. 19529 267 1 15903 3.99 2007-03-23 15:59:06.996577
  17299. 19530 268 2 11462 7.99 2007-03-02 20:05:12.996577
  17300. 19531 268 2 11828 6.99 2007-03-17 11:16:54.996577
  17301. 19532 268 2 12007 2.99 2007-03-17 17:39:00.996577
  17302. 19533 268 2 12694 4.99 2007-03-18 18:39:05.996577
  17303. 19534 268 2 13880 5.99 2007-03-20 13:46:46.996577
  17304. 19535 268 2 14249 4.99 2007-03-21 04:06:31.996577
  17305. 19536 268 2 14373 4.99 2007-03-21 08:13:19.996577
  17306. 19537 268 1 14874 0.99 2007-03-22 02:00:31.996577
  17307. 19538 268 2 15183 2.99 2007-03-22 14:18:20.996577
  17308. 19539 269 2 10566 2.99 2007-03-01 11:40:37.996577
  17309. 19540 269 1 10908 4.99 2007-03-02 00:21:32.996577
  17310. 19541 269 1 11014 4.99 2007-03-02 03:40:48.996577
  17311. 19542 269 1 11915 3.99 2007-03-17 14:33:54.996577
  17312. 19543 269 1 12344 4.99 2007-03-18 05:43:45.996577
  17313. 19544 269 2 13142 5.99 2007-03-19 11:10:54.996577
  17314. 19545 269 2 13759 2.99 2007-03-20 09:53:14.996577
  17315. 19546 269 1 14266 4.99 2007-03-21 04:49:17.996577
  17316. 19547 269 2 14693 6.99 2007-03-21 19:12:45.996577
  17317. 19548 269 2 15788 2.99 2007-03-23 12:23:05.996577
  17318. 19549 270 1 10461 7.99 2007-03-01 08:01:19.996577
  17319. 19550 270 2 10579 5.99 2007-03-01 12:16:48.996577
  17320. 19551 270 2 10648 4.99 2007-03-01 14:37:18.996577
  17321. 19552 270 1 11389 2.99 2007-03-02 17:07:38.996577
  17322. 19553 270 1 11810 0.99 2007-03-17 10:25:14.996577
  17323. 19554 270 2 11841 2.99 2007-03-17 11:40:46.996577
  17324. 19555 270 1 11917 2.99 2007-03-17 14:36:43.996577
  17325. 19556 270 1 12192 2.99 2007-03-18 00:30:06.996577
  17326. 19557 270 1 12442 2.99 2007-03-18 09:18:33.996577
  17327. 19558 270 2 13945 1.99 2007-03-20 16:12:22.996577
  17328. 19559 270 1 14618 0.99 2007-03-21 16:38:17.996577
  17329. 19560 270 2 15620 6.99 2007-03-23 05:38:48.996577
  17330. 19561 271 2 10310 4.99 2007-03-01 02:53:13.996577
  17331. 19562 271 1 10599 3.99 2007-03-01 12:52:24.996577
  17332. 19563 271 1 11431 2.99 2007-03-02 18:33:42.996577
  17333. 19564 271 1 12219 4.99 2007-03-18 01:18:20.996577
  17334. 19565 271 2 14234 0.99 2007-03-21 03:35:38.996577
  17335. 19566 271 2 14355 4.99 2007-03-21 07:36:55.996577
  17336. 19567 271 1 15244 2.99 2007-03-22 16:17:08.996577
  17337. 19568 272 1 10736 2.99 2007-03-01 17:58:47.996577
  17338. 19569 272 2 11003 2.99 2007-03-02 03:31:31.996577
  17339. 19570 272 2 11597 8.99 2007-03-17 01:31:22.996577
  17340. 19571 272 1 11881 0.99 2007-03-17 13:00:22.996577
  17341. 19572 272 2 12006 6.99 2007-03-17 17:37:38.996577
  17342. 19573 272 2 13274 2.99 2007-03-19 16:18:29.996577
  17343. 19574 272 1 13903 2.99 2007-03-20 14:36:21.996577
  17344. 19575 273 1 10272 8.99 2007-03-01 01:43:00.996577
  17345. 19576 273 1 10753 3.99 2007-03-01 18:37:50.996577
  17346. 19577 273 1 10768 6.99 2007-03-01 19:07:58.996577
  17347. 19578 273 1 11282 4.99 2007-03-02 13:03:29.996577
  17348. 19579 273 2 11509 4.99 2007-03-16 21:58:19.996577
  17349. 19580 273 1 12692 0.99 2007-03-18 18:37:45.996577
  17350. 19581 273 2 13738 4.99 2007-03-20 09:11:08.996577
  17351. 19582 273 1 13955 5.99 2007-03-20 16:33:38.996577
  17352. 19583 273 2 14092 4.99 2007-03-20 22:42:58.996577
  17353. 19584 273 2 14558 2.99 2007-03-21 14:39:16.996577
  17354. 19585 273 2 14911 2.99 2007-03-22 03:20:08.996577
  17355. 19586 273 2 15372 2.99 2007-03-22 20:28:17.996577
  17356. 19587 273 1 15760 6.99 2007-03-23 11:18:26.996577
  17357. 19588 274 1 10790 1.99 2007-03-01 20:07:03.996577
  17358. 19589 274 2 10855 0.99 2007-03-01 22:35:03.996577
  17359. 19590 274 1 11058 3.99 2007-03-02 05:07:10.996577
  17360. 19591 274 2 11363 2.99 2007-03-02 16:17:05.996577
  17361. 19592 274 1 12321 3.99 2007-03-18 04:55:31.996577
  17362. 19593 274 1 13103 2.99 2007-03-19 09:34:17.996577
  17363. 19594 274 2 13129 8.99 2007-03-19 10:33:30.996577
  17364. 19595 274 1 13549 8.99 2007-03-20 02:27:07.996577
  17365. 19596 274 1 14012 0.99 2007-03-20 19:10:38.996577
  17366. 19597 274 1 14066 7.99 2007-03-20 21:14:24.996577
  17367. 19598 274 2 14164 7.99 2007-03-21 01:26:28.996577
  17368. 19599 274 1 14388 4.99 2007-03-21 08:43:39.996577
  17369. 19600 274 2 15143 2.99 2007-03-22 12:14:50.996577
  17370. 19601 274 1 15260 2.99 2007-03-22 16:52:42.996577
  17371. 19602 274 2 15328 2.99 2007-03-22 19:00:04.996577
  17372. 19603 274 2 15819 3.99 2007-03-23 13:30:20.996577
  17373. 19604 275 1 10479 6.99 2007-03-01 08:39:51.996577
  17374. 19605 275 2 11309 1.99 2007-03-02 14:19:21.996577
  17375. 19606 275 1 11610 4.99 2007-03-17 02:12:03.996577
  17376. 19607 275 2 12589 5.99 2007-03-18 14:34:57.996577
  17377. 19608 275 1 12606 1.99 2007-03-18 15:30:47.996577
  17378. 19609 275 1 13037 3.99 2007-03-19 07:22:23.996577
  17379. 19610 275 2 13860 2.99 2007-03-20 13:23:35.996577
  17380. 19611 275 2 13865 1.99 2007-03-20 13:32:35.996577
  17381. 19612 275 2 13902 0.99 2007-03-20 14:35:34.996577
  17382. 19613 275 2 14063 0.99 2007-03-20 21:05:06.996577
  17383. 19614 275 1 14187 5.99 2007-03-21 02:00:29.996577
  17384. 19615 275 1 14296 2.99 2007-03-21 05:41:49.996577
  17385. 19616 275 2 14483 5.99 2007-03-21 12:12:25.996577
  17386. 19617 275 2 14727 4.99 2007-03-21 20:41:11.996577
  17387. 19618 275 2 15269 2.99 2007-03-22 17:08:10.996577
  17388. 19619 275 2 15496 3.99 2007-03-23 00:58:49.996577
  17389. 19620 276 2 10691 0.99 2007-03-01 16:38:19.996577
  17390. 19621 276 1 10763 2.99 2007-03-01 19:00:53.996577
  17391. 19622 276 2 11085 2.99 2007-03-02 06:05:10.996577
  17392. 19623 276 1 11636 4.99 2007-03-17 03:04:57.996577
  17393. 19624 276 2 11961 3.99 2007-03-17 15:56:27.996577
  17394. 19625 276 2 12178 5.99 2007-03-17 23:45:58.996577
  17395. 19626 276 2 12251 4.99 2007-03-18 02:27:28.996577
  17396. 19627 276 1 12650 4.99 2007-03-18 17:01:46.996577
  17397. 19628 276 1 14000 4.99 2007-03-20 18:34:31.996577
  17398. 19629 276 2 15718 2.99 2007-03-23 09:33:43.996577
  17399. 19630 276 1 15769 3.99 2007-03-23 11:44:41.996577
  17400. 19631 276 2 15923 4.99 2007-03-23 16:36:45.996577
  17401. 19632 277 2 11074 3.99 2007-03-02 05:50:09.996577
  17402. 19633 277 2 11162 4.99 2007-03-02 08:36:20.996577
  17403. 19634 277 2 11574 0.99 2007-03-17 00:06:45.996577
  17404. 19635 277 2 12149 3.99 2007-03-17 22:42:17.996577
  17405. 19636 277 1 12458 5.99 2007-03-18 09:51:19.996577
  17406. 19637 277 1 13122 4.99 2007-03-19 10:22:15.996577
  17407. 19638 277 2 13526 4.99 2007-03-20 01:27:08.996577
  17408. 19639 277 1 13714 4.99 2007-03-20 08:09:35.996577
  17409. 19640 277 2 14227 4.99 2007-03-21 03:24:57.996577
  17410. 19641 277 2 14745 4.99 2007-03-21 21:21:27.996577
  17411. 19642 277 1 15008 10.99 2007-03-22 06:52:58.996577
  17412. 19643 277 1 15345 5.99 2007-03-22 19:34:16.996577
  17413. 19644 278 1 10649 2.99 2007-03-01 14:40:06.996577
  17414. 19645 278 1 10731 2.99 2007-03-01 17:50:14.996577
  17415. 19646 278 2 10849 3.99 2007-03-01 22:19:26.996577
  17416. 19647 278 1 11095 5.99 2007-03-02 06:31:46.996577
  17417. 19648 278 2 11531 0.99 2007-03-16 22:58:30.996577
  17418. 19649 278 1 12787 0.99 2007-03-18 22:36:24.996577
  17419. 19650 278 1 13896 0.99 2007-03-20 14:28:22.996577
  17420. 19651 278 2 13976 0.99 2007-03-20 17:30:42.996577
  17421. 19652 278 1 14268 2.99 2007-03-21 04:49:50.996577
  17422. 19653 278 2 14803 0.99 2007-03-21 23:17:36.996577
  17423. 19654 278 1 14986 4.99 2007-03-22 06:05:50.996577
  17424. 19655 278 1 16019 4.99 2007-03-23 19:59:11.996577
  17425. 19656 279 2 11250 6.99 2007-03-02 12:04:08.996577
  17426. 19657 279 1 11515 2.99 2007-03-16 22:23:00.996577
  17427. 19658 279 1 11703 4.99 2007-03-17 05:47:55.996577
  17428. 19659 279 2 12935 2.99 2007-03-19 03:48:51.996577
  17429. 19660 279 1 12949 4.99 2007-03-19 04:24:18.996577
  17430. 19661 279 1 13105 7.99 2007-03-19 09:34:42.996577
  17431. 19662 279 1 13233 2.99 2007-03-19 14:43:07.996577
  17432. 19663 279 2 13588 4.99 2007-03-20 04:15:37.996577
  17433. 19664 279 2 14206 2.99 2007-03-21 02:27:52.996577
  17434. 19665 279 1 14714 3.99 2007-03-21 19:56:09.996577
  17435. 19666 279 1 14779 5.99 2007-03-21 22:29:22.996577
  17436. 19667 279 1 14789 4.99 2007-03-21 22:58:05.996577
  17437. 19668 279 2 15580 6.99 2007-03-23 04:07:32.996577
  17438. 19669 279 1 15606 2.99 2007-03-23 05:18:53.996577
  17439. 19670 280 1 10847 9.99 2007-03-01 22:17:59.996577
  17440. 19671 280 1 11366 4.99 2007-03-02 16:29:51.996577
  17441. 19672 280 1 11517 2.99 2007-03-16 22:24:54.996577
  17442. 19673 280 1 12053 4.99 2007-03-17 19:25:53.996577
  17443. 19674 280 1 12849 5.99 2007-03-19 00:34:03.996577
  17444. 19675 280 2 13231 9.99 2007-03-19 14:41:15.996577
  17445. 19676 280 1 13321 4.99 2007-03-19 18:09:03.996577
  17446. 19677 280 1 13667 4.99 2007-03-20 06:54:00.996577
  17447. 19678 280 2 15036 2.99 2007-03-22 08:04:26.996577
  17448. 19679 280 1 15312 4.99 2007-03-22 18:26:41.996577
  17449. 19680 280 2 15554 5.99 2007-03-23 03:16:38.996577
  17450. 19681 280 2 15950 5.99 2007-03-23 17:38:05.996577
  17451. 19682 281 1 13641 2.99 2007-03-20 06:03:08.996577
  17452. 19683 281 1 14196 1.99 2007-03-21 02:09:06.996577
  17453. 19684 282 2 11226 2.99 2007-03-02 11:15:56.996577
  17454. 19685 282 1 13278 2.99 2007-03-19 16:26:19.996577
  17455. 19686 282 2 13749 2.99 2007-03-20 09:29:03.996577
  17456. 19687 282 2 15543 4.99 2007-03-23 02:44:07.996577
  17457. 19688 283 1 11637 0.99 2007-03-17 03:05:05.996577
  17458. 19689 283 2 11846 2.99 2007-03-17 11:46:55.996577
  17459. 19690 283 2 11966 0.99 2007-03-17 16:08:30.996577
  17460. 19691 283 1 12290 6.99 2007-03-18 03:36:29.996577
  17461. 19692 283 1 13229 2.99 2007-03-19 14:36:59.996577
  17462. 19693 283 1 15837 2.99 2007-03-23 13:58:07.996577
  17463. 19694 284 1 10396 7.99 2007-03-01 05:37:12.996577
  17464. 19695 284 1 10535 4.99 2007-03-01 10:49:39.996577
  17465. 19696 284 2 12162 3.99 2007-03-17 23:12:56.996577
  17466. 19697 284 1 14007 5.99 2007-03-20 18:51:13.996577
  17467. 19698 284 1 14648 4.99 2007-03-21 17:46:27.996577
  17468. 19699 284 2 14746 4.99 2007-03-21 21:22:28.996577
  17469. 19700 284 1 14921 4.99 2007-03-22 03:40:50.996577
  17470. 19701 284 2 15135 3.99 2007-03-22 11:47:45.996577
  17471. 19702 285 1 10493 5.99 2007-03-01 09:11:38.996577
  17472. 19703 285 2 10628 2.99 2007-03-01 14:01:45.996577
  17473. 19704 285 1 10641 4.99 2007-03-01 14:13:23.996577
  17474. 19705 285 1 12027 8.99 2007-03-17 18:29:38.996577
  17475. 19706 285 1 12444 0.99 2007-03-18 09:21:38.996577
  17476. 19707 285 1 12449 0.99 2007-03-18 09:31:30.996577
  17477. 19708 285 2 12687 9.99 2007-03-18 18:26:05.996577
  17478. 19709 285 2 13102 7.99 2007-03-19 09:30:29.996577
  17479. 19710 285 2 15251 0.99 2007-03-22 16:32:23.996577
  17480. 19711 285 1 15489 4.99 2007-03-23 00:35:07.996577
  17481. 19712 286 2 11670 0.99 2007-03-17 04:17:25.996577
  17482. 19713 286 2 12595 0.99 2007-03-18 14:55:34.996577
  17483. 19714 286 1 12656 0.99 2007-03-18 17:27:01.996577
  17484. 19715 286 2 13635 5.99 2007-03-20 05:46:01.996577
  17485. 19716 286 1 13975 4.99 2007-03-20 17:26:49.996577
  17486. 19717 286 1 14905 0.99 2007-03-22 03:02:48.996577
  17487. 19718 286 2 15629 4.99 2007-03-23 05:56:48.996577
  17488. 19719 287 2 10574 2.99 2007-03-01 12:05:17.996577
  17489. 19720 287 2 10807 4.99 2007-03-01 20:54:36.996577
  17490. 19721 287 2 11106 4.99 2007-03-02 06:46:04.996577
  17491. 19722 287 1 11716 4.99 2007-03-17 06:09:21.996577
  17492. 19723 287 2 12861 2.99 2007-03-19 00:58:50.996577
  17493. 19724 287 2 14715 6.99 2007-03-21 19:56:44.996577
  17494. 19725 287 2 15076 1.99 2007-03-22 09:34:00.996577
  17495. 19726 287 1 15084 4.99 2007-03-22 09:46:25.996577
  17496. 19727 287 2 15127 0.99 2007-03-22 11:24:55.996577
  17497. 19728 287 1 15614 2.99 2007-03-23 05:33:41.996577
  17498. 19729 288 1 10927 9.99 2007-03-02 00:59:41.996577
  17499. 19730 288 2 11952 2.99 2007-03-17 15:43:23.996577
  17500. 19731 288 1 12134 1.99 2007-03-17 22:18:09.996577
  17501. 19732 288 1 13219 2.99 2007-03-19 14:08:54.996577
  17502. 19733 288 1 13227 0.99 2007-03-19 14:34:04.996577
  17503. 19734 288 2 13363 2.99 2007-03-19 19:36:25.996577
  17504. 19735 288 2 14113 0.99 2007-03-20 23:31:56.996577
  17505. 19736 288 2 14756 0.99 2007-03-21 21:49:49.996577
  17506. 19737 288 2 15058 2.99 2007-03-22 08:49:21.996577
  17507. 19738 288 1 15119 2.99 2007-03-22 11:09:59.996577
  17508. 19739 289 2 10297 7.99 2007-03-01 02:33:30.996577
  17509. 19740 289 1 12158 1.99 2007-03-17 23:02:46.996577
  17510. 19741 289 1 12170 0.99 2007-03-17 23:34:36.996577
  17511. 19742 289 2 12558 7.99 2007-03-18 13:21:01.996577
  17512. 19743 289 2 13165 0.99 2007-03-19 12:02:36.996577
  17513. 19744 289 2 13211 0.99 2007-03-19 13:52:07.996577
  17514. 19745 289 2 13256 9.99 2007-03-19 15:22:38.996577
  17515. 19746 289 2 13336 5.99 2007-03-19 18:31:48.996577
  17516. 19747 289 2 13891 6.99 2007-03-20 14:10:31.996577
  17517. 19748 289 1 14087 0.99 2007-03-20 22:22:06.996577
  17518. 19749 289 2 14729 4.99 2007-03-21 20:45:23.996577
  17519. 19750 289 2 14917 4.99 2007-03-22 03:32:25.996577
  17520. 19751 290 1 10901 2.99 2007-03-02 00:04:10.996577
  17521. 19752 290 1 11596 6.99 2007-03-17 01:22:21.996577
  17522. 19753 290 2 12193 3.99 2007-03-18 00:32:25.996577
  17523. 19754 290 2 12778 4.99 2007-03-18 22:08:49.996577
  17524. 19755 290 2 13190 1.99 2007-03-19 12:56:25.996577
  17525. 19756 290 1 13367 2.99 2007-03-19 19:47:53.996577
  17526. 19757 290 2 13687 2.99 2007-03-20 07:26:17.996577
  17527. 19758 291 1 10463 4.99 2007-03-01 08:08:09.996577
  17528. 19759 291 2 11145 0.99 2007-03-02 08:11:50.996577
  17529. 19760 291 1 13665 5.99 2007-03-20 06:47:46.996577
  17530. 19761 291 2 14241 4.99 2007-03-21 03:53:21.996577
  17531. 19762 291 2 15663 3.99 2007-03-23 07:22:52.996577
  17532. 19763 292 1 11193 4.99 2007-03-02 09:59:59.996577
  17533. 19764 292 1 12739 10.99 2007-03-18 20:43:44.996577
  17534. 19765 292 1 13715 2.99 2007-03-20 08:11:32.996577
  17535. 19766 292 1 14499 0.99 2007-03-21 12:39:45.996577
  17536. 19767 292 2 14845 4.99 2007-03-22 00:41:10.996577
  17537. 19768 292 1 15117 2.99 2007-03-22 11:06:46.996577
  17538. 19769 293 2 11131 1.99 2007-03-02 07:38:30.996577
  17539. 19770 293 1 11576 2.99 2007-03-17 00:21:46.996577
  17540. 19771 293 2 13013 6.99 2007-03-19 06:24:17.996577
  17541. 19772 293 1 13029 2.99 2007-03-19 06:56:30.996577
  17542. 19773 293 2 13504 5.99 2007-03-20 00:30:14.996577
  17543. 19774 293 1 13817 4.99 2007-03-20 11:43:56.996577
  17544. 19775 293 1 14248 6.99 2007-03-21 04:04:23.996577
  17545. 19776 293 1 15258 4.99 2007-03-22 16:51:10.996577
  17546. 19777 293 1 15402 8.99 2007-03-22 21:46:07.996577
  17547. 19778 293 1 15508 7.99 2007-03-23 01:17:30.996577
  17548. 19779 293 2 15675 5.99 2007-03-23 07:47:18.996577
  17549. 19780 294 1 10551 6.99 2007-03-01 11:17:21.996577
  17550. 19781 294 2 10600 2.99 2007-03-01 12:53:47.996577
  17551. 19782 294 2 10642 4.99 2007-03-01 14:13:37.996577
  17552. 19783 294 2 11071 2.99 2007-03-02 05:39:19.996577
  17553. 19784 294 1 11390 2.99 2007-03-02 17:07:42.996577
  17554. 19785 294 2 11875 4.99 2007-03-17 12:45:14.996577
  17555. 19786 294 2 11981 2.99 2007-03-17 16:39:06.996577
  17556. 19787 294 1 12278 5.99 2007-03-18 03:15:11.996577
  17557. 19788 294 1 14474 2.99 2007-03-21 11:51:14.996577
  17558. 19789 294 2 14630 7.99 2007-03-21 17:12:10.996577
  17559. 19790 294 1 15839 5.99 2007-03-23 14:03:12.996577
  17560. 19791 295 1 10349 3.99 2007-03-01 03:55:39.996577
  17561. 19792 295 2 11083 4.99 2007-03-02 06:00:27.996577
  17562. 19793 295 2 11913 5.99 2007-03-17 14:21:43.996577
  17563. 19794 295 2 12041 4.99 2007-03-17 19:02:59.996577
  17564. 19795 295 1 12383 0.99 2007-03-18 07:04:29.996577
  17565. 19796 295 1 14264 0.99 2007-03-21 04:46:48.996577
  17566. 19797 295 1 14387 6.99 2007-03-21 08:38:27.996577
  17567. 19798 295 1 14514 6.99 2007-03-21 13:20:18.996577
  17568. 19799 296 2 11571 4.99 2007-03-17 00:06:17.996577
  17569. 19800 296 2 11825 4.99 2007-03-17 11:11:56.996577
  17570. 19801 296 2 12689 3.99 2007-03-18 18:35:00.996577
  17571. 19802 296 2 13471 2.99 2007-03-19 23:30:52.996577
  17572. 19803 296 1 13702 2.99 2007-03-20 07:55:46.996577
  17573. 19804 296 1 13819 4.99 2007-03-20 11:51:41.996577
  17574. 19805 296 1 13991 1.99 2007-03-20 17:58:10.996577
  17575. 19806 296 2 14571 7.99 2007-03-21 15:08:52.996577
  17576. 19807 296 2 15023 2.99 2007-03-22 07:25:14.996577
  17577. 19808 296 2 15866 7.99 2007-03-23 14:47:28.996577
  17578. 19809 297 2 10264 4.99 2007-03-01 01:31:38.996577
  17579. 19810 297 2 11269 0.99 2007-03-02 12:40:07.996577
  17580. 19811 297 2 11413 0.99 2007-03-02 18:03:45.996577
  17581. 19812 297 2 11585 4.99 2007-03-17 00:43:02.996577
  17582. 19813 297 1 11780 2.99 2007-03-17 09:02:50.996577
  17583. 19814 297 1 11784 0.99 2007-03-17 09:16:31.996577
  17584. 19815 297 1 12472 10.99 2007-03-18 10:27:14.996577
  17585. 19816 297 1 13330 2.99 2007-03-19 18:27:47.996577
  17586. 19817 297 2 13721 4.99 2007-03-20 08:31:25.996577
  17587. 19818 297 1 13888 1.99 2007-03-20 14:08:08.996577
  17588. 19819 297 1 14403 5.99 2007-03-21 09:09:00.996577
  17589. 19820 297 2 15582 2.99 2007-03-23 04:14:10.996577
  17590. 19821 297 1 15711 4.99 2007-03-23 09:11:26.996577
  17591. 19822 298 2 10248 6.99 2007-03-01 01:03:54.996577
  17592. 19823 298 1 11070 0.99 2007-03-02 05:39:05.996577
  17593. 19824 298 2 11288 6.99 2007-03-02 13:22:34.996577
  17594. 19825 298 2 12076 0.99 2007-03-17 20:26:45.996577
  17595. 19826 298 1 12765 8.99 2007-03-18 21:50:16.996577
  17596. 19827 298 1 13172 0.99 2007-03-19 12:17:33.996577
  17597. 19828 298 1 13244 4.99 2007-03-19 15:11:30.996577
  17598. 19829 298 2 14473 0.99 2007-03-21 11:47:29.996577
  17599. 19830 298 1 15245 3.99 2007-03-22 16:18:01.996577
  17600. 19831 298 2 15262 4.99 2007-03-22 16:53:47.996577
  17601. 19832 298 1 15643 4.99 2007-03-23 06:41:52.996577
  17602. 19833 299 2 10440 2.99 2007-03-01 07:22:58.996577
  17603. 19834 299 1 11629 6.99 2007-03-17 02:55:50.996577
  17604. 19835 299 1 11746 5.99 2007-03-17 07:31:50.996577
  17605. 19836 299 1 11998 0.99 2007-03-17 17:14:47.996577
  17606. 19837 299 1 13069 4.99 2007-03-19 08:23:46.996577
  17607. 19838 299 2 14208 0.99 2007-03-21 02:37:44.996577
  17608. 19839 299 1 14548 3.99 2007-03-21 14:22:18.996577
  17609. 19840 299 2 14889 4.99 2007-03-22 02:38:36.996577
  17610. 19841 299 2 14898 6.99 2007-03-22 02:55:00.996577
  17611. 19842 300 1 10977 4.99 2007-03-02 02:40:43.996577
  17612. 19843 300 2 12484 2.99 2007-03-18 11:08:03.996577
  17613. 19844 300 2 12644 5.99 2007-03-18 16:50:53.996577
  17614. 19845 300 2 13257 3.99 2007-03-19 15:29:46.996577
  17615. 19846 300 1 13296 0.99 2007-03-19 17:12:19.996577
  17616. 19847 300 2 13499 6.99 2007-03-20 00:20:56.996577
  17617. 19848 300 1 13717 5.99 2007-03-20 08:19:18.996577
  17618. 19849 300 1 14674 7.99 2007-03-21 18:30:00.996577
  17619. 19850 300 1 14709 9.99 2007-03-21 19:36:25.996577
  17620. 19851 300 2 15051 2.99 2007-03-22 08:37:16.996577
  17621. 19852 300 2 15811 5.99 2007-03-23 13:12:12.996577
  17622. 19853 301 1 10883 0.99 2007-03-01 23:15:45.996577
  17623. 19854 301 2 13183 5.99 2007-03-19 12:37:52.996577
  17624. 19855 301 2 13633 2.99 2007-03-20 05:42:13.996577
  17625. 19856 301 1 15201 10.99 2007-03-22 14:53:08.996577
  17626. 19857 301 1 15268 1.99 2007-03-22 17:07:37.996577
  17627. 19858 302 2 10329 0.99 2007-03-01 03:24:39.996577
  17628. 19859 302 1 12126 7.99 2007-03-17 21:53:47.996577
  17629. 19860 302 2 12516 4.99 2007-03-18 12:08:19.996577
  17630. 19861 302 1 12903 2.99 2007-03-19 02:38:04.996577
  17631. 19862 302 1 13916 2.99 2007-03-20 15:11:28.996577
  17632. 19863 302 1 14120 4.99 2007-03-20 23:53:26.996577
  17633. 19864 302 2 14247 3.99 2007-03-21 04:03:43.996577
  17634. 19865 302 2 15578 2.99 2007-03-23 04:05:39.996577
  17635. 19866 302 1 15622 5.99 2007-03-23 05:50:28.996577
  17636. 19867 302 2 15734 0.99 2007-03-23 10:08:34.996577
  17637. 19868 302 2 15987 6.99 2007-03-23 18:50:43.996577
  17638. 19869 303 1 11253 4.99 2007-03-02 12:11:10.996577
  17639. 19870 303 2 11673 2.99 2007-03-17 04:22:41.996577
  17640. 19871 303 2 11993 2.99 2007-03-17 16:56:15.996577
  17641. 19872 303 2 12117 0.99 2007-03-17 21:39:38.996577
  17642. 19873 303 1 12365 0.99 2007-03-18 06:23:35.996577
  17643. 19874 303 2 12473 2.99 2007-03-18 10:28:10.996577
  17644. 19875 303 1 14750 5.99 2007-03-21 21:37:58.996577
  17645. 19876 303 2 14795 4.99 2007-03-21 23:08:48.996577
  17646. 19877 303 1 15511 3.99 2007-03-23 01:24:08.996577
  17647. 19878 304 1 10631 0.99 2007-03-01 14:03:40.996577
  17648. 19879 304 2 11983 4.99 2007-03-17 16:42:21.996577
  17649. 19880 304 1 12540 5.99 2007-03-18 12:45:56.996577
  17650. 19881 304 2 13911 3.99 2007-03-20 14:59:59.996577
  17651. 19882 304 1 14023 0.99 2007-03-20 19:38:58.996577
  17652. 19883 304 1 14899 4.99 2007-03-22 02:55:04.996577
  17653. 19884 304 1 14945 4.99 2007-03-22 04:34:04.996577
  17654. 19885 305 2 10426 4.99 2007-03-01 06:54:34.996577
  17655. 19886 305 2 10929 4.99 2007-03-02 01:04:10.996577
  17656. 19887 305 1 10981 2.99 2007-03-02 02:46:19.996577
  17657. 19888 305 2 11035 5.99 2007-03-02 04:24:05.996577
  17658. 19889 305 2 11809 3.99 2007-03-17 10:20:05.996577
  17659. 19890 305 2 12592 3.99 2007-03-18 14:46:16.996577
  17660. 19891 305 2 12846 0.99 2007-03-19 00:31:52.996577
  17661. 19892 305 1 13782 4.99 2007-03-20 10:37:52.996577
  17662. 19893 305 2 15417 2.99 2007-03-22 22:22:30.996577
  17663. 19894 305 1 15612 6.99 2007-03-23 05:27:33.996577
  17664. 19895 306 2 10893 5.99 2007-03-01 23:40:39.996577
  17665. 19896 306 2 11142 4.99 2007-03-02 07:58:37.996577
  17666. 19897 306 1 11440 0.99 2007-03-02 18:52:28.996577
  17667. 19898 306 2 11674 6.99 2007-03-17 04:24:53.996577
  17668. 19899 306 2 11776 0.99 2007-03-17 08:55:45.996577
  17669. 19900 306 1 12225 7.99 2007-03-18 01:28:37.996577
  17670. 19901 306 1 12989 2.99 2007-03-19 05:47:30.996577
  17671. 19902 306 1 13686 4.99 2007-03-20 07:25:54.996577
  17672. 19903 306 2 13725 5.99 2007-03-20 08:36:53.996577
  17673. 19904 306 1 13873 0.99 2007-03-20 13:39:37.996577
  17674. 19905 306 1 13996 4.99 2007-03-20 18:14:09.996577
  17675. 19906 306 1 15457 2.99 2007-03-22 23:36:03.996577
  17676. 19907 306 2 15868 7.99 2007-03-23 14:47:40.996577
  17677. 19908 307 1 10374 0.99 2007-03-01 04:53:53.996577
  17678. 19909 307 1 10745 2.99 2007-03-01 18:25:32.996577
  17679. 19910 307 1 11491 7.99 2007-03-02 21:13:16.996577
  17680. 19911 307 2 12391 4.99 2007-03-18 07:21:19.996577
  17681. 19912 307 2 13365 6.99 2007-03-19 19:41:03.996577
  17682. 19913 307 1 14231 0.99 2007-03-21 03:33:00.996577
  17683. 19914 307 2 15515 4.99 2007-03-23 01:32:19.996577
  17684. 19915 308 1 10571 2.99 2007-03-01 11:53:56.996577
  17685. 19916 308 2 10797 0.99 2007-03-01 20:31:17.996577
  17686. 19917 308 1 10819 4.99 2007-03-01 21:21:23.996577
  17687. 19918 308 1 11765 2.99 2007-03-17 08:23:54.996577
  17688. 19919 308 1 11972 4.99 2007-03-17 16:24:12.996577
  17689. 19920 308 2 12567 3.99 2007-03-18 13:43:02.996577
  17690. 19921 308 1 12590 6.99 2007-03-18 14:40:01.996577
  17691. 19922 308 2 12838 6.99 2007-03-19 00:20:16.996577
  17692. 19923 308 1 13843 2.99 2007-03-20 12:58:27.996577
  17693. 19924 308 2 14946 2.99 2007-03-22 04:35:36.996577
  17694. 19925 308 1 15243 4.99 2007-03-22 16:16:54.996577
  17695. 19926 308 2 15493 4.99 2007-03-23 00:49:19.996577
  17696. 19927 308 2 15820 2.99 2007-03-23 13:31:39.996577
  17697. 19928 309 1 10458 2.99 2007-03-01 07:48:14.996577
  17698. 19929 309 1 10728 0.99 2007-03-01 17:43:35.996577
  17699. 19930 309 1 10818 2.99 2007-03-01 21:21:11.996577
  17700. 19931 309 2 11964 6.99 2007-03-17 16:05:29.996577
  17701. 19932 309 2 13021 5.99 2007-03-19 06:36:30.996577
  17702. 19933 309 2 13502 0.99 2007-03-20 00:26:41.996577
  17703. 19934 309 2 13909 4.99 2007-03-20 14:55:02.996577
  17704. 19935 309 2 14846 5.99 2007-03-22 00:42:14.996577
  17705. 19936 309 2 15422 4.99 2007-03-22 22:26:35.996577
  17706. 19937 310 2 11137 2.99 2007-03-02 07:53:57.996577
  17707. 19938 310 2 12500 4.99 2007-03-18 11:34:17.996577
  17708. 19939 310 2 12710 7.99 2007-03-18 19:31:16.996577
  17709. 19940 310 1 12929 4.99 2007-03-19 03:33:49.996577
  17710. 19941 310 1 14972 5.99 2007-03-22 05:21:47.996577
  17711. 19942 311 2 10448 4.99 2007-03-01 07:37:57.996577
  17712. 19943 311 1 12997 2.99 2007-03-19 06:00:12.996577
  17713. 19944 311 2 13310 0.99 2007-03-19 17:33:42.996577
  17714. 19945 311 2 13423 1.99 2007-03-19 21:36:08.996577
  17715. 19946 311 2 14517 4.99 2007-03-21 13:25:29.996577
  17716. 19947 311 2 15826 9.99 2007-03-23 13:43:28.996577
  17717. 19948 311 1 16020 8.99 2007-03-23 20:02:59.996577
  17718. 19949 312 2 10858 2.99 2007-03-01 22:37:05.996577
  17719. 19950 312 2 11248 0.99 2007-03-02 12:04:00.996577
  17720. 19951 312 2 11879 5.99 2007-03-17 12:53:35.996577
  17721. 19952 312 1 12186 2.99 2007-03-18 00:12:02.996577
  17722. 19953 312 1 12945 0.99 2007-03-19 04:20:12.996577
  17723. 19954 312 2 14362 2.99 2007-03-21 07:48:15.996577
  17724. 19955 312 1 14504 3.99 2007-03-21 12:51:27.996577
  17725. 19956 312 1 15100 4.99 2007-03-22 10:23:29.996577
  17726. 19957 312 1 15882 6.99 2007-03-23 15:12:57.996577
  17727. 19958 313 2 10237 5.99 2007-03-01 00:35:58.996577
  17728. 19959 313 2 10933 7.99 2007-03-02 01:19:15.996577
  17729. 19960 313 2 11854 2.99 2007-03-17 12:11:18.996577
  17730. 19961 313 2 12011 2.99 2007-03-17 17:48:10.996577
  17731. 19962 313 2 14250 2.99 2007-03-21 04:08:01.996577
  17732. 19963 313 1 14325 4.99 2007-03-21 06:44:04.996577
  17733. 19964 313 2 15081 2.99 2007-03-22 09:42:57.996577
  17734. 19965 313 1 15340 0.99 2007-03-22 19:24:22.996577
  17735. 19966 313 2 15569 6.99 2007-03-23 03:52:55.996577
  17736. 19967 314 2 11908 3.99 2007-03-17 14:11:35.996577
  17737. 19968 314 1 12434 0.99 2007-03-18 09:06:34.996577
  17738. 19969 314 2 13120 3.99 2007-03-19 10:16:04.996577
  17739. 19970 314 1 13265 2.99 2007-03-19 15:57:26.996577
  17740. 19971 314 2 13553 3.99 2007-03-20 02:35:47.996577
  17741. 19972 314 2 14145 4.99 2007-03-21 00:40:04.996577
  17742. 19973 314 1 14409 4.99 2007-03-21 09:22:01.996577
  17743. 19974 314 2 14682 4.99 2007-03-21 18:54:23.996577
  17744. 19975 314 2 14815 4.99 2007-03-21 23:41:10.996577
  17745. 19976 314 2 14873 5.99 2007-03-22 01:59:32.996577
  17746. 19977 314 2 16021 3.99 2007-03-23 20:06:25.996577
  17747. 19978 315 2 11254 0.99 2007-03-02 12:12:15.996577
  17748. 19979 315 2 12155 2.99 2007-03-17 22:52:56.996577
  17749. 19980 315 1 14106 2.99 2007-03-20 23:14:27.996577
  17750. 19981 315 2 14162 2.99 2007-03-21 01:24:00.996577
  17751. 19982 315 1 15504 6.99 2007-03-23 01:13:47.996577
  17752. 19983 316 1 10438 7.99 2007-03-01 07:21:30.996577
  17753. 19984 316 1 12028 0.99 2007-03-17 18:32:13.996577
  17754. 19985 316 2 12191 0.99 2007-03-18 00:25:37.996577
  17755. 19986 316 2 12823 2.99 2007-03-18 23:44:13.996577
  17756. 19987 316 2 13277 5.99 2007-03-19 16:26:01.996577
  17757. 19988 316 1 14226 2.99 2007-03-21 03:24:03.996577
  17758. 19989 316 2 15840 2.99 2007-03-23 14:03:15.996577
  17759. 19990 317 1 10364 2.99 2007-03-01 04:35:15.996577
  17760. 19991 317 2 12111 2.99 2007-03-17 21:28:21.996577
  17761. 19992 317 2 12138 7.99 2007-03-17 22:24:20.996577
  17762. 19993 317 2 12301 2.99 2007-03-18 04:04:46.996577
  17763. 19994 317 1 13388 4.99 2007-03-19 20:15:15.996577
  17764. 19995 317 1 14032 5.99 2007-03-20 19:55:21.996577
  17765. 19996 317 2 14385 0.99 2007-03-21 08:31:21.996577
  17766. 19997 317 2 14669 2.99 2007-03-21 18:22:32.996577
  17767. 19998 317 1 14791 4.99 2007-03-21 23:04:21.996577
  17768. 19999 317 1 15204 2.99 2007-03-22 14:59:09.996577
  17769. 20000 317 1 15280 4.99 2007-03-22 17:38:18.996577
  17770. 20001 318 1 14276 2.99 2007-03-21 05:02:31.996577
  17771. 20002 319 1 11575 0.99 2007-03-17 00:18:52.996577
  17772. 20003 319 2 11598 0.99 2007-03-17 01:31:33.996577
  17773. 20004 319 1 11955 6.99 2007-03-17 15:50:01.996577
  17774. 20005 319 2 11994 2.99 2007-03-17 16:58:01.996577
  17775. 20006 319 1 12018 4.99 2007-03-17 18:13:12.996577
  17776. 20007 319 2 12424 8.99 2007-03-18 08:45:23.996577
  17777. 20008 319 1 13548 3.99 2007-03-20 02:21:46.996577
  17778. 20009 319 2 14828 4.99 2007-03-22 00:02:31.996577
  17779. 20010 319 2 15396 5.99 2007-03-22 21:36:23.996577
  17780. 20011 320 1 11208 0.99 2007-03-02 10:31:03.996577
  17781. 20012 320 2 11560 2.99 2007-03-16 23:48:56.996577
  17782. 20013 320 2 14171 0.99 2007-03-21 01:29:08.996577
  17783. 20014 320 1 15302 2.99 2007-03-22 18:13:19.996577
  17784. 20015 321 1 11722 2.99 2007-03-17 06:21:29.996577
  17785. 20016 321 1 12033 6.99 2007-03-17 18:43:00.996577
  17786. 20017 321 2 12034 7.99 2007-03-17 18:43:57.996577
  17787. 20018 321 1 12398 4.99 2007-03-18 07:41:50.996577
  17788. 20019 321 2 13623 6.99 2007-03-20 05:18:12.996577
  17789. 20020 321 1 15673 6.99 2007-03-23 07:41:16.996577
  17790. 20021 321 2 15888 5.99 2007-03-23 15:24:40.996577
  17791. 20022 322 2 11120 4.99 2007-03-02 07:15:30.996577
  17792. 20023 322 2 11456 0.99 2007-03-02 19:42:30.996577
  17793. 20024 322 2 13180 4.99 2007-03-19 12:29:04.996577
  17794. 20025 322 1 13650 9.99 2007-03-20 06:17:32.996577
  17795. 20026 322 2 14042 4.99 2007-03-20 20:14:17.996577
  17796. 20027 322 1 15450 0.99 2007-03-22 23:24:27.996577
  17797. 20028 322 2 15703 8.99 2007-03-23 08:52:14.996577
  17798. 20029 323 1 10298 0.99 2007-03-01 02:34:29.996577
  17799. 20030 323 1 10994 3.99 2007-03-02 03:15:19.996577
  17800. 20031 323 2 11548 0.99 2007-03-16 23:28:13.996577
  17801. 20032 323 1 12120 4.99 2007-03-17 21:45:12.996577
  17802. 20033 323 1 12169 2.99 2007-03-17 23:34:20.996577
  17803. 20034 323 1 13140 5.99 2007-03-19 11:04:22.996577
  17804. 20035 323 1 14224 2.99 2007-03-21 03:21:34.996577
  17805. 20036 323 1 14957 3.99 2007-03-22 04:58:00.996577
  17806. 20037 323 1 15387 4.99 2007-03-22 21:17:39.996577
  17807. 20038 323 1 15728 0.99 2007-03-23 09:58:58.996577
  17808. 20039 324 1 11617 2.99 2007-03-17 02:29:06.996577
  17809. 20040 324 1 11771 6.99 2007-03-17 08:45:35.996577
  17810. 20041 324 2 12543 2.99 2007-03-18 12:52:21.996577
  17811. 20042 324 2 13356 0.99 2007-03-19 19:30:47.996577
  17812. 20043 324 1 13386 2.99 2007-03-19 20:12:24.996577
  17813. 20044 324 1 14262 8.99 2007-03-21 04:36:39.996577
  17814. 20045 324 2 14479 7.99 2007-03-21 12:04:20.996577
  17815. 20046 324 1 15263 4.99 2007-03-22 16:55:59.996577
  17816. 20047 325 2 10326 4.99 2007-03-01 03:24:00.996577
  17817. 20048 325 1 10412 0.99 2007-03-01 06:25:42.996577
  17818. 20049 325 2 12097 4.99 2007-03-17 21:03:50.996577
  17819. 20050 325 1 12779 3.99 2007-03-18 22:12:26.996577
  17820. 20051 325 2 13054 4.99 2007-03-19 08:02:28.996577
  17821. 20052 325 2 14452 3.99 2007-03-21 10:51:46.996577
  17822. 20053 325 1 14672 5.99 2007-03-21 18:27:59.996577
  17823. 20054 325 2 15009 0.99 2007-03-22 06:55:53.996577
  17824. 20055 326 2 10720 0.99 2007-03-01 17:32:59.996577
  17825. 20056 326 2 10976 4.99 2007-03-02 02:40:14.996577
  17826. 20057 326 2 11010 0.99 2007-03-02 03:34:53.996577
  17827. 20058 326 2 11428 2.99 2007-03-02 18:31:36.996577
  17828. 20059 326 2 11485 4.99 2007-03-02 21:01:51.996577
  17829. 20060 326 2 12829 2.99 2007-03-19 00:06:44.996577
  17830. 20061 327 1 10371 0.99 2007-03-01 04:48:55.996577
  17831. 20062 327 1 11372 4.99 2007-03-02 16:39:16.996577
  17832. 20063 327 2 11929 6.99 2007-03-17 14:57:17.996577
  17833. 20064 327 1 12016 0.99 2007-03-17 18:01:50.996577
  17834. 20065 327 2 13158 2.99 2007-03-19 11:46:36.996577
  17835. 20066 327 1 13360 4.99 2007-03-19 19:33:37.996577
  17836. 20067 327 1 13448 0.99 2007-03-19 22:41:09.996577
  17837. 20068 327 1 14847 4.99 2007-03-22 00:42:17.996577
  17838. 20069 327 2 15365 3.99 2007-03-22 20:10:43.996577
  17839. 20070 327 1 15386 2.99 2007-03-22 21:09:40.996577
  17840. 20071 327 1 15828 5.99 2007-03-23 13:44:58.996577
  17841. 20072 327 1 15916 9.99 2007-03-23 16:24:27.996577
  17842. 20073 327 2 15969 7.99 2007-03-23 18:19:56.996577
  17843. 20074 328 1 11174 2.99 2007-03-02 09:00:37.996577
  17844. 20075 328 1 12175 4.99 2007-03-17 23:38:43.996577
  17845. 20076 328 2 12825 0.99 2007-03-18 23:52:24.996577
  17846. 20077 328 1 13609 2.99 2007-03-20 04:40:17.996577
  17847. 20078 328 2 13681 7.99 2007-03-20 07:16:03.996577
  17848. 20079 328 1 13907 3.99 2007-03-20 14:45:53.996577
  17849. 20080 328 2 14307 3.99 2007-03-21 06:03:18.996577
  17850. 20081 328 1 14755 3.99 2007-03-21 21:46:34.996577
  17851. 20082 328 2 14939 2.99 2007-03-22 04:22:18.996577
  17852. 20083 328 1 15179 4.99 2007-03-22 14:04:48.996577
  17853. 20084 328 1 15863 0.99 2007-03-23 14:45:35.996577
  17854. 20085 329 1 10473 7.99 2007-03-01 08:24:50.996577
  17855. 20086 329 2 10490 0.99 2007-03-01 09:05:37.996577
  17856. 20087 329 1 11130 2.99 2007-03-02 07:37:25.996577
  17857. 20088 329 2 11169 3.99 2007-03-02 08:48:08.996577
  17858. 20089 329 2 11697 0.99 2007-03-17 05:37:45.996577
  17859. 20090 329 1 12659 6.99 2007-03-18 17:34:15.996577
  17860. 20091 329 1 13627 8.99 2007-03-20 05:27:26.996577
  17861. 20092 329 1 14900 4.99 2007-03-22 02:56:14.996577
  17862. 20093 329 2 15011 4.99 2007-03-22 06:59:33.996577
  17863. 20094 329 1 15308 2.99 2007-03-22 18:22:57.996577
  17864. 20095 330 2 11259 3.99 2007-03-02 12:14:56.996577
  17865. 20096 330 1 12062 2.99 2007-03-17 19:53:13.996577
  17866. 20097 330 1 12394 2.99 2007-03-18 07:33:41.996577
  17867. 20098 330 1 12740 4.99 2007-03-18 20:45:30.996577
  17868. 20099 330 1 12867 0.99 2007-03-19 01:08:37.996577
  17869. 20100 331 1 11052 5.99 2007-03-02 04:54:45.996577
  17870. 20101 331 1 11362 2.99 2007-03-02 16:15:51.996577
  17871. 20102 331 2 12533 4.99 2007-03-18 12:30:06.996577
  17872. 20103 331 1 13795 0.99 2007-03-20 11:00:35.996577
  17873. 20104 331 1 14256 7.99 2007-03-21 04:20:53.996577
  17874. 20105 331 1 14628 1.99 2007-03-21 17:05:50.996577
  17875. 20106 331 1 15339 2.99 2007-03-22 19:20:38.996577
  17876. 20107 331 2 15447 3.99 2007-03-22 23:22:23.996577
  17877. 20108 331 1 15521 2.99 2007-03-23 01:59:17.996577
  17878. 20109 332 1 10307 0.99 2007-03-01 02:50:20.996577
  17879. 20110 332 2 10439 0.99 2007-03-01 07:22:52.996577
  17880. 20111 332 1 11229 5.99 2007-03-02 11:25:03.996577
  17881. 20112 332 2 11564 2.99 2007-03-16 23:56:15.996577
  17882. 20113 332 2 12318 4.99 2007-03-18 04:50:22.996577
  17883. 20114 332 2 13673 2.99 2007-03-20 06:55:56.996577
  17884. 20115 332 2 14783 4.99 2007-03-21 22:50:23.996577
  17885. 20116 332 2 15194 0.99 2007-03-22 14:36:00.996577
  17886. 20117 332 1 15210 3.99 2007-03-22 15:06:02.996577
  17887. 20118 333 2 10844 4.99 2007-03-01 22:15:24.996577
  17888. 20119 333 1 12427 6.99 2007-03-18 08:52:43.996577
  17889. 20120 333 2 12661 0.99 2007-03-18 17:38:36.996577
  17890. 20121 333 1 13579 3.99 2007-03-20 03:50:32.996577
  17891. 20122 333 2 13710 4.99 2007-03-20 08:03:46.996577
  17892. 20123 333 1 14057 4.99 2007-03-20 20:51:25.996577
  17893. 20124 333 1 14740 2.99 2007-03-21 21:03:59.996577
  17894. 20125 333 2 15253 2.99 2007-03-22 16:33:47.996577
  17895. 20126 333 1 15313 4.99 2007-03-22 18:28:08.996577
  17896. 20127 334 1 10408 4.99 2007-03-01 06:10:36.996577
  17897. 20128 334 1 10492 2.99 2007-03-01 09:10:54.996577
  17898. 20129 334 1 10879 1.99 2007-03-01 23:01:46.996577
  17899. 20130 334 2 10997 7.99 2007-03-02 03:17:28.996577
  17900. 20131 334 2 12677 4.99 2007-03-18 18:04:31.996577
  17901. 20132 334 2 13325 4.99 2007-03-19 18:20:28.996577
  17902. 20133 334 1 13876 2.99 2007-03-20 13:43:54.996577
  17903. 20134 334 1 14645 0.99 2007-03-21 17:41:13.996577
  17904. 20135 334 1 14984 7.99 2007-03-22 06:03:57.996577
  17905. 20136 334 2 15548 0.99 2007-03-23 02:54:46.996577
  17906. 20137 334 2 15656 4.99 2007-03-23 07:07:24.996577
  17907. 20138 334 1 15669 3.99 2007-03-23 07:34:43.996577
  17908. 20139 335 2 10606 4.99 2007-03-01 13:07:41.996577
  17909. 20140 335 2 13267 0.99 2007-03-19 16:00:02.996577
  17910. 20141 335 1 13622 1.99 2007-03-20 05:13:58.996577
  17911. 20142 335 1 14014 2.99 2007-03-20 19:15:35.996577
  17912. 20143 335 2 15005 4.99 2007-03-22 06:44:10.996577
  17913. 20144 335 2 15101 0.99 2007-03-22 10:24:28.996577
  17914. 20145 336 2 11743 2.99 2007-03-17 07:17:31.996577
  17915. 20146 336 1 12323 8.99 2007-03-18 05:04:48.996577
  17916. 20147 336 2 12794 0.99 2007-03-18 22:49:03.996577
  17917. 20148 336 2 12926 3.99 2007-03-19 03:28:42.996577
  17918. 20149 336 2 13066 0.99 2007-03-19 08:19:05.996577
  17919. 20150 336 2 13689 4.99 2007-03-20 07:32:56.996577
  17920. 20151 336 1 14295 2.99 2007-03-21 05:37:53.996577
  17921. 20152 336 1 15073 10.99 2007-03-22 09:29:41.996577
  17922. 20153 336 2 15848 2.99 2007-03-23 14:09:38.996577
  17923. 20154 337 1 10664 0.99 2007-03-01 15:19:41.996577
  17924. 20155 337 2 10765 0.99 2007-03-01 19:03:17.996577
  17925. 20156 337 2 11252 2.99 2007-03-02 12:10:39.996577
  17926. 20157 337 1 11734 3.99 2007-03-17 07:02:48.996577
  17927. 20158 337 1 12369 6.99 2007-03-18 06:26:09.996577
  17928. 20159 337 2 13305 6.99 2007-03-19 17:25:31.996577
  17929. 20160 337 1 13678 4.99 2007-03-20 07:06:50.996577
  17930. 20161 337 2 13892 3.99 2007-03-20 14:18:43.996577
  17931. 20162 337 2 14118 5.99 2007-03-20 23:42:03.996577
  17932. 20163 337 2 15241 4.99 2007-03-22 16:16:06.996577
  17933. 20164 337 1 15292 4.99 2007-03-22 17:57:22.996577
  17934. 20165 338 2 10791 2.99 2007-03-01 20:10:18.996577
  17935. 20166 338 1 10897 0.99 2007-03-01 23:52:08.996577
  17936. 20167 338 2 11064 4.99 2007-03-02 05:23:43.996577
  17937. 20168 338 2 11671 4.99 2007-03-17 04:18:47.996577
  17938. 20169 338 2 11719 5.99 2007-03-17 06:14:31.996577
  17939. 20170 338 1 12167 2.99 2007-03-17 23:28:28.996577
  17940. 20171 338 1 13284 3.99 2007-03-19 16:40:57.996577
  17941. 20172 338 1 14619 2.99 2007-03-21 16:38:29.996577
  17942. 20173 338 2 15105 0.99 2007-03-22 10:29:59.996577
  17943. 20174 338 2 15173 6.99 2007-03-22 13:54:55.996577
  17944. 20175 339 2 10338 3.99 2007-03-01 03:31:29.996577
  17945. 20176 339 2 11171 4.99 2007-03-02 08:52:07.996577
  17946. 20177 339 1 11550 2.99 2007-03-16 23:30:32.996577
  17947. 20178 339 2 11582 3.99 2007-03-17 00:32:15.996577
  17948. 20179 339 2 11699 5.99 2007-03-17 05:40:24.996577
  17949. 20180 339 1 12631 0.99 2007-03-18 16:21:17.996577
  17950. 20181 339 1 13199 3.99 2007-03-19 13:21:48.996577
  17951. 20182 339 1 13575 5.99 2007-03-20 03:43:46.996577
  17952. 20183 339 1 13985 0.99 2007-03-20 17:41:32.996577
  17953. 20184 339 1 14636 4.99 2007-03-21 17:27:43.996577
  17954. 20185 339 2 14758 3.99 2007-03-21 21:53:18.996577
  17955. 20186 340 1 10292 2.99 2007-03-01 02:11:06.996577
  17956. 20187 340 1 10667 8.99 2007-03-01 15:26:48.996577
  17957. 20188 340 2 10674 3.99 2007-03-01 15:40:18.996577
  17958. 20189 340 1 10809 0.99 2007-03-01 21:07:53.996577
  17959. 20190 340 1 10995 0.99 2007-03-02 03:16:26.996577
  17960. 20191 340 2 12598 4.99 2007-03-18 15:02:29.996577
  17961. 20192 340 2 12908 1.99 2007-03-19 02:47:31.996577
  17962. 20193 340 2 12940 2.99 2007-03-19 04:06:55.996577
  17963. 20194 340 1 13425 2.99 2007-03-19 21:40:10.996577
  17964. 20195 340 1 14457 4.99 2007-03-21 11:16:04.996577
  17965. 20196 340 2 14718 0.99 2007-03-21 20:07:51.996577
  17966. 20197 340 1 14895 2.99 2007-03-22 02:47:49.996577
  17967. 20198 340 2 15306 2.99 2007-03-22 18:15:02.996577
  17968. 20199 340 1 15378 9.99 2007-03-22 20:53:43.996577
  17969. 20200 341 2 10605 0.99 2007-03-01 13:04:52.996577
  17970. 20201 341 1 11305 6.99 2007-03-02 14:13:21.996577
  17971. 20202 341 1 11723 2.99 2007-03-17 06:24:48.996577
  17972. 20203 341 2 13059 0.99 2007-03-19 08:10:27.996577
  17973. 20204 341 2 13074 8.99 2007-03-19 08:35:19.996577
  17974. 20205 341 2 13806 4.99 2007-03-20 11:22:12.996577
  17975. 20206 341 2 14344 4.99 2007-03-21 07:09:22.996577
  17976. 20207 341 2 15030 0.99 2007-03-22 07:38:47.996577
  17977. 20208 341 2 15938 6.99 2007-03-23 17:11:57.996577
  17978. 20209 342 1 10242 4.99 2007-03-01 00:46:38.996577
  17979. 20210 342 2 11178 2.99 2007-03-02 09:16:36.996577
  17980. 20211 342 2 11446 0.99 2007-03-02 19:02:03.996577
  17981. 20212 342 1 11568 0.99 2007-03-16 23:58:27.996577
  17982. 20213 342 1 12139 6.99 2007-03-17 22:25:39.996577
  17983. 20214 342 1 12404 4.99 2007-03-18 08:05:00.996577
  17984. 20215 342 1 12522 2.99 2007-03-18 12:14:06.996577
  17985. 20216 342 2 12816 4.99 2007-03-18 23:32:31.996577
  17986. 20217 342 2 13368 4.99 2007-03-19 19:48:01.996577
  17987. 20218 342 2 13637 4.99 2007-03-20 05:49:41.996577
  17988. 20219 342 1 13755 2.99 2007-03-20 09:47:19.996577
  17989. 20220 342 2 13827 4.99 2007-03-20 12:15:45.996577
  17990. 20221 342 2 14096 2.99 2007-03-20 22:56:12.996577
  17991. 20222 342 2 14299 0.99 2007-03-21 05:47:23.996577
  17992. 20223 342 2 14683 8.99 2007-03-21 18:56:10.996577
  17993. 20224 342 1 15484 4.99 2007-03-23 00:33:15.996577
  17994. 20225 342 1 15895 3.99 2007-03-23 15:37:57.996577
  17995. 20226 343 1 10822 0.99 2007-03-01 21:22:54.996577
  17996. 20227 343 1 11212 0.99 2007-03-02 10:46:55.996577
  17997. 20228 343 2 11570 2.99 2007-03-17 00:02:58.996577
  17998. 20229 343 2 13279 4.99 2007-03-19 16:30:44.996577
  17999. 20230 343 2 13522 3.99 2007-03-20 01:12:32.996577
  18000. 20231 343 2 13866 0.99 2007-03-20 13:33:55.996577
  18001. 20232 343 2 15973 5.99 2007-03-23 18:33:07.996577
  18002. 20233 344 2 11116 5.99 2007-03-02 07:03:06.996577
  18003. 20234 344 2 12183 5.99 2007-03-18 00:02:39.996577
  18004. 20235 344 2 13014 4.99 2007-03-19 06:24:34.996577
  18005. 20236 344 1 13033 3.99 2007-03-19 07:03:05.996577
  18006. 20237 344 1 14621 0.99 2007-03-21 16:46:25.996577
  18007. 20238 344 2 14624 0.99 2007-03-21 17:01:08.996577
  18008. 20239 344 1 15215 2.99 2007-03-22 15:23:52.996577
  18009. 20240 345 2 10982 4.99 2007-03-02 02:47:37.996577
  18010. 20241 345 1 11865 2.99 2007-03-17 12:32:12.996577
  18011. 20242 345 1 12485 4.99 2007-03-18 11:10:07.996577
  18012. 20243 345 2 12805 4.99 2007-03-18 23:05:00.996577
  18013. 20244 345 1 14702 10.99 2007-03-21 19:28:29.996577
  18014. 20245 345 1 15551 4.99 2007-03-23 02:56:51.996577
  18015. 20246 346 1 10304 5.99 2007-03-01 02:42:38.996577
  18016. 20247 346 2 10389 3.99 2007-03-01 05:15:09.996577
  18017. 20248 346 2 10521 0.99 2007-03-01 10:14:43.996577
  18018. 20249 346 2 11062 4.99 2007-03-02 05:21:20.996577
  18019. 20250 346 1 11375 4.99 2007-03-02 16:43:22.996577
  18020. 20251 346 2 11470 2.99 2007-03-02 20:16:54.996577
  18021. 20252 346 1 14890 5.99 2007-03-22 02:39:15.996577
  18022. 20253 346 2 15459 2.99 2007-03-22 23:38:14.996577
  18023. 20254 346 1 15535 0.99 2007-03-23 02:26:28.996577
  18024. 20255 346 1 15661 8.99 2007-03-23 07:20:29.996577
  18025. 20256 346 2 15825 5.99 2007-03-23 13:39:08.996577
  18026. 20257 346 1 15827 0.99 2007-03-23 13:43:45.996577
  18027. 20258 347 2 11738 8.99 2007-03-17 07:14:21.996577
  18028. 20259 347 1 12195 2.99 2007-03-18 00:36:15.996577
  18029. 20260 347 2 12399 10.99 2007-03-18 07:42:08.996577
  18030. 20261 347 2 13314 5.99 2007-03-19 17:41:09.996577
  18031. 20262 347 2 14894 4.99 2007-03-22 02:45:22.996577
  18032. 20263 347 2 14958 2.99 2007-03-22 04:58:36.996577
  18033. 20264 347 2 15426 2.99 2007-03-22 22:35:45.996577
  18034. 20265 347 2 15555 4.99 2007-03-23 03:20:18.996577
  18035. 20266 348 1 10769 2.99 2007-03-01 19:11:28.996577
  18036. 20267 348 2 10972 2.99 2007-03-02 02:36:51.996577
  18037. 20268 348 1 11262 2.99 2007-03-02 12:27:21.996577
  18038. 20269 348 1 11429 7.99 2007-03-02 18:32:18.996577
  18039. 20270 348 2 12564 2.99 2007-03-18 13:40:01.996577
  18040. 20271 348 2 12884 5.99 2007-03-19 02:02:30.996577
  18041. 20272 348 2 12937 4.99 2007-03-19 03:53:56.996577
  18042. 20273 348 2 13238 2.99 2007-03-19 14:49:22.996577
  18043. 20274 348 2 13602 5.99 2007-03-20 04:30:28.996577
  18044. 20275 348 2 13684 0.99 2007-03-20 07:24:19.996577
  18045. 20276 348 1 13962 1.99 2007-03-20 16:46:32.996577
  18046. 20277 348 2 14079 3.99 2007-03-20 21:57:51.996577
  18047. 20278 348 2 14937 7.99 2007-03-22 04:20:25.996577
  18048. 20279 348 2 15817 0.99 2007-03-23 13:28:17.996577
  18049. 20280 348 1 15944 4.99 2007-03-23 17:19:20.996577
  18050. 20281 349 1 10987 4.99 2007-03-02 03:05:18.996577
  18051. 20282 349 2 11192 4.99 2007-03-02 09:58:07.996577
  18052. 20283 349 2 11492 8.99 2007-03-02 21:15:13.996577
  18053. 20284 349 1 11905 3.99 2007-03-17 14:08:44.996577
  18054. 20285 349 1 13258 4.99 2007-03-19 15:34:03.996577
  18055. 20286 349 2 13636 4.99 2007-03-20 05:48:35.996577
  18056. 20287 349 2 14200 6.99 2007-03-21 02:19:53.996577
  18057. 20288 349 2 14721 6.99 2007-03-21 20:19:17.996577
  18058. 20289 349 2 14908 4.99 2007-03-22 03:12:36.996577
  18059. 20290 349 1 15833 6.99 2007-03-23 13:50:41.996577
  18060. 20291 349 1 15955 5.99 2007-03-23 17:47:32.996577
  18061. 20292 350 2 11504 0.99 2007-03-16 21:45:12.996577
  18062. 20293 350 2 11595 6.99 2007-03-17 01:21:40.996577
  18063. 20294 350 2 11692 6.99 2007-03-17 05:21:07.996577
  18064. 20295 350 1 11800 0.99 2007-03-17 09:58:18.996577
  18065. 20296 350 2 12252 6.99 2007-03-18 02:28:17.996577
  18066. 20297 350 2 12445 2.99 2007-03-18 09:24:46.996577
  18067. 20298 350 2 13086 0.99 2007-03-19 09:00:54.996577
  18068. 20299 350 2 15789 1.99 2007-03-23 12:25:06.996577
  18069. 20300 350 1 15807 0.99 2007-03-23 13:03:36.996577
  18070. 20301 351 2 10501 2.99 2007-03-01 09:33:12.996577
  18071. 20302 351 2 11127 0.99 2007-03-02 07:29:25.996577
  18072. 20303 351 1 14368 6.99 2007-03-21 08:00:13.996577
  18073. 20304 351 2 15142 4.99 2007-03-22 12:12:58.996577
  18074. 20305 351 1 15664 4.99 2007-03-23 07:25:37.996577
  18075. 20306 351 2 15712 2.99 2007-03-23 09:12:22.996577
  18076. 20307 351 1 15762 2.99 2007-03-23 11:30:09.996577
  18077. 20308 352 1 11793 5.99 2007-03-17 09:34:19.996577
  18078. 20309 352 1 11823 6.99 2007-03-17 11:05:03.996577
  18079. 20310 352 2 11986 0.99 2007-03-17 16:50:24.996577
  18080. 20311 352 2 12234 5.99 2007-03-18 01:45:59.996577
  18081. 20312 352 1 12751 2.99 2007-03-18 21:01:48.996577
  18082. 20313 352 1 14130 4.99 2007-03-21 00:11:37.996577
  18083. 20314 352 2 14852 0.99 2007-03-22 00:54:19.996577
  18084. 20315 353 1 11186 0.99 2007-03-02 09:40:34.996577
  18085. 20316 353 2 11414 4.99 2007-03-02 18:11:33.996577
  18086. 20317 353 2 11698 4.99 2007-03-17 05:38:25.996577
  18087. 20318 353 1 12928 5.99 2007-03-19 03:32:35.996577
  18088. 20319 353 2 13604 0.99 2007-03-20 04:31:59.996577
  18089. 20320 353 1 14396 4.99 2007-03-21 08:53:20.996577
  18090. 20321 353 1 15564 1.99 2007-03-23 03:39:08.996577
  18091. 20322 353 2 15650 0.99 2007-03-23 06:58:19.996577
  18092. 20323 353 2 15676 2.99 2007-03-23 07:51:34.996577
  18093. 20324 354 1 10420 6.99 2007-03-01 06:42:19.996577
  18094. 20325 354 2 12243 6.99 2007-03-18 02:07:20.996577
  18095. 20326 354 1 12544 3.99 2007-03-18 12:54:17.996577
  18096. 20327 354 1 12998 4.99 2007-03-19 06:00:42.996577
  18097. 20328 354 2 14212 2.99 2007-03-21 02:57:52.996577
  18098. 20329 354 2 14245 0.99 2007-03-21 03:59:20.996577
  18099. 20330 354 1 14840 5.99 2007-03-22 00:27:08.996577
  18100. 20331 354 2 15956 0.99 2007-03-23 17:47:47.996577
  18101. 20332 355 1 10498 0.99 2007-03-01 09:25:14.996577
  18102. 20333 355 2 11471 0.99 2007-03-02 20:17:29.996577
  18103. 20334 355 2 13821 1.99 2007-03-20 12:02:13.996577
  18104. 20335 355 1 15367 3.99 2007-03-22 20:16:19.996577
  18105. 20336 355 2 15531 2.99 2007-03-23 02:21:02.996577
  18106. 20337 356 1 10427 3.99 2007-03-01 06:58:37.996577
  18107. 20338 356 1 10854 4.99 2007-03-01 22:30:32.996577
  18108. 20339 356 1 11535 3.99 2007-03-16 23:08:20.996577
  18109. 20340 356 2 11579 2.99 2007-03-17 00:26:15.996577
  18110. 20341 356 2 12037 4.99 2007-03-17 18:50:01.996577
  18111. 20342 356 2 12876 2.99 2007-03-19 01:40:45.996577
  18112. 20343 356 1 12913 0.99 2007-03-19 02:54:05.996577
  18113. 20344 356 2 13107 4.99 2007-03-19 09:42:24.996577
  18114. 20345 356 2 13442 5.99 2007-03-19 22:19:11.996577
  18115. 20346 356 2 13703 6.99 2007-03-20 07:58:01.996577
  18116. 20347 356 1 15705 4.99 2007-03-23 09:01:18.996577
  18117. 20348 356 2 15754 5.99 2007-03-23 11:12:08.996577
  18118. 20349 356 1 15757 2.99 2007-03-23 11:15:42.996577
  18119. 20350 357 2 10391 2.99 2007-03-01 05:17:31.996577
  18120. 20351 357 1 10502 2.99 2007-03-01 09:35:05.996577
  18121. 20352 357 1 10503 6.99 2007-03-01 09:36:10.996577
  18122. 20353 357 2 10764 0.99 2007-03-01 19:01:08.996577
  18123. 20354 357 2 11065 2.99 2007-03-02 05:26:21.996577
  18124. 20355 357 1 14926 0.99 2007-03-22 03:47:10.996577
  18125. 20356 357 2 15869 2.99 2007-03-23 14:50:46.996577
  18126. 20357 358 1 10482 4.99 2007-03-01 08:46:13.996577
  18127. 20358 358 2 11149 5.99 2007-03-02 08:20:09.996577
  18128. 20359 358 2 11653 4.99 2007-03-17 03:34:36.996577
  18129. 20360 358 1 12452 6.99 2007-03-18 09:43:01.996577
  18130. 20361 358 1 13197 2.99 2007-03-19 13:12:29.996577
  18131. 20362 358 1 14004 7.99 2007-03-20 18:45:01.996577
  18132. 20363 359 1 11032 4.99 2007-03-02 04:22:01.996577
  18133. 20364 359 1 12611 1.99 2007-03-18 15:38:08.996577
  18134. 20365 359 2 13297 2.99 2007-03-19 17:14:15.996577
  18135. 20366 359 1 14258 1.99 2007-03-21 04:25:02.996577
  18136. 20367 359 2 14598 5.99 2007-03-21 16:08:31.996577
  18137. 20368 359 1 15104 2.99 2007-03-22 10:29:42.996577
  18138. 20369 359 1 15148 4.99 2007-03-22 12:27:45.996577
  18139. 20370 359 1 15453 1.99 2007-03-22 23:29:27.996577
  18140. 20371 360 2 10857 2.99 2007-03-01 22:35:46.996577
  18141. 20372 360 2 11264 6.99 2007-03-02 12:33:44.996577
  18142. 20373 360 2 11553 4.99 2007-03-16 23:32:57.996577
  18143. 20374 360 2 12088 5.99 2007-03-17 20:48:42.996577
  18144. 20375 360 1 12773 5.99 2007-03-18 22:00:45.996577
  18145. 20376 360 2 12795 0.99 2007-03-18 22:50:18.996577
  18146. 20377 360 1 12839 6.99 2007-03-19 00:22:09.996577
  18147. 20378 360 1 12990 4.99 2007-03-19 05:49:05.996577
  18148. 20379 360 2 13894 7.99 2007-03-20 14:23:46.996577
  18149. 20380 360 1 14700 4.99 2007-03-21 19:22:06.996577
  18150. 20381 360 1 15310 2.99 2007-03-22 18:25:07.996577
  18151. 20382 361 1 10414 0.99 2007-03-01 06:32:21.996577
  18152. 20383 361 2 10975 0.99 2007-03-02 02:39:51.996577
  18153. 20384 361 2 11031 5.99 2007-03-02 04:21:24.996577
  18154. 20385 361 2 11243 5.99 2007-03-02 12:01:14.996577
  18155. 20386 361 1 11327 2.99 2007-03-02 15:09:13.996577
  18156. 20387 361 1 11991 3.99 2007-03-17 16:55:34.996577
  18157. 20388 361 2 12626 5.99 2007-03-18 16:05:11.996577
  18158. 20389 361 2 12690 2.99 2007-03-18 18:35:23.996577
  18159. 20390 361 1 13135 0.99 2007-03-19 10:51:18.996577
  18160. 20391 361 2 14031 0.99 2007-03-20 19:52:50.996577
  18161. 20392 361 1 14422 0.99 2007-03-21 09:50:12.996577
  18162. 20393 361 1 15759 6.99 2007-03-23 11:16:03.996577
  18163. 20394 361 2 15935 2.99 2007-03-23 17:09:37.996577
  18164. 20395 362 2 10546 3.99 2007-03-01 11:12:43.996577
  18165. 20396 362 2 12244 4.99 2007-03-18 02:07:37.996577
  18166. 20397 362 1 12854 6.99 2007-03-19 00:47:17.996577
  18167. 20398 362 1 13603 6.99 2007-03-20 04:31:14.996577
  18168. 20399 362 2 14051 6.99 2007-03-20 20:38:17.996577
  18169. 20400 362 2 14129 2.99 2007-03-21 00:10:41.996577
  18170. 20401 362 2 14336 4.99 2007-03-21 07:02:08.996577
  18171. 20402 362 1 14752 5.99 2007-03-21 21:40:08.996577
  18172. 20403 362 1 14759 11.99 2007-03-21 21:57:24.996577
  18173. 20404 362 1 14808 4.99 2007-03-21 23:27:01.996577
  18174. 20405 362 1 14950 2.99 2007-03-22 04:45:38.996577
  18175. 20406 363 1 10339 6.99 2007-03-01 03:34:16.996577
  18176. 20407 363 2 12189 5.99 2007-03-18 00:20:10.996577
  18177. 20408 363 2 12760 4.99 2007-03-18 21:31:45.996577
  18178. 20409 363 1 13706 9.99 2007-03-20 08:01:22.996577
  18179. 20410 363 1 14694 2.99 2007-03-21 19:15:08.996577
  18180. 20411 363 1 14983 5.99 2007-03-22 06:00:49.996577
  18181. 20412 363 2 15279 4.99 2007-03-22 17:37:15.996577
  18182. 20413 363 1 15335 4.99 2007-03-22 19:13:21.996577
  18183. 20414 364 2 10290 5.99 2007-03-01 02:08:16.996577
  18184. 20415 364 2 11932 4.99 2007-03-17 15:04:38.996577
  18185. 20416 364 1 12557 4.99 2007-03-18 13:19:29.996577
  18186. 20417 364 1 12761 1.99 2007-03-18 21:33:48.996577
  18187. 20418 364 2 12912 3.99 2007-03-19 02:53:01.996577
  18188. 20419 364 1 13698 4.99 2007-03-20 07:52:52.996577
  18189. 20420 364 2 13936 0.99 2007-03-20 15:51:01.996577
  18190. 20421 364 2 14293 4.99 2007-03-21 05:35:13.996577
  18191. 20422 364 1 15242 0.99 2007-03-22 16:16:36.996577
  18192. 20423 365 2 10717 2.99 2007-03-01 17:22:19.996577
  18193. 20424 365 2 12322 2.99 2007-03-18 05:03:54.996577
  18194. 20425 365 2 12375 4.99 2007-03-18 06:48:34.996577
  18195. 20426 365 1 12804 8.99 2007-03-18 23:01:41.996577
  18196. 20427 365 1 13619 2.99 2007-03-20 05:07:52.996577
  18197. 20428 365 2 14463 6.99 2007-03-21 11:20:15.996577
  18198. 20429 366 1 10384 4.99 2007-03-01 05:07:40.996577
  18199. 20430 366 2 11337 2.99 2007-03-02 15:27:35.996577
  18200. 20431 366 2 11340 5.99 2007-03-02 15:34:09.996577
  18201. 20432 366 2 12413 2.99 2007-03-18 08:19:00.996577
  18202. 20433 366 1 12608 4.99 2007-03-18 15:33:41.996577
  18203. 20434 366 2 13563 0.99 2007-03-20 03:01:57.996577
  18204. 20435 366 1 13857 2.99 2007-03-20 13:18:32.996577
  18205. 20436 366 1 14147 4.99 2007-03-21 00:42:29.996577
  18206. 20437 366 1 14290 4.99 2007-03-21 05:31:25.996577
  18207. 20438 366 1 14390 2.99 2007-03-21 08:44:04.996577
  18208. 20439 366 1 14717 2.99 2007-03-21 19:59:05.996577
  18209. 20440 366 1 14906 6.99 2007-03-22 03:06:44.996577
  18210. 20441 366 1 15514 2.99 2007-03-23 01:32:06.996577
  18211. 20442 367 2 10344 4.99 2007-03-01 03:46:49.996577
  18212. 20443 367 1 12152 4.99 2007-03-17 22:50:01.996577
  18213. 20444 367 2 12362 0.99 2007-03-18 06:16:31.996577
  18214. 20445 367 2 12373 8.99 2007-03-18 06:35:51.996577
  18215. 20446 367 2 12911 6.99 2007-03-19 02:52:36.996577
  18216. 20447 367 2 13235 4.99 2007-03-19 14:46:19.996577
  18217. 20448 367 1 14413 6.99 2007-03-21 09:34:59.996577
  18218. 20449 367 1 14481 10.99 2007-03-21 12:09:40.996577
  18219. 20450 368 2 10730 8.99 2007-03-01 17:50:08.996577
  18220. 20451 368 2 10848 1.99 2007-03-01 22:18:48.996577
  18221. 20452 368 1 11844 0.99 2007-03-17 11:44:30.996577
  18222. 20453 368 2 12319 2.99 2007-03-18 04:55:11.996577
  18223. 20454 368 1 12796 4.99 2007-03-18 22:50:50.996577
  18224. 20455 368 2 13189 8.99 2007-03-19 12:55:42.996577
  18225. 20456 368 2 13280 2.99 2007-03-19 16:31:17.996577
  18226. 20457 368 2 13378 0.99 2007-03-19 20:02:01.996577
  18227. 20458 368 2 13781 7.99 2007-03-20 10:35:11.996577
  18228. 20459 368 2 13963 1.99 2007-03-20 16:48:44.996577
  18229. 20460 368 1 14393 7.99 2007-03-21 08:51:17.996577
  18230. 20461 368 1 15353 2.99 2007-03-22 19:46:34.996577
  18231. 20462 368 1 15437 2.99 2007-03-22 22:59:35.996577
  18232. 20463 369 1 10299 0.99 2007-03-01 02:36:30.996577
  18233. 20464 369 2 10359 3.99 2007-03-01 04:20:47.996577
  18234. 20465 369 2 10713 2.99 2007-03-01 17:18:31.996577
  18235. 20466 369 1 11084 4.99 2007-03-02 06:02:45.996577
  18236. 20467 369 2 11388 1.99 2007-03-02 17:04:21.996577
  18237. 20468 369 1 12521 0.99 2007-03-18 12:11:33.996577
  18238. 20469 369 2 14684 5.99 2007-03-21 18:56:52.996577
  18239. 20470 370 1 10336 4.99 2007-03-01 03:28:19.996577
  18240. 20471 370 1 11540 1.99 2007-03-16 23:16:29.996577
  18241. 20472 370 2 11925 0.99 2007-03-17 14:51:30.996577
  18242. 20473 370 1 12339 4.99 2007-03-18 05:33:32.996577
  18243. 20474 370 1 13039 0.99 2007-03-19 07:23:45.996577
  18244. 20475 370 1 14602 3.99 2007-03-21 16:17:15.996577
  18245. 20476 370 2 14786 2.99 2007-03-21 22:53:08.996577
  18246. 20477 370 2 15368 3.99 2007-03-22 20:25:41.996577
  18247. 20478 370 1 15626 4.99 2007-03-23 05:54:00.996577
  18248. 20479 370 1 15982 5.99 2007-03-23 18:41:57.996577
  18249. 20480 371 1 11086 10.99 2007-03-02 06:07:10.996577
  18250. 20481 371 2 12397 9.99 2007-03-18 07:41:18.996577
  18251. 20482 371 2 12584 7.99 2007-03-18 14:20:02.996577
  18252. 20483 371 1 13028 2.99 2007-03-19 06:55:49.996577
  18253. 20484 371 2 13143 3.99 2007-03-19 11:13:04.996577
  18254. 20485 371 1 13191 4.99 2007-03-19 12:57:14.996577
  18255. 20486 371 2 13953 4.99 2007-03-20 16:29:03.996577
  18256. 20487 371 1 14384 2.99 2007-03-21 08:31:03.996577
  18257. 20488 371 1 15786 0.99 2007-03-23 12:17:00.996577
  18258. 20489 371 1 15824 2.99 2007-03-23 13:37:43.996577
  18259. 20490 372 2 11134 10.99 2007-03-02 07:47:48.996577
  18260. 20491 372 2 11438 3.99 2007-03-02 18:49:34.996577
  18261. 20492 372 2 11555 4.99 2007-03-16 23:37:25.996577
  18262. 20493 372 1 12224 0.99 2007-03-18 01:27:35.996577
  18263. 20494 372 1 12714 3.99 2007-03-18 19:36:27.996577
  18264. 20495 372 2 13402 4.99 2007-03-19 20:45:19.996577
  18265. 20496 372 2 13871 8.99 2007-03-20 13:38:39.996577
  18266. 20497 372 2 14037 9.99 2007-03-20 20:04:24.996577
  18267. 20498 372 1 14211 4.99 2007-03-21 02:57:37.996577
  18268. 20499 372 1 14331 2.99 2007-03-21 06:58:04.996577
  18269. 20500 372 1 14770 1.99 2007-03-21 22:15:42.996577
  18270. 20501 372 2 15041 0.99 2007-03-22 08:11:44.996577
  18271. 20502 372 1 15563 2.99 2007-03-23 03:37:24.996577
  18272. 20503 373 1 10758 5.99 2007-03-01 18:51:17.996577
  18273. 20504 373 2 11066 7.99 2007-03-02 05:26:58.996577
  18274. 20505 373 2 11512 7.99 2007-03-16 22:19:32.996577
  18275. 20506 373 2 11663 3.99 2007-03-17 03:58:45.996577
  18276. 20507 373 2 11976 3.99 2007-03-17 16:27:45.996577
  18277. 20508 373 1 12142 5.99 2007-03-17 22:32:38.996577
  18278. 20509 373 2 12536 5.99 2007-03-18 12:34:32.996577
  18279. 20510 373 1 12748 7.99 2007-03-18 20:57:31.996577
  18280. 20511 373 2 12780 0.99 2007-03-18 22:16:42.996577
  18281. 20512 373 2 13299 2.99 2007-03-19 17:14:59.996577
  18282. 20513 373 1 13329 3.99 2007-03-19 18:25:21.996577
  18283. 20514 373 2 13467 2.99 2007-03-19 23:25:10.996577
  18284. 20515 373 2 15014 6.99 2007-03-22 07:11:37.996577
  18285. 20516 373 1 15068 3.99 2007-03-22 09:18:39.996577
  18286. 20517 374 1 10695 2.99 2007-03-01 16:44:46.996577
  18287. 20518 374 1 11619 0.99 2007-03-17 02:31:52.996577
  18288. 20519 374 2 12696 2.99 2007-03-18 18:41:34.996577
  18289. 20520 374 1 13337 2.99 2007-03-19 18:35:23.996577
  18290. 20521 374 2 13734 4.99 2007-03-20 08:58:23.996577
  18291. 20522 374 2 14524 8.99 2007-03-21 13:33:53.996577
  18292. 20523 374 2 15053 5.99 2007-03-22 08:41:35.996577
  18293. 20524 374 1 15200 2.99 2007-03-22 14:51:19.996577
  18294. 20525 374 2 15202 4.99 2007-03-22 14:55:19.996577
  18295. 20526 374 2 15366 6.99 2007-03-22 20:14:23.996577
  18296. 20527 375 1 10274 0.99 2007-03-01 01:45:17.996577
  18297. 20528 375 2 10589 1.99 2007-03-01 12:39:35.996577
  18298. 20529 375 1 10640 0.99 2007-03-01 14:13:17.996577
  18299. 20530 375 1 10672 4.99 2007-03-01 15:39:20.996577
  18300. 20531 375 1 10859 5.99 2007-03-01 22:40:05.996577
  18301. 20532 375 1 10961 6.99 2007-03-02 02:16:21.996577
  18302. 20533 375 2 11008 5.99 2007-03-02 03:34:43.996577
  18303. 20534 375 2 12122 9.99 2007-03-17 21:49:11.996577
  18304. 20535 375 2 12663 0.99 2007-03-18 17:39:18.996577
  18305. 20536 375 1 13836 4.99 2007-03-20 12:46:42.996577
  18306. 20537 375 1 15004 2.99 2007-03-22 06:43:47.996577
  18307. 20538 375 1 15505 4.99 2007-03-23 01:14:39.996577
  18308. 20539 376 2 10413 3.99 2007-03-01 06:28:05.996577
  18309. 20540 376 1 10810 3.99 2007-03-01 21:09:05.996577
  18310. 20541 376 1 11144 4.99 2007-03-02 08:07:43.996577
  18311. 20542 376 2 11792 4.99 2007-03-17 09:32:19.996577
  18312. 20543 376 1 11851 4.99 2007-03-17 11:58:53.996577
  18313. 20544 376 1 13009 0.99 2007-03-19 06:19:01.996577
  18314. 20545 376 1 13141 0.99 2007-03-19 11:10:07.996577
  18315. 20546 376 2 13761 4.99 2007-03-20 09:57:16.996577
  18316. 20547 376 1 15107 4.99 2007-03-22 10:33:28.996577
  18317. 20548 376 1 15382 2.99 2007-03-22 20:59:16.996577
  18318. 20549 377 1 10738 3.99 2007-03-01 18:07:34.996577
  18319. 20550 377 1 10943 2.99 2007-03-02 01:45:55.996577
  18320. 20551 377 1 12390 1.99 2007-03-18 07:20:08.996577
  18321. 20552 377 1 12549 4.99 2007-03-18 13:06:33.996577
  18322. 20553 377 1 13249 2.99 2007-03-19 15:16:07.996577
  18323. 20554 377 1 13275 0.99 2007-03-19 16:22:04.996577
  18324. 20555 377 2 15088 0.99 2007-03-22 09:56:52.996577
  18325. 20556 377 1 15995 0.99 2007-03-23 18:58:22.996577
  18326. 20557 377 1 15999 7.99 2007-03-23 19:12:36.996577
  18327. 20558 378 1 10917 4.99 2007-03-02 00:34:44.996577
  18328. 20559 378 1 11111 4.99 2007-03-02 06:49:53.996577
  18329. 20560 378 1 12596 2.99 2007-03-18 14:58:01.996577
  18330. 20561 378 1 12828 4.99 2007-03-19 00:06:13.996577
  18331. 20562 378 2 14502 4.99 2007-03-21 12:50:54.996577
  18332. 20563 378 1 14971 2.99 2007-03-22 05:21:15.996577
  18333. 20564 379 2 11457 3.99 2007-03-02 19:42:42.996577
  18334. 20565 379 1 12503 4.99 2007-03-18 11:45:12.996577
  18335. 20566 379 1 13334 0.99 2007-03-19 18:30:59.996577
  18336. 20567 379 2 13397 7.99 2007-03-19 20:35:01.996577
  18337. 20568 379 1 13485 0.99 2007-03-19 23:48:40.996577
  18338. 20569 379 1 14011 5.99 2007-03-20 19:01:22.996577
  18339. 20570 379 2 14152 2.99 2007-03-21 00:52:16.996577
  18340. 20571 379 1 14470 0.99 2007-03-21 11:38:07.996577
  18341. 20572 379 1 14886 4.99 2007-03-22 02:27:27.996577
  18342. 20573 379 2 15399 4.99 2007-03-22 21:40:25.996577
  18343. 20574 379 1 15446 4.99 2007-03-22 23:17:50.996577
  18344. 20575 379 2 15930 3.99 2007-03-23 16:55:17.996577
  18345. 20576 380 2 10450 1.99 2007-03-01 07:38:29.996577
  18346. 20577 380 1 10983 3.99 2007-03-02 02:52:49.996577
  18347. 20578 380 1 11936 0.99 2007-03-17 15:14:00.996577
  18348. 20579 380 2 11945 0.99 2007-03-17 15:33:59.996577
  18349. 20580 380 1 12636 3.99 2007-03-18 16:28:55.996577
  18350. 20581 380 1 12996 6.99 2007-03-19 05:59:58.996577
  18351. 20582 380 1 14529 6.99 2007-03-21 13:36:57.996577
  18352. 20583 380 1 14935 1.99 2007-03-22 04:15:57.996577
  18353. 20584 380 2 15175 5.99 2007-03-22 13:57:41.996577
  18354. 20585 380 1 15361 2.99 2007-03-22 20:08:11.996577
  18355. 20586 380 2 15636 2.99 2007-03-23 06:19:12.996577
  18356. 20587 380 1 15697 2.99 2007-03-23 08:33:02.996577
  18357. 20588 380 2 15748 2.99 2007-03-23 11:01:26.996577
  18358. 20589 381 1 10608 0.99 2007-03-01 13:17:07.996577
  18359. 20590 381 2 10705 0.99 2007-03-01 17:07:20.996577
  18360. 20591 381 1 11519 2.99 2007-03-16 22:29:53.996577
  18361. 20592 381 2 12135 2.99 2007-03-17 22:18:50.996577
  18362. 20593 381 2 12237 4.99 2007-03-18 01:53:04.996577
  18363. 20594 381 2 12632 2.99 2007-03-18 16:22:47.996577
  18364. 20595 381 2 13202 8.99 2007-03-19 13:26:56.996577
  18365. 20596 381 2 13430 0.99 2007-03-19 21:54:09.996577
  18366. 20597 381 1 13614 0.99 2007-03-20 04:57:03.996577
  18367. 20598 381 2 13995 2.99 2007-03-20 18:03:09.996577
  18368. 20599 381 1 14198 4.99 2007-03-21 02:16:57.996577
  18369. 20600 381 2 15299 4.99 2007-03-22 18:11:23.996577
  18370. 20601 381 1 15747 4.99 2007-03-23 10:57:50.996577
  18371. 20602 382 2 10327 3.99 2007-03-01 03:24:01.996577
  18372. 20603 382 2 12229 0.99 2007-03-18 01:36:49.996577
  18373. 20604 382 2 12529 0.99 2007-03-18 12:22:02.996577
  18374. 20605 382 1 14009 4.99 2007-03-20 18:55:19.996577
  18375. 20606 382 2 14300 4.99 2007-03-21 05:48:03.996577
  18376. 20607 382 2 14354 5.99 2007-03-21 07:36:40.996577
  18377. 20608 382 2 15939 7.99 2007-03-23 17:12:47.996577
  18378. 20609 383 2 10515 4.99 2007-03-01 10:09:59.996577
  18379. 20610 383 1 10971 4.99 2007-03-02 02:36:43.996577
  18380. 20611 383 2 10993 0.99 2007-03-02 03:13:27.996577
  18381. 20612 383 2 11122 0.99 2007-03-02 07:17:35.996577
  18382. 20613 383 1 11592 2.99 2007-03-17 01:04:30.996577
  18383. 20614 383 1 12735 4.99 2007-03-18 20:33:20.996577
  18384. 20615 383 2 14039 4.99 2007-03-20 20:08:09.996577
  18385. 20616 383 2 14678 4.99 2007-03-21 18:41:09.996577
  18386. 20617 383 1 15416 1.99 2007-03-22 22:19:49.996577
  18387. 20618 383 1 15881 6.99 2007-03-23 15:12:51.996577
  18388. 20619 384 2 11773 5.99 2007-03-17 08:48:17.996577
  18389. 20620 384 2 13521 2.99 2007-03-20 01:10:54.996577
  18390. 20621 384 2 14416 2.99 2007-03-21 09:40:12.996577
  18391. 20622 384 1 14841 0.99 2007-03-22 00:31:56.996577
  18392. 20623 384 1 14963 5.99 2007-03-22 05:06:36.996577
  18393. 20624 384 2 15321 4.99 2007-03-22 18:48:30.996577
  18394. 20625 385 1 10557 0.99 2007-03-01 11:27:50.996577
  18395. 20626 385 1 10636 3.99 2007-03-01 14:09:01.996577
  18396. 20627 385 1 10655 4.99 2007-03-01 15:01:53.996577
  18397. 20628 385 1 11021 2.99 2007-03-02 03:58:37.996577
  18398. 20629 385 1 11559 2.99 2007-03-16 23:48:52.996577
  18399. 20630 385 2 12310 2.99 2007-03-18 04:31:00.996577
  18400. 20631 385 2 12686 8.99 2007-03-18 18:23:35.996577
  18401. 20632 385 2 13062 7.99 2007-03-19 08:12:43.996577
  18402. 20633 385 1 13117 0.99 2007-03-19 10:01:46.996577
  18403. 20634 385 1 15488 6.99 2007-03-23 00:34:27.996577
  18404. 20635 386 1 10572 4.99 2007-03-01 11:55:19.996577
  18405. 20636 386 2 10618 3.99 2007-03-01 13:35:04.996577
  18406. 20637 386 1 10715 2.99 2007-03-01 17:20:14.996577
  18407. 20638 386 2 11128 2.99 2007-03-02 07:31:51.996577
  18408. 20639 386 2 11695 4.99 2007-03-17 05:29:34.996577
  18409. 20640 386 2 12961 2.99 2007-03-19 04:51:03.996577
  18410. 20641 386 1 13716 3.99 2007-03-20 08:16:58.996577
  18411. 20642 386 1 13764 2.99 2007-03-20 10:06:42.996577
  18412. 20643 386 2 13869 6.99 2007-03-20 13:37:23.996577
  18413. 20644 386 1 15949 0.99 2007-03-23 17:34:30.996577
  18414. 20645 387 1 10564 0.99 2007-03-01 11:36:00.996577
  18415. 20646 387 1 10838 4.99 2007-03-01 22:04:36.996577
  18416. 20647 387 2 11682 2.99 2007-03-17 04:42:06.996577
  18417. 20648 387 2 12153 4.99 2007-03-17 22:50:56.996577
  18418. 20649 387 1 12936 6.99 2007-03-19 03:53:32.996577
  18419. 20650 387 2 13034 2.99 2007-03-19 07:09:55.996577
  18420. 20651 387 1 13082 5.99 2007-03-19 08:47:45.996577
  18421. 20652 387 2 13645 0.99 2007-03-20 06:15:31.996577
  18422. 20653 387 2 13772 4.99 2007-03-20 10:16:18.996577
  18423. 20654 387 2 14279 5.99 2007-03-21 05:07:34.996577
  18424. 20655 387 2 14979 0.99 2007-03-22 05:45:02.996577
  18425. 20656 388 2 11604 0.99 2007-03-17 01:56:53.996577
  18426. 20657 388 2 12044 0.99 2007-03-17 19:08:03.996577
  18427. 20658 388 1 12068 2.99 2007-03-17 20:05:34.996577
  18428. 20659 388 2 12267 6.99 2007-03-18 02:52:56.996577
  18429. 20660 388 2 12497 4.99 2007-03-18 11:27:06.996577
  18430. 20661 388 2 12646 2.99 2007-03-18 16:53:32.996577
  18431. 20662 388 1 12749 2.99 2007-03-18 20:59:47.996577
  18432. 20663 388 1 12977 4.99 2007-03-19 05:23:59.996577
  18433. 20664 388 1 14273 10.99 2007-03-21 04:55:14.996577
  18434. 20665 388 2 14853 5.99 2007-03-22 00:54:59.996577
  18435. 20666 388 2 15660 5.99 2007-03-23 07:19:47.996577
  18436. 20667 389 1 10949 2.99 2007-03-02 01:52:30.996577
  18437. 20668 389 2 11348 4.99 2007-03-02 15:47:04.996577
  18438. 20669 389 2 11441 2.99 2007-03-02 18:54:07.996577
  18439. 20670 389 2 11944 3.99 2007-03-17 15:31:08.996577
  18440. 20671 389 2 12069 4.99 2007-03-17 20:08:06.996577
  18441. 20672 389 2 14493 7.99 2007-03-21 12:30:10.996577
  18442. 20673 389 1 14578 2.99 2007-03-21 15:22:04.996577
  18443. 20674 389 1 14777 2.99 2007-03-21 22:24:16.996577
  18444. 20675 389 1 15462 5.99 2007-03-22 23:42:27.996577
  18445. 20676 389 2 16011 9.99 2007-03-23 19:39:59.996577
  18446. 20677 390 1 12105 5.99 2007-03-17 21:23:11.996577
  18447. 20678 390 2 12803 2.99 2007-03-18 22:56:47.996577
  18448. 20679 390 1 13413 3.99 2007-03-19 21:15:12.996577
  18449. 20680 390 1 13473 4.99 2007-03-19 23:32:16.996577
  18450. 20681 390 1 13501 0.99 2007-03-20 00:24:46.996577
  18451. 20682 390 2 13546 3.99 2007-03-20 02:18:50.996577
  18452. 20683 390 2 13591 3.99 2007-03-20 04:18:31.996577
  18453. 20684 390 2 13618 7.99 2007-03-20 05:05:12.996577
  18454. 20685 390 2 13893 5.99 2007-03-20 14:21:18.996577
  18455. 20686 390 2 15222 4.99 2007-03-22 15:40:56.996577
  18456. 20687 390 2 15303 8.99 2007-03-22 18:13:25.996577
  18457. 20688 390 2 15376 4.99 2007-03-22 20:50:01.996577
  18458. 20689 391 2 10406 2.99 2007-03-01 06:05:31.996577
  18459. 20690 391 1 11151 4.99 2007-03-02 08:21:10.996577
  18460. 20691 391 2 11434 2.99 2007-03-02 18:41:40.996577
  18461. 20692 391 1 11602 4.99 2007-03-17 01:49:45.996577
  18462. 20693 391 1 12090 0.99 2007-03-17 20:50:09.996577
  18463. 20694 391 1 12100 1.99 2007-03-17 21:09:36.996577
  18464. 20695 391 1 13980 2.99 2007-03-20 17:33:06.996577
  18465. 20696 391 1 14381 0.99 2007-03-21 08:24:13.996577
  18466. 20697 392 1 10435 4.99 2007-03-01 07:19:17.996577
  18467. 20698 392 1 11459 0.99 2007-03-02 19:53:51.996577
  18468. 20699 392 1 11686 2.99 2007-03-17 05:07:56.996577
  18469. 20700 392 2 12102 6.99 2007-03-17 21:13:52.996577
  18470. 20701 392 1 12368 6.99 2007-03-18 06:26:04.996577
  18471. 20702 392 2 12561 0.99 2007-03-18 13:27:17.996577
  18472. 20703 392 1 13629 4.99 2007-03-20 05:32:33.996577
  18473. 20704 392 2 14081 7.99 2007-03-20 22:03:39.996577
  18474. 20705 392 1 14223 5.99 2007-03-21 03:20:17.996577
  18475. 20706 392 2 14369 0.99 2007-03-21 08:02:10.996577
  18476. 20707 392 2 14438 5.99 2007-03-21 10:19:36.996577
  18477. 20708 393 2 12059 2.99 2007-03-17 19:37:49.996577
  18478. 20709 393 1 12113 1.99 2007-03-17 21:29:26.996577
  18479. 20710 393 1 12563 4.99 2007-03-18 13:36:55.996577
  18480. 20711 393 1 12676 0.99 2007-03-18 18:03:06.996577
  18481. 20712 393 1 13184 4.99 2007-03-19 12:44:44.996577
  18482. 20713 393 2 13357 4.99 2007-03-19 19:31:25.996577
  18483. 20714 393 2 13788 1.99 2007-03-20 10:44:07.996577
  18484. 20715 393 1 15132 2.99 2007-03-22 11:39:51.996577
  18485. 20716 393 2 15284 3.99 2007-03-22 17:45:34.996577
  18486. 20717 393 2 15527 0.99 2007-03-23 02:13:17.996577
  18487. 20718 393 2 16049 3.99 2007-03-23 21:18:38.996577
  18488. 20719 394 1 10319 4.99 2007-03-01 03:05:45.996577
  18489. 20720 394 1 10603 0.99 2007-03-01 12:59:01.996577
  18490. 20721 394 1 10718 0.99 2007-03-01 17:24:04.996577
  18491. 20722 394 1 12080 4.99 2007-03-17 20:36:30.996577
  18492. 20723 394 1 12389 4.99 2007-03-18 07:17:02.996577
  18493. 20724 394 2 12510 9.99 2007-03-18 11:50:51.996577
  18494. 20725 394 2 13047 0.99 2007-03-19 07:53:15.996577
  18495. 20726 394 1 14605 0.99 2007-03-21 16:24:32.996577
  18496. 20727 395 1 11889 0.99 2007-03-17 13:36:53.996577
  18497. 20728 395 1 14471 5.99 2007-03-21 11:39:06.996577
  18498. 20729 395 2 14720 0.99 2007-03-21 20:12:19.996577
  18499. 20730 395 1 15698 2.99 2007-03-23 08:40:06.996577
  18500. 20731 395 1 15856 0.99 2007-03-23 14:27:38.996577
  18501. 20732 395 1 15970 4.99 2007-03-23 18:22:50.996577
  18502. 20733 396 2 10610 0.99 2007-03-01 13:18:07.996577
  18503. 20734 396 2 12393 5.99 2007-03-18 07:31:07.996577
  18504. 20735 396 1 12895 4.99 2007-03-19 02:19:14.996577
  18505. 20736 396 2 13355 4.99 2007-03-19 19:27:45.996577
  18506. 20737 396 1 14078 3.99 2007-03-20 21:55:06.996577
  18507. 20738 396 1 14169 4.99 2007-03-21 01:28:57.996577
  18508. 20739 396 1 14508 2.99 2007-03-21 13:02:24.996577
  18509. 20740 396 2 14778 5.99 2007-03-21 22:24:56.996577
  18510. 20741 396 1 14792 1.99 2007-03-21 23:05:07.996577
  18511. 20742 396 2 15198 7.99 2007-03-22 14:43:59.996577
  18512. 20743 397 1 10534 0.99 2007-03-01 10:43:37.996577
  18513. 20744 397 2 10598 4.99 2007-03-01 12:52:02.996577
  18514. 20745 397 1 10785 1.99 2007-03-01 19:53:21.996577
  18515. 20746 397 2 11511 4.99 2007-03-16 22:08:25.996577
  18516. 20747 397 2 12223 2.99 2007-03-18 01:27:06.996577
  18517. 20748 397 1 12276 0.99 2007-03-18 03:11:48.996577
  18518. 20749 397 2 12329 1.99 2007-03-18 05:12:56.996577
  18519. 20750 397 2 12700 0.99 2007-03-18 18:53:12.996577
  18520. 20751 397 2 12726 2.99 2007-03-18 20:13:12.996577
  18521. 20752 397 1 12772 4.99 2007-03-18 21:57:51.996577
  18522. 20753 397 2 14100 3.99 2007-03-20 22:59:33.996577
  18523. 20754 397 1 14790 6.99 2007-03-21 23:02:43.996577
  18524. 20755 397 1 15083 6.99 2007-03-22 09:46:03.996577
  18525. 20756 398 1 10230 2.99 2007-03-01 00:18:02.996577
  18526. 20757 398 2 11132 4.99 2007-03-02 07:42:35.996577
  18527. 20758 398 2 12528 2.99 2007-03-18 12:21:07.996577
  18528. 20759 398 2 13643 4.99 2007-03-20 06:10:50.996577
  18529. 20760 398 1 15189 3.99 2007-03-22 14:25:08.996577
  18530. 20761 399 2 10654 2.99 2007-03-01 15:00:01.996577
  18531. 20762 399 2 10960 5.99 2007-03-02 02:14:44.996577
  18532. 20763 399 1 11329 4.99 2007-03-02 15:11:18.996577
  18533. 20764 399 1 11953 3.99 2007-03-17 15:45:08.996577
  18534. 20765 399 1 13253 4.99 2007-03-19 15:22:22.996577
  18535. 20766 399 2 13293 4.99 2007-03-19 17:04:18.996577
  18536. 20767 399 1 15300 0.99 2007-03-22 18:12:26.996577
  18537. 20768 399 1 15468 4.99 2007-03-22 23:53:56.996577
  18538. 20769 400 2 10484 2.99 2007-03-01 08:48:19.996577
  18539. 20770 400 1 10711 0.99 2007-03-01 17:13:35.996577
  18540. 20771 400 2 11510 6.99 2007-03-16 21:58:33.996577
  18541. 20772 400 2 11530 2.99 2007-03-16 22:57:26.996577
  18542. 20773 400 1 11600 5.99 2007-03-17 01:40:30.996577
  18543. 20774 400 1 12514 2.99 2007-03-18 12:02:21.996577
  18544. 20775 400 2 13449 2.99 2007-03-19 22:45:27.996577
  18545. 20776 400 1 14775 2.99 2007-03-21 22:21:33.996577
  18546. 20777 400 2 15533 4.99 2007-03-23 02:23:05.996577
  18547. 20778 400 2 15988 4.99 2007-03-23 18:51:34.996577
  18548. 20779 401 1 11820 2.99 2007-03-17 10:53:59.996577
  18549. 20780 401 1 12475 4.99 2007-03-18 10:42:47.996577
  18550. 20781 401 2 12479 4.99 2007-03-18 10:55:03.996577
  18551. 20782 401 1 12906 2.99 2007-03-19 02:42:09.996577
  18552. 20783 401 1 13024 4.99 2007-03-19 06:47:47.996577
  18553. 20784 401 1 14359 0.99 2007-03-21 07:44:45.996577
  18554. 20785 401 2 14433 1.99 2007-03-21 10:05:00.996577
  18555. 20786 401 1 15831 0.99 2007-03-23 13:49:45.996577
  18556. 20787 401 1 15927 0.99 2007-03-23 16:51:37.996577
  18557. 20788 402 2 11045 0.99 2007-03-02 04:36:20.996577
  18558. 20789 402 2 11549 4.99 2007-03-16 23:30:14.996577
  18559. 20790 402 2 11920 0.99 2007-03-17 14:38:45.996577
  18560. 20791 402 1 15428 4.99 2007-03-22 22:40:18.996577
  18561. 20792 403 1 10443 2.99 2007-03-01 07:29:30.996577
  18562. 20793 403 1 10547 6.99 2007-03-01 11:12:43.996577
  18563. 20794 403 2 10789 2.99 2007-03-01 20:06:21.996577
  18564. 20795 403 1 11038 7.99 2007-03-02 04:28:08.996577
  18565. 20796 403 2 11391 9.99 2007-03-02 17:08:38.996577
  18566. 20797 403 2 11427 2.99 2007-03-02 18:31:05.996577
  18567. 20798 403 2 11460 0.99 2007-03-02 19:56:29.996577
  18568. 20799 403 2 11558 0.99 2007-03-16 23:48:18.996577
  18569. 20800 403 2 12005 5.99 2007-03-17 17:25:21.996577
  18570. 20801 403 1 12132 2.99 2007-03-17 22:05:29.996577
  18571. 20802 403 1 12793 5.99 2007-03-18 22:49:02.996577
  18572. 20803 403 1 14519 2.99 2007-03-21 13:27:55.996577
  18573. 20804 403 1 14662 0.99 2007-03-21 18:13:53.996577
  18574. 20805 403 2 14725 4.99 2007-03-21 20:30:34.996577
  18575. 20806 403 1 15410 4.99 2007-03-22 21:56:09.996577
  18576. 20807 404 1 10651 2.99 2007-03-01 14:48:48.996577
  18577. 20808 404 1 12325 5.99 2007-03-18 05:09:56.996577
  18578. 20809 404 1 12554 8.99 2007-03-18 13:15:54.996577
  18579. 20810 404 2 13412 5.99 2007-03-19 21:15:01.996577
  18580. 20811 404 1 13422 4.99 2007-03-19 21:35:50.996577
  18581. 20812 404 1 14691 0.99 2007-03-21 19:10:55.996577
  18582. 20813 404 2 14835 5.99 2007-03-22 00:17:33.996577
  18583. 20814 404 2 14838 4.99 2007-03-22 00:26:00.996577
  18584. 20815 404 2 14912 4.99 2007-03-22 03:20:08.996577
  18585. 20816 404 2 15087 0.99 2007-03-22 09:52:35.996577
  18586. 20817 404 2 15290 10.99 2007-03-22 17:56:28.996577
  18587. 20818 405 1 10472 4.99 2007-03-01 08:23:07.996577
  18588. 20819 405 2 10823 4.99 2007-03-01 21:27:36.996577
  18589. 20820 405 1 11345 7.99 2007-03-02 15:42:45.996577
  18590. 20821 405 1 12050 0.99 2007-03-17 19:23:51.996577
  18591. 20822 405 2 12425 5.99 2007-03-18 08:46:32.996577
  18592. 20823 405 1 13304 1.99 2007-03-19 17:24:58.996577
  18593. 20824 405 1 13398 0.99 2007-03-19 20:37:14.996577
  18594. 20825 405 1 14274 4.99 2007-03-21 04:57:46.996577
  18595. 20826 405 2 14537 0.99 2007-03-21 13:52:50.996577
  18596. 20827 405 1 15072 1.99 2007-03-22 09:27:11.996577
  18597. 20828 405 2 15383 2.99 2007-03-22 20:59:46.996577
  18598. 20829 405 1 15932 4.99 2007-03-23 17:00:06.996577
  18599. 20830 406 1 10632 1.99 2007-03-01 14:05:22.996577
  18600. 20831 406 1 11603 4.99 2007-03-17 01:50:36.996577
  18601. 20832 406 2 12505 5.99 2007-03-18 11:45:56.996577
  18602. 20833 406 2 14205 6.99 2007-03-21 02:25:41.996577
  18603. 20834 406 2 14421 2.99 2007-03-21 09:48:47.996577
  18604. 20835 406 2 14601 2.99 2007-03-21 16:14:18.996577
  18605. 20836 407 2 10774 4.99 2007-03-01 19:22:59.996577
  18606. 20837 407 1 11214 8.99 2007-03-02 10:48:16.996577
  18607. 20838 407 1 11222 2.99 2007-03-02 11:00:54.996577
  18608. 20839 407 2 11382 5.99 2007-03-02 16:49:18.996577
  18609. 20840 407 2 11518 4.99 2007-03-16 22:28:15.996577
  18610. 20841 407 1 11677 0.99 2007-03-17 04:34:52.996577
  18611. 20842 407 2 12566 0.99 2007-03-18 13:41:30.996577
  18612. 20843 407 2 12931 2.99 2007-03-19 03:40:13.996577
  18613. 20844 407 1 13800 0.99 2007-03-20 11:09:14.996577
  18614. 20845 407 2 13856 6.99 2007-03-20 13:17:58.996577
  18615. 20846 407 2 14401 6.99 2007-03-21 09:04:46.996577
  18616. 20847 407 2 15320 0.99 2007-03-22 18:46:15.996577
  18617. 20848 407 2 15334 1.99 2007-03-22 19:13:01.996577
  18618. 20849 408 2 11115 2.99 2007-03-02 06:59:32.996577
  18619. 20850 408 1 12140 2.99 2007-03-17 22:26:21.996577
  18620. 20851 408 1 12338 4.99 2007-03-18 05:32:50.996577
  18621. 20852 408 1 12498 2.99 2007-03-18 11:29:34.996577
  18622. 20853 408 2 12900 0.99 2007-03-19 02:32:15.996577
  18623. 20854 408 1 13508 7.99 2007-03-20 00:41:20.996577
  18624. 20855 408 2 13744 3.99 2007-03-20 09:20:11.996577
  18625. 20856 408 1 13944 2.99 2007-03-20 16:09:42.996577
  18626. 20857 408 2 14733 4.99 2007-03-21 20:50:59.996577
  18627. 20858 408 1 15628 2.99 2007-03-23 05:56:30.996577
  18628. 20859 408 2 15716 1.99 2007-03-23 09:30:26.996577
  18629. 20860 408 1 15765 6.99 2007-03-23 11:34:45.996577
  18630. 20861 409 2 12830 0.99 2007-03-19 00:08:51.996577
  18631. 20862 409 1 13392 8.99 2007-03-19 20:31:48.996577
  18632. 20863 409 2 13632 6.99 2007-03-20 05:39:18.996577
  18633. 20864 409 1 14103 1.99 2007-03-20 23:05:26.996577
  18634. 20865 409 1 14697 4.99 2007-03-21 19:17:47.996577
  18635. 20866 410 1 10402 4.99 2007-03-01 05:55:45.996577
  18636. 20867 410 1 10837 2.99 2007-03-01 21:58:48.996577
  18637. 20868 410 1 11107 0.99 2007-03-02 06:48:04.996577
  18638. 20869 410 1 11187 10.99 2007-03-02 09:44:45.996577
  18639. 20870 410 1 11472 6.99 2007-03-02 20:17:32.996577
  18640. 20871 410 1 11694 6.99 2007-03-17 05:25:56.996577
  18641. 20872 410 2 12955 8.99 2007-03-19 04:34:24.996577
  18642. 20873 410 1 13460 4.99 2007-03-19 23:16:50.996577
  18643. 20874 410 2 13748 2.99 2007-03-20 09:28:20.996577
  18644. 20875 410 2 13948 6.99 2007-03-20 16:19:14.996577
  18645. 20876 410 1 14237 3.99 2007-03-21 03:43:26.996577
  18646. 20877 410 2 14298 4.99 2007-03-21 05:45:36.996577
  18647. 20878 410 1 14319 4.99 2007-03-21 06:29:21.996577
  18648. 20879 410 2 14819 2.99 2007-03-21 23:45:45.996577
  18649. 20880 410 1 15211 2.99 2007-03-22 15:08:47.996577
  18650. 20881 410 2 15392 3.99 2007-03-22 21:30:41.996577
  18651. 20882 410 1 15518 4.99 2007-03-23 01:48:00.996577
  18652. 20883 411 2 11294 2.99 2007-03-02 13:36:53.996577
  18653. 20884 411 1 11997 5.99 2007-03-17 17:03:04.996577
  18654. 20885 411 2 13634 0.99 2007-03-20 05:45:11.996577
  18655. 20886 411 2 13656 7.99 2007-03-20 06:29:33.996577
  18656. 20887 411 2 14480 2.99 2007-03-21 12:05:06.996577
  18657. 20888 411 1 14772 5.99 2007-03-21 22:19:05.996577
  18658. 20889 411 2 14996 2.99 2007-03-22 06:21:07.996577
  18659. 20890 411 1 15936 0.99 2007-03-23 17:11:37.996577
  18660. 20891 412 2 10381 2.99 2007-03-01 05:05:03.996577
  18661. 20892 412 1 10467 5.99 2007-03-01 08:14:24.996577
  18662. 20893 412 2 11027 4.99 2007-03-02 04:15:36.996577
  18663. 20894 412 1 14068 3.99 2007-03-20 21:19:25.996577
  18664. 20895 412 1 14535 6.99 2007-03-21 13:51:03.996577
  18665. 20896 412 2 15354 4.99 2007-03-22 19:47:25.996577
  18666. 20897 412 2 15732 4.99 2007-03-23 10:03:38.996577
  18667. 20898 412 1 15781 8.99 2007-03-23 12:09:31.996577
  18668. 20899 413 1 10909 2.99 2007-03-02 00:22:25.996577
  18669. 20900 413 2 11304 2.99 2007-03-02 14:08:36.996577
  18670. 20901 413 1 11468 0.99 2007-03-02 20:15:52.996577
  18671. 20902 413 1 11532 0.99 2007-03-16 23:02:40.996577
  18672. 20903 413 2 12552 2.99 2007-03-18 13:15:00.996577
  18673. 20904 413 1 13010 3.99 2007-03-19 06:20:47.996577
  18674. 20905 413 1 13318 2.99 2007-03-19 18:02:23.996577
  18675. 20906 413 2 13824 4.99 2007-03-20 12:11:38.996577
  18676. 20907 413 2 13887 4.99 2007-03-20 14:07:26.996577
  18677. 20908 413 1 14773 2.99 2007-03-21 22:19:23.996577
  18678. 20909 413 1 15678 2.99 2007-03-23 07:52:11.996577
  18679. 20910 414 1 11706 0.99 2007-03-17 05:52:12.996577
  18680. 20911 414 2 12930 4.99 2007-03-19 03:39:58.996577
  18681. 20912 414 1 13042 0.99 2007-03-19 07:34:34.996577
  18682. 20913 414 1 13242 2.99 2007-03-19 14:57:13.996577
  18683. 20914 414 1 13308 7.99 2007-03-19 17:28:08.996577
  18684. 20915 414 1 13404 0.99 2007-03-19 20:47:08.996577
  18685. 20916 414 2 13494 2.99 2007-03-20 00:05:00.996577
  18686. 20917 414 2 13657 4.99 2007-03-20 06:30:05.996577
  18687. 20918 414 1 15140 6.99 2007-03-22 12:07:46.996577
  18688. 20919 414 2 15481 0.99 2007-03-23 00:27:40.996577
  18689. 20920 415 1 10263 5.99 2007-03-01 01:31:14.996577
  18690. 20921 415 1 10553 2.99 2007-03-01 11:22:32.996577
  18691. 20922 415 2 11310 1.99 2007-03-02 14:20:24.996577
  18692. 20923 415 2 12128 5.99 2007-03-17 21:59:35.996577
  18693. 20924 415 2 12588 2.99 2007-03-18 14:33:11.996577
  18694. 20925 415 2 13729 8.99 2007-03-20 08:45:34.996577
  18695. 20926 415 1 14992 4.99 2007-03-22 06:20:13.996577
  18696. 20927 415 2 15121 4.99 2007-03-22 11:15:03.996577
  18697. 20928 415 1 15959 0.99 2007-03-23 17:55:30.996577
  18698. 20929 416 1 10254 3.99 2007-03-01 01:10:29.996577
  18699. 20930 416 1 10354 2.99 2007-03-01 04:15:36.996577
  18700. 20931 416 1 10742 6.99 2007-03-01 18:21:39.996577
  18701. 20932 416 1 10937 6.99 2007-03-02 01:28:44.996577
  18702. 20933 416 2 11047 5.99 2007-03-02 04:37:46.996577
  18703. 20934 416 1 11557 6.99 2007-03-16 23:47:46.996577
  18704. 20935 416 1 12722 8.99 2007-03-18 20:02:19.996577
  18705. 20936 416 1 12932 4.99 2007-03-19 03:45:56.996577
  18706. 20937 416 1 14239 4.99 2007-03-21 03:47:23.996577
  18707. 20938 416 1 15235 1.99 2007-03-22 16:11:38.996577
  18708. 20939 416 2 15470 4.99 2007-03-23 00:03:38.996577
  18709. 20940 416 1 15727 2.99 2007-03-23 09:57:15.996577
  18710. 20941 416 2 15761 0.99 2007-03-23 11:24:17.996577
  18711. 20942 417 1 10478 0.99 2007-03-01 08:37:32.996577
  18712. 20943 417 1 11217 7.99 2007-03-02 10:54:57.996577
  18713. 20944 417 1 11291 6.99 2007-03-02 13:26:24.996577
  18714. 20945 417 2 11303 0.99 2007-03-02 14:07:44.996577
  18715. 20946 417 2 12074 0.99 2007-03-17 20:19:23.996577
  18716. 20947 417 2 12281 4.99 2007-03-18 03:18:58.996577
  18717. 20948 417 1 13545 4.99 2007-03-20 02:18:41.996577
  18718. 20949 417 1 13927 1.99 2007-03-20 15:40:24.996577
  18719. 20950 417 2 14121 4.99 2007-03-20 23:54:59.996577
  18720. 20951 417 1 14304 6.99 2007-03-21 05:51:36.996577
  18721. 20952 417 1 14607 2.99 2007-03-21 16:25:16.996577
  18722. 20953 417 2 14882 2.99 2007-03-22 02:20:47.996577
  18723. 20954 417 1 15795 0.99 2007-03-23 12:36:22.996577
  18724. 20955 418 2 10537 5.99 2007-03-01 10:50:54.996577
  18725. 20956 418 1 10709 0.99 2007-03-01 17:12:23.996577
  18726. 20957 418 2 10915 2.99 2007-03-02 00:33:30.996577
  18727. 20958 418 1 11270 2.99 2007-03-02 12:46:33.996577
  18728. 20959 418 2 11322 3.99 2007-03-02 14:51:43.996577
  18729. 20960 418 2 11409 1.99 2007-03-02 17:55:17.996577
  18730. 20961 418 1 11650 4.99 2007-03-17 03:28:29.996577
  18731. 20962 418 1 11769 2.99 2007-03-17 08:33:15.996577
  18732. 20963 418 1 11910 0.99 2007-03-17 14:13:03.996577
  18733. 20964 418 2 13312 0.99 2007-03-19 17:37:40.996577
  18734. 20965 418 1 13537 2.99 2007-03-20 02:07:41.996577
  18735. 20966 418 1 13970 0.99 2007-03-20 17:12:00.996577
  18736. 20967 418 1 14484 0.99 2007-03-21 12:15:55.996577
  18737. 20968 418 1 14836 4.99 2007-03-22 00:20:52.996577
  18738. 20969 418 2 14860 2.99 2007-03-22 01:15:33.996577
  18739. 20970 418 1 15466 4.99 2007-03-22 23:45:21.996577
  18740. 20971 418 2 15957 5.99 2007-03-23 17:49:48.996577
  18741. 20972 419 1 10372 2.99 2007-03-01 04:52:14.996577
  18742. 20973 419 2 11025 4.99 2007-03-02 04:07:38.996577
  18743. 20974 419 1 11313 2.99 2007-03-02 14:31:17.996577
  18744. 20975 419 2 11323 2.99 2007-03-02 14:58:23.996577
  18745. 20976 419 1 11425 2.99 2007-03-02 18:27:14.996577
  18746. 20977 419 2 11689 6.99 2007-03-17 05:10:34.996577
  18747. 20978 419 1 12460 7.99 2007-03-18 09:53:39.996577
  18748. 20979 419 1 12720 5.99 2007-03-18 19:57:08.996577
  18749. 20980 419 2 14308 0.99 2007-03-21 06:11:47.996577
  18750. 20981 419 2 15779 4.99 2007-03-23 12:02:12.996577
  18751. 20982 420 2 10291 4.99 2007-03-01 02:08:23.996577
  18752. 20983 420 2 10601 10.99 2007-03-01 12:54:06.996577
  18753. 20984 420 1 10766 4.99 2007-03-01 19:04:55.996577
  18754. 20985 420 2 11236 5.99 2007-03-02 11:45:47.996577
  18755. 20986 420 2 14525 0.99 2007-03-21 13:35:15.996577
  18756. 20987 420 2 15597 0.99 2007-03-23 04:49:46.996577
  18757. 20988 421 2 11089 2.99 2007-03-02 06:20:46.996577
  18758. 20989 421 1 11263 4.99 2007-03-02 12:30:45.996577
  18759. 20990 421 1 11523 3.99 2007-03-16 22:38:36.996577
  18760. 20991 421 1 12279 4.99 2007-03-18 03:15:56.996577
  18761. 20992 421 2 13461 9.99 2007-03-19 23:17:30.996577
  18762. 20993 421 1 13872 4.99 2007-03-20 13:38:56.996577
  18763. 20994 421 1 14742 4.99 2007-03-21 21:07:27.996577
  18764. 20995 421 1 14887 3.99 2007-03-22 02:32:57.996577
  18765. 20996 422 2 10833 6.99 2007-03-01 21:54:21.996577
  18766. 20997 422 2 11325 6.99 2007-03-02 15:01:37.996577
  18767. 20998 422 1 11658 2.99 2007-03-17 03:47:43.996577
  18768. 20999 422 1 11842 4.99 2007-03-17 11:42:03.996577
  18769. 21000 422 1 12907 9.99 2007-03-19 02:44:39.996577
  18770. 21001 422 2 13216 1.99 2007-03-19 14:04:31.996577
  18771. 21002 422 2 13625 1.99 2007-03-20 05:20:29.996577
  18772. 21003 422 2 13709 0.99 2007-03-20 08:03:17.996577
  18773. 21004 422 2 13722 4.99 2007-03-20 08:32:11.996577
  18774. 21005 422 1 14861 4.99 2007-03-22 01:16:31.996577
  18775. 21006 422 1 15272 3.99 2007-03-22 17:18:06.996577
  18776. 21007 422 1 15273 2.99 2007-03-22 17:21:54.996577
  18777. 21008 422 2 15316 2.99 2007-03-22 18:35:29.996577
  18778. 21009 423 1 10488 2.99 2007-03-01 08:55:53.996577
  18779. 21010 423 1 11091 2.99 2007-03-02 06:25:07.996577
  18780. 21011 423 2 11514 4.99 2007-03-16 22:21:36.996577
  18781. 21012 423 2 12806 4.99 2007-03-18 23:05:52.996577
  18782. 21013 423 2 14191 6.99 2007-03-21 02:04:24.996577
  18783. 21014 423 2 14902 4.99 2007-03-22 03:00:16.996577
  18784. 21015 423 1 15380 0.99 2007-03-22 20:56:41.996577
  18785. 21016 423 1 15755 4.99 2007-03-23 11:15:04.996577
  18786. 21017 424 2 10369 4.99 2007-03-01 04:42:10.996577
  18787. 21018 424 1 10866 2.99 2007-03-01 22:51:15.996577
  18788. 21019 424 2 11374 2.99 2007-03-02 16:43:20.996577
  18789. 21020 424 2 11562 6.99 2007-03-16 23:52:05.996577
  18790. 21021 424 2 11833 2.99 2007-03-17 11:28:59.996577
  18791. 21022 424 2 12729 0.99 2007-03-18 20:21:25.996577
  18792. 21023 424 2 13793 3.99 2007-03-20 10:50:30.996577
  18793. 21024 424 2 15113 0.99 2007-03-22 10:52:25.996577
  18794. 21025 424 2 15941 9.99 2007-03-23 17:15:10.996577
  18795. 21026 425 1 10545 0.99 2007-03-01 11:06:12.996577
  18796. 21027 425 2 13040 0.99 2007-03-19 07:32:50.996577
  18797. 21028 425 2 14089 5.99 2007-03-20 22:27:28.996577
  18798. 21029 425 2 14881 4.99 2007-03-22 02:16:05.996577
  18799. 21030 425 1 15064 0.99 2007-03-22 09:10:24.996577
  18800. 21031 425 2 15784 6.99 2007-03-23 12:14:26.996577
  18801. 21032 425 2 16036 2.99 2007-03-23 20:41:10.996577
  18802. 21033 426 1 10505 1.99 2007-03-01 09:42:25.996577
  18803. 21034 426 2 11237 0.99 2007-03-02 11:52:27.996577
  18804. 21035 426 2 11876 0.99 2007-03-17 12:46:47.996577
  18805. 21036 426 2 11938 6.99 2007-03-17 15:23:20.996577
  18806. 21037 426 2 12548 5.99 2007-03-18 13:03:52.996577
  18807. 21038 426 2 12707 4.99 2007-03-18 19:20:28.996577
  18808. 21039 426 1 12822 4.99 2007-03-18 23:43:50.996577
  18809. 21040 426 2 13834 2.99 2007-03-20 12:31:34.996577
  18810. 21041 426 2 14151 6.99 2007-03-21 00:51:51.996577
  18811. 21042 426 2 14826 2.99 2007-03-22 00:00:40.996577
  18812. 21043 427 1 10417 4.99 2007-03-01 06:39:02.996577
  18813. 21044 427 1 10464 5.99 2007-03-01 08:11:40.996577
  18814. 21045 427 2 10560 4.99 2007-03-01 11:33:23.996577
  18815. 21046 427 1 11024 5.99 2007-03-02 04:06:57.996577
  18816. 21047 427 1 13720 1.99 2007-03-20 08:30:05.996577
  18817. 21048 427 2 14201 6.99 2007-03-21 02:20:00.996577
  18818. 21049 427 1 14287 3.99 2007-03-21 05:22:25.996577
  18819. 21050 427 1 15330 3.99 2007-03-22 19:03:56.996577
  18820. 21051 428 2 10577 4.99 2007-03-01 12:15:04.996577
  18821. 21052 428 2 10888 2.99 2007-03-01 23:21:11.996577
  18822. 21053 428 2 11536 0.99 2007-03-16 23:08:29.996577
  18823. 21054 429 1 12259 2.99 2007-03-18 02:43:01.996577
  18824. 21055 429 1 12953 4.99 2007-03-19 04:32:33.996577
  18825. 21056 429 2 14495 4.99 2007-03-21 12:33:05.996577
  18826. 21057 430 1 12723 0.99 2007-03-18 20:02:42.996577
  18827. 21058 430 1 12965 4.99 2007-03-19 05:01:26.996577
  18828. 21059 430 1 13007 0.99 2007-03-19 06:16:09.996577
  18829. 21060 430 2 13452 0.99 2007-03-19 22:48:33.996577
  18830. 21061 430 2 13454 2.99 2007-03-19 22:59:18.996577
  18831. 21062 430 1 14058 5.99 2007-03-20 20:53:01.996577
  18832. 21063 430 1 15031 4.99 2007-03-22 07:40:14.996577
  18833. 21064 431 2 10508 0.99 2007-03-01 09:51:53.996577
  18834. 21065 431 1 10527 4.99 2007-03-01 10:24:20.996577
  18835. 21066 431 2 10959 6.99 2007-03-02 02:08:05.996577
  18836. 21067 431 2 11538 2.99 2007-03-16 23:12:30.996577
  18837. 21068 431 1 12273 6.99 2007-03-18 03:09:16.996577
  18838. 21069 431 2 13153 1.99 2007-03-19 11:38:13.996577
  18839. 21070 431 1 13784 4.99 2007-03-20 10:39:54.996577
  18840. 21071 431 1 15809 2.99 2007-03-23 13:10:33.996577
  18841. 21072 431 1 15960 2.99 2007-03-23 18:04:08.996577
  18842. 21073 432 2 11870 0.99 2007-03-17 12:39:54.996577
  18843. 21074 432 1 12767 6.99 2007-03-18 21:54:15.996577
  18844. 21075 432 1 14027 2.99 2007-03-20 19:50:00.996577
  18845. 21076 432 1 15523 4.99 2007-03-23 02:01:02.996577
  18846. 21077 432 1 15713 6.99 2007-03-23 09:24:41.996577
  18847. 21078 433 1 10663 4.99 2007-03-01 15:19:34.996577
  18848. 21079 433 1 11664 2.99 2007-03-17 04:04:18.996577
  18849. 21080 433 2 12669 6.99 2007-03-18 17:46:13.996577
  18850. 21081 433 2 13273 4.99 2007-03-19 16:17:39.996577
  18851. 21082 433 1 13801 4.99 2007-03-20 11:09:19.996577
  18852. 21083 433 2 14523 4.99 2007-03-21 13:32:11.996577
  18853. 21084 433 1 14559 6.99 2007-03-21 14:40:01.996577
  18854. 21085 433 2 15476 4.99 2007-03-23 00:13:33.996577
  18855. 21086 433 1 15502 5.99 2007-03-23 01:08:30.996577
  18856. 21087 434 1 11242 3.99 2007-03-02 12:00:26.996577
  18857. 21088 434 1 11867 2.99 2007-03-17 12:32:54.996577
  18858. 21089 434 2 12030 2.99 2007-03-17 18:39:14.996577
  18859. 21090 434 2 12146 2.99 2007-03-17 22:38:30.996577
  18860. 21091 434 2 12624 7.99 2007-03-18 16:03:26.996577
  18861. 21092 434 2 13359 9.99 2007-03-19 19:33:15.996577
  18862. 21093 434 1 13383 7.99 2007-03-19 20:07:10.996577
  18863. 21094 434 2 14553 4.99 2007-03-21 14:28:06.996577
  18864. 21095 434 2 15016 3.99 2007-03-22 07:16:01.996577
  18865. 21096 434 2 15385 4.99 2007-03-22 21:06:00.996577
  18866. 21097 435 1 10998 6.99 2007-03-02 03:19:21.996577
  18867. 21098 435 1 11041 2.99 2007-03-02 04:32:19.996577
  18868. 21099 435 1 11786 3.99 2007-03-17 09:26:06.996577
  18869. 21100 435 1 11796 0.99 2007-03-17 09:45:13.996577
  18870. 21101 435 2 12046 0.99 2007-03-17 19:16:12.996577
  18871. 21102 435 1 12741 4.99 2007-03-18 20:45:31.996577
  18872. 21103 435 2 13208 0.99 2007-03-19 13:47:21.996577
  18873. 21104 435 1 14696 4.99 2007-03-21 19:16:31.996577
  18874. 21105 435 1 14765 1.99 2007-03-21 22:08:54.996577
  18875. 21106 435 1 14850 0.99 2007-03-22 00:45:21.996577
  18876. 21107 435 1 15136 2.99 2007-03-22 11:47:51.996577
  18877. 21108 436 2 11160 0.99 2007-03-02 08:33:56.996577
  18878. 21109 436 1 11580 2.99 2007-03-17 00:27:33.996577
  18879. 21110 436 2 11615 4.99 2007-03-17 02:23:01.996577
  18880. 21111 436 2 11896 5.99 2007-03-17 13:48:20.996577
  18881. 21112 436 2 12297 0.99 2007-03-18 03:48:23.996577
  18882. 21113 436 2 12429 6.99 2007-03-18 08:55:12.996577
  18883. 21114 436 2 13099 9.99 2007-03-19 09:23:45.996577
  18884. 21115 436 2 13382 7.99 2007-03-19 20:07:07.996577
  18885. 21116 436 1 13533 3.99 2007-03-20 01:58:26.996577
  18886. 21117 436 1 13760 5.99 2007-03-20 09:54:59.996577
  18887. 21118 436 1 13814 0.99 2007-03-20 11:35:49.996577
  18888. 21119 436 2 13826 2.99 2007-03-20 12:15:04.996577
  18889. 21120 436 2 15766 4.99 2007-03-23 11:38:42.996577
  18890. 21121 437 2 10249 0.99 2007-03-01 01:04:05.996577
  18891. 21122 437 2 11417 3.99 2007-03-02 18:13:12.996577
  18892. 21123 437 1 12205 8.99 2007-03-18 00:49:34.996577
  18893. 21124 437 2 13838 7.99 2007-03-20 12:51:12.996577
  18894. 21125 437 1 13839 2.99 2007-03-20 12:51:42.996577
  18895. 21126 437 1 13905 1.99 2007-03-20 14:41:14.996577
  18896. 21127 437 1 14993 1.99 2007-03-22 06:20:44.996577
  18897. 21128 438 1 10512 6.99 2007-03-01 10:04:45.996577
  18898. 21129 438 1 10607 4.99 2007-03-01 13:13:09.996577
  18899. 21130 438 2 11644 4.99 2007-03-17 03:18:12.996577
  18900. 21131 438 2 11933 4.99 2007-03-17 15:06:46.996577
  18901. 21132 438 2 12654 0.99 2007-03-18 17:25:06.996577
  18902. 21133 438 2 13319 7.99 2007-03-19 18:03:39.996577
  18903. 21134 438 1 13414 4.99 2007-03-19 21:16:00.996577
  18904. 21135 438 2 14582 5.99 2007-03-21 15:36:59.996577
  18905. 21136 438 2 15893 5.99 2007-03-23 15:30:26.996577
  18906. 21137 439 2 10744 1.99 2007-03-01 18:25:15.996577
  18907. 21138 439 1 10905 2.99 2007-03-02 00:14:25.996577
  18908. 21139 439 2 11042 6.99 2007-03-02 04:32:59.996577
  18909. 21140 439 2 11544 5.99 2007-03-16 23:23:33.996577
  18910. 21141 439 1 11989 2.99 2007-03-17 16:52:24.996577
  18911. 21142 439 1 12621 2.99 2007-03-18 16:00:02.996577
  18912. 21143 439 2 12755 5.99 2007-03-18 21:07:13.996577
  18913. 21144 439 2 12826 3.99 2007-03-18 23:53:37.996577
  18914. 21145 439 2 13358 4.99 2007-03-19 19:32:46.996577
  18915. 21146 439 2 14730 5.99 2007-03-21 20:49:37.996577
  18916. 21147 439 2 15044 9.99 2007-03-22 08:20:20.996577
  18917. 21148 439 2 15162 4.99 2007-03-22 13:09:31.996577
  18918. 21149 439 2 15653 4.99 2007-03-23 07:03:08.996577
  18919. 21150 439 1 15818 1.99 2007-03-23 13:28:24.996577
  18920. 21151 439 1 16018 0.99 2007-03-23 19:56:01.996577
  18921. 21152 440 2 12403 6.99 2007-03-18 07:59:31.996577
  18922. 21153 440 1 12850 0.99 2007-03-19 00:36:32.996577
  18923. 21154 440 2 13384 4.99 2007-03-19 20:07:17.996577
  18924. 21155 440 2 13779 2.99 2007-03-20 10:32:20.996577
  18925. 21156 440 1 14555 0.99 2007-03-21 14:31:28.996577
  18926. 21157 440 2 14863 7.99 2007-03-22 01:25:30.996577
  18927. 21158 440 2 15264 0.99 2007-03-22 16:56:04.996577
  18928. 21159 440 1 15925 4.99 2007-03-23 16:43:32.996577
  18929. 21160 441 1 10846 1.99 2007-03-01 22:16:20.996577
  18930. 21161 441 2 11247 1.99 2007-03-02 12:02:34.996577
  18931. 21162 441 2 13483 2.99 2007-03-19 23:45:04.996577
  18932. 21163 441 2 13739 4.99 2007-03-20 09:13:36.996577
  18933. 21164 441 1 13932 4.99 2007-03-20 15:45:26.996577
  18934. 21165 441 2 14796 4.99 2007-03-21 23:09:15.996577
  18935. 21166 441 2 15070 3.99 2007-03-22 09:24:11.996577
  18936. 21167 442 2 10365 6.99 2007-03-01 04:37:10.996577
  18937. 21168 442 2 10452 0.99 2007-03-01 07:40:02.996577
  18938. 21169 442 1 12948 0.99 2007-03-19 04:23:40.996577
  18939. 21170 442 2 13004 0.99 2007-03-19 06:08:34.996577
  18940. 21171 442 1 13155 7.99 2007-03-19 11:38:49.996577
  18941. 21172 442 2 14199 0.99 2007-03-21 02:17:09.996577
  18942. 21173 442 1 14418 1.99 2007-03-21 09:42:52.996577
  18943. 21174 442 1 14466 0.99 2007-03-21 11:31:39.996577
  18944. 21175 442 2 15207 2.99 2007-03-22 15:03:51.996577
  18945. 21176 443 2 10360 0.99 2007-03-01 04:21:19.996577
  18946. 21177 443 1 11449 4.99 2007-03-02 19:13:09.996577
  18947. 21178 443 1 12415 4.99 2007-03-18 08:22:27.996577
  18948. 21179 443 2 12857 4.99 2007-03-19 00:48:39.996577
  18949. 21180 443 1 13489 2.99 2007-03-19 23:57:32.996577
  18950. 21181 443 1 14561 2.99 2007-03-21 14:49:09.996577
  18951. 21182 443 2 14611 6.99 2007-03-21 16:30:07.996577
  18952. 21183 443 1 15182 0.99 2007-03-22 14:15:31.996577
  18953. 21184 443 2 15393 4.99 2007-03-22 21:32:35.996577
  18954. 21185 443 1 15519 0.99 2007-03-23 01:51:58.996577
  18955. 21186 444 1 10529 4.99 2007-03-01 10:28:28.996577
  18956. 21187 444 1 10693 4.99 2007-03-01 16:42:40.996577
  18957. 21188 444 2 11353 0.99 2007-03-02 16:03:11.996577
  18958. 21189 444 2 11419 6.99 2007-03-02 18:15:04.996577
  18959. 21190 444 1 11728 4.99 2007-03-17 06:40:52.996577
  18960. 21191 444 1 12161 6.99 2007-03-17 23:10:12.996577
  18961. 21192 444 2 12712 2.99 2007-03-18 19:32:39.996577
  18962. 21193 444 2 12946 2.99 2007-03-19 04:22:00.996577
  18963. 21194 444 1 13488 0.99 2007-03-19 23:57:08.996577
  18964. 21195 444 2 13559 2.99 2007-03-20 02:44:33.996577
  18965. 21196 444 1 13924 0.99 2007-03-20 15:33:44.996577
  18966. 21197 444 1 15249 4.99 2007-03-22 16:26:53.996577
  18967. 21198 444 1 15557 0.99 2007-03-23 03:20:43.996577
  18968. 21199 444 2 15815 4.99 2007-03-23 13:24:13.996577
  18969. 21200 445 2 10334 1.99 2007-03-01 03:27:08.996577
  18970. 21201 445 2 10341 0.99 2007-03-01 03:38:28.996577
  18971. 21202 445 2 10936 9.99 2007-03-02 01:23:30.996577
  18972. 21203 445 1 11383 7.99 2007-03-02 16:50:31.996577
  18973. 21204 445 1 11868 4.99 2007-03-17 12:34:00.996577
  18974. 21205 445 1 11877 3.99 2007-03-17 12:49:37.996577
  18975. 21206 445 2 13586 0.99 2007-03-20 04:08:59.996577
  18976. 21207 445 1 14612 6.99 2007-03-21 16:31:41.996577
  18977. 21208 445 2 14673 2.99 2007-03-21 18:29:44.996577
  18978. 21209 445 1 14866 6.99 2007-03-22 01:40:01.996577
  18979. 21210 445 1 14955 4.99 2007-03-22 04:54:18.996577
  18980. 21211 445 1 15123 3.99 2007-03-22 11:17:10.996577
  18981. 21212 445 1 15791 6.99 2007-03-23 12:30:39.996577
  18982. 21213 445 2 15906 2.99 2007-03-23 16:04:26.996577
  18983. 21214 446 1 11051 3.99 2007-03-02 04:52:05.996577
  18984. 21215 446 2 12253 0.99 2007-03-18 02:29:16.996577
  18985. 21216 446 2 12480 8.99 2007-03-18 10:55:09.996577
  18986. 21217 446 1 15808 1.99 2007-03-23 13:07:03.996577
  18987. 21218 446 2 15951 0.99 2007-03-23 17:38:58.996577
  18988. 21219 447 1 10425 2.99 2007-03-01 06:51:51.996577
  18989. 21220 447 2 10957 5.99 2007-03-02 02:01:56.996577
  18990. 21221 447 2 11108 0.99 2007-03-02 06:48:27.996577
  18991. 21222 447 1 11465 5.99 2007-03-02 20:12:18.996577
  18992. 21223 447 2 12511 0.99 2007-03-18 11:51:45.996577
  18993. 21224 447 1 13072 2.99 2007-03-19 08:31:56.996577
  18994. 21225 447 2 13110 0.99 2007-03-19 09:53:03.996577
  18995. 21226 447 1 13848 4.99 2007-03-20 13:06:15.996577
  18996. 21227 447 2 14443 5.99 2007-03-21 10:34:58.996577
  18997. 21228 447 1 15108 2.99 2007-03-22 10:38:33.996577
  18998. 21229 447 1 15997 4.99 2007-03-23 19:08:57.996577
  18999. 21230 447 2 16032 4.99 2007-03-23 20:28:23.996577
  19000. 21231 448 2 11608 8.99 2007-03-17 02:05:18.996577
  19001. 21232 448 1 11798 9.99 2007-03-17 09:50:09.996577
  19002. 21233 448 1 12446 2.99 2007-03-18 09:24:55.996577
  19003. 21234 448 1 13220 2.99 2007-03-19 14:10:58.996577
  19004. 21235 448 2 13250 3.99 2007-03-19 15:16:21.996577
  19005. 21236 448 1 13982 3.99 2007-03-20 17:36:51.996577
  19006. 21237 448 1 14580 3.99 2007-03-21 15:25:05.996577
  19007. 21238 448 1 14711 2.99 2007-03-21 19:50:33.996577
  19008. 21239 448 2 15358 9.99 2007-03-22 19:57:40.996577
  19009. 21240 448 1 15427 4.99 2007-03-22 22:36:19.996577
  19010. 21241 449 2 10409 2.99 2007-03-01 06:17:41.996577
  19011. 21242 449 1 10416 4.99 2007-03-01 06:37:05.996577
  19012. 21243 449 1 10516 6.99 2007-03-01 10:10:21.996577
  19013. 21244 449 2 10688 6.99 2007-03-01 16:22:09.996577
  19014. 21245 449 1 12212 4.99 2007-03-18 01:01:55.996577
  19015. 21246 449 2 14962 7.99 2007-03-22 05:06:09.996577
  19016. 21247 450 2 10432 2.99 2007-03-01 07:11:47.996577
  19017. 21248 450 1 10984 3.99 2007-03-02 02:58:28.996577
  19018. 21249 450 2 12812 0.99 2007-03-18 23:22:28.996577
  19019. 21250 450 2 13731 4.99 2007-03-20 08:50:34.996577
  19020. 21251 450 1 13810 0.99 2007-03-20 11:28:04.996577
  19021. 21252 450 1 13828 4.99 2007-03-20 12:18:18.996577
  19022. 21253 450 1 14282 4.99 2007-03-21 05:09:55.996577
  19023. 21254 450 2 15019 0.99 2007-03-22 07:21:19.996577
  19024. 21255 450 1 15327 4.99 2007-03-22 18:59:50.996577
  19025. 21256 450 2 15419 4.99 2007-03-22 22:23:02.996577
  19026. 21257 451 2 10337 8.99 2007-03-01 03:30:12.996577
  19027. 21258 451 1 10856 2.99 2007-03-01 22:35:40.996577
  19028. 21259 451 2 10950 2.99 2007-03-02 01:53:34.996577
  19029. 21260 451 2 11167 6.99 2007-03-02 08:44:17.996577
  19030. 21261 451 2 11381 6.99 2007-03-02 16:47:55.996577
  19031. 21262 451 1 11790 2.99 2007-03-17 09:28:34.996577
  19032. 21263 451 2 12371 2.99 2007-03-18 06:31:12.996577
  19033. 21264 451 1 12422 4.99 2007-03-18 08:41:38.996577
  19034. 21265 451 2 13003 1.99 2007-03-19 06:07:55.996577
  19035. 21266 451 2 13100 2.99 2007-03-19 09:24:11.996577
  19036. 21267 451 2 13252 2.99 2007-03-19 15:19:16.996577
  19037. 21268 451 2 13380 0.99 2007-03-19 20:05:24.996577
  19038. 21269 451 1 13666 2.99 2007-03-20 06:48:45.996577
  19039. 21270 451 1 13705 2.99 2007-03-20 08:00:49.996577
  19040. 21271 451 2 14500 0.99 2007-03-21 12:39:56.996577
  19041. 21272 451 1 15651 4.99 2007-03-23 07:00:15.996577
  19042. 21273 452 2 11715 4.99 2007-03-17 06:09:21.996577
  19043. 21274 452 1 11735 3.99 2007-03-17 07:04:08.996577
  19044. 21275 452 1 12355 0.99 2007-03-18 06:04:49.996577
  19045. 21276 452 1 12630 4.99 2007-03-18 16:17:54.996577
  19046. 21277 452 1 13080 4.99 2007-03-19 08:46:26.996577
  19047. 21278 452 1 13642 3.99 2007-03-20 06:10:43.996577
  19048. 21279 452 1 14660 0.99 2007-03-21 18:11:47.996577
  19049. 21280 452 1 15909 0.99 2007-03-23 16:11:08.996577
  19050. 21281 453 1 11794 4.99 2007-03-17 09:37:14.996577
  19051. 21282 453 1 12703 2.99 2007-03-18 19:05:39.996577
  19052. 21283 453 1 13711 7.99 2007-03-20 08:03:46.996577
  19053. 21284 453 1 13785 4.99 2007-03-20 10:40:12.996577
  19054. 21285 453 1 14133 2.99 2007-03-21 00:12:40.996577
  19055. 21286 453 2 14306 5.99 2007-03-21 06:01:01.996577
  19056. 21287 453 2 14644 4.99 2007-03-21 17:40:38.996577
  19057. 21288 453 1 14652 4.99 2007-03-21 18:00:31.996577
  19058. 21289 453 1 15252 0.99 2007-03-22 16:32:48.996577
  19059. 21290 453 2 15627 4.99 2007-03-23 05:54:04.996577
  19060. 21291 454 2 12347 0.99 2007-03-18 05:46:36.996577
  19061. 21292 454 1 12553 0.99 2007-03-18 13:15:20.996577
  19062. 21293 454 2 13496 8.99 2007-03-20 00:10:55.996577
  19063. 21294 454 2 13513 2.99 2007-03-20 00:56:19.996577
  19064. 21295 454 2 13694 8.99 2007-03-20 07:41:49.996577
  19065. 21296 454 1 13805 6.99 2007-03-20 11:21:38.996577
  19066. 21297 454 1 14799 0.99 2007-03-21 23:13:23.996577
  19067. 21298 454 2 14843 2.99 2007-03-22 00:33:51.996577
  19068. 21299 454 2 15012 4.99 2007-03-22 07:10:58.996577
  19069. 21300 454 1 15301 3.99 2007-03-22 18:12:42.996577
  19070. 21301 454 2 15608 1.99 2007-03-23 05:23:52.996577
  19071. 21302 455 1 10436 0.99 2007-03-01 07:19:25.996577
  19072. 21303 455 1 11605 4.99 2007-03-17 01:59:23.996577
  19073. 21304 455 1 12163 2.99 2007-03-17 23:14:27.996577
  19074. 21305 455 1 12314 4.99 2007-03-18 04:38:28.996577
  19075. 21306 455 2 13083 2.99 2007-03-19 08:55:11.996577
  19076. 21307 455 2 13813 4.99 2007-03-20 11:31:52.996577
  19077. 21308 455 1 14294 2.99 2007-03-21 05:35:52.996577
  19078. 21309 455 2 14583 4.99 2007-03-21 15:40:13.996577
  19079. 21310 455 1 15494 1.99 2007-03-23 00:53:35.996577
  19080. 21311 456 2 10519 5.99 2007-03-01 10:12:39.996577
  19081. 21312 456 1 10813 2.99 2007-03-01 21:11:26.996577
  19082. 21313 456 1 12188 4.99 2007-03-18 00:20:09.996577
  19083. 21314 456 1 13144 8.99 2007-03-19 11:14:21.996577
  19084. 21315 456 1 13348 4.99 2007-03-19 19:00:14.996577
  19085. 21316 456 1 13547 4.99 2007-03-20 02:21:42.996577
  19086. 21317 456 2 14253 2.99 2007-03-21 04:16:18.996577
  19087. 21318 456 2 14690 1.99 2007-03-21 19:10:51.996577
  19088. 21319 456 1 15720 3.99 2007-03-23 09:43:46.996577
  19089. 21320 456 1 15910 2.99 2007-03-23 16:11:42.996577
  19090. 21321 457 2 11956 6.99 2007-03-17 15:50:31.996577
  19091. 21322 457 1 12115 4.99 2007-03-17 21:32:41.996577
  19092. 21323 457 1 12171 4.99 2007-03-17 23:34:39.996577
  19093. 21324 457 1 13088 0.99 2007-03-19 09:04:37.996577
  19094. 21325 457 1 13150 2.99 2007-03-19 11:36:45.996577
  19095. 21326 457 2 13934 0.99 2007-03-20 15:47:14.996577
  19096. 21327 457 2 14327 10.99 2007-03-21 06:46:44.996577
  19097. 21328 457 1 14365 6.99 2007-03-21 07:53:39.996577
  19098. 21329 457 1 15128 3.99 2007-03-22 11:25:52.996577
  19099. 21330 458 2 11138 2.99 2007-03-02 07:54:42.996577
  19100. 21331 458 2 11975 2.99 2007-03-17 16:27:05.996577
  19101. 21332 458 2 12768 0.99 2007-03-18 21:54:37.996577
  19102. 21333 458 2 13259 2.99 2007-03-19 15:37:19.996577
  19103. 21334 458 2 13487 2.99 2007-03-19 23:55:31.996577
  19104. 21335 458 2 13571 4.99 2007-03-20 03:33:40.996577
  19105. 21336 458 2 14428 4.99 2007-03-21 09:55:33.996577
  19106. 21337 458 1 15604 4.99 2007-03-23 05:12:45.996577
  19107. 21338 459 1 10233 6.99 2007-03-01 00:22:49.996577
  19108. 21339 459 2 10255 4.99 2007-03-01 01:14:39.996577
  19109. 21340 459 1 10499 7.99 2007-03-01 09:28:46.996577
  19110. 21341 459 1 10531 2.99 2007-03-01 10:34:56.996577
  19111. 21342 459 1 12527 6.99 2007-03-18 12:17:12.996577
  19112. 21343 459 1 12629 7.99 2007-03-18 16:08:59.996577
  19113. 21344 459 2 13960 10.99 2007-03-20 16:44:52.996577
  19114. 21345 459 1 13967 4.99 2007-03-20 16:57:12.996577
  19115. 21346 459 1 14315 3.99 2007-03-21 06:25:05.996577
  19116. 21347 459 1 15126 5.99 2007-03-22 11:22:24.996577
  19117. 21348 459 2 15342 2.99 2007-03-22 19:25:07.996577
  19118. 21349 459 1 15814 0.99 2007-03-23 13:21:16.996577
  19119. 21350 460 2 10754 10.99 2007-03-01 18:40:59.996577
  19120. 21351 460 1 10926 1.99 2007-03-02 00:55:03.996577
  19121. 21352 460 2 11554 2.99 2007-03-16 23:33:43.996577
  19122. 21353 460 1 12056 5.99 2007-03-17 19:32:14.996577
  19123. 21354 460 2 12586 4.99 2007-03-18 14:23:05.996577
  19124. 21355 460 1 12865 0.99 2007-03-19 01:07:16.996577
  19125. 21356 460 2 13215 8.99 2007-03-19 14:04:04.996577
  19126. 21357 460 1 13341 3.99 2007-03-19 18:47:19.996577
  19127. 21358 460 2 13920 5.99 2007-03-20 15:19:44.996577
  19128. 21359 460 2 14864 0.99 2007-03-22 01:25:32.996577
  19129. 21360 460 1 14923 3.99 2007-03-22 03:41:59.996577
  19130. 21361 460 2 15954 2.99 2007-03-23 17:42:33.996577
  19131. 21362 461 1 10260 2.99 2007-03-01 01:26:33.996577
  19132. 21363 461 2 11063 0.99 2007-03-02 05:22:14.996577
  19133. 21364 461 2 11219 0.99 2007-03-02 10:58:46.996577
  19134. 21365 461 2 12022 2.99 2007-03-17 18:21:11.996577
  19135. 21366 461 1 13223 2.99 2007-03-19 14:20:30.996577
  19136. 21367 461 1 13269 2.99 2007-03-19 16:02:26.996577
  19137. 21368 461 1 14186 4.99 2007-03-21 01:59:33.996577
  19138. 21369 461 1 14893 4.99 2007-03-22 02:44:14.996577
  19139. 21370 461 1 15067 2.99 2007-03-22 09:17:47.996577
  19140. 21371 461 2 15187 4.99 2007-03-22 14:21:58.996577
  19141. 21372 461 1 15336 6.99 2007-03-22 19:16:14.996577
  19142. 21373 461 2 15411 2.99 2007-03-22 22:04:07.996577
  19143. 21374 461 2 15449 2.99 2007-03-22 23:24:09.996577
  19144. 21375 461 2 15613 7.99 2007-03-23 05:31:45.996577
  19145. 21376 462 1 10283 2.99 2007-03-01 01:58:11.996577
  19146. 21377 462 2 11639 6.99 2007-03-17 03:11:55.996577
  19147. 21378 462 1 11808 2.99 2007-03-17 10:19:42.996577
  19148. 21379 462 1 12466 4.99 2007-03-18 10:05:21.996577
  19149. 21380 462 2 12582 0.99 2007-03-18 14:19:38.996577
  19150. 21381 462 1 12802 8.99 2007-03-18 22:56:07.996577
  19151. 21382 462 2 13041 8.99 2007-03-19 07:34:04.996577
  19152. 21383 462 1 13328 4.99 2007-03-19 18:24:27.996577
  19153. 21384 462 1 13492 7.99 2007-03-20 00:00:30.996577
  19154. 21385 462 2 15581 2.99 2007-03-23 04:10:39.996577
  19155. 21386 462 1 15943 2.99 2007-03-23 17:17:58.996577
  19156. 21387 462 1 16013 0.99 2007-03-23 19:45:43.996577
  19157. 21388 463 1 10275 3.99 2007-03-01 01:48:34.996577
  19158. 21389 463 2 10405 0.99 2007-03-01 06:03:51.996577
  19159. 21390 463 2 10906 2.99 2007-03-02 00:15:30.996577
  19160. 21391 463 2 12096 7.99 2007-03-17 21:01:16.996577
  19161. 21392 463 2 12679 6.99 2007-03-18 18:10:37.996577
  19162. 21393 463 1 12950 2.99 2007-03-19 04:24:24.996577
  19163. 21394 463 2 13938 4.99 2007-03-20 15:53:11.996577
  19164. 21395 463 1 14689 0.99 2007-03-21 19:01:26.996577
  19165. 21396 463 1 14859 2.99 2007-03-22 01:15:01.996577
  19166. 21397 463 2 15151 7.99 2007-03-22 12:51:37.996577
  19167. 21398 464 2 11275 1.99 2007-03-02 12:54:24.996577
  19168. 21399 464 1 13644 8.99 2007-03-20 06:14:56.996577
  19169. 21400 464 2 13943 2.99 2007-03-20 15:59:44.996577
  19170. 21401 464 1 15092 6.99 2007-03-22 10:04:42.996577
  19171. 21402 464 2 15854 0.99 2007-03-23 14:26:31.996577
  19172. 21403 464 1 15983 4.99 2007-03-23 18:42:04.996577
  19173. 21404 465 1 10542 3.99 2007-03-01 11:00:49.996577
  19174. 21405 465 1 11156 2.99 2007-03-02 08:24:32.996577
  19175. 21406 465 1 11586 4.99 2007-03-17 00:49:08.996577
  19176. 21407 465 2 11648 6.99 2007-03-17 03:24:42.996577
  19177. 21408 465 2 12106 4.99 2007-03-17 21:23:58.996577
  19178. 21409 465 1 12814 4.99 2007-03-18 23:26:50.996577
  19179. 21410 465 1 12864 4.99 2007-03-19 01:06:52.996577
  19180. 21411 465 1 15550 3.99 2007-03-23 02:56:20.996577
  19181. 21412 465 2 15859 4.99 2007-03-23 14:36:41.996577
  19182. 21413 466 1 10469 4.99 2007-03-01 08:19:37.996577
  19183. 21414 466 2 11343 0.99 2007-03-02 15:40:56.996577
  19184. 21415 466 1 11359 4.99 2007-03-02 16:14:21.996577
  19185. 21416 466 1 12048 7.99 2007-03-17 19:17:50.996577
  19186. 21417 466 1 13478 2.99 2007-03-19 23:35:40.996577
  19187. 21418 466 1 13884 5.99 2007-03-20 13:59:17.996577
  19188. 21419 466 1 13988 4.99 2007-03-20 17:49:54.996577
  19189. 21420 466 2 14546 2.99 2007-03-21 14:19:16.996577
  19190. 21421 466 2 15230 4.99 2007-03-22 16:00:07.996577
  19191. 21422 466 1 16005 7.99 2007-03-23 19:28:48.996577
  19192. 21423 467 2 10239 0.99 2007-03-01 00:37:48.996577
  19193. 21424 467 2 11332 2.99 2007-03-02 15:21:23.996577
  19194. 21425 467 1 11874 4.99 2007-03-17 12:45:06.996577
  19195. 21426 467 1 12266 2.99 2007-03-18 02:50:57.996577
  19196. 21427 467 1 12437 9.99 2007-03-18 09:11:09.996577
  19197. 21428 467 1 12641 2.99 2007-03-18 16:46:34.996577
  19198. 21429 467 1 14402 2.99 2007-03-21 09:06:43.996577
  19199. 21430 467 1 14451 0.99 2007-03-21 10:50:10.996577
  19200. 21431 467 1 14842 3.99 2007-03-22 00:33:04.996577
  19201. 21432 467 1 15032 0.99 2007-03-22 07:42:35.996577
  19202. 21433 467 2 15830 2.99 2007-03-23 13:47:41.996577
  19203. 21434 468 2 11257 10.99 2007-03-02 12:13:31.996577
  19204. 21435 468 2 11633 4.99 2007-03-17 02:58:35.996577
  19205. 21436 468 2 12026 6.99 2007-03-17 18:28:36.996577
  19206. 21437 468 2 13221 3.99 2007-03-19 14:14:13.996577
  19207. 21438 468 1 13417 0.99 2007-03-19 21:20:05.996577
  19208. 21439 468 2 14154 4.99 2007-03-21 00:58:26.996577
  19209. 21440 468 2 14210 4.99 2007-03-21 02:56:28.996577
  19210. 21441 468 1 14309 9.99 2007-03-21 06:12:43.996577
  19211. 21442 468 1 14313 2.99 2007-03-21 06:18:19.996577
  19212. 21443 468 1 14614 9.99 2007-03-21 16:32:17.996577
  19213. 21444 468 2 15435 4.99 2007-03-22 22:56:45.996577
  19214. 21445 468 1 15522 1.99 2007-03-23 02:00:57.996577
  19215. 21446 468 1 15836 2.99 2007-03-23 13:57:43.996577
  19216. 21447 468 2 16044 0.99 2007-03-23 20:53:05.996577
  19217. 21448 469 1 10258 4.99 2007-03-01 01:19:35.996577
  19218. 21449 469 1 10316 4.99 2007-03-01 03:03:23.996577
  19219. 21450 469 1 10658 2.99 2007-03-01 15:07:44.996577
  19220. 21451 469 1 10741 2.99 2007-03-01 18:21:18.996577
  19221. 21452 469 2 11185 0.99 2007-03-02 09:33:01.996577
  19222. 21453 469 2 12035 0.99 2007-03-17 18:46:32.996577
  19223. 21454 469 1 12447 4.99 2007-03-18 09:25:27.996577
  19224. 21455 469 1 12633 6.99 2007-03-18 16:24:04.996577
  19225. 21456 469 1 13654 4.99 2007-03-20 06:26:47.996577
  19226. 21457 469 1 13763 2.99 2007-03-20 10:06:22.996577
  19227. 21458 469 2 14197 7.99 2007-03-21 02:15:51.996577
  19228. 21459 469 2 14661 2.99 2007-03-21 18:12:47.996577
  19229. 21460 469 1 15487 4.99 2007-03-23 00:34:17.996577
  19230. 21461 469 1 15561 9.99 2007-03-23 03:30:57.996577
  19231. 21462 469 1 15851 2.99 2007-03-23 14:14:59.996577
  19232. 21463 470 1 10236 0.99 2007-03-01 00:34:00.996577
  19233. 21464 470 2 10944 4.99 2007-03-02 01:48:29.996577
  19234. 21465 470 2 11397 1.99 2007-03-02 17:21:40.996577
  19235. 21466 470 2 11711 2.99 2007-03-17 05:59:21.996577
  19236. 21467 470 1 11742 0.99 2007-03-17 07:17:09.996577
  19237. 21468 470 2 12177 3.99 2007-03-17 23:44:13.996577
  19238. 21469 470 2 12423 8.99 2007-03-18 08:43:18.996577
  19239. 21470 470 1 12753 10.99 2007-03-18 21:06:05.996577
  19240. 21471 470 2 13585 4.99 2007-03-20 04:00:49.996577
  19241. 21472 470 1 13592 4.99 2007-03-20 04:19:01.996577
  19242. 21473 470 2 14405 4.99 2007-03-21 09:13:27.996577
  19243. 21474 471 1 10430 2.99 2007-03-01 07:05:32.996577
  19244. 21475 471 2 10828 3.99 2007-03-01 21:44:36.996577
  19245. 21476 471 2 11601 4.99 2007-03-17 01:43:13.996577
  19246. 21477 471 1 12271 4.99 2007-03-18 03:01:37.996577
  19247. 21478 471 1 13661 5.99 2007-03-20 06:34:25.996577
  19248. 21479 471 1 14085 7.99 2007-03-20 22:14:50.996577
  19249. 21480 471 1 14094 4.99 2007-03-20 22:50:01.996577
  19250. 21481 471 1 14317 5.99 2007-03-21 06:29:06.996577
  19251. 21482 471 2 14538 2.99 2007-03-21 13:56:41.996577
  19252. 21483 471 2 14942 7.99 2007-03-22 04:26:53.996577
  19253. 21484 471 2 15184 0.99 2007-03-22 14:19:38.996577
  19254. 21485 471 1 15654 1.99 2007-03-23 07:03:19.996577
  19255. 21486 472 1 10282 6.99 2007-03-01 01:57:36.996577
  19256. 21487 472 1 10627 0.99 2007-03-01 14:01:29.996577
  19257. 21488 472 1 11911 6.99 2007-03-17 14:20:01.996577
  19258. 21489 472 2 12763 4.99 2007-03-18 21:35:27.996577
  19259. 21490 472 2 13188 8.99 2007-03-19 12:55:29.996577
  19260. 21491 472 1 14209 4.99 2007-03-21 02:46:22.996577
  19261. 21492 472 2 14596 4.99 2007-03-21 16:07:03.996577
  19262. 21493 472 1 14597 4.99 2007-03-21 16:08:07.996577
  19263. 21494 472 2 15185 5.99 2007-03-22 14:21:16.996577
  19264. 21495 472 2 15278 2.99 2007-03-22 17:35:13.996577
  19265. 21496 473 1 10867 2.99 2007-03-01 22:52:41.996577
  19266. 21497 473 2 11006 2.99 2007-03-02 03:34:18.996577
  19267. 21498 473 1 11216 4.99 2007-03-02 10:52:09.996577
  19268. 21499 473 1 11336 0.99 2007-03-02 15:27:22.996577
  19269. 21500 473 2 11421 7.99 2007-03-02 18:20:19.996577
  19270. 21501 473 1 11741 0.99 2007-03-17 07:17:05.996577
  19271. 21502 473 2 13984 4.99 2007-03-20 17:40:56.996577
  19272. 21503 473 2 14202 0.99 2007-03-21 02:20:18.996577
  19273. 21504 473 2 14550 0.99 2007-03-21 14:25:05.996577
  19274. 21505 473 2 14658 4.99 2007-03-21 18:10:16.996577
  19275. 21506 473 2 14757 4.99 2007-03-21 21:52:03.996577
  19276. 21507 473 1 15118 4.99 2007-03-22 11:07:03.996577
  19277. 21508 473 2 15400 2.99 2007-03-22 21:41:29.996577
  19278. 21509 473 2 16024 4.99 2007-03-23 20:15:13.996577
  19279. 21510 474 2 10376 5.99 2007-03-01 04:55:39.996577
  19280. 21511 474 2 11117 0.99 2007-03-02 07:04:29.996577
  19281. 21512 474 1 11489 2.99 2007-03-02 21:03:54.996577
  19282. 21513 474 2 11537 2.99 2007-03-16 23:09:34.996577
  19283. 21514 474 1 12083 2.99 2007-03-17 20:42:03.996577
  19284. 21515 474 1 12236 4.99 2007-03-18 01:47:55.996577
  19285. 21516 474 1 12440 0.99 2007-03-18 09:16:01.996577
  19286. 21517 474 2 12597 2.99 2007-03-18 15:02:28.996577
  19287. 21518 474 1 12702 4.99 2007-03-18 18:58:59.996577
  19288. 21519 474 1 14728 0.99 2007-03-21 20:44:02.996577
  19289. 21520 474 2 15046 4.99 2007-03-22 08:23:20.996577
  19290. 21521 474 1 15558 6.99 2007-03-23 03:20:48.996577
  19291. 21522 475 1 10357 0.99 2007-03-01 04:18:15.996577
  19292. 21523 475 1 10633 3.99 2007-03-01 14:05:43.996577
  19293. 21524 475 1 11293 5.99 2007-03-02 13:29:09.996577
  19294. 21525 475 1 11770 4.99 2007-03-17 08:33:31.996577
  19295. 21526 475 2 14303 2.99 2007-03-21 05:51:09.996577
  19296. 21527 475 1 15097 1.99 2007-03-22 10:12:08.996577
  19297. 21528 475 1 15288 4.99 2007-03-22 17:52:24.996577
  19298. 21529 476 1 10346 4.99 2007-03-01 03:47:49.996577
  19299. 21530 476 1 10617 9.99 2007-03-01 13:34:18.996577
  19300. 21531 476 1 10826 6.99 2007-03-01 21:36:22.996577
  19301. 21532 476 1 12616 4.99 2007-03-18 15:51:07.996577
  19302. 21533 476 2 12709 5.99 2007-03-18 19:28:17.996577
  19303. 21534 476 1 15413 0.99 2007-03-22 22:06:27.996577
  19304. 21535 477 1 10500 4.99 2007-03-01 09:29:27.996577
  19305. 21536 477 2 10912 0.99 2007-03-02 00:28:29.996577
  19306. 21537 477 2 12420 4.99 2007-03-18 08:30:16.996577
  19307. 21538 477 1 13002 0.99 2007-03-19 06:06:24.996577
  19308. 21539 477 2 14552 3.99 2007-03-21 14:27:53.996577
  19309. 21540 477 2 15091 2.99 2007-03-22 10:03:09.996577
  19310. 21541 477 1 15929 2.99 2007-03-23 16:51:56.996577
  19311. 21542 478 1 11906 2.99 2007-03-17 14:09:12.996577
  19312. 21543 478 2 13162 2.99 2007-03-19 11:56:52.996577
  19313. 21544 478 2 13507 4.99 2007-03-20 00:38:53.996577
  19314. 21545 478 1 15027 4.99 2007-03-22 07:31:30.996577
  19315. 21546 478 2 15188 4.99 2007-03-22 14:24:14.996577
  19316. 21547 478 1 15724 4.99 2007-03-23 09:50:35.996577
  19317. 21548 479 2 10303 4.99 2007-03-01 02:41:59.996577
  19318. 21549 479 2 11109 4.99 2007-03-02 06:48:55.996577
  19319. 21550 479 2 11584 1.99 2007-03-17 00:41:52.996577
  19320. 21551 479 2 11835 4.99 2007-03-17 11:31:39.996577
  19321. 21552 479 2 12401 0.99 2007-03-18 07:49:17.996577
  19322. 21553 479 2 13078 8.99 2007-03-19 08:45:09.996577
  19323. 21554 479 1 13974 2.99 2007-03-20 17:23:25.996577
  19324. 21555 480 2 10808 1.99 2007-03-01 21:05:37.996577
  19325. 21556 480 2 11017 0.99 2007-03-02 03:48:17.996577
  19326. 21557 480 1 11369 5.99 2007-03-02 16:33:07.996577
  19327. 21558 480 2 12905 4.99 2007-03-19 02:42:03.996577
  19328. 21559 480 2 13092 0.99 2007-03-19 09:09:35.996577
  19329. 21560 480 2 13131 9.99 2007-03-19 10:36:39.996577
  19330. 21561 480 1 13831 4.99 2007-03-20 12:28:01.996577
  19331. 21562 480 2 15363 2.99 2007-03-22 20:10:06.996577
  19332. 21563 480 2 15579 4.99 2007-03-23 04:07:07.996577
  19333. 21564 481 2 11207 0.99 2007-03-02 10:29:56.996577
  19334. 21565 481 2 11387 2.99 2007-03-02 17:01:04.996577
  19335. 21566 481 1 11752 4.99 2007-03-17 07:39:21.996577
  19336. 21567 481 1 11885 4.99 2007-03-17 13:22:19.996577
  19337. 21568 481 2 12160 2.99 2007-03-17 23:06:25.996577
  19338. 21569 481 1 12981 4.99 2007-03-19 05:32:26.996577
  19339. 21570 481 2 13497 2.99 2007-03-20 00:15:04.996577
  19340. 21571 481 2 13878 4.99 2007-03-20 13:46:04.996577
  19341. 21572 481 1 13990 1.99 2007-03-20 17:57:49.996577
  19342. 21573 481 2 14280 4.99 2007-03-21 05:08:24.996577
  19343. 21574 481 2 14584 0.99 2007-03-21 15:43:59.996577
  19344. 21575 482 2 10824 4.99 2007-03-01 21:28:48.996577
  19345. 21576 482 2 10839 2.99 2007-03-01 22:06:05.996577
  19346. 21577 482 2 11498 6.99 2007-03-16 21:21:20.996577
  19347. 21578 482 1 13174 4.99 2007-03-19 12:21:16.996577
  19348. 21579 482 2 14383 4.99 2007-03-21 08:30:31.996577
  19349. 21580 482 2 14732 0.99 2007-03-21 20:50:55.996577
  19350. 21581 482 2 14891 6.99 2007-03-22 02:39:28.996577
  19351. 21582 482 2 14995 4.99 2007-03-22 06:20:57.996577
  19352. 21583 482 1 15391 0.99 2007-03-22 21:30:11.996577
  19353. 21584 482 1 15849 5.99 2007-03-23 14:09:46.996577
  19354. 21585 482 2 15865 2.99 2007-03-23 14:46:51.996577
  19355. 21586 482 1 15879 3.99 2007-03-23 15:11:19.996577
  19356. 21587 483 2 10677 0.99 2007-03-01 15:53:01.996577
  19357. 21588 483 1 10953 6.99 2007-03-02 01:57:04.996577
  19358. 21589 483 2 12331 3.99 2007-03-18 05:15:45.996577
  19359. 21590 483 2 12695 2.99 2007-03-18 18:40:01.996577
  19360. 21591 483 2 12875 2.99 2007-03-19 01:38:47.996577
  19361. 21592 484 2 11871 4.99 2007-03-17 12:40:10.996577
  19362. 21593 484 1 12024 0.99 2007-03-17 18:26:00.996577
  19363. 21594 484 1 12771 4.99 2007-03-18 21:57:49.996577
  19364. 21595 484 1 12993 7.99 2007-03-19 05:52:29.996577
  19365. 21596 484 2 13160 0.99 2007-03-19 11:49:30.996577
  19366. 21597 484 2 13956 3.99 2007-03-20 16:36:45.996577
  19367. 21598 484 1 15607 2.99 2007-03-23 05:22:32.996577
  19368. 21599 484 1 16026 4.99 2007-03-23 20:17:48.996577
  19369. 21600 485 1 10771 4.99 2007-03-01 19:18:01.996577
  19370. 21601 485 2 10772 6.99 2007-03-01 19:19:36.996577
  19371. 21602 485 2 11188 3.99 2007-03-02 09:45:37.996577
  19372. 21603 485 1 11921 4.99 2007-03-17 14:40:53.996577
  19373. 21604 485 1 11974 2.99 2007-03-17 16:25:14.996577
  19374. 21605 485 2 12261 8.99 2007-03-18 02:44:32.996577
  19375. 21606 485 2 12487 0.99 2007-03-18 11:13:50.996577
  19376. 21607 485 2 13055 2.99 2007-03-19 08:04:54.996577
  19377. 21608 486 2 10902 4.99 2007-03-02 00:04:12.996577
  19378. 21609 486 1 12465 0.99 2007-03-18 10:03:28.996577
  19379. 21610 486 2 12609 2.99 2007-03-18 15:34:48.996577
  19380. 21611 486 1 13048 4.99 2007-03-19 07:53:32.996577
  19381. 21612 486 2 13803 0.99 2007-03-20 11:14:43.996577
  19382. 21613 486 2 14251 4.99 2007-03-21 04:10:46.996577
  19383. 21614 486 2 14284 4.99 2007-03-21 05:13:03.996577
  19384. 21615 487 2 10511 2.99 2007-03-01 10:00:42.996577
  19385. 21616 487 2 10555 6.99 2007-03-01 11:25:04.996577
  19386. 21617 487 1 10832 6.99 2007-03-01 21:53:19.996577
  19387. 21618 487 2 10877 5.99 2007-03-01 23:00:30.996577
  19388. 21619 487 1 10978 9.99 2007-03-02 02:40:53.996577
  19389. 21620 487 1 11669 5.99 2007-03-17 04:17:17.996577
  19390. 21621 487 2 11890 5.99 2007-03-17 13:37:09.996577
  19391. 21622 487 1 12493 7.99 2007-03-18 11:22:04.996577
  19392. 21623 487 2 13210 4.99 2007-03-19 13:52:04.996577
  19393. 21624 487 1 13658 7.99 2007-03-20 06:30:48.996577
  19394. 21625 487 2 15665 2.99 2007-03-23 07:27:38.996577
  19395. 21626 488 2 10474 5.99 2007-03-01 08:30:08.996577
  19396. 21627 488 1 10767 0.99 2007-03-01 19:05:49.996577
  19397. 21628 488 1 11774 3.99 2007-03-17 08:49:05.996577
  19398. 21629 488 2 12483 5.99 2007-03-18 11:07:03.996577
  19399. 21630 488 2 13446 4.99 2007-03-19 22:34:39.996577
  19400. 21631 488 2 14948 5.99 2007-03-22 04:39:19.996577
  19401. 21632 488 2 15259 0.99 2007-03-22 16:51:49.996577
  19402. 21633 488 1 15350 2.99 2007-03-22 19:43:55.996577
  19403. 21634 488 2 15499 2.99 2007-03-23 01:05:45.996577
  19404. 21635 489 2 11119 9.99 2007-03-02 07:13:10.996577
  19405. 21636 489 1 11705 4.99 2007-03-17 05:50:51.996577
  19406. 21637 489 1 12496 6.99 2007-03-18 11:26:51.996577
  19407. 21638 489 2 12701 6.99 2007-03-18 18:55:13.996577
  19408. 21639 489 1 13462 4.99 2007-03-19 23:17:45.996577
  19409. 21640 489 2 14095 5.99 2007-03-20 22:54:11.996577
  19410. 21641 489 2 14328 2.99 2007-03-21 06:46:46.996577
  19411. 21642 489 2 14424 6.99 2007-03-21 09:52:37.996577
  19412. 21643 489 1 15205 0.99 2007-03-22 15:00:49.996577
  19413. 21644 489 1 15981 4.99 2007-03-23 18:40:43.996577
  19414. 21645 490 1 10786 7.99 2007-03-01 19:58:00.996577
  19415. 21646 490 1 10955 7.99 2007-03-02 02:01:00.996577
  19416. 21647 490 2 11965 2.99 2007-03-17 16:08:11.996577
  19417. 21648 490 2 14557 4.99 2007-03-21 14:33:37.996577
  19418. 21649 490 2 14761 6.99 2007-03-21 21:58:54.996577
  19419. 21650 490 2 15276 2.99 2007-03-22 17:27:27.996577
  19420. 21651 490 1 15448 2.99 2007-03-22 23:23:50.996577
  19421. 21652 491 2 10974 6.99 2007-03-02 02:39:18.996577
  19422. 21653 491 1 11048 4.99 2007-03-02 04:43:33.996577
  19423. 21654 491 1 11590 0.99 2007-03-17 00:56:59.996577
  19424. 21655 491 1 11840 4.99 2007-03-17 11:37:27.996577
  19425. 21656 491 2 13607 2.99 2007-03-20 04:37:08.996577
  19426. 21657 491 1 14780 0.99 2007-03-21 22:34:59.996577
  19427. 21658 491 2 15685 5.99 2007-03-23 08:09:54.996577
  19428. 21659 492 2 12971 4.99 2007-03-19 05:11:09.996577
  19429. 21660 492 1 14255 2.99 2007-03-21 04:20:03.996577
  19430. 21661 492 2 15822 0.99 2007-03-23 13:34:25.996577
  19431. 21662 492 1 15958 4.99 2007-03-23 17:51:02.996577
  19432. 21663 493 1 10777 6.99 2007-03-01 19:32:16.996577
  19433. 21664 493 2 10885 7.99 2007-03-01 23:20:03.996577
  19434. 21665 493 1 13638 2.99 2007-03-20 05:49:41.996577
  19435. 21666 493 2 13675 6.99 2007-03-20 07:01:17.996577
  19436. 21667 493 1 14117 4.99 2007-03-20 23:40:25.996577
  19437. 21668 493 2 15177 4.99 2007-03-22 14:03:15.996577
  19438. 21669 493 1 15355 0.99 2007-03-22 19:47:50.996577
  19439. 21670 493 1 15490 6.99 2007-03-23 00:36:44.996577
  19440. 21671 493 2 15878 2.99 2007-03-23 15:02:57.996577
  19441. 21672 494 1 10403 0.99 2007-03-01 05:59:11.996577
  19442. 21673 494 1 10623 2.99 2007-03-01 13:51:04.996577
  19443. 21674 494 2 11152 3.99 2007-03-02 08:22:02.996577
  19444. 21675 494 1 11987 5.99 2007-03-17 16:50:25.996577
  19445. 21676 494 2 13094 0.99 2007-03-19 09:16:24.996577
  19446. 21677 494 2 13301 3.99 2007-03-19 17:21:41.996577
  19447. 21678 494 2 14634 5.99 2007-03-21 17:19:54.996577
  19448. 21679 494 1 14832 4.99 2007-03-22 00:11:55.996577
  19449. 21680 494 1 15086 6.99 2007-03-22 09:49:34.996577
  19450. 21681 494 2 15156 9.99 2007-03-22 12:57:37.996577
  19451. 21682 494 2 15291 4.99 2007-03-22 17:56:30.996577
  19452. 21683 495 2 10643 5.99 2007-03-01 14:16:59.996577
  19453. 21684 495 1 10783 4.99 2007-03-01 19:52:03.996577
  19454. 21685 495 1 12782 5.99 2007-03-18 22:24:49.996577
  19455. 21686 495 2 12837 0.99 2007-03-19 00:19:35.996577
  19456. 21687 495 2 13205 3.99 2007-03-19 13:33:52.996577
  19457. 21688 495 2 13445 2.99 2007-03-19 22:33:59.996577
  19458. 21689 495 2 13818 4.99 2007-03-20 11:48:35.996577
  19459. 21690 495 1 15984 2.99 2007-03-23 18:44:53.996577
  19460. 21691 496 1 11060 7.99 2007-03-02 05:16:44.996577
  19461. 21692 496 2 11448 4.99 2007-03-02 19:12:59.996577
  19462. 21693 496 1 11893 3.99 2007-03-17 13:41:55.996577
  19463. 21694 496 2 12605 4.99 2007-03-18 15:28:03.996577
  19464. 21695 496 1 13569 5.99 2007-03-20 03:31:25.996577
  19465. 21696 496 2 14013 6.99 2007-03-20 19:11:16.996577
  19466. 21697 496 1 14332 7.99 2007-03-21 06:59:09.996577
  19467. 21698 496 1 14348 0.99 2007-03-21 07:22:52.996577
  19468. 21699 496 2 15750 2.99 2007-03-23 11:04:31.996577
  19469. 21700 497 2 10760 7.99 2007-03-01 18:53:46.996577
  19470. 21701 497 1 12123 0.99 2007-03-17 21:50:44.996577
  19471. 21702 497 1 13159 4.99 2007-03-19 11:48:25.996577
  19472. 21703 497 1 13289 2.99 2007-03-19 16:59:56.996577
  19473. 21704 497 2 14134 0.99 2007-03-21 00:14:20.996577
  19474. 21705 497 1 15362 5.99 2007-03-22 20:08:46.996577
  19475. 21706 497 2 15633 0.99 2007-03-23 05:59:36.996577
  19476. 21707 497 1 15919 0.99 2007-03-23 16:29:57.996577
  19477. 21708 498 1 10225 0.99 2007-03-01 00:07:06.996577
  19478. 21709 498 1 11455 6.99 2007-03-02 19:35:32.996577
  19479. 21710 498 1 12893 2.99 2007-03-19 02:15:09.996577
  19480. 21711 499 2 10333 0.99 2007-03-01 03:26:58.996577
  19481. 21712 499 2 10497 2.99 2007-03-01 09:24:25.996577
  19482. 21713 499 1 11513 7.99 2007-03-16 22:19:59.996577
  19483. 21714 499 2 11606 0.99 2007-03-17 02:01:09.996577
  19484. 21715 499 2 11978 4.99 2007-03-17 16:30:36.996577
  19485. 21716 499 1 12004 8.99 2007-03-17 17:25:19.996577
  19486. 21717 499 1 12354 7.99 2007-03-18 06:02:33.996577
  19487. 21718 499 1 12436 3.99 2007-03-18 09:09:31.996577
  19488. 21719 499 1 12587 1.99 2007-03-18 14:31:39.996577
  19489. 21720 499 2 12947 4.99 2007-03-19 04:22:47.996577
  19490. 21721 499 2 13822 3.99 2007-03-20 12:07:54.996577
  19491. 21722 499 1 14858 3.99 2007-03-22 01:14:44.996577
  19492. 21723 499 1 15587 7.99 2007-03-23 04:28:54.996577
  19493. 21724 500 1 10947 6.99 2007-03-02 01:51:43.996577
  19494. 21725 500 2 11218 1.99 2007-03-02 10:57:38.996577
  19495. 21726 500 1 12639 2.99 2007-03-18 16:41:31.996577
  19496. 21727 500 2 12813 2.99 2007-03-18 23:22:48.996577
  19497. 21728 500 2 13628 4.99 2007-03-20 05:32:19.996577
  19498. 21729 500 1 14407 0.99 2007-03-21 09:15:17.996577
  19499. 21730 500 1 14964 4.99 2007-03-22 05:07:50.996577
  19500. 21731 500 1 15584 2.99 2007-03-23 04:17:47.996577
  19501. 21732 500 1 15853 2.99 2007-03-23 14:22:46.996577
  19502. 21733 501 1 10817 4.99 2007-03-01 21:19:34.996577
  19503. 21734 501 2 11393 4.99 2007-03-02 17:12:55.996577
  19504. 21735 501 1 11640 1.99 2007-03-17 03:12:59.996577
  19505. 21736 501 2 11799 6.99 2007-03-17 09:53:51.996577
  19506. 21737 501 1 12914 4.99 2007-03-19 02:54:25.996577
  19507. 21738 501 2 13889 0.99 2007-03-20 14:08:32.996577
  19508. 21739 501 1 15239 4.99 2007-03-22 16:14:43.996577
  19509. 21740 501 1 15699 5.99 2007-03-23 08:49:01.996577
  19510. 21741 502 2 10390 4.99 2007-03-01 05:15:14.996577
  19511. 21742 502 1 10938 0.99 2007-03-02 01:33:48.996577
  19512. 21743 502 2 11036 4.99 2007-03-02 04:24:55.996577
  19513. 21744 502 1 11301 0.99 2007-03-02 14:06:25.996577
  19514. 21745 502 1 11317 4.99 2007-03-02 14:37:18.996577
  19515. 21746 502 1 11435 0.99 2007-03-02 18:42:49.996577
  19516. 21747 502 1 11620 0.99 2007-03-17 02:34:48.996577
  19517. 21748 502 1 12762 4.99 2007-03-18 21:35:20.996577
  19518. 21749 502 1 13052 9.99 2007-03-19 08:00:08.996577
  19519. 21750 502 1 14411 4.99 2007-03-21 09:23:23.996577
  19520. 21751 502 1 15486 3.99 2007-03-23 00:33:46.996577
  19521. 21752 502 1 16034 3.99 2007-03-23 20:35:00.996577
  19522. 21753 503 2 11075 2.99 2007-03-02 05:52:49.996577
  19523. 21754 503 1 11161 1.99 2007-03-02 08:34:23.996577
  19524. 21755 503 1 11858 4.99 2007-03-17 12:18:57.996577
  19525. 21756 503 2 12370 2.99 2007-03-18 06:26:13.996577
  19526. 21757 503 2 12783 4.99 2007-03-18 22:29:40.996577
  19527. 21758 503 1 13332 2.99 2007-03-19 18:29:17.996577
  19528. 21759 503 1 13551 2.99 2007-03-20 02:28:56.996577
  19529. 21760 503 1 14823 0.99 2007-03-21 23:53:08.996577
  19530. 21761 503 1 14913 2.99 2007-03-22 03:20:39.996577
  19531. 21762 503 2 15056 4.99 2007-03-22 08:44:20.996577
  19532. 21763 503 2 15077 2.99 2007-03-22 09:37:44.996577
  19533. 21764 503 1 15588 3.99 2007-03-23 04:31:01.996577
  19534. 21765 503 1 15692 4.99 2007-03-23 08:28:28.996577
  19535. 21766 503 1 15726 2.99 2007-03-23 09:56:52.996577
  19536. 21767 503 1 15797 0.99 2007-03-23 12:42:13.996577
  19537. 21768 504 2 10397 0.99 2007-03-01 05:39:53.996577
  19538. 21769 504 2 10509 3.99 2007-03-01 09:53:54.996577
  19539. 21770 504 2 11569 2.99 2007-03-16 23:59:30.996577
  19540. 21771 504 1 12769 1.99 2007-03-18 21:55:06.996577
  19541. 21772 504 1 13166 2.99 2007-03-19 12:04:54.996577
  19542. 21773 504 2 13206 2.99 2007-03-19 13:34:00.996577
  19543. 21774 504 2 13387 2.99 2007-03-19 20:14:36.996577
  19544. 21775 504 2 13859 5.99 2007-03-20 13:22:09.996577
  19545. 21776 504 2 15018 4.99 2007-03-22 07:21:04.996577
  19546. 21777 504 1 15166 6.99 2007-03-22 13:34:03.996577
  19547. 21778 504 1 15723 8.99 2007-03-23 09:45:52.996577
  19548. 21779 504 2 16022 4.99 2007-03-23 20:12:53.996577
  19549. 21780 505 1 10896 2.99 2007-03-01 23:47:59.996577
  19550. 21781 505 1 11163 0.99 2007-03-02 08:37:06.996577
  19551. 21782 505 1 11907 2.99 2007-03-17 14:09:13.996577
  19552. 21783 505 2 13612 3.99 2007-03-20 04:50:34.996577
  19553. 21784 505 1 14398 2.99 2007-03-21 08:55:47.996577
  19554. 21785 505 1 14802 2.99 2007-03-21 23:16:49.996577
  19555. 21786 505 1 15436 4.99 2007-03-22 22:58:52.996577
  19556. 21787 506 1 10477 2.99 2007-03-01 08:32:43.996577
  19557. 21788 506 1 10873 4.99 2007-03-01 22:59:00.996577
  19558. 21789 506 2 11238 0.99 2007-03-02 11:54:16.996577
  19559. 21790 506 2 11781 4.99 2007-03-17 09:05:26.996577
  19560. 21791 506 1 12994 0.99 2007-03-19 05:54:36.996577
  19561. 21792 506 2 13073 2.99 2007-03-19 08:34:04.996577
  19562. 21793 506 2 13767 0.99 2007-03-20 10:12:02.996577
  19563. 21794 506 1 14074 1.99 2007-03-20 21:44:33.996577
  19564. 21795 506 1 14337 2.99 2007-03-21 07:02:52.996577
  19565. 21796 506 2 14395 6.99 2007-03-21 08:52:26.996577
  19566. 21797 506 2 15022 5.99 2007-03-22 07:24:09.996577
  19567. 21798 506 2 15572 1.99 2007-03-23 03:56:27.996577
  19568. 21799 506 1 15694 9.99 2007-03-23 08:31:12.996577
  19569. 21800 507 2 12071 6.99 2007-03-17 20:17:40.996577
  19570. 21801 507 2 12275 4.99 2007-03-18 03:10:28.996577
  19571. 21802 507 1 12343 4.99 2007-03-18 05:43:39.996577
  19572. 21803 507 2 14625 4.99 2007-03-21 17:02:47.996577
  19573. 21804 507 1 15394 2.99 2007-03-22 21:32:47.996577
  19574. 21805 508 1 10746 8.99 2007-03-01 18:27:15.996577
  19575. 21806 508 1 11365 2.99 2007-03-02 16:28:35.996577
  19576. 21807 508 2 11447 6.99 2007-03-02 19:04:51.996577
  19577. 21808 508 1 13095 6.99 2007-03-19 09:16:36.996577
  19578. 21809 508 2 13201 2.99 2007-03-19 13:24:31.996577
  19579. 21810 508 1 15010 6.99 2007-03-22 06:58:43.996577
  19580. 21811 508 1 15195 4.99 2007-03-22 14:36:49.996577
  19581. 21812 509 2 10988 5.99 2007-03-02 03:06:43.996577
  19582. 21813 509 1 11814 6.99 2007-03-17 10:37:46.996577
  19583. 21814 509 2 12109 4.99 2007-03-17 21:27:01.996577
  19584. 21815 509 2 14045 4.99 2007-03-20 20:18:37.996577
  19585. 21816 509 2 14994 5.99 2007-03-22 06:20:50.996577
  19586. 21817 509 1 15965 2.99 2007-03-23 18:15:05.996577
  19587. 21818 510 2 10265 7.99 2007-03-01 01:33:30.996577
  19588. 21819 510 2 11996 4.99 2007-03-17 17:03:03.996577
  19589. 21820 510 1 12317 0.99 2007-03-18 04:45:32.996577
  19590. 21821 510 2 12406 2.99 2007-03-18 08:06:28.996577
  19591. 21822 510 1 15065 4.99 2007-03-22 09:15:10.996577
  19592. 21823 511 1 10231 2.99 2007-03-01 00:19:15.996577
  19593. 21824 511 2 10429 2.99 2007-03-01 07:02:44.996577
  19594. 21825 511 2 12110 6.99 2007-03-17 21:28:12.996577
  19595. 21826 511 1 12920 4.99 2007-03-19 03:00:58.996577
  19596. 21827 511 1 14213 4.99 2007-03-21 02:59:13.996577
  19597. 21828 511 1 14302 6.99 2007-03-21 05:48:23.996577
  19598. 21829 511 1 15172 4.99 2007-03-22 13:53:59.996577
  19599. 21830 512 2 10232 4.99 2007-03-01 00:19:21.996577
  19600. 21831 512 2 10670 3.99 2007-03-01 15:35:42.996577
  19601. 21832 512 2 11818 9.99 2007-03-17 10:50:30.996577
  19602. 21833 512 2 12957 8.99 2007-03-19 04:41:10.996577
  19603. 21834 512 2 13156 4.99 2007-03-19 11:39:08.996577
  19604. 21835 512 2 13771 0.99 2007-03-20 10:15:47.996577
  19605. 21836 512 1 14288 4.99 2007-03-21 05:26:00.996577
  19606. 21837 512 1 14870 2.99 2007-03-22 01:51:46.996577
  19607. 21838 512 1 15153 2.99 2007-03-22 12:54:27.996577
  19608. 21839 512 2 15265 3.99 2007-03-22 17:04:25.996577
  19609. 21840 512 1 15317 3.99 2007-03-22 18:42:39.996577
  19610. 21841 512 2 15733 4.99 2007-03-23 10:05:58.996577
  19611. 21842 512 2 15990 4.99 2007-03-23 18:53:37.996577
  19612. 21843 513 2 11081 2.99 2007-03-02 05:58:40.996577
  19613. 21844 513 1 11165 2.99 2007-03-02 08:40:43.996577
  19614. 21845 513 1 11407 3.99 2007-03-02 17:47:09.996577
  19615. 21846 513 1 11755 3.99 2007-03-17 07:44:01.996577
  19616. 21847 513 1 12559 5.99 2007-03-18 13:22:24.996577
  19617. 21848 513 2 12784 2.99 2007-03-18 22:31:12.996577
  19618. 21849 513 2 12807 4.99 2007-03-18 23:07:12.996577
  19619. 21850 513 1 13596 5.99 2007-03-20 04:27:24.996577
  19620. 21851 513 1 13690 4.99 2007-03-20 07:35:53.996577
  19621. 21852 513 2 14844 7.99 2007-03-22 00:37:38.996577
  19622. 21853 513 1 14875 4.99 2007-03-22 02:03:05.996577
  19623. 21854 513 1 15035 4.99 2007-03-22 08:02:58.996577
  19624. 21855 513 2 15289 6.99 2007-03-22 17:55:50.996577
  19625. 21856 513 2 15545 5.99 2007-03-23 02:48:42.996577
  19626. 21857 514 1 11675 1.99 2007-03-17 04:26:20.996577
  19627. 21858 514 2 12067 4.99 2007-03-17 20:05:13.996577
  19628. 21859 514 1 12293 4.99 2007-03-18 03:42:02.996577
  19629. 21860 514 1 12302 4.99 2007-03-18 04:10:05.996577
  19630. 21861 514 2 12578 0.99 2007-03-18 14:15:37.996577
  19631. 21862 514 1 12752 2.99 2007-03-18 21:02:02.996577
  19632. 21863 514 2 13344 3.99 2007-03-19 18:51:10.996577
  19633. 21864 514 1 14052 0.99 2007-03-20 20:40:12.996577
  19634. 21865 514 1 14386 1.99 2007-03-21 08:35:00.996577
  19635. 21866 514 1 15451 2.99 2007-03-22 23:24:53.996577
  19636. 21867 514 1 15776 5.99 2007-03-23 11:54:27.996577
  19637. 21868 515 2 10716 0.99 2007-03-01 17:22:14.996577
  19638. 21869 515 1 11451 3.99 2007-03-02 19:14:22.996577
  19639. 21870 515 2 11572 4.99 2007-03-17 00:06:21.996577
  19640. 21871 515 1 11691 3.99 2007-03-17 05:19:31.996577
  19641. 21872 515 2 11937 6.99 2007-03-17 15:17:02.996577
  19642. 21873 515 2 12416 2.99 2007-03-18 08:25:14.996577
  19643. 21874 515 1 12486 8.99 2007-03-18 11:11:16.996577
  19644. 21875 515 1 12889 5.99 2007-03-19 02:09:57.996577
  19645. 21876 515 2 14072 4.99 2007-03-20 21:35:36.996577
  19646. 21877 515 2 14378 3.99 2007-03-21 08:18:28.996577
  19647. 21878 515 2 14414 0.99 2007-03-21 09:36:43.996577
  19648. 21879 515 2 15274 4.99 2007-03-22 17:24:18.996577
  19649. 21880 516 2 11926 0.99 2007-03-17 14:53:28.996577
  19650. 21881 516 2 11939 1.99 2007-03-17 15:24:23.996577
  19651. 21882 516 1 12535 1.99 2007-03-18 12:33:48.996577
  19652. 21883 516 1 13276 8.99 2007-03-19 16:22:08.996577
  19653. 21884 516 1 14932 0.99 2007-03-22 04:09:05.996577
  19654. 21885 516 1 15526 0.99 2007-03-23 02:12:56.996577
  19655. 21886 516 1 15701 0.99 2007-03-23 08:50:47.996577
  19656. 21887 517 2 10358 4.99 2007-03-01 04:18:33.996577
  19657. 21888 517 2 10433 4.99 2007-03-01 07:14:22.996577
  19658. 21889 517 1 11684 3.99 2007-03-17 04:55:41.996577
  19659. 21890 517 2 12705 0.99 2007-03-18 19:12:40.996577
  19660. 21891 517 1 13396 0.99 2007-03-19 20:34:35.996577
  19661. 21892 517 2 14190 4.99 2007-03-21 02:03:47.996577
  19662. 21893 517 1 15559 5.99 2007-03-23 03:23:31.996577
  19663. 21894 518 1 10751 5.99 2007-03-01 18:34:36.996577
  19664. 21895 518 2 11433 3.99 2007-03-02 18:41:36.996577
  19665. 21896 518 2 12450 2.99 2007-03-18 09:32:30.996577
  19666. 21897 518 2 12681 2.99 2007-03-18 18:16:32.996577
  19667. 21898 518 1 13065 4.99 2007-03-19 08:17:18.996577
  19668. 21899 518 1 13539 6.99 2007-03-20 02:08:53.996577
  19669. 21900 518 1 14088 6.99 2007-03-20 22:25:50.996577
  19670. 21901 518 1 14149 4.99 2007-03-21 00:51:13.996577
  19671. 21902 518 2 14980 0.99 2007-03-22 05:45:11.996577
  19672. 21903 518 2 15434 4.99 2007-03-22 22:56:42.996577
  19673. 21904 519 2 10697 4.99 2007-03-01 16:48:49.996577
  19674. 21905 519 2 12648 7.99 2007-03-18 16:58:47.996577
  19675. 21906 519 2 12924 2.99 2007-03-19 03:20:13.996577
  19676. 21907 519 1 13647 7.99 2007-03-20 06:16:33.996577
  19677. 21908 519 1 14182 2.99 2007-03-21 01:45:36.996577
  19678. 21909 519 2 15347 2.99 2007-03-22 19:40:45.996577
  19679. 21910 520 2 10530 4.99 2007-03-01 10:29:43.996577
  19680. 21911 520 1 11566 0.99 2007-03-16 23:57:01.996577
  19681. 21912 520 1 12517 4.99 2007-03-18 12:08:46.996577
  19682. 21913 520 1 12628 5.99 2007-03-18 16:08:51.996577
  19683. 21914 520 1 12647 5.99 2007-03-18 16:58:17.996577
  19684. 21915 520 1 13311 0.99 2007-03-19 17:35:35.996577
  19685. 21916 520 2 13438 2.99 2007-03-19 22:06:28.996577
  19686. 21917 520 2 13659 2.99 2007-03-20 06:34:18.996577
  19687. 21918 520 2 13746 5.99 2007-03-20 09:23:54.996577
  19688. 21919 520 1 14372 4.99 2007-03-21 08:08:16.996577
  19689. 21920 520 1 14509 0.99 2007-03-21 13:08:24.996577
  19690. 21921 520 1 15465 0.99 2007-03-22 23:44:59.996577
  19691. 21922 520 2 15492 2.99 2007-03-23 00:42:12.996577
  19692. 21923 520 1 15948 7.99 2007-03-23 17:27:59.996577
  19693. 21924 521 1 10587 2.99 2007-03-01 12:32:04.996577
  19694. 21925 521 2 11625 2.99 2007-03-17 02:47:18.996577
  19695. 21926 521 1 11967 3.99 2007-03-17 16:13:26.996577
  19696. 21927 521 2 12082 4.99 2007-03-17 20:41:41.996577
  19697. 21928 521 1 12530 4.99 2007-03-18 12:23:14.996577
  19698. 21929 521 1 13527 2.99 2007-03-20 01:29:13.996577
  19699. 21930 521 1 14423 0.99 2007-03-21 09:52:25.996577
  19700. 21931 521 2 14551 3.99 2007-03-21 14:25:51.996577
  19701. 21932 521 2 14738 5.99 2007-03-21 20:57:39.996577
  19702. 21933 521 2 15170 4.99 2007-03-22 13:50:41.996577
  19703. 21934 521 2 15329 2.99 2007-03-22 19:01:05.996577
  19704. 21935 522 1 10411 3.99 2007-03-01 06:24:58.996577
  19705. 21936 522 1 10675 7.99 2007-03-01 15:40:23.996577
  19706. 21937 522 2 10821 5.99 2007-03-01 21:22:53.996577
  19707. 21938 522 2 11696 2.99 2007-03-17 05:29:35.996577
  19708. 21939 522 2 11830 1.99 2007-03-17 11:21:41.996577
  19709. 21940 522 2 12494 6.99 2007-03-18 11:22:15.996577
  19710. 21941 522 2 13605 6.99 2007-03-20 04:34:43.996577
  19711. 21942 522 2 14467 2.99 2007-03-21 11:31:59.996577
  19712. 21943 522 1 15921 6.99 2007-03-23 16:35:20.996577
  19713. 21944 523 2 10470 1.99 2007-03-01 08:20:52.996577
  19714. 21945 523 1 11827 4.99 2007-03-17 11:12:53.996577
  19715. 21946 523 1 12288 2.99 2007-03-18 03:29:46.996577
  19716. 21947 523 1 13133 2.99 2007-03-19 10:39:29.996577
  19717. 21948 523 1 14766 4.99 2007-03-21 22:10:46.996577
  19718. 21949 523 1 15040 2.99 2007-03-22 08:09:35.996577
  19719. 21950 524 2 13626 2.99 2007-03-20 05:23:50.996577
  19720. 21951 524 2 14046 4.99 2007-03-20 20:21:47.996577
  19721. 21952 524 1 14178 2.99 2007-03-21 01:42:11.996577
  19722. 21953 524 1 14366 2.99 2007-03-21 08:00:05.996577
  19723. 21954 524 2 14680 1.99 2007-03-21 18:48:18.996577
  19724. 21955 524 2 15206 6.99 2007-03-22 15:02:05.996577
  19725. 21956 525 1 10496 2.99 2007-03-01 09:21:42.996577
  19726. 21957 525 2 11406 2.99 2007-03-02 17:44:36.996577
  19727. 21958 525 1 11660 1.99 2007-03-17 03:51:08.996577
  19728. 21959 525 1 15159 0.99 2007-03-22 13:00:51.996577
  19729. 21960 525 2 15623 3.99 2007-03-23 05:51:55.996577
  19730. 21961 526 2 11046 4.99 2007-03-02 04:37:00.996577
  19731. 21962 526 1 11503 10.99 2007-03-16 21:39:00.996577
  19732. 21963 526 1 11612 2.99 2007-03-17 02:17:17.996577
  19733. 21964 526 2 11702 4.99 2007-03-17 05:47:22.996577
  19734. 21965 526 1 12607 0.99 2007-03-18 15:32:15.996577
  19735. 21966 526 2 13224 8.99 2007-03-19 14:20:39.996577
  19736. 21967 526 2 13580 0.99 2007-03-20 03:52:00.996577
  19737. 21968 526 1 13617 8.99 2007-03-20 05:03:56.996577
  19738. 21969 526 2 14487 6.99 2007-03-21 12:21:59.996577
  19739. 21970 526 1 14590 7.99 2007-03-21 15:57:36.996577
  19740. 21971 526 1 15168 2.99 2007-03-22 13:42:46.996577
  19741. 21972 526 1 15395 4.99 2007-03-22 21:34:51.996577
  19742. 21973 526 1 16043 9.99 2007-03-23 20:49:29.996577
  19743. 21974 527 2 10486 3.99 2007-03-01 08:52:09.996577
  19744. 21975 527 2 10613 0.99 2007-03-01 13:24:40.996577
  19745. 21976 527 1 11013 5.99 2007-03-02 03:39:20.996577
  19746. 21977 527 1 11150 2.99 2007-03-02 08:20:12.996577
  19747. 21978 527 1 11624 0.99 2007-03-17 02:46:08.996577
  19748. 21979 527 1 12136 7.99 2007-03-17 22:19:56.996577
  19749. 21980 527 1 12513 6.99 2007-03-18 12:00:11.996577
  19750. 21981 527 1 14352 6.99 2007-03-21 07:34:55.996577
  19751. 21982 527 1 15144 2.99 2007-03-22 12:17:44.996577
  19752. 21983 527 1 15552 3.99 2007-03-23 03:01:49.996577
  19753. 21984 528 1 10673 0.99 2007-03-01 15:40:17.996577
  19754. 21985 528 1 10880 2.99 2007-03-01 23:02:38.996577
  19755. 21986 528 1 12818 3.99 2007-03-18 23:33:25.996577
  19756. 21987 528 2 13518 2.99 2007-03-20 01:04:43.996577
  19757. 21988 528 1 13600 7.99 2007-03-20 04:28:51.996577
  19758. 21989 528 2 14148 2.99 2007-03-21 00:46:15.996577
  19759. 21990 528 2 15880 6.99 2007-03-23 15:12:20.996577
  19760. 21991 529 2 10361 10.99 2007-03-01 04:22:15.996577
  19761. 21992 529 1 11862 2.99 2007-03-17 12:23:19.996577
  19762. 21993 529 2 12356 2.99 2007-03-18 06:05:31.996577
  19763. 21994 529 1 12622 3.99 2007-03-18 16:02:37.996577
  19764. 21995 529 1 13011 4.99 2007-03-19 06:22:24.996577
  19765. 21996 529 2 13132 3.99 2007-03-19 10:39:23.996577
  19766. 21997 529 1 13797 2.99 2007-03-20 11:02:02.996577
  19767. 21998 529 2 13946 9.99 2007-03-20 16:12:58.996577
  19768. 21999 529 2 14449 4.99 2007-03-21 10:41:44.996577
  19769. 22000 529 2 14764 0.99 2007-03-21 22:06:13.996577
  19770. 22001 529 1 14970 5.99 2007-03-22 05:17:55.996577
  19771. 22002 529 2 15305 2.99 2007-03-22 18:14:31.996577
  19772. 22003 530 2 10504 4.99 2007-03-01 09:39:21.996577
  19773. 22004 530 1 11326 0.99 2007-03-02 15:02:55.996577
  19774. 22005 530 1 12220 4.99 2007-03-18 01:18:28.996577
  19775. 22006 530 1 12387 2.99 2007-03-18 07:14:50.996577
  19776. 22007 530 1 12649 4.99 2007-03-18 17:00:13.996577
  19777. 22008 530 1 13998 5.99 2007-03-20 18:21:04.996577
  19778. 22009 530 2 14707 5.99 2007-03-21 19:34:55.996577
  19779. 22010 530 2 15066 0.99 2007-03-22 09:17:32.996577
  19780. 22011 531 2 10920 4.99 2007-03-02 00:42:36.996577
  19781. 22012 531 1 10941 5.99 2007-03-02 01:39:59.996577
  19782. 22013 531 2 11026 4.99 2007-03-02 04:14:31.996577
  19783. 22014 531 1 11265 10.99 2007-03-02 12:34:08.996577
  19784. 22015 531 1 11666 2.99 2007-03-17 04:13:36.996577
  19785. 22016 531 1 12923 2.99 2007-03-19 03:18:46.996577
  19786. 22017 531 2 13300 8.99 2007-03-19 17:15:22.996577
  19787. 22018 531 2 15360 0.99 2007-03-22 20:05:17.996577
  19788. 22019 532 2 10286 6.99 2007-03-01 02:04:24.996577
  19789. 22020 532 2 10712 5.99 2007-03-01 17:16:22.996577
  19790. 22021 532 1 10945 5.99 2007-03-02 01:48:49.996577
  19791. 22022 532 2 11251 2.99 2007-03-02 12:09:15.996577
  19792. 22023 532 2 11318 4.99 2007-03-02 14:37:37.996577
  19793. 22024 532 2 12061 3.99 2007-03-17 19:42:01.996577
  19794. 22025 532 2 12295 5.99 2007-03-18 03:44:12.996577
  19795. 22026 532 2 13038 4.99 2007-03-19 07:23:42.996577
  19796. 22027 532 1 13192 8.99 2007-03-19 12:58:32.996577
  19797. 22028 532 1 13254 4.99 2007-03-19 15:22:27.996577
  19798. 22029 532 1 13908 4.99 2007-03-20 14:50:06.996577
  19799. 22030 532 2 15180 0.99 2007-03-22 14:11:23.996577
  19800. 22031 532 2 15414 1.99 2007-03-22 22:12:20.996577
  19801. 22032 532 1 16014 5.99 2007-03-23 19:46:57.996577
  19802. 22033 533 1 10380 2.99 2007-03-01 05:03:02.996577
  19803. 22034 533 1 10614 6.99 2007-03-01 13:25:26.996577
  19804. 22035 533 2 11524 7.99 2007-03-16 22:39:21.996577
  19805. 22036 533 1 11758 8.99 2007-03-17 08:01:28.996577
  19806. 22037 533 1 11918 2.99 2007-03-17 14:37:08.996577
  19807. 22038 533 1 12602 0.99 2007-03-18 15:18:16.996577
  19808. 22039 533 1 12655 6.99 2007-03-18 17:26:10.996577
  19809. 22040 533 1 14263 7.99 2007-03-21 04:36:41.996577
  19810. 22041 533 1 14800 4.99 2007-03-21 23:14:44.996577
  19811. 22042 533 2 16006 0.99 2007-03-23 19:29:35.996577
  19812. 22043 534 2 10465 5.99 2007-03-01 08:13:51.996577
  19813. 22044 534 2 10725 6.99 2007-03-01 17:39:30.996577
  19814. 22045 534 1 10796 0.99 2007-03-01 20:25:07.996577
  19815. 22046 534 2 11180 5.99 2007-03-02 09:22:56.996577
  19816. 22047 534 2 12305 2.99 2007-03-18 04:14:55.996577
  19817. 22048 534 1 12691 5.99 2007-03-18 18:36:12.996577
  19818. 22049 534 2 12798 4.99 2007-03-18 22:52:59.996577
  19819. 22050 534 2 13294 0.99 2007-03-19 17:05:01.996577
  19820. 22051 534 2 14816 1.99 2007-03-21 23:44:17.996577
  19821. 22052 535 2 10322 5.99 2007-03-01 03:12:39.996577
  19822. 22053 535 2 10353 3.99 2007-03-01 04:14:59.996577
  19823. 22054 535 2 11736 8.99 2007-03-17 07:09:21.996577
  19824. 22055 535 1 11855 7.99 2007-03-17 12:11:33.996577
  19825. 22056 535 2 12168 2.99 2007-03-17 23:32:18.996577
  19826. 22057 535 1 12233 0.99 2007-03-18 01:45:20.996577
  19827. 22058 535 2 12673 4.99 2007-03-18 17:50:22.996577
  19828. 22059 535 1 12732 0.99 2007-03-18 20:26:16.996577
  19829. 22060 535 2 12750 1.99 2007-03-18 21:01:05.996577
  19830. 22061 535 1 13631 4.99 2007-03-20 05:36:03.996577
  19831. 22062 535 1 13852 0.99 2007-03-20 13:13:49.996577
  19832. 22063 535 1 14522 4.99 2007-03-21 13:30:00.996577
  19833. 22064 535 2 15075 5.99 2007-03-22 09:33:18.996577
  19834. 22065 535 1 15287 6.99 2007-03-22 17:48:03.996577
  19835. 22066 535 1 16017 0.99 2007-03-23 19:55:37.996577
  19836. 22067 536 1 11473 6.99 2007-03-02 20:20:29.996577
  19837. 22068 536 1 11826 2.99 2007-03-17 11:12:12.996577
  19838. 22069 536 2 11977 4.99 2007-03-17 16:29:41.996577
  19839. 22070 536 2 12052 8.99 2007-03-17 19:25:28.996577
  19840. 22071 536 2 13505 4.99 2007-03-20 00:34:23.996577
  19841. 22072 536 1 15130 7.99 2007-03-22 11:32:58.996577
  19842. 22073 536 1 15978 8.99 2007-03-23 18:36:44.996577
  19843. 22074 536 1 15979 0.99 2007-03-23 18:36:52.996577
  19844. 22075 537 2 12984 4.99 2007-03-19 05:35:17.996577
  19845. 22076 537 2 13885 4.99 2007-03-20 14:00:35.996577
  19846. 22077 537 1 14010 4.99 2007-03-20 18:58:12.996577
  19847. 22078 537 2 14506 0.99 2007-03-21 13:00:53.996577
  19848. 22079 537 1 14670 0.99 2007-03-21 18:22:37.996577
  19849. 22080 537 1 15149 2.99 2007-03-22 12:36:32.996577
  19850. 22081 537 1 15832 8.99 2007-03-23 13:50:01.996577
  19851. 22082 538 2 10701 3.99 2007-03-01 16:56:43.996577
  19852. 22083 538 1 10732 5.99 2007-03-01 17:53:44.996577
  19853. 22084 538 1 10962 4.99 2007-03-02 02:16:39.996577
  19854. 22085 538 2 12089 5.99 2007-03-17 20:48:55.996577
  19855. 22086 538 1 13544 1.99 2007-03-20 02:12:52.996577
  19856. 22087 538 2 13770 4.99 2007-03-20 10:14:20.996577
  19857. 22088 538 2 14572 2.99 2007-03-21 15:12:57.996577
  19858. 22089 538 1 14591 0.99 2007-03-21 15:58:35.996577
  19859. 22090 538 1 15343 6.99 2007-03-22 19:29:51.996577
  19860. 22091 539 2 10922 3.99 2007-03-02 00:43:06.996577
  19861. 22092 539 1 12848 2.99 2007-03-19 00:33:37.996577
  19862. 22093 539 2 13615 2.99 2007-03-20 04:57:19.996577
  19863. 22094 539 2 13778 5.99 2007-03-20 10:32:10.996577
  19864. 22095 539 1 15356 2.99 2007-03-22 19:52:45.996577
  19865. 22096 540 1 10924 8.99 2007-03-02 00:48:45.996577
  19866. 22097 540 1 11198 3.99 2007-03-02 10:13:41.996577
  19867. 22098 540 2 11324 4.99 2007-03-02 14:59:43.996577
  19868. 22099 540 2 11432 6.99 2007-03-02 18:38:27.996577
  19869. 22100 540 2 12058 8.99 2007-03-17 19:36:07.996577
  19870. 22101 540 2 12201 4.99 2007-03-18 00:42:32.996577
  19871. 22102 540 1 12300 6.99 2007-03-18 04:04:40.996577
  19872. 22103 540 2 14910 0.99 2007-03-22 03:19:18.996577
  19873. 22104 540 2 15079 2.99 2007-03-22 09:38:22.996577
  19874. 22105 540 2 15953 3.99 2007-03-23 17:42:12.996577
  19875. 22106 541 1 10306 5.99 2007-03-01 02:47:44.996577
  19876. 22107 541 2 11273 0.99 2007-03-02 12:49:21.996577
  19877. 22108 541 1 12306 4.99 2007-03-18 04:16:21.996577
  19878. 22109 541 2 12395 4.99 2007-03-18 07:34:56.996577
  19879. 22110 541 1 12894 7.99 2007-03-19 02:17:54.996577
  19880. 22111 541 2 13239 4.99 2007-03-19 14:50:39.996577
  19881. 22112 541 2 13640 0.99 2007-03-20 05:51:19.996577
  19882. 22113 541 2 14938 6.99 2007-03-22 04:21:05.996577
  19883. 22114 541 1 15071 4.99 2007-03-22 09:27:09.996577
  19884. 22115 541 2 15141 3.99 2007-03-22 12:10:15.996577
  19885. 22116 541 1 15223 1.99 2007-03-22 15:42:05.996577
  19886. 22117 541 1 15421 0.99 2007-03-22 22:25:03.996577
  19887. 22118 541 2 15924 1.99 2007-03-23 16:37:25.996577
  19888. 22119 542 1 10280 4.99 2007-03-01 01:55:41.996577
  19889. 22120 542 2 11583 0.99 2007-03-17 00:36:39.996577
  19890. 22121 542 2 11903 2.99 2007-03-17 14:06:11.996577
  19891. 22122 542 1 12819 0.99 2007-03-18 23:33:31.996577
  19892. 22123 542 1 13447 0.99 2007-03-19 22:38:02.996577
  19893. 22124 542 2 14982 9.99 2007-03-22 05:49:21.996577
  19894. 22125 543 2 10257 0.99 2007-03-01 01:18:09.996577
  19895. 22126 543 1 10520 4.99 2007-03-01 10:14:24.996577
  19896. 22127 543 2 11241 9.99 2007-03-02 11:57:50.996577
  19897. 22128 543 1 11681 2.99 2007-03-17 04:41:56.996577
  19898. 22129 543 1 13187 0.99 2007-03-19 12:53:14.996577
  19899. 22130 543 2 15281 1.99 2007-03-22 17:38:52.996577
  19900. 22131 543 1 15785 1.99 2007-03-23 12:14:53.996577
  19901. 22132 544 1 10735 0.99 2007-03-01 17:58:11.996577
  19902. 22133 544 1 11401 3.99 2007-03-02 17:33:32.996577
  19903. 22134 544 2 11766 2.99 2007-03-17 08:27:06.996577
  19904. 22135 544 2 12640 3.99 2007-03-18 16:43:15.996577
  19905. 22136 544 2 14142 4.99 2007-03-21 00:36:09.996577
  19906. 22137 544 1 14498 4.99 2007-03-21 12:39:10.996577
  19907. 22138 544 2 14651 8.99 2007-03-21 17:59:35.996577
  19908. 22139 544 1 14981 2.99 2007-03-22 05:47:31.996577
  19909. 22140 544 1 15219 6.99 2007-03-22 15:28:57.996577
  19910. 22141 544 1 15605 4.99 2007-03-23 05:17:13.996577
  19911. 22142 545 2 10931 2.99 2007-03-02 01:13:25.996577
  19912. 22143 545 2 11760 2.99 2007-03-17 08:12:48.996577
  19913. 22144 545 1 12098 4.99 2007-03-17 21:06:57.996577
  19914. 22145 545 1 12349 2.99 2007-03-18 05:52:08.996577
  19915. 22146 545 2 12667 10.99 2007-03-18 17:40:11.996577
  19916. 22147 545 1 12800 2.99 2007-03-18 22:55:37.996577
  19917. 22148 545 1 13595 4.99 2007-03-20 04:22:53.996577
  19918. 22149 545 1 15585 0.99 2007-03-23 04:23:48.996577
  19919. 22150 545 2 15998 4.99 2007-03-23 19:09:35.996577
  19920. 22151 546 2 10370 0.99 2007-03-01 04:46:30.996577
  19921. 22152 546 2 11352 5.99 2007-03-02 15:58:05.996577
  19922. 22153 546 1 11797 4.99 2007-03-17 09:45:47.996577
  19923. 22154 546 2 12591 2.99 2007-03-18 14:45:07.996577
  19924. 22155 546 2 13850 5.99 2007-03-20 13:11:29.996577
  19925. 22156 546 1 14797 4.99 2007-03-21 23:09:50.996577
  19926. 22157 546 1 14829 2.99 2007-03-22 00:04:03.996577
  19927. 22158 546 1 14929 3.99 2007-03-22 04:01:04.996577
  19928. 22159 546 2 15565 4.99 2007-03-23 03:41:35.996577
  19929. 22160 547 1 10903 2.99 2007-03-02 00:10:25.996577
  19930. 22161 547 1 10980 4.99 2007-03-02 02:45:58.996577
  19931. 22162 547 2 11170 5.99 2007-03-02 08:50:19.996577
  19932. 22163 547 2 11361 0.99 2007-03-02 16:15:00.996577
  19933. 22164 547 1 12579 0.99 2007-03-18 14:16:15.996577
  19934. 22165 547 2 12943 2.99 2007-03-19 04:14:52.996577
  19935. 22166 547 2 13307 2.99 2007-03-19 17:27:10.996577
  19936. 22167 547 1 14510 9.99 2007-03-21 13:13:07.996577
  19937. 22168 547 2 14884 4.99 2007-03-22 02:25:34.996577
  19938. 22169 548 2 10318 0.99 2007-03-01 03:05:19.996577
  19939. 22170 548 1 12860 5.99 2007-03-19 00:53:07.996577
  19940. 22171 548 1 13691 3.99 2007-03-20 07:36:05.996577
  19941. 22172 548 2 13730 7.99 2007-03-20 08:45:35.996577
  19942. 22173 548 2 14188 0.99 2007-03-21 02:00:30.996577
  19943. 22174 548 2 14723 6.99 2007-03-21 20:20:58.996577
  19944. 22175 549 2 10281 0.99 2007-03-01 01:56:59.996577
  19945. 22176 549 2 11737 4.99 2007-03-17 07:10:34.996577
  19946. 22177 549 2 11878 2.99 2007-03-17 12:52:18.996577
  19947. 22178 549 2 12634 2.99 2007-03-18 16:26:40.996577
  19948. 22179 549 2 12747 4.99 2007-03-18 20:56:48.996577
  19949. 22180 549 1 14434 0.99 2007-03-21 10:09:12.996577
  19950. 22181 550 1 11246 2.99 2007-03-02 12:02:22.996577
  19951. 22182 550 2 11320 0.99 2007-03-02 14:41:54.996577
  19952. 22183 550 1 11969 4.99 2007-03-17 16:18:03.996577
  19953. 22184 550 1 12063 2.99 2007-03-17 19:53:14.996577
  19954. 22185 550 2 12077 4.99 2007-03-17 20:27:40.996577
  19955. 22186 550 1 13114 10.99 2007-03-19 09:55:58.996577
  19956. 22187 550 2 14071 2.99 2007-03-20 21:30:22.996577
  19957. 22188 550 2 14127 4.99 2007-03-21 00:01:58.996577
  19958. 22189 550 2 14375 6.99 2007-03-21 08:15:01.996577
  19959. 22190 550 1 14687 4.99 2007-03-21 19:00:42.996577
  19960. 22191 550 2 15431 9.99 2007-03-22 22:55:13.996577
  19961. 22192 550 1 15883 0.99 2007-03-23 15:13:22.996577
  19962. 22193 550 2 15977 4.99 2007-03-23 18:35:36.996577
  19963. 22194 551 2 11380 0.99 2007-03-02 16:45:58.996577
  19964. 22195 551 2 11883 2.99 2007-03-17 13:09:54.996577
  19965. 22196 551 2 12208 4.99 2007-03-18 00:53:51.996577
  19966. 22197 551 2 12868 0.99 2007-03-19 01:15:45.996577
  19967. 22198 551 1 13439 3.99 2007-03-19 22:10:42.996577
  19968. 22199 551 1 14420 0.99 2007-03-21 09:44:41.996577
  19969. 22200 551 2 14609 4.99 2007-03-21 16:25:52.996577
  19970. 22201 551 2 14633 2.99 2007-03-21 17:19:36.996577
  19971. 22202 551 1 14833 2.99 2007-03-22 00:13:44.996577
  19972. 22203 551 1 15377 4.99 2007-03-22 20:50:59.996577
  19973. 22204 551 2 15390 6.99 2007-03-22 21:25:51.996577
  19974. 22205 552 1 11146 1.99 2007-03-02 08:13:58.996577
  19975. 22206 552 2 11205 4.99 2007-03-02 10:25:20.996577
  19976. 22207 552 2 11300 7.99 2007-03-02 14:06:08.996577
  19977. 22208 552 2 12433 4.99 2007-03-18 09:06:15.996577
  19978. 22209 552 2 12880 2.99 2007-03-19 01:55:43.996577
  19979. 22210 552 2 13574 2.99 2007-03-20 03:39:05.996577
  19980. 22211 552 1 13693 0.99 2007-03-20 07:40:08.996577
  19981. 22212 552 2 14724 4.99 2007-03-21 20:22:13.996577
  19982. 22213 552 2 15700 2.99 2007-03-23 08:49:47.996577
  19983. 22214 553 2 11710 4.99 2007-03-17 05:58:10.996577
  19984. 22215 553 1 13972 2.99 2007-03-20 17:20:43.996577
  19985. 22216 553 1 15042 4.99 2007-03-22 08:16:03.996577
  19986. 22217 553 1 15506 0.99 2007-03-23 01:16:50.996577
  19987. 22218 554 1 10612 6.99 2007-03-01 13:23:57.996577
  19988. 22219 554 2 10829 7.99 2007-03-01 21:45:32.996577
  19989. 22220 554 2 11589 9.99 2007-03-17 00:56:48.996577
  19990. 22221 554 1 11873 0.99 2007-03-17 12:43:05.996577
  19991. 22222 554 1 12010 8.99 2007-03-17 17:46:20.996577
  19992. 22223 554 1 12014 0.99 2007-03-17 17:58:10.996577
  19993. 22224 554 2 13139 4.99 2007-03-19 11:00:36.996577
  19994. 22225 554 2 14015 2.99 2007-03-20 19:16:09.996577
  19995. 22226 554 1 14098 3.99 2007-03-20 22:58:58.996577
  19996. 22227 554 1 14469 0.99 2007-03-21 11:35:50.996577
  19997. 22228 554 1 14626 2.99 2007-03-21 17:04:10.996577
  19998. 22229 554 2 15690 4.99 2007-03-23 08:21:56.996577
  19999. 22230 555 1 10921 3.99 2007-03-02 00:42:59.996577
  20000. 22231 555 1 11168 4.99 2007-03-02 08:48:08.996577
  20001. 22232 555 1 11718 4.99 2007-03-17 06:13:08.996577
  20002. 22233 555 2 11747 2.99 2007-03-17 07:31:57.996577
  20003. 22234 555 2 12091 4.99 2007-03-17 20:51:16.996577
  20004. 22235 555 2 12150 2.99 2007-03-17 22:42:21.996577
  20005. 22236 555 2 12182 2.99 2007-03-17 23:58:45.996577
  20006. 22237 555 1 12388 2.99 2007-03-18 07:16:35.996577
  20007. 22238 555 1 12883 4.99 2007-03-19 02:02:13.996577
  20008. 22239 555 2 15102 6.99 2007-03-22 10:27:24.996577
  20009. 22240 556 2 10518 6.99 2007-03-01 10:12:34.996577
  20010. 22241 556 1 11466 1.99 2007-03-02 20:15:12.996577
  20011. 22242 556 2 11804 3.99 2007-03-17 10:11:11.996577
  20012. 22243 556 1 12045 4.99 2007-03-17 19:09:12.996577
  20013. 22244 556 1 14176 2.99 2007-03-21 01:37:49.996577
  20014. 22245 556 1 15568 2.99 2007-03-23 03:52:35.996577
  20015. 22246 557 1 11181 0.99 2007-03-02 09:23:29.996577
  20016. 22247 557 1 12555 1.99 2007-03-18 13:17:48.996577
  20017. 22248 557 1 12789 2.99 2007-03-18 22:44:45.996577
  20018. 22249 557 1 13540 2.99 2007-03-20 02:09:49.996577
  20019. 22250 557 2 13794 2.99 2007-03-20 10:53:58.996577
  20020. 22251 557 2 15236 0.99 2007-03-22 16:12:53.996577
  20021. 22252 557 2 15570 5.99 2007-03-23 03:53:21.996577
  20022. 22253 557 2 15914 0.99 2007-03-23 16:17:52.996577
  20023. 22254 558 2 10707 0.99 2007-03-01 17:10:00.996577
  20024. 22255 558 1 11268 0.99 2007-03-02 12:39:05.996577
  20025. 22256 558 2 11567 5.99 2007-03-16 23:57:09.996577
  20026. 22257 558 2 12040 6.99 2007-03-17 18:58:22.996577
  20027. 22258 558 1 12194 1.99 2007-03-18 00:33:13.996577
  20028. 22259 558 2 13566 5.99 2007-03-20 03:13:58.996577
  20029. 22260 558 2 14235 7.99 2007-03-21 03:37:08.996577
  20030. 22261 558 1 14286 5.99 2007-03-21 05:22:19.996577
  20031. 22262 559 1 10377 3.99 2007-03-01 04:56:54.996577
  20032. 22263 559 1 10669 8.99 2007-03-01 15:31:54.996577
  20033. 22264 559 2 10876 0.99 2007-03-01 23:00:24.996577
  20034. 22265 559 2 11136 1.99 2007-03-02 07:51:23.996577
  20035. 22266 559 1 13234 1.99 2007-03-19 14:45:41.996577
  20036. 22267 559 2 13248 6.99 2007-03-19 15:16:07.996577
  20037. 22268 559 2 13322 4.99 2007-03-19 18:11:34.996577
  20038. 22269 559 1 13845 5.99 2007-03-20 12:59:47.996577
  20039. 22270 559 1 14342 4.99 2007-03-21 07:07:52.996577
  20040. 22271 559 2 14622 4.99 2007-03-21 16:54:25.996577
  20041. 22272 559 2 15440 4.99 2007-03-22 23:05:47.996577
  20042. 22273 559 1 15877 4.99 2007-03-23 15:01:59.996577
  20043. 22274 560 2 10480 4.99 2007-03-01 08:42:07.996577
  20044. 22275 560 1 10702 4.99 2007-03-01 17:03:25.996577
  20045. 22276 560 1 10733 7.99 2007-03-01 17:56:27.996577
  20046. 22277 560 1 11334 7.99 2007-03-02 15:21:46.996577
  20047. 22278 560 1 11788 4.99 2007-03-17 09:27:44.996577
  20048. 22279 560 2 14008 5.99 2007-03-20 18:54:26.996577
  20049. 22280 560 1 14341 1.99 2007-03-21 07:06:50.996577
  20050. 22281 560 2 14363 4.99 2007-03-21 07:48:29.996577
  20051. 22282 560 1 14436 2.99 2007-03-21 10:16:53.996577
  20052. 22283 560 2 14785 2.99 2007-03-21 22:53:03.996577
  20053. 22284 560 1 15352 6.99 2007-03-22 19:45:20.996577
  20054. 22285 561 2 10317 2.99 2007-03-01 03:04:00.996577
  20055. 22286 561 1 10907 4.99 2007-03-02 00:20:14.996577
  20056. 22287 561 1 11371 2.99 2007-03-02 16:36:02.996577
  20057. 22288 561 2 11402 2.99 2007-03-02 17:35:47.996577
  20058. 22289 561 2 12441 2.99 2007-03-18 09:16:23.996577
  20059. 22290 561 2 14139 0.99 2007-03-21 00:32:59.996577
  20060. 22291 561 1 15573 0.99 2007-03-23 03:57:02.996577
  20061. 22292 561 1 15946 2.99 2007-03-23 17:22:33.996577
  20062. 22293 562 2 10868 6.99 2007-03-01 22:53:41.996577
  20063. 22294 562 2 12008 4.99 2007-03-17 17:44:44.996577
  20064. 22295 562 1 12248 5.99 2007-03-18 02:21:44.996577
  20065. 22296 562 2 13225 2.99 2007-03-19 14:22:59.996577
  20066. 22297 562 2 13347 10.99 2007-03-19 18:57:14.996577
  20067. 22298 562 2 13639 0.99 2007-03-20 05:50:33.996577
  20068. 22299 562 1 15212 2.99 2007-03-22 15:12:52.996577
  20069. 22300 562 2 15475 2.99 2007-03-23 00:13:09.996577
  20070. 22301 562 1 15900 1.99 2007-03-23 15:44:56.996577
  20071. 22302 563 2 11829 0.99 2007-03-17 11:20:30.996577
  20072. 22303 563 1 12039 1.99 2007-03-17 18:57:34.996577
  20073. 22304 563 1 12202 1.99 2007-03-18 00:42:34.996577
  20074. 22305 563 1 12832 2.99 2007-03-19 00:10:10.996577
  20075. 22306 563 2 13863 9.99 2007-03-20 13:26:16.996577
  20076. 22307 563 2 14592 4.99 2007-03-21 15:58:43.996577
  20077. 22308 563 2 15507 0.99 2007-03-23 01:16:52.996577
  20078. 22309 563 2 15638 3.99 2007-03-23 06:23:20.996577
  20079. 22310 563 1 15850 4.99 2007-03-23 14:14:08.996577
  20080. 22311 564 2 10352 1.99 2007-03-01 04:13:02.996577
  20081. 22312 564 2 10401 4.99 2007-03-01 05:55:35.996577
  20082. 22313 564 1 10528 2.99 2007-03-01 10:24:48.996577
  20083. 22314 564 2 11768 2.99 2007-03-17 08:30:55.996577
  20084. 22315 564 2 12197 6.99 2007-03-18 00:37:24.996577
  20085. 22316 564 2 12617 2.99 2007-03-18 15:51:14.996577
  20086. 22317 564 2 13324 0.99 2007-03-19 18:19:26.996577
  20087. 22318 564 2 13558 0.99 2007-03-20 02:41:43.996577
  20088. 22319 564 1 13701 0.99 2007-03-20 07:55:31.996577
  20089. 22320 564 2 14439 5.99 2007-03-21 10:21:07.996577
  20090. 22321 564 1 14593 0.99 2007-03-21 16:01:44.996577
  20091. 22322 564 2 15059 8.99 2007-03-22 08:50:26.996577
  20092. 22323 565 2 10776 10.99 2007-03-01 19:28:24.996577
  20093. 22324 565 2 10913 3.99 2007-03-02 00:32:29.996577
  20094. 22325 565 2 11189 6.99 2007-03-02 09:45:49.996577
  20095. 22326 565 1 11399 3.99 2007-03-02 17:24:54.996577
  20096. 22327 565 2 11506 4.99 2007-03-16 21:54:14.996577
  20097. 22328 565 1 11588 3.99 2007-03-17 00:54:49.996577
  20098. 22329 565 1 11795 2.99 2007-03-17 09:42:04.996577
  20099. 22330 565 2 12743 5.99 2007-03-18 20:50:57.996577
  20100. 22331 565 2 13195 4.99 2007-03-19 13:07:40.996577
  20101. 22332 565 2 13217 4.99 2007-03-19 14:07:05.996577
  20102. 22333 565 1 13362 0.99 2007-03-19 19:36:20.996577
  20103. 22334 565 1 13925 8.99 2007-03-20 15:34:00.996577
  20104. 22335 565 1 15885 2.99 2007-03-23 15:19:09.996577
  20105. 22336 566 2 10259 2.99 2007-03-01 01:20:31.996577
  20106. 22337 566 2 10289 6.99 2007-03-01 02:08:14.996577
  20107. 22338 566 2 11129 2.99 2007-03-02 07:37:10.996577
  20108. 22339 566 1 11717 0.99 2007-03-17 06:12:35.996577
  20109. 22340 566 1 11941 1.99 2007-03-17 15:25:23.996577
  20110. 22341 566 2 12382 8.99 2007-03-18 07:00:59.996577
  20111. 22342 566 2 12995 4.99 2007-03-19 05:54:56.996577
  20112. 22343 566 2 13762 4.99 2007-03-20 09:57:58.996577
  20113. 22344 566 1 14277 3.99 2007-03-21 05:03:07.996577
  20114. 22345 566 1 14297 2.99 2007-03-21 05:42:12.996577
  20115. 22346 567 2 10708 7.99 2007-03-01 17:11:54.996577
  20116. 22347 567 2 11749 2.99 2007-03-17 07:32:29.996577
  20117. 22348 567 1 12119 2.99 2007-03-17 21:45:10.996577
  20118. 22349 567 2 13031 2.99 2007-03-19 06:58:30.996577
  20119. 22350 567 2 14839 2.99 2007-03-22 00:26:41.996577
  20120. 22351 567 2 15074 5.99 2007-03-22 09:31:18.996577
  20121. 22352 567 2 15594 10.99 2007-03-23 04:47:09.996577
  20122. 22353 568 1 10340 2.99 2007-03-01 03:35:29.996577
  20123. 22354 568 2 10689 0.99 2007-03-01 16:32:44.996577
  20124. 22355 568 2 10869 0.99 2007-03-01 22:55:20.996577
  20125. 22356 568 1 11331 2.99 2007-03-02 15:17:27.996577
  20126. 22357 568 1 13883 4.99 2007-03-20 13:57:19.996577
  20127. 22358 568 2 15069 5.99 2007-03-22 09:24:08.996577
  20128. 22359 568 1 15203 2.99 2007-03-22 14:56:26.996577
  20129. 22360 569 2 10884 0.99 2007-03-01 23:15:59.996577
  20130. 22361 569 1 11030 1.99 2007-03-02 04:19:46.996577
  20131. 22362 569 2 11255 4.99 2007-03-02 12:12:56.996577
  20132. 22363 569 1 11354 6.99 2007-03-02 16:03:36.996577
  20133. 22364 569 1 11946 4.99 2007-03-17 15:34:19.996577
  20134. 22365 569 1 12157 2.99 2007-03-17 23:02:11.996577
  20135. 22366 569 2 12308 0.99 2007-03-18 04:17:19.996577
  20136. 22367 569 1 12568 3.99 2007-03-18 13:44:10.996577
  20137. 22368 569 2 12958 2.99 2007-03-19 04:47:47.996577
  20138. 22369 569 1 13287 7.99 2007-03-19 16:56:50.996577
  20139. 22370 569 2 13554 9.99 2007-03-20 02:37:05.996577
  20140. 22371 569 2 14207 4.99 2007-03-21 02:36:45.996577
  20141. 22372 569 2 14400 0.99 2007-03-21 09:02:11.996577
  20142. 22373 569 1 14896 8.99 2007-03-22 02:49:21.996577
  20143. 22374 569 1 14959 2.99 2007-03-22 04:58:54.996577
  20144. 22375 569 2 15617 0.99 2007-03-23 05:35:48.996577
  20145. 22376 569 2 16025 4.99 2007-03-23 20:17:20.996577
  20146. 22377 570 1 11098 3.99 2007-03-02 06:34:44.996577
  20147. 22378 570 2 12042 4.99 2007-03-17 19:05:03.996577
  20148. 22379 570 2 14768 3.99 2007-03-21 22:13:19.996577
  20149. 22380 571 1 10227 2.99 2007-03-01 00:10:48.996577
  20150. 22381 571 2 11080 2.99 2007-03-02 05:58:22.996577
  20151. 22382 571 2 11191 7.99 2007-03-02 09:52:33.996577
  20152. 22383 571 1 13228 2.99 2007-03-19 14:36:42.996577
  20153. 22384 571 2 13266 2.99 2007-03-19 15:59:46.996577
  20154. 22385 571 1 14956 0.99 2007-03-22 04:54:42.996577
  20155. 22386 571 1 15841 4.99 2007-03-23 14:04:25.996577
  20156. 22387 572 1 11114 0.99 2007-03-02 06:55:11.996577
  20157. 22388 572 1 11121 4.99 2007-03-02 07:16:57.996577
  20158. 22389 572 2 11415 2.99 2007-03-02 18:12:04.996577
  20159. 22390 572 1 11426 4.99 2007-03-02 18:28:35.996577
  20160. 22391 572 1 11526 4.99 2007-03-16 22:46:04.996577
  20161. 22392 572 1 12256 1.99 2007-03-18 02:38:05.996577
  20162. 22393 572 2 13377 1.99 2007-03-19 20:00:49.996577
  20163. 22394 572 2 13523 6.99 2007-03-20 01:15:29.996577
  20164. 22395 572 1 13688 5.99 2007-03-20 07:28:04.996577
  20165. 22396 573 1 10296 0.99 2007-03-01 02:33:03.996577
  20166. 22397 573 1 10887 2.99 2007-03-01 23:21:01.996577
  20167. 22398 573 1 11043 0.99 2007-03-02 04:33:10.996577
  20168. 22399 573 2 11912 5.99 2007-03-17 14:20:15.996577
  20169. 22400 573 1 12017 1.99 2007-03-17 18:02:15.996577
  20170. 22401 573 1 12125 1.99 2007-03-17 21:52:51.996577
  20171. 22402 573 1 12269 6.99 2007-03-18 02:56:20.996577
  20172. 22403 573 1 12791 0.99 2007-03-18 22:45:35.996577
  20173. 22404 573 2 13113 2.99 2007-03-19 09:55:46.996577
  20174. 22405 574 1 10347 4.99 2007-03-01 03:48:29.996577
  20175. 22406 574 2 11775 3.99 2007-03-17 08:54:19.996577
  20176. 22407 574 1 12462 2.99 2007-03-18 09:57:21.996577
  20177. 22408 574 1 13589 4.99 2007-03-20 04:15:51.996577
  20178. 22409 574 1 14076 4.99 2007-03-20 21:48:36.996577
  20179. 22410 574 2 14941 2.99 2007-03-22 04:26:49.996577
  20180. 22411 574 2 15214 2.99 2007-03-22 15:21:55.996577
  20181. 22412 575 1 10331 4.99 2007-03-01 03:25:40.996577
  20182. 22413 575 2 10629 7.99 2007-03-01 14:01:58.996577
  20183. 22414 575 1 11097 3.99 2007-03-02 06:34:12.996577
  20184. 22415 575 1 11458 4.99 2007-03-02 19:52:28.996577
  20185. 22416 575 1 12204 7.99 2007-03-18 00:49:01.996577
  20186. 22417 575 2 12289 8.99 2007-03-18 03:33:54.996577
  20187. 22418 575 2 12770 5.99 2007-03-18 21:57:26.996577
  20188. 22419 575 2 13408 4.99 2007-03-19 21:03:17.996577
  20189. 22420 575 2 13465 2.99 2007-03-19 23:22:40.996577
  20190. 22421 575 2 14952 2.99 2007-03-22 04:48:33.996577
  20191. 22422 575 2 15749 4.99 2007-03-23 11:02:07.996577
  20192. 22423 575 2 15857 0.99 2007-03-23 14:28:17.996577
  20193. 22424 576 2 10724 3.99 2007-03-01 17:39:25.996577
  20194. 22425 576 2 12112 5.99 2007-03-17 21:28:57.996577
  20195. 22426 576 1 12245 4.99 2007-03-18 02:15:06.996577
  20196. 22427 576 1 13061 4.99 2007-03-19 08:12:05.996577
  20197. 22428 576 1 13326 4.99 2007-03-19 18:21:18.996577
  20198. 22429 576 1 14501 4.99 2007-03-21 12:43:04.996577
  20199. 22430 576 1 14541 0.99 2007-03-21 14:02:58.996577
  20200. 22431 576 1 15634 0.99 2007-03-23 06:02:44.996577
  20201. 22432 577 2 10323 4.99 2007-03-01 03:13:24.996577
  20202. 22433 577 1 10487 0.99 2007-03-01 08:55:00.996577
  20203. 22434 577 1 10782 4.99 2007-03-01 19:51:51.996577
  20204. 22435 577 1 11054 7.99 2007-03-02 05:01:33.996577
  20205. 22436 577 2 11464 0.99 2007-03-02 20:10:33.996577
  20206. 22437 577 1 12664 4.99 2007-03-18 17:39:20.996577
  20207. 22438 577 2 12671 0.99 2007-03-18 17:48:25.996577
  20208. 22439 577 2 13200 3.99 2007-03-19 13:24:24.996577
  20209. 22440 577 2 13500 3.99 2007-03-20 00:23:05.996577
  20210. 22441 577 2 15480 2.99 2007-03-23 00:25:46.996577
  20211. 22442 577 2 15873 2.99 2007-03-23 14:56:25.996577
  20212. 22443 577 2 16003 4.99 2007-03-23 19:15:54.996577
  20213. 22444 578 1 10779 7.99 2007-03-01 19:40:20.996577
  20214. 22445 578 1 11199 7.99 2007-03-02 10:16:06.996577
  20215. 22446 578 2 13071 5.99 2007-03-19 08:29:33.996577
  20216. 22447 578 2 13498 5.99 2007-03-20 00:19:49.996577
  20217. 22448 578 2 13552 2.99 2007-03-20 02:32:17.996577
  20218. 22449 578 1 15652 0.99 2007-03-23 07:02:36.996577
  20219. 22450 579 1 11494 3.99 2007-03-02 21:19:49.996577
  20220. 22451 579 2 12051 6.99 2007-03-17 19:24:41.996577
  20221. 22452 579 2 12315 5.99 2007-03-18 04:43:32.996577
  20222. 22453 579 2 14047 2.99 2007-03-20 20:29:09.996577
  20223. 22454 579 1 14185 0.99 2007-03-21 01:57:03.996577
  20224. 22455 579 1 14543 1.99 2007-03-21 14:07:27.996577
  20225. 22456 579 2 14560 2.99 2007-03-21 14:42:13.996577
  20226. 22457 579 2 15601 0.99 2007-03-23 05:01:52.996577
  20227. 22458 579 1 15838 4.99 2007-03-23 13:59:14.996577
  20228. 22459 580 1 10723 3.99 2007-03-01 17:39:15.996577
  20229. 22460 580 2 10965 3.99 2007-03-02 02:28:45.996577
  20230. 22461 580 1 11164 8.99 2007-03-02 08:39:22.996577
  20231. 22462 580 2 12670 2.99 2007-03-18 17:46:24.996577
  20232. 22463 580 2 13313 2.99 2007-03-19 17:40:07.996577
  20233. 22464 580 2 13742 2.99 2007-03-20 09:17:41.996577
  20234. 22465 580 2 14818 2.99 2007-03-21 23:45:44.996577
  20235. 22466 580 1 15157 6.99 2007-03-22 12:58:35.996577
  20236. 22467 580 1 15630 6.99 2007-03-23 05:57:39.996577
  20237. 22468 580 1 15947 4.99 2007-03-23 17:22:58.996577
  20238. 22469 581 2 11443 2.99 2007-03-02 18:57:56.996577
  20239. 22470 581 2 11707 2.99 2007-03-17 05:53:25.996577
  20240. 22471 581 2 13621 0.99 2007-03-20 05:12:10.996577
  20241. 22472 581 2 13712 2.99 2007-03-20 08:06:30.996577
  20242. 22473 581 2 14070 8.99 2007-03-20 21:25:00.996577
  20243. 22474 581 1 14976 2.99 2007-03-22 05:38:52.996577
  20244. 22475 581 1 15403 0.99 2007-03-22 21:46:36.996577
  20245. 22476 581 2 15792 4.99 2007-03-23 12:34:03.996577
  20246. 22477 582 2 11290 7.99 2007-03-02 13:26:10.996577
  20247. 22478 582 1 11667 5.99 2007-03-17 04:15:21.996577
  20248. 22479 582 1 11708 2.99 2007-03-17 05:55:13.996577
  20249. 22480 582 2 13815 5.99 2007-03-20 11:37:19.996577
  20250. 22481 582 1 14376 4.99 2007-03-21 08:17:22.996577
  20251. 22482 582 1 14568 0.99 2007-03-21 14:59:14.996577
  20252. 22483 582 1 15090 5.99 2007-03-22 10:02:59.996577
  20253. 22484 582 1 15503 2.99 2007-03-23 01:13:15.996577
  20254. 22485 582 1 15539 0.99 2007-03-23 02:37:29.996577
  20255. 22486 582 2 15911 4.99 2007-03-23 16:13:19.996577
  20256. 22487 583 2 10301 4.99 2007-03-01 02:38:03.996577
  20257. 22488 583 2 10586 2.99 2007-03-01 12:29:25.996577
  20258. 22489 583 2 10800 4.99 2007-03-01 20:36:10.996577
  20259. 22490 583 2 11002 4.99 2007-03-02 03:31:22.996577
  20260. 22491 583 1 14259 0.99 2007-03-21 04:28:48.996577
  20261. 22492 584 1 10914 4.99 2007-03-02 00:33:09.996577
  20262. 22493 584 2 10966 0.99 2007-03-02 02:29:13.996577
  20263. 22494 584 1 11213 4.99 2007-03-02 10:47:01.996577
  20264. 22495 584 2 11500 6.99 2007-03-16 21:29:48.996577
  20265. 22496 584 2 12507 8.99 2007-03-18 11:47:39.996577
  20266. 22497 584 2 12541 2.99 2007-03-18 12:46:56.996577
  20267. 22498 584 2 12693 5.99 2007-03-18 18:38:45.996577
  20268. 22499 584 1 12844 2.99 2007-03-19 00:27:34.996577
  20269. 22500 584 2 14102 5.99 2007-03-20 23:03:47.996577
  20270. 22501 584 2 14230 5.99 2007-03-21 03:25:55.996577
  20271. 22502 584 2 14447 4.99 2007-03-21 10:40:31.996577
  20272. 22503 584 1 14930 1.99 2007-03-22 04:06:58.996577
  20273. 22504 584 1 15615 0.99 2007-03-23 05:34:26.996577
  20274. 22505 585 2 10573 0.99 2007-03-01 11:55:50.996577
  20275. 22506 585 1 11285 9.99 2007-03-02 13:12:28.996577
  20276. 22507 585 2 13593 3.99 2007-03-20 04:19:18.996577
  20277. 22508 585 2 13939 0.99 2007-03-20 15:56:27.996577
  20278. 22509 585 1 15804 4.99 2007-03-23 12:57:42.996577
  20279. 22510 585 1 15896 6.99 2007-03-23 15:38:22.996577
  20280. 22511 586 1 11034 2.99 2007-03-02 04:23:19.996577
  20281. 22512 586 1 11763 0.99 2007-03-17 08:20:05.996577
  20282. 22513 586 1 12013 4.99 2007-03-17 17:51:28.996577
  20283. 22514 586 1 12898 0.99 2007-03-19 02:23:00.996577
  20284. 22515 586 2 14043 2.99 2007-03-20 20:15:09.996577
  20285. 22516 586 1 14392 1.99 2007-03-21 08:47:51.996577
  20286. 22517 586 2 14533 2.99 2007-03-21 13:43:45.996577
  20287. 22518 586 1 15666 3.99 2007-03-23 07:29:36.996577
  20288. 22519 586 2 15684 0.99 2007-03-23 08:08:30.996577
  20289. 22520 587 2 10224 4.99 2007-03-01 00:00:22.996577
  20290. 22521 587 1 10825 2.99 2007-03-01 21:33:59.996577
  20291. 22522 587 1 11078 2.99 2007-03-02 05:55:24.996577
  20292. 22523 587 2 11403 4.99 2007-03-02 17:38:47.996577
  20293. 22524 587 2 12164 4.99 2007-03-17 23:15:04.996577
  20294. 22525 587 2 12330 6.99 2007-03-18 05:14:59.996577
  20295. 22526 587 2 14710 4.99 2007-03-21 19:43:49.996577
  20296. 22527 587 2 15348 2.99 2007-03-22 19:42:12.996577
  20297. 22528 587 2 15349 0.99 2007-03-22 19:42:17.996577
  20298. 22529 588 2 10373 4.99 2007-03-01 04:52:52.996577
  20299. 22530 588 1 12185 2.99 2007-03-18 00:08:40.996577
  20300. 22531 588 2 12815 4.99 2007-03-18 23:28:08.996577
  20301. 22532 588 1 13064 4.99 2007-03-19 08:15:19.996577
  20302. 22533 588 1 13923 1.99 2007-03-20 15:33:28.996577
  20303. 22534 588 1 15109 1.99 2007-03-22 10:41:24.996577
  20304. 22535 588 1 15158 2.99 2007-03-22 12:59:05.996577
  20305. 22536 588 1 15209 4.99 2007-03-22 15:05:58.996577
  20306. 22537 589 2 10544 4.99 2007-03-01 11:04:47.996577
  20307. 22538 589 1 11980 4.99 2007-03-17 16:38:44.996577
  20308. 22539 589 1 12738 7.99 2007-03-18 20:40:13.996577
  20309. 22540 589 2 12933 8.99 2007-03-19 03:46:46.996577
  20310. 22541 589 1 14038 6.99 2007-03-20 20:07:49.996577
  20311. 22542 589 1 14254 6.99 2007-03-21 04:19:54.996577
  20312. 22543 589 1 14544 0.99 2007-03-21 14:09:27.996577
  20313. 22544 589 2 14706 0.99 2007-03-21 19:33:08.996577
  20314. 22545 589 2 15917 5.99 2007-03-23 16:25:54.996577
  20315. 22546 589 2 15992 0.99 2007-03-23 18:56:58.996577
  20316. 22547 590 1 10657 4.99 2007-03-01 15:07:10.996577
  20317. 22548 590 2 11578 5.99 2007-03-17 00:22:39.996577
  20318. 22549 590 2 11713 3.99 2007-03-17 06:02:31.996577
  20319. 22550 590 1 14830 2.99 2007-03-22 00:05:45.996577
  20320. 22551 591 1 10415 4.99 2007-03-01 06:34:25.996577
  20321. 22552 591 2 12203 5.99 2007-03-18 00:47:18.996577
  20322. 22553 591 2 12227 4.99 2007-03-18 01:32:54.996577
  20323. 22554 591 1 12547 4.99 2007-03-18 12:58:05.996577
  20324. 22555 591 1 12571 5.99 2007-03-18 13:59:44.996577
  20325. 22556 591 1 12934 5.99 2007-03-19 03:47:08.996577
  20326. 22557 591 2 13104 2.99 2007-03-19 09:34:32.996577
  20327. 22558 591 2 13343 3.99 2007-03-19 18:50:34.996577
  20328. 22559 591 1 13867 9.99 2007-03-20 13:34:08.996577
  20329. 22560 592 2 10383 0.99 2007-03-01 05:05:42.996577
  20330. 22561 592 2 10634 2.99 2007-03-01 14:06:14.996577
  20331. 22562 592 1 11410 8.99 2007-03-02 17:57:27.996577
  20332. 22563 592 2 12043 0.99 2007-03-17 19:06:47.996577
  20333. 22564 592 2 12619 0.99 2007-03-18 15:52:41.996577
  20334. 22565 592 1 12976 1.99 2007-03-19 05:21:24.996577
  20335. 22566 592 1 13157 2.99 2007-03-19 11:40:54.996577
  20336. 22567 592 2 13662 3.99 2007-03-20 06:40:24.996577
  20337. 22568 593 1 10368 3.99 2007-03-01 04:42:04.996577
  20338. 22569 593 2 10533 3.99 2007-03-01 10:42:42.996577
  20339. 22570 593 1 10840 5.99 2007-03-01 22:07:00.996577
  20340. 22571 593 2 10904 4.99 2007-03-02 00:11:28.996577
  20341. 22572 593 2 12744 2.99 2007-03-18 20:51:02.996577
  20342. 22573 593 1 13524 6.99 2007-03-20 01:17:09.996577
  20343. 22574 593 1 14408 5.99 2007-03-21 09:15:50.996577
  20344. 22575 593 1 14653 0.99 2007-03-21 18:04:25.996577
  20345. 22576 594 2 10704 8.99 2007-03-01 17:06:28.996577
  20346. 22577 594 2 14824 4.99 2007-03-21 23:56:17.996577
  20347. 22578 594 1 14999 4.99 2007-03-22 06:23:13.996577
  20348. 22579 595 1 10729 2.99 2007-03-01 17:49:37.996577
  20349. 22580 595 1 10932 2.99 2007-03-02 01:14:48.996577
  20350. 22581 595 2 11748 0.99 2007-03-17 07:32:28.996577
  20351. 22582 595 1 12235 0.99 2007-03-18 01:46:16.996577
  20352. 22583 595 1 14334 0.99 2007-03-21 07:00:58.996577
  20353. 22584 595 2 15576 2.99 2007-03-23 04:00:29.996577
  20354. 22585 595 2 15994 0.99 2007-03-23 18:57:36.996577
  20355. 22586 595 2 16016 2.99 2007-03-23 19:55:01.996577
  20356. 22587 596 2 10692 4.99 2007-03-01 16:41:01.996577
  20357. 22588 596 1 10756 2.99 2007-03-01 18:45:29.996577
  20358. 22589 596 2 10804 0.99 2007-03-01 20:50:37.996577
  20359. 22590 596 2 11009 4.99 2007-03-02 03:34:49.996577
  20360. 22591 596 2 11852 3.99 2007-03-17 12:06:53.996577
  20361. 22592 596 1 11934 0.99 2007-03-17 15:08:26.996577
  20362. 22593 596 2 12560 4.99 2007-03-18 13:22:45.996577
  20363. 22594 596 1 12878 4.99 2007-03-19 01:45:34.996577
  20364. 22595 596 1 13648 4.99 2007-03-20 06:16:36.996577
  20365. 22596 596 1 14050 3.99 2007-03-20 20:37:30.996577
  20366. 22597 596 1 14417 0.99 2007-03-21 09:42:01.996577
  20367. 22598 596 1 15405 0.99 2007-03-22 21:49:07.996577
  20368. 22599 596 1 15899 6.99 2007-03-23 15:44:54.996577
  20369. 22600 597 2 10986 5.99 2007-03-02 03:03:50.996577
  20370. 22601 597 2 11147 4.99 2007-03-02 08:14:20.996577
  20371. 22602 597 2 11223 2.99 2007-03-02 11:02:53.996577
  20372. 22603 597 1 11240 2.99 2007-03-02 11:56:56.996577
  20373. 22604 597 1 11880 5.99 2007-03-17 12:56:54.996577
  20374. 22605 597 1 12081 4.99 2007-03-17 20:39:12.996577
  20375. 22606 597 1 12992 0.99 2007-03-19 05:51:32.996577
  20376. 22607 597 2 13019 2.99 2007-03-19 06:36:09.996577
  20377. 22608 597 1 13152 6.99 2007-03-19 11:37:58.996577
  20378. 22609 597 2 15275 2.99 2007-03-22 17:26:05.996577
  20379. 22610 597 1 15469 4.99 2007-03-22 23:58:25.996577
  20380. 22611 598 2 11350 0.99 2007-03-02 15:51:25.996577
  20381. 22612 598 2 12601 2.99 2007-03-18 15:16:18.996577
  20382. 22613 598 2 14345 0.99 2007-03-21 07:09:41.996577
  20383. 22614 598 2 15307 2.99 2007-03-22 18:22:52.996577
  20384. 22615 598 1 15443 7.99 2007-03-22 23:12:41.996577
  20385. 22616 599 2 11522 3.99 2007-03-16 22:33:31.996577
  20386. 22617 599 1 14233 1.99 2007-03-21 03:35:34.996577
  20387. 22618 599 1 14599 4.99 2007-03-21 16:12:08.996577
  20388. 22619 599 1 14719 1.99 2007-03-21 20:10:23.996577
  20389. 22620 599 2 15590 8.99 2007-03-23 04:38:10.996577
  20390. 22621 599 2 15719 2.99 2007-03-23 09:37:12.996577
  20391. 22622 599 2 15725 2.99 2007-03-23 09:53:26.996577
  20392. 22623 202 1 10375 2.99 2007-03-01 04:54:48.996577
  20393. 22624 202 1 11210 4.99 2007-03-02 10:44:20.996577
  20394. 22625 202 2 11924 4.99 2007-03-17 14:50:31.996577
  20395. 22626 202 2 12801 8.99 2007-03-18 22:55:45.996577
  20396. 22627 202 1 13196 4.99 2007-03-19 13:08:58.996577
  20397. 22628 202 1 13528 3.99 2007-03-20 01:31:57.996577
  20398. 22629 202 1 14019 3.99 2007-03-20 19:27:41.996577
  20399. 22630 202 1 15095 0.99 2007-03-22 10:10:01.996577
  20400. 22631 202 2 15772 4.99 2007-03-23 11:51:22.996577
  20401. 22632 203 2 10700 3.99 2007-03-01 16:54:57.996577
  20402. 22633 203 2 10805 2.99 2007-03-01 20:52:03.996577
  20403. 22634 203 1 11712 2.99 2007-03-17 06:01:17.996577
  20404. 22635 203 1 12519 0.99 2007-03-18 12:10:40.996577
  20405. 22636 203 2 13841 4.99 2007-03-20 12:53:44.996577
  20406. 22637 203 2 14505 5.99 2007-03-21 12:54:54.996577
  20407. 22638 203 2 15798 2.99 2007-03-23 12:51:29.996577
  20408. 22639 203 2 15991 2.99 2007-03-23 18:56:00.996577
  20409. 22640 204 2 10399 5.99 2007-03-01 05:42:05.996577
  20410. 22641 204 1 11261 7.99 2007-03-02 12:22:52.996577
  20411. 22642 204 2 11886 0.99 2007-03-17 13:27:17.996577
  20412. 22643 204 1 12737 6.99 2007-03-18 20:40:03.996577
  20413. 22644 204 1 13084 0.99 2007-03-19 08:55:51.996577
  20414. 22645 204 1 13416 4.99 2007-03-19 21:17:14.996577
  20415. 22646 204 2 13899 2.99 2007-03-20 14:33:37.996577
  20416. 22647 204 2 14163 4.99 2007-03-21 01:25:18.996577
  20417. 22648 204 1 14871 0.99 2007-03-22 01:51:50.996577
  20418. 22649 204 1 15364 4.99 2007-03-22 20:10:07.996577
  20419. 22650 204 2 15415 11.99 2007-03-22 22:17:22.996577
  20420. 22651 205 1 13935 2.99 2007-03-20 15:49:15.996577
  20421. 22652 205 1 14338 0.99 2007-03-21 07:04:29.996577
  20422. 22653 205 2 14391 4.99 2007-03-21 08:44:53.996577
  20423. 22654 205 1 14442 2.99 2007-03-21 10:28:47.996577
  20424. 22655 205 2 14490 6.99 2007-03-21 12:22:41.996577
  20425. 22656 205 2 15418 0.99 2007-03-22 22:22:40.996577
  20426. 22657 206 2 10930 3.99 2007-03-02 01:06:33.996577
  20427. 22658 206 1 11022 2.99 2007-03-02 04:03:29.996577
  20428. 22659 206 2 11634 2.99 2007-03-17 03:00:15.996577
  20429. 22660 206 1 13128 4.99 2007-03-19 10:32:42.996577
  20430. 22661 206 2 13232 2.99 2007-03-19 14:41:58.996577
  20431. 22662 206 2 13263 10.99 2007-03-19 15:55:21.996577
  20432. 22663 206 2 13550 9.99 2007-03-20 02:27:17.996577
  20433. 22664 206 2 13696 0.99 2007-03-20 07:44:41.996577
  20434. 22665 206 2 14695 0.99 2007-03-21 19:15:13.996577
  20435. 22666 206 2 15686 7.99 2007-03-23 08:10:47.996577
  20436. 22667 206 1 15709 4.99 2007-03-23 09:04:26.996577
  20437. 22668 207 2 10234 3.99 2007-03-01 00:24:46.996577
  20438. 22669 207 2 10300 0.99 2007-03-01 02:36:37.996577
  20439. 22670 207 1 11112 2.99 2007-03-02 06:53:40.996577
  20440. 22671 207 2 11260 0.99 2007-03-02 12:20:45.996577
  20441. 22672 207 2 11286 5.99 2007-03-02 13:12:48.996577
  20442. 22673 207 1 11724 6.99 2007-03-17 06:33:10.996577
  20443. 22674 207 2 12108 6.99 2007-03-17 21:25:05.996577
  20444. 22675 207 2 13655 2.99 2007-03-20 06:27:39.996577
  20445. 22676 207 2 13809 8.99 2007-03-20 11:24:29.996577
  20446. 22677 207 2 13912 9.99 2007-03-20 15:00:36.996577
  20447. 22678 207 2 13954 3.99 2007-03-20 16:31:07.996577
  20448. 22679 207 1 15625 1.99 2007-03-23 05:53:55.996577
  20449. 22680 1 2 10437 4.99 2007-03-01 07:19:30.996577
  20450. 22681 1 2 11299 3.99 2007-03-02 14:05:18.996577
  20451. 22682 1 1 11367 0.99 2007-03-02 16:30:04.996577
  20452. 22683 1 2 11824 4.99 2007-03-17 11:06:20.996577
  20453. 22684 1 1 12250 0.99 2007-03-18 02:25:55.996577
  20454. 22685 1 2 13068 0.99 2007-03-19 08:23:42.996577
  20455. 22686 1 2 13176 2.99 2007-03-19 12:25:20.996577
  20456. 22687 1 1 14762 0.99 2007-03-21 22:02:23.996577
  20457. 22688 1 1 14825 1.99 2007-03-21 23:56:23.996577
  20458. 22689 1 2 15298 2.99 2007-03-22 18:10:03.996577
  20459. 22690 1 1 15315 5.99 2007-03-22 18:32:12.996577
  20460. 22691 2 1 10466 0.99 2007-03-01 08:13:52.996577
  20461. 22692 2 1 10918 0.99 2007-03-02 00:39:22.996577
  20462. 22693 2 1 11087 5.99 2007-03-02 06:10:07.996577
  20463. 22694 2 1 11177 6.99 2007-03-02 09:12:14.996577
  20464. 22695 2 2 11256 2.99 2007-03-02 12:13:19.996577
  20465. 22696 2 1 11614 2.99 2007-03-17 02:20:44.996577
  20466. 22697 2 1 12963 2.99 2007-03-19 04:54:30.996577
  20467. 22698 2 1 14475 4.99 2007-03-21 11:52:58.996577
  20468. 22699 2 2 14743 5.99 2007-03-21 21:10:22.996577
  20469. 22700 2 2 15145 4.99 2007-03-22 12:21:30.996577
  20470. 22701 2 2 15907 4.99 2007-03-23 16:08:01.996577
  20471. 22702 3 2 10597 5.99 2007-03-01 12:48:14.996577
  20472. 22703 3 2 12556 4.99 2007-03-18 13:18:21.996577
  20473. 22704 3 1 13403 8.99 2007-03-19 20:46:33.996577
  20474. 22705 3 2 13610 2.99 2007-03-20 04:42:38.996577
  20475. 22706 3 2 14699 8.99 2007-03-21 19:19:14.996577
  20476. 22707 3 2 15038 0.99 2007-03-22 08:05:53.996577
  20477. 22708 3 1 15619 2.99 2007-03-23 05:38:40.996577
  20478. 22709 4 2 11069 0.99 2007-03-02 05:38:00.996577
  20479. 22710 4 1 11110 2.99 2007-03-02 06:48:57.996577
  20480. 22711 4 2 11529 4.99 2007-03-16 22:56:27.996577
  20481. 22712 4 1 12151 2.99 2007-03-17 22:42:29.996577
  20482. 22713 4 2 12294 8.99 2007-03-18 03:43:10.996577
  20483. 22714 4 2 12856 1.99 2007-03-19 00:47:39.996577
  20484. 22715 4 1 13704 2.99 2007-03-20 08:00:30.996577
  20485. 22716 4 1 13807 6.99 2007-03-20 11:24:06.996577
  20486. 22717 4 2 14225 4.99 2007-03-21 03:22:03.996577
  20487. 22718 4 1 15147 2.99 2007-03-22 12:26:49.996577
  20488. 22719 4 2 15635 1.99 2007-03-23 06:11:26.996577
  20489. 22720 5 2 10609 4.99 2007-03-01 13:17:11.996577
  20490. 22721 5 1 10625 0.99 2007-03-01 13:55:36.996577
  20491. 22722 5 2 11001 4.99 2007-03-02 03:25:11.996577
  20492. 22723 5 1 11179 4.99 2007-03-02 09:18:32.996577
  20493. 22724 5 2 11930 3.99 2007-03-17 14:57:19.996577
  20494. 22725 5 1 12145 9.99 2007-03-17 22:38:30.996577
  20495. 22726 5 1 12797 2.99 2007-03-18 22:52:34.996577
  20496. 22727 5 1 13063 1.99 2007-03-19 08:14:07.996577
  20497. 22728 5 2 13877 0.99 2007-03-20 13:44:44.996577
  20498. 22729 5 2 14053 6.99 2007-03-20 20:42:25.996577
  20499. 22730 5 1 14430 6.99 2007-03-21 09:59:37.996577
  20500. 22731 5 2 14494 2.99 2007-03-21 12:31:16.996577
  20501. 22732 5 2 15232 0.99 2007-03-22 16:05:28.996577
  20502. 22733 6 1 10271 2.99 2007-03-01 01:42:05.996577
  20503. 22734 6 1 11023 2.99 2007-03-02 04:05:04.996577
  20504. 22735 6 1 11398 3.99 2007-03-02 17:23:41.996577
  20505. 22736 6 1 11591 6.99 2007-03-17 00:58:07.996577
  20506. 22737 6 1 11727 0.99 2007-03-17 06:40:46.996577
  20507. 22738 6 1 11853 0.99 2007-03-17 12:07:58.996577
  20508. 22739 6 2 12254 2.99 2007-03-18 02:33:55.996577
  20509. 22740 6 2 13451 6.99 2007-03-19 22:46:51.996577
  20510. 22741 6 1 14329 7.99 2007-03-21 06:51:22.996577
  20511. 22742 6 1 14377 4.99 2007-03-21 08:17:54.996577
  20512. 22743 6 1 15509 5.99 2007-03-23 01:19:50.996577
  20513. 22744 6 2 15603 0.99 2007-03-23 05:09:58.996577
  20514. 22745 7 2 10330 6.99 2007-03-01 03:25:30.996577
  20515. 22746 7 1 10423 5.99 2007-03-01 06:48:19.996577
  20516. 22747 7 1 10514 4.99 2007-03-01 10:07:52.996577
  20517. 22748 7 2 10644 4.99 2007-03-01 14:20:26.996577
  20518. 22749 7 2 10989 3.99 2007-03-02 03:09:20.996577
  20519. 22750 7 2 11542 7.99 2007-03-16 23:19:58.996577
  20520. 22751 7 1 12367 8.99 2007-03-18 06:25:40.996577
  20521. 22752 7 1 12730 2.99 2007-03-18 20:23:27.996577
  20522. 22753 7 2 13373 2.99 2007-03-19 19:51:57.996577
  20523. 22754 7 1 13476 2.99 2007-03-19 23:34:30.996577
  20524. 22755 7 1 13594 0.99 2007-03-20 04:21:57.996577
  20525. 22756 7 1 14222 5.99 2007-03-21 03:18:14.996577
  20526. 22757 8 2 10561 2.99 2007-03-01 11:34:01.996577
  20527. 22758 8 1 11232 9.99 2007-03-02 11:32:38.996577
  20528. 22759 8 2 11284 2.99 2007-03-02 13:11:11.996577
  20529. 22760 8 1 12613 2.99 2007-03-18 15:44:27.996577
  20530. 22761 8 1 14114 0.99 2007-03-20 23:35:37.996577
  20531. 22762 8 1 15374 7.99 2007-03-22 20:37:35.996577
  20532. 22763 8 1 15764 2.99 2007-03-23 11:33:36.996577
  20533. 22764 8 1 15805 4.99 2007-03-23 12:59:45.996577
  20534. 22765 9 1 10451 0.99 2007-03-01 07:39:51.996577
  20535. 22766 9 1 10454 4.99 2007-03-01 07:42:26.996577
  20536. 22767 9 2 11400 5.99 2007-03-02 17:29:18.996577
  20537. 22768 9 1 11556 0.99 2007-03-16 23:40:19.996577
  20538. 22769 9 1 12228 2.99 2007-03-18 01:36:36.996577
  20539. 22770 9 1 12309 2.99 2007-03-18 04:27:06.996577
  20540. 22771 9 2 12652 4.99 2007-03-18 17:17:24.996577
  20541. 22772 9 2 14489 7.99 2007-03-21 12:22:25.996577
  20542. 22773 10 2 10671 8.99 2007-03-01 15:38:25.996577
  20543. 22774 10 2 11289 2.99 2007-03-02 13:23:26.996577
  20544. 22775 10 1 11405 0.99 2007-03-02 17:42:05.996577
  20545. 22776 10 2 12031 2.99 2007-03-17 18:40:01.996577
  20546. 22777 10 2 12400 2.99 2007-03-18 07:47:38.996577
  20547. 22778 10 2 13316 4.99 2007-03-19 17:51:56.996577
  20548. 22779 10 2 13917 2.99 2007-03-20 15:11:54.996577
  20549. 22780 10 1 15370 5.99 2007-03-22 20:27:55.996577
  20550. 22781 11 1 10812 4.99 2007-03-01 21:09:42.996577
  20551. 22782 11 2 11166 6.99 2007-03-02 08:43:24.996577
  20552. 22783 11 2 11502 0.99 2007-03-16 21:34:56.996577
  20553. 22784 11 2 12015 5.99 2007-03-17 18:01:10.996577
  20554. 22785 11 2 13572 0.99 2007-03-20 03:35:53.996577
  20555. 22786 11 1 13790 4.99 2007-03-20 10:45:53.996577
  20556. 22787 11 1 15120 0.99 2007-03-22 11:11:13.996577
  20557. 22788 11 2 15240 2.99 2007-03-22 16:15:07.996577
  20558. 22789 12 2 10392 10.99 2007-03-01 05:18:52.996577
  20559. 22790 12 2 11497 0.99 2007-03-16 21:20:56.996577
  20560. 22791 12 1 12604 4.99 2007-03-18 15:27:14.996577
  20561. 22792 12 2 13519 0.99 2007-03-20 01:05:33.996577
  20562. 22793 12 2 13895 2.99 2007-03-20 14:26:54.996577
  20563. 22794 12 2 14240 4.99 2007-03-21 03:48:05.996577
  20564. 22795 12 1 15993 0.99 2007-03-23 18:57:10.996577
  20565. 22796 13 1 11292 4.99 2007-03-02 13:27:07.996577
  20566. 22797 13 2 11315 0.99 2007-03-02 14:33:43.996577
  20567. 22798 13 2 11761 5.99 2007-03-17 08:13:25.996577
  20568. 22799 13 2 12918 7.99 2007-03-19 03:00:02.996577
  20569. 22800 13 2 13096 4.99 2007-03-19 09:17:29.996577
  20570. 22801 13 2 13213 0.99 2007-03-19 13:54:14.996577
  20571. 22802 13 1 13456 0.99 2007-03-19 23:01:45.996577
  20572. 22803 13 1 14252 9.99 2007-03-21 04:12:33.996577
  20573. 22804 13 2 14545 7.99 2007-03-21 14:12:49.996577
  20574. 22805 13 1 15338 4.99 2007-03-22 19:19:50.996577
  20575. 22806 14 1 10348 2.99 2007-03-01 03:51:26.996577
  20576. 22807 14 2 10526 6.99 2007-03-01 10:23:59.996577
  20577. 22808 14 1 11480 4.99 2007-03-02 20:46:50.996577
  20578. 22809 14 2 11528 3.99 2007-03-16 22:55:49.996577
  20579. 22810 14 1 12668 2.99 2007-03-18 17:45:13.996577
  20580. 22811 14 1 13757 4.99 2007-03-20 09:48:38.996577
  20581. 22812 14 2 15015 6.99 2007-03-22 07:12:16.996577
  20582. 22813 14 1 15373 0.99 2007-03-22 20:36:37.996577
  20583. 22814 14 1 16045 0.99 2007-03-23 20:53:52.996577
  20584. 22815 15 1 11118 2.99 2007-03-02 07:12:44.996577
  20585. 22816 15 1 11141 2.99 2007-03-02 07:57:37.996577
  20586. 22817 15 2 11307 2.99 2007-03-02 14:16:34.996577
  20587. 22818 15 2 11341 2.99 2007-03-02 15:37:50.996577
  20588. 22819 15 1 11922 7.99 2007-03-17 14:49:03.996577
  20589. 22820 15 2 12272 2.99 2007-03-18 03:07:36.996577
  20590. 22821 15 2 12551 2.99 2007-03-18 13:14:52.996577
  20591. 22822 15 1 12635 2.99 2007-03-18 16:28:49.996577
  20592. 22823 15 2 13339 8.99 2007-03-19 18:47:02.996577
  20593. 22824 15 1 13393 5.99 2007-03-19 20:32:12.996577
  20594. 22825 15 2 13503 5.99 2007-03-20 00:28:59.996577
  20595. 22826 15 1 13541 4.99 2007-03-20 02:10:07.996577
  20596. 22827 15 2 13677 3.99 2007-03-20 07:03:07.996577
  20597. 22828 15 2 14569 0.99 2007-03-21 14:59:48.996577
  20598. 22829 15 2 14776 4.99 2007-03-21 22:22:01.996577
  20599. 22830 15 2 14872 8.99 2007-03-22 01:52:07.996577
  20600. 22831 15 1 15178 0.99 2007-03-22 14:04:30.996577
  20601. 22832 15 1 15897 4.99 2007-03-23 15:40:57.996577
  20602. 22833 16 2 10687 2.99 2007-03-01 16:21:28.996577
  20603. 22834 16 2 10727 2.99 2007-03-01 17:43:34.996577
  20604. 22835 16 2 11308 0.99 2007-03-02 14:19:10.996577
  20605. 22836 16 2 12104 2.99 2007-03-17 21:21:26.996577
  20606. 22837 16 1 12358 4.99 2007-03-18 06:10:09.996577
  20607. 22838 16 1 12577 7.99 2007-03-18 14:08:12.996577
  20608. 22839 16 2 13151 4.99 2007-03-19 11:36:49.996577
  20609. 22840 16 1 13391 4.99 2007-03-19 20:30:08.996577
  20610. 22841 16 1 13480 6.99 2007-03-19 23:38:53.996577
  20611. 22842 16 1 14511 8.99 2007-03-21 13:14:00.996577
  20612. 22843 17 2 11990 4.99 2007-03-17 16:54:48.996577
  20613. 22844 17 1 13732 2.99 2007-03-20 08:53:07.996577
  20614. 22845 17 1 14040 2.99 2007-03-20 20:12:10.996577
  20615. 22846 17 2 14326 2.99 2007-03-21 06:44:07.996577
  20616. 22847 17 1 14346 2.99 2007-03-21 07:10:52.996577
  20617. 22848 17 2 15752 5.99 2007-03-23 11:10:04.996577
  20618. 22849 18 1 10682 4.99 2007-03-01 16:01:19.996577
  20619. 22850 18 2 10721 1.99 2007-03-01 17:33:44.996577
  20620. 22851 18 2 11094 4.99 2007-03-02 06:31:28.996577
  20621. 22852 18 2 11439 4.99 2007-03-02 18:51:11.996577
  20622. 22853 18 2 12333 0.99 2007-03-18 05:20:05.996577
  20623. 22854 18 2 13490 0.99 2007-03-19 23:57:55.996577
  20624. 22855 19 2 11508 8.99 2007-03-16 21:56:02.996577
  20625. 22856 19 1 11869 5.99 2007-03-17 12:38:48.996577
  20626. 22857 19 1 12211 9.99 2007-03-18 00:59:44.996577
  20627. 22858 19 2 12357 2.99 2007-03-18 06:09:18.996577
  20628. 22859 19 1 13718 8.99 2007-03-20 08:22:10.996577
  20629. 22860 19 2 13804 8.99 2007-03-20 11:14:58.996577
  20630. 22861 19 1 14101 4.99 2007-03-20 23:01:29.996577
  20631. 22862 19 1 15047 2.99 2007-03-22 08:25:42.996577
  20632. 22863 19 2 15529 0.99 2007-03-23 02:15:13.996577
  20633. 22864 20 2 10284 4.99 2007-03-01 02:01:45.996577
  20634. 22865 20 1 10616 7.99 2007-03-01 13:28:16.996577
  20635. 22866 20 1 10954 1.99 2007-03-02 01:58:50.996577
  20636. 22867 20 1 11821 0.99 2007-03-17 10:56:21.996577
  20637. 22868 20 1 12180 0.99 2007-03-17 23:56:41.996577
  20638. 22869 20 2 13036 4.99 2007-03-19 07:17:03.996577
  20639. 22870 20 1 13137 4.99 2007-03-19 10:54:58.996577
  20640. 22871 20 2 13317 2.99 2007-03-19 17:54:08.996577
  20641. 22872 20 2 14613 2.99 2007-03-21 16:31:46.996577
  20642. 22873 20 2 15057 6.99 2007-03-22 08:48:24.996577
  20643. 22874 20 1 15161 1.99 2007-03-22 13:05:48.996577
  20644. 22875 20 2 15248 0.99 2007-03-22 16:21:32.996577
  20645. 22876 20 1 15460 2.99 2007-03-22 23:39:08.996577
  20646. 22877 21 2 10570 4.99 2007-03-01 11:51:32.996577
  20647. 22878 21 1 10734 0.99 2007-03-01 17:57:13.996577
  20648. 22879 21 2 11072 0.99 2007-03-02 05:39:23.996577
  20649. 22880 21 2 11970 0.99 2007-03-17 16:21:35.996577
  20650. 22881 21 2 12131 2.99 2007-03-17 22:02:42.996577
  20651. 22882 21 2 12660 4.99 2007-03-18 17:35:49.996577
  20652. 22883 21 1 12774 6.99 2007-03-18 22:02:48.996577
  20653. 22884 21 1 13381 2.99 2007-03-19 20:06:23.996577
  20654. 22885 21 2 13399 4.99 2007-03-19 20:37:54.996577
  20655. 22886 21 1 13411 4.99 2007-03-19 21:12:04.996577
  20656. 22887 21 1 13463 8.99 2007-03-19 23:19:20.996577
  20657. 22888 21 1 13699 9.99 2007-03-20 07:54:40.996577
  20658. 22889 21 1 13740 4.99 2007-03-20 09:17:09.996577
  20659. 22890 21 2 14077 8.99 2007-03-20 21:52:33.996577
  20660. 22891 21 2 14161 2.99 2007-03-21 01:20:25.996577
  20661. 22892 21 2 14446 2.99 2007-03-21 10:39:07.996577
  20662. 22893 21 1 14869 4.99 2007-03-22 01:48:52.996577
  20663. 22894 22 1 12023 5.99 2007-03-17 18:23:20.996577
  20664. 22895 22 1 12124 2.99 2007-03-17 21:51:12.996577
  20665. 22896 22 2 12809 0.99 2007-03-18 23:10:50.996577
  20666. 22897 22 2 13060 9.99 2007-03-19 08:11:51.996577
  20667. 22898 22 1 14056 2.99 2007-03-20 20:47:19.996577
  20668. 22899 22 1 14564 6.99 2007-03-21 14:53:09.996577
  20669. 22900 22 1 15134 7.99 2007-03-22 11:46:51.996577
  20670. 22901 22 1 15589 6.99 2007-03-23 04:31:57.996577
  20671. 22902 22 1 15658 4.99 2007-03-23 07:17:09.996577
  20672. 22903 22 1 15793 4.99 2007-03-23 12:34:45.996577
  20673. 22904 23 1 10898 2.99 2007-03-01 23:58:23.996577
  20674. 22905 23 2 11501 2.99 2007-03-16 21:33:19.996577
  20675. 22906 23 2 13290 2.99 2007-03-19 17:00:16.996577
  20676. 22907 23 2 13331 4.99 2007-03-19 18:28:51.996577
  20677. 22908 23 2 13429 6.99 2007-03-19 21:54:03.996577
  20678. 22909 23 2 13511 0.99 2007-03-20 00:50:06.996577
  20679. 22910 23 2 13557 0.99 2007-03-20 02:41:07.996577
  20680. 22911 23 2 14482 2.99 2007-03-21 12:11:11.996577
  20681. 22912 24 2 10491 2.99 2007-03-01 09:06:53.996577
  20682. 22913 24 1 11209 2.99 2007-03-02 10:38:11.996577
  20683. 22914 24 2 11546 2.99 2007-03-16 23:26:02.996577
  20684. 22915 24 2 12165 8.99 2007-03-17 23:22:03.996577
  20685. 22916 24 1 12745 2.99 2007-03-18 20:51:11.996577
  20686. 22917 24 1 12999 1.99 2007-03-19 06:03:19.996577
  20687. 22918 24 2 13058 4.99 2007-03-19 08:09:19.996577
  20688. 22919 24 1 13247 0.99 2007-03-19 15:14:25.996577
  20689. 22920 24 2 15357 4.99 2007-03-22 19:57:25.996577
  20690. 22921 25 1 10324 5.99 2007-03-01 03:17:32.996577
  20691. 22922 25 2 10860 2.99 2007-03-01 22:40:58.996577
  20692. 22923 25 1 10916 2.99 2007-03-02 00:34:25.996577
  20693. 22924 25 1 11642 0.99 2007-03-17 03:16:31.996577
  20694. 22925 25 1 12922 0.99 2007-03-19 03:17:14.996577
  20695. 22926 25 1 14193 4.99 2007-03-21 02:06:53.996577
  20696. 22927 25 1 14236 4.99 2007-03-21 03:41:42.996577
  20697. 22928 25 1 15512 0.99 2007-03-23 01:25:56.996577
  20698. 22929 25 1 15972 5.99 2007-03-23 18:28:56.996577
  20699. 22930 26 1 10386 3.99 2007-03-01 05:10:46.996577
  20700. 22931 26 1 10996 3.99 2007-03-02 03:16:37.996577
  20701. 22932 26 2 11314 2.99 2007-03-02 14:32:34.996577
  20702. 22933 26 1 11338 0.99 2007-03-02 15:28:38.996577
  20703. 22934 26 1 11744 5.99 2007-03-17 07:22:56.996577
  20704. 22935 26 2 13111 4.99 2007-03-19 09:53:36.996577
  20705. 22936 26 2 14183 4.99 2007-03-21 01:52:55.996577
  20706. 22937 26 2 14192 8.99 2007-03-21 02:06:08.996577
  20707. 22938 26 2 14603 1.99 2007-03-21 16:19:32.996577
  20708. 22939 26 1 14677 7.99 2007-03-21 18:40:56.996577
  20709. 22940 26 1 15384 2.99 2007-03-22 21:03:10.996577
  20710. 22941 26 1 15722 7.99 2007-03-23 09:44:55.996577
  20711. 22942 27 1 10794 7.99 2007-03-01 20:19:41.996577
  20712. 22943 27 1 10852 4.99 2007-03-01 22:28:59.996577
  20713. 22944 27 1 11234 0.99 2007-03-02 11:40:43.996577
  20714. 22945 27 1 11661 8.99 2007-03-17 03:54:23.996577
  20715. 22946 27 2 11740 6.99 2007-03-17 07:16:57.996577
  20716. 22947 27 2 12021 5.99 2007-03-17 18:21:09.996577
  20717. 22948 27 2 12461 0.99 2007-03-18 09:56:40.996577
  20718. 22949 27 1 12531 2.99 2007-03-18 12:26:16.996577
  20719. 22950 27 2 13816 4.99 2007-03-20 11:42:22.996577
  20720. 22951 27 1 15048 0.99 2007-03-22 08:28:30.996577
  20721. 22952 28 2 10294 6.99 2007-03-01 02:16:38.996577
  20722. 22953 28 1 11444 2.99 2007-03-02 19:01:21.996577
  20723. 22954 28 1 11856 3.99 2007-03-17 12:13:15.996577
  20724. 22955 28 2 12190 2.99 2007-03-18 00:23:10.996577
  20725. 22956 28 1 12359 0.99 2007-03-18 06:12:31.996577
  20726. 22957 28 1 12708 2.99 2007-03-18 19:27:43.996577
  20727. 22958 28 2 13783 4.99 2007-03-20 10:39:29.996577
  20728. 22959 28 2 14540 2.99 2007-03-21 14:02:49.996577
  20729. 22960 28 1 15445 4.99 2007-03-22 23:16:55.996577
  20730. 22961 28 1 15491 2.99 2007-03-23 00:37:06.996577
  20731. 22962 29 1 10543 5.99 2007-03-01 11:04:35.996577
  20732. 22963 29 2 10899 1.99 2007-03-01 23:58:47.996577
  20733. 22964 29 1 11079 4.99 2007-03-02 05:57:36.996577
  20734. 22965 29 2 11962 2.99 2007-03-17 16:03:04.996577
  20735. 22966 29 1 12488 4.99 2007-03-18 11:16:48.996577
  20736. 22967 29 1 12508 2.99 2007-03-18 11:48:39.996577
  20737. 22968 29 2 12569 6.99 2007-03-18 13:49:12.996577
  20738. 22969 29 2 12615 6.99 2007-03-18 15:44:33.996577
  20739. 22970 29 2 13173 2.99 2007-03-19 12:19:02.996577
  20740. 22971 29 1 13436 0.99 2007-03-19 22:04:51.996577
  20741. 22972 29 2 13777 2.99 2007-03-20 10:32:01.996577
  20742. 22973 29 1 13832 3.99 2007-03-20 12:28:51.996577
  20743. 22974 29 1 14174 0.99 2007-03-21 01:30:11.996577
  20744. 22975 29 1 14703 4.99 2007-03-21 19:29:45.996577
  20745. 22976 29 1 14985 7.99 2007-03-22 06:04:22.996577
  20746. 22977 29 1 14997 5.99 2007-03-22 06:21:26.996577
  20747. 22978 30 1 10235 6.99 2007-03-01 00:26:14.996577
  20748. 22979 30 1 12240 2.99 2007-03-18 01:55:37.996577
  20749. 22980 30 1 12546 2.99 2007-03-18 12:58:03.996577
  20750. 22981 30 2 12758 0.99 2007-03-18 21:27:00.996577
  20751. 22982 30 1 13435 0.99 2007-03-19 22:04:10.996577
  20752. 22983 30 1 13682 4.99 2007-03-20 07:19:05.996577
  20753. 22984 30 1 14339 0.99 2007-03-21 07:05:41.996577
  20754. 22985 30 1 14585 2.99 2007-03-21 15:46:59.996577
  20755. 22986 30 1 15063 4.99 2007-03-22 09:08:17.996577
  20756. 22987 30 1 15544 4.99 2007-03-23 02:46:22.996577
  20757. 22988 30 2 15829 2.99 2007-03-23 13:45:40.996577
  20758. 22989 31 2 12085 4.99 2007-03-17 20:45:35.996577
  20759. 22990 31 1 12377 0.99 2007-03-18 06:54:31.996577
  20760. 22991 31 2 15682 6.99 2007-03-23 08:06:00.996577
  20761. 22992 31 2 15816 6.99 2007-03-23 13:26:32.996577
  20762. 22993 32 1 11135 4.99 2007-03-02 07:50:51.996577
  20763. 22994 32 2 11831 4.99 2007-03-17 11:23:13.996577
  20764. 22995 32 2 12414 9.99 2007-03-18 08:19:06.996577
  20765. 22996 32 1 13736 8.99 2007-03-20 08:59:49.996577
  20766. 22997 32 1 13931 1.99 2007-03-20 15:44:36.996577
  20767. 22998 32 1 14075 0.99 2007-03-20 21:47:20.996577
  20768. 22999 32 2 14570 5.99 2007-03-21 15:00:58.996577
  20769. 23000 33 2 10335 2.99 2007-03-01 03:27:56.996577
  20770. 23001 33 1 10870 4.99 2007-03-01 22:55:38.996577
  20771. 23002 33 1 13241 7.99 2007-03-19 14:53:26.996577
  20772. 23003 33 1 13858 2.99 2007-03-20 13:19:23.996577
  20773. 23004 33 1 13958 7.99 2007-03-20 16:40:10.996577
  20774. 23005 33 1 14002 0.99 2007-03-20 18:40:45.996577
  20775. 23006 33 1 14623 0.99 2007-03-21 16:57:39.996577
  20776. 23007 33 1 15096 5.99 2007-03-22 10:11:30.996577
  20777. 23008 33 2 15115 2.99 2007-03-22 10:56:27.996577
  20778. 23009 34 1 10523 0.99 2007-03-01 10:20:58.996577
  20779. 23010 34 1 10615 4.99 2007-03-01 13:26:40.996577
  20780. 23011 34 2 11096 0.99 2007-03-02 06:33:45.996577
  20781. 23012 34 1 11505 2.99 2007-03-16 21:47:13.996577
  20782. 23013 34 2 11701 4.99 2007-03-17 05:44:13.996577
  20783. 23014 34 2 12286 2.99 2007-03-18 03:26:25.996577
  20784. 23015 34 1 12599 2.99 2007-03-18 15:11:11.996577
  20785. 23016 34 1 12651 0.99 2007-03-18 17:04:42.996577
  20786. 23017 34 1 13371 4.99 2007-03-19 19:50:13.996577
  20787. 23018 34 2 13949 2.99 2007-03-20 16:23:39.996577
  20788. 23019 34 1 14686 5.99 2007-03-21 19:00:34.996577
  20789. 23020 34 2 14701 7.99 2007-03-21 19:22:58.996577
  20790. 23021 35 1 11298 1.99 2007-03-02 14:00:58.996577
  20791. 23022 35 1 11452 7.99 2007-03-02 19:28:18.996577
  20792. 23023 35 1 11645 4.99 2007-03-17 03:19:22.996577
  20793. 23024 35 1 12055 4.99 2007-03-17 19:30:45.996577
  20794. 23025 35 1 13735 2.99 2007-03-20 08:59:27.996577
  20795. 23026 35 1 14110 0.99 2007-03-20 23:21:35.996577
  20796. 23027 35 2 14124 2.99 2007-03-21 00:00:17.996577
  20797. 23028 35 2 14735 4.99 2007-03-21 20:53:35.996577
  20798. 23029 36 2 10525 2.99 2007-03-01 10:21:43.996577
  20799. 23030 36 2 10761 2.99 2007-03-01 18:54:01.996577
  20800. 23031 36 1 10963 0.99 2007-03-02 02:16:43.996577
  20801. 23032 36 2 10964 6.99 2007-03-02 02:24:49.996577
  20802. 23033 36 2 11616 4.99 2007-03-17 02:28:27.996577
  20803. 23034 36 1 11813 4.99 2007-03-17 10:35:20.996577
  20804. 23035 36 2 13562 2.99 2007-03-20 03:00:11.996577
  20805. 23036 36 2 13564 1.99 2007-03-20 03:03:12.996577
  20806. 23037 36 1 13674 4.99 2007-03-20 06:59:20.996577
  20807. 23038 36 1 14647 9.99 2007-03-21 17:43:59.996577
  20808. 23039 36 2 15657 4.99 2007-03-23 07:11:06.996577
  20809. 23040 37 1 10538 2.99 2007-03-01 10:51:07.996577
  20810. 23041 37 1 11176 3.99 2007-03-02 09:08:09.996577
  20811. 23042 37 1 13046 7.99 2007-03-19 07:49:36.996577
  20812. 23043 37 2 13147 4.99 2007-03-19 11:23:35.996577
  20813. 23044 37 2 13444 0.99 2007-03-19 22:28:50.996577
  20814. 23045 37 2 13493 3.99 2007-03-20 00:02:02.996577
  20815. 23046 37 2 14025 8.99 2007-03-20 19:48:02.996577
  20816. 23047 37 1 14084 0.99 2007-03-20 22:11:12.996577
  20817. 23048 37 2 14532 2.99 2007-03-21 13:43:29.996577
  20818. 23049 37 1 15028 3.99 2007-03-22 07:32:10.996577
  20819. 23050 37 1 15904 0.99 2007-03-23 16:00:45.996577
  20820. 23051 37 2 16035 0.99 2007-03-23 20:36:30.996577
  20821. 23052 38 2 10524 6.99 2007-03-01 10:21:38.996577
  20822. 23053 38 2 11049 3.99 2007-03-02 04:44:06.996577
  20823. 23054 38 1 11344 2.99 2007-03-02 15:41:52.996577
  20824. 23055 38 1 11817 4.99 2007-03-17 10:48:27.996577
  20825. 23056 38 2 12092 0.99 2007-03-17 20:56:41.996577
  20826. 23057 38 2 12187 1.99 2007-03-18 00:14:16.996577
  20827. 23058 38 1 14554 4.99 2007-03-21 14:31:27.996577
  20828. 23059 38 2 14632 2.99 2007-03-21 17:16:32.996577
  20829. 23060 38 1 14787 6.99 2007-03-21 22:54:25.996577
  20830. 23061 38 1 15668 2.99 2007-03-23 07:30:30.996577
  20831. 23062 38 1 15738 5.99 2007-03-23 10:24:16.996577
  20832. 23063 39 1 10251 4.99 2007-03-01 01:07:38.996577
  20833. 23064 39 2 10269 4.99 2007-03-01 01:37:52.996577
  20834. 23065 39 2 10630 0.99 2007-03-01 14:03:12.996577
  20835. 23066 39 1 10639 9.99 2007-03-01 14:13:09.996577
  20836. 23067 39 2 12268 0.99 2007-03-18 02:55:20.996577
  20837. 23068 39 2 12459 4.99 2007-03-18 09:53:37.996577
  20838. 23069 39 2 13101 7.99 2007-03-19 09:30:20.996577
  20839. 23070 39 2 15124 5.99 2007-03-22 11:20:04.996577
  20840. 23071 40 1 10442 2.99 2007-03-01 07:26:34.996577
  20841. 23072 40 2 11919 0.99 2007-03-17 14:37:15.996577
  20842. 23073 40 2 11948 3.99 2007-03-17 15:39:31.996577
  20843. 23074 40 2 12396 9.99 2007-03-18 07:39:49.996577
  20844. 23075 40 2 12877 2.99 2007-03-19 01:45:24.996577
  20845. 23076 40 1 13149 6.99 2007-03-19 11:35:38.996577
  20846. 23077 40 1 13376 0.99 2007-03-19 20:00:11.996577
  20847. 23078 40 1 13840 5.99 2007-03-20 12:51:46.996577
  20848. 23079 40 1 13951 2.99 2007-03-20 16:26:37.996577
  20849. 23080 40 1 14260 6.99 2007-03-21 04:29:34.996577
  20850. 23081 40 1 15193 2.99 2007-03-22 14:35:15.996577
  20851. 23082 41 2 10495 4.99 2007-03-01 09:14:17.996577
  20852. 23083 41 1 10853 5.99 2007-03-01 22:29:20.996577
  20853. 23084 41 2 12147 2.99 2007-03-17 22:38:46.996577
  20854. 23085 41 2 12173 3.99 2007-03-17 23:37:00.996577
  20855. 23086 41 2 12821 0.99 2007-03-18 23:35:28.996577
  20856. 23087 41 2 14539 7.99 2007-03-21 13:58:13.996577
  20857. 23088 41 2 15860 4.99 2007-03-23 14:37:06.996577
  20858. 23089 42 2 10345 2.99 2007-03-01 03:47:22.996577
  20859. 23090 42 2 10845 2.99 2007-03-01 22:15:29.996577
  20860. 23091 42 1 10935 5.99 2007-03-02 01:23:19.996577
  20861. 23092 42 1 12478 4.99 2007-03-18 10:53:42.996577
  20862. 23093 42 2 12499 2.99 2007-03-18 11:34:03.996577
  20863. 23094 42 1 14461 7.99 2007-03-21 11:18:59.996577
  20864. 23095 42 1 15442 2.99 2007-03-22 23:11:15.996577
  20865. 23096 43 1 11753 4.99 2007-03-17 07:40:18.996577
  20866. 23097 43 1 14244 2.99 2007-03-21 03:58:21.996577
  20867. 23098 43 1 14649 4.99 2007-03-21 17:47:47.996577
  20868. 23099 43 2 14837 4.99 2007-03-22 00:23:18.996577
  20869. 23100 43 2 15155 4.99 2007-03-22 12:56:12.996577
  20870. 23101 43 2 15800 6.99 2007-03-23 12:52:10.996577
  20871. 23102 43 2 15945 2.99 2007-03-23 17:20:07.996577
  20872. 23103 44 1 11364 2.99 2007-03-02 16:22:02.996577
  20873. 23104 44 2 12345 3.99 2007-03-18 05:45:24.996577
  20874. 23105 44 1 12504 4.99 2007-03-18 11:45:33.996577
  20875. 23106 44 1 12790 6.99 2007-03-18 22:45:20.996577
  20876. 23107 44 2 12982 4.99 2007-03-19 05:35:00.996577
  20877. 23108 44 2 15054 2.99 2007-03-22 08:42:59.996577
  20878. 23109 45 1 10507 2.99 2007-03-01 09:50:46.996577
  20879. 23110 45 2 10878 6.99 2007-03-01 23:01:38.996577
  20880. 23111 45 1 11004 8.99 2007-03-02 03:32:44.996577
  20881. 23112 45 1 11029 4.99 2007-03-02 04:19:36.996577
  20882. 23113 45 2 11483 2.99 2007-03-02 20:56:48.996577
  20883. 23114 45 2 11488 3.99 2007-03-02 21:03:41.996577
  20884. 23115 45 1 11725 2.99 2007-03-17 06:37:26.996577
  20885. 23116 45 1 13340 3.99 2007-03-19 18:47:05.996577
  20886. 23117 45 2 13394 4.99 2007-03-19 20:33:45.996577
  20887. 23118 45 1 14576 6.99 2007-03-21 15:20:29.996577
  20888. 23119 45 1 15812 10.99 2007-03-23 13:15:52.996577
  20889. 23120 45 2 16037 7.99 2007-03-23 20:41:30.996577
  20890. 23121 46 2 10428 4.99 2007-03-01 06:58:37.996577
  20891. 23122 46 1 10803 4.99 2007-03-01 20:50:33.996577
  20892. 23123 46 1 10827 5.99 2007-03-01 21:41:26.996577
  20893. 23124 46 1 11721 0.99 2007-03-17 06:17:43.996577
  20894. 23125 46 2 12095 4.99 2007-03-17 21:01:03.996577
  20895. 23126 46 2 12238 2.99 2007-03-18 01:53:34.996577
  20896. 23127 46 2 12280 4.99 2007-03-18 03:17:53.996577
  20897. 23128 46 1 12298 2.99 2007-03-18 03:58:57.996577
  20898. 23129 46 2 12455 4.99 2007-03-18 09:48:13.996577
  20899. 23130 46 1 13226 0.99 2007-03-19 14:34:02.996577
  20900. 23131 46 2 14144 4.99 2007-03-21 00:39:23.996577
  20901. 23132 46 2 14528 6.99 2007-03-21 13:36:31.996577
  20902. 23133 46 1 14940 4.99 2007-03-22 04:22:29.996577
  20903. 23134 46 1 15438 2.99 2007-03-22 23:00:23.996577
  20904. 23135 46 1 15708 0.99 2007-03-23 09:04:17.996577
  20905. 23136 46 1 15758 5.99 2007-03-23 11:15:52.996577
  20906. 23137 47 1 11126 0.99 2007-03-02 07:27:30.996577
  20907. 23138 47 2 11477 5.99 2007-03-02 20:37:27.996577
  20908. 23139 47 1 12215 7.99 2007-03-18 01:04:05.996577
  20909. 23140 47 2 12274 7.99 2007-03-18 03:10:13.996577
  20910. 23141 47 1 14397 0.99 2007-03-21 08:54:22.996577
  20911. 23142 47 2 15846 2.99 2007-03-23 14:07:44.996577
  20912. 23143 48 2 10276 2.99 2007-03-01 01:50:49.996577
  20913. 23144 48 2 14450 1.99 2007-03-21 10:49:51.996577
  20914. 23145 48 2 14536 2.99 2007-03-21 13:51:16.996577
  20915. 23146 48 1 15228 3.99 2007-03-22 15:55:49.996577
  20916. 23147 49 1 10266 0.99 2007-03-01 01:34:25.996577
  20917. 23148 49 1 10588 2.99 2007-03-01 12:38:47.996577
  20918. 23149 49 1 10814 2.99 2007-03-01 21:11:38.996577
  20919. 23150 49 2 14168 5.99 2007-03-21 01:28:29.996577
  20920. 23151 49 1 14627 6.99 2007-03-21 17:04:20.996577
  20921. 23152 49 1 14676 2.99 2007-03-21 18:30:44.996577
  20922. 23153 50 2 10261 4.99 2007-03-01 01:26:53.996577
  20923. 23154 50 2 10485 7.99 2007-03-01 08:49:00.996577
  20924. 23155 50 2 11053 3.99 2007-03-02 04:55:39.996577
  20925. 23156 50 1 12766 6.99 2007-03-18 21:53:46.996577
  20926. 23157 50 2 13136 7.99 2007-03-19 10:52:49.996577
  20927. 23158 50 1 14054 4.99 2007-03-20 20:45:27.996577
  20928. 23159 50 2 15138 2.99 2007-03-22 12:04:56.996577
  20929. 23160 50 2 15388 6.99 2007-03-22 21:17:49.996577
  20930. 23161 50 1 16015 4.99 2007-03-23 19:53:29.996577
  20931. 23162 51 2 10244 4.99 2007-03-01 00:48:27.996577
  20932. 23163 51 1 10780 2.99 2007-03-01 19:42:50.996577
  20933. 23164 51 1 10894 0.99 2007-03-01 23:41:01.996577
  20934. 23165 51 1 11302 2.99 2007-03-02 14:06:29.996577
  20935. 23166 51 2 11685 4.99 2007-03-17 05:07:42.996577
  20936. 23167 51 2 11751 6.99 2007-03-17 07:36:22.996577
  20937. 23168 51 1 12184 0.99 2007-03-18 00:04:26.996577
  20938. 23169 51 1 12725 4.99 2007-03-18 20:11:35.996577
  20939. 23170 51 2 13098 2.99 2007-03-19 09:20:25.996577
  20940. 23171 51 1 13302 2.99 2007-03-19 17:22:52.996577
  20941. 23172 51 1 13868 0.99 2007-03-20 13:34:52.996577
  20942. 23173 51 2 13882 2.99 2007-03-20 13:51:52.996577
  20943. 23174 51 2 14221 6.99 2007-03-21 03:18:07.996577
  20944. 23175 51 2 14512 4.99 2007-03-21 13:15:35.996577
  20945. 23176 51 1 14617 4.99 2007-03-21 16:36:06.996577
  20946. 23177 51 1 14903 4.99 2007-03-22 03:00:16.996577
  20947. 23178 52 2 10591 0.99 2007-03-01 12:40:55.996577
  20948. 23179 52 1 10635 0.99 2007-03-01 14:06:24.996577
  20949. 23180 52 1 11068 0.99 2007-03-02 05:36:33.996577
  20950. 23181 52 1 11731 3.99 2007-03-17 06:53:01.996577
  20951. 23182 52 2 12200 2.99 2007-03-18 00:40:59.996577
  20952. 23183 52 2 12520 0.99 2007-03-18 12:11:11.996577
  20953. 23184 52 2 13090 5.99 2007-03-19 09:08:20.996577
  20954. 23185 52 2 14820 2.99 2007-03-21 23:47:03.996577
  20955. 23186 52 1 14822 5.99 2007-03-21 23:49:40.996577
  20956. 23187 52 2 14961 6.99 2007-03-22 05:04:16.996577
  20957. 23188 52 2 15891 5.99 2007-03-23 15:28:38.996577
  20958. 23189 53 1 10594 3.99 2007-03-01 12:43:25.996577
  20959. 23190 53 1 12054 5.99 2007-03-17 19:28:22.996577
  20960. 23191 53 1 12580 2.99 2007-03-18 14:17:34.996577
  20961. 23192 53 1 13049 5.99 2007-03-19 07:54:06.996577
  20962. 23193 53 2 13789 2.99 2007-03-20 10:45:04.996577
  20963. 23194 53 1 14061 2.99 2007-03-20 21:00:37.996577
  20964. 23195 53 2 14091 0.99 2007-03-20 22:39:43.996577
  20965. 23196 53 2 14119 5.99 2007-03-20 23:44:25.996577
  20966. 23197 53 1 14671 4.99 2007-03-21 18:27:56.996577
  20967. 23198 53 2 14811 0.99 2007-03-21 23:37:30.996577
  20968. 23199 54 2 10489 5.99 2007-03-01 08:56:08.996577
  20969. 23200 54 2 10882 5.99 2007-03-01 23:15:42.996577
  20970. 23201 54 1 10956 4.99 2007-03-02 02:01:40.996577
  20971. 23202 54 1 11182 4.99 2007-03-02 09:23:40.996577
  20972. 23203 54 2 11887 2.99 2007-03-17 13:31:39.996577
  20973. 23204 54 1 12526 2.99 2007-03-18 12:17:09.996577
  20974. 23205 54 2 12775 5.99 2007-03-18 22:04:22.996577
  20975. 23206 54 1 12811 4.99 2007-03-18 23:19:54.996577
  20976. 23207 54 2 12872 0.99 2007-03-19 01:26:03.996577
  20977. 23208 54 2 13315 2.99 2007-03-19 17:44:44.996577
  20978. 23209 54 1 13890 0.99 2007-03-20 14:09:26.996577
  20979. 23210 54 1 14215 4.99 2007-03-21 03:02:37.996577
  20980. 23211 54 1 15226 10.99 2007-03-22 15:48:43.996577
  20981. 23212 54 1 15567 4.99 2007-03-23 03:49:02.996577
  20982. 23213 55 2 11287 1.99 2007-03-02 13:18:17.996577
  20983. 23214 55 1 12776 4.99 2007-03-18 22:05:59.996577
  20984. 23215 55 1 12808 4.99 2007-03-18 23:09:07.996577
  20985. 23216 55 2 12972 1.99 2007-03-19 05:11:54.996577
  20986. 23217 55 1 13345 6.99 2007-03-19 18:53:50.996577
  20987. 23218 55 1 14667 2.99 2007-03-21 18:19:37.996577
  20988. 23219 55 1 15296 4.99 2007-03-22 18:05:46.996577
  20989. 23220 56 2 10356 6.99 2007-03-01 04:17:43.996577
  20990. 23221 56 2 10678 0.99 2007-03-01 15:54:50.996577
  20991. 23222 56 1 10946 4.99 2007-03-02 01:49:05.996577
  20992. 23223 56 1 11358 5.99 2007-03-02 16:13:28.996577
  20993. 23224 56 1 11656 4.99 2007-03-17 03:39:35.996577
  20994. 23225 56 2 12537 1.99 2007-03-18 12:35:05.996577
  20995. 23226 56 2 12713 4.99 2007-03-18 19:35:54.996577
  20996. 23227 56 2 13560 8.99 2007-03-20 02:45:42.996577
  20997. 23228 56 1 13769 5.99 2007-03-20 10:12:18.996577
  20998. 23229 56 2 14291 3.99 2007-03-21 05:31:31.996577
  20999. 23230 56 2 14534 0.99 2007-03-21 13:44:55.996577
  21000. 23231 56 2 15702 7.99 2007-03-23 08:51:54.996577
  21001. 23232 57 2 12925 5.99 2007-03-19 03:27:27.996577
  21002. 23233 57 2 13163 0.99 2007-03-19 11:58:12.996577
  21003. 23234 57 2 13743 0.99 2007-03-20 09:19:53.996577
  21004. 23235 57 2 13929 9.99 2007-03-20 15:42:14.996577
  21005. 23236 57 2 15571 0.99 2007-03-23 03:54:56.996577
  21006. 23237 57 2 15871 9.99 2007-03-23 14:52:50.996577
  21007. 23238 58 2 10256 4.99 2007-03-01 01:15:37.996577
  21008. 23239 58 1 10668 0.99 2007-03-01 15:28:53.996577
  21009. 23240 58 1 11416 6.99 2007-03-02 18:12:30.996577
  21010. 23241 58 2 12292 8.99 2007-03-18 03:37:20.996577
  21011. 23242 58 1 13194 6.99 2007-03-19 13:02:38.996577
  21012. 23243 58 1 13207 3.99 2007-03-19 13:43:04.996577
  21013. 23244 58 1 13930 2.99 2007-03-20 15:43:32.996577
  21014. 23245 58 2 13973 4.99 2007-03-20 17:21:09.996577
  21015. 23246 58 2 14305 5.99 2007-03-21 05:57:31.996577
  21016. 23247 58 1 14665 6.99 2007-03-21 18:18:12.996577
  21017. 23248 58 1 14989 4.99 2007-03-22 06:15:33.996577
  21018. 23249 59 2 11396 4.99 2007-03-02 17:16:55.996577
  21019. 23250 59 1 12833 5.99 2007-03-19 00:10:54.996577
  21020. 23251 59 2 13282 2.99 2007-03-19 16:36:44.996577
  21021. 23252 59 1 13573 2.99 2007-03-20 03:38:40.996577
  21022. 23253 59 2 13921 4.99 2007-03-20 15:25:37.996577
  21023. 23254 59 1 14135 5.99 2007-03-21 00:22:20.996577
  21024. 23255 59 1 14977 5.99 2007-03-22 05:41:19.996577
  21025. 23256 59 2 15271 5.99 2007-03-22 17:17:14.996577
  21026. 23257 59 2 15744 4.99 2007-03-23 10:44:17.996577
  21027. 23258 59 2 15905 2.99 2007-03-23 16:01:30.996577
  21028. 23259 60 2 10680 0.99 2007-03-01 15:56:31.996577
  21029. 23260 60 1 11092 4.99 2007-03-02 06:27:16.996577
  21030. 23261 60 1 11404 8.99 2007-03-02 17:41:06.996577
  21031. 23262 60 1 12084 1.99 2007-03-17 20:45:15.996577
  21032. 23263 60 2 12614 7.99 2007-03-18 15:44:29.996577
  21033. 23264 60 1 15093 2.99 2007-03-22 10:07:29.996577
  21034. 23265 60 1 15318 2.99 2007-03-22 18:43:42.996577
  21035. 23266 60 1 15618 5.99 2007-03-23 05:36:24.996577
  21036. 23267 60 1 15632 0.99 2007-03-23 05:58:52.996577
  21037. 23268 60 1 15649 2.99 2007-03-23 06:56:29.996577
  21038. 23269 61 2 10549 0.99 2007-03-01 11:15:05.996577
  21039. 23270 61 2 11379 2.99 2007-03-02 16:45:21.996577
  21040. 23271 61 1 12072 9.99 2007-03-17 20:18:51.996577
  21041. 23272 61 1 13450 0.99 2007-03-19 22:46:41.996577
  21042. 23273 61 1 13830 0.99 2007-03-20 12:26:25.996577
  21043. 23274 61 2 15089 6.99 2007-03-22 10:02:32.996577
  21044. 23275 61 1 15681 1.99 2007-03-23 08:04:00.996577
  21045. 23276 62 1 10815 2.99 2007-03-01 21:14:47.996577
  21046. 23277 62 1 11297 5.99 2007-03-02 13:51:13.996577
  21047. 23278 62 1 11988 0.99 2007-03-17 16:52:16.996577
  21048. 23279 62 2 13512 8.99 2007-03-20 00:55:39.996577
  21049. 23280 62 2 14574 1.99 2007-03-21 15:19:00.996577
  21050. 23281 62 2 14594 2.99 2007-03-21 16:02:50.996577
  21051. 23282 62 2 14821 4.99 2007-03-21 23:48:45.996577
  21052. 23283 62 1 15464 6.99 2007-03-22 23:43:44.996577
  21053. 23284 62 1 15591 0.99 2007-03-23 04:40:18.996577
  21054. 23285 63 1 10288 6.99 2007-03-01 02:07:08.996577
  21055. 23286 63 1 11902 4.99 2007-03-17 14:06:00.996577
  21056. 23287 63 2 12342 2.99 2007-03-18 05:41:12.996577
  21057. 23288 63 2 12515 0.99 2007-03-18 12:07:52.996577
  21058. 23289 63 1 12954 7.99 2007-03-19 04:33:00.996577
  21059. 23290 63 1 13089 0.99 2007-03-19 09:07:22.996577
  21060. 23291 63 1 13624 8.99 2007-03-20 05:19:28.996577
  21061. 23292 63 1 14931 3.99 2007-03-22 04:07:21.996577
  21062. 23293 63 1 15060 5.99 2007-03-22 08:52:58.996577
  21063. 23294 63 1 15229 2.99 2007-03-22 15:58:51.996577
  21064. 23295 64 2 10714 4.99 2007-03-01 17:19:55.996577
  21065. 23296 64 1 10889 4.99 2007-03-01 23:22:59.996577
  21066. 23297 64 1 12409 0.99 2007-03-18 08:12:24.996577
  21067. 23298 64 1 13773 2.99 2007-03-20 10:18:40.996577
  21068. 23299 64 1 13971 0.99 2007-03-20 17:13:19.996577
  21069. 23300 64 1 14167 5.99 2007-03-21 01:28:14.996577
  21070. 23301 64 2 14316 0.99 2007-03-21 06:28:13.996577
  21071. 23302 65 2 11100 5.99 2007-03-02 06:36:26.996577
  21072. 23303 65 1 11227 8.99 2007-03-02 11:16:31.996577
  21073. 23304 65 2 11461 4.99 2007-03-02 20:03:26.996577
  21074. 23305 65 2 11845 2.99 2007-03-17 11:45:04.996577
  21075. 23306 65 1 12114 7.99 2007-03-17 21:30:26.996577
  21076. 23307 65 1 12688 6.99 2007-03-18 18:28:20.996577
  21077. 23308 65 2 13692 0.99 2007-03-20 07:36:18.996577
  21078. 23309 65 2 14140 6.99 2007-03-21 00:33:23.996577
  21079. 23310 65 1 14356 0.99 2007-03-21 07:37:17.996577
  21080. 23311 66 1 10419 0.99 2007-03-01 06:41:48.996577
  21081. 23312 66 2 11028 5.99 2007-03-02 04:16:46.996577
  21082. 23313 66 2 11360 2.99 2007-03-02 16:14:30.996577
  21083. 23314 66 1 11683 5.99 2007-03-17 04:43:43.996577
  21084. 23315 66 1 11935 0.99 2007-03-17 15:10:39.996577
  21085. 23316 66 1 12699 0.99 2007-03-18 18:49:25.996577
  21086. 23317 66 1 13900 2.99 2007-03-20 14:34:07.996577
  21087. 23318 66 2 14123 2.99 2007-03-20 23:59:51.996577
  21088. 23319 66 1 14217 6.99 2007-03-21 03:06:22.996577
  21089. 23320 66 2 14351 2.99 2007-03-21 07:32:46.996577
  21090. 23321 66 2 14429 0.99 2007-03-21 09:58:09.996577
  21091. 23322 66 2 15026 4.99 2007-03-22 07:30:18.996577
  21092. 23323 66 1 15598 8.99 2007-03-23 04:51:52.996577
  21093. 23324 67 1 11295 8.99 2007-03-02 13:38:32.996577
  21094. 23325 67 1 11894 8.99 2007-03-17 13:43:27.996577
  21095. 23326 67 2 13437 4.99 2007-03-19 22:06:18.996577
  21096. 23327 67 1 13652 2.99 2007-03-20 06:21:00.996577
  21097. 23328 67 2 13791 4.99 2007-03-20 10:49:31.996577
  21098. 23329 67 2 13837 2.99 2007-03-20 12:47:29.996577
  21099. 23330 67 2 14967 4.99 2007-03-22 05:14:29.996577
  21100. 23331 67 2 15085 2.99 2007-03-22 09:47:48.996577
  21101. 23332 68 1 11277 2.99 2007-03-02 12:57:16.996577
  21102. 23333 68 2 12742 2.99 2007-03-18 20:50:29.996577
  21103. 23334 68 2 13475 4.99 2007-03-19 23:33:31.996577
  21104. 23335 68 2 14242 0.99 2007-03-21 03:54:25.996577
  21105. 23336 68 2 14455 5.99 2007-03-21 11:04:37.996577
  21106. 23337 68 1 14947 1.99 2007-03-22 04:36:18.996577
  21107. 23338 68 1 15524 4.99 2007-03-23 02:04:52.996577
  21108. 23339 69 1 11943 3.99 2007-03-17 15:29:08.996577
  21109. 23340 69 1 12012 2.99 2007-03-17 17:49:14.996577
  21110. 23341 69 1 12121 2.99 2007-03-17 21:49:06.996577
  21111. 23342 69 1 12966 5.99 2007-03-19 05:06:14.996577
  21112. 23343 69 1 13023 5.99 2007-03-19 06:42:20.996577
  21113. 23344 69 2 14311 3.99 2007-03-21 06:14:13.996577
  21114. 23345 69 2 14685 0.99 2007-03-21 18:59:51.996577
  21115. 23346 69 2 14767 2.99 2007-03-21 22:11:26.996577
  21116. 23347 69 1 15547 2.99 2007-03-23 02:54:16.996577
  21117. 23348 70 1 11274 9.99 2007-03-02 12:52:34.996577
  21118. 23349 70 1 11901 2.99 2007-03-17 14:04:13.996577
  21119. 23350 70 1 12003 4.99 2007-03-17 17:24:31.996577
  21120. 23351 70 2 12218 4.99 2007-03-18 01:16:40.996577
  21121. 23352 70 1 12581 6.99 2007-03-18 14:17:41.996577
  21122. 23353 70 1 12951 3.99 2007-03-19 04:25:10.996577
  21123. 23354 70 2 13680 4.99 2007-03-20 07:12:32.996577
  21124. 23355 70 2 15238 0.99 2007-03-22 16:14:38.996577
  21125. 23356 70 1 15616 3.99 2007-03-23 05:35:04.996577
  21126. 23357 71 1 12417 4.99 2007-03-18 08:25:26.996577
  21127. 23358 71 1 14105 7.99 2007-03-20 23:13:00.996577
  21128. 23359 71 1 14228 3.99 2007-03-21 03:25:34.996577
  21129. 23360 71 2 14781 4.99 2007-03-21 22:43:38.996577
  21130. 23361 71 2 14904 3.99 2007-03-22 03:00:27.996577
  21131. 23362 71 1 15704 4.99 2007-03-23 08:54:11.996577
  21132. 23363 71 1 16000 0.99 2007-03-23 19:13:02.996577
  21133. 23364 72 2 10267 0.99 2007-03-01 01:35:52.996577
  21134. 23365 72 2 11206 6.99 2007-03-02 10:26:29.996577
  21135. 23366 72 2 11422 5.99 2007-03-02 18:20:34.996577
  21136. 23367 72 1 11630 2.99 2007-03-17 02:56:12.996577
  21137. 23368 72 1 11679 4.99 2007-03-17 04:37:20.996577
  21138. 23369 72 1 11923 2.99 2007-03-17 14:50:13.996577
  21139. 23370 72 2 12020 2.99 2007-03-17 18:18:59.996577
  21140. 23371 72 1 12448 0.99 2007-03-18 09:27:30.996577
  21141. 23372 72 2 12593 0.99 2007-03-18 14:46:20.996577
  21142. 23373 72 1 13145 0.99 2007-03-19 11:22:19.996577
  21143. 23374 72 2 13327 4.99 2007-03-19 18:24:11.996577
  21144. 23375 72 2 13597 0.99 2007-03-20 04:27:31.996577
  21145. 23376 72 2 13660 4.99 2007-03-20 06:34:22.996577
  21146. 23377 72 1 14020 0.99 2007-03-20 19:28:09.996577
  21147. 23378 72 2 15110 0.99 2007-03-22 10:45:12.996577
  21148. 23379 72 2 15146 2.99 2007-03-22 12:26:21.996577
  21149. 23380 73 2 10434 4.99 2007-03-01 07:15:26.996577
  21150. 23381 73 1 11102 4.99 2007-03-02 06:36:56.996577
  21151. 23382 73 2 11155 0.99 2007-03-02 08:23:54.996577
  21152. 23383 73 2 11349 4.99 2007-03-02 15:50:15.996577
  21153. 23384 73 2 11609 3.99 2007-03-17 02:09:37.996577
  21154. 23385 73 2 12291 4.99 2007-03-18 03:37:03.996577
  21155. 23386 73 1 13886 4.99 2007-03-20 14:03:09.996577
  21156. 23387 73 1 15667 0.99 2007-03-23 07:30:29.996577
  21157. 23388 73 2 16002 2.99 2007-03-23 19:15:38.996577
  21158. 23389 74 1 10624 0.99 2007-03-01 13:55:31.996577
  21159. 23390 74 2 12374 3.99 2007-03-18 06:36:11.996577
  21160. 23391 74 2 12477 3.99 2007-03-18 10:53:27.996577
  21161. 23392 74 2 13335 0.99 2007-03-19 18:31:44.996577
  21162. 23393 74 2 13520 0.99 2007-03-20 01:10:12.996577
  21163. 23394 74 1 13583 1.99 2007-03-20 03:58:11.996577
  21164. 23395 74 2 13747 5.99 2007-03-20 09:24:32.996577
  21165. 23396 74 1 15286 4.99 2007-03-22 17:46:22.996577
  21166. 23397 74 2 15325 4.99 2007-03-22 18:56:04.996577
  21167. 23398 74 2 15500 0.99 2007-03-23 01:08:03.996577
  21168. 23399 74 2 15739 4.99 2007-03-23 10:24:48.996577
  21169. 23400 74 1 16046 0.99 2007-03-23 20:55:13.996577
  21170. 23401 75 2 10653 5.99 2007-03-01 14:56:33.996577
  21171. 23402 75 1 10726 3.99 2007-03-01 17:43:19.996577
  21172. 23403 75 1 10871 4.99 2007-03-01 22:55:50.996577
  21173. 23404 75 1 11330 0.99 2007-03-02 15:13:59.996577
  21174. 23405 75 1 12002 2.99 2007-03-17 17:24:28.996577
  21175. 23406 75 2 12239 0.99 2007-03-18 01:55:08.996577
  21176. 23407 75 1 12336 1.99 2007-03-18 05:28:07.996577
  21177. 23408 75 1 12412 5.99 2007-03-18 08:18:18.996577
  21178. 23409 75 1 12426 4.99 2007-03-18 08:52:37.996577
  21179. 23410 75 1 12662 0.99 2007-03-18 17:39:07.996577
  21180. 23411 75 2 15928 5.99 2007-03-23 16:51:50.996577
  21181. 23412 76 2 10795 4.99 2007-03-01 20:25:03.996577
  21182. 23413 76 2 11172 7.99 2007-03-02 08:56:18.996577
  21183. 23414 76 2 13697 3.99 2007-03-20 07:49:34.996577
  21184. 23415 76 1 14637 2.99 2007-03-21 17:29:26.996577
  21185. 23416 76 2 15169 4.99 2007-03-22 13:50:22.996577
  21186. 23417 76 1 15566 10.99 2007-03-23 03:45:49.996577
  21187. 23418 77 1 10886 2.99 2007-03-01 23:21:00.996577
  21188. 23419 77 1 10895 0.99 2007-03-01 23:45:25.996577
  21189. 23420 77 2 10991 0.99 2007-03-02 03:09:38.996577
  21190. 23421 77 1 11469 2.99 2007-03-02 20:16:35.996577
  21191. 23422 77 2 11767 7.99 2007-03-17 08:29:06.996577
  21192. 23423 77 1 12065 6.99 2007-03-17 20:00:12.996577
  21193. 23424 77 2 12328 1.99 2007-03-18 05:12:22.996577
  21194. 23425 77 2 13752 9.99 2007-03-20 09:46:11.996577
  21195. 23426 77 2 14530 4.99 2007-03-21 13:39:16.996577
  21196. 23427 77 2 15359 2.99 2007-03-22 20:02:26.996577
  21197. 23428 78 2 10350 3.99 2007-03-01 03:58:31.996577
  21198. 23429 78 1 10590 2.99 2007-03-01 12:40:19.996577
  21199. 23430 78 1 10831 7.99 2007-03-01 21:51:11.996577
  21200. 23431 78 1 10942 10.99 2007-03-02 01:44:57.996577
  21201. 23432 78 2 12474 8.99 2007-03-18 10:38:29.996577
  21202. 23433 78 2 12653 4.99 2007-03-18 17:21:43.996577
  21203. 23434 78 2 13124 5.99 2007-03-19 10:24:25.996577
  21204. 23435 78 1 13432 0.99 2007-03-19 21:57:32.996577
  21205. 23436 78 2 13792 5.99 2007-03-20 10:50:03.996577
  21206. 23437 78 2 14620 2.99 2007-03-21 16:39:09.996577
  21207. 23438 78 1 14716 0.99 2007-03-21 19:58:21.996577
  21208. 23439 78 1 14810 2.99 2007-03-21 23:37:00.996577
  21209. 23440 78 2 14862 7.99 2007-03-22 01:20:07.996577
  21210. 23441 78 2 16039 2.99 2007-03-23 20:47:17.996577
  21211. 23442 79 1 10676 2.99 2007-03-01 15:42:41.996577
  21212. 23443 79 2 11641 4.99 2007-03-17 03:14:05.996577
  21213. 23444 79 2 13026 2.99 2007-03-19 06:51:11.996577
  21214. 23445 79 1 14179 0.99 2007-03-21 01:42:53.996577
  21215. 23446 80 1 10313 0.99 2007-03-01 02:57:55.996577
  21216. 23447 80 1 10656 6.99 2007-03-01 15:06:30.996577
  21217. 23448 80 1 10690 8.99 2007-03-01 16:34:20.996577
  21218. 23449 80 2 11101 5.99 2007-03-02 06:36:50.996577
  21219. 23450 80 2 11839 0.99 2007-03-17 11:37:11.996577
  21220. 23451 80 1 11850 1.99 2007-03-17 11:58:41.996577
  21221. 23452 80 2 12468 2.99 2007-03-18 10:10:13.996577
  21222. 23453 80 1 13352 4.99 2007-03-19 19:20:06.996577
  21223. 23454 80 2 13395 0.99 2007-03-19 20:34:06.996577
  21224. 23455 80 1 13724 4.99 2007-03-20 08:35:54.996577
  21225. 23456 80 2 13851 0.99 2007-03-20 13:12:48.996577
  21226. 23457 80 1 14916 0.99 2007-03-22 03:25:23.996577
  21227. 23458 80 1 15648 8.99 2007-03-23 06:56:23.996577
  21228. 23459 80 1 16012 5.99 2007-03-23 19:42:05.996577
  21229. 23460 81 2 10456 0.99 2007-03-01 07:45:47.996577
  21230. 23461 81 1 11837 5.99 2007-03-17 11:33:07.996577
  21231. 23462 81 2 12181 4.99 2007-03-17 23:56:44.996577
  21232. 23463 81 2 13820 5.99 2007-03-20 11:55:03.996577
  21233. 23464 81 1 14128 4.99 2007-03-21 00:04:24.996577
  21234. 23465 81 1 14642 3.99 2007-03-21 17:38:06.996577
  21235. 23466 81 2 14748 7.99 2007-03-21 21:30:28.996577
  21236. 23467 81 1 15224 5.99 2007-03-22 15:46:31.996577
  21237. 23468 81 1 15602 4.99 2007-03-23 05:09:33.996577
  21238. 23469 81 1 15823 4.99 2007-03-23 13:36:26.996577
  21239. 23470 81 1 15858 2.99 2007-03-23 14:35:41.996577
  21240. 23471 81 2 15884 1.99 2007-03-23 15:13:54.996577
  21241. 23472 82 1 11093 4.99 2007-03-02 06:28:15.996577
  21242. 23473 82 2 11688 5.99 2007-03-17 05:10:24.996577
  21243. 23474 82 1 12470 3.99 2007-03-18 10:24:08.996577
  21244. 23475 82 1 13032 0.99 2007-03-19 07:00:16.996577
  21245. 23476 82 2 13847 6.99 2007-03-20 13:02:25.996577
  21246. 23477 82 2 14518 0.99 2007-03-21 13:27:24.996577
  21247. 23478 82 2 14892 4.99 2007-03-22 02:43:31.996577
  21248. 23479 82 2 15516 3.99 2007-03-23 01:41:20.996577
  21249. 23480 83 1 11408 0.99 2007-03-02 17:53:39.996577
  21250. 23481 83 1 11565 5.99 2007-03-16 23:56:31.996577
  21251. 23482 83 2 11777 4.99 2007-03-17 08:55:45.996577
  21252. 23483 83 1 12258 4.99 2007-03-18 02:39:39.996577
  21253. 23484 83 2 12985 5.99 2007-03-19 05:36:31.996577
  21254. 23485 83 1 13875 4.99 2007-03-20 13:41:37.996577
  21255. 23486 83 2 15498 4.99 2007-03-23 01:01:53.996577
  21256. 23487 83 2 15737 5.99 2007-03-23 10:20:44.996577
  21257. 23488 84 2 10540 0.99 2007-03-01 10:53:08.996577
  21258. 23489 84 1 10872 2.99 2007-03-01 22:56:16.996577
  21259. 23490 84 2 11220 4.99 2007-03-02 11:00:07.996577
  21260. 23491 84 2 11424 3.99 2007-03-02 18:26:08.996577
  21261. 23492 84 2 11453 7.99 2007-03-02 19:28:31.996577
  21262. 23493 84 2 11899 0.99 2007-03-17 13:57:38.996577
  21263. 23494 84 2 11960 4.99 2007-03-17 15:52:56.996577
  21264. 23495 84 2 12364 4.99 2007-03-18 06:23:35.996577
  21265. 23496 84 2 13115 2.99 2007-03-19 09:56:09.996577
  21266. 23497 84 1 14330 5.99 2007-03-21 06:57:46.996577
  21267. 23498 84 1 15190 4.99 2007-03-22 14:26:04.996577
  21268. 23499 84 1 15255 2.99 2007-03-22 16:45:16.996577
  21269. 23500 85 1 10328 4.99 2007-03-01 03:24:36.996577
  21270. 23501 85 1 10548 0.99 2007-03-01 11:12:58.996577
  21271. 23502 85 2 11067 8.99 2007-03-02 05:31:50.996577
  21272. 23503 85 2 12036 0.99 2007-03-17 18:47:32.996577
  21273. 23504 85 1 12456 4.99 2007-03-18 09:50:17.996577
  21274. 23505 85 1 13727 3.99 2007-03-20 08:37:19.996577
  21275. 23506 85 2 13733 0.99 2007-03-20 08:53:38.996577
  21276. 23507 86 2 10252 8.99 2007-03-01 01:08:05.996577
  21277. 23508 86 2 10536 4.99 2007-03-01 10:50:19.996577
  21278. 23509 86 2 10584 6.99 2007-03-01 12:27:13.996577
  21279. 23510 86 2 11916 0.99 2007-03-17 14:34:17.996577
  21280. 23511 86 1 12198 2.99 2007-03-18 00:37:46.996577
  21281. 23512 86 2 12870 3.99 2007-03-19 01:23:04.996577
  21282. 23513 86 2 13338 4.99 2007-03-19 18:38:25.996577
  21283. 23514 86 1 13535 4.99 2007-03-20 01:58:51.996577
  21284. 23515 86 1 13874 2.99 2007-03-20 13:40:14.996577
  21285. 23516 86 2 14122 1.99 2007-03-20 23:57:27.996577
  21286. 23517 86 2 15099 4.99 2007-03-22 10:17:42.996577
  21287. 23518 86 1 15715 1.99 2007-03-23 09:26:06.996577
  21288. 23519 86 2 15940 5.99 2007-03-23 17:13:32.996577
  21289. 23520 87 1 10387 4.99 2007-03-01 05:10:57.996577
  21290. 23521 87 1 12232 0.99 2007-03-18 01:42:40.996577
  21291. 23522 87 1 12257 8.99 2007-03-18 02:39:29.996577
  21292. 23523 87 1 12264 5.99 2007-03-18 02:45:59.996577
  21293. 23524 87 1 13479 0.99 2007-03-19 23:37:37.996577
  21294. 23525 87 1 13906 0.99 2007-03-20 14:44:29.996577
  21295. 23526 87 2 14024 10.99 2007-03-20 19:42:24.996577
  21296. 23527 87 1 14566 2.99 2007-03-21 14:53:31.996577
  21297. 23528 87 1 15876 2.99 2007-03-23 15:00:36.996577
  21298. 23529 87 2 15890 4.99 2007-03-23 15:26:38.996577
  21299. 23530 88 1 10424 0.99 2007-03-01 06:51:20.996577
  21300. 23531 88 1 11056 6.99 2007-03-02 05:04:53.996577
  21301. 23532 88 2 14097 2.99 2007-03-20 22:57:14.996577
  21302. 23533 88 2 14827 5.99 2007-03-22 00:00:58.996577
  21303. 23534 88 2 15098 3.99 2007-03-22 10:16:45.996577
  21304. 23535 88 1 15898 4.99 2007-03-23 15:41:27.996577
  21305. 23536 89 2 10806 4.99 2007-03-01 20:53:55.996577
  21306. 23537 89 1 11090 3.99 2007-03-02 06:25:06.996577
  21307. 23538 89 1 12118 3.99 2007-03-17 21:42:51.996577
  21308. 23539 89 2 12431 2.99 2007-03-18 09:03:25.996577
  21309. 23540 89 1 12756 2.99 2007-03-18 21:20:39.996577
  21310. 23541 89 1 13823 2.99 2007-03-20 12:10:36.996577
  21311. 23542 89 1 15845 2.99 2007-03-23 14:07:00.996577
  21312. 23543 90 1 10722 4.99 2007-03-01 17:35:34.996577
  21313. 23544 90 1 10835 4.99 2007-03-01 21:57:15.996577
  21314. 23545 90 2 11231 4.99 2007-03-02 11:30:37.996577
  21315. 23546 90 1 11516 0.99 2007-03-16 22:23:13.996577
  21316. 23547 90 2 12019 0.99 2007-03-17 18:17:21.996577
  21317. 23548 90 1 12788 2.99 2007-03-18 22:43:35.996577
  21318. 23549 90 1 13051 4.99 2007-03-19 07:59:59.996577
  21319. 23550 90 1 14608 1.99 2007-03-21 16:25:48.996577
  21320. 23551 90 1 14807 4.99 2007-03-21 23:26:09.996577
  21321. 23552 90 2 15061 0.99 2007-03-22 08:58:10.996577
  21322. 23553 90 2 15217 0.99 2007-03-22 15:26:57.996577
  21323. 23554 90 1 15674 7.99 2007-03-23 07:45:05.996577
  21324. 23555 91 2 11418 0.99 2007-03-02 18:13:59.996577
  21325. 23556 91 1 12847 0.99 2007-03-19 00:32:33.996577
  21326. 23557 91 2 13222 4.99 2007-03-19 14:16:24.996577
  21327. 23558 91 2 13309 4.99 2007-03-19 17:32:26.996577
  21328. 23559 91 1 14132 0.99 2007-03-21 00:12:24.996577
  21329. 23560 91 2 14888 2.99 2007-03-22 02:37:44.996577
  21330. 23561 91 1 15122 1.99 2007-03-22 11:16:11.996577
  21331. 23562 91 1 15341 4.99 2007-03-22 19:24:57.996577
  21332. 23563 91 1 15707 1.99 2007-03-23 09:04:11.996577
  21333. 23564 91 2 15886 4.99 2007-03-23 15:19:19.996577
  21334. 23565 92 2 11203 4.99 2007-03-02 10:21:07.996577
  21335. 23566 92 2 11245 2.99 2007-03-02 12:02:16.996577
  21336. 23567 92 1 11849 4.99 2007-03-17 11:53:21.996577
  21337. 23568 92 2 13020 5.99 2007-03-19 06:36:16.996577
  21338. 23569 92 1 13495 0.99 2007-03-20 00:08:51.996577
  21339. 23570 92 1 13620 2.99 2007-03-20 05:09:53.996577
  21340. 23571 92 1 14798 0.99 2007-03-21 23:12:34.996577
  21341. 23572 92 2 14998 4.99 2007-03-22 06:21:40.996577
  21342. 23573 93 2 11271 5.99 2007-03-02 12:46:48.996577
  21343. 23574 93 1 12704 4.99 2007-03-18 19:11:26.996577
  21344. 23575 93 1 13555 2.99 2007-03-20 02:38:16.996577
  21345. 23576 93 2 13904 2.99 2007-03-20 14:40:00.996577
  21346. 23577 93 1 13950 8.99 2007-03-20 16:26:26.996577
  21347. 23578 93 1 13993 4.99 2007-03-20 18:00:55.996577
  21348. 23579 93 1 14195 0.99 2007-03-21 02:09:01.996577
  21349. 23580 93 2 14333 4.99 2007-03-21 06:59:29.996577
  21350. 23581 93 2 15324 5.99 2007-03-22 18:51:39.996577
  21351. 23582 93 2 15631 2.99 2007-03-23 05:58:49.996577
  21352. 23583 93 1 15696 0.99 2007-03-23 08:32:43.996577
  21353. 23584 93 2 15913 1.99 2007-03-23 16:16:56.996577
  21354. 23585 94 1 12316 2.99 2007-03-18 04:44:35.996577
  21355. 23586 94 1 13786 5.99 2007-03-20 10:41:50.996577
  21356. 23587 94 2 14804 1.99 2007-03-21 23:19:51.996577
  21357. 23588 94 1 14865 4.99 2007-03-22 01:35:04.996577
  21358. 23589 94 1 14978 0.99 2007-03-22 05:41:41.996577
  21359. 23590 94 1 15693 0.99 2007-03-23 08:28:50.996577
  21360. 23591 95 2 10446 0.99 2007-03-01 07:30:43.996577
  21361. 23592 95 2 12351 5.99 2007-03-18 06:00:38.996577
  21362. 23593 95 2 13516 7.99 2007-03-20 01:01:11.996577
  21363. 23594 95 2 14203 4.99 2007-03-21 02:20:18.996577
  21364. 23595 96 2 11864 4.99 2007-03-17 12:30:27.996577
  21365. 23596 96 1 11984 3.99 2007-03-17 16:44:56.996577
  21366. 23597 96 1 12199 4.99 2007-03-18 00:37:49.996577
  21367. 23598 96 2 12525 4.99 2007-03-18 12:16:57.996577
  21368. 23599 96 1 13514 0.99 2007-03-20 00:56:35.996577
  21369. 23600 96 1 13855 4.99 2007-03-20 13:17:21.996577
  21370. 23601 96 1 14462 3.99 2007-03-21 11:19:23.996577
  21371. 23602 96 2 15989 4.99 2007-03-23 18:53:02.996577
  21372. 23603 97 1 10820 2.99 2007-03-01 21:22:06.996577
  21373. 23604 97 2 14323 4.99 2007-03-21 06:37:09.996577
  21374. 23605 97 1 15006 0.99 2007-03-22 06:48:41.996577
  21375. 23606 98 2 10694 3.99 2007-03-01 16:43:33.996577
  21376. 23607 98 1 10925 2.99 2007-03-02 00:53:04.996577
  21377. 23608 98 2 11007 0.99 2007-03-02 03:34:19.996577
  21378. 23609 98 2 11200 2.99 2007-03-02 10:17:02.996577
  21379. 23610 98 1 11635 5.99 2007-03-17 03:01:43.996577
  21380. 23611 98 1 11730 2.99 2007-03-17 06:50:26.996577
  21381. 23612 98 2 12221 5.99 2007-03-18 01:19:17.996577
  21382. 23613 98 2 14459 1.99 2007-03-21 11:16:34.996577
  21383. 23614 98 1 15536 7.99 2007-03-23 02:26:54.996577
  21384. 23615 99 2 10388 7.99 2007-03-01 05:11:10.996577
  21385. 23616 99 1 10455 1.99 2007-03-01 07:43:26.996577
  21386. 23617 99 2 11266 4.99 2007-03-02 12:36:01.996577
  21387. 23618 99 2 12379 0.99 2007-03-18 06:55:14.996577
  21388. 23619 99 2 12869 8.99 2007-03-19 01:19:02.996577
  21389. 23620 100 1 11143 0.99 2007-03-02 08:01:20.996577
  21390. 23621 100 2 11346 4.99 2007-03-02 15:44:04.996577
  21391. 23622 100 1 12657 0.99 2007-03-18 17:30:42.996577
  21392. 23623 100 1 15163 0.99 2007-03-22 13:11:39.996577
  21393. 23624 100 2 15246 3.99 2007-03-22 16:19:15.996577
  21394. 23625 101 1 10253 6.99 2007-03-01 01:08:15.996577
  21395. 23626 101 1 10407 0.99 2007-03-01 06:06:33.996577
  21396. 23627 101 2 11959 4.99 2007-03-17 15:52:01.996577
  21397. 23628 101 2 12174 2.99 2007-03-17 23:37:19.996577
  21398. 23629 101 1 12471 4.99 2007-03-18 10:25:26.996577
  21399. 23630 101 2 13370 1.99 2007-03-19 19:48:37.996577
  21400. 23631 101 1 14476 0.99 2007-03-21 11:59:33.996577
  21401. 23632 101 2 14542 3.99 2007-03-21 14:05:00.996577
  21402. 23633 101 2 15103 2.99 2007-03-22 10:29:32.996577
  21403. 23634 102 2 10841 1.99 2007-03-01 22:07:47.996577
  21404. 23635 102 2 11099 4.99 2007-03-02 06:35:38.996577
  21405. 23636 102 1 11183 4.99 2007-03-02 09:28:58.996577
  21406. 23637 102 2 12495 4.99 2007-03-18 11:25:03.996577
  21407. 23638 102 1 13420 9.99 2007-03-19 21:25:51.996577
  21408. 23639 102 1 15049 1.99 2007-03-22 08:34:54.996577
  21409. 23640 102 2 16031 3.99 2007-03-23 20:27:52.996577
  21410. 23641 103 2 12942 7.99 2007-03-19 04:09:02.996577
  21411. 23642 103 1 13676 0.99 2007-03-20 07:01:47.996577
  21412. 23643 103 2 14064 2.99 2007-03-20 21:07:42.996577
  21413. 23644 103 2 14289 4.99 2007-03-21 05:27:15.996577
  21414. 23645 103 2 15401 8.99 2007-03-22 21:41:36.996577
  21415. 23646 103 1 15461 5.99 2007-03-22 23:42:18.996577
  21416. 23647 103 1 15467 3.99 2007-03-22 23:50:38.996577
  21417. 23648 103 1 15599 5.99 2007-03-23 04:53:33.996577
  21418. 23649 103 2 15679 0.99 2007-03-23 07:55:55.996577
  21419. 23650 103 2 16048 8.99 2007-03-23 21:11:33.996577
  21420. 23651 104 1 11700 2.99 2007-03-17 05:40:57.996577
  21421. 23652 104 1 12453 3.99 2007-03-18 09:45:33.996577
  21422. 23653 104 1 13005 0.99 2007-03-19 06:14:08.996577
  21423. 23654 104 1 13017 1.99 2007-03-19 06:30:50.996577
  21424. 23655 104 1 13179 4.99 2007-03-19 12:28:19.996577
  21425. 23656 104 1 13410 3.99 2007-03-19 21:10:10.996577
  21426. 23657 104 1 14218 3.99 2007-03-21 03:12:25.996577
  21427. 23658 104 2 15186 0.99 2007-03-22 14:21:23.996577
  21428. 23659 105 1 10513 4.99 2007-03-01 10:06:00.996577
  21429. 23660 105 1 12217 0.99 2007-03-18 01:13:10.996577
  21430. 23661 105 2 12899 2.99 2007-03-19 02:32:00.996577
  21431. 23662 105 1 13057 6.99 2007-03-19 08:08:31.996577
  21432. 23663 105 1 13751 2.99 2007-03-20 09:45:29.996577
  21433. 23664 105 2 14048 0.99 2007-03-20 20:31:44.996577
  21434. 23665 105 2 15624 4.99 2007-03-23 05:52:53.996577
  21435. 23666 105 2 15688 4.99 2007-03-23 08:17:11.996577
  21436. 23667 105 2 15803 2.99 2007-03-23 12:55:33.996577
  21437. 23668 106 1 10228 2.99 2007-03-01 00:11:44.996577
  21438. 23669 106 1 10444 8.99 2007-03-01 07:30:06.996577
  21439. 23670 106 2 11436 0.99 2007-03-02 18:44:32.996577
  21440. 23671 106 1 12159 7.99 2007-03-17 23:04:35.996577
  21441. 23672 106 1 12845 2.99 2007-03-19 00:31:03.996577
  21442. 23673 106 2 14431 2.99 2007-03-21 09:59:41.996577
  21443. 23674 106 1 14920 0.99 2007-03-22 03:37:24.996577
  21444. 23675 106 1 15154 6.99 2007-03-22 12:56:03.996577
  21445. 23676 107 1 10226 4.99 2007-03-01 00:08:30.996577
  21446. 23677 107 2 13361 4.99 2007-03-19 19:35:48.996577
  21447. 23678 107 1 13510 6.99 2007-03-20 00:46:56.996577
  21448. 23679 107 1 14562 4.99 2007-03-21 14:51:25.996577
  21449. 23680 107 1 15560 3.99 2007-03-23 03:29:39.996577
  21450. 23681 108 1 11316 5.99 2007-03-02 14:36:15.996577
  21451. 23682 108 2 11445 6.99 2007-03-02 19:02:01.996577
  21452. 23683 108 2 11759 2.99 2007-03-17 08:09:49.996577
  21453. 23684 108 1 12583 2.99 2007-03-18 14:20:02.996577
  21454. 23685 108 2 12625 6.99 2007-03-18 16:04:45.996577
  21455. 23686 108 2 13754 2.99 2007-03-20 09:46:34.996577
  21456. 23687 108 2 14635 3.99 2007-03-21 17:20:09.996577
  21457. 23688 108 2 15556 8.99 2007-03-23 03:20:42.996577
  21458. 23689 108 1 16001 2.99 2007-03-23 19:14:19.996577
  21459. 23690 109 2 10240 0.99 2007-03-01 00:37:59.996577
  21460. 23691 109 2 10892 3.99 2007-03-01 23:40:32.996577
  21461. 23692 109 2 12137 6.99 2007-03-17 22:20:52.996577
  21462. 23693 109 1 13264 3.99 2007-03-19 15:55:36.996577
  21463. 23694 109 2 15398 7.99 2007-03-22 21:39:15.996577
  21464. 23695 109 2 15677 2.99 2007-03-23 07:52:02.996577
  21465. 23696 110 1 11647 7.99 2007-03-17 03:22:40.996577
  21466. 23697 110 2 12585 3.99 2007-03-18 14:20:38.996577
  21467. 23698 110 1 13723 2.99 2007-03-20 08:33:56.996577
  21468. 23699 110 2 15381 2.99 2007-03-22 20:57:02.996577
  21469. 23700 111 2 10602 4.99 2007-03-01 12:58:49.996577
  21470. 23701 111 1 10952 4.99 2007-03-02 01:56:47.996577
  21471. 23702 111 2 10990 4.99 2007-03-02 03:09:32.996577
  21472. 23703 111 2 11239 2.99 2007-03-02 11:55:37.996577
  21473. 23704 111 2 12196 3.99 2007-03-18 00:37:14.996577
  21474. 23705 111 2 13251 2.99 2007-03-19 15:17:03.996577
  21475. 23706 111 2 13525 5.99 2007-03-20 01:19:10.996577
  21476. 23707 111 1 14949 0.99 2007-03-22 04:40:42.996577
  21477. 23708 111 2 15174 6.99 2007-03-22 13:55:02.996577
  21478. 23709 112 2 10596 5.99 2007-03-01 12:47:23.996577
  21479. 23710 112 1 11019 2.99 2007-03-02 03:57:57.996577
  21480. 23711 112 1 11599 7.99 2007-03-17 01:36:36.996577
  21481. 23712 112 2 11659 4.99 2007-03-17 03:49:11.996577
  21482. 23713 112 2 11863 3.99 2007-03-17 12:24:27.996577
  21483. 23714 112 2 13611 8.99 2007-03-20 04:49:08.996577
  21484. 23715 112 2 13879 2.99 2007-03-20 13:46:36.996577
  21485. 23716 112 2 14049 5.99 2007-03-20 20:37:21.996577
  21486. 23717 112 1 14358 0.99 2007-03-21 07:42:54.996577
  21487. 23718 112 2 15304 4.99 2007-03-22 18:14:23.996577
  21488. 23719 112 1 15671 0.99 2007-03-23 07:36:42.996577
  21489. 23720 112 1 15687 8.99 2007-03-23 08:14:59.996577
  21490. 23721 112 1 15756 2.99 2007-03-23 11:15:31.996577
  21491. 23722 113 1 10378 0.99 2007-03-01 04:58:30.996577
  21492. 23723 113 2 10578 1.99 2007-03-01 12:16:28.996577
  21493. 23724 113 2 11655 7.99 2007-03-17 03:39:33.996577
  21494. 23725 113 1 11872 5.99 2007-03-17 12:40:11.996577
  21495. 23726 113 1 12392 5.99 2007-03-18 07:26:24.996577
  21496. 23727 113 2 12817 3.99 2007-03-18 23:33:01.996577
  21497. 23728 113 2 13406 2.99 2007-03-19 20:50:27.996577
  21498. 23729 113 1 15600 1.99 2007-03-23 04:59:50.996577
  21499. 23730 113 1 15770 2.99 2007-03-23 11:46:42.996577
  21500. 23731 114 1 11547 4.99 2007-03-16 23:27:50.996577
  21501. 23732 114 2 12326 0.99 2007-03-18 05:10:25.996577
  21502. 23733 114 1 12685 6.99 2007-03-18 18:19:55.996577
  21503. 23734 114 2 13459 6.99 2007-03-19 23:14:06.996577
  21504. 23735 114 2 14158 5.99 2007-03-21 01:11:46.996577
  21505. 23736 114 1 14867 4.99 2007-03-22 01:43:12.996577
  21506. 23737 114 1 15485 0.99 2007-03-23 00:33:23.996577
  21507. 23738 114 1 15528 2.99 2007-03-23 02:14:06.996577
  21508. 23739 114 2 15646 3.99 2007-03-23 06:48:21.996577
  21509. 23740 114 1 16047 0.99 2007-03-23 21:11:14.996577
  21510. 23741 115 2 10475 4.99 2007-03-01 08:31:43.996577
  21511. 23742 115 2 10647 2.99 2007-03-01 14:37:12.996577
  21512. 23743 115 2 10919 0.99 2007-03-02 00:39:29.996577
  21513. 23744 115 1 11891 2.99 2007-03-17 13:40:21.996577
  21514. 23745 115 2 12366 0.99 2007-03-18 06:23:40.996577
  21515. 23746 115 2 13977 0.99 2007-03-20 17:31:00.996577
  21516. 23747 115 1 15176 6.99 2007-03-22 13:58:51.996577
  21517. 23748 115 2 15452 0.99 2007-03-22 23:25:38.996577
  21518. 23749 116 2 10250 1.99 2007-03-01 01:07:08.996577
  21519. 23750 116 1 10801 1.99 2007-03-01 20:38:01.996577
  21520. 23751 116 2 11016 4.99 2007-03-02 03:47:39.996577
  21521. 23752 116 2 12376 2.99 2007-03-18 06:48:55.996577
  21522. 23753 116 2 13146 7.99 2007-03-19 11:23:08.996577
  21523. 23754 116 1 13369 0.99 2007-03-19 19:48:13.996577
  21524. 23755 116 1 13474 0.99 2007-03-19 23:32:58.996577
  21525. 23756 116 1 13775 6.99 2007-03-20 10:24:56.996577
  21526. 23757 116 2 14763 11.99 2007-03-21 22:02:26.996577
  21527. 23758 116 1 14907 2.99 2007-03-22 03:12:35.996577
  21528. 23759 117 2 10556 2.99 2007-03-01 11:27:08.996577
  21529. 23760 117 1 10558 4.99 2007-03-01 11:28:46.996577
  21530. 23761 117 2 11467 3.99 2007-03-02 20:15:33.996577
  21531. 23762 117 1 12143 2.99 2007-03-17 22:34:52.996577
  21532. 23763 117 1 12337 2.99 2007-03-18 05:30:50.996577
  21533. 23764 117 1 12575 6.99 2007-03-18 14:06:08.996577
  21534. 23765 117 1 12618 4.99 2007-03-18 15:52:28.996577
  21535. 23766 117 1 14784 0.99 2007-03-21 22:51:39.996577
  21536. 23767 117 2 14854 2.99 2007-03-22 00:55:13.996577
  21537. 23768 117 1 15432 2.99 2007-03-22 22:55:18.996577
  21538. 23769 118 2 12538 2.99 2007-03-18 12:37:35.996577
  21539. 23770 118 2 13193 6.99 2007-03-19 13:02:11.996577
  21540. 23771 118 2 14394 5.99 2007-03-21 08:51:36.996577
  21541. 23772 118 2 14595 7.99 2007-03-21 16:03:43.996577
  21542. 23773 118 1 14924 2.99 2007-03-22 03:43:43.996577
  21543. 23774 118 1 15731 0.99 2007-03-23 10:01:51.996577
  21544. 23775 119 1 10366 3.99 2007-03-01 04:38:03.996577
  21545. 23776 119 2 10552 2.99 2007-03-01 11:18:10.996577
  21546. 23777 119 1 10681 4.99 2007-03-01 15:59:01.996577
  21547. 23778 119 2 11377 2.99 2007-03-02 16:45:13.996577
  21548. 23779 119 1 11520 5.99 2007-03-16 22:32:54.996577
  21549. 23780 119 2 12576 2.99 2007-03-18 14:06:57.996577
  21550. 23781 119 2 12603 3.99 2007-03-18 15:24:46.996577
  21551. 23782 119 2 12842 6.99 2007-03-19 00:25:47.996577
  21552. 23783 119 1 13581 4.99 2007-03-20 03:54:41.996577
  21553. 23784 119 2 14349 3.99 2007-03-21 07:23:19.996577
  21554. 23785 119 2 14382 2.99 2007-03-21 08:29:29.996577
  21555. 23786 119 2 14643 6.99 2007-03-21 17:40:24.996577
  21556. 23787 119 2 14659 0.99 2007-03-21 18:11:02.996577
  21557. 23788 119 1 15111 4.99 2007-03-22 10:50:09.996577
  21558. 23789 119 2 15131 3.99 2007-03-22 11:34:52.996577
  21559. 23790 119 2 15171 6.99 2007-03-22 13:52:25.996577
  21560. 23791 119 1 15844 2.99 2007-03-23 14:06:38.996577
  21561. 23792 119 2 16028 3.99 2007-03-23 20:21:22.996577
  21562. 23793 120 2 10696 4.99 2007-03-01 16:46:39.996577
  21563. 23794 120 1 10940 3.99 2007-03-02 01:36:55.996577
  21564. 23795 120 2 11133 0.99 2007-03-02 07:44:11.996577
  21565. 23796 120 2 13167 2.99 2007-03-19 12:05:07.996577
  21566. 23797 120 2 13375 7.99 2007-03-19 19:59:57.996577
  21567. 23798 120 1 14001 2.99 2007-03-20 18:35:41.996577
  21568. 23799 120 1 14153 4.99 2007-03-21 00:52:59.996577
  21569. 23800 120 1 14246 4.99 2007-03-21 04:02:35.996577
  21570. 23801 120 2 14460 9.99 2007-03-21 11:17:14.996577
  21571. 23802 120 2 14969 6.99 2007-03-22 05:17:41.996577
  21572. 23803 121 2 10457 5.99 2007-03-01 07:46:00.996577
  21573. 23804 121 2 11720 8.99 2007-03-17 06:15:20.996577
  21574. 23805 121 2 12242 1.99 2007-03-18 02:05:57.996577
  21575. 23806 121 2 12428 3.99 2007-03-18 08:52:47.996577
  21576. 23807 121 2 12734 1.99 2007-03-18 20:33:18.996577
  21577. 23808 121 1 12881 5.99 2007-03-19 01:56:39.996577
  21578. 23809 121 2 12892 0.99 2007-03-19 02:15:00.996577
  21579. 23810 121 1 14138 7.99 2007-03-21 00:28:03.996577
  21580. 23811 121 1 14177 4.99 2007-03-21 01:39:59.996577
  21581. 23812 121 2 14412 9.99 2007-03-21 09:30:35.996577
  21582. 23813 121 1 14464 2.99 2007-03-21 11:21:20.996577
  21583. 23814 121 2 15114 7.99 2007-03-22 10:53:21.996577
  21584. 23815 121 1 15369 0.99 2007-03-22 20:26:32.996577
  21585. 23816 121 1 16041 2.99 2007-03-23 20:48:52.996577
  21586. 23817 122 1 10626 1.99 2007-03-01 14:01:07.996577
  21587. 23818 122 2 11044 3.99 2007-03-02 04:33:53.996577
  21588. 23819 122 2 11197 2.99 2007-03-02 10:13:33.996577
  21589. 23820 122 2 12476 4.99 2007-03-18 10:51:06.996577
  21590. 23821 122 2 12711 4.99 2007-03-18 19:31:58.996577
  21591. 23822 122 1 13171 2.99 2007-03-19 12:17:20.996577
  21592. 23823 122 1 13812 4.99 2007-03-20 11:30:09.996577
  21593. 23824 122 2 14666 5.99 2007-03-21 18:19:35.996577
  21594. 23825 123 2 10295 8.99 2007-03-01 02:22:15.996577
  21595. 23826 123 1 12360 2.99 2007-03-18 06:15:01.996577
  21596. 23827 123 1 12402 3.99 2007-03-18 07:56:00.996577
  21597. 23828 123 1 13668 2.99 2007-03-20 06:54:32.996577
  21598. 23829 123 2 15152 7.99 2007-03-22 12:53:47.996577
  21599. 23830 123 2 15525 4.99 2007-03-23 02:11:58.996577
  21600. 23831 123 1 15621 1.99 2007-03-23 05:42:09.996577
  21601. 23832 123 2 15787 2.99 2007-03-23 12:20:23.996577
  21602. 23833 124 2 11493 5.99 2007-03-02 21:15:26.996577
  21603. 23834 124 1 12835 4.99 2007-03-19 00:16:11.996577
  21604. 23835 124 2 14737 0.99 2007-03-21 20:55:37.996577
  21605. 23836 124 2 15266 4.99 2007-03-22 17:05:50.996577
  21606. 23837 124 2 16023 0.99 2007-03-23 20:13:28.996577
  21607. 23838 125 1 10583 2.99 2007-03-01 12:23:01.996577
  21608. 23839 125 1 10699 2.99 2007-03-01 16:53:17.996577
  21609. 23840 125 2 11279 7.99 2007-03-02 12:58:29.996577
  21610. 23841 125 1 11806 4.99 2007-03-17 10:17:54.996577
  21611. 23842 125 1 11832 4.99 2007-03-17 11:23:57.996577
  21612. 23843 125 1 11999 0.99 2007-03-17 17:15:33.996577
  21613. 23844 125 1 12075 4.99 2007-03-17 20:23:21.996577
  21614. 23845 125 2 12262 2.99 2007-03-18 02:44:41.996577
  21615. 23846 125 2 13441 6.99 2007-03-19 22:16:49.996577
  21616. 23847 125 2 14456 2.99 2007-03-21 11:06:35.996577
  21617. 23848 125 1 15055 2.99 2007-03-22 08:43:05.996577
  21618. 23849 126 1 11196 9.99 2007-03-02 10:11:06.996577
  21619. 23850 126 2 11613 4.99 2007-03-17 02:18:59.996577
  21620. 23851 126 1 11779 3.99 2007-03-17 09:00:24.996577
  21621. 23852 126 1 11801 0.99 2007-03-17 09:58:37.996577
  21622. 23853 126 2 12991 2.99 2007-03-19 05:49:50.996577
  21623. 23854 126 2 13015 7.99 2007-03-19 06:25:17.996577
  21624. 23855 126 2 13177 0.99 2007-03-19 12:25:24.996577
  21625. 23856 126 2 14477 2.99 2007-03-21 12:01:04.996577
  21626. 23857 126 2 14577 2.99 2007-03-21 15:20:55.996577
  21627. 23858 126 2 15741 4.99 2007-03-23 10:39:20.996577
  21628. 23859 126 1 16007 7.99 2007-03-23 19:31:09.996577
  21629. 23860 127 1 10787 10.99 2007-03-01 20:03:27.996577
  21630. 23861 127 1 10973 7.99 2007-03-02 02:38:08.996577
  21631. 23862 127 1 11235 0.99 2007-03-02 11:41:47.996577
  21632. 23863 127 2 12060 4.99 2007-03-17 19:40:23.996577
  21633. 23864 127 2 12820 2.99 2007-03-18 23:33:34.996577
  21634. 23865 127 2 13043 4.99 2007-03-19 07:35:39.996577
  21635. 23866 127 1 13091 2.99 2007-03-19 09:08:36.996577
  21636. 23867 127 2 14030 2.99 2007-03-20 19:52:20.996577
  21637. 23868 127 1 14189 2.99 2007-03-21 02:00:43.996577
  21638. 23869 127 1 15463 5.99 2007-03-22 23:43:33.996577
  21639. 23870 127 2 15736 5.99 2007-03-23 10:08:56.996577
  21640. 23871 128 1 10394 2.99 2007-03-01 05:26:43.996577
  21641. 23872 128 2 12731 2.99 2007-03-18 20:24:04.996577
  21642. 23873 128 2 12843 2.99 2007-03-19 00:27:20.996577
  21643. 23874 128 2 12910 0.99 2007-03-19 02:51:39.996577
  21644. 23875 128 2 13027 0.99 2007-03-19 06:53:42.996577
  21645. 23876 128 2 13181 5.99 2007-03-19 12:29:22.996577
  21646. 23877 128 1 13509 0.99 2007-03-20 00:42:42.996577
  21647. 23878 128 2 13964 2.99 2007-03-20 16:52:52.996577
  21648. 23879 128 2 14157 0.99 2007-03-21 01:11:41.996577
  21649. 23880 128 1 14925 8.99 2007-03-22 03:44:42.996577
  21650. 23881 128 1 15220 3.99 2007-03-22 15:30:49.996577
  21651. 23882 128 1 15835 8.99 2007-03-23 13:53:53.996577
  21652. 23883 129 2 10395 2.99 2007-03-01 05:36:48.996577
  21653. 23884 129 1 10468 0.99 2007-03-01 08:16:55.996577
  21654. 23885 129 1 10483 2.99 2007-03-01 08:48:11.996577
  21655. 23886 129 2 10550 2.99 2007-03-01 11:15:18.996577
  21656. 23887 129 2 10816 4.99 2007-03-01 21:17:23.996577
  21657. 23888 129 2 12612 3.99 2007-03-18 15:38:31.996577
  21658. 23889 129 2 12728 4.99 2007-03-18 20:16:14.996577
  21659. 23890 129 2 13653 10.99 2007-03-20 06:23:20.996577
  21660. 23891 129 1 13915 4.99 2007-03-20 15:11:19.996577
  21661. 23892 129 1 13919 4.99 2007-03-20 15:16:00.996577
  21662. 23893 129 1 13961 0.99 2007-03-20 16:45:00.996577
  21663. 23894 129 1 14353 0.99 2007-03-21 07:36:16.996577
  21664. 23895 129 2 14968 1.99 2007-03-22 05:15:25.996577
  21665. 23896 130 2 10568 2.99 2007-03-01 11:45:54.996577
  21666. 23897 130 2 10645 5.99 2007-03-01 14:20:27.996577
  21667. 23898 130 1 11811 2.99 2007-03-17 10:27:44.996577
  21668. 23899 130 1 12094 2.99 2007-03-17 20:59:30.996577
  21669. 23900 130 1 12777 6.99 2007-03-18 22:07:48.996577
  21670. 23901 130 2 14111 0.99 2007-03-20 23:27:27.996577
  21671. 23902 130 2 15574 5.99 2007-03-23 03:57:58.996577
  21672. 23903 130 1 15777 4.99 2007-03-23 11:57:34.996577
  21673. 23904 131 1 10459 4.99 2007-03-01 07:48:35.996577
  21674. 23905 131 1 10861 1.99 2007-03-01 22:41:12.996577
  21675. 23906 131 2 11971 0.99 2007-03-17 16:22:08.996577
  21676. 23907 131 1 11973 2.99 2007-03-17 16:24:24.996577
  21677. 23908 131 1 12216 0.99 2007-03-18 01:05:33.996577
  21678. 23909 131 2 12263 0.99 2007-03-18 02:44:44.996577
  21679. 23910 131 1 12372 9.99 2007-03-18 06:33:01.996577
  21680. 23911 131 2 13050 6.99 2007-03-19 07:59:49.996577
  21681. 23912 131 2 13346 7.99 2007-03-19 18:56:47.996577
  21682. 23913 131 2 13353 2.99 2007-03-19 19:22:09.996577
  21683. 23914 131 1 13407 0.99 2007-03-19 20:54:52.996577
  21684. 23915 131 2 15659 2.99 2007-03-23 07:17:09.996577
  21685. 23916 131 1 16042 2.99 2007-03-23 20:49:06.996577
  21686. 23917 132 2 10243 4.99 2007-03-01 00:47:12.996577
  21687. 23918 132 1 10400 6.99 2007-03-01 05:46:50.996577
  21688. 23919 132 2 10619 3.99 2007-03-01 13:35:30.996577
  21689. 23920 132 1 10638 6.99 2007-03-01 14:12:46.996577
  21690. 23921 132 2 11140 0.99 2007-03-02 07:56:11.996577
  21691. 23922 132 2 11812 0.99 2007-03-17 10:29:20.996577
  21692. 23923 132 2 12133 0.99 2007-03-17 22:15:42.996577
  21693. 23924 132 1 15874 4.99 2007-03-23 14:59:21.996577
  21694. 23925 133 1 10665 0.99 2007-03-01 15:24:43.996577
  21695. 23926 133 1 12419 4.99 2007-03-18 08:30:14.996577
  21696. 23927 133 1 12834 4.99 2007-03-19 00:15:56.996577
  21697. 23928 133 2 13323 2.99 2007-03-19 18:16:33.996577
  21698. 23929 133 1 13455 1.99 2007-03-19 23:00:43.996577
  21699. 23930 133 2 13910 2.99 2007-03-20 14:59:15.996577
  21700. 23931 133 2 15080 0.99 2007-03-22 09:40:17.996577
  21701. 23932 133 1 16009 6.99 2007-03-23 19:36:25.996577
  21702. 23933 134 1 10864 6.99 2007-03-01 22:47:25.996577
  21703. 23934 134 1 11280 3.99 2007-03-02 13:02:59.996577
  21704. 23935 134 1 11283 4.99 2007-03-02 13:08:12.996577
  21705. 23936 134 2 11482 4.99 2007-03-02 20:52:57.996577
  21706. 23937 134 1 12754 7.99 2007-03-18 21:06:07.996577
  21707. 23938 134 2 12987 2.99 2007-03-19 05:40:10.996577
  21708. 23939 134 2 13006 2.99 2007-03-19 06:15:42.996577
  21709. 23940 134 2 14265 2.99 2007-03-21 04:48:40.996577
  21710. 23941 134 2 15963 2.99 2007-03-23 18:11:12.996577
  21711. 23942 135 2 10471 0.99 2007-03-01 08:21:03.996577
  21712. 23943 135 1 10611 2.99 2007-03-01 13:22:18.996577
  21713. 23944 135 1 10698 3.99 2007-03-01 16:53:07.996577
  21714. 23945 135 2 11194 5.99 2007-03-02 10:04:19.996577
  21715. 23946 135 1 11704 7.99 2007-03-17 05:49:48.996577
  21716. 23947 135 1 12249 2.99 2007-03-18 02:22:00.996577
  21717. 23948 135 1 13035 0.99 2007-03-19 07:15:11.996577
  21718. 23949 135 1 14005 0.99 2007-03-20 18:47:31.996577
  21719. 23950 135 2 14136 5.99 2007-03-21 00:25:52.996577
  21720. 23951 135 2 15908 2.99 2007-03-23 16:10:26.996577
  21721. 23952 136 2 11992 10.99 2007-03-17 16:55:48.996577
  21722. 23953 136 1 12287 5.99 2007-03-18 03:26:32.996577
  21723. 23954 136 2 12539 0.99 2007-03-18 12:38:35.996577
  21724. 23955 136 2 13992 4.99 2007-03-20 17:59:01.996577
  21725. 23956 136 2 14379 0.99 2007-03-21 08:21:29.996577
  21726. 23957 136 1 14437 2.99 2007-03-21 10:16:58.996577
  21727. 23958 136 1 15439 4.99 2007-03-22 23:02:54.996577
  21728. 23959 137 2 10595 4.99 2007-03-01 12:44:54.996577
  21729. 23960 137 2 10842 5.99 2007-03-01 22:09:50.996577
  21730. 23961 137 2 11057 4.99 2007-03-02 05:06:45.996577
  21731. 23962 137 1 11281 3.99 2007-03-02 13:03:27.996577
  21732. 23963 137 2 11732 3.99 2007-03-17 06:58:12.996577
  21733. 23964 137 1 12078 2.99 2007-03-17 20:28:48.996577
  21734. 23965 137 1 13148 0.99 2007-03-19 11:23:56.996577
  21735. 23966 137 1 13472 5.99 2007-03-19 23:31:57.996577
  21736. 23967 137 1 13776 5.99 2007-03-20 10:25:32.996577
  21737. 23968 137 1 14754 7.99 2007-03-21 21:45:52.996577
  21738. 23969 137 2 15082 7.99 2007-03-22 09:45:32.996577
  21739. 23970 137 1 15133 0.99 2007-03-22 11:46:09.996577
  21740. 23971 137 2 15537 2.99 2007-03-23 02:28:56.996577
  21741. 23972 137 2 15889 4.99 2007-03-23 15:26:09.996577
  21742. 23973 137 1 16030 9.99 2007-03-23 20:24:30.996577
  21743. 23974 138 1 10268 3.99 2007-03-01 01:37:22.996577
  21744. 23975 138 1 10431 5.99 2007-03-01 07:10:20.996577
  21745. 23976 138 1 11015 4.99 2007-03-02 03:41:26.996577
  21746. 23977 138 1 11088 0.99 2007-03-02 06:16:57.996577
  21747. 23978 138 1 11463 0.99 2007-03-02 20:06:02.996577
  21748. 23979 138 2 12550 2.99 2007-03-18 13:09:04.996577
  21749. 23980 138 2 12873 2.99 2007-03-19 01:34:07.996577
  21750. 23981 138 1 14194 1.99 2007-03-21 02:08:37.996577
  21751. 23982 138 2 14432 4.99 2007-03-21 10:04:41.996577
  21752. 23983 138 2 14486 4.99 2007-03-21 12:21:20.996577
  21753. 23984 138 1 14987 4.99 2007-03-22 06:09:34.996577
  21754. 23985 138 1 15424 2.99 2007-03-22 22:31:27.996577
  21755. 23986 138 1 15501 0.99 2007-03-23 01:08:22.996577
  21756. 23987 139 1 10900 2.99 2007-03-02 00:02:52.996577
  21757. 23988 139 1 12859 6.99 2007-03-19 00:51:49.996577
  21758. 23989 139 2 13401 3.99 2007-03-19 20:44:42.996577
  21759. 23990 139 2 14736 5.99 2007-03-21 20:54:19.996577
  21760. 23991 139 1 14788 2.99 2007-03-21 22:56:25.996577
  21761. 23992 139 1 15024 2.99 2007-03-22 07:25:36.996577
  21762. 23993 139 2 15029 2.99 2007-03-22 07:33:19.996577
  21763. 23994 139 1 15062 2.99 2007-03-22 09:03:05.996577
  21764. 23995 139 1 15218 9.99 2007-03-22 15:27:31.996577
  21765. 23996 139 1 15471 3.99 2007-03-23 00:07:14.996577
  21766. 23997 139 1 15743 0.99 2007-03-23 10:40:31.996577
  21767. 23998 140 1 10342 6.99 2007-03-01 03:39:37.996577
  21768. 23999 140 2 11430 3.99 2007-03-02 18:33:02.996577
  21769. 24000 140 1 12086 4.99 2007-03-17 20:48:27.996577
  21770. 24001 140 1 12675 4.99 2007-03-18 18:02:28.996577
  21771. 24002 140 2 13053 10.99 2007-03-19 08:00:14.996577
  21772. 24003 140 1 15261 2.99 2007-03-22 16:53:00.996577
  21773. 24004 140 1 15852 2.99 2007-03-23 14:15:28.996577
  21774. 24005 141 1 10287 3.99 2007-03-01 02:05:27.996577
  21775. 24006 141 1 10379 1.99 2007-03-01 05:02:55.996577
  21776. 24007 141 1 10798 4.99 2007-03-01 20:31:36.996577
  21777. 24008 141 1 11411 2.99 2007-03-02 17:58:13.996577
  21778. 24009 141 1 11412 5.99 2007-03-02 18:01:17.996577
  21779. 24010 141 1 12032 5.99 2007-03-17 18:42:52.996577
  21780. 24011 141 1 12093 2.99 2007-03-17 20:57:06.996577
  21781. 24012 141 2 12107 3.99 2007-03-17 21:24:50.996577
  21782. 24013 141 2 12353 2.99 2007-03-18 06:01:34.996577
  21783. 24014 141 1 13000 0.99 2007-03-19 06:05:08.996577
  21784. 24015 141 2 13169 2.99 2007-03-19 12:12:01.996577
  21785. 24016 141 2 13470 4.99 2007-03-19 23:29:42.996577
  21786. 24017 141 2 14059 7.99 2007-03-20 20:53:10.996577
  21787. 24018 141 1 14112 2.99 2007-03-20 23:29:12.996577
  21788. 24019 141 1 15013 4.99 2007-03-22 07:11:11.996577
  21789. 24020 141 1 15309 0.99 2007-03-22 18:23:18.996577
  21790. 24021 141 1 15964 2.99 2007-03-23 18:13:51.996577
  21791. 24022 142 2 10934 5.99 2007-03-02 01:20:44.996577
  21792. 24023 142 2 11244 5.99 2007-03-02 12:01:50.996577
  21793. 24024 142 1 12964 0.99 2007-03-19 04:57:39.996577
  21794. 24025 142 1 13044 0.99 2007-03-19 07:42:57.996577
  21795. 24026 142 2 13745 0.99 2007-03-20 09:22:15.996577
  21796. 24027 142 1 13959 0.99 2007-03-20 16:44:47.996577
  21797. 24028 142 2 14116 4.99 2007-03-20 23:39:43.996577
  21798. 24029 142 2 14813 0.99 2007-03-21 23:40:03.996577
  21799. 24030 142 2 15333 2.99 2007-03-22 19:12:32.996577
  21800. 24031 142 1 15477 1.99 2007-03-23 00:15:01.996577
  21801. 24032 143 1 11278 6.99 2007-03-02 12:58:09.996577
  21802. 24033 143 2 11651 6.99 2007-03-17 03:30:51.996577
  21803. 24034 143 1 12408 2.99 2007-03-18 08:09:04.996577
  21804. 24035 143 2 13835 4.99 2007-03-20 12:34:59.996577
  21805. 24036 143 1 15250 5.99 2007-03-22 16:31:37.996577
  21806. 24037 143 1 16029 4.99 2007-03-23 20:22:28.996577
  21807. 24038 144 1 10302 0.99 2007-03-01 02:40:34.996577
  21808. 24039 144 1 10593 4.99 2007-03-01 12:41:45.996577
  21809. 24040 144 1 10740 5.99 2007-03-01 18:18:58.996577
  21810. 24041 144 1 10951 4.99 2007-03-02 01:55:01.996577
  21811. 24042 144 1 11228 2.99 2007-03-02 11:23:49.996577
  21812. 24043 144 2 11476 6.99 2007-03-02 20:32:13.996577
  21813. 24044 144 1 11534 7.99 2007-03-16 23:03:53.996577
  21814. 24045 144 1 11859 4.99 2007-03-17 12:19:46.996577
  21815. 24046 144 2 12087 2.99 2007-03-17 20:48:38.996577
  21816. 24047 144 2 12733 2.99 2007-03-18 20:27:26.996577
  21817. 24048 144 1 12858 3.99 2007-03-19 00:50:42.996577
  21818. 24049 144 2 12980 6.99 2007-03-19 05:31:40.996577
  21819. 24050 144 2 13881 2.99 2007-03-20 13:47:21.996577
  21820. 24051 144 2 14159 2.99 2007-03-21 01:14:24.996577
  21821. 24052 144 1 15017 1.99 2007-03-22 07:16:10.996577
  21822. 24053 144 1 15753 7.99 2007-03-23 11:11:56.996577
  21823. 24054 145 2 10799 4.99 2007-03-01 20:31:57.996577
  21824. 24055 145 2 11904 5.99 2007-03-17 14:07:52.996577
  21825. 24056 145 2 11954 2.99 2007-03-17 15:47:02.996577
  21826. 24057 145 1 12637 2.99 2007-03-18 16:35:19.996577
  21827. 24058 145 2 12785 2.99 2007-03-18 22:34:15.996577
  21828. 24059 145 2 13012 7.99 2007-03-19 06:23:25.996577
  21829. 24060 145 1 13164 3.99 2007-03-19 11:59:21.996577
  21830. 24061 145 2 13272 0.99 2007-03-19 16:17:39.996577
  21831. 24062 145 2 14044 5.99 2007-03-20 20:17:04.996577
  21832. 24063 145 2 14389 6.99 2007-03-21 08:43:46.996577
  21833. 24064 146 2 11173 7.99 2007-03-02 08:56:26.996577
  21834. 24065 146 1 11221 2.99 2007-03-02 11:00:38.996577
  21835. 24066 146 2 11370 0.99 2007-03-02 16:34:27.996577
  21836. 24067 146 2 11392 5.99 2007-03-02 17:09:37.996577
  21837. 24068 146 1 11573 4.99 2007-03-17 00:06:44.996577
  21838. 24069 146 1 11857 4.99 2007-03-17 12:16:56.996577
  21839. 24070 146 1 12129 7.99 2007-03-17 21:59:51.996577
  21840. 24071 146 1 12385 2.99 2007-03-18 07:07:59.996577
  21841. 24072 146 1 12888 4.99 2007-03-19 02:09:35.996577
  21842. 24073 146 1 13606 4.99 2007-03-20 04:35:27.996577
  21843. 24074 146 2 13829 4.99 2007-03-20 12:18:43.996577
  21844. 24075 146 2 14143 2.99 2007-03-21 00:38:58.996577
  21845. 24076 146 1 15842 6.99 2007-03-23 14:04:31.996577
  21846. 24077 147 1 10706 7.99 2007-03-01 17:09:54.996577
  21847. 24078 147 2 10752 8.99 2007-03-01 18:37:15.996577
  21848. 24079 147 1 12284 4.99 2007-03-18 03:24:15.996577
  21849. 24080 147 1 12757 4.99 2007-03-18 21:26:11.996577
  21850. 24081 147 2 13542 4.99 2007-03-20 02:10:23.996577
  21851. 24082 147 2 13670 3.99 2007-03-20 06:55:27.996577
  21852. 24083 147 2 14021 4.99 2007-03-20 19:30:38.996577
  21853. 24084 147 1 14156 0.99 2007-03-21 01:03:42.996577
  21854. 24085 147 2 14641 0.99 2007-03-21 17:33:49.996577
  21855. 24086 147 2 14960 4.99 2007-03-22 05:00:02.996577
  21856. 24087 147 1 15052 2.99 2007-03-22 08:37:45.996577
  21857. 24088 147 2 15331 4.99 2007-03-22 19:06:23.996577
  21858. 24089 147 2 15513 4.99 2007-03-23 01:30:22.996577
  21859. 24090 147 1 15730 8.99 2007-03-23 10:01:01.996577
  21860. 24091 147 2 16004 6.99 2007-03-23 19:21:46.996577
  21861. 24092 148 2 10830 6.99 2007-03-01 21:46:32.996577
  21862. 24093 148 1 11357 10.99 2007-03-02 16:11:15.996577
  21863. 24094 148 1 12029 2.99 2007-03-17 18:35:27.996577
  21864. 24095 148 2 12038 0.99 2007-03-17 18:56:52.996577
  21865. 24096 148 2 12512 3.99 2007-03-18 11:56:53.996577
  21866. 24097 148 1 12944 6.99 2007-03-19 04:16:38.996577
  21867. 24098 148 1 12983 6.99 2007-03-19 05:35:17.996577
  21868. 24099 148 1 14055 0.99 2007-03-20 20:46:26.996577
  21869. 24100 148 1 14155 4.99 2007-03-21 01:00:01.996577
  21870. 24101 148 2 14184 6.99 2007-03-21 01:53:16.996577
  21871. 24102 148 2 14629 2.99 2007-03-21 17:08:18.996577
  21872. 24103 148 2 14713 0.99 2007-03-21 19:55:50.996577
  21873. 24104 148 2 14879 5.99 2007-03-22 02:10:38.996577
  21874. 24105 148 2 14965 2.99 2007-03-22 05:14:19.996577
  21875. 24106 148 2 15237 4.99 2007-03-22 16:12:56.996577
  21876. 24107 148 2 15379 8.99 2007-03-22 20:54:39.996577
  21877. 24108 148 1 15541 3.99 2007-03-23 02:42:19.996577
  21878. 24109 148 2 15586 3.99 2007-03-23 04:25:30.996577
  21879. 24110 149 2 10737 7.99 2007-03-01 17:59:50.996577
  21880. 24111 149 2 10967 0.99 2007-03-02 02:30:42.996577
  21881. 24112 149 1 11561 2.99 2007-03-16 23:51:35.996577
  21882. 24113 149 1 12000 4.99 2007-03-17 17:18:10.996577
  21883. 24114 149 1 14771 3.99 2007-03-21 22:18:41.996577
  21884. 24115 149 2 15479 4.99 2007-03-23 00:19:19.996577
  21885. 24116 149 2 15562 2.99 2007-03-23 03:32:59.996577
  21886. 24117 150 1 10686 2.99 2007-03-01 16:19:47.996577
  21887. 24118 150 2 11123 2.99 2007-03-02 07:22:43.996577
  21888. 24119 150 2 11789 6.99 2007-03-17 09:27:50.996577
  21889. 24120 150 2 12260 6.99 2007-03-18 02:44:09.996577
  21890. 24121 150 2 12335 2.99 2007-03-18 05:27:41.996577
  21891. 24122 150 2 12627 2.99 2007-03-18 16:05:37.996577
  21892. 24123 150 1 12887 1.99 2007-03-19 02:07:20.996577
  21893. 24124 150 2 12890 0.99 2007-03-19 02:10:34.996577
  21894. 24125 150 1 13116 6.99 2007-03-19 10:00:07.996577
  21895. 24126 150 2 13255 8.99 2007-03-19 15:22:38.996577
  21896. 24127 150 1 13372 2.99 2007-03-19 19:51:45.996577
  21897. 24128 150 2 13599 5.99 2007-03-20 04:28:29.996577
  21898. 24129 150 2 14165 0.99 2007-03-21 01:27:43.996577
  21899. 24130 150 2 14454 2.99 2007-03-21 11:04:15.996577
  21900. 24131 150 2 14520 9.99 2007-03-21 13:29:15.996577
  21901. 24132 150 1 14663 0.99 2007-03-21 18:16:21.996577
  21902. 24133 151 1 10311 4.99 2007-03-01 02:56:25.996577
  21903. 24134 151 1 10662 2.99 2007-03-01 15:19:23.996577
  21904. 24135 151 2 11714 2.99 2007-03-17 06:03:21.996577
  21905. 24136 151 2 13230 0.99 2007-03-19 14:40:33.996577
  21906. 24137 151 1 13568 5.99 2007-03-20 03:31:12.996577
  21907. 24138 151 1 14856 4.99 2007-03-22 01:00:17.996577
  21908. 24139 151 2 14922 3.99 2007-03-22 03:41:31.996577
  21909. 24140 151 1 15227 4.99 2007-03-22 15:51:07.996577
  21910. 24141 151 1 15926 2.99 2007-03-23 16:49:22.996577
  21911. 24142 151 2 15996 2.99 2007-03-23 19:00:04.996577
  21912. 24143 152 1 10320 6.99 2007-03-01 03:07:52.996577
  21913. 24144 152 2 11638 6.99 2007-03-17 03:07:35.996577
  21914. 24145 152 2 11783 0.99 2007-03-17 09:07:50.996577
  21915. 24146 152 1 12697 2.99 2007-03-18 18:43:22.996577
  21916. 24147 152 1 12917 4.99 2007-03-19 02:55:37.996577
  21917. 24148 152 2 12960 1.99 2007-03-19 04:50:18.996577
  21918. 24149 152 1 13204 4.99 2007-03-19 13:31:14.996577
  21919. 24150 152 2 13484 0.99 2007-03-19 23:45:18.996577
  21920. 24151 152 1 13986 0.99 2007-03-20 17:41:49.996577
  21921. 24152 152 1 14173 0.99 2007-03-21 01:29:27.996577
  21922. 24153 152 2 14668 4.99 2007-03-21 18:19:56.996577
  21923. 24154 153 2 11368 4.99 2007-03-02 16:31:31.996577
  21924. 24155 153 1 12103 1.99 2007-03-17 21:17:35.996577
  21925. 24156 153 1 12439 3.99 2007-03-18 09:13:23.996577
  21926. 24157 153 1 12882 4.99 2007-03-19 02:02:12.996577
  21927. 24158 153 1 14664 4.99 2007-03-21 18:17:13.996577
  21928. 24159 153 1 14747 4.99 2007-03-21 21:28:28.996577
  21929. 24160 153 1 14944 4.99 2007-03-22 04:29:52.996577
  21930. 24161 153 2 15267 0.99 2007-03-22 17:06:14.996577
  21931. 24162 153 2 15444 7.99 2007-03-22 23:15:18.996577
  21932. 24163 153 1 15593 1.99 2007-03-23 04:43:35.996577
  21933. 24164 154 1 10278 6.99 2007-03-01 01:53:53.996577
  21934. 24165 154 1 10851 4.99 2007-03-01 22:27:11.996577
  21935. 24166 154 1 11296 5.99 2007-03-02 13:43:53.996577
  21936. 24167 154 1 12341 0.99 2007-03-18 05:37:53.996577
  21937. 24168 154 2 13861 4.99 2007-03-20 13:25:19.996577
  21938. 24169 154 2 14731 2.99 2007-03-21 20:50:15.996577
  21939. 24170 154 2 14793 7.99 2007-03-21 23:06:23.996577
  21940. 24171 154 1 14918 6.99 2007-03-22 03:35:04.996577
  21941. 24172 154 1 15351 0.99 2007-03-22 19:44:12.996577
  21942. 24173 154 1 15721 2.99 2007-03-23 09:44:42.996577
  21943. 24174 155 1 11033 4.99 2007-03-02 04:22:43.996577
  21944. 24175 155 2 11951 5.99 2007-03-17 15:42:28.996577
  21945. 24176 155 1 14324 8.99 2007-03-21 06:39:22.996577
  21946. 24177 155 2 14549 2.99 2007-03-21 14:22:47.996577
  21947. 24178 155 1 14753 2.99 2007-03-21 21:40:09.996577
  21948. 24179 155 2 14909 0.99 2007-03-22 03:17:10.996577
  21949. 24180 155 1 15106 0.99 2007-03-22 10:30:14.996577
  21950. 24181 156 2 10309 6.99 2007-03-01 02:52:44.996577
  21951. 24182 156 2 11490 2.99 2007-03-02 21:04:26.996577
  21952. 24183 156 1 11587 5.99 2007-03-17 00:49:29.996577
  21953. 24184 156 2 13530 0.99 2007-03-20 01:41:09.996577
  21954. 24185 156 2 13531 2.99 2007-03-20 01:54:36.996577
  21955. 24186 156 2 13802 2.99 2007-03-20 11:13:19.996577
  21956. 24187 156 1 14794 1.99 2007-03-21 23:07:57.996577
  21957. 24188 156 2 14831 4.99 2007-03-22 00:09:15.996577
  21958. 24189 156 1 14914 0.99 2007-03-22 03:22:01.996577
  21959. 24190 156 1 15408 6.99 2007-03-22 21:54:58.996577
  21960. 24191 157 2 11249 4.99 2007-03-02 12:04:06.996577
  21961. 24192 157 2 11335 4.99 2007-03-02 15:26:03.996577
  21962. 24193 157 1 12213 5.99 2007-03-18 01:02:21.996577
  21963. 24194 157 1 12464 6.99 2007-03-18 10:02:00.996577
  21964. 24195 157 1 12916 0.99 2007-03-19 02:55:31.996577
  21965. 24196 157 1 13097 4.99 2007-03-19 09:19:09.996577
  21966. 24197 157 1 13214 4.99 2007-03-19 13:59:32.996577
  21967. 24198 157 1 13481 6.99 2007-03-19 23:39:38.996577
  21968. 24199 157 1 13728 2.99 2007-03-20 08:39:33.996577
  21969. 24200 157 2 14974 4.99 2007-03-22 05:32:51.996577
  21970. 24201 158 2 11077 4.99 2007-03-02 05:55:09.996577
  21971. 24202 158 1 11103 6.99 2007-03-02 06:38:20.996577
  21972. 24203 158 1 11272 0.99 2007-03-02 12:48:53.996577
  21973. 24204 158 1 11420 2.99 2007-03-02 18:16:22.996577
  21974. 24205 158 2 12070 1.99 2007-03-17 20:15:13.996577
  21975. 24206 158 2 12421 5.99 2007-03-18 08:32:32.996577
  21976. 24207 158 2 13212 1.99 2007-03-19 13:52:33.996577
  21977. 24208 158 2 13854 2.99 2007-03-20 13:17:08.996577
  21978. 24209 158 1 13926 2.99 2007-03-20 15:37:53.996577
  21979. 24210 158 2 14028 0.99 2007-03-20 19:51:29.996577
  21980. 24211 158 1 15763 2.99 2007-03-23 11:31:25.996577
  21981. 24212 158 1 15796 5.99 2007-03-23 12:40:48.996577
  21982. 24213 158 1 15802 5.99 2007-03-23 12:55:17.996577
  21983. 24214 159 2 11225 4.99 2007-03-02 11:11:53.996577
  21984. 24215 159 2 13270 1.99 2007-03-19 16:09:42.996577
  21985. 24216 159 1 13933 0.99 2007-03-20 15:45:33.996577
  21986. 24217 159 2 14575 8.99 2007-03-21 15:20:00.996577
  21987. 24218 159 1 15197 0.99 2007-03-22 14:42:51.996577
  21988. 24219 160 1 10305 2.99 2007-03-01 02:44:42.996577
  21989. 24220 160 2 10788 0.99 2007-03-01 20:05:36.996577
  21990. 24221 160 2 10958 4.99 2007-03-02 02:05:39.996577
  21991. 24222 160 2 10979 5.99 2007-03-02 02:45:03.996577
  21992. 24223 160 2 11154 2.99 2007-03-02 08:23:16.996577
  21993. 24224 160 1 11803 2.99 2007-03-17 10:10:34.996577
  21994. 24225 160 1 11888 7.99 2007-03-17 13:32:31.996577
  21995. 24226 160 2 12334 2.99 2007-03-18 05:21:02.996577
  21996. 24227 160 1 12435 7.99 2007-03-18 09:06:57.996577
  21997. 24228 160 2 13093 6.99 2007-03-19 09:14:42.996577
  21998. 24229 160 1 14868 4.99 2007-03-22 01:43:27.996577
  21999. 24230 160 1 15112 2.99 2007-03-22 10:50:15.996577
  22000. 24231 160 2 15642 2.99 2007-03-23 06:37:37.996577
  22001. 24232 160 1 15962 4.99 2007-03-23 18:10:30.996577
  22002. 24233 160 1 16027 3.99 2007-03-23 20:17:59.996577
  22003. 24234 161 1 10241 5.99 2007-03-01 00:40:51.996577
  22004. 24235 161 1 10355 0.99 2007-03-01 04:16:03.996577
  22005. 24236 161 1 10637 2.99 2007-03-01 14:12:35.996577
  22006. 24237 161 1 10863 6.99 2007-03-01 22:46:33.996577
  22007. 24238 161 2 10939 0.99 2007-03-02 01:34:46.996577
  22008. 24239 161 1 11838 2.99 2007-03-17 11:34:26.996577
  22009. 24240 161 2 14150 0.99 2007-03-21 00:51:29.996577
  22010. 24241 161 1 14370 7.99 2007-03-21 08:03:40.996577
  22011. 24242 161 1 15000 0.99 2007-03-22 06:23:24.996577
  22012. 24243 161 2 15045 5.99 2007-03-22 08:21:49.996577
  22013. 24244 161 2 15150 2.99 2007-03-22 12:40:31.996577
  22014. 24245 161 1 15420 5.99 2007-03-22 22:24:17.996577
  22015. 24246 162 2 11012 0.99 2007-03-02 03:38:08.996577
  22016. 24247 162 1 13288 4.99 2007-03-19 16:58:36.996577
  22017. 24248 162 2 14301 1.99 2007-03-21 05:48:14.996577
  22018. 24249 162 1 15332 4.99 2007-03-22 19:10:19.996577
  22019. 24250 163 2 10245 0.99 2007-03-01 00:52:35.996577
  22020. 24251 163 2 11623 2.99 2007-03-17 02:44:13.996577
  22021. 24252 163 2 11940 4.99 2007-03-17 15:24:54.996577
  22022. 24253 163 1 12154 2.99 2007-03-17 22:52:22.996577
  22023. 24254 163 2 12973 2.99 2007-03-19 05:16:37.996577
  22024. 24255 163 2 13543 7.99 2007-03-20 02:11:39.996577
  22025. 24256 163 2 14275 4.99 2007-03-21 04:58:56.996577
  22026. 24257 163 2 14427 5.99 2007-03-21 09:54:32.996577
  22027. 24258 163 1 15520 8.99 2007-03-23 01:59:11.996577
  22028. 24259 163 1 15847 0.99 2007-03-23 14:08:04.996577
  22029. 24260 164 2 11175 2.99 2007-03-02 09:07:13.996577
  22030. 24261 164 2 13453 5.99 2007-03-19 22:59:17.996577
  22031. 24262 165 1 10565 4.99 2007-03-01 11:36:53.996577
  22032. 24263 165 1 11484 2.99 2007-03-02 20:56:49.996577
  22033. 24264 165 2 12643 4.99 2007-03-18 16:49:32.996577
  22034. 24265 165 2 15007 1.99 2007-03-22 06:49:47.996577
  22035. 24266 165 1 15801 3.99 2007-03-23 12:54:30.996577
  22036. 24267 165 2 15834 5.99 2007-03-23 13:52:16.996577
  22037. 24268 166 2 10422 7.99 2007-03-01 06:45:37.996577
  22038. 24269 166 2 12683 4.99 2007-03-18 18:19:09.996577
  22039. 24270 166 1 12968 4.99 2007-03-19 05:06:44.996577
  22040. 24271 166 2 13582 4.99 2007-03-20 03:56:37.996577
  22041. 24272 166 2 13901 7.99 2007-03-20 14:35:19.996577
  22042. 24273 166 2 14261 5.99 2007-03-21 04:35:50.996577
  22043. 24274 166 2 14281 2.99 2007-03-21 05:09:14.996577
  22044. 24275 166 1 15213 5.99 2007-03-22 15:17:28.996577
  22045. 24276 166 2 15216 2.99 2007-03-22 15:25:28.996577
  22046. 24277 166 2 15806 1.99 2007-03-23 13:00:16.996577
  22047. 24278 167 2 10285 3.99 2007-03-01 02:03:37.996577
  22048. 24279 167 1 12642 4.99 2007-03-18 16:47:42.996577
  22049. 24280 167 2 12717 4.99 2007-03-18 19:44:06.996577
  22050. 24281 167 1 12978 4.99 2007-03-19 05:25:53.996577
  22051. 24282 167 1 13825 6.99 2007-03-20 12:11:48.996577
  22052. 24283 167 1 13870 1.99 2007-03-20 13:37:42.996577
  22053. 24284 167 1 15003 3.99 2007-03-22 06:39:50.996577
  22054. 24285 167 1 15050 0.99 2007-03-22 08:36:18.996577
  22055. 24286 167 2 15478 0.99 2007-03-23 00:18:57.996577
  22056. 24287 167 2 15530 4.99 2007-03-23 02:19:14.996577
  22057. 24288 167 2 15915 4.99 2007-03-23 16:20:27.996577
  22058. 24289 168 2 10270 0.99 2007-03-01 01:38:50.996577
  22059. 24290 168 1 11551 0.99 2007-03-16 23:32:15.996577
  22060. 24291 168 1 11627 10.99 2007-03-17 02:54:13.996577
  22061. 24292 168 1 11631 1.99 2007-03-17 02:57:22.996577
  22062. 24293 168 1 12545 6.99 2007-03-18 12:56:26.996577
  22063. 24294 168 1 12781 2.99 2007-03-18 22:18:50.996577
  22064. 24295 168 1 13018 8.99 2007-03-19 06:33:16.996577
  22065. 24296 168 2 13532 4.99 2007-03-20 01:57:54.996577
  22066. 24297 168 2 13811 0.99 2007-03-20 11:28:56.996577
  22067. 24298 168 1 14090 2.99 2007-03-20 22:39:42.996577
  22068. 24299 168 1 15033 3.99 2007-03-22 07:53:50.996577
  22069. 24300 168 1 15165 2.99 2007-03-22 13:27:56.996577
  22070. 24301 168 2 15683 2.99 2007-03-23 08:06:43.996577
  22071. 24302 169 2 11687 5.99 2007-03-17 05:08:25.996577
  22072. 24303 169 1 11898 5.99 2007-03-17 13:52:38.996577
  22073. 24304 169 2 13198 2.99 2007-03-19 13:15:44.996577
  22074. 24305 169 2 13237 1.99 2007-03-19 14:47:02.996577
  22075. 24306 169 2 14435 0.99 2007-03-21 10:13:03.996577
  22076. 24307 169 2 14805 4.99 2007-03-21 23:20:27.996577
  22077. 24308 169 2 15534 0.99 2007-03-23 02:24:20.996577
  22078. 24309 169 2 15680 4.99 2007-03-23 08:01:48.996577
  22079. 24310 170 2 10481 5.99 2007-03-01 08:45:52.996577
  22080. 24311 170 1 11039 0.99 2007-03-02 04:29:19.996577
  22081. 24312 170 2 12706 3.99 2007-03-18 19:13:00.996577
  22082. 24313 170 1 12967 3.99 2007-03-19 05:06:17.996577
  22083. 24314 170 1 13081 0.99 2007-03-19 08:47:32.996577
  22084. 24315 170 2 13862 6.99 2007-03-20 13:25:27.996577
  22085. 24316 170 2 14022 8.99 2007-03-20 19:37:15.996577
  22086. 24317 170 2 14675 2.99 2007-03-21 18:30:17.996577
  22087. 24318 170 1 15549 7.99 2007-03-23 02:55:32.996577
  22088. 24319 171 2 10622 4.99 2007-03-01 13:40:26.996577
  22089. 24320 171 1 12600 4.99 2007-03-18 15:12:50.996577
  22090. 24321 171 1 12962 5.99 2007-03-19 04:51:14.996577
  22091. 24322 171 2 13087 6.99 2007-03-19 09:02:18.996577
  22092. 24323 171 2 13292 0.99 2007-03-19 17:03:58.996577
  22093. 24324 171 2 13433 0.99 2007-03-19 21:59:19.996577
  22094. 24325 171 1 14270 1.99 2007-03-21 04:50:44.996577
  22095. 24326 171 2 14615 9.99 2007-03-21 16:34:58.996577
  22096. 24327 171 2 15810 0.99 2007-03-23 13:11:41.996577
  22097. 24328 172 1 10312 3.99 2007-03-01 02:57:32.996577
  22098. 24329 172 2 10621 0.99 2007-03-01 13:38:52.996577
  22099. 24330 172 2 11499 6.99 2007-03-16 21:22:38.996577
  22100. 24331 172 2 12350 4.99 2007-03-18 05:58:12.996577
  22101. 24332 172 2 12638 8.99 2007-03-18 16:40:05.996577
  22102. 24333 172 2 13067 5.99 2007-03-19 08:19:43.996577
  22103. 24334 172 2 13320 4.99 2007-03-19 18:03:59.996577
  22104. 24335 172 1 13342 0.99 2007-03-19 18:50:02.996577
  22105. 24336 172 2 13937 4.99 2007-03-20 15:51:17.996577
  22106. 24337 172 1 14991 4.99 2007-03-22 06:19:10.996577
  22107. 24338 172 2 15637 2.99 2007-03-23 06:22:04.996577
  22108. 24339 172 1 15902 3.99 2007-03-23 15:56:29.996577
  22109. 24340 172 2 16038 3.99 2007-03-23 20:42:57.996577
  22110. 24341 173 1 10351 5.99 2007-03-01 04:00:39.996577
  22111. 24342 173 2 12073 2.99 2007-03-17 20:19:05.996577
  22112. 24343 173 1 12282 6.99 2007-03-18 03:22:46.996577
  22113. 24344 173 2 12501 4.99 2007-03-18 11:41:39.996577
  22114. 24345 173 1 14654 2.99 2007-03-21 18:05:25.996577
  22115. 24346 173 2 15483 0.99 2007-03-23 00:31:19.996577
  22116. 24347 173 1 15775 8.99 2007-03-23 11:54:10.996577
  22117. 24348 173 1 16010 2.99 2007-03-23 19:38:50.996577
  22118. 24349 174 1 10363 2.99 2007-03-01 04:30:18.996577
  22119. 24350 174 2 10398 4.99 2007-03-01 05:40:15.996577
  22120. 24351 174 1 10559 8.99 2007-03-01 11:31:24.996577
  22121. 24352 174 1 11525 0.99 2007-03-16 22:43:57.996577
  22122. 24353 174 2 12886 5.99 2007-03-19 02:06:58.996577
  22123. 24354 174 1 13185 0.99 2007-03-19 12:50:56.996577
  22124. 24355 174 1 15892 1.99 2007-03-23 15:29:26.996577
  22125. 24356 174 1 15975 4.99 2007-03-23 18:34:49.996577
  22126. 24357 175 2 10229 7.99 2007-03-01 00:13:52.996577
  22127. 24358 175 1 10875 0.99 2007-03-01 23:00:10.996577
  22128. 24359 175 2 11618 4.99 2007-03-17 02:30:02.996577
  22129. 24360 175 1 12509 0.99 2007-03-18 11:50:18.996577
  22130. 24361 175 1 13016 4.99 2007-03-19 06:25:40.996577
  22131. 24362 175 2 13833 6.99 2007-03-20 12:28:55.996577
  22132. 24363 175 2 13997 6.99 2007-03-20 18:19:54.996577
  22133. 24364 175 2 14507 4.99 2007-03-21 13:01:11.996577
  22134. 24365 175 2 14897 2.99 2007-03-22 02:50:57.996577
  22135. 24366 176 1 10277 2.99 2007-03-01 01:51:07.996577
  22136. 24367 176 2 10441 0.99 2007-03-01 07:24:22.996577
  22137. 24368 176 1 10862 2.99 2007-03-01 22:46:00.996577
  22138. 24369 176 1 11678 5.99 2007-03-17 04:36:05.996577
  22139. 24370 176 1 12299 2.99 2007-03-18 04:00:58.996577
  22140. 24371 176 1 12718 2.99 2007-03-18 19:50:10.996577
  22141. 24372 176 1 13170 7.99 2007-03-19 12:14:14.996577
  22142. 24373 176 2 13186 5.99 2007-03-19 12:51:45.996577
  22143. 24374 176 1 14083 7.99 2007-03-20 22:10:57.996577
  22144. 24375 176 2 14232 1.99 2007-03-21 03:35:28.996577
  22145. 24376 176 2 15311 4.99 2007-03-22 18:25:18.996577
  22146. 24377 176 1 15933 4.99 2007-03-23 17:05:10.996577
  22147. 24378 177 2 10321 4.99 2007-03-01 03:08:28.996577
  22148. 24379 177 1 10661 2.99 2007-03-01 15:16:57.996577
  22149. 24380 177 1 10710 0.99 2007-03-01 17:13:02.996577
  22150. 24381 177 1 11195 0.99 2007-03-02 10:10:49.996577
  22151. 24382 177 1 11376 5.99 2007-03-02 16:44:26.996577
  22152. 24383 177 2 11662 6.99 2007-03-17 03:56:03.996577
  22153. 24384 177 1 12623 4.99 2007-03-18 16:02:45.996577
  22154. 24385 177 2 14093 0.99 2007-03-20 22:49:55.996577
  22155. 24386 177 2 14310 0.99 2007-03-21 06:12:58.996577
  22156. 24387 177 2 14849 2.99 2007-03-22 00:43:52.996577
  22157. 24388 177 2 14883 0.99 2007-03-22 02:23:28.996577
  22158. 24389 178 2 10562 0.99 2007-03-01 11:34:18.996577
  22159. 24390 178 1 10802 5.99 2007-03-01 20:46:58.996577
  22160. 24391 178 2 11319 6.99 2007-03-02 14:38:35.996577
  22161. 24392 178 2 11884 6.99 2007-03-17 13:11:49.996577
  22162. 24393 178 2 11927 3.99 2007-03-17 14:53:29.996577
  22163. 24394 178 2 12049 6.99 2007-03-17 19:21:53.996577
  22164. 24395 178 2 12727 2.99 2007-03-18 20:13:41.996577
  22165. 24396 178 1 13127 2.99 2007-03-19 10:32:29.996577
  22166. 24397 178 1 14104 4.99 2007-03-20 23:06:10.996577
  22167. 24398 178 1 14257 7.99 2007-03-21 04:21:23.996577
  22168. 24399 178 2 14314 2.99 2007-03-21 06:18:40.996577
  22169. 24400 178 1 15323 4.99 2007-03-22 18:51:06.996577
  22170. 24401 179 1 10385 4.99 2007-03-01 05:08:21.996577
  22171. 24402 179 2 10569 3.99 2007-03-01 11:46:49.996577
  22172. 24403 179 1 11342 0.99 2007-03-02 15:40:01.996577
  22173. 24404 179 2 13240 0.99 2007-03-19 14:50:40.996577
  22174. 24405 179 1 13400 4.99 2007-03-19 20:40:10.996577
  22175. 24406 179 2 13844 7.99 2007-03-20 12:58:52.996577
  22176. 24407 179 2 13957 0.99 2007-03-20 16:37:30.996577
  22177. 24408 179 2 14082 7.99 2007-03-20 22:10:26.996577
  22178. 24409 179 1 14589 0.99 2007-03-21 15:57:21.996577
  22179. 24410 179 1 15985 4.99 2007-03-23 18:48:49.996577
  22180. 24411 180 1 10576 5.99 2007-03-01 12:14:28.996577
  22181. 24412 180 1 10992 8.99 2007-03-02 03:09:43.996577
  22182. 24413 180 1 12313 8.99 2007-03-18 04:35:57.996577
  22183. 24414 180 1 13283 2.99 2007-03-19 16:38:45.996577
  22184. 24415 180 2 13842 4.99 2007-03-20 12:58:03.996577
  22185. 24416 180 1 13994 2.99 2007-03-20 18:01:47.996577
  22186. 24417 180 1 14109 0.99 2007-03-20 23:21:24.996577
  22187. 24418 180 1 14851 2.99 2007-03-22 00:49:10.996577
  22188. 24419 180 1 15039 4.99 2007-03-22 08:06:20.996577
  22189. 24420 181 2 10262 4.99 2007-03-01 01:29:52.996577
  22190. 24421 181 2 10362 6.99 2007-03-01 04:23:39.996577
  22191. 24422 181 2 10703 2.99 2007-03-01 17:06:05.996577
  22192. 24423 181 1 10748 4.99 2007-03-01 18:29:50.996577
  22193. 24424 181 1 10773 6.99 2007-03-01 19:22:11.996577
  22194. 24425 181 2 11224 4.99 2007-03-02 11:09:04.996577
  22195. 24426 181 1 12363 7.99 2007-03-18 06:21:15.996577
  22196. 24427 181 1 12411 0.99 2007-03-18 08:16:23.996577
  22197. 24428 181 1 12678 2.99 2007-03-18 18:09:53.996577
  22198. 24429 181 2 12939 2.99 2007-03-19 04:06:51.996577
  22199. 24430 181 2 13118 4.99 2007-03-19 10:08:24.996577
  22200. 24431 181 2 13405 4.99 2007-03-19 20:49:15.996577
  22201. 24432 181 2 13415 2.99 2007-03-19 21:16:35.996577
  22202. 24433 181 2 14406 3.99 2007-03-21 09:15:01.996577
  22203. 24434 181 2 15196 2.99 2007-03-22 14:39:58.996577
  22204. 24435 181 2 15482 4.99 2007-03-23 00:29:46.996577
  22205. 24436 182 1 11055 4.99 2007-03-02 05:04:31.996577
  22206. 24437 182 2 11785 3.99 2007-03-17 09:23:12.996577
  22207. 24438 182 1 12573 4.99 2007-03-18 14:01:23.996577
  22208. 24439 182 1 12840 6.99 2007-03-19 00:22:37.996577
  22209. 24440 182 1 13285 2.99 2007-03-19 16:47:10.996577
  22210. 24441 182 1 14586 5.99 2007-03-21 15:47:35.996577
  22211. 24442 182 1 14953 6.99 2007-03-22 04:52:20.996577
  22212. 24443 182 1 15043 1.99 2007-03-22 08:17:58.996577
  22213. 24444 183 2 10620 5.99 2007-03-01 13:37:43.996577
  22214. 24445 183 2 11386 2.99 2007-03-02 16:52:29.996577
  22215. 24446 183 2 12451 0.99 2007-03-18 09:33:08.996577
  22216. 24447 183 2 12764 3.99 2007-03-18 21:42:41.996577
  22217. 24448 183 2 12831 3.99 2007-03-19 00:09:09.996577
  22218. 24449 183 1 13482 2.99 2007-03-19 23:42:56.996577
  22219. 24450 183 1 13536 4.99 2007-03-20 02:03:42.996577
  22220. 24451 184 2 12166 9.99 2007-03-17 23:25:32.996577
  22221. 24452 184 2 12454 2.99 2007-03-18 09:47:28.996577
  22222. 24453 184 1 12532 2.99 2007-03-18 12:26:24.996577
  22223. 24454 184 1 13134 0.99 2007-03-19 10:42:40.996577
  22224. 24455 184 1 13262 5.99 2007-03-19 15:48:41.996577
  22225. 24456 184 1 13303 4.99 2007-03-19 17:23:47.996577
  22226. 24457 184 2 14472 4.99 2007-03-21 11:42:23.996577
  22227. 24458 184 1 14801 5.99 2007-03-21 23:15:20.996577
  22228. 24459 184 2 15611 0.99 2007-03-23 05:24:44.996577
  22229. 24460 185 2 11355 0.99 2007-03-02 16:06:09.996577
  22230. 24461 185 1 12312 2.99 2007-03-18 04:35:52.996577
  22231. 24462 185 1 12674 5.99 2007-03-18 17:53:22.996577
  22232. 24463 185 1 12885 0.99 2007-03-19 02:05:51.996577
  22233. 24464 185 2 14513 2.99 2007-03-21 13:20:01.996577
  22234. 24465 186 1 10985 0.99 2007-03-02 02:58:45.996577
  22235. 24466 186 1 11982 0.99 2007-03-17 16:41:33.996577
  22236. 24467 186 1 12348 5.99 2007-03-18 05:50:13.996577
  22237. 24468 186 1 12438 8.99 2007-03-18 09:11:18.996577
  22238. 24469 186 1 13168 6.99 2007-03-19 12:05:54.996577
  22239. 24470 186 2 13517 4.99 2007-03-20 01:01:43.996577
  22240. 24471 186 1 13853 3.99 2007-03-20 13:15:28.996577
  22241. 24472 186 1 14006 2.99 2007-03-20 18:50:02.996577
  22242. 24473 186 2 14229 4.99 2007-03-21 03:25:41.996577
  22243. 24474 186 2 14646 4.99 2007-03-21 17:43:14.996577
  22244. 24475 186 2 14988 3.99 2007-03-22 06:14:31.996577
  22245. 24476 186 2 15001 0.99 2007-03-22 06:29:15.996577
  22246. 24477 186 2 15295 3.99 2007-03-22 18:04:47.996577
  22247. 24478 186 1 15596 0.99 2007-03-23 04:48:17.996577
  22248. 24479 187 1 11843 2.99 2007-03-17 11:43:16.996577
  22249. 24480 187 2 12307 8.99 2007-03-18 04:16:49.996577
  22250. 24481 187 2 12490 9.99 2007-03-18 11:17:11.996577
  22251. 24482 187 1 12534 7.99 2007-03-18 12:33:07.996577
  22252. 24483 187 2 13940 8.99 2007-03-20 15:57:23.996577
  22253. 24484 187 2 14855 8.99 2007-03-22 00:55:58.996577
  22254. 24485 187 2 15231 4.99 2007-03-22 16:01:23.996577
  22255. 24486 187 2 15517 2.99 2007-03-23 01:41:27.996577
  22256. 24487 187 2 15971 7.99 2007-03-23 18:27:59.996577
  22257. 24488 188 2 10453 5.99 2007-03-01 07:41:53.996577
  22258. 24489 188 1 10494 0.99 2007-03-01 09:13:47.996577
  22259. 24490 188 2 10719 4.99 2007-03-01 17:28:54.996577
  22260. 24491 188 2 10757 4.99 2007-03-01 18:51:10.996577
  22261. 24492 188 2 11378 2.99 2007-03-02 16:45:18.996577
  22262. 24493 188 1 13570 2.99 2007-03-20 03:33:23.996577
  22263. 24494 188 1 13787 5.99 2007-03-20 10:43:49.996577
  22264. 24495 188 1 14399 2.99 2007-03-21 09:01:49.996577
  22265. 24496 188 2 14809 2.99 2007-03-21 23:29:08.996577
  22266. 24497 188 2 15319 2.99 2007-03-22 18:45:43.996577
  22267. 24498 188 2 15409 0.99 2007-03-22 21:54:58.996577
  22268. 24499 188 2 15474 4.99 2007-03-23 00:07:36.996577
  22269. 24500 189 1 10247 9.99 2007-03-01 01:02:32.996577
  22270. 24501 189 2 11059 6.99 2007-03-02 05:10:04.996577
  22271. 24502 189 2 13601 6.99 2007-03-20 04:29:41.996577
  22272. 24503 189 1 13766 3.99 2007-03-20 10:10:27.996577
  22273. 24504 189 1 15773 1.99 2007-03-23 11:53:23.996577
  22274. 24505 189 1 16008 5.99 2007-03-23 19:33:17.996577
  22275. 24506 190 1 11082 5.99 2007-03-02 05:58:45.996577
  22276. 24507 190 2 11158 6.99 2007-03-02 08:26:54.996577
  22277. 24508 190 2 11276 4.99 2007-03-02 12:57:12.996577
  22278. 24509 190 2 11312 6.99 2007-03-02 14:25:17.996577
  22279. 24510 190 2 11750 0.99 2007-03-17 07:35:26.996577
  22280. 24511 190 2 11950 9.99 2007-03-17 15:41:42.996577
  22281. 24512 190 1 12270 2.99 2007-03-18 03:00:31.996577
  22282. 24513 190 2 12381 0.99 2007-03-18 07:00:09.996577
  22283. 24514 190 2 14065 0.99 2007-03-20 21:09:13.996577
  22284. 24515 190 2 14141 4.99 2007-03-21 00:35:48.996577
  22285. 24516 190 2 14166 2.99 2007-03-21 01:27:57.996577
  22286. 24517 190 2 14650 0.99 2007-03-21 17:53:17.996577
  22287. 24518 191 2 10532 2.99 2007-03-01 10:35:01.996577
  22288. 24519 191 2 15375 4.99 2007-03-22 20:40:28.996577
  22289. 24520 192 2 10238 0.99 2007-03-01 00:36:31.996577
  22290. 24521 192 1 10843 7.99 2007-03-01 22:11:29.996577
  22291. 24522 192 1 11385 4.99 2007-03-02 16:51:37.996577
  22292. 24523 192 1 11815 4.99 2007-03-17 10:41:52.996577
  22293. 24524 192 1 13125 5.99 2007-03-19 10:26:15.996577
  22294. 24525 192 2 14146 4.99 2007-03-21 00:41:57.996577
  22295. 24526 192 2 14238 7.99 2007-03-21 03:45:06.996577
  22296. 24527 192 1 14404 4.99 2007-03-21 09:11:30.996577
  22297. 24528 192 2 14692 6.99 2007-03-21 19:11:47.996577
  22298. 24529 192 2 15855 2.99 2007-03-23 14:27:27.996577
  22299. 24530 193 2 10462 2.99 2007-03-01 08:06:54.996577
  22300. 24531 193 2 12384 0.99 2007-03-18 07:05:24.996577
  22301. 24532 193 2 12658 4.99 2007-03-18 17:34:08.996577
  22302. 24533 193 1 13529 2.99 2007-03-20 01:36:13.996577
  22303. 24534 193 1 13608 0.99 2007-03-20 04:39:10.996577
  22304. 24535 193 1 14679 2.99 2007-03-21 18:43:24.996577
  22305. 24536 193 1 14927 4.99 2007-03-22 04:00:19.996577
  22306. 24537 193 2 15164 4.99 2007-03-22 13:16:19.996577
  22307. 24538 193 2 15344 6.99 2007-03-22 19:30:14.996577
  22308. 24539 193 2 15495 5.99 2007-03-23 00:54:36.996577
  22309. 24540 194 2 11475 5.99 2007-03-02 20:23:35.996577
  22310. 24541 194 2 12851 3.99 2007-03-19 00:40:38.996577
  22311. 24542 194 1 13515 0.99 2007-03-20 00:58:13.996577
  22312. 24543 194 2 13616 7.99 2007-03-20 04:58:59.996577
  22313. 24544 194 1 14440 4.99 2007-03-21 10:27:30.996577
  22314. 24545 194 2 15937 4.99 2007-03-23 17:11:48.996577
  22315. 24546 195 2 10911 4.99 2007-03-02 00:27:02.996577
  22316. 24547 195 1 11201 7.99 2007-03-02 10:17:42.996577
  22317. 24548 195 2 11787 2.99 2007-03-17 09:27:26.996577
  22318. 24549 195 2 12099 0.99 2007-03-17 21:07:20.996577
  22319. 24550 195 2 12941 0.99 2007-03-19 04:07:52.996577
  22320. 24551 195 2 13741 0.99 2007-03-20 09:17:13.996577
  22321. 24552 195 2 14751 7.99 2007-03-21 21:39:49.996577
  22322. 24553 195 2 16040 11.99 2007-03-23 20:47:59.996577
  22323. 24554 196 1 11104 2.99 2007-03-02 06:38:24.996577
  22324. 24555 196 2 12430 0.99 2007-03-18 09:01:07.996577
  22325. 24556 196 2 12684 0.99 2007-03-18 18:19:53.996577
  22326. 24557 196 2 12836 0.99 2007-03-19 00:16:59.996577
  22327. 24558 196 1 13799 8.99 2007-03-20 11:05:08.996577
  22328. 24559 196 2 14410 5.99 2007-03-21 09:23:15.996577
  22329. 24560 196 1 14698 5.99 2007-03-21 19:18:24.996577
  22330. 24561 196 2 15980 0.99 2007-03-23 18:38:39.996577
  22331. 24562 197 2 10460 3.99 2007-03-01 07:59:26.996577
  22332. 24563 197 2 10666 0.99 2007-03-01 15:25:02.996577
  22333. 24564 197 2 10739 4.99 2007-03-01 18:14:37.996577
  22334. 24565 197 1 10743 2.99 2007-03-01 18:23:35.996577
  22335. 24566 197 1 11018 4.99 2007-03-02 03:56:19.996577
  22336. 24567 197 1 11215 4.99 2007-03-02 10:49:08.996577
  22337. 24568 197 1 11311 4.99 2007-03-02 14:22:14.996577
  22338. 24569 197 1 11478 2.99 2007-03-02 20:37:31.996577
  22339. 24570 197 1 11643 1.99 2007-03-17 03:18:01.996577
  22340. 24571 197 1 12799 0.99 2007-03-18 22:55:27.996577
  22341. 24572 197 2 13913 3.99 2007-03-20 15:06:01.996577
  22342. 24573 197 1 14069 9.99 2007-03-20 21:19:51.996577
  22343. 24574 197 2 14951 4.99 2007-03-22 04:48:03.996577
  22344. 24575 197 1 15078 2.99 2007-03-22 09:37:57.996577
  22345. 24576 197 2 15233 0.99 2007-03-22 16:10:19.996577
  22346. 24577 197 1 15540 8.99 2007-03-23 02:41:18.996577
  22347. 24578 198 1 10679 0.99 2007-03-01 15:56:24.996577
  22348. 24579 198 1 11351 3.99 2007-03-02 15:56:33.996577
  22349. 24580 198 1 11594 6.99 2007-03-17 01:15:28.996577
  22350. 24581 198 1 11756 2.99 2007-03-17 07:57:48.996577
  22351. 24582 198 1 11836 4.99 2007-03-17 11:32:02.996577
  22352. 24583 198 2 11949 2.99 2007-03-17 15:40:52.996577
  22353. 24584 198 1 11957 1.99 2007-03-17 15:50:55.996577
  22354. 24585 198 2 11985 2.99 2007-03-17 16:48:10.996577
  22355. 24586 198 2 12594 4.99 2007-03-18 14:52:50.996577
  22356. 24587 198 1 12862 5.99 2007-03-19 01:00:25.996577
  22357. 24588 198 1 13768 5.99 2007-03-20 10:12:09.996577
  22358. 24589 198 1 14214 5.99 2007-03-21 02:59:15.996577
  22359. 24590 198 2 14380 2.99 2007-03-21 08:22:18.996577
  22360. 24591 198 2 14990 4.99 2007-03-22 06:16:27.996577
  22361. 24592 198 1 15256 6.99 2007-03-22 16:48:33.996577
  22362. 24593 198 1 15433 4.99 2007-03-22 22:55:44.996577
  22363. 24594 199 2 10517 4.99 2007-03-01 10:10:23.996577
  22364. 24595 199 1 10850 8.99 2007-03-01 22:22:11.996577
  22365. 24596 199 1 11454 2.99 2007-03-02 19:33:05.996577
  22366. 24597 199 1 12386 0.99 2007-03-18 07:14:23.996577
  22367. 24598 199 2 14320 4.99 2007-03-21 06:33:06.996577
  22368. 24599 199 2 15412 0.99 2007-03-22 22:05:37.996577
  22369. 24600 199 2 15751 3.99 2007-03-23 11:09:33.996577
  22370. 24601 200 1 10685 2.99 2007-03-01 16:18:04.996577
  22371. 24602 200 1 11356 8.99 2007-03-02 16:11:06.996577
  22372. 24603 200 1 13737 5.99 2007-03-20 09:10:16.996577
  22373. 24604 200 1 14034 10.99 2007-03-20 20:00:18.996577
  22374. 24605 200 2 14521 6.99 2007-03-21 13:29:58.996577
  22375. 24606 200 2 15691 4.99 2007-03-23 08:22:20.996577
  22376. 24607 200 2 15742 5.99 2007-03-23 10:40:03.996577
  22377. 24608 200 1 15961 6.99 2007-03-23 18:04:08.996577
  22378. 24609 201 2 10750 5.99 2007-03-01 18:34:26.996577
  22379. 24610 201 2 10865 3.99 2007-03-01 22:51:12.996577
  22380. 24611 201 1 10891 0.99 2007-03-01 23:38:21.996577
  22381. 24612 201 2 11807 0.99 2007-03-17 10:19:41.996577
  22382. 24613 201 2 13076 4.99 2007-03-19 08:38:52.996577
  22383. 24614 201 2 13613 9.99 2007-03-20 04:52:19.996577
  22384. 24615 201 2 13671 3.99 2007-03-20 06:55:29.996577
  22385. 24616 201 2 13672 2.99 2007-03-20 06:55:53.996577
  22386. 24617 201 2 14656 2.99 2007-03-21 18:07:54.996577
  22387. 24618 201 1 14973 2.99 2007-03-22 05:27:54.996577
  22388. 24619 201 1 15887 2.99 2007-03-23 15:22:35.996577
  22389. 24620 201 2 15974 5.99 2007-03-23 18:34:30.996577
  22390. 24621 208 2 10762 4.99 2007-03-01 18:57:05.996577
  22391. 24622 208 2 10784 5.99 2007-03-01 19:52:54.996577
  22392. 24623 208 2 11442 2.99 2007-03-02 18:54:45.996577
  22393. 24624 208 2 11805 6.99 2007-03-17 10:17:13.996577
  22394. 24625 208 2 11819 0.99 2007-03-17 10:53:43.996577
  22395. 24626 209 2 10554 2.99 2007-03-01 11:24:45.996577
  22396. 24627 209 1 10646 4.99 2007-03-01 14:26:21.996577
  22397. 24628 209 2 10811 6.99 2007-03-01 21:09:41.996577
  22398. 24629 209 1 12025 0.99 2007-03-17 18:27:32.996577
  22399. 24630 209 1 13796 8.99 2007-03-20 11:00:58.996577
  22400. 24631 209 2 14631 6.99 2007-03-21 17:16:15.996577
  22401. 24632 209 1 15254 2.99 2007-03-22 16:41:33.996577
  22402. 24633 209 2 15510 9.99 2007-03-23 01:19:53.996577
  22403. 24634 210 2 10890 4.99 2007-03-01 23:27:12.996577
  22404. 24635 210 2 12410 8.99 2007-03-18 08:13:59.996577
  22405. 24636 210 1 12879 4.99 2007-03-19 01:51:21.996577
  22406. 24637 210 2 12909 2.99 2007-03-19 02:48:51.996577
  22407. 24638 210 2 12986 4.99 2007-03-19 05:38:02.996577
  22408. 24639 210 1 14181 7.99 2007-03-21 01:44:56.996577
  22409. 24640 210 2 14639 6.99 2007-03-21 17:30:05.996577
  22410. 24641 210 2 14876 4.99 2007-03-22 02:07:55.996577
  22411. 24642 210 2 15672 0.99 2007-03-23 07:37:44.996577
  22412. 24643 210 2 15942 8.99 2007-03-23 17:17:06.996577
  22413. 24644 211 1 10445 2.99 2007-03-01 07:30:41.996577
  22414. 24645 211 2 10928 4.99 2007-03-02 01:02:38.996577
  22415. 24646 211 2 11076 8.99 2007-03-02 05:53:13.996577
  22416. 24647 211 2 11963 3.99 2007-03-17 16:04:13.996577
  22417. 24648 211 2 12311 0.99 2007-03-18 04:35:26.996577
  22418. 24649 211 2 12565 4.99 2007-03-18 13:40:43.996577
  22419. 24650 211 2 12570 5.99 2007-03-18 13:51:57.996577
  22420. 24651 211 2 13942 2.99 2007-03-20 15:59:18.996577
  22421. 24652 211 1 13979 2.99 2007-03-20 17:32:15.996577
  22422. 24653 211 2 14782 0.99 2007-03-21 22:45:46.996577
  22423. 24654 211 2 14812 1.99 2007-03-21 23:38:58.996577
  22424. 24655 211 1 15404 7.99 2007-03-22 21:48:10.996577
  22425. 24656 211 2 15538 6.99 2007-03-23 02:36:03.996577
  22426. 24657 211 2 15670 5.99 2007-03-23 07:35:37.996577
  22427. 24658 212 2 10273 4.99 2007-03-01 01:43:13.996577
  22428. 24659 212 2 10567 0.99 2007-03-01 11:44:27.996577
  22429. 24660 212 1 12156 7.99 2007-03-17 22:55:59.996577
  22430. 24661 212 2 12467 0.99 2007-03-18 10:08:35.996577
  22431. 24662 212 2 12562 3.99 2007-03-18 13:28:29.996577
  22432. 24663 212 1 14563 2.99 2007-03-21 14:52:19.996577
  22433. 24664 212 2 14681 5.99 2007-03-21 18:53:39.996577
  22434. 24665 212 1 15872 4.99 2007-03-23 14:55:50.996577
  22435. 24666 212 2 15920 2.99 2007-03-23 16:33:36.996577
  22436. 24667 213 1 10449 2.99 2007-03-01 07:38:25.996577
  22437. 24668 213 2 11778 3.99 2007-03-17 09:00:06.996577
  22438. 24669 213 1 13354 4.99 2007-03-19 19:23:49.996577
  22439. 24670 213 2 13426 0.99 2007-03-19 21:43:26.996577
  22440. 24671 213 1 14744 6.99 2007-03-21 21:13:47.996577
  22441. 24672 214 1 10563 3.99 2007-03-01 11:34:29.996577
  22442. 24673 214 2 10749 4.99 2007-03-01 18:30:27.996577
  22443. 24674 214 2 11450 2.99 2007-03-02 19:14:20.996577
  22444. 24675 214 2 11474 4.99 2007-03-02 20:21:34.996577
  22445. 24676 214 2 12463 4.99 2007-03-18 10:00:00.996577
  22446. 24677 214 2 13138 2.99 2007-03-19 10:58:27.996577
  22447. 24678 214 2 13350 9.99 2007-03-19 19:12:26.996577
  22448. 24679 214 1 13409 2.99 2007-03-19 21:04:52.996577
  22449. 24680 214 1 13565 0.99 2007-03-20 03:07:18.996577
  22450. 24681 214 1 13726 0.99 2007-03-20 08:37:06.996577
  22451. 24682 214 1 13864 4.99 2007-03-20 13:28:21.996577
  22452. 24683 214 2 14347 4.99 2007-03-21 07:10:57.996577
  22453. 24684 214 1 14567 0.99 2007-03-21 14:55:51.996577
  22454. 24685 214 2 15639 2.99 2007-03-23 06:31:51.996577
  22455. 24686 215 1 11729 2.99 2007-03-17 06:43:07.996577
  22456. 24687 215 2 12285 2.99 2007-03-18 03:25:09.996577
  22457. 24688 215 1 12380 1.99 2007-03-18 06:55:54.996577
  22458. 24689 215 2 13085 0.99 2007-03-19 08:56:48.996577
  22459. 24690 215 2 14126 0.99 2007-03-21 00:00:43.996577
  22460. 24691 215 2 14817 4.99 2007-03-21 23:45:42.996577
  22461. 24692 215 1 15583 2.99 2007-03-23 04:16:21.996577
  22462. 24693 215 2 15610 2.99 2007-03-23 05:24:41.996577
  22463. 24694 215 2 15799 2.99 2007-03-23 12:51:49.996577
  22464. 24695 215 1 15843 0.99 2007-03-23 14:05:57.996577
  22465. 24696 216 1 10506 4.99 2007-03-01 09:44:31.996577
  22466. 24697 216 1 11005 0.99 2007-03-02 03:33:49.996577
  22467. 24698 216 2 11621 7.99 2007-03-17 02:42:11.996577
  22468. 24699 216 2 13424 0.99 2007-03-19 21:38:35.996577
  22469. 24700 216 2 14638 2.99 2007-03-21 17:30:02.996577
  22470. 24701 216 2 14726 4.99 2007-03-21 20:37:18.996577
  22471. 24702 216 1 15192 4.99 2007-03-22 14:34:49.996577
  22472. 24703 216 2 15199 2.99 2007-03-22 14:46:15.996577
  22473. 24704 216 2 15934 4.99 2007-03-23 17:09:07.996577
  22474. 24705 217 1 10581 5.99 2007-03-01 12:20:56.996577
  22475. 24706 217 1 10836 6.99 2007-03-01 21:58:24.996577
  22476. 24707 217 1 11347 2.99 2007-03-02 15:46:33.996577
  22477. 24708 217 1 11649 2.99 2007-03-17 03:27:52.996577
  22478. 24709 217 1 11958 4.99 2007-03-17 15:51:46.996577
  22479. 24710 217 2 12210 4.99 2007-03-18 00:55:55.996577
  22480. 24711 217 1 12871 4.99 2007-03-19 01:24:02.996577
  22481. 24712 217 2 15116 0.99 2007-03-22 11:04:06.996577
  22482. 24713 217 2 15277 2.99 2007-03-22 17:31:14.996577
  22483. 24714 218 1 11654 2.99 2007-03-17 03:34:45.996577
  22484. 24715 218 2 12481 2.99 2007-03-18 11:00:00.996577
  22485. 24716 218 1 12974 0.99 2007-03-19 05:19:28.996577
  22486. 24717 218 2 13708 5.99 2007-03-20 08:02:33.996577
  22487. 24718 218 2 13947 5.99 2007-03-20 16:14:32.996577
  22488. 24719 218 2 14848 4.99 2007-03-22 00:42:45.996577
  22489. 24720 218 2 15575 0.99 2007-03-23 03:58:45.996577
  22490. 24721 219 1 11328 2.99 2007-03-02 15:11:04.996577
  22491. 24722 219 2 11791 0.99 2007-03-17 09:29:37.996577
  22492. 24723 219 1 13765 4.99 2007-03-20 10:07:26.996577
  22493. 24724 219 2 14029 0.99 2007-03-20 19:51:37.996577
  22494. 24725 219 1 14588 5.99 2007-03-21 15:54:19.996577
  22495. 24726 219 1 14688 4.99 2007-03-21 19:01:03.996577
  22496. 24727 219 1 15283 4.99 2007-03-22 17:44:30.996577
  22497. 24728 220 2 10778 4.99 2007-03-01 19:40:05.996577
  22498. 24729 220 1 10948 4.99 2007-03-02 01:51:49.996577
  22499. 24730 220 1 11037 0.99 2007-03-02 04:26:38.996577
  22500. 24731 220 1 11153 3.99 2007-03-02 08:22:45.996577
  22501. 24732 220 1 11622 4.99 2007-03-17 02:44:12.996577
  22502. 24733 220 2 11947 2.99 2007-03-17 15:36:39.996577
  22503. 24734 220 1 12407 4.99 2007-03-18 08:07:52.996577
  22504. 24735 220 1 12896 4.99 2007-03-19 02:21:10.996577
  22505. 24736 220 2 13123 2.99 2007-03-19 10:23:39.996577
  22506. 24737 220 1 13281 2.99 2007-03-19 16:36:13.996577
  22507. 24738 220 2 14016 4.99 2007-03-20 19:20:29.996577
  22508. 24739 220 2 15706 4.99 2007-03-23 09:01:18.996577
  22509. 24740 221 2 11680 4.99 2007-03-17 04:40:53.996577
  22510. 24741 221 1 11693 4.99 2007-03-17 05:25:22.996577
  22511. 24742 221 1 11802 2.99 2007-03-17 10:01:17.996577
  22512. 24743 221 1 12324 0.99 2007-03-18 05:06:46.996577
  22513. 24744 221 2 12620 3.99 2007-03-18 15:55:04.996577
  22514. 24745 221 2 13434 2.99 2007-03-19 22:02:52.996577
  22515. 24746 221 2 14322 5.99 2007-03-21 06:34:56.996577
  22516. 24747 221 2 14371 0.99 2007-03-21 08:05:42.996577
  22517. 24748 221 1 14419 7.99 2007-03-21 09:44:12.996577
  22518. 24749 221 1 15125 8.99 2007-03-22 11:21:48.996577
  22519. 24750 222 2 12179 2.99 2007-03-17 23:49:47.996577
  22520. 24751 222 1 13477 2.99 2007-03-19 23:35:26.996577
  22521. 24752 222 2 14350 2.99 2007-03-21 07:27:04.996577
  22522. 24753 223 2 11040 4.99 2007-03-02 04:31:48.996577
  22523. 24754 223 1 12927 5.99 2007-03-19 03:31:12.996577
  22524. 24755 223 1 13576 0.99 2007-03-20 03:48:22.996577
  22525. 24756 223 2 14496 4.99 2007-03-21 12:36:01.996577
  22526. 24757 223 1 15257 7.99 2007-03-22 16:49:30.996577
  22527. 24758 223 2 15546 5.99 2007-03-23 02:49:04.996577
  22528. 24759 223 1 15662 2.99 2007-03-23 07:21:16.996577
  22529. 24760 224 1 11816 0.99 2007-03-17 10:42:42.996577
  22530. 24761 224 1 12492 4.99 2007-03-18 11:17:30.996577
  22531. 24762 224 1 12969 2.99 2007-03-19 05:07:25.996577
  22532. 24763 224 2 13075 4.99 2007-03-19 08:38:36.996577
  22533. 24764 224 2 14099 0.99 2007-03-20 22:59:29.996577
  22534. 24765 224 2 14271 5.99 2007-03-21 04:51:55.996577
  22535. 24766 224 2 14468 5.99 2007-03-21 11:35:36.996577
  22536. 24767 224 2 14880 2.99 2007-03-22 02:13:02.996577
  22537. 24768 224 1 15225 0.99 2007-03-22 15:46:58.996577
  22538. 24769 224 1 15952 1.99 2007-03-23 17:39:55.996577
  22539. 24770 225 1 10793 2.99 2007-03-01 20:16:29.996577
  22540. 24771 225 2 11333 1.99 2007-03-02 15:21:26.996577
  22541. 24772 225 2 11384 0.99 2007-03-02 16:51:27.996577
  22542. 24773 225 2 11395 5.99 2007-03-02 17:16:10.996577
  22543. 24774 225 2 11437 4.99 2007-03-02 18:48:32.996577
  22544. 24775 225 2 14444 5.99 2007-03-21 10:35:51.996577
  22545. 24776 226 1 12172 1.99 2007-03-17 23:35:26.996577
  22546. 24777 226 1 14491 6.99 2007-03-21 12:24:05.996577
  22547. 24778 226 1 14708 4.99 2007-03-21 19:35:49.996577
  22548. 24779 226 1 14712 0.99 2007-03-21 19:51:22.996577
  22549. 24780 226 2 14739 0.99 2007-03-21 21:01:48.996577
  22550. 24781 226 2 14934 4.99 2007-03-22 04:15:41.996577
  22551. 24782 226 2 15472 2.99 2007-03-23 00:07:31.996577
  22552. 24783 226 1 15901 4.99 2007-03-23 15:47:43.996577
  22553. 24784 226 1 15986 2.99 2007-03-23 18:49:03.996577
  22554. 24785 226 1 16033 5.99 2007-03-23 20:34:41.996577
  22555. 24786 227 2 10999 3.99 2007-03-02 03:21:39.996577
  22556. 24787 227 2 11892 0.99 2007-03-17 13:41:47.996577
  22557. 24788 227 2 13379 4.99 2007-03-19 20:02:05.996577
  22558. 24789 227 2 15406 0.99 2007-03-22 21:49:48.996577
  22559. 24790 227 2 15976 4.99 2007-03-23 18:35:34.996577
  22560. 24791 228 1 10585 4.99 2007-03-01 12:29:08.996577
  22561. 24792 228 1 12304 0.99 2007-03-18 04:12:55.996577
  22562. 24793 228 2 12952 2.99 2007-03-19 04:29:18.996577
  22563. 24794 228 2 13458 4.99 2007-03-19 23:03:56.996577
  22564. 24795 229 1 11521 4.99 2007-03-16 22:33:20.996577
  22565. 24796 229 1 12866 2.99 2007-03-19 01:08:13.996577
  22566. 24797 229 2 13306 0.99 2007-03-19 17:25:55.996577
  22567. 24798 229 2 13431 4.99 2007-03-19 21:56:41.996577
  22568. 24799 229 1 13679 5.99 2007-03-20 07:08:00.996577
  22569. 24800 229 1 15740 4.99 2007-03-23 10:36:17.996577
  22570. 24801 229 2 15912 2.99 2007-03-23 16:16:06.996577
  22571. 24802 230 2 10874 2.99 2007-03-01 22:59:26.996577
  22572. 24803 230 2 11148 5.99 2007-03-02 08:15:34.996577
  22573. 24804 230 1 11552 5.99 2007-03-16 23:32:55.996577
  22574. 24805 230 2 11914 2.99 2007-03-17 14:33:08.996577
  22575. 24806 230 1 12079 1.99 2007-03-17 20:32:43.996577
  22576. 24807 230 2 12523 7.99 2007-03-18 12:14:07.996577
  22577. 24808 230 2 12542 0.99 2007-03-18 12:49:37.996577
  22578. 24809 230 2 14017 0.99 2007-03-20 19:23:58.996577
  22579. 24810 230 1 14073 5.99 2007-03-20 21:41:23.996577
  22580. 24811 230 1 14340 2.99 2007-03-21 07:06:47.996577
  22581. 24812 231 2 11113 2.99 2007-03-02 06:54:50.996577
  22582. 24813 231 1 11202 7.99 2007-03-02 10:20:23.996577
  22583. 24814 231 1 11581 5.99 2007-03-17 00:31:28.996577
  22584. 24815 231 1 12214 0.99 2007-03-18 01:02:48.996577
  22585. 24816 231 2 12230 8.99 2007-03-18 01:39:30.996577
  22586. 24817 231 1 12231 3.99 2007-03-18 01:40:10.996577
  22587. 24818 231 2 13983 6.99 2007-03-20 17:36:58.996577
  22588. 24819 231 1 14026 0.99 2007-03-20 19:49:34.996577
  22589. 24820 231 1 14478 4.99 2007-03-21 12:01:54.996577
  22590. 24821 231 2 14806 2.99 2007-03-21 23:21:34.996577
  22591. 24822 231 1 15389 3.99 2007-03-22 21:19:39.996577
  22592. 24823 232 1 10539 6.99 2007-03-01 10:51:26.996577
  22593. 24824 232 2 11861 0.99 2007-03-17 12:22:13.996577
  22594. 24825 232 2 12853 2.99 2007-03-19 00:43:58.996577
  22595. 24826 232 2 13707 2.99 2007-03-20 08:02:24.996577
  22596. 24827 232 2 14527 0.99 2007-03-21 13:36:08.996577
  22597. 24828 232 2 14857 0.99 2007-03-22 01:11:05.996577
  22598. 24829 232 2 15553 2.99 2007-03-23 03:02:05.996577
  22599. 24830 233 1 10582 4.99 2007-03-01 12:22:48.996577
  22600. 24831 233 1 12443 5.99 2007-03-18 09:19:25.996577
  22601. 24832 233 2 14357 2.99 2007-03-21 07:41:35.996577
  22602. 24833 233 2 15285 2.99 2007-03-22 17:45:50.996577
  22603. 24834 233 1 15790 1.99 2007-03-23 12:29:33.996577
  22604. 24835 233 2 15821 0.99 2007-03-23 13:32:24.996577
  22605. 24836 234 2 10541 0.99 2007-03-01 10:53:20.996577
  22606. 24837 234 2 10580 6.99 2007-03-01 12:19:40.996577
  22607. 24838 234 2 10968 7.99 2007-03-02 02:31:39.996577
  22608. 24839 234 1 11050 4.99 2007-03-02 04:45:42.996577
  22609. 24840 234 1 11073 0.99 2007-03-02 05:41:29.996577
  22610. 24841 234 1 11481 3.99 2007-03-02 20:47:07.996577
  22611. 24842 234 1 11882 3.99 2007-03-17 13:02:07.996577
  22612. 24843 234 1 12226 0.99 2007-03-18 01:29:14.996577
  22613. 24844 234 2 12863 4.99 2007-03-19 01:04:25.996577
  22614. 24845 234 1 12921 5.99 2007-03-19 03:16:14.996577
  22615. 24846 234 2 13349 2.99 2007-03-19 19:11:42.996577
  22616. 24847 234 2 15037 5.99 2007-03-22 08:04:59.996577
  22617. 24848 234 1 15129 2.99 2007-03-22 11:32:18.996577
  22618. 24849 235 2 12332 2.99 2007-03-18 05:19:31.996577
  22619. 24850 235 1 12502 4.99 2007-03-18 11:44:57.996577
  22620. 24851 235 2 13070 0.99 2007-03-19 08:24:49.996577
  22621. 24852 235 1 13469 0.99 2007-03-19 23:28:02.996577
  22622. 24853 235 2 14749 3.99 2007-03-21 21:36:59.996577
  22623. 24854 235 1 15034 6.99 2007-03-22 08:01:34.996577
  22624. 24855 236 2 11139 6.99 2007-03-02 07:56:02.996577
  22625. 24856 236 2 11486 3.99 2007-03-02 21:02:32.996577
  22626. 24857 236 2 11507 5.99 2007-03-16 21:55:09.996577
  22627. 24858 236 1 11895 4.99 2007-03-17 13:43:33.996577
  22628. 24859 236 1 12975 2.99 2007-03-19 05:19:45.996577
  22629. 24860 236 1 13364 2.99 2007-03-19 19:37:56.996577
  22630. 24861 236 1 13443 7.99 2007-03-19 22:22:08.996577
  22631. 24862 236 2 14321 4.99 2007-03-21 06:33:38.996577
  22632. 24863 236 1 14364 7.99 2007-03-21 07:53:37.996577
  22633. 24864 236 2 14722 4.99 2007-03-21 20:19:19.996577
  22634. 24865 237 2 11125 4.99 2007-03-02 07:24:01.996577
  22635. 24866 237 2 11479 11.99 2007-03-02 20:46:39.996577
  22636. 24867 237 2 11772 5.99 2007-03-17 08:47:23.996577
  22637. 24868 237 1 12469 0.99 2007-03-18 10:21:33.996577
  22638. 24869 237 2 13914 6.99 2007-03-20 15:07:23.996577
  22639. 24870 237 2 13922 6.99 2007-03-20 15:31:03.996577
  22640. 24871 237 2 13969 6.99 2007-03-20 17:11:06.996577
  22641. 24872 237 2 14453 3.99 2007-03-21 11:02:00.996577
  22642. 24873 237 2 15139 8.99 2007-03-22 12:06:37.996577
  22643. 24874 237 1 15337 0.99 2007-03-22 19:18:17.996577
  22644. 24875 237 2 15931 1.99 2007-03-23 16:56:35.996577
  22645. 24876 238 1 10659 5.99 2007-03-01 15:09:00.996577
  22646. 24877 238 2 11543 5.99 2007-03-16 23:22:54.996577
  22647. 24878 238 2 11632 2.99 2007-03-17 02:57:58.996577
  22648. 24879 238 1 11897 2.99 2007-03-17 13:52:32.996577
  22649. 24880 238 1 14312 4.99 2007-03-21 06:17:00.996577
  22650. 24881 238 1 14343 8.99 2007-03-21 07:08:47.996577
  22651. 24882 238 1 15455 0.99 2007-03-22 23:33:26.996577
  22652. 24883 239 1 10755 0.99 2007-03-01 18:42:40.996577
  22653. 24884 239 2 10923 2.99 2007-03-02 00:43:27.996577
  22654. 24885 239 1 11487 2.99 2007-03-02 21:03:31.996577
  22655. 24886 239 2 11900 4.99 2007-03-17 13:59:10.996577
  22656. 24887 239 1 11968 0.99 2007-03-17 16:16:00.996577
  22657. 24888 239 1 12340 4.99 2007-03-18 05:35:27.996577
  22658. 24889 239 1 12721 1.99 2007-03-18 19:58:38.996577
  22659. 24890 239 1 13175 4.99 2007-03-19 12:23:19.996577
  22660. 24891 239 2 13427 4.99 2007-03-19 21:47:28.996577
  22661. 24892 239 2 13999 3.99 2007-03-20 18:21:58.996577
  22662. 24893 239 2 14062 1.99 2007-03-20 21:03:00.996577
  22663. 24894 240 1 10308 7.99 2007-03-01 02:51:15.996577
  22664. 24895 240 1 11745 3.99 2007-03-17 07:28:27.996577
  22665. 24896 240 2 12283 6.99 2007-03-18 03:22:51.996577
  22666. 24897 240 2 13030 2.99 2007-03-19 06:56:37.996577
  22667. 24898 240 2 13119 4.99 2007-03-19 10:13:25.996577
  22668. 24899 240 1 13663 8.99 2007-03-20 06:40:59.996577
  22669. 24900 240 2 14573 2.99 2007-03-21 15:12:58.996577
  22670. 24901 240 2 15641 0.99 2007-03-23 06:35:15.996577
  22671. 24902 241 2 10447 3.99 2007-03-01 07:33:24.996577
  22672. 24903 241 1 10652 2.99 2007-03-01 14:52:34.996577
  22673. 24904 241 1 11423 1.99 2007-03-02 18:25:39.996577
  22674. 24905 241 2 12418 4.99 2007-03-18 08:28:02.996577
  22675. 24906 241 1 12956 4.99 2007-03-19 04:34:52.996577
  22676. 24907 241 2 13077 2.99 2007-03-19 08:43:45.996577
  22677. 24908 241 2 14269 7.99 2007-03-21 04:50:33.996577
  22678. 24909 241 2 14485 2.99 2007-03-21 12:20:33.996577
  22679. 24910 241 1 14936 0.99 2007-03-22 04:19:52.996577
  22680. 24911 241 2 15137 2.99 2007-03-22 11:48:54.996577
  22681. 24912 241 1 15429 2.99 2007-03-22 22:48:57.996577
  22682. 24913 241 1 15767 4.99 2007-03-23 11:42:41.996577
  22683. 24914 242 2 10367 0.99 2007-03-01 04:40:45.996577
  22684. 24915 242 2 10382 4.99 2007-03-01 05:05:11.996577
  22685. 24916 242 2 10650 9.99 2007-03-01 14:47:11.996577
  22686. 24917 242 2 11020 0.99 2007-03-02 03:58:14.996577
  22687. 24918 242 1 11258 4.99 2007-03-02 12:14:05.996577
  22688. 24919 242 2 11607 0.99 2007-03-17 02:04:32.996577
  22689. 24920 242 1 11931 4.99 2007-03-17 15:03:40.996577
  22690. 24921 242 2 12724 7.99 2007-03-18 20:05:46.996577
  22691. 24922 242 1 12855 4.99 2007-03-19 00:47:24.996577
  22692. 24923 242 1 13271 9.99 2007-03-19 16:10:32.996577
  22693. 24924 242 2 13567 0.99 2007-03-20 03:17:47.996577
  22694. 24925 242 2 13646 5.99 2007-03-20 06:15:34.996577
  22695. 24926 242 1 14515 0.99 2007-03-21 13:20:40.996577
  22696. 24927 242 1 15002 0.99 2007-03-22 06:34:26.996577
  22697. 24928 243 1 12209 2.99 2007-03-18 00:55:46.996577
  22698. 24929 243 1 13291 2.99 2007-03-19 17:00:37.996577
  22699. 24930 243 1 14033 2.99 2007-03-20 19:59:19.996577
  22700. 24931 243 1 14108 0.99 2007-03-20 23:21:11.996577
  22701. 24932 243 1 14272 3.99 2007-03-21 04:53:21.996577
  22702. 24933 243 2 14581 1.99 2007-03-21 15:35:34.996577
  22703. 24934 243 2 14705 2.99 2007-03-21 19:31:21.996577
  22704. 24935 244 2 10684 6.99 2007-03-01 16:15:26.996577
  22705. 24936 244 2 10969 2.99 2007-03-02 02:32:58.996577
  22706. 24937 244 2 11157 0.99 2007-03-02 08:26:41.996577
  22707. 24938 244 1 11267 9.99 2007-03-02 12:37:34.996577
  22708. 24939 244 1 11762 9.99 2007-03-17 08:16:32.996577
  22709. 24940 244 1 13630 4.99 2007-03-20 05:34:22.996577
  22710. 24941 244 2 13774 0.99 2007-03-20 10:22:27.996577
  22711. 24942 244 1 13928 0.99 2007-03-20 15:40:54.996577
  22712. 24943 244 1 14367 0.99 2007-03-21 08:00:10.996577
  22713. 24944 244 2 14657 0.99 2007-03-21 18:08:09.996577
  22714. 24945 244 1 14919 1.99 2007-03-22 03:35:43.996577
  22715. 24946 244 1 14975 3.99 2007-03-22 05:36:16.996577
  22716. 24947 245 2 11061 0.99 2007-03-02 05:18:44.996577
  22717. 24948 245 1 11105 0.99 2007-03-02 06:41:57.996577
  22718. 24949 245 1 11211 0.99 2007-03-02 10:45:14.996577
  22719. 24950 245 1 12303 7.99 2007-03-18 04:11:48.996577
  22720. 24951 245 1 13286 0.99 2007-03-19 16:56:33.996577
  22721. 24952 245 1 15782 6.99 2007-03-23 12:11:52.996577
  22722. 24953 246 2 10683 2.99 2007-03-01 16:01:29.996577
  22723. 24954 246 2 13418 5.99 2007-03-19 21:22:22.996577
  22724. 24955 246 1 13750 6.99 2007-03-20 09:40:08.996577
  22725. 24956 246 1 13987 4.99 2007-03-20 17:47:56.996577
  22726. 24957 246 1 14360 6.99 2007-03-21 07:45:06.996577
  22727. 24958 246 1 15746 2.99 2007-03-23 10:54:45.996577
  22728. 24959 247 1 10279 1.99 2007-03-01 01:55:10.996577
  22729. 24960 247 1 10410 6.99 2007-03-01 06:21:55.996577
  22730. 24961 247 2 11204 2.99 2007-03-02 10:24:57.996577
  22731. 24962 247 2 11306 2.99 2007-03-02 14:13:36.996577
  22732. 24963 247 1 11495 0.99 2007-03-16 21:19:46.996577
  22733. 24964 247 2 12265 4.99 2007-03-18 02:50:27.996577
  22734. 24965 247 1 12482 7.99 2007-03-18 11:06:02.996577
  22735. 24966 247 1 12491 4.99 2007-03-18 11:17:11.996577
  22736. 24967 247 1 12824 4.99 2007-03-18 23:46:26.996577
  22737. 24968 247 1 14041 4.99 2007-03-20 20:13:49.996577
  22738. 24969 247 1 15783 4.99 2007-03-23 12:14:10.996577
  22739. 24970 248 2 10418 4.99 2007-03-01 06:39:33.996577
  22740. 24971 248 1 12241 0.99 2007-03-18 02:01:43.996577
  22741. 24972 248 1 13918 0.99 2007-03-20 15:15:58.996577
  22742. 24973 248 2 14704 0.99 2007-03-21 19:30:48.996577
  22743. 24974 248 2 14885 5.99 2007-03-22 02:26:55.996577
  22744. 24975 249 1 11124 1.99 2007-03-02 07:23:51.996577
  22745. 24976 249 1 11159 4.99 2007-03-02 08:29:21.996577
  22746. 24977 249 2 11668 0.99 2007-03-17 04:15:58.996577
  22747. 24978 249 2 13981 4.99 2007-03-20 17:35:46.996577
  22748. 24979 249 2 14285 0.99 2007-03-21 05:19:14.996577
  22749. 24980 249 1 15160 6.99 2007-03-22 13:02:16.996577
  22750. 24981 250 2 10604 4.99 2007-03-01 13:03:34.996577
  22751. 24982 250 1 12361 0.99 2007-03-18 06:15:57.996577
  22752. 24983 250 1 12810 0.99 2007-03-18 23:12:36.996577
  22753. 24984 250 2 14565 4.99 2007-03-21 14:53:11.996577
  22754. 24985 250 1 14587 5.99 2007-03-21 15:49:21.996577
  22755. 24986 250 2 14814 4.99 2007-03-21 23:40:40.996577
  22756. 24987 250 2 15247 6.99 2007-03-22 16:20:31.996577
  22757. 24988 251 1 10575 7.99 2007-03-01 12:10:07.996577
  22758. 24989 251 1 11733 0.99 2007-03-17 06:59:29.996577
  22759. 24990 251 2 12047 3.99 2007-03-17 19:16:58.996577
  22760. 24991 251 2 12666 4.99 2007-03-18 17:40:07.996577
  22761. 24992 251 2 13121 2.99 2007-03-19 10:20:05.996577
  22762. 24993 251 1 13243 2.99 2007-03-19 15:01:42.996577
  22763. 24994 251 2 13260 6.99 2007-03-19 15:37:48.996577
  22764. 24995 251 1 14292 0.99 2007-03-21 05:34:46.996577
  22765. 24996 251 2 15647 2.99 2007-03-23 06:52:22.996577
  22766. 24997 251 2 15870 4.99 2007-03-23 14:51:34.996577
  22767. 24998 252 2 10314 0.99 2007-03-01 02:59:44.996577
  22768. 24999 252 2 10834 2.99 2007-03-01 21:56:26.996577
  22769. 25000 252 2 11764 0.99 2007-03-17 08:20:20.996577
  22770. 25001 252 1 13385 4.99 2007-03-19 20:08:01.996577
  22771. 25002 252 2 13989 5.99 2007-03-20 17:56:16.996577
  22772. 25003 252 1 14774 4.99 2007-03-21 22:20:58.996577
  22773. 25004 253 2 10404 4.99 2007-03-01 05:59:51.996577
  22774. 25005 253 1 10660 2.99 2007-03-01 15:16:27.996577
  22775. 25006 253 2 10881 6.99 2007-03-01 23:06:40.996577
  22776. 25007 253 1 12572 0.99 2007-03-18 14:01:20.996577
  22777. 25008 253 2 12827 5.99 2007-03-18 23:55:49.996577
  22778. 25009 253 1 13126 5.99 2007-03-19 10:28:54.996577
  22779. 25010 253 2 14086 3.99 2007-03-20 22:16:20.996577
  22780. 25011 253 2 14283 4.99 2007-03-21 05:12:40.996577
  22781. 25012 253 1 14640 7.99 2007-03-21 17:31:45.996577
  22782. 25013 253 2 14655 4.99 2007-03-21 18:05:36.996577
  22783. 25014 253 2 15221 2.99 2007-03-22 15:40:55.996577
  22784. 25015 254 1 10522 4.99 2007-03-01 10:17:17.996577
  22785. 25016 254 1 11190 0.99 2007-03-02 09:50:00.996577
  22786. 25017 254 1 11665 6.99 2007-03-17 04:05:23.996577
  22787. 25018 254 2 12148 0.99 2007-03-17 22:41:41.996577
  22788. 25019 254 1 12206 0.99 2007-03-18 00:50:46.996577
  22789. 25020 254 1 12247 2.99 2007-03-18 02:20:17.996577
  22790. 25021 254 1 12874 0.99 2007-03-19 01:36:23.996577
  22791. 25022 254 2 13001 4.99 2007-03-19 06:05:10.996577
  22792. 25023 254 1 13045 4.99 2007-03-19 07:46:01.996577
  22793. 25024 254 2 13130 2.99 2007-03-19 10:35:08.996577
  22794. 25025 254 2 14497 4.99 2007-03-21 12:38:13.996577
  22795. 25026 254 1 15774 0.99 2007-03-23 11:53:34.996577
  22796. 25027 255 2 11979 4.99 2007-03-17 16:35:39.996577
  22797. 25028 255 2 12176 7.99 2007-03-17 23:38:59.996577
  22798. 25029 255 2 13154 2.99 2007-03-19 11:38:20.996577
  22799. 25030 255 1 13268 0.99 2007-03-19 16:02:16.996577
  22800. 25031 255 2 13683 0.99 2007-03-20 07:23:21.996577
  22801. 25032 255 1 13758 8.99 2007-03-20 09:49:52.996577
  22802. 25033 255 2 14600 3.99 2007-03-21 16:13:47.996577
  22803. 25034 256 2 10759 4.99 2007-03-01 18:51:17.996577
  22804. 25035 256 2 11011 2.99 2007-03-02 03:35:33.996577
  22805. 25036 256 2 11628 8.99 2007-03-17 02:55:44.996577
  22806. 25037 256 2 13457 0.99 2007-03-19 23:01:48.996577
  22807. 25038 256 1 13651 0.99 2007-03-20 06:18:34.996577
  22808. 25039 256 1 14003 6.99 2007-03-20 18:44:32.996577
  22809. 25040 256 2 14036 4.99 2007-03-20 20:03:53.996577
  22810. 25041 256 2 14445 2.99 2007-03-21 10:36:08.996577
  22811. 25042 256 2 14458 3.99 2007-03-21 11:16:19.996577
  22812. 25043 256 2 15609 2.99 2007-03-23 05:24:30.996577
  22813. 25044 256 2 15861 4.99 2007-03-23 14:44:11.996577
  22814. 25045 256 1 15864 7.99 2007-03-23 14:46:38.996577
  22815. 25046 257 1 11230 4.99 2007-03-02 11:27:34.996577
  22816. 25047 257 1 11394 0.99 2007-03-02 17:13:11.996577
  22817. 25048 257 2 11545 6.99 2007-03-16 23:24:32.996577
  22818. 25049 257 2 11860 1.99 2007-03-17 12:20:52.996577
  22819. 25050 257 2 12841 2.99 2007-03-19 00:24:21.996577
  22820. 25051 257 1 12904 5.99 2007-03-19 02:39:16.996577
  22821. 25052 257 2 13203 7.99 2007-03-19 13:29:24.996577
  22822. 25053 257 2 13218 0.99 2007-03-19 14:08:05.996577
  22823. 25054 257 1 13389 2.99 2007-03-19 20:21:17.996577
  22824. 25055 257 2 13846 5.99 2007-03-20 13:00:57.996577
  22825. 25056 257 2 14115 0.99 2007-03-20 23:38:55.996577
  22826. 25057 257 1 15025 0.99 2007-03-22 07:25:50.996577
  22827. 25058 257 1 15967 2.99 2007-03-23 18:18:32.996577
  22828. 25059 257 2 15968 0.99 2007-03-23 18:19:55.996577
  22829. 25060 258 2 10293 1.99 2007-03-01 02:12:52.996577
  22830. 25061 258 2 10315 4.99 2007-03-01 03:03:11.996577
  22831. 25062 258 1 10325 5.99 2007-03-01 03:20:38.996577
  22832. 25063 258 2 10332 6.99 2007-03-01 03:25:58.996577
  22833. 25064 258 1 10393 0.99 2007-03-01 05:21:16.996577
  22834. 25065 258 1 12246 5.99 2007-03-18 02:17:07.996577
  22835. 25066 258 2 12296 3.99 2007-03-18 03:44:54.996577
  22836. 25067 258 1 13491 4.99 2007-03-19 23:59:22.996577
  22837. 25068 258 1 13695 6.99 2007-03-20 07:41:51.996577
  22838. 25069 258 2 13897 2.99 2007-03-20 14:30:54.996577
  22839. 25070 258 2 14901 6.99 2007-03-22 03:00:03.996577
  22840. 25071 259 1 10510 3.99 2007-03-01 09:56:56.996577
  22841. 25072 259 1 10781 2.99 2007-03-01 19:51:07.996577
  22842. 25073 259 1 11184 3.99 2007-03-02 09:29:52.996577
  22843. 25074 259 2 12680 6.99 2007-03-18 18:12:12.996577
  22844. 25075 259 1 13109 4.99 2007-03-19 09:51:46.996577
  22845. 25076 259 2 13112 2.99 2007-03-19 09:55:36.996577
  22846. 25077 259 2 13366 4.99 2007-03-19 19:43:11.996577
  22847. 25078 259 1 13598 5.99 2007-03-20 04:27:43.996577
  22848. 25079 259 2 13649 4.99 2007-03-20 06:17:04.996577
  22849. 25080 259 2 14067 6.99 2007-03-20 21:17:49.996577
  22850. 25081 259 2 14170 4.99 2007-03-21 01:29:05.996577
  22851. 25082 259 2 14966 2.99 2007-03-22 05:14:23.996577
  22852. 25083 259 1 15425 10.99 2007-03-22 22:34:23.996577
  22853. 25084 259 1 15473 2.99 2007-03-23 00:07:36.996577
  22854. 25085 259 1 15689 2.99 2007-03-23 08:21:21.996577
  22855. 25086 260 2 10970 8.99 2007-03-02 02:35:12.996577
  22856. 25087 260 1 12852 0.99 2007-03-19 00:41:06.996577
  22857. 25088 260 2 13440 2.99 2007-03-19 22:11:18.996577
  22858. 25089 260 1 13685 3.99 2007-03-20 07:25:37.996577
  22859. 25090 260 1 13966 2.99 2007-03-20 16:56:54.996577
  22860. 25091 260 2 13978 0.99 2007-03-20 17:31:51.996577
  22861. 25092 260 2 14035 2.99 2007-03-20 20:00:24.996577
  22862. 25093 260 2 14441 2.99 2007-03-21 10:28:04.996577
  22863. 25094 260 1 14579 7.99 2007-03-21 15:23:13.996577
  22864. 25095 260 1 14610 6.99 2007-03-21 16:27:35.996577
  22865. 25096 261 2 10246 1.99 2007-03-01 00:58:16.996577
  22866. 25097 261 1 11834 1.99 2007-03-17 11:29:06.996577
  22867. 25098 261 2 11928 2.99 2007-03-17 14:56:50.996577
  22868. 25099 261 1 12327 6.99 2007-03-18 05:11:48.996577
  22869. 25100 261 2 13245 4.99 2007-03-19 15:12:07.996577
  22870. 25101 261 2 13506 5.99 2007-03-20 00:35:32.996577
  22871. 25102 261 1 13669 2.99 2007-03-20 06:54:58.996577
  22872. 25103 261 1 13849 4.99 2007-03-20 13:11:00.996577
  22873. 25104 261 2 15397 4.99 2007-03-22 21:37:12.996577
  22874. 25105 262 2 10421 0.99 2007-03-01 06:42:36.996577
  22875. 25106 262 2 10770 0.99 2007-03-01 19:14:05.996577
  22876. 25107 262 2 13466 2.99 2007-03-19 23:23:42.996577
  22877. 25108 262 1 13808 5.99 2007-03-20 11:24:09.996577
  22878. 25109 262 1 14180 4.99 2007-03-21 01:44:41.996577
  22879. 25110 262 2 14465 3.99 2007-03-21 11:22:48.996577
  22880. 25111 262 2 14834 6.99 2007-03-22 00:14:24.996577
  22881. 25112 262 2 15270 3.99 2007-03-22 17:17:08.996577
  22882. 25113 262 1 15456 0.99 2007-03-22 23:35:27.996577
  22883. 25114 262 1 15640 4.99 2007-03-23 06:33:06.996577
  22884. 25115 262 2 15771 4.99 2007-03-23 11:47:12.996577
  22885. 25116 262 1 15918 3.99 2007-03-23 16:26:01.996577
  22886. 25117 263 1 10476 6.99 2007-03-01 08:31:46.996577
  22887. 25118 263 1 10775 2.99 2007-03-01 19:28:18.996577
  22888. 25119 263 1 11339 2.99 2007-03-02 15:30:32.996577
  22889. 25120 263 1 11822 0.99 2007-03-17 11:01:05.996577
  22890. 25121 263 2 12057 9.99 2007-03-17 19:33:01.996577
  22891. 25122 263 2 12432 5.99 2007-03-18 09:03:39.996577
  22892. 25123 263 2 12919 6.99 2007-03-19 03:00:41.996577
  22893. 25124 263 1 14335 3.99 2007-03-21 07:01:33.996577
  22894. 25125 263 2 14448 6.99 2007-03-21 10:41:36.996577
  22895. 25126 263 1 15322 4.99 2007-03-22 18:48:56.996577
  22896. 25127 263 2 15922 7.99 2007-03-23 16:35:57.996577
  22897. 25128 264 2 10792 2.99 2007-03-01 20:12:50.996577
  22898. 25129 264 1 11527 3.99 2007-03-16 22:53:32.996577
  22899. 25130 264 2 11533 0.99 2007-03-16 23:03:19.996577
  22900. 25131 264 1 11539 2.99 2007-03-16 23:14:07.996577
  22901. 25132 264 1 12518 4.99 2007-03-18 12:09:58.996577
  22902. 25133 264 2 13590 2.99 2007-03-20 04:17:25.996577
  22903. 25134 264 1 13664 5.99 2007-03-20 06:47:02.996577
  22904. 25135 264 1 15595 4.99 2007-03-23 04:47:38.996577
  22905. 25136 265 2 10592 3.99 2007-03-01 12:41:26.996577
  22906. 25137 265 2 11000 3.99 2007-03-02 03:24:40.996577
  22907. 25138 265 1 12207 1.99 2007-03-18 00:52:33.996577
  22908. 25139 265 2 12346 4.99 2007-03-18 05:46:21.996577
  22909. 25140 265 2 13700 8.99 2007-03-20 07:54:43.996577
  22910. 25141 265 2 14125 4.99 2007-03-21 00:00:42.996577
  22911. 25142 265 1 14547 6.99 2007-03-21 14:20:04.996577
  22912. 25143 265 2 14556 6.99 2007-03-21 14:31:53.996577
  22913. 25144 265 1 14943 2.99 2007-03-22 04:28:25.996577
  22914. 25145 266 2 10747 4.99 2007-03-01 18:28:07.996577
  22915. 25146 266 2 10910 5.99 2007-03-02 00:23:00.996577
  22916. 25147 266 2 11233 5.99 2007-03-02 11:34:37.996577
  22917. 25148 266 1 11321 4.99 2007-03-02 14:43:33.996577
  22918. 25149 266 2 11626 0.99 2007-03-17 02:54:08.996577
  22919. 25150 266 1 11726 0.99 2007-03-17 06:39:36.996577
  22920. 25151 266 1 12255 4.99 2007-03-18 02:35:46.996577
  22921. 25152 266 2 12378 0.99 2007-03-18 06:54:39.996577
  22922. 25153 266 1 12405 6.99 2007-03-18 08:05:56.996577
  22923. 25154 266 1 12715 4.99 2007-03-18 19:38:04.996577
  22924. 25155 266 1 13468 8.99 2007-03-19 23:25:10.996577
  22925. 25156 266 1 13556 6.99 2007-03-20 02:38:52.996577
  22926. 25157 266 1 14080 1.99 2007-03-20 21:58:16.996577
  22927. 25158 266 1 14492 2.99 2007-03-21 12:27:34.996577
  22928. 25159 266 1 14877 0.99 2007-03-22 02:08:22.996577
  22929. 25160 266 1 15181 2.99 2007-03-22 14:14:46.996577
  22930. 25161 266 1 15346 4.99 2007-03-22 19:34:26.996577
  22931. 25162 259 2 4591 1.99 2007-03-23 04:41:42.996577
  22932. 25163 267 2 9807 2.99 2007-04-30 09:42:18.996577
  22933. 25164 267 2 10048 4.99 2007-04-30 17:37:22.996577
  22934. 25165 268 2 3670 4.99 2007-04-06 07:25:09.996577
  22935. 25166 268 2 4626 4.99 2007-04-08 06:46:47.996577
  22936. 25167 268 1 5039 7.99 2007-04-09 01:43:11.996577
  22937. 25168 268 2 5671 2.99 2007-04-10 06:46:48.996577
  22938. 25169 268 2 5793 2.99 2007-04-10 13:01:26.996577
  22939. 25170 268 2 5888 6.99 2007-04-10 18:20:43.996577
  22940. 25171 268 1 6120 3.99 2007-04-11 06:18:19.996577
  22941. 25172 268 2 6489 1.99 2007-04-12 00:51:12.996577
  22942. 25173 268 1 8931 2.99 2007-04-30 00:58:33.996577
  22943. 25174 268 2 9436 7.99 2007-04-30 20:01:27.996577
  22944. 25175 268 2 9531 3.99 2007-04-30 23:40:19.996577
  22945. 25176 268 1 10040 1.99 2007-04-30 17:22:41.996577
  22946. 25177 269 1 4125 9.99 2007-04-07 05:48:55.996577
  22947. 25178 269 2 4804 0.99 2007-04-08 15:25:56.996577
  22948. 25179 269 2 4880 6.99 2007-04-08 18:04:43.996577
  22949. 25180 269 1 6440 2.99 2007-04-11 22:53:30.996577
  22950. 25181 269 1 6626 5.99 2007-04-12 07:44:50.996577
  22951. 25182 269 2 6804 4.99 2007-04-12 15:50:32.996577
  22952. 25183 269 1 7032 4.99 2007-04-27 01:31:35.996577
  22953. 25184 269 1 7537 6.99 2007-04-27 20:04:35.996577
  22954. 25185 269 1 7972 2.99 2007-04-28 12:36:12.996577
  22955. 25186 270 1 3501 3.99 2007-04-05 22:39:54.996577
  22956. 25187 270 1 3987 9.99 2007-04-06 21:56:50.996577
  22957. 25188 270 2 5533 0.99 2007-04-10 00:47:54.996577
  22958. 25189 270 2 6520 4.99 2007-04-12 02:33:42.996577
  22959. 25190 270 1 8355 2.99 2007-04-29 03:26:09.996577
  22960. 25191 270 2 8618 3.99 2007-04-29 12:16:46.996577
  22961. 25192 270 1 10069 3.99 2007-04-30 18:11:44.996577
  22962. 25193 271 1 3640 1.99 2007-04-06 05:40:52.996577
  22963. 25194 271 2 4545 2.99 2007-04-08 02:46:13.996577
  22964. 25195 271 2 5878 1.99 2007-04-10 17:38:23.996577
  22965. 25196 271 1 5922 2.99 2007-04-10 20:05:19.996577
  22966. 25197 271 1 6024 2.99 2007-04-11 00:45:13.996577
  22967. 25198 271 1 7618 3.99 2007-04-27 22:52:40.996577
  22968. 25199 271 1 8592 0.99 2007-04-29 11:02:24.996577
  22969. 25200 271 1 9821 4.99 2007-04-30 10:16:20.996577
  22970. 25201 271 2 10143 7.99 2007-04-30 20:40:09.996577
  22971. 25202 272 2 5047 3.99 2007-04-09 02:12:41.996577
  22972. 25203 272 2 5158 2.99 2007-04-09 07:21:35.996577
  22973. 25204 272 2 7300 7.99 2007-04-27 11:18:43.996577
  22974. 25205 272 2 7658 2.99 2007-04-28 00:37:38.996577
  22975. 25206 272 1 8248 7.99 2007-04-28 23:10:22.996577
  22976. 25207 272 2 9787 10.99 2007-04-30 08:54:45.996577
  22977. 25208 273 2 3556 2.99 2007-04-06 01:14:39.996577
  22978. 25209 273 1 4937 5.99 2007-04-08 20:58:25.996577
  22979. 25210 273 1 5256 7.99 2007-04-09 12:24:11.996577
  22980. 25211 273 2 5435 7.99 2007-04-09 19:56:33.996577
  22981. 25212 273 1 5605 2.99 2007-04-10 03:35:11.996577
  22982. 25213 273 1 6592 8.99 2007-04-12 05:48:01.996577
  22983. 25214 273 1 6635 1.99 2007-04-12 08:16:24.996577
  22984. 25215 273 2 6696 2.99 2007-04-12 11:12:30.996577
  22985. 25216 273 1 6717 5.99 2007-04-12 12:03:28.996577
  22986. 25217 273 1 8449 2.99 2007-04-29 06:10:51.996577
  22987. 25218 273 1 9186 4.99 2007-04-30 10:42:14.996577
  22988. 25219 273 2 9285 5.99 2007-04-30 13:54:34.996577
  22989. 25220 273 2 9391 0.99 2007-04-30 18:17:07.996577
  22990. 25221 273 2 9693 3.99 2007-04-30 05:40:16.996577
  22991. 25222 273 2 9729 0.99 2007-04-30 07:12:09.996577
  22992. 25223 274 2 3532 5.99 2007-04-05 23:53:04.996577
  22993. 25224 274 1 4147 2.99 2007-04-07 07:00:38.996577
  22994. 25225 274 2 4582 2.99 2007-04-08 04:37:35.996577
  22995. 25226 274 2 6389 3.99 2007-04-11 20:46:46.996577
  22996. 25227 274 2 8259 0.99 2007-04-28 23:33:42.996577
  22997. 25228 274 2 8406 5.99 2007-04-29 05:03:11.996577
  22998. 25229 274 2 8517 7.99 2007-04-29 08:29:14.996577
  22999. 25230 274 1 9331 4.99 2007-04-30 16:15:16.996577
  23000. 25231 274 1 9677 4.99 2007-04-30 05:08:11.996577
  23001. 25232 274 2 10059 4.99 2007-04-30 17:49:15.996577
  23002. 25233 275 2 4396 0.99 2007-04-07 19:42:45.996577
  23003. 25234 275 1 4634 0.99 2007-04-08 07:08:28.996577
  23004. 25235 275 2 4912 9.99 2007-04-08 19:54:37.996577
  23005. 25236 275 2 6301 5.99 2007-04-11 16:22:35.996577
  23006. 25237 275 2 6856 0.99 2007-04-12 18:18:42.996577
  23007. 25238 275 1 7553 2.99 2007-04-27 20:40:02.996577
  23008. 25239 275 2 7596 4.99 2007-04-27 22:02:23.996577
  23009. 25240 275 1 8746 2.99 2007-04-29 17:31:41.996577
  23010. 25241 275 2 9258 2.99 2007-04-30 12:59:57.996577
  23011. 25242 276 2 3714 2.99 2007-04-06 09:19:54.996577
  23012. 25243 276 1 4715 0.99 2007-04-08 10:44:03.996577
  23013. 25244 276 2 5186 4.99 2007-04-09 08:47:06.996577
  23014. 25245 276 2 5246 4.99 2007-04-09 11:53:44.996577
  23015. 25246 276 2 7282 5.99 2007-04-27 10:28:45.996577
  23016. 25247 276 2 7842 2.99 2007-04-28 07:38:32.996577
  23017. 25248 276 1 9070 0.99 2007-04-30 06:09:05.996577
  23018. 25249 276 1 9080 1.99 2007-04-30 06:31:05.996577
  23019. 25250 276 1 9102 4.99 2007-04-30 07:16:46.996577
  23020. 25251 276 1 9229 8.99 2007-04-30 12:06:43.996577
  23021. 25252 276 2 10149 5.99 2007-04-30 20:49:12.996577
  23022. 25253 277 2 3740 5.99 2007-04-06 10:24:01.996577
  23023. 25254 277 2 3897 2.99 2007-04-06 17:40:09.996577
  23024. 25255 277 1 4290 4.99 2007-04-07 14:15:36.996577
  23025. 25256 277 2 4987 5.99 2007-04-08 23:14:07.996577
  23026. 25257 277 1 5861 0.99 2007-04-10 16:42:48.996577
  23027. 25258 277 1 5913 2.99 2007-04-10 19:27:21.996577
  23028. 25259 277 2 6455 2.99 2007-04-11 23:30:24.996577
  23029. 25260 277 1 6487 5.99 2007-04-12 00:45:26.996577
  23030. 25261 277 2 7423 4.99 2007-04-27 15:40:13.996577
  23031. 25262 277 2 8410 2.99 2007-04-29 05:10:02.996577
  23032. 25263 277 2 9669 4.99 2007-04-30 05:00:02.996577
  23033. 25264 277 1 9901 0.99 2007-04-30 12:49:25.996577
  23034. 25265 278 1 3776 2.99 2007-04-06 12:00:03.996577
  23035. 25266 278 1 4430 4.99 2007-04-07 21:03:50.996577
  23036. 25267 278 2 4866 8.99 2007-04-08 17:38:25.996577
  23037. 25268 278 2 6869 4.99 2007-04-12 18:40:32.996577
  23038. 25269 278 1 7239 0.99 2007-04-27 08:48:53.996577
  23039. 25270 278 2 7834 0.99 2007-04-28 07:15:09.996577
  23040. 25271 278 2 8222 5.99 2007-04-28 22:20:19.996577
  23041. 25272 278 1 8953 4.99 2007-04-30 01:49:31.996577
  23042. 25273 278 2 9448 2.99 2007-04-30 20:24:39.996577
  23043. 25274 279 1 4476 4.99 2007-04-07 23:02:51.996577
  23044. 25275 279 1 4978 7.99 2007-04-08 22:50:28.996577
  23045. 25276 279 2 5248 2.99 2007-04-09 11:58:10.996577
  23046. 25277 279 1 5361 9.99 2007-04-09 16:43:58.996577
  23047. 25278 279 1 6176 0.99 2007-04-11 09:16:47.996577
  23048. 25279 279 1 7947 2.99 2007-04-28 11:34:16.996577
  23049. 25280 279 2 8559 3.99 2007-04-29 09:54:20.996577
  23050. 25281 279 2 9820 5.99 2007-04-30 10:15:23.996577
  23051. 25282 279 2 10177 2.99 2007-04-30 22:10:59.996577
  23052. 25283 280 1 4616 4.99 2007-04-08 06:16:38.996577
  23053. 25284 280 2 6851 0.99 2007-04-12 18:00:40.996577
  23054. 25285 280 1 7070 4.99 2007-04-27 02:29:34.996577
  23055. 25286 280 2 7901 0.99 2007-04-28 09:40:38.996577
  23056. 25287 280 2 8319 0.99 2007-04-29 02:13:18.996577
  23057. 25288 280 1 8365 0.99 2007-04-29 03:39:26.996577
  23058. 25289 280 1 8565 7.99 2007-04-29 10:03:49.996577
  23059. 25290 280 2 8695 6.99 2007-04-29 15:13:21.996577
  23060. 25291 280 2 8744 3.99 2007-04-29 17:26:50.996577
  23061. 25292 280 1 8912 0.99 2007-04-29 23:59:51.996577
  23062. 25293 280 2 9103 0.99 2007-04-30 07:17:52.996577
  23063. 25294 281 1 4607 0.99 2007-04-08 05:43:40.996577
  23064. 25295 281 2 4864 6.99 2007-04-08 17:34:00.996577
  23065. 25296 281 2 5410 5.99 2007-04-09 18:49:36.996577
  23066. 25297 281 2 6825 0.99 2007-04-12 16:56:38.996577
  23067. 25298 281 2 7034 2.99 2007-04-27 01:32:03.996577
  23068. 25299 281 1 7525 3.99 2007-04-27 19:41:54.996577
  23069. 25300 281 2 8131 0.99 2007-04-28 18:23:47.996577
  23070. 25301 281 2 8180 4.99 2007-04-28 20:33:50.996577
  23071. 25302 282 2 3675 2.99 2007-04-06 07:37:45.996577
  23072. 25303 282 1 3885 2.99 2007-04-06 17:12:09.996577
  23073. 25304 282 1 4359 2.99 2007-04-07 17:58:46.996577
  23074. 25305 282 2 4412 4.99 2007-04-07 20:25:19.996577
  23075. 25306 282 1 5113 0.99 2007-04-09 05:34:44.996577
  23076. 25307 282 2 5319 8.99 2007-04-09 14:46:10.996577
  23077. 25308 282 1 5926 6.99 2007-04-10 20:22:08.996577
  23078. 25309 282 1 7433 2.99 2007-04-27 16:00:46.996577
  23079. 25310 282 2 7534 3.99 2007-04-27 19:54:43.996577
  23080. 25311 282 1 8223 6.99 2007-04-28 22:24:27.996577
  23081. 25312 282 2 8270 4.99 2007-04-28 23:55:48.996577
  23082. 25313 282 2 8468 1.99 2007-04-29 06:54:30.996577
  23083. 25314 282 2 8743 0.99 2007-04-29 17:25:27.996577
  23084. 25315 282 2 8973 1.99 2007-04-30 02:37:39.996577
  23085. 25316 282 2 9658 9.99 2007-04-30 04:29:18.996577
  23086. 25317 283 1 3534 4.99 2007-04-06 00:00:53.996577
  23087. 25318 283 1 3568 6.99 2007-04-06 01:40:23.996577
  23088. 25319 283 2 3590 4.99 2007-04-06 03:03:38.996577
  23089. 25320 283 2 3672 0.99 2007-04-06 07:30:22.996577
  23090. 25321 283 2 4683 2.99 2007-04-08 09:06:54.996577
  23091. 25322 283 2 4876 1.99 2007-04-08 17:56:16.996577
  23092. 25323 283 2 5989 2.99 2007-04-10 23:26:19.996577
  23093. 25324 283 1 6075 0.99 2007-04-11 03:31:29.996577
  23094. 25325 283 1 6300 1.99 2007-04-11 16:18:35.996577
  23095. 25326 283 2 6313 0.99 2007-04-11 16:58:18.996577
  23096. 25327 283 1 6827 4.99 2007-04-12 17:02:11.996577
  23097. 25328 283 1 7504 0.99 2007-04-27 18:52:57.996577
  23098. 25329 283 1 7816 0.99 2007-04-28 06:42:38.996577
  23099. 25330 283 2 9353 4.99 2007-04-30 16:59:03.996577
  23100. 25331 283 2 9478 2.99 2007-04-30 21:41:19.996577
  23101. 25332 283 2 9572 2.99 2007-04-30 01:12:36.996577
  23102. 25333 283 2 9918 2.99 2007-04-30 13:23:48.996577
  23103. 25334 284 1 3572 0.99 2007-04-06 02:01:49.996577
  23104. 25335 284 2 4081 2.99 2007-04-07 03:38:34.996577
  23105. 25336 284 1 4759 7.99 2007-04-08 13:07:48.996577
  23106. 25337 284 2 4931 7.99 2007-04-08 20:44:44.996577
  23107. 25338 284 1 5161 6.99 2007-04-09 07:26:22.996577
  23108. 25339 284 1 6276 5.99 2007-04-11 14:44:16.996577
  23109. 25340 284 2 6982 2.99 2007-04-26 23:22:07.996577
  23110. 25341 284 1 7164 6.99 2007-04-27 06:05:00.996577
  23111. 25342 284 1 7463 4.99 2007-04-27 17:16:58.996577
  23112. 25343 284 2 7716 8.99 2007-04-28 03:01:41.996577
  23113. 25344 284 1 8888 2.99 2007-04-29 23:08:02.996577
  23114. 25345 284 1 9790 0.99 2007-04-30 09:02:34.996577
  23115. 25346 285 2 4007 6.99 2007-04-06 22:54:31.996577
  23116. 25347 285 2 5112 2.99 2007-04-09 05:32:30.996577
  23117. 25348 285 1 5683 9.99 2007-04-10 07:20:39.996577
  23118. 25349 285 1 6010 0.99 2007-04-11 00:20:54.996577
  23119. 25350 285 2 6083 3.99 2007-04-11 03:41:15.996577
  23120. 25351 285 1 6094 4.99 2007-04-11 04:23:08.996577
  23121. 25352 285 2 6333 4.99 2007-04-11 17:48:42.996577
  23122. 25353 285 2 6644 0.99 2007-04-12 09:08:05.996577
  23123. 25354 285 1 7211 6.99 2007-04-27 07:48:26.996577
  23124. 25355 285 1 7452 9.99 2007-04-27 16:55:05.996577
  23125. 25356 285 1 7745 9.99 2007-04-28 04:14:54.996577
  23126. 25357 285 1 8154 4.99 2007-04-28 19:24:44.996577
  23127. 25358 285 2 8466 0.99 2007-04-29 06:53:13.996577
  23128. 25359 286 2 3592 4.99 2007-04-06 03:07:16.996577
  23129. 25360 286 2 3692 3.99 2007-04-06 08:22:38.996577
  23130. 25361 286 2 4242 6.99 2007-04-07 12:07:27.996577
  23131. 25362 286 2 4461 9.99 2007-04-07 22:28:09.996577
  23132. 25363 286 1 4707 4.99 2007-04-08 10:25:54.996577
  23133. 25364 286 1 4894 2.99 2007-04-08 18:49:57.996577
  23134. 25365 286 1 5796 4.99 2007-04-10 13:11:20.996577
  23135. 25366 286 2 6611 2.99 2007-04-12 06:48:49.996577
  23136. 25367 286 1 7254 2.99 2007-04-27 09:17:16.996577
  23137. 25368 286 1 7299 2.99 2007-04-27 11:18:22.996577
  23138. 25369 286 1 7368 0.99 2007-04-27 13:34:31.996577
  23139. 25370 286 1 7422 2.99 2007-04-27 15:39:08.996577
  23140. 25371 286 1 7719 6.99 2007-04-28 03:07:35.996577
  23141. 25372 286 2 8399 0.99 2007-04-29 04:48:44.996577
  23142. 25373 286 2 9280 6.99 2007-04-30 13:44:04.996577
  23143. 25374 286 1 9809 3.99 2007-04-30 09:47:47.996577
  23144. 25375 286 2 10105 5.99 2007-04-30 19:22:46.996577
  23145. 25376 287 2 4877 4.99 2007-04-08 17:59:28.996577
  23146. 25377 287 2 5346 1.99 2007-04-09 15:57:27.996577
  23147. 25378 287 1 5593 3.99 2007-04-10 03:01:39.996577
  23148. 25379 287 2 5761 0.99 2007-04-10 11:14:02.996577
  23149. 25380 287 2 6379 3.99 2007-04-11 20:19:51.996577
  23150. 25381 287 1 6397 2.99 2007-04-11 21:02:28.996577
  23151. 25382 287 2 7402 2.99 2007-04-27 14:48:06.996577
  23152. 25383 287 2 7777 2.99 2007-04-28 05:33:08.996577
  23153. 25384 287 2 8994 6.99 2007-04-30 03:19:58.996577
  23154. 25385 287 2 9716 1.99 2007-04-30 06:52:19.996577
  23155. 25386 287 1 10027 6.99 2007-04-30 17:02:17.996577
  23156. 25387 288 1 3958 3.99 2007-04-06 20:35:59.996577
  23157. 25388 288 1 4692 2.99 2007-04-08 09:35:32.996577
  23158. 25389 288 2 4758 0.99 2007-04-08 13:06:28.996577
  23159. 25390 288 1 6399 2.99 2007-04-11 21:07:31.996577
  23160. 25391 288 2 6518 3.99 2007-04-12 02:28:08.996577
  23161. 25392 288 2 7744 0.99 2007-04-28 04:06:46.996577
  23162. 25393 288 2 7855 2.99 2007-04-28 08:11:28.996577
  23163. 25394 288 2 9429 2.99 2007-04-30 19:47:52.996577
  23164. 25395 288 1 9732 0.99 2007-04-30 07:24:34.996577
  23165. 25396 289 1 3588 2.99 2007-04-06 02:57:39.996577
  23166. 25397 289 2 4622 0.99 2007-04-08 06:31:08.996577
  23167. 25398 289 1 5089 4.99 2007-04-09 04:14:06.996577
  23168. 25399 289 2 5342 8.99 2007-04-09 15:48:29.996577
  23169. 25400 289 2 5584 4.99 2007-04-10 02:43:51.996577
  23170. 25401 289 2 5724 0.99 2007-04-10 09:46:38.996577
  23171. 25402 289 2 6007 3.99 2007-04-11 00:11:32.996577
  23172. 25403 289 2 6536 7.99 2007-04-12 03:12:51.996577
  23173. 25404 289 1 7151 4.99 2007-04-27 05:42:57.996577
  23174. 25405 289 1 7162 4.99 2007-04-27 06:01:11.996577
  23175. 25406 289 2 7325 0.99 2007-04-27 12:15:21.996577
  23176. 25407 289 1 9498 2.99 2007-04-30 22:25:21.996577
  23177. 25408 290 2 4039 4.99 2007-04-07 01:26:25.996577
  23178. 25409 290 1 4073 0.99 2007-04-07 03:17:39.996577
  23179. 25410 290 2 4416 0.99 2007-04-07 20:33:02.996577
  23180. 25411 290 1 5105 2.99 2007-04-09 05:07:25.996577
  23181. 25412 290 2 5214 5.99 2007-04-09 10:11:34.996577
  23182. 25413 290 2 5827 2.99 2007-04-10 14:50:46.996577
  23183. 25414 290 2 6816 4.99 2007-04-12 16:47:16.996577
  23184. 25415 290 1 6952 4.99 2007-04-26 22:19:53.996577
  23185. 25416 290 2 7265 2.99 2007-04-27 09:47:27.996577
  23186. 25417 290 1 7650 1.99 2007-04-28 00:15:46.996577
  23187. 25418 290 1 8639 4.99 2007-04-29 12:58:57.996577
  23188. 25419 290 1 9000 7.99 2007-04-30 03:27:21.996577
  23189. 25420 290 1 9413 0.99 2007-04-30 19:13:05.996577
  23190. 25421 290 2 10096 3.99 2007-04-30 19:07:24.996577
  23191. 25422 290 1 10194 1.99 2007-04-30 23:02:18.996577
  23192. 25423 291 2 3512 4.99 2007-04-05 23:11:32.996577
  23193. 25424 291 2 4862 3.99 2007-04-08 17:31:12.996577
  23194. 25425 291 2 5754 2.99 2007-04-10 11:01:09.996577
  23195. 25426 291 2 6516 4.99 2007-04-12 02:20:20.996577
  23196. 25427 291 1 6796 2.99 2007-04-12 15:12:42.996577
  23197. 25428 291 1 7561 5.99 2007-04-27 20:49:31.996577
  23198. 25429 291 2 7564 0.99 2007-04-27 20:59:43.996577
  23199. 25430 291 1 8690 0.99 2007-04-29 15:07:54.996577
  23200. 25431 291 2 8697 4.99 2007-04-29 15:14:33.996577
  23201. 25432 291 1 9165 5.99 2007-04-30 09:52:54.996577
  23202. 25433 291 2 9201 5.99 2007-04-30 11:10:47.996577
  23203. 25434 291 2 9919 7.99 2007-04-30 13:24:12.996577
  23204. 25435 292 2 3557 0.99 2007-04-06 01:17:05.996577
  23205. 25436 292 1 4200 4.99 2007-04-07 09:43:37.996577
  23206. 25437 292 2 5095 4.99 2007-04-09 04:36:48.996577
  23207. 25438 292 2 5257 0.99 2007-04-09 12:25:09.996577
  23208. 25439 292 1 5940 4.99 2007-04-10 20:59:27.996577
  23209. 25440 292 1 6270 8.99 2007-04-11 14:27:36.996577
  23210. 25441 292 1 6900 6.99 2007-04-12 20:13:51.996577
  23211. 25442 292 2 7199 5.99 2007-04-27 07:21:49.996577
  23212. 25443 292 1 7216 2.99 2007-04-27 07:56:11.996577
  23213. 25444 292 1 7545 2.99 2007-04-27 20:16:29.996577
  23214. 25445 292 1 7766 4.99 2007-04-28 05:10:23.996577
  23215. 25446 292 1 8047 2.99 2007-04-28 15:18:09.996577
  23216. 25447 292 2 8842 4.99 2007-04-29 21:32:06.996577
  23217. 25448 292 1 8990 8.99 2007-04-30 03:10:08.996577
  23218. 25449 292 1 9792 5.99 2007-04-30 09:12:07.996577
  23219. 25450 292 2 9819 1.99 2007-04-30 10:07:39.996577
  23220. 25451 293 1 3906 3.99 2007-04-06 18:04:21.996577
  23221. 25452 293 2 4343 0.99 2007-04-07 17:17:20.996577
  23222. 25453 293 2 4542 4.99 2007-04-08 02:34:56.996577
  23223. 25454 293 2 4944 6.99 2007-04-08 21:12:54.996577
  23224. 25455 293 2 5765 3.99 2007-04-10 11:31:28.996577
  23225. 25456 293 1 6432 9.99 2007-04-11 22:38:07.996577
  23226. 25457 293 2 7607 4.99 2007-04-27 22:34:19.996577
  23227. 25458 293 1 8589 4.99 2007-04-29 10:56:43.996577
  23228. 25459 293 1 8745 2.99 2007-04-29 17:31:31.996577
  23229. 25460 293 2 9123 2.99 2007-04-30 08:07:41.996577
  23230. 25461 294 1 3681 4.99 2007-04-06 07:47:56.996577
  23231. 25462 294 2 4019 4.99 2007-04-06 23:56:10.996577
  23232. 25463 294 1 4786 7.99 2007-04-08 14:41:31.996577
  23233. 25464 294 2 6185 5.99 2007-04-11 09:53:35.996577
  23234. 25465 294 2 7415 6.99 2007-04-27 15:19:25.996577
  23235. 25466 294 1 7765 4.99 2007-04-28 05:08:59.996577
  23236. 25467 294 2 8843 4.99 2007-04-29 21:32:51.996577
  23237. 25468 294 2 9194 2.99 2007-04-30 10:57:11.996577
  23238. 25469 294 1 9522 2.99 2007-04-30 23:23:37.996577
  23239. 25470 294 2 9607 0.99 2007-04-30 02:19:32.996577
  23240. 25471 294 2 10186 0.99 2007-04-30 22:41:02.996577
  23241. 25472 294 2 10220 4.99 2007-04-30 23:41:48.996577
  23242. 25473 295 2 3496 1.99 2007-04-05 22:27:41.996577
  23243. 25474 295 1 3876 9.99 2007-04-06 16:49:39.996577
  23244. 25475 295 1 4164 1.99 2007-04-07 07:48:37.996577
  23245. 25476 295 1 4432 1.99 2007-04-07 21:08:28.996577
  23246. 25477 295 1 5019 2.99 2007-04-09 00:32:58.996577
  23247. 25478 295 2 5053 4.99 2007-04-09 02:28:12.996577
  23248. 25479 295 2 5283 2.99 2007-04-09 13:35:43.996577
  23249. 25480 295 2 5994 4.99 2007-04-10 23:42:36.996577
  23250. 25481 295 1 6252 2.99 2007-04-11 13:34:55.996577
  23251. 25482 295 2 6331 3.99 2007-04-11 17:45:47.996577
  23252. 25483 295 2 8087 0.99 2007-04-28 16:49:42.996577
  23253. 25484 295 1 8108 7.99 2007-04-28 17:36:04.996577
  23254. 25485 295 1 8840 9.99 2007-04-29 21:24:04.996577
  23255. 25486 295 2 8932 2.99 2007-04-30 00:59:52.996577
  23256. 25487 295 1 9425 7.99 2007-04-30 19:39:47.996577
  23257. 25488 295 2 9692 8.99 2007-04-30 05:39:30.996577
  23258. 25489 295 2 9793 4.99 2007-04-30 09:13:37.996577
  23259. 25490 295 2 10160 4.99 2007-04-30 21:36:06.996577
  23260. 25491 295 2 10222 0.99 2007-04-30 23:46:08.996577
  23261. 25492 296 2 3486 7.99 2007-04-05 21:58:21.996577
  23262. 25493 296 1 3810 2.99 2007-04-06 13:47:10.996577
  23263. 25494 296 1 4480 4.99 2007-04-07 23:24:56.996577
  23264. 25495 296 2 5090 0.99 2007-04-09 04:16:48.996577
  23265. 25496 296 1 5589 4.99 2007-04-10 02:51:24.996577
  23266. 25497 296 2 6016 4.99 2007-04-11 00:33:11.996577
  23267. 25498 296 1 6398 5.99 2007-04-11 21:03:15.996577
  23268. 25499 296 1 6967 6.99 2007-04-26 22:44:57.996577
  23269. 25500 296 2 7568 4.99 2007-04-27 21:07:19.996577
  23270. 25501 296 2 8171 0.99 2007-04-28 20:01:23.996577
  23271. 25502 296 1 9249 5.99 2007-04-30 12:43:28.996577
  23272. 25503 296 1 9304 2.99 2007-04-30 15:10:00.996577
  23273. 25504 297 1 3582 0.99 2007-04-06 02:39:01.996577
  23274. 25505 297 2 4621 2.99 2007-04-08 06:30:44.996577
  23275. 25506 297 1 4929 5.99 2007-04-08 20:34:44.996577
  23276. 25507 297 1 5743 8.99 2007-04-10 10:26:04.996577
  23277. 25508 297 2 6036 2.99 2007-04-11 01:30:54.996577
  23278. 25509 297 1 6064 6.99 2007-04-11 02:51:44.996577
  23279. 25510 297 1 6156 4.99 2007-04-11 08:14:14.996577
  23280. 25511 297 1 6984 2.99 2007-04-26 23:24:56.996577
  23281. 25512 297 2 7867 0.99 2007-04-28 08:37:20.996577
  23282. 25513 297 1 7933 0.99 2007-04-28 10:55:53.996577
  23283. 25514 297 2 9014 2.99 2007-04-30 03:47:53.996577
  23284. 25515 297 2 9674 5.99 2007-04-30 05:05:19.996577
  23285. 25516 297 1 10153 0.99 2007-04-30 20:58:36.996577
  23286. 25517 298 2 3479 0.99 2007-04-05 21:37:19.996577
  23287. 25518 298 1 3728 2.99 2007-04-06 09:57:26.996577
  23288. 25519 298 2 4291 2.99 2007-04-07 14:16:13.996577
  23289. 25520 298 1 4936 3.99 2007-04-08 20:53:16.996577
  23290. 25521 298 2 5166 2.99 2007-04-09 07:44:14.996577
  23291. 25522 298 1 5247 2.99 2007-04-09 11:54:54.996577
  23292. 25523 298 2 6802 0.99 2007-04-12 15:42:43.996577
  23293. 25524 298 2 7802 0.99 2007-04-28 06:20:23.996577
  23294. 25525 298 1 7869 7.99 2007-04-28 08:41:41.996577
  23295. 25526 298 2 8737 5.99 2007-04-29 17:00:39.996577
  23296. 25527 299 2 3497 0.99 2007-04-05 22:28:29.996577
  23297. 25528 299 2 4153 5.99 2007-04-07 07:21:34.996577
  23298. 25529 299 1 4350 2.99 2007-04-07 17:31:07.996577
  23299. 25530 299 2 5033 1.99 2007-04-09 01:10:27.996577
  23300. 25531 299 1 5642 2.99 2007-04-10 05:14:34.996577
  23301. 25532 299 2 6732 0.99 2007-04-12 12:27:17.996577
  23302. 25533 299 1 6853 7.99 2007-04-12 18:06:37.996577
  23303. 25534 299 1 7264 4.99 2007-04-27 09:47:24.996577
  23304. 25535 299 1 7746 2.99 2007-04-28 04:17:22.996577
  23305. 25536 299 2 7862 9.99 2007-04-28 08:30:51.996577
  23306. 25537 299 1 9520 2.99 2007-04-30 23:19:20.996577
  23307. 25538 299 1 10201 0.99 2007-04-30 23:10:44.996577
  23308. 25539 300 1 3775 0.99 2007-04-06 11:55:59.996577
  23309. 25540 300 1 4030 0.99 2007-04-07 00:54:08.996577
  23310. 25541 300 2 5562 2.99 2007-04-10 01:46:08.996577
  23311. 25542 300 1 5705 10.99 2007-04-10 08:37:43.996577
  23312. 25543 300 2 6111 4.99 2007-04-11 05:55:23.996577
  23313. 25544 300 1 6822 5.99 2007-04-12 16:52:05.996577
  23314. 25545 300 1 6998 4.99 2007-04-26 23:44:55.996577
  23315. 25546 300 1 7815 4.99 2007-04-28 06:42:37.996577
  23316. 25547 300 1 8117 6.99 2007-04-28 17:48:42.996577
  23317. 25548 300 1 8210 6.99 2007-04-28 21:59:31.996577
  23318. 25549 300 1 8283 3.99 2007-04-29 00:20:48.996577
  23319. 25550 300 1 9078 0.99 2007-04-30 06:29:26.996577
  23320. 25551 300 2 9127 2.99 2007-04-30 08:15:02.996577
  23321. 25552 300 2 9791 0.99 2007-04-30 09:03:48.996577
  23322. 25553 301 2 4316 4.99 2007-04-07 16:12:48.996577
  23323. 25554 301 2 4834 3.99 2007-04-08 16:36:11.996577
  23324. 25555 301 1 5119 6.99 2007-04-09 05:42:44.996577
  23325. 25556 301 2 5511 4.99 2007-04-09 23:28:26.996577
  23326. 25557 301 2 5730 2.99 2007-04-10 09:56:58.996577
  23327. 25558 301 2 5807 2.99 2007-04-10 13:44:56.996577
  23328. 25559 301 2 6833 6.99 2007-04-12 17:22:00.996577
  23329. 25560 301 2 7318 4.99 2007-04-27 11:53:57.996577
  23330. 25561 301 2 7818 4.99 2007-04-28 06:53:26.996577
  23331. 25562 301 2 9435 4.99 2007-04-30 19:59:28.996577
  23332. 25563 302 2 4676 4.99 2007-04-08 08:54:28.996577
  23333. 25564 302 2 5498 0.99 2007-04-09 22:55:47.996577
  23334. 25565 302 2 5682 2.99 2007-04-10 07:20:05.996577
  23335. 25566 302 2 5709 0.99 2007-04-10 09:00:18.996577
  23336. 25567 302 2 5821 4.99 2007-04-10 14:35:42.996577
  23337. 25568 302 2 6623 7.99 2007-04-12 07:34:00.996577
  23338. 25569 302 1 7183 0.99 2007-04-27 06:47:04.996577
  23339. 25570 302 1 7411 6.99 2007-04-27 15:10:56.996577
  23340. 25571 302 1 8363 6.99 2007-04-29 03:38:34.996577
  23341. 25572 302 2 8646 0.99 2007-04-29 13:17:14.996577
  23342. 25573 302 1 8795 2.99 2007-04-29 19:32:40.996577
  23343. 25574 302 1 9146 7.99 2007-04-30 09:00:34.996577
  23344. 25575 302 2 9358 2.99 2007-04-30 17:05:50.996577
  23345. 25576 302 1 9374 8.99 2007-04-30 17:38:29.996577
  23346. 25577 302 2 9581 5.99 2007-04-30 01:31:33.996577
  23347. 25578 303 1 5140 4.99 2007-04-09 06:33:25.996577
  23348. 25579 303 1 6205 4.99 2007-04-11 10:59:50.996577
  23349. 25580 303 2 6219 4.99 2007-04-11 11:47:03.996577
  23350. 25581 303 1 6464 4.99 2007-04-11 23:45:06.996577
  23351. 25582 303 1 7023 4.99 2007-04-27 01:01:10.996577
  23352. 25583 303 2 7502 2.99 2007-04-27 18:47:34.996577
  23353. 25584 303 1 8409 0.99 2007-04-29 05:09:48.996577
  23354. 25585 303 2 8734 6.99 2007-04-29 16:56:41.996577
  23355. 25586 303 2 8764 0.99 2007-04-29 18:07:30.996577
  23356. 25587 303 2 10209 2.99 2007-04-30 23:25:13.996577
  23357. 25588 304 1 4466 6.99 2007-04-07 22:41:19.996577
  23358. 25589 304 2 4812 8.99 2007-04-08 15:35:37.996577
  23359. 25590 304 1 5411 2.99 2007-04-09 18:52:04.996577
  23360. 25591 304 1 5712 4.99 2007-04-10 09:08:58.996577
  23361. 25592 304 2 5749 3.99 2007-04-10 10:49:02.996577
  23362. 25593 304 2 5795 0.99 2007-04-10 13:04:55.996577
  23363. 25594 304 2 6107 0.99 2007-04-11 05:35:35.996577
  23364. 25595 304 1 6737 4.99 2007-04-12 12:45:18.996577
  23365. 25596 304 2 7551 4.99 2007-04-27 20:27:41.996577
  23366. 25597 304 2 8055 4.99 2007-04-28 15:30:58.996577
  23367. 25598 304 1 9930 0.99 2007-04-30 13:46:29.996577
  23368. 25599 304 1 9992 6.99 2007-04-30 15:58:14.996577
  23369. 25600 305 2 4260 4.99 2007-04-07 12:51:11.996577
  23370. 25601 305 1 4638 2.99 2007-04-08 07:25:46.996577
  23371. 25602 305 2 5041 0.99 2007-04-09 01:47:17.996577
  23372. 25603 305 1 5052 2.99 2007-04-09 02:28:09.996577
  23373. 25604 305 2 5582 4.99 2007-04-10 02:36:51.996577
  23374. 25605 305 1 5745 8.99 2007-04-10 10:38:37.996577
  23375. 25606 305 1 6134 7.99 2007-04-11 06:56:45.996577
  23376. 25607 305 2 6619 0.99 2007-04-12 07:19:14.996577
  23377. 25608 305 2 8865 4.99 2007-04-29 22:23:20.996577
  23378. 25609 305 2 9119 4.99 2007-04-30 07:54:22.996577
  23379. 25610 306 1 3814 6.99 2007-04-06 13:52:22.996577
  23380. 25611 306 2 4484 5.99 2007-04-07 23:34:23.996577
  23381. 25612 306 2 4596 1.99 2007-04-08 05:09:51.996577
  23382. 25613 306 2 5581 2.99 2007-04-10 02:34:32.996577
  23383. 25614 306 2 6868 2.99 2007-04-12 18:38:43.996577
  23384. 25615 306 1 6953 4.99 2007-04-26 22:21:13.996577
  23385. 25616 306 1 7225 6.99 2007-04-27 08:15:38.996577
  23386. 25617 306 1 7232 4.99 2007-04-27 08:32:45.996577
  23387. 25618 306 2 7701 2.99 2007-04-28 02:22:54.996577
  23388. 25619 306 2 8620 0.99 2007-04-29 12:19:46.996577
  23389. 25620 306 1 8702 0.99 2007-04-29 15:33:03.996577
  23390. 25621 306 2 9242 4.99 2007-04-30 12:32:24.996577
  23391. 25622 306 2 9395 4.99 2007-04-30 18:35:32.996577
  23392. 25623 306 1 9774 0.99 2007-04-30 08:26:17.996577
  23393. 25624 306 1 10202 6.99 2007-04-30 23:11:44.996577
  23394. 25625 307 1 3962 6.99 2007-04-06 20:42:11.996577
  23395. 25626 307 1 3985 4.99 2007-04-06 21:52:29.996577
  23396. 25627 307 1 4522 2.99 2007-04-08 01:31:38.996577
  23397. 25628 307 1 4868 4.99 2007-04-08 17:42:16.996577
  23398. 25629 307 1 5871 3.99 2007-04-10 17:14:34.996577
  23399. 25630 307 2 6125 6.99 2007-04-11 06:32:01.996577
  23400. 25631 307 1 6256 0.99 2007-04-11 13:47:48.996577
  23401. 25632 307 1 6991 10.99 2007-04-26 23:31:32.996577
  23402. 25633 307 1 7536 2.99 2007-04-27 20:02:35.996577
  23403. 25634 307 1 7760 3.99 2007-04-28 04:58:11.996577
  23404. 25635 307 1 7929 0.99 2007-04-28 10:45:06.996577
  23405. 25636 307 1 8647 6.99 2007-04-29 13:21:25.996577
  23406. 25637 307 1 10135 4.99 2007-04-30 20:25:58.996577
  23407. 25638 308 1 4002 3.99 2007-04-06 22:36:44.996577
  23408. 25639 308 1 4285 8.99 2007-04-07 14:03:01.996577
  23409. 25640 308 1 5946 2.99 2007-04-10 21:25:55.996577
  23410. 25641 308 2 8869 0.99 2007-04-29 22:34:58.996577
  23411. 25642 308 1 9479 2.99 2007-04-30 21:50:35.996577
  23412. 25643 308 1 9746 7.99 2007-04-30 07:45:14.996577
  23413. 25644 309 2 3837 4.99 2007-04-06 14:56:09.996577
  23414. 25645 309 2 3896 7.99 2007-04-06 17:37:41.996577
  23415. 25646 309 2 4172 4.99 2007-04-07 08:17:35.996577
  23416. 25647 309 1 4540 4.99 2007-04-08 02:31:54.996577
  23417. 25648 309 2 5305 8.99 2007-04-09 14:24:02.996577
  23418. 25649 309 1 5980 4.99 2007-04-10 22:46:47.996577
  23419. 25650 309 2 6480 4.99 2007-04-12 00:17:55.996577
  23420. 25651 309 2 7214 5.99 2007-04-27 07:51:59.996577
  23421. 25652 309 2 7722 4.99 2007-04-28 03:13:24.996577
  23422. 25653 309 1 7846 5.99 2007-04-28 07:49:44.996577
  23423. 25654 309 1 8341 4.99 2007-04-29 03:10:27.996577
  23424. 25655 309 1 8501 2.99 2007-04-29 07:41:17.996577
  23425. 25656 309 1 8681 2.99 2007-04-29 14:40:27.996577
  23426. 25657 309 1 8917 2.99 2007-04-30 00:15:28.996577
  23427. 25658 309 2 9945 2.99 2007-04-30 14:16:17.996577
  23428. 25659 309 1 9949 0.99 2007-04-30 14:18:36.996577
  23429. 25660 310 2 3830 10.99 2007-04-06 14:29:42.996577
  23430. 25661 310 1 4072 0.99 2007-04-07 03:16:28.996577
  23431. 25662 310 1 5621 5.99 2007-04-10 04:02:36.996577
  23432. 25663 310 2 5836 0.99 2007-04-10 15:17:28.996577
  23433. 25664 310 1 7648 5.99 2007-04-28 00:03:59.996577
  23434. 25665 310 2 8637 5.99 2007-04-29 12:58:37.996577
  23435. 25666 310 1 8981 7.99 2007-04-30 02:53:56.996577
  23436. 25667 310 1 9536 2.99 2007-04-30 23:47:28.996577
  23437. 25668 311 2 4836 3.99 2007-04-08 16:37:34.996577
  23438. 25669 311 2 5224 5.99 2007-04-09 10:35:53.996577
  23439. 25670 311 2 6419 4.99 2007-04-11 22:05:04.996577
  23440. 25671 311 2 8167 6.99 2007-04-28 19:54:11.996577
  23441. 25672 311 1 8473 2.99 2007-04-29 07:05:19.996577
  23442. 25673 311 1 9503 6.99 2007-04-30 22:31:04.996577
  23443. 25674 311 2 9882 8.99 2007-04-30 12:21:59.996577
  23444. 25675 311 1 10134 4.99 2007-04-30 20:24:36.996577
  23445. 25676 312 1 3766 2.99 2007-04-06 11:33:01.996577
  23446. 25677 312 1 3792 1.99 2007-04-06 12:55:04.996577
  23447. 25678 312 1 4647 3.99 2007-04-08 07:56:02.996577
  23448. 25679 312 1 5031 5.99 2007-04-09 01:05:03.996577
  23449. 25680 312 2 6751 2.99 2007-04-12 13:19:00.996577
  23450. 25681 312 1 6866 2.99 2007-04-12 18:32:10.996577
  23451. 25682 312 1 8137 4.99 2007-04-28 18:35:44.996577
  23452. 25683 312 1 8412 6.99 2007-04-29 05:13:16.996577
  23453. 25684 312 1 8721 4.99 2007-04-29 16:24:47.996577
  23454. 25685 312 1 9016 6.99 2007-04-30 03:54:39.996577
  23455. 25686 312 1 9154 3.99 2007-04-30 09:28:20.996577
  23456. 25687 313 2 4552 2.99 2007-04-08 03:05:01.996577
  23457. 25688 313 1 5255 5.99 2007-04-09 12:19:34.996577
  23458. 25689 313 1 6384 2.99 2007-04-11 20:35:52.996577
  23459. 25690 313 2 7294 0.99 2007-04-27 11:06:40.996577
  23460. 25691 313 2 8381 4.99 2007-04-29 04:00:10.996577
  23461. 25692 313 1 8970 3.99 2007-04-30 02:30:31.996577
  23462. 25693 313 2 9836 2.99 2007-04-30 10:40:26.996577
  23463. 25694 314 1 3517 0.99 2007-04-05 23:21:01.996577
  23464. 25695 314 1 3656 2.99 2007-04-06 06:23:48.996577
  23465. 25696 314 1 3808 0.99 2007-04-06 13:44:01.996577
  23466. 25697 314 2 4386 0.99 2007-04-07 19:23:45.996577
  23467. 25698 314 2 5241 4.99 2007-04-09 11:47:40.996577
  23468. 25699 314 2 5856 0.99 2007-04-10 16:25:58.996577
  23469. 25700 314 1 6192 5.99 2007-04-11 10:13:07.996577
  23470. 25701 314 1 6666 2.99 2007-04-12 10:00:41.996577
  23471. 25702 314 1 6763 3.99 2007-04-12 13:55:00.996577
  23472. 25703 314 2 7004 4.99 2007-04-27 00:04:31.996577
  23473. 25704 314 1 7276 2.99 2007-04-27 10:10:23.996577
  23474. 25705 314 2 8022 6.99 2007-04-28 14:17:22.996577
  23475. 25706 314 1 8073 3.99 2007-04-28 15:57:28.996577
  23476. 25707 314 2 8105 0.99 2007-04-28 17:28:12.996577
  23477. 25708 314 2 8328 6.99 2007-04-29 02:34:50.996577
  23478. 25709 314 2 8644 4.99 2007-04-29 13:14:11.996577
  23479. 25710 314 2 9191 3.99 2007-04-30 10:54:17.996577
  23480. 25711 314 2 9318 6.99 2007-04-30 15:42:56.996577
  23481. 25712 315 1 4021 2.99 2007-04-07 00:15:10.996577
  23482. 25713 315 1 4992 4.99 2007-04-08 23:18:03.996577
  23483. 25714 315 2 5126 6.99 2007-04-09 05:54:01.996577
  23484. 25715 315 1 6661 4.99 2007-04-12 09:49:05.996577
  23485. 25716 315 1 6894 4.99 2007-04-12 19:49:16.996577
  23486. 25717 315 1 8416 5.99 2007-04-29 05:21:20.996577
  23487. 25718 315 2 8677 6.99 2007-04-29 14:29:39.996577
  23488. 25719 315 2 9735 9.99 2007-04-30 07:26:15.996577
  23489. 25720 316 1 4379 2.99 2007-04-07 19:00:56.996577
  23490. 25721 316 2 5102 3.99 2007-04-09 04:54:14.996577
  23491. 25722 316 2 5544 7.99 2007-04-10 01:16:33.996577
  23492. 25723 316 1 5618 5.99 2007-04-10 03:57:24.996577
  23493. 25724 316 2 6988 4.99 2007-04-26 23:28:34.996577
  23494. 25725 316 2 7339 2.99 2007-04-27 12:46:14.996577
  23495. 25726 316 2 7586 2.99 2007-04-27 21:47:55.996577
  23496. 25727 316 1 7592 4.99 2007-04-27 21:54:30.996577
  23497. 25728 316 1 7945 1.99 2007-04-28 11:22:24.996577
  23498. 25729 316 1 8564 4.99 2007-04-29 10:01:26.996577
  23499. 25730 316 1 9508 4.99 2007-04-30 22:51:05.996577
  23500. 25731 316 2 9903 6.99 2007-04-30 13:00:10.996577
  23501. 25732 317 1 4138 0.99 2007-04-07 06:45:39.996577
  23502. 25733 317 1 4177 8.99 2007-04-07 08:41:02.996577
  23503. 25734 317 2 4700 0.99 2007-04-08 10:05:47.996577
  23504. 25735 317 1 5548 0.99 2007-04-10 01:25:11.996577
  23505. 25736 317 2 5942 7.99 2007-04-10 21:15:43.996577
  23506. 25737 317 1 7309 2.99 2007-04-27 11:28:55.996577
  23507. 25738 317 2 8062 2.99 2007-04-28 15:43:32.996577
  23508. 25739 317 1 8327 2.99 2007-04-29 02:29:18.996577
  23509. 25740 317 1 8458 4.99 2007-04-29 06:33:35.996577
  23510. 25741 317 1 9110 2.99 2007-04-30 07:34:08.996577
  23511. 25742 317 2 9513 4.99 2007-04-30 22:56:56.996577
  23512. 25743 317 1 9770 8.99 2007-04-30 08:21:06.996577
  23513. 25744 318 1 3732 4.99 2007-04-06 10:02:03.996577
  23514. 25745 318 2 3974 2.99 2007-04-06 21:27:42.996577
  23515. 25746 318 1 4356 8.99 2007-04-07 17:49:48.996577
  23516. 25747 318 1 7649 0.99 2007-04-28 00:05:52.996577
  23517. 25748 318 2 7853 0.99 2007-04-28 08:05:04.996577
  23518. 25749 318 2 10023 5.99 2007-04-30 16:54:17.996577
  23519. 25750 319 2 4119 3.99 2007-04-07 05:34:29.996577
  23520. 25751 319 2 4295 2.99 2007-04-07 14:37:17.996577
  23521. 25752 319 1 4630 4.99 2007-04-08 07:02:04.996577
  23522. 25753 319 1 5791 8.99 2007-04-10 12:44:48.996577
  23523. 25754 319 1 5882 2.99 2007-04-10 17:49:00.996577
  23524. 25755 319 2 6132 2.99 2007-04-11 06:53:10.996577
  23525. 25756 319 1 6195 4.99 2007-04-11 10:28:58.996577
  23526. 25757 319 1 6255 4.99 2007-04-11 13:39:59.996577
  23527. 25758 319 1 6485 6.99 2007-04-12 00:36:25.996577
  23528. 25759 319 2 7953 2.99 2007-04-28 11:52:58.996577
  23529. 25760 319 2 9017 4.99 2007-04-30 03:54:46.996577
  23530. 25761 319 2 9044 0.99 2007-04-30 05:03:47.996577
  23531. 25762 320 2 3519 0.99 2007-04-05 23:25:55.996577
  23532. 25763 320 2 3756 4.99 2007-04-06 11:09:04.996577
  23533. 25764 320 2 4173 2.99 2007-04-07 08:25:52.996577
  23534. 25765 320 2 7057 4.99 2007-04-27 02:18:29.996577
  23535. 25766 320 2 7064 3.99 2007-04-27 02:21:55.996577
  23536. 25767 320 2 7930 4.99 2007-04-28 10:49:34.996577
  23537. 25768 320 2 8144 4.99 2007-04-28 18:59:21.996577
  23538. 25769 320 2 8235 4.99 2007-04-28 22:51:22.996577
  23539. 25770 320 1 8238 0.99 2007-04-28 22:58:32.996577
  23540. 25771 320 2 8794 4.99 2007-04-29 19:28:04.996577
  23541. 25772 320 1 9509 0.99 2007-04-30 22:51:08.996577
  23542. 25773 321 2 3901 5.99 2007-04-06 17:53:21.996577
  23543. 25774 321 1 3920 4.99 2007-04-06 18:55:06.996577
  23544. 25775 321 2 4281 4.99 2007-04-07 13:46:16.996577
  23545. 25776 321 1 4318 5.99 2007-04-07 16:16:16.996577
  23546. 25777 321 2 5202 2.99 2007-04-09 09:22:14.996577
  23547. 25778 321 2 5867 8.99 2007-04-10 17:07:27.996577
  23548. 25779 321 2 6190 2.99 2007-04-11 10:04:44.996577
  23549. 25780 321 1 6859 5.99 2007-04-12 18:22:23.996577
  23550. 25781 321 2 8685 6.99 2007-04-29 14:45:31.996577
  23551. 25782 321 1 9981 0.99 2007-04-30 15:36:57.996577
  23552. 25783 322 1 3478 0.99 2007-04-05 21:34:10.996577
  23553. 25784 322 2 3627 1.99 2007-04-06 04:47:51.996577
  23554. 25785 322 1 3646 4.99 2007-04-06 05:57:25.996577
  23555. 25786 322 2 6033 2.99 2007-04-11 01:28:00.996577
  23556. 25787 322 1 6511 3.99 2007-04-12 02:07:55.996577
  23557. 25788 322 2 6673 0.99 2007-04-12 10:19:22.996577
  23558. 25789 322 2 6709 4.99 2007-04-12 11:49:07.996577
  23559. 25790 322 1 7091 4.99 2007-04-27 03:12:36.996577
  23560. 25791 322 2 8142 4.99 2007-04-28 18:50:20.996577
  23561. 25792 322 1 9104 7.99 2007-04-30 07:18:21.996577
  23562. 25793 322 1 9115 4.99 2007-04-30 07:42:21.996577
  23563. 25794 322 1 9252 1.99 2007-04-30 12:48:25.996577
  23564. 25795 323 2 3704 6.99 2007-04-06 08:45:11.996577
  23565. 25796 323 2 4572 1.99 2007-04-08 04:05:25.996577
  23566. 25797 323 2 5669 4.99 2007-04-10 06:41:19.996577
  23567. 25798 323 2 5906 1.99 2007-04-10 19:10:07.996577
  23568. 25799 323 1 6840 3.99 2007-04-12 17:31:48.996577
  23569. 25800 323 2 7146 7.99 2007-04-27 05:30:56.996577
  23570. 25801 323 2 7275 2.99 2007-04-27 10:07:34.996577
  23571. 25802 323 2 7695 5.99 2007-04-28 02:09:39.996577
  23572. 25803 323 1 7847 1.99 2007-04-28 07:51:40.996577
  23573. 25804 323 2 7937 4.99 2007-04-28 11:06:48.996577
  23574. 25805 323 2 8474 0.99 2007-04-29 07:05:22.996577
  23575. 25806 323 1 8790 0.99 2007-04-29 19:20:07.996577
  23576. 25807 323 1 9363 2.99 2007-04-30 17:12:49.996577
  23577. 25808 323 2 10002 4.99 2007-04-30 16:16:42.996577
  23578. 25809 323 1 10028 4.99 2007-04-30 17:04:20.996577
  23579. 25810 324 1 3947 4.99 2007-04-06 20:10:47.996577
  23580. 25811 324 1 4197 0.99 2007-04-07 09:36:18.996577
  23581. 25812 324 2 4368 4.99 2007-04-07 18:23:45.996577
  23582. 25813 324 2 5702 2.99 2007-04-10 08:28:27.996577
  23583. 25814 324 1 5778 0.99 2007-04-10 12:10:03.996577
  23584. 25815 324 1 6034 2.99 2007-04-11 01:29:16.996577
  23585. 25816 324 2 6299 4.99 2007-04-11 16:13:34.996577
  23586. 25817 324 2 7240 3.99 2007-04-27 08:49:41.996577
  23587. 25818 324 1 7263 7.99 2007-04-27 09:45:48.996577
  23588. 25819 324 2 7960 6.99 2007-04-28 12:15:34.996577
  23589. 25820 324 1 8698 3.99 2007-04-29 15:20:43.996577
  23590. 25821 324 1 9651 4.99 2007-04-30 04:17:15.996577
  23591. 25822 324 2 10212 2.99 2007-04-30 23:30:01.996577
  23592. 25823 325 1 5470 5.99 2007-04-09 21:39:15.996577
  23593. 25824 325 2 5740 2.99 2007-04-10 10:20:24.996577
  23594. 25825 325 1 5775 4.99 2007-04-10 12:02:52.996577
  23595. 25826 325 2 6135 4.99 2007-04-11 07:00:49.996577
  23596. 25827 325 2 6622 0.99 2007-04-12 07:32:37.996577
  23597. 25828 325 2 7223 9.99 2007-04-27 08:10:53.996577
  23598. 25829 325 2 7687 2.99 2007-04-28 01:48:52.996577
  23599. 25830 325 2 8539 0.99 2007-04-29 09:16:50.996577
  23600. 25831 325 2 10030 2.99 2007-04-30 17:08:02.996577
  23601. 25832 325 1 10070 4.99 2007-04-30 18:14:55.996577
  23602. 25833 326 2 3886 0.99 2007-04-06 17:12:50.996577
  23603. 25834 326 1 4160 7.99 2007-04-07 07:41:43.996577
  23604. 25835 326 1 5147 5.99 2007-04-09 06:46:07.996577
  23605. 25836 326 1 7117 2.99 2007-04-27 04:17:02.996577
  23606. 25837 326 2 7725 2.99 2007-04-28 03:15:40.996577
  23607. 25838 326 2 7931 4.99 2007-04-28 10:52:07.996577
  23608. 25839 326 1 8467 5.99 2007-04-29 06:54:01.996577
  23609. 25840 326 1 8604 4.99 2007-04-29 11:35:39.996577
  23610. 25841 326 2 8739 2.99 2007-04-29 17:02:59.996577
  23611. 25842 326 2 9855 0.99 2007-04-30 11:28:59.996577
  23612. 25843 326 1 10108 0.99 2007-04-30 19:30:40.996577
  23613. 25844 326 2 10173 4.99 2007-04-30 22:05:25.996577
  23614. 25845 327 1 4445 4.99 2007-04-07 21:36:48.996577
  23615. 25846 327 1 4521 0.99 2007-04-08 01:26:22.996577
  23616. 25847 327 1 6618 2.99 2007-04-12 07:10:08.996577
  23617. 25848 327 2 7458 1.99 2007-04-27 17:04:43.996577
  23618. 25849 327 2 7808 1.99 2007-04-28 06:27:22.996577
  23619. 25850 328 1 5450 4.99 2007-04-09 20:41:51.996577
  23620. 25851 328 1 8017 1.99 2007-04-28 14:04:07.996577
  23621. 25852 328 1 8577 6.99 2007-04-29 10:24:56.996577
  23622. 25853 328 2 8780 4.99 2007-04-29 18:48:11.996577
  23623. 25854 328 2 9557 2.99 2007-04-30 00:42:27.996577
  23624. 25855 328 1 9835 2.99 2007-04-30 10:36:01.996577
  23625. 25856 329 2 3976 2.99 2007-04-06 21:28:46.996577
  23626. 25857 329 2 4076 4.99 2007-04-07 03:20:41.996577
  23627. 25858 329 1 4415 4.99 2007-04-07 20:30:09.996577
  23628. 25859 329 1 4465 1.99 2007-04-07 22:36:11.996577
  23629. 25860 329 2 4674 2.99 2007-04-08 08:47:54.996577
  23630. 25861 329 1 7980 4.99 2007-04-28 12:45:15.996577
  23631. 25862 329 2 8172 7.99 2007-04-28 20:03:02.996577
  23632. 25863 329 1 8460 6.99 2007-04-29 06:36:29.996577
  23633. 25864 329 2 8941 0.99 2007-04-30 01:27:47.996577
  23634. 25865 329 2 9024 4.99 2007-04-30 04:13:08.996577
  23635. 25866 329 2 9219 0.99 2007-04-30 11:43:47.996577
  23636. 25867 329 1 9381 0.99 2007-04-30 17:51:30.996577
  23637. 25868 329 1 9827 6.99 2007-04-30 10:25:21.996577
  23638. 25869 330 2 3603 4.99 2007-04-06 03:53:29.996577
  23639. 25870 330 2 3659 2.99 2007-04-06 06:31:40.996577
  23640. 25871 330 2 3760 2.99 2007-04-06 11:17:54.996577
  23641. 25872 330 1 4124 1.99 2007-04-07 05:48:20.996577
  23642. 25873 330 2 5149 2.99 2007-04-09 06:56:49.996577
  23643. 25874 330 1 5750 5.99 2007-04-10 10:49:07.996577
  23644. 25875 330 1 6656 0.99 2007-04-12 09:38:13.996577
  23645. 25876 330 2 6678 2.99 2007-04-12 10:27:02.996577
  23646. 25877 330 1 6719 2.99 2007-04-12 12:09:03.996577
  23647. 25878 330 2 7894 2.99 2007-04-28 09:22:24.996577
  23648. 25879 330 1 8680 4.99 2007-04-29 14:36:29.996577
  23649. 25880 330 2 10100 4.99 2007-04-30 19:15:44.996577
  23650. 25881 331 1 3505 4.99 2007-04-05 22:47:58.996577
  23651. 25882 331 1 3613 4.99 2007-04-06 04:14:19.996577
  23652. 25883 331 2 3871 8.99 2007-04-06 16:27:17.996577
  23653. 25884 331 1 4051 4.99 2007-04-07 02:05:54.996577
  23654. 25885 331 2 4063 5.99 2007-04-07 02:52:23.996577
  23655. 25886 331 1 4326 10.99 2007-04-07 16:29:48.996577
  23656. 25887 331 1 5152 2.99 2007-04-09 07:03:10.996577
  23657. 25888 331 1 5885 1.99 2007-04-10 18:02:16.996577
  23658. 25889 331 1 5947 5.99 2007-04-10 21:36:08.996577
  23659. 25890 331 1 8231 0.99 2007-04-28 22:43:03.996577
  23660. 25891 331 2 8995 4.99 2007-04-30 03:21:37.996577
  23661. 25892 331 1 9401 5.99 2007-04-30 18:46:45.996577
  23662. 25893 331 2 10188 6.99 2007-04-30 22:48:07.996577
  23663. 25894 332 1 4100 6.99 2007-04-07 04:49:18.996577
  23664. 25895 332 1 4302 6.99 2007-04-07 15:16:19.996577
  23665. 25896 332 2 5116 2.99 2007-04-09 05:38:38.996577
  23666. 25897 332 1 5277 1.99 2007-04-09 13:09:08.996577
  23667. 25898 332 2 5381 2.99 2007-04-09 17:39:37.996577
  23668. 25899 332 2 5388 0.99 2007-04-09 17:53:51.996577
  23669. 25900 332 1 5440 0.99 2007-04-09 20:13:43.996577
  23670. 25901 332 2 7049 7.99 2007-04-27 02:01:07.996577
  23671. 25902 332 2 7418 2.99 2007-04-27 15:27:35.996577
  23672. 25903 332 2 7577 8.99 2007-04-27 21:24:33.996577
  23673. 25904 332 2 7578 4.99 2007-04-27 21:26:43.996577
  23674. 25905 332 2 7934 8.99 2007-04-28 11:01:36.996577
  23675. 25906 332 2 8173 6.99 2007-04-28 20:04:10.996577
  23676. 25907 332 1 9324 1.99 2007-04-30 15:57:18.996577
  23677. 25908 332 1 9388 5.99 2007-04-30 17:55:48.996577
  23678. 25909 332 1 9921 0.99 2007-04-30 13:27:47.996577
  23679. 25910 332 1 10026 4.99 2007-04-30 17:00:17.996577
  23680. 25911 333 2 5032 0.99 2007-04-09 01:08:13.996577
  23681. 25912 333 1 5645 1.99 2007-04-10 05:26:47.996577
  23682. 25913 333 2 5892 4.99 2007-04-10 18:31:08.996577
  23683. 25914 333 2 6275 0.99 2007-04-11 14:40:37.996577
  23684. 25915 333 2 6931 4.99 2007-04-26 21:31:23.996577
  23685. 25916 333 2 6958 0.99 2007-04-26 22:31:07.996577
  23686. 25917 333 2 7076 6.99 2007-04-27 02:40:40.996577
  23687. 25918 333 2 7246 0.99 2007-04-27 08:59:07.996577
  23688. 25919 333 1 8719 4.99 2007-04-29 16:14:11.996577
  23689. 25920 333 2 9148 4.99 2007-04-30 09:07:36.996577
  23690. 25921 333 2 9338 10.99 2007-04-30 16:31:39.996577
  23691. 25922 333 2 10035 4.99 2007-04-30 17:15:12.996577
  23692. 25923 333 1 10062 2.99 2007-04-30 17:53:21.996577
  23693. 25924 334 1 3662 4.99 2007-04-06 06:40:14.996577
  23694. 25925 334 1 4603 6.99 2007-04-08 05:25:33.996577
  23695. 25926 334 2 5014 4.99 2007-04-09 00:20:15.996577
  23696. 25927 334 2 5434 0.99 2007-04-09 19:53:46.996577
  23697. 25928 334 2 5818 5.99 2007-04-10 14:19:38.996577
  23698. 25929 334 1 5845 4.99 2007-04-10 15:51:40.996577
  23699. 25930 334 2 6641 5.99 2007-04-12 09:01:40.996577
  23700. 25931 334 2 6749 4.99 2007-04-12 13:11:31.996577
  23701. 25932 334 1 6987 2.99 2007-04-26 23:28:16.996577
  23702. 25933 334 1 8977 7.99 2007-04-30 02:42:33.996577
  23703. 25934 334 1 9633 2.99 2007-04-30 03:32:34.996577
  23704. 25935 334 1 10207 3.99 2007-04-30 23:21:27.996577
  23705. 25936 335 1 3607 0.99 2007-04-06 03:58:35.996577
  23706. 25937 335 2 4016 0.99 2007-04-06 23:34:16.996577
  23707. 25938 335 2 4032 2.99 2007-04-07 01:02:39.996577
  23708. 25939 335 1 4279 4.99 2007-04-07 13:30:19.996577
  23709. 25940 335 1 4387 8.99 2007-04-07 19:25:13.996577
  23710. 25941 335 1 5024 4.99 2007-04-09 00:53:38.996577
  23711. 25942 335 1 5252 0.99 2007-04-09 12:09:10.996577
  23712. 25943 335 2 5728 2.99 2007-04-10 09:54:40.996577
  23713. 25944 335 1 6624 7.99 2007-04-12 07:34:16.996577
  23714. 25945 335 1 6906 0.99 2007-04-12 20:31:28.996577
  23715. 25946 335 2 8634 3.99 2007-04-29 12:48:23.996577
  23716. 25947 335 1 8855 2.99 2007-04-29 22:08:36.996577
  23717. 25948 335 1 9125 5.99 2007-04-30 08:12:05.996577
  23718. 25949 335 2 9361 4.99 2007-04-30 17:12:15.996577
  23719. 25950 335 1 9428 0.99 2007-04-30 19:47:03.996577
  23720. 25951 336 2 4323 5.99 2007-04-07 16:24:19.996577
  23721. 25952 336 1 4595 2.99 2007-04-08 05:08:51.996577
  23722. 25953 336 2 5649 2.99 2007-04-10 05:43:33.996577
  23723. 25954 336 2 5667 0.99 2007-04-10 06:39:29.996577
  23724. 25955 336 2 6263 4.99 2007-04-11 14:02:16.996577
  23725. 25956 336 2 6382 6.99 2007-04-11 20:27:19.996577
  23726. 25957 336 2 8275 4.99 2007-04-29 00:04:13.996577
  23727. 25958 336 1 8407 6.99 2007-04-29 05:05:28.996577
  23728. 25959 336 2 8607 4.99 2007-04-29 11:46:26.996577
  23729. 25960 336 2 8951 8.99 2007-04-30 01:46:50.996577
  23730. 25961 336 2 9306 0.99 2007-04-30 15:15:43.996577
  23731. 25962 336 1 10055 0.99 2007-04-30 17:44:24.996577
  23732. 25963 337 1 3626 5.99 2007-04-06 04:44:01.996577
  23733. 25964 337 1 4091 6.99 2007-04-07 04:22:04.996577
  23734. 25965 337 2 4093 4.99 2007-04-07 04:23:16.996577
  23735. 25966 337 2 4855 4.99 2007-04-08 17:14:16.996577
  23736. 25967 337 1 5050 2.99 2007-04-09 02:23:04.996577
  23737. 25968 337 1 6212 0.99 2007-04-11 11:09:14.996577
  23738. 25969 337 2 6305 7.99 2007-04-11 16:30:51.996577
  23739. 25970 337 1 6620 2.99 2007-04-12 07:19:29.996577
  23740. 25971 337 1 7410 4.99 2007-04-27 15:10:25.996577
  23741. 25972 337 1 8516 4.99 2007-04-29 08:28:29.996577
  23742. 25973 337 2 8919 8.99 2007-04-30 00:25:29.996577
  23743. 25974 337 2 9051 5.99 2007-04-30 05:34:20.996577
  23744. 25975 338 1 3516 0.99 2007-04-05 23:18:56.996577
  23745. 25976 338 2 3772 2.99 2007-04-06 11:51:19.996577
  23746. 25977 338 2 4104 5.99 2007-04-07 04:54:07.996577
  23747. 25978 338 2 4779 4.99 2007-04-08 14:22:07.996577
  23748. 25979 338 1 5309 4.99 2007-04-09 14:28:42.996577
  23749. 25980 338 1 6236 2.99 2007-04-11 12:46:43.996577
  23750. 25981 338 1 6360 4.99 2007-04-11 19:36:06.996577
  23751. 25982 338 2 7584 3.99 2007-04-27 21:44:12.996577
  23752. 25983 338 1 8766 0.99 2007-04-29 18:09:30.996577
  23753. 25984 338 1 9485 7.99 2007-04-30 22:01:06.996577
  23754. 25985 339 2 3536 2.99 2007-04-06 00:04:37.996577
  23755. 25986 339 1 4243 4.99 2007-04-07 12:08:24.996577
  23756. 25987 339 1 4467 0.99 2007-04-07 22:42:18.996577
  23757. 25988 339 2 4967 3.99 2007-04-08 22:16:29.996577
  23758. 25989 339 1 5720 3.99 2007-04-10 09:37:38.996577
  23759. 25990 339 1 6072 6.99 2007-04-11 03:21:06.996577
  23760. 25991 339 1 6425 0.99 2007-04-11 22:23:18.996577
  23761. 25992 339 2 6682 7.99 2007-04-12 10:41:09.996577
  23762. 25993 339 2 7244 2.99 2007-04-27 08:55:59.996577
  23763. 25994 339 2 7973 4.99 2007-04-28 12:38:32.996577
  23764. 25995 339 1 8968 0.99 2007-04-30 02:25:58.996577
  23765. 25996 339 2 9208 5.99 2007-04-30 11:22:29.996577
  23766. 25997 339 1 9663 4.99 2007-04-30 04:39:14.996577
  23767. 25998 340 2 4475 2.99 2007-04-07 22:55:56.996577
  23768. 25999 340 1 4742 0.99 2007-04-08 12:03:49.996577
  23769. 26000 340 2 6381 4.99 2007-04-11 20:27:14.996577
  23770. 26001 340 2 7617 2.99 2007-04-27 22:47:06.996577
  23771. 26002 340 2 8274 4.99 2007-04-29 00:02:58.996577
  23772. 26003 340 1 8541 0.99 2007-04-29 09:23:27.996577
  23773. 26004 340 2 8551 4.99 2007-04-29 09:41:37.996577
  23774. 26005 340 1 8606 4.99 2007-04-29 11:42:50.996577
  23775. 26006 340 1 9834 2.99 2007-04-30 10:34:08.996577
  23776. 26007 341 2 3938 4.99 2007-04-06 19:44:11.996577
  23777. 26008 341 1 4624 2.99 2007-04-08 06:40:43.996577
  23778. 26009 341 2 5487 4.99 2007-04-09 22:30:16.996577
  23779. 26010 341 2 5931 0.99 2007-04-10 20:32:45.996577
  23780. 26011 341 2 7473 2.99 2007-04-27 17:34:06.996577
  23781. 26012 341 1 8661 2.99 2007-04-29 13:56:50.996577
  23782. 26013 341 1 8728 9.99 2007-04-29 16:41:15.996577
  23783. 26014 342 1 5617 0.99 2007-04-10 03:57:16.996577
  23784. 26015 342 2 6060 4.99 2007-04-11 02:34:43.996577
  23785. 26016 342 2 6429 8.99 2007-04-11 22:31:16.996577
  23786. 26017 342 1 6736 2.99 2007-04-12 12:45:16.996577
  23787. 26018 342 2 6787 7.99 2007-04-12 15:01:54.996577
  23788. 26019 342 2 6997 0.99 2007-04-26 23:42:28.996577
  23789. 26020 342 2 7280 2.99 2007-04-27 10:19:18.996577
  23790. 26021 342 1 9164 2.99 2007-04-30 09:52:40.996577
  23791. 26022 342 1 9526 0.99 2007-04-30 23:30:48.996577
  23792. 26023 342 2 9948 5.99 2007-04-30 14:18:07.996577
  23793. 26024 342 1 9955 0.99 2007-04-30 14:29:52.996577
  23794. 26025 342 2 9956 4.99 2007-04-30 14:32:13.996577
  23795. 26026 343 1 3978 5.99 2007-04-06 21:32:59.996577
  23796. 26027 343 1 4472 7.99 2007-04-07 22:50:32.996577
  23797. 26028 343 2 5097 4.99 2007-04-09 04:38:17.996577
  23798. 26029 343 1 5337 3.99 2007-04-09 15:32:16.996577
  23799. 26030 343 1 7069 6.99 2007-04-27 02:28:01.996577
  23800. 26031 343 2 8012 5.99 2007-04-28 13:57:26.996577
  23801. 26032 343 2 8088 9.99 2007-04-28 16:52:15.996577
  23802. 26033 343 2 9458 5.99 2007-04-30 20:53:00.996577
  23803. 26034 343 2 9739 2.99 2007-04-30 07:36:29.996577
  23804. 26035 344 2 4028 5.99 2007-04-07 00:47:40.996577
  23805. 26036 344 2 4347 3.99 2007-04-07 17:27:23.996577
  23806. 26037 344 2 6363 5.99 2007-04-11 19:41:45.996577
  23807. 26038 344 2 7480 4.99 2007-04-27 17:48:19.996577
  23808. 26039 344 2 8561 2.99 2007-04-29 09:57:38.996577
  23809. 26040 344 2 9788 4.99 2007-04-30 08:56:47.996577
  23810. 26041 345 2 4422 2.99 2007-04-07 20:38:11.996577
  23811. 26042 345 1 4425 2.99 2007-04-07 20:51:10.996577
  23812. 26043 345 2 4450 4.99 2007-04-07 21:48:31.996577
  23813. 26044 345 2 5508 3.99 2007-04-09 23:18:27.996577
  23814. 26045 345 1 6307 7.99 2007-04-11 16:32:55.996577
  23815. 26046 345 1 7092 6.99 2007-04-27 03:14:26.996577
  23816. 26047 345 2 8129 2.99 2007-04-28 18:15:28.996577
  23817. 26048 345 2 8694 8.99 2007-04-29 15:13:14.996577
  23818. 26049 345 1 9163 4.99 2007-04-30 09:51:48.996577
  23819. 26050 345 2 9207 2.99 2007-04-30 11:18:23.996577
  23820. 26051 345 2 10215 8.99 2007-04-30 23:32:54.996577
  23821. 26052 346 2 4420 4.99 2007-04-07 20:35:57.996577
  23822. 26053 346 1 4958 8.99 2007-04-08 21:48:18.996577
  23823. 26054 346 1 5428 4.99 2007-04-09 19:41:16.996577
  23824. 26055 346 2 5557 4.99 2007-04-10 01:38:47.996577
  23825. 26056 346 2 6136 4.99 2007-04-11 07:02:35.996577
  23826. 26057 346 2 6323 2.99 2007-04-11 17:30:45.996577
  23827. 26058 346 2 6881 8.99 2007-04-12 19:15:01.996577
  23828. 26059 346 2 7943 6.99 2007-04-28 11:19:21.996577
  23829. 26060 346 2 8272 5.99 2007-04-28 23:58:17.996577
  23830. 26061 346 1 8505 6.99 2007-04-29 07:51:18.996577
  23831. 26062 346 2 8543 0.99 2007-04-29 09:30:23.996577
  23832. 26063 346 2 8732 8.99 2007-04-29 16:53:29.996577
  23833. 26064 346 2 9566 4.99 2007-04-30 01:00:36.996577
  23834. 26065 346 1 9848 4.99 2007-04-30 11:12:59.996577
  23835. 26066 346 1 9927 2.99 2007-04-30 13:40:39.996577
  23836. 26067 347 2 3605 0.99 2007-04-06 03:55:41.996577
  23837. 26068 347 2 3666 4.99 2007-04-06 06:56:09.996577
  23838. 26069 347 1 4232 5.99 2007-04-07 11:17:38.996577
  23839. 26070 347 1 4523 6.99 2007-04-08 01:35:25.996577
  23840. 26071 347 2 5471 0.99 2007-04-09 21:40:18.996577
  23841. 26072 347 1 5819 2.99 2007-04-10 14:24:46.996577
  23842. 26073 347 2 6121 1.99 2007-04-11 06:23:53.996577
  23843. 26074 347 1 7811 0.99 2007-04-28 06:34:27.996577
  23844. 26075 347 2 8148 4.99 2007-04-28 19:08:13.996577
  23845. 26076 347 2 8153 4.99 2007-04-28 19:24:15.996577
  23846. 26077 347 2 8176 4.99 2007-04-28 20:10:34.996577
  23847. 26078 347 2 8378 4.99 2007-04-29 03:57:01.996577
  23848. 26079 347 2 8771 2.99 2007-04-29 18:23:07.996577
  23849. 26080 347 1 9013 4.99 2007-04-30 03:47:46.996577
  23850. 26081 347 1 9582 4.99 2007-04-30 01:33:45.996577
  23851. 26082 347 1 9856 3.99 2007-04-30 11:29:01.996577
  23852. 26083 347 1 9876 2.99 2007-04-30 12:06:17.996577
  23853. 26084 348 2 3494 4.99 2007-04-05 22:15:56.996577
  23854. 26085 348 2 3610 4.99 2007-04-06 04:05:25.996577
  23855. 26086 348 2 4556 9.99 2007-04-08 03:17:07.996577
  23856. 26087 348 2 4633 0.99 2007-04-08 07:08:05.996577
  23857. 26088 348 1 4699 0.99 2007-04-08 10:05:22.996577
  23858. 26089 348 1 4807 8.99 2007-04-08 15:30:14.996577
  23859. 26090 348 1 5345 4.99 2007-04-09 15:56:44.996577
  23860. 26091 348 2 5965 0.99 2007-04-10 22:20:18.996577
  23861. 26092 348 2 6776 2.99 2007-04-12 14:30:35.996577
  23862. 26093 348 2 7380 2.99 2007-04-27 14:05:27.996577
  23863. 26094 348 1 7482 6.99 2007-04-27 17:52:42.996577
  23864. 26095 348 2 7825 4.99 2007-04-28 07:03:23.996577
  23865. 26096 348 1 8500 2.99 2007-04-29 07:40:27.996577
  23866. 26097 348 1 8569 4.99 2007-04-29 10:07:43.996577
  23867. 26098 348 2 8682 4.99 2007-04-29 14:43:52.996577
  23868. 26099 348 2 9482 2.99 2007-04-30 21:57:42.996577
  23869. 26100 349 2 3488 3.99 2007-04-05 22:01:15.996577
  23870. 26101 349 1 4190 2.99 2007-04-07 09:21:05.996577
  23871. 26102 349 2 4494 5.99 2007-04-08 00:11:11.996577
  23872. 26103 349 1 4881 0.99 2007-04-08 18:09:00.996577
  23873. 26104 349 1 5433 4.99 2007-04-09 19:50:26.996577
  23874. 26105 349 1 7002 4.99 2007-04-26 23:54:40.996577
  23875. 26106 349 1 7046 4.99 2007-04-27 01:56:22.996577
  23876. 26107 349 2 7702 2.99 2007-04-28 02:24:31.996577
  23877. 26108 349 2 8297 4.99 2007-04-29 01:14:12.996577
  23878. 26109 349 1 9262 1.99 2007-04-30 13:13:28.996577
  23879. 26110 349 1 9670 5.99 2007-04-30 05:01:59.996577
  23880. 26111 349 1 9731 0.99 2007-04-30 07:23:13.996577
  23881. 26112 350 1 3529 0.99 2007-04-05 23:43:52.996577
  23882. 26113 350 1 3893 5.99 2007-04-06 17:27:57.996577
  23883. 26114 350 1 4767 2.99 2007-04-08 13:47:19.996577
  23884. 26115 350 1 5240 0.99 2007-04-09 11:43:14.996577
  23885. 26116 350 1 5303 2.99 2007-04-09 14:12:35.996577
  23886. 26117 350 1 5786 1.99 2007-04-10 12:35:10.996577
  23887. 26118 350 2 6408 3.99 2007-04-11 21:31:28.996577
  23888. 26119 350 2 7416 4.99 2007-04-27 15:23:51.996577
  23889. 26120 351 1 3836 2.99 2007-04-06 14:54:30.996577
  23890. 26121 351 1 4544 0.99 2007-04-08 02:39:30.996577
  23891. 26122 351 1 4756 1.99 2007-04-08 12:52:26.996577
  23892. 26123 351 2 4761 5.99 2007-04-08 13:20:11.996577
  23893. 26124 351 1 5280 0.99 2007-04-09 13:23:33.996577
  23894. 26125 351 1 5912 3.99 2007-04-10 19:26:48.996577
  23895. 26126 351 2 6180 3.99 2007-04-11 09:35:16.996577
  23896. 26127 351 1 6664 4.99 2007-04-12 09:56:48.996577
  23897. 26128 351 2 6777 5.99 2007-04-12 14:33:06.996577
  23898. 26129 351 2 7630 4.99 2007-04-27 23:29:29.996577
  23899. 26130 351 2 8512 4.99 2007-04-29 08:16:29.996577
  23900. 26131 351 1 9707 7.99 2007-04-30 06:12:44.996577
  23901. 26132 351 2 10119 0.99 2007-04-30 19:49:25.996577
  23902. 26133 352 2 4116 4.99 2007-04-07 05:24:39.996577
  23903. 26134 352 2 6329 5.99 2007-04-11 17:39:04.996577
  23904. 26135 352 1 7033 2.99 2007-04-27 01:31:51.996577
  23905. 26136 352 1 7419 7.99 2007-04-27 15:32:41.996577
  23906. 26137 352 2 7512 6.99 2007-04-27 19:09:06.996577
  23907. 26138 352 1 7579 4.99 2007-04-27 21:35:07.996577
  23908. 26139 352 1 7845 5.99 2007-04-28 07:46:33.996577
  23909. 26140 352 1 7886 2.99 2007-04-28 09:06:21.996577
  23910. 26141 352 1 9463 0.99 2007-04-30 20:59:23.996577
  23911. 26142 353 2 4380 5.99 2007-04-07 19:03:26.996577
  23912. 26143 353 2 6559 1.99 2007-04-12 03:49:01.996577
  23913. 26144 353 1 6610 3.99 2007-04-12 06:48:28.996577
  23914. 26145 353 2 7993 3.99 2007-04-28 13:25:07.996577
  23915. 26146 353 2 10071 2.99 2007-04-30 18:18:01.996577
  23916. 26147 354 2 3821 2.99 2007-04-06 14:04:46.996577
  23917. 26148 354 2 4034 0.99 2007-04-07 01:04:59.996577
  23918. 26149 354 1 4449 5.99 2007-04-07 21:47:24.996577
  23919. 26150 354 2 4745 2.99 2007-04-08 12:13:35.996577
  23920. 26151 354 1 5354 4.99 2007-04-09 16:32:59.996577
  23921. 26152 354 2 5556 4.99 2007-04-10 01:38:43.996577
  23922. 26153 354 1 5873 3.99 2007-04-10 17:30:36.996577
  23923. 26154 354 1 6054 0.99 2007-04-11 02:27:05.996577
  23924. 26155 354 1 6838 4.99 2007-04-12 17:29:56.996577
  23925. 26156 354 1 6926 0.99 2007-04-26 21:21:11.996577
  23926. 26157 354 1 6939 5.99 2007-04-26 21:46:17.996577
  23927. 26158 354 2 7148 0.99 2007-04-27 05:32:35.996577
  23928. 26159 354 2 7235 2.99 2007-04-27 08:37:56.996577
  23929. 26160 354 2 7241 0.99 2007-04-27 08:54:15.996577
  23930. 26161 354 2 8321 4.99 2007-04-29 02:19:20.996577
  23931. 26162 354 2 8477 8.99 2007-04-29 07:09:02.996577
  23932. 26163 354 1 8609 4.99 2007-04-29 11:47:51.996577
  23933. 26164 354 2 8921 0.99 2007-04-30 00:32:28.996577
  23934. 26165 354 1 9130 2.99 2007-04-30 08:23:36.996577
  23935. 26166 355 1 3567 5.99 2007-04-06 01:38:02.996577
  23936. 26167 355 1 3730 6.99 2007-04-06 09:59:50.996577
  23937. 26168 355 1 5210 4.99 2007-04-09 09:52:45.996577
  23938. 26169 355 1 5564 5.99 2007-04-10 01:51:31.996577
  23939. 26170 355 1 6127 0.99 2007-04-11 06:35:25.996577
  23940. 26171 355 2 6262 6.99 2007-04-11 14:01:50.996577
  23941. 26172 355 1 6437 2.99 2007-04-11 22:48:55.996577
  23942. 26173 355 2 6669 4.99 2007-04-12 10:08:21.996577
  23943. 26174 355 2 7108 4.99 2007-04-27 03:56:58.996577
  23944. 26175 355 2 7477 5.99 2007-04-27 17:39:29.996577
  23945. 26176 355 2 8418 1.99 2007-04-29 05:22:47.996577
  23946. 26177 356 2 3829 6.99 2007-04-06 14:28:06.996577
  23947. 26178 356 2 4599 4.99 2007-04-08 05:16:52.996577
  23948. 26179 356 1 5513 0.99 2007-04-09 23:34:07.996577
  23949. 26180 356 1 6593 4.99 2007-04-12 05:49:43.996577
  23950. 26181 356 1 6648 0.99 2007-04-12 09:14:56.996577
  23951. 26182 356 1 7079 2.99 2007-04-27 02:50:24.996577
  23952. 26183 356 1 7758 1.99 2007-04-28 04:52:07.996577
  23953. 26184 356 1 7902 0.99 2007-04-28 09:42:45.996577
  23954. 26185 356 1 8198 3.99 2007-04-28 21:36:31.996577
  23955. 26186 356 1 8975 5.99 2007-04-30 02:38:44.996577
  23956. 26187 356 2 9037 4.99 2007-04-30 04:51:40.996577
  23957. 26188 356 2 9523 3.99 2007-04-30 23:24:35.996577
  23958. 26189 356 2 9883 6.99 2007-04-30 12:22:03.996577
  23959. 26190 357 1 3865 3.99 2007-04-06 16:15:23.996577
  23960. 26191 357 1 4478 0.99 2007-04-07 23:07:34.996577
  23961. 26192 357 1 5896 0.99 2007-04-10 18:44:22.996577
  23962. 26193 357 1 6288 8.99 2007-04-11 15:30:18.996577
  23963. 26194 357 2 6367 4.99 2007-04-11 19:46:55.996577
  23964. 26195 357 2 6405 2.99 2007-04-11 21:21:38.996577
  23965. 26196 357 1 6839 0.99 2007-04-12 17:31:45.996577
  23966. 26197 357 1 7353 2.99 2007-04-27 13:07:05.996577
  23967. 26198 357 1 7366 5.99 2007-04-27 13:29:43.996577
  23968. 26199 357 2 8041 2.99 2007-04-28 15:08:22.996577
  23969. 26200 357 1 8124 2.99 2007-04-28 17:57:24.996577
  23970. 26201 357 2 9233 3.99 2007-04-30 12:12:41.996577
  23971. 26202 358 1 3753 2.99 2007-04-06 11:02:32.996577
  23972. 26203 358 1 3809 2.99 2007-04-06 13:45:03.996577
  23973. 26204 358 2 5023 5.99 2007-04-09 00:51:42.996577
  23974. 26205 358 1 6362 2.99 2007-04-11 19:37:57.996577
  23975. 26206 358 1 8621 2.99 2007-04-29 12:21:08.996577
  23976. 26207 358 2 9062 0.99 2007-04-30 05:51:43.996577
  23977. 26208 358 1 9568 0.99 2007-04-30 01:06:10.996577
  23978. 26209 358 1 10193 2.99 2007-04-30 23:01:53.996577
  23979. 26210 359 2 4830 7.99 2007-04-08 16:24:49.996577
  23980. 26211 359 2 6424 9.99 2007-04-11 22:18:03.996577
  23981. 26212 359 1 6542 2.99 2007-04-12 03:22:15.996577
  23982. 26213 359 2 6741 0.99 2007-04-12 12:52:42.996577
  23983. 26214 359 2 7098 0.99 2007-04-27 03:29:34.996577
  23984. 26215 359 1 7115 0.99 2007-04-27 04:11:24.996577
  23985. 26216 359 1 8174 4.99 2007-04-28 20:05:18.996577
  23986. 26217 359 1 9898 4.99 2007-04-30 12:40:29.996577
  23987. 26218 359 2 10174 5.99 2007-04-30 22:08:34.996577
  23988. 26219 360 1 4056 4.99 2007-04-07 02:26:02.996577
  23989. 26220 360 1 4487 7.99 2007-04-07 23:48:48.996577
  23990. 26221 360 2 5456 2.99 2007-04-09 21:00:11.996577
  23991. 26222 360 1 5834 1.99 2007-04-10 15:12:38.996577
  23992. 26223 360 1 5995 3.99 2007-04-10 23:44:05.996577
  23993. 26224 360 1 6442 0.99 2007-04-11 22:58:11.996577
  23994. 26225 360 2 6770 5.99 2007-04-12 14:18:06.996577
  23995. 26226 360 1 7251 2.99 2007-04-27 09:13:21.996577
  23996. 26227 360 2 7588 9.99 2007-04-27 21:51:57.996577
  23997. 26228 360 1 7654 4.99 2007-04-28 00:28:40.996577
  23998. 26229 360 2 7908 3.99 2007-04-28 10:01:23.996577
  23999. 26230 360 1 8220 2.99 2007-04-28 22:15:07.996577
  24000. 26231 360 2 8361 2.99 2007-04-29 03:37:23.996577
  24001. 26232 360 1 9283 4.99 2007-04-30 13:53:45.996577
  24002. 26233 360 2 9352 0.99 2007-04-30 16:57:52.996577
  24003. 26234 360 1 9623 2.99 2007-04-30 02:58:28.996577
  24004. 26235 360 2 9659 3.99 2007-04-30 04:30:40.996577
  24005. 26236 361 2 5154 2.99 2007-04-09 07:14:44.996577
  24006. 26237 361 1 6152 0.99 2007-04-11 07:54:18.996577
  24007. 26238 361 2 6829 4.99 2007-04-12 17:07:25.996577
  24008. 26239 361 2 6911 0.99 2007-04-12 20:43:00.996577
  24009. 26240 361 1 6914 1.99 2007-04-12 20:55:22.996577
  24010. 26241 361 1 7538 2.99 2007-04-27 20:06:30.996577
  24011. 26242 361 2 7712 2.99 2007-04-28 02:58:19.996577
  24012. 26243 361 2 8189 4.99 2007-04-28 21:04:52.996577
  24013. 26244 361 1 10145 1.99 2007-04-30 20:43:39.996577
  24014. 26245 361 1 10151 4.99 2007-04-30 20:51:03.996577
  24015. 26246 362 2 4646 8.99 2007-04-08 07:51:52.996577
  24016. 26247 362 1 5227 4.99 2007-04-09 10:45:05.996577
  24017. 26248 362 2 5563 1.99 2007-04-10 01:49:28.996577
  24018. 26249 362 2 5690 5.99 2007-04-10 07:55:15.996577
  24019. 26250 362 1 6204 4.99 2007-04-11 10:57:48.996577
  24020. 26251 362 2 6576 4.99 2007-04-12 04:42:07.996577
  24021. 26252 362 1 6981 4.99 2007-04-26 23:20:04.996577
  24022. 26253 362 1 7172 1.99 2007-04-27 06:27:42.996577
  24023. 26254 362 1 7485 2.99 2007-04-27 17:57:35.996577
  24024. 26255 362 1 8081 2.99 2007-04-28 16:35:12.996577
  24025. 26256 362 2 8325 2.99 2007-04-29 02:25:53.996577
  24026. 26257 362 2 8364 4.99 2007-04-29 03:38:57.996577
  24027. 26258 362 1 8662 0.99 2007-04-29 13:59:59.996577
  24028. 26259 362 1 8714 2.99 2007-04-29 16:00:06.996577
  24029. 26260 362 1 9784 4.99 2007-04-30 08:49:58.996577
  24030. 26261 363 1 3726 3.99 2007-04-06 09:44:15.996577
  24031. 26262 363 2 5687 3.99 2007-04-10 07:35:45.996577
  24032. 26263 363 1 5758 6.99 2007-04-10 11:11:09.996577
  24033. 26264 363 2 6140 4.99 2007-04-11 07:09:13.996577
  24034. 26265 363 2 6705 4.99 2007-04-12 11:21:37.996577
  24035. 26266 363 2 6821 2.99 2007-04-12 16:50:36.996577
  24036. 26267 363 2 6878 4.99 2007-04-12 19:05:39.996577
  24037. 26268 363 1 7256 2.99 2007-04-27 09:26:58.996577
  24038. 26269 363 2 7708 4.99 2007-04-28 02:47:41.996577
  24039. 26270 363 2 8121 2.99 2007-04-28 17:54:11.996577
  24040. 26271 363 2 8522 3.99 2007-04-29 08:44:45.996577
  24041. 26272 363 2 8804 2.99 2007-04-29 19:56:45.996577
  24042. 26273 363 2 8841 4.99 2007-04-29 21:24:33.996577
  24043. 26274 363 1 9968 4.99 2007-04-30 15:00:42.996577
  24044. 26275 363 1 9977 8.99 2007-04-30 15:27:08.996577
  24045. 26276 364 1 3678 4.99 2007-04-06 07:43:41.996577
  24046. 26277 364 2 3961 4.99 2007-04-06 20:40:09.996577
  24047. 26278 364 1 4047 0.99 2007-04-07 01:57:15.996577
  24048. 26279 364 2 4689 4.99 2007-04-08 09:32:13.996577
  24049. 26280 364 1 5872 10.99 2007-04-10 17:22:31.996577
  24050. 26281 364 1 7272 2.99 2007-04-27 09:58:46.996577
  24051. 26282 364 2 9266 4.99 2007-04-30 13:27:27.996577
  24052. 26283 364 1 10092 0.99 2007-04-30 18:56:35.996577
  24053. 26284 365 1 4583 1.99 2007-04-08 04:38:10.996577
  24054. 26285 365 1 6604 4.99 2007-04-12 06:26:11.996577
  24055. 26286 365 1 7488 7.99 2007-04-27 18:04:41.996577
  24056. 26287 365 2 7634 4.99 2007-04-27 23:35:27.996577
  24057. 26288 365 1 8168 4.99 2007-04-28 19:56:58.996577
  24058. 26289 365 2 8782 4.99 2007-04-29 18:58:00.996577
  24059. 26290 365 1 8856 3.99 2007-04-29 22:10:26.996577
  24060. 26291 365 1 9122 2.99 2007-04-30 08:05:18.996577
  24061. 26292 365 2 9184 4.99 2007-04-30 10:38:45.996577
  24062. 26293 365 2 9540 2.99 2007-04-30 00:08:32.996577
  24063. 26294 366 2 3632 4.99 2007-04-06 05:06:47.996577
  24064. 26295 366 1 3834 2.99 2007-04-06 14:48:22.996577
  24065. 26296 366 2 4276 2.99 2007-04-07 13:19:25.996577
  24066. 26297 366 1 4569 5.99 2007-04-08 03:59:17.996577
  24067. 26298 366 2 5364 0.99 2007-04-09 16:53:14.996577
  24068. 26299 366 1 6112 6.99 2007-04-11 05:56:31.996577
  24069. 26300 366 1 6366 4.99 2007-04-11 19:46:42.996577
  24070. 26301 366 2 6533 6.99 2007-04-12 03:08:04.996577
  24071. 26302 366 2 6738 5.99 2007-04-12 12:46:21.996577
  24072. 26303 366 1 6842 0.99 2007-04-12 17:36:21.996577
  24073. 26304 366 2 6971 4.99 2007-04-26 22:54:43.996577
  24074. 26305 366 1 7344 1.99 2007-04-27 12:57:54.996577
  24075. 26306 366 1 7562 2.99 2007-04-27 20:53:41.996577
  24076. 26307 366 2 7602 4.99 2007-04-27 22:17:01.996577
  24077. 26308 366 1 7805 6.99 2007-04-28 06:25:07.996577
  24078. 26309 366 2 8169 4.99 2007-04-28 19:58:12.996577
  24079. 26310 366 2 8260 1.99 2007-04-28 23:39:26.996577
  24080. 26311 366 2 8928 2.99 2007-04-30 00:46:45.996577
  24081. 26312 366 1 9316 6.99 2007-04-30 15:40:24.996577
  24082. 26313 366 1 10198 2.99 2007-04-30 23:04:41.996577
  24083. 26314 367 1 4251 8.99 2007-04-07 12:40:21.996577
  24084. 26315 367 2 5490 4.99 2007-04-09 22:37:37.996577
  24085. 26316 367 2 5538 4.99 2007-04-10 01:08:06.996577
  24086. 26317 367 2 5839 2.99 2007-04-10 15:36:56.996577
  24087. 26318 367 2 6228 2.99 2007-04-11 12:27:02.996577
  24088. 26319 367 1 6716 0.99 2007-04-12 12:03:24.996577
  24089. 26320 367 2 6835 5.99 2007-04-12 17:26:29.996577
  24090. 26321 367 2 8490 0.99 2007-04-29 07:27:51.996577
  24091. 26322 367 1 9030 3.99 2007-04-30 04:34:04.996577
  24092. 26323 367 1 9430 4.99 2007-04-30 19:48:39.996577
  24093. 26324 367 1 9912 4.99 2007-04-30 13:17:30.996577
  24094. 26325 368 2 3608 4.99 2007-04-06 04:04:05.996577
  24095. 26326 368 2 4066 0.99 2007-04-07 03:02:35.996577
  24096. 26327 368 1 4584 0.99 2007-04-08 04:39:28.996577
  24097. 26328 368 2 4913 8.99 2007-04-08 19:56:14.996577
  24098. 26329 368 1 6124 4.99 2007-04-11 06:30:58.996577
  24099. 26330 368 1 6154 5.99 2007-04-11 08:00:45.996577
  24100. 26331 368 1 6681 2.99 2007-04-12 10:32:38.996577
  24101. 26332 368 2 7571 4.99 2007-04-27 21:12:08.996577
  24102. 26333 368 1 8045 0.99 2007-04-28 15:18:04.996577
  24103. 26334 368 2 8226 2.99 2007-04-28 22:29:30.996577
  24104. 26335 368 1 9400 5.99 2007-04-30 18:44:24.996577
  24105. 26336 368 1 9833 6.99 2007-04-30 10:33:27.996577
  24106. 26337 369 1 3490 6.99 2007-04-05 22:05:39.996577
  24107. 26338 369 2 3903 2.99 2007-04-06 17:55:58.996577
  24108. 26339 369 2 4859 4.99 2007-04-08 17:22:30.996577
  24109. 26340 369 1 5043 1.99 2007-04-09 01:53:44.996577
  24110. 26341 369 2 5496 7.99 2007-04-09 22:48:49.996577
  24111. 26342 369 2 5561 2.99 2007-04-10 01:43:50.996577
  24112. 26343 369 1 8236 2.99 2007-04-28 22:55:30.996577
  24113. 26344 369 2 8826 2.99 2007-04-29 20:58:42.996577
  24114. 26345 369 2 9032 4.99 2007-04-30 04:35:20.996577
  24115. 26346 369 1 9089 0.99 2007-04-30 06:52:05.996577
  24116. 26347 369 2 9543 0.99 2007-04-30 00:12:00.996577
  24117. 26348 369 1 9973 4.99 2007-04-30 15:17:57.996577
  24118. 26349 370 2 4400 7.99 2007-04-07 19:50:52.996577
  24119. 26350 370 2 6714 0.99 2007-04-12 11:57:32.996577
  24120. 26351 370 1 6968 0.99 2007-04-26 22:45:11.996577
  24121. 26352 370 2 7152 7.99 2007-04-27 05:43:27.996577
  24122. 26353 370 1 7226 6.99 2007-04-27 08:16:19.996577
  24123. 26354 370 2 7797 0.99 2007-04-28 06:09:33.996577
  24124. 26355 370 2 8258 0.99 2007-04-28 23:32:08.996577
  24125. 26356 370 2 10095 0.99 2007-04-30 19:07:01.996577
  24126. 26357 371 2 4115 8.99 2007-04-07 05:20:49.996577
  24127. 26358 371 1 4612 1.99 2007-04-08 06:09:10.996577
  24128. 26359 371 1 5171 4.99 2007-04-09 07:55:21.996577
  24129. 26360 371 2 5614 0.99 2007-04-10 03:45:22.996577
  24130. 26361 371 1 6000 2.99 2007-04-10 23:51:32.996577
  24131. 26362 371 1 6460 1.99 2007-04-11 23:42:10.996577
  24132. 26363 371 1 6922 0.99 2007-04-12 21:08:14.996577
  24133. 26364 371 1 7408 3.99 2007-04-27 15:00:06.996577
  24134. 26365 371 1 8138 4.99 2007-04-28 18:40:43.996577
  24135. 26366 371 1 9008 4.99 2007-04-30 03:38:52.996577
  24136. 26367 371 1 9117 8.99 2007-04-30 07:49:25.996577
  24137. 26368 371 1 9635 0.99 2007-04-30 03:40:53.996577
  24138. 26369 372 1 5229 4.99 2007-04-09 10:58:44.996577
  24139. 26370 372 1 5314 2.99 2007-04-09 14:33:54.996577
  24140. 26371 372 1 5352 2.99 2007-04-09 16:23:24.996577
  24141. 26372 372 1 5501 6.99 2007-04-09 23:02:14.996577
  24142. 26373 372 2 5914 7.99 2007-04-10 19:29:38.996577
  24143. 26374 372 2 6692 4.99 2007-04-12 11:04:05.996577
  24144. 26375 372 1 7190 4.99 2007-04-27 07:04:27.996577
  24145. 26376 372 2 7234 5.99 2007-04-27 08:37:11.996577
  24146. 26377 372 2 7735 4.99 2007-04-28 03:38:22.996577
  24147. 26378 372 2 8009 7.99 2007-04-28 13:54:24.996577
  24148. 26379 372 1 8059 2.99 2007-04-28 15:38:25.996577
  24149. 26380 372 1 8358 0.99 2007-04-29 03:29:24.996577
  24150. 26381 372 1 8724 0.99 2007-04-29 16:33:47.996577
  24151. 26382 372 1 8755 2.99 2007-04-29 17:46:57.996577
  24152. 26383 372 2 8837 8.99 2007-04-29 21:17:26.996577
  24153. 26384 372 1 9128 5.99 2007-04-30 08:19:40.996577
  24154. 26385 373 2 3609 2.99 2007-04-06 04:04:48.996577
  24155. 26386 373 2 3667 4.99 2007-04-06 07:05:00.996577
  24156. 26387 373 1 4325 7.99 2007-04-07 16:27:50.996577
  24157. 26388 373 1 5120 5.99 2007-04-09 05:42:49.996577
  24158. 26389 373 1 6202 3.99 2007-04-11 10:52:51.996577
  24159. 26390 373 2 6311 0.99 2007-04-11 16:47:18.996577
  24160. 26391 373 1 6944 4.99 2007-04-26 22:02:28.996577
  24161. 26392 373 1 7094 0.99 2007-04-27 03:15:59.996577
  24162. 26393 373 2 7206 3.99 2007-04-27 07:35:31.996577
  24163. 26394 373 1 7615 0.99 2007-04-27 22:43:50.996577
  24164. 26395 373 1 8611 3.99 2007-04-29 11:54:47.996577
  24165. 26396 373 2 9327 8.99 2007-04-30 15:59:29.996577
  24166. 26397 373 1 9397 4.99 2007-04-30 18:35:55.996577
  24167. 26398 373 2 9480 0.99 2007-04-30 21:54:29.996577
  24168. 26399 373 1 9966 4.99 2007-04-30 14:55:12.996577
  24169. 26400 373 1 10010 6.99 2007-04-30 16:30:02.996577
  24170. 26401 373 1 10221 4.99 2007-04-30 23:45:16.996577
  24171. 26402 374 1 3797 1.99 2007-04-06 13:23:18.996577
  24172. 26403 374 1 5463 4.99 2007-04-09 21:25:28.996577
  24173. 26404 374 1 5570 6.99 2007-04-10 02:15:13.996577
  24174. 26405 374 2 5591 3.99 2007-04-10 02:53:29.996577
  24175. 26406 374 2 5945 2.99 2007-04-10 21:21:08.996577
  24176. 26407 374 2 6315 0.99 2007-04-11 17:11:15.996577
  24177. 26408 374 2 7837 0.99 2007-04-28 07:26:58.996577
  24178. 26409 374 2 8586 7.99 2007-04-29 10:45:00.996577
  24179. 26410 374 2 9113 0.99 2007-04-30 07:37:29.996577
  24180. 26411 374 1 9866 6.99 2007-04-30 11:42:16.996577
  24181. 26412 375 1 3981 6.99 2007-04-06 21:40:38.996577
  24182. 26413 375 2 4335 4.99 2007-04-07 17:02:23.996577
  24183. 26414 375 2 5474 2.99 2007-04-09 21:52:23.996577
  24184. 26415 375 1 7856 4.99 2007-04-28 08:16:50.996577
  24185. 26416 375 2 8900 2.99 2007-04-29 23:35:29.996577
  24186. 26417 376 2 3719 2.99 2007-04-06 09:34:21.996577
  24187. 26418 376 1 4163 0.99 2007-04-07 07:47:54.996577
  24188. 26419 376 2 4166 8.99 2007-04-07 08:01:56.996577
  24189. 26420 376 1 4320 3.99 2007-04-07 16:20:25.996577
  24190. 26421 376 1 4554 5.99 2007-04-08 03:16:29.996577
  24191. 26422 376 1 4869 4.99 2007-04-08 17:42:31.996577
  24192. 26423 376 1 5675 4.99 2007-04-10 06:59:32.996577
  24193. 26424 376 1 6524 6.99 2007-04-12 02:43:01.996577
  24194. 26425 376 1 6545 8.99 2007-04-12 03:24:56.996577
  24195. 26426 376 2 6807 2.99 2007-04-12 16:02:19.996577
  24196. 26427 376 1 8269 2.99 2007-04-28 23:55:20.996577
  24197. 26428 376 1 8420 5.99 2007-04-29 05:29:11.996577
  24198. 26429 376 1 9773 4.99 2007-04-30 08:25:22.996577
  24199. 26430 376 1 9828 2.99 2007-04-30 10:25:23.996577
  24200. 26431 376 1 9872 0.99 2007-04-30 11:56:21.996577
  24201. 26432 377 1 3858 2.99 2007-04-06 15:46:23.996577
  24202. 26433 377 2 4053 0.99 2007-04-07 02:07:48.996577
  24203. 26434 377 1 4077 0.99 2007-04-07 03:22:06.996577
  24204. 26435 377 1 4225 0.99 2007-04-07 10:53:03.996577
  24205. 26436 377 2 6893 7.99 2007-04-12 19:48:37.996577
  24206. 26437 377 1 7697 1.99 2007-04-28 02:12:11.996577
  24207. 26438 377 2 8018 10.99 2007-04-28 14:05:14.996577
  24208. 26439 377 2 8916 4.99 2007-04-30 00:10:47.996577
  24209. 26440 377 2 9461 3.99 2007-04-30 20:57:39.996577
  24210. 26441 377 1 9564 0.99 2007-04-30 01:00:03.996577
  24211. 26442 377 1 10013 4.99 2007-04-30 16:36:47.996577
  24212. 26443 377 1 10183 8.99 2007-04-30 22:36:27.996577
  24213. 26444 378 1 3759 4.99 2007-04-06 11:15:04.996577
  24214. 26445 378 2 4755 0.99 2007-04-08 12:52:07.996577
  24215. 26446 378 1 5578 1.99 2007-04-10 02:28:57.996577
  24216. 26447 378 2 6233 1.99 2007-04-11 12:39:13.996577
  24217. 26448 378 1 7888 0.99 2007-04-28 09:08:50.996577
  24218. 26449 378 2 8740 2.99 2007-04-29 17:09:57.996577
  24219. 26450 378 2 9668 3.99 2007-04-30 04:59:29.996577
  24220. 26451 378 1 9868 2.99 2007-04-30 11:48:34.996577
  24221. 26452 379 1 3788 4.99 2007-04-06 12:30:28.996577
  24222. 26453 379 2 4740 2.99 2007-04-08 11:59:01.996577
  24223. 26454 379 1 5402 4.99 2007-04-09 18:30:24.996577
  24224. 26455 379 1 6235 7.99 2007-04-11 12:46:17.996577
  24225. 26456 379 2 7041 4.99 2007-04-27 01:46:58.996577
  24226. 26457 379 1 10041 4.99 2007-04-30 17:29:28.996577
  24227. 26458 380 1 3637 2.99 2007-04-06 05:34:57.996577
  24228. 26459 380 1 3688 4.99 2007-04-06 08:10:19.996577
  24229. 26460 380 1 4675 2.99 2007-04-08 08:52:48.996577
  24230. 26461 380 2 4706 4.99 2007-04-08 10:20:07.996577
  24231. 26462 380 2 5339 0.99 2007-04-09 15:37:43.996577
  24232. 26463 380 2 7021 8.99 2007-04-27 00:55:04.996577
  24233. 26464 380 2 7167 2.99 2007-04-27 06:05:52.996577
  24234. 26465 380 2 7435 0.99 2007-04-27 16:07:10.996577
  24235. 26466 380 2 7443 2.99 2007-04-27 16:16:09.996577
  24236. 26467 380 1 7773 2.99 2007-04-28 05:30:43.996577
  24237. 26468 380 1 7974 3.99 2007-04-28 12:40:23.996577
  24238. 26469 380 1 9056 0.99 2007-04-30 05:41:46.996577
  24239. 26470 380 1 9261 6.99 2007-04-30 13:08:01.996577
  24240. 26471 380 1 9710 10.99 2007-04-30 06:33:57.996577
  24241. 26472 381 2 3812 0.99 2007-04-06 13:50:45.996577
  24242. 26473 381 2 3970 2.99 2007-04-06 21:16:43.996577
  24243. 26474 381 1 4735 0.99 2007-04-08 11:40:53.996577
  24244. 26475 381 2 5689 0.99 2007-04-10 07:52:43.996577
  24245. 26476 381 2 6116 2.99 2007-04-11 06:06:04.996577
  24246. 26477 381 2 6451 4.99 2007-04-11 23:20:45.996577
  24247. 26478 381 2 6778 2.99 2007-04-12 14:34:26.996577
  24248. 26479 381 1 7375 2.99 2007-04-27 13:50:59.996577
  24249. 26480 381 1 7645 2.99 2007-04-27 23:56:08.996577
  24250. 26481 381 2 8688 0.99 2007-04-29 14:59:58.996577
  24251. 26482 381 2 9144 0.99 2007-04-30 08:50:41.996577
  24252. 26483 381 2 9173 4.99 2007-04-30 10:08:36.996577
  24253. 26484 381 1 9822 2.99 2007-04-30 10:16:51.996577
  24254. 26485 381 2 10033 4.99 2007-04-30 17:12:55.996577
  24255. 26486 382 2 3480 3.99 2007-04-05 21:40:09.996577
  24256. 26487 382 2 4351 4.99 2007-04-07 17:32:50.996577
  24257. 26488 382 1 5004 4.99 2007-04-08 23:49:16.996577
  24258. 26489 382 1 5816 0.99 2007-04-10 14:17:13.996577
  24259. 26490 382 2 7625 0.99 2007-04-27 23:16:22.996577
  24260. 26491 382 2 8777 0.99 2007-04-29 18:38:47.996577
  24261. 26492 382 1 8871 9.99 2007-04-29 22:41:07.996577
  24262. 26493 382 1 8993 4.99 2007-04-30 03:19:51.996577
  24263. 26494 382 1 9067 6.99 2007-04-30 05:59:27.996577
  24264. 26495 382 2 9555 0.99 2007-04-30 00:39:42.996577
  24265. 26496 383 2 4747 5.99 2007-04-08 12:21:27.996577
  24266. 26497 383 2 6091 4.99 2007-04-11 04:17:44.996577
  24267. 26498 383 2 6244 0.99 2007-04-11 13:22:04.996577
  24268. 26499 383 1 6775 4.99 2007-04-12 14:30:10.996577
  24269. 26500 383 1 7367 3.99 2007-04-27 13:34:11.996577
  24270. 26501 383 2 8367 2.99 2007-04-29 03:39:45.996577
  24271. 26502 383 1 8635 0.99 2007-04-29 12:51:14.996577
  24272. 26503 383 1 9653 0.99 2007-04-30 04:24:04.996577
  24273. 26504 383 1 9678 0.99 2007-04-30 05:09:13.996577
  24274. 26505 384 2 4424 0.99 2007-04-07 20:43:09.996577
  24275. 26506 384 2 5250 0.99 2007-04-09 12:03:58.996577
  24276. 26507 384 1 5608 4.99 2007-04-10 03:36:52.996577
  24277. 26508 384 2 5797 4.99 2007-04-10 13:12:18.996577
  24278. 26509 384 2 5966 2.99 2007-04-10 22:27:53.996577
  24279. 26510 384 2 6387 0.99 2007-04-11 20:44:22.996577
  24280. 26511 384 2 7799 0.99 2007-04-28 06:10:35.996577
  24281. 26512 384 1 8445 1.99 2007-04-29 06:06:14.996577
  24282. 26513 385 2 3878 8.99 2007-04-06 16:55:35.996577
  24283. 26514 385 2 3953 0.99 2007-04-06 20:23:21.996577
  24284. 26515 385 1 4714 6.99 2007-04-08 10:41:14.996577
  24285. 26516 385 1 5783 2.99 2007-04-10 12:23:59.996577
  24286. 26517 385 1 6445 4.99 2007-04-11 23:05:28.996577
  24287. 26518 385 2 6933 4.99 2007-04-26 21:37:49.996577
  24288. 26519 385 2 7776 0.99 2007-04-28 05:33:02.996577
  24289. 26520 385 1 8346 2.99 2007-04-29 03:16:48.996577
  24290. 26521 385 1 8518 2.99 2007-04-29 08:33:53.996577
  24291. 26522 385 1 9570 2.99 2007-04-30 01:09:03.996577
  24292. 26523 385 1 9704 4.99 2007-04-30 06:07:58.996577
  24293. 26524 386 2 3783 6.99 2007-04-06 12:25:57.996577
  24294. 26525 386 1 4189 8.99 2007-04-07 09:19:33.996577
  24295. 26526 386 1 5524 0.99 2007-04-10 00:17:50.996577
  24296. 26527 386 1 5953 2.99 2007-04-10 21:50:01.996577
  24297. 26528 386 1 6037 4.99 2007-04-11 01:35:20.996577
  24298. 26529 386 1 6222 2.99 2007-04-11 11:54:15.996577
  24299. 26530 386 2 6261 2.99 2007-04-11 13:57:00.996577
  24300. 26531 386 1 6324 3.99 2007-04-11 17:31:00.996577
  24301. 26532 386 2 6715 4.99 2007-04-12 12:00:54.996577
  24302. 26533 386 2 8340 4.99 2007-04-29 03:10:10.996577
  24303. 26534 386 1 8751 2.99 2007-04-29 17:43:05.996577
  24304. 26535 386 2 9602 0.99 2007-04-30 02:11:17.996577
  24305. 26536 386 1 9686 5.99 2007-04-30 05:18:32.996577
  24306. 26537 387 2 6216 4.99 2007-04-11 11:25:31.996577
  24307. 26538 387 2 6456 6.99 2007-04-11 23:33:37.996577
  24308. 26539 387 1 6517 5.99 2007-04-12 02:21:05.996577
  24309. 26540 387 1 7497 0.99 2007-04-27 18:33:53.996577
  24310. 26541 387 1 8090 2.99 2007-04-28 16:55:55.996577
  24311. 26542 388 2 4947 5.99 2007-04-08 21:18:03.996577
  24312. 26543 388 2 5899 2.99 2007-04-10 18:50:18.996577
  24313. 26544 388 2 6321 2.99 2007-04-11 17:19:28.996577
  24314. 26545 388 1 6452 2.99 2007-04-11 23:25:57.996577
  24315. 26546 388 2 7985 5.99 2007-04-28 12:57:27.996577
  24316. 26547 388 2 8456 3.99 2007-04-29 06:26:57.996577
  24317. 26548 388 2 9213 0.99 2007-04-30 11:35:37.996577
  24318. 26549 388 2 9368 2.99 2007-04-30 17:19:19.996577
  24319. 26550 388 2 9840 2.99 2007-04-30 10:51:44.996577
  24320. 26551 388 2 9940 0.99 2007-04-30 13:57:32.996577
  24321. 26552 388 2 10044 2.99 2007-04-30 17:30:59.996577
  24322. 26553 389 2 3527 0.99 2007-04-05 23:39:34.996577
  24323. 26554 389 1 4443 6.99 2007-04-07 21:34:19.996577
  24324. 26555 389 1 5249 0.99 2007-04-09 12:02:19.996577
  24325. 26556 389 2 5626 3.99 2007-04-10 04:18:01.996577
  24326. 26557 389 2 6104 2.99 2007-04-11 05:30:01.996577
  24327. 26558 389 1 6600 3.99 2007-04-12 06:10:14.996577
  24328. 26559 389 1 7029 4.99 2007-04-27 01:26:09.996577
  24329. 26560 389 1 7896 8.99 2007-04-28 09:29:24.996577
  24330. 26561 389 2 7977 4.99 2007-04-28 12:44:20.996577
  24331. 26562 389 1 8338 6.99 2007-04-29 03:09:05.996577
  24332. 26563 389 1 8887 4.99 2007-04-29 23:05:20.996577
  24333. 26564 389 1 10217 4.99 2007-04-30 23:35:53.996577
  24334. 26565 390 1 3999 2.99 2007-04-06 22:19:20.996577
  24335. 26566 390 1 4022 4.99 2007-04-07 00:18:32.996577
  24336. 26567 390 2 4191 3.99 2007-04-07 09:24:40.996577
  24337. 26568 390 2 4310 2.99 2007-04-07 15:59:22.996577
  24338. 26569 390 1 4968 5.99 2007-04-08 22:17:45.996577
  24339. 26570 390 1 6215 4.99 2007-04-11 11:21:02.996577
  24340. 26571 390 1 6430 0.99 2007-04-11 22:32:00.996577
  24341. 26572 390 2 7515 3.99 2007-04-27 19:21:03.996577
  24342. 26573 390 1 7595 5.99 2007-04-27 22:00:49.996577
  24343. 26574 390 1 8493 0.99 2007-04-29 07:32:57.996577
  24344. 26575 390 1 9251 5.99 2007-04-30 12:47:51.996577
  24345. 26576 390 2 9314 2.99 2007-04-30 15:33:45.996577
  24346. 26577 390 1 9825 4.99 2007-04-30 10:19:17.996577
  24347. 26578 390 1 10061 4.99 2007-04-30 17:51:51.996577
  24348. 26579 391 1 4188 5.99 2007-04-07 09:13:55.996577
  24349. 26580 391 1 4716 0.99 2007-04-08 10:47:17.996577
  24350. 26581 391 2 4753 0.99 2007-04-08 12:47:07.996577
  24351. 26582 391 2 5583 7.99 2007-04-10 02:37:14.996577
  24352. 26583 391 1 5599 4.99 2007-04-10 03:20:30.996577
  24353. 26584 391 1 6302 3.99 2007-04-11 16:24:04.996577
  24354. 26585 391 1 6463 2.99 2007-04-11 23:44:37.996577
  24355. 26586 391 2 8016 0.99 2007-04-28 14:04:07.996577
  24356. 26587 391 1 8908 0.99 2007-04-29 23:54:31.996577
  24357. 26588 391 2 8913 6.99 2007-04-30 00:03:27.996577
  24358. 26589 391 1 9225 0.99 2007-04-30 11:58:13.996577
  24359. 26590 391 1 10210 7.99 2007-04-30 23:27:18.996577
  24360. 26591 392 1 3566 2.99 2007-04-06 01:37:17.996577
  24361. 26592 392 2 6061 0.99 2007-04-11 02:34:51.996577
  24362. 26593 392 2 6406 2.99 2007-04-11 21:23:53.996577
  24363. 26594 392 1 7692 2.99 2007-04-28 01:58:47.996577
  24364. 26595 392 1 7981 1.99 2007-04-28 12:46:51.996577
  24365. 26596 392 1 8254 0.99 2007-04-28 23:27:57.996577
  24366. 26597 392 2 8612 9.99 2007-04-29 11:56:46.996577
  24367. 26598 392 2 10085 0.99 2007-04-30 18:40:28.996577
  24368. 26599 393 2 4275 2.99 2007-04-07 13:12:17.996577
  24369. 26600 393 2 4546 8.99 2007-04-08 02:47:02.996577
  24370. 26601 393 2 4632 5.99 2007-04-08 07:07:23.996577
  24371. 26602 393 2 4791 7.99 2007-04-08 14:55:50.996577
  24372. 26603 393 1 5099 4.99 2007-04-09 04:42:56.996577
  24373. 26604 393 1 6221 2.99 2007-04-11 11:52:53.996577
  24374. 26605 393 2 6513 0.99 2007-04-12 02:13:09.996577
  24375. 26606 393 1 6930 8.99 2007-04-26 21:28:27.996577
  24376. 26607 393 2 7486 0.99 2007-04-27 17:57:50.996577
  24377. 26608 393 2 8004 4.99 2007-04-28 13:42:33.996577
  24378. 26609 393 2 8448 0.99 2007-04-29 06:10:20.996577
  24379. 26610 393 2 9763 7.99 2007-04-30 08:02:29.996577
  24380. 26611 393 1 10158 1.99 2007-04-30 21:08:57.996577
  24381. 26612 394 2 3543 0.99 2007-04-06 00:29:34.996577
  24382. 26613 394 1 3873 6.99 2007-04-06 16:31:42.996577
  24383. 26614 394 2 4009 2.99 2007-04-06 22:57:21.996577
  24384. 26615 394 1 4307 6.99 2007-04-07 15:49:05.996577
  24385. 26616 394 2 5183 4.99 2007-04-09 08:42:11.996577
  24386. 26617 394 1 5535 4.99 2007-04-10 00:56:08.996577
  24387. 26618 394 2 6059 4.99 2007-04-11 02:32:20.996577
  24388. 26619 394 2 7445 3.99 2007-04-27 16:25:41.996577
  24389. 26620 394 1 9147 0.99 2007-04-30 09:07:25.996577
  24390. 26621 394 2 9864 0.99 2007-04-30 11:35:20.996577
  24391. 26622 395 2 3684 0.99 2007-04-06 07:57:48.996577
  24392. 26623 395 1 4185 5.99 2007-04-07 08:59:31.996577
  24393. 26624 395 1 4393 4.99 2007-04-07 19:41:02.996577
  24394. 26625 395 1 5087 0.99 2007-04-09 04:12:54.996577
  24395. 26626 395 2 5136 0.99 2007-04-09 06:23:27.996577
  24396. 26627 395 1 7740 2.99 2007-04-28 03:52:02.996577
  24397. 26628 395 2 7986 7.99 2007-04-28 12:58:39.996577
  24398. 26629 396 2 3909 6.99 2007-04-06 18:23:07.996577
  24399. 26630 396 1 5059 1.99 2007-04-09 02:56:27.996577
  24400. 26631 396 2 6335 2.99 2007-04-11 17:53:41.996577
  24401. 26632 396 2 6764 4.99 2007-04-12 13:57:53.996577
  24402. 26633 396 2 6771 2.99 2007-04-12 14:23:06.996577
  24403. 26634 396 2 7142 0.99 2007-04-27 05:24:05.996577
  24404. 26635 396 2 7313 2.99 2007-04-27 11:40:23.996577
  24405. 26636 396 2 8371 2.99 2007-04-29 03:45:01.996577
  24406. 26637 396 2 8807 2.99 2007-04-29 20:05:25.996577
  24407. 26638 396 1 9344 5.99 2007-04-30 16:42:11.996577
  24408. 26639 396 2 10120 2.99 2007-04-30 19:52:50.996577
  24409. 26640 396 2 10124 0.99 2007-04-30 20:00:15.996577
  24410. 26641 396 2 10195 6.99 2007-04-30 23:03:08.996577
  24411. 26642 397 1 3489 5.99 2007-04-05 22:02:06.996577
  24412. 26643 397 1 4036 0.99 2007-04-07 01:16:26.996577
  24413. 26644 397 2 5103 4.99 2007-04-09 05:03:06.996577
  24414. 26645 397 2 5598 4.99 2007-04-10 03:16:55.996577
  24415. 26646 397 2 5763 4.99 2007-04-10 11:26:38.996577
  24416. 26647 397 2 6014 2.99 2007-04-11 00:31:21.996577
  24417. 26648 397 2 6266 2.99 2007-04-11 14:14:05.996577
  24418. 26649 397 1 6471 4.99 2007-04-11 23:59:32.996577
  24419. 26650 397 2 7356 2.99 2007-04-27 13:16:01.996577
  24420. 26651 397 2 7892 4.99 2007-04-28 09:15:24.996577
  24421. 26652 397 1 8103 6.99 2007-04-28 17:18:40.996577
  24422. 26653 397 1 9495 0.99 2007-04-30 22:22:52.996577
  24423. 26654 397 2 9608 1.99 2007-04-30 02:20:18.996577
  24424. 26655 398 2 5234 5.99 2007-04-09 11:13:13.996577
  24425. 26656 398 2 8119 3.99 2007-04-28 17:51:41.996577
  24426. 26657 398 2 8204 4.99 2007-04-28 21:46:55.996577
  24427. 26658 398 1 8428 7.99 2007-04-29 05:38:40.996577
  24428. 26659 398 1 9042 2.99 2007-04-30 05:02:21.996577
  24429. 26660 398 2 9281 5.99 2007-04-30 13:44:17.996577
  24430. 26661 398 1 9771 1.99 2007-04-30 08:24:02.996577
  24431. 26662 399 2 4957 0.99 2007-04-08 21:47:14.996577
  24432. 26663 399 2 4981 4.99 2007-04-08 22:57:55.996577
  24433. 26664 399 1 5507 0.99 2007-04-09 23:17:30.996577
  24434. 26665 399 2 6006 2.99 2007-04-11 00:07:08.996577
  24435. 26666 399 2 6229 6.99 2007-04-11 12:28:16.996577
  24436. 26667 399 2 6674 4.99 2007-04-12 10:20:20.996577
  24437. 26668 399 2 8461 5.99 2007-04-29 06:39:57.996577
  24438. 26669 399 2 9728 2.99 2007-04-30 07:09:20.996577
  24439. 26670 400 1 4573 6.99 2007-04-08 04:07:12.996577
  24440. 26671 400 1 4645 2.99 2007-04-08 07:48:35.996577
  24441. 26672 400 2 5212 6.99 2007-04-09 10:06:13.996577
  24442. 26673 400 2 5222 5.99 2007-04-09 10:34:11.996577
  24443. 26674 400 2 6790 5.99 2007-04-12 15:03:25.996577
  24444. 26675 400 2 6994 2.99 2007-04-26 23:36:52.996577
  24445. 26676 400 2 7296 2.99 2007-04-27 11:08:14.996577
  24446. 26677 400 1 7682 5.99 2007-04-28 01:35:55.996577
  24447. 26678 400 2 9177 5.99 2007-04-30 10:21:06.996577
  24448. 26679 400 2 9756 4.99 2007-04-30 07:53:26.996577
  24449. 26680 400 1 10187 2.99 2007-04-30 22:44:15.996577
  24450. 26681 401 1 4059 0.99 2007-04-07 02:32:52.996577
  24451. 26682 401 2 4292 7.99 2007-04-07 14:17:04.996577
  24452. 26683 401 2 5923 0.99 2007-04-10 20:08:32.996577
  24453. 26684 267 2 9059 3.99 2007-04-30 05:47:10.996577
  24454. 26685 401 2 7651 4.99 2007-04-28 00:16:58.996577
  24455. 26686 401 1 8450 2.99 2007-04-29 06:12:31.996577
  24456. 26687 401 2 8669 2.99 2007-04-29 14:13:21.996577
  24457. 26688 401 1 8722 8.99 2007-04-29 16:27:24.996577
  24458. 26689 401 2 9701 4.99 2007-04-30 06:00:47.996577
  24459. 26690 401 2 10171 0.99 2007-04-30 21:57:31.996577
  24460. 26691 402 2 3564 6.99 2007-04-06 01:30:39.996577
  24461. 26692 402 2 3612 3.99 2007-04-06 04:05:52.996577
  24462. 26693 402 2 3755 5.99 2007-04-06 11:05:42.996577
  24463. 26694 402 1 4399 2.99 2007-04-07 19:48:54.996577
  24464. 26695 402 2 4604 3.99 2007-04-08 05:27:09.996577
  24465. 26696 402 2 5329 4.99 2007-04-09 15:18:12.996577
  24466. 26697 402 2 6183 2.99 2007-04-11 09:43:01.996577
  24467. 26698 402 1 6283 3.99 2007-04-11 15:15:58.996577
  24468. 26699 402 1 7633 0.99 2007-04-27 23:32:07.996577
  24469. 26700 402 2 8521 7.99 2007-04-29 08:41:11.996577
  24470. 26701 402 1 9657 6.99 2007-04-30 04:29:07.996577
  24471. 26702 402 2 9779 0.99 2007-04-30 08:36:59.996577
  24472. 26703 403 1 3644 6.99 2007-04-06 05:48:37.996577
  24473. 26704 403 2 3737 3.99 2007-04-06 10:14:19.996577
  24474. 26705 403 2 4096 4.99 2007-04-07 04:37:37.996577
  24475. 26706 403 1 5982 4.99 2007-04-10 22:53:10.996577
  24476. 26707 403 2 6322 2.99 2007-04-11 17:26:46.996577
  24477. 26708 403 1 6342 4.99 2007-04-11 18:16:50.996577
  24478. 26709 403 1 7103 4.99 2007-04-27 03:37:25.996577
  24479. 26710 403 2 8013 5.99 2007-04-28 13:58:52.996577
  24480. 26711 403 1 9058 2.99 2007-04-30 05:44:11.996577
  24481. 26712 403 2 9486 7.99 2007-04-30 22:04:08.996577
  24482. 26713 403 2 9794 4.99 2007-04-30 09:15:27.996577
  24483. 26714 403 2 10109 5.99 2007-04-30 19:33:15.996577
  24484. 26715 404 1 3927 2.99 2007-04-06 19:16:40.996577
  24485. 26716 404 1 4495 2.99 2007-04-08 00:12:12.996577
  24486. 26717 404 2 4615 8.99 2007-04-08 06:15:19.996577
  24487. 26718 404 1 4653 4.99 2007-04-08 08:16:27.996577
  24488. 26719 404 1 4963 4.99 2007-04-08 22:07:06.996577
  24489. 26720 404 1 5632 3.99 2007-04-10 04:45:32.996577
  24490. 26721 404 1 6114 1.99 2007-04-11 06:02:14.996577
  24491. 26722 404 2 6779 0.99 2007-04-12 14:39:16.996577
  24492. 26723 404 1 6964 4.99 2007-04-26 22:43:30.996577
  24493. 26724 404 1 8058 5.99 2007-04-28 15:36:15.996577
  24494. 26725 404 1 8455 3.99 2007-04-29 06:21:32.996577
  24495. 26726 404 1 9206 4.99 2007-04-30 11:15:25.996577
  24496. 26727 404 1 9472 4.99 2007-04-30 21:31:58.996577
  24497. 26728 404 2 9824 2.99 2007-04-30 10:18:21.996577
  24498. 26729 405 2 4223 0.99 2007-04-07 10:52:20.996577
  24499. 26730 405 2 4401 0.99 2007-04-07 19:54:53.996577
  24500. 26731 405 2 5040 7.99 2007-04-09 01:45:00.996577
  24501. 26732 405 1 5231 0.99 2007-04-09 11:03:28.996577
  24502. 26733 405 2 5512 1.99 2007-04-09 23:34:04.996577
  24503. 26734 405 1 6110 2.99 2007-04-11 05:52:13.996577
  24504. 26735 405 1 7455 2.99 2007-04-27 17:03:07.996577
  24505. 26736 405 1 7759 0.99 2007-04-28 04:57:11.996577
  24506. 26737 405 2 8482 2.99 2007-04-29 07:14:59.996577
  24507. 26738 405 1 8955 5.99 2007-04-30 01:56:53.996577
  24508. 26739 405 1 9569 0.99 2007-04-30 01:08:04.996577
  24509. 26740 406 2 4264 4.99 2007-04-07 12:53:54.996577
  24510. 26741 406 2 5098 4.99 2007-04-09 04:42:20.996577
  24511. 26742 406 2 5263 0.99 2007-04-09 12:39:02.996577
  24512. 26743 406 1 5766 0.99 2007-04-10 11:35:57.996577
  24513. 26744 406 2 6439 2.99 2007-04-11 22:52:14.996577
  24514. 26745 406 2 7109 5.99 2007-04-27 03:57:23.996577
  24515. 26746 406 1 7171 4.99 2007-04-27 06:27:01.996577
  24516. 26747 406 1 7259 4.99 2007-04-27 09:34:26.996577
  24517. 26748 406 2 7604 7.99 2007-04-27 22:23:18.996577
  24518. 26749 406 2 8080 4.99 2007-04-28 16:33:32.996577
  24519. 26750 406 2 8295 2.99 2007-04-29 01:10:40.996577
  24520. 26751 406 2 8630 0.99 2007-04-29 12:36:25.996577
  24521. 26752 406 1 8903 0.99 2007-04-29 23:36:32.996577
  24522. 26753 406 2 8962 1.99 2007-04-30 02:12:11.996577
  24523. 26754 406 2 9224 0.99 2007-04-30 11:54:03.996577
  24524. 26755 406 1 9291 4.99 2007-04-30 14:32:05.996577
  24525. 26756 406 2 9487 2.99 2007-04-30 22:08:48.996577
  24526. 26757 406 1 9660 8.99 2007-04-30 04:31:43.996577
  24527. 26758 407 1 4296 0.99 2007-04-07 14:44:29.996577
  24528. 26759 407 1 5070 4.99 2007-04-09 03:26:52.996577
  24529. 26760 407 2 5590 9.99 2007-04-10 02:51:37.996577
  24530. 26761 407 1 6727 0.99 2007-04-12 12:22:51.996577
  24531. 26762 407 1 7363 5.99 2007-04-27 13:26:55.996577
  24532. 26763 407 2 7643 4.99 2007-04-27 23:48:10.996577
  24533. 26764 407 1 8078 2.99 2007-04-28 16:23:08.996577
  24534. 26765 407 1 8109 4.99 2007-04-28 17:36:10.996577
  24535. 26766 407 1 8197 9.99 2007-04-28 21:32:36.996577
  24536. 26767 407 2 8571 0.99 2007-04-29 10:17:05.996577
  24537. 26768 407 1 8802 2.99 2007-04-29 19:54:17.996577
  24538. 26769 408 2 4330 3.99 2007-04-07 16:38:07.996577
  24539. 26770 408 2 5073 0.99 2007-04-09 03:31:01.996577
  24540. 26771 408 1 6062 0.99 2007-04-11 02:40:24.996577
  24541. 26772 408 2 6203 4.99 2007-04-11 10:57:23.996577
  24542. 26773 408 2 6826 2.99 2007-04-12 17:00:28.996577
  24543. 26774 408 1 7053 4.99 2007-04-27 02:07:20.996577
  24544. 26775 408 2 7996 4.99 2007-04-28 13:29:15.996577
  24545. 26776 408 2 8251 4.99 2007-04-28 23:18:40.996577
  24546. 26777 408 2 8469 3.99 2007-04-29 06:54:53.996577
  24547. 26778 408 2 8902 6.99 2007-04-29 23:36:32.996577
  24548. 26779 408 1 9052 0.99 2007-04-30 05:34:34.996577
  24549. 26780 408 2 9757 4.99 2007-04-30 07:53:40.996577
  24550. 26781 409 1 3866 5.99 2007-04-06 16:15:46.996577
  24551. 26782 409 2 4550 4.99 2007-04-08 03:02:26.996577
  24552. 26783 409 1 5175 3.99 2007-04-09 08:02:54.996577
  24553. 26784 409 2 5306 5.99 2007-04-09 14:25:11.996577
  24554. 26785 409 1 5422 0.99 2007-04-09 19:24:13.996577
  24555. 26786 409 1 5848 2.99 2007-04-10 15:56:40.996577
  24556. 26787 409 1 5955 7.99 2007-04-10 21:50:36.996577
  24557. 26788 409 2 6026 4.99 2007-04-11 00:50:09.996577
  24558. 26789 409 1 6596 2.99 2007-04-12 06:01:25.996577
  24559. 26790 409 2 7673 2.99 2007-04-28 01:22:19.996577
  24560. 26791 409 2 7940 0.99 2007-04-28 11:15:13.996577
  24561. 26792 409 1 8037 4.99 2007-04-28 14:59:46.996577
  24562. 26793 409 2 8265 5.99 2007-04-28 23:48:41.996577
  24563. 26794 409 1 8726 1.99 2007-04-29 16:37:48.996577
  24564. 26795 409 2 9267 0.99 2007-04-30 13:27:31.996577
  24565. 26796 410 2 4062 0.99 2007-04-07 02:50:53.996577
  24566. 26797 410 1 4267 0.99 2007-04-07 13:03:56.996577
  24567. 26798 410 1 5150 3.99 2007-04-09 06:57:06.996577
  24568. 26799 410 1 5192 4.99 2007-04-09 08:55:35.996577
  24569. 26800 410 2 5330 5.99 2007-04-09 15:22:23.996577
  24570. 26801 410 1 5336 2.99 2007-04-09 15:29:34.996577
  24571. 26802 410 1 6148 4.99 2007-04-11 07:42:48.996577
  24572. 26803 410 2 6218 5.99 2007-04-11 11:43:24.996577
  24573. 26804 410 2 7350 4.99 2007-04-27 13:02:40.996577
  24574. 26805 410 2 7407 5.99 2007-04-27 14:57:30.996577
  24575. 26806 410 1 7523 4.99 2007-04-27 19:39:49.996577
  24576. 26807 410 2 8625 3.99 2007-04-29 12:27:39.996577
  24577. 26808 410 1 8882 0.99 2007-04-29 22:52:31.996577
  24578. 26809 410 1 9263 2.99 2007-04-30 13:16:50.996577
  24579. 26810 411 1 3928 2.99 2007-04-06 19:20:35.996577
  24580. 26811 411 2 4146 0.99 2007-04-07 06:58:42.996577
  24581. 26812 411 1 4246 2.99 2007-04-07 12:17:29.996577
  24582. 26813 411 2 5357 5.99 2007-04-09 16:37:25.996577
  24583. 26814 411 1 5800 2.99 2007-04-10 13:27:02.996577
  24584. 26815 411 1 7102 1.99 2007-04-27 03:35:47.996577
  24585. 26816 411 2 7395 0.99 2007-04-27 14:31:37.996577
  24586. 26817 411 1 7513 2.99 2007-04-27 19:19:30.996577
  24587. 26818 411 1 7813 2.99 2007-04-28 06:36:53.996577
  24588. 26819 411 1 8023 0.99 2007-04-28 14:21:55.996577
  24589. 26820 411 2 8613 5.99 2007-04-29 11:59:24.996577
  24590. 26821 411 2 9622 0.99 2007-04-30 02:50:11.996577
  24591. 26822 412 2 3888 0.99 2007-04-06 17:22:46.996577
  24592. 26823 412 2 4074 0.99 2007-04-07 03:18:15.996577
  24593. 26824 412 1 8036 0.99 2007-04-28 14:56:09.996577
  24594. 26825 412 2 8330 8.99 2007-04-29 02:37:33.996577
  24595. 26826 412 1 8411 8.99 2007-04-29 05:12:49.996577
  24596. 26827 412 1 8674 0.99 2007-04-29 14:22:48.996577
  24597. 26828 412 1 9881 4.99 2007-04-30 12:19:04.996577
  24598. 26829 413 1 3762 4.99 2007-04-06 11:21:15.996577
  24599. 26830 413 2 4491 0.99 2007-04-07 23:59:12.996577
  24600. 26831 413 1 5897 7.99 2007-04-10 18:44:40.996577
  24601. 26832 413 2 7100 4.99 2007-04-27 03:33:27.996577
  24602. 26833 413 1 7635 0.99 2007-04-27 23:36:37.996577
  24603. 26834 413 2 7731 0.99 2007-04-28 03:29:44.996577
  24604. 26835 414 1 3957 10.99 2007-04-06 20:34:13.996577
  24605. 26836 414 1 4437 3.99 2007-04-07 21:24:07.996577
  24606. 26837 414 2 6462 7.99 2007-04-11 23:43:50.996577
  24607. 26838 414 2 6728 0.99 2007-04-12 12:25:14.996577
  24608. 26839 414 2 6845 0.99 2007-04-12 17:49:07.996577
  24609. 26840 414 1 7009 0.99 2007-04-27 00:14:10.996577
  24610. 26841 414 1 7779 2.99 2007-04-28 05:39:37.996577
  24611. 26842 414 1 9650 2.99 2007-04-30 04:15:58.996577
  24612. 26843 414 2 9991 2.99 2007-04-30 15:54:53.996577
  24613. 26844 414 2 10107 5.99 2007-04-30 19:30:12.996577
  24614. 26845 415 2 4926 8.99 2007-04-08 20:30:14.996577
  24615. 26846 415 2 5665 0.99 2007-04-10 06:38:34.996577
  24616. 26847 415 2 5733 0.99 2007-04-10 10:05:50.996577
  24617. 26848 415 2 6491 5.99 2007-04-12 00:56:57.996577
  24618. 26849 415 1 6505 3.99 2007-04-12 01:56:03.996577
  24619. 26850 415 1 7379 4.99 2007-04-27 14:05:09.996577
  24620. 26851 415 2 7624 0.99 2007-04-27 23:06:10.996577
  24621. 26852 415 1 7748 4.99 2007-04-28 04:20:49.996577
  24622. 26853 415 2 8317 2.99 2007-04-29 02:07:33.996577
  24623. 26854 415 2 9586 2.99 2007-04-30 01:35:42.996577
  24624. 26855 415 1 9852 2.99 2007-04-30 11:20:43.996577
  24625. 26856 416 1 3833 3.99 2007-04-06 14:46:54.996577
  24626. 26857 416 1 3868 2.99 2007-04-06 16:22:39.996577
  24627. 26858 416 1 6097 2.99 2007-04-11 04:50:09.996577
  24628. 26859 416 1 6879 7.99 2007-04-12 19:06:03.996577
  24629. 26860 416 1 7889 0.99 2007-04-28 09:11:47.996577
  24630. 26861 416 1 7917 2.99 2007-04-28 10:25:23.996577
  24631. 26862 416 2 8349 5.99 2007-04-29 03:18:48.996577
  24632. 26863 416 2 8588 2.99 2007-04-29 10:50:46.996577
  24633. 26864 416 2 8648 2.99 2007-04-29 13:24:47.996577
  24634. 26865 416 2 9383 2.99 2007-04-30 17:53:16.996577
  24635. 26866 417 1 3952 4.99 2007-04-06 20:19:57.996577
  24636. 26867 417 1 4418 2.99 2007-04-07 20:33:56.996577
  24637. 26868 417 1 4421 9.99 2007-04-07 20:36:21.996577
  24638. 26869 417 2 6258 6.99 2007-04-11 13:52:58.996577
  24639. 26870 417 1 6312 4.99 2007-04-11 16:47:28.996577
  24640. 26871 417 1 8877 2.99 2007-04-29 22:43:48.996577
  24641. 26872 417 2 9049 2.99 2007-04-30 05:25:54.996577
  24642. 26873 418 1 3805 0.99 2007-04-06 13:37:08.996577
  24643. 26874 418 2 4852 7.99 2007-04-08 17:11:41.996577
  24644. 26875 418 1 4865 2.99 2007-04-08 17:37:30.996577
  24645. 26876 418 1 4938 0.99 2007-04-08 21:01:19.996577
  24646. 26877 418 1 6150 4.99 2007-04-11 07:52:22.996577
  24647. 26878 418 1 6970 4.99 2007-04-26 22:54:40.996577
  24648. 26879 418 2 8546 5.99 2007-04-29 09:37:14.996577
  24649. 26880 418 2 8591 0.99 2007-04-29 11:00:59.996577
  24650. 26881 418 2 8886 10.99 2007-04-29 23:04:57.996577
  24651. 26882 418 1 9558 4.99 2007-04-30 00:43:01.996577
  24652. 26883 419 1 3596 0.99 2007-04-06 03:31:37.996577
  24653. 26884 419 1 3694 4.99 2007-04-06 08:29:49.996577
  24654. 26885 419 1 4224 0.99 2007-04-07 10:52:47.996577
  24655. 26886 419 2 5333 5.99 2007-04-09 15:28:04.996577
  24656. 26887 419 2 5863 0.99 2007-04-10 16:53:49.996577
  24657. 26888 419 1 5900 3.99 2007-04-10 18:50:20.996577
  24658. 26889 419 2 5933 0.99 2007-04-10 20:35:14.996577
  24659. 26890 419 2 6173 0.99 2007-04-11 09:01:37.996577
  24660. 26891 419 2 6587 3.99 2007-04-12 05:24:52.996577
  24661. 26892 419 1 7362 4.99 2007-04-27 13:26:53.996577
  24662. 26893 419 1 7619 2.99 2007-04-27 22:54:07.996577
  24663. 26894 419 1 7796 4.99 2007-04-28 06:08:05.996577
  24664. 26895 419 1 10150 2.99 2007-04-30 20:50:26.996577
  24665. 26896 420 1 4176 4.99 2007-04-07 08:32:00.996577
  24666. 26897 420 2 5081 4.99 2007-04-09 03:53:46.996577
  24667. 26898 420 1 5168 4.99 2007-04-09 07:48:27.996577
  24668. 26899 420 2 5911 0.99 2007-04-10 19:20:08.996577
  24669. 26900 420 2 6086 3.99 2007-04-11 03:57:29.996577
  24670. 26901 420 2 6096 4.99 2007-04-11 04:46:30.996577
  24671. 26902 420 2 6582 4.99 2007-04-12 04:56:38.996577
  24672. 26903 420 1 6588 4.99 2007-04-12 05:26:06.996577
  24673. 26904 420 2 7081 2.99 2007-04-27 02:54:25.996577
  24674. 26905 420 2 8485 0.99 2007-04-29 07:21:35.996577
  24675. 26906 420 1 9362 0.99 2007-04-30 17:12:42.996577
  24676. 26907 421 1 3491 7.99 2007-04-05 22:09:34.996577
  24677. 26908 421 2 3703 5.99 2007-04-06 08:43:52.996577
  24678. 26909 421 1 3988 8.99 2007-04-06 21:59:08.996577
  24679. 26910 421 2 4456 5.99 2007-04-07 22:13:47.996577
  24680. 26911 421 1 6220 0.99 2007-04-11 11:50:32.996577
  24681. 26912 421 2 6960 3.99 2007-04-26 22:36:59.996577
  24682. 26913 421 2 7449 4.99 2007-04-27 16:46:07.996577
  24683. 26914 421 2 8025 2.99 2007-04-28 14:31:53.996577
  24684. 26915 421 1 8268 4.99 2007-04-28 23:51:49.996577
  24685. 26916 421 1 8725 4.99 2007-04-29 16:37:08.996577
  24686. 26917 421 2 9377 4.99 2007-04-30 17:40:44.996577
  24687. 26918 421 2 9875 0.99 2007-04-30 12:06:07.996577
  24688. 26919 421 1 10200 4.99 2007-04-30 23:07:31.996577
  24689. 26920 422 1 3553 4.99 2007-04-06 01:04:07.996577
  24690. 26921 422 2 4463 2.99 2007-04-07 22:33:25.996577
  24691. 26922 422 2 4504 0.99 2007-04-08 00:47:53.996577
  24692. 26923 422 1 5784 1.99 2007-04-10 12:31:54.996577
  24693. 26924 422 2 7827 0.99 2007-04-28 07:05:48.996577
  24694. 26925 422 2 8206 4.99 2007-04-28 21:48:57.996577
  24695. 26926 422 2 9541 4.99 2007-04-30 00:08:40.996577
  24696. 26927 423 2 4105 0.99 2007-04-07 04:59:26.996577
  24697. 26928 423 1 4250 0.99 2007-04-07 12:36:37.996577
  24698. 26929 423 1 4679 2.99 2007-04-08 09:01:40.996577
  24699. 26930 423 1 6506 1.99 2007-04-12 01:56:48.996577
  24700. 26931 423 1 7016 5.99 2007-04-27 00:43:42.996577
  24701. 26932 423 2 7141 2.99 2007-04-27 05:23:53.996577
  24702. 26933 423 1 7157 4.99 2007-04-27 05:48:54.996577
  24703. 26934 423 1 7290 0.99 2007-04-27 10:57:11.996577
  24704. 26935 423 2 7539 9.99 2007-04-27 20:08:08.996577
  24705. 26936 423 1 7849 9.99 2007-04-28 07:58:28.996577
  24706. 26937 423 2 8082 3.99 2007-04-28 16:36:28.996577
  24707. 26938 423 2 8595 9.99 2007-04-29 11:16:09.996577
  24708. 26939 423 2 9026 2.99 2007-04-30 04:23:57.996577
  24709. 26940 424 2 3746 0.99 2007-04-06 10:39:17.996577
  24710. 26941 424 2 4512 0.99 2007-04-08 01:07:22.996577
  24711. 26942 424 2 4559 0.99 2007-04-08 03:25:15.996577
  24712. 26943 424 2 4696 5.99 2007-04-08 09:40:53.996577
  24713. 26944 424 1 5568 0.99 2007-04-10 02:05:22.996577
  24714. 26945 424 1 5611 3.99 2007-04-10 03:42:09.996577
  24715. 26946 424 1 6589 2.99 2007-04-12 05:34:55.996577
  24716. 26947 424 1 7594 2.99 2007-04-27 21:59:07.996577
  24717. 26948 424 2 8194 2.99 2007-04-28 21:20:10.996577
  24718. 26949 424 1 8918 4.99 2007-04-30 00:24:48.996577
  24719. 26950 424 2 8964 1.99 2007-04-30 02:18:01.996577
  24720. 26951 424 2 8999 2.99 2007-04-30 03:24:12.996577
  24721. 26952 424 1 9471 4.99 2007-04-30 21:31:02.996577
  24722. 26953 424 1 9516 8.99 2007-04-30 23:09:24.996577
  24723. 26954 424 2 9878 4.99 2007-04-30 12:10:28.996577
  24724. 26955 424 1 10017 6.99 2007-04-30 16:41:48.996577
  24725. 26956 425 1 3807 4.99 2007-04-06 13:40:10.996577
  24726. 26957 425 2 4361 2.99 2007-04-07 18:01:49.996577
  24727. 26958 425 2 4362 5.99 2007-04-07 18:03:56.996577
  24728. 26959 425 2 4483 8.99 2007-04-07 23:31:38.996577
  24729. 26960 425 1 4659 2.99 2007-04-08 08:21:54.996577
  24730. 26961 425 1 4884 7.99 2007-04-08 18:17:43.996577
  24731. 26962 425 1 4939 7.99 2007-04-08 21:03:56.996577
  24732. 26963 425 2 5363 2.99 2007-04-09 16:47:15.996577
  24733. 26964 425 1 5371 4.99 2007-04-09 17:16:14.996577
  24734. 26965 425 2 6318 2.99 2007-04-11 17:16:48.996577
  24735. 26966 425 1 6603 2.99 2007-04-12 06:21:21.996577
  24736. 26967 425 1 7249 4.99 2007-04-27 09:08:19.996577
  24737. 26968 425 1 8974 0.99 2007-04-30 02:37:42.996577
  24738. 26969 425 1 9170 0.99 2007-04-30 10:03:50.996577
  24739. 26970 425 2 9682 2.99 2007-04-30 05:15:36.996577
  24740. 26971 425 1 10121 0.99 2007-04-30 19:53:19.996577
  24741. 26972 425 2 10163 0.99 2007-04-30 21:41:00.996577
  24742. 26973 426 2 4114 2.99 2007-04-07 05:19:38.996577
  24743. 26974 426 2 4398 4.99 2007-04-07 19:47:10.996577
  24744. 26975 426 1 4900 4.99 2007-04-08 19:06:32.996577
  24745. 26976 426 1 5725 3.99 2007-04-10 09:49:47.996577
  24746. 26977 426 1 7495 4.99 2007-04-27 18:29:46.996577
  24747. 26978 426 1 7527 10.99 2007-04-27 19:42:54.996577
  24748. 26979 426 1 7711 4.99 2007-04-28 02:55:08.996577
  24749. 26980 426 1 7789 5.99 2007-04-28 05:50:33.996577
  24750. 26981 426 1 9185 5.99 2007-04-30 10:39:06.996577
  24751. 26982 426 2 9247 4.99 2007-04-30 12:42:22.996577
  24752. 26983 426 2 10172 10.99 2007-04-30 21:58:17.996577
  24753. 26984 427 1 4793 3.99 2007-04-08 14:58:27.996577
  24754. 26985 427 2 5476 2.99 2007-04-09 22:05:35.996577
  24755. 26986 427 2 5586 5.99 2007-04-10 02:45:32.996577
  24756. 26987 427 1 6423 6.99 2007-04-11 22:15:57.996577
  24757. 26988 427 1 6509 2.99 2007-04-12 02:03:27.996577
  24758. 26989 427 2 6938 7.99 2007-04-26 21:44:30.996577
  24759. 26990 427 2 8182 3.99 2007-04-28 20:47:38.996577
  24760. 26991 427 1 8531 5.99 2007-04-29 08:54:41.996577
  24761. 26992 427 2 8658 5.99 2007-04-29 13:45:03.996577
  24762. 26993 427 2 9978 2.99 2007-04-30 15:28:17.996577
  24763. 26994 428 1 3702 2.99 2007-04-06 08:42:22.996577
  24764. 26995 428 1 3925 5.99 2007-04-06 19:10:10.996577
  24765. 26996 428 1 4151 0.99 2007-04-07 07:17:28.996577
  24766. 26997 428 1 5373 4.99 2007-04-09 17:17:23.996577
  24767. 26998 428 1 6735 5.99 2007-04-12 12:36:46.996577
  24768. 26999 428 1 7823 6.99 2007-04-28 07:01:19.996577
  24769. 27000 428 1 8155 2.99 2007-04-28 19:25:32.996577
  24770. 27001 428 2 8387 4.99 2007-04-29 04:15:53.996577
  24771. 27002 428 2 8528 4.99 2007-04-29 08:52:48.996577
  24772. 27003 428 1 9904 5.99 2007-04-30 13:02:43.996577
  24773. 27004 428 2 9982 2.99 2007-04-30 15:37:28.996577
  24774. 27005 429 2 5868 4.99 2007-04-10 17:07:42.996577
  24775. 27006 429 2 6196 7.99 2007-04-11 10:34:12.996577
  24776. 27007 429 2 6886 6.99 2007-04-12 19:26:30.996577
  24777. 27008 429 1 6977 6.99 2007-04-26 23:09:16.996577
  24778. 27009 429 2 7352 4.99 2007-04-27 13:06:55.996577
  24779. 27010 429 2 8136 1.99 2007-04-28 18:34:14.996577
  24780. 27011 429 2 8143 2.99 2007-04-28 18:51:37.996577
  24781. 27012 429 2 8175 7.99 2007-04-28 20:06:42.996577
  24782. 27013 429 1 9849 0.99 2007-04-30 11:13:00.996577
  24783. 27014 430 1 5002 4.99 2007-04-08 23:45:34.996577
  24784. 27015 430 1 5217 5.99 2007-04-09 10:25:16.996577
  24785. 27016 430 2 5879 6.99 2007-04-10 17:41:13.996577
  24786. 27017 430 1 5958 6.99 2007-04-10 22:00:17.996577
  24787. 27018 430 2 6043 0.99 2007-04-11 01:46:36.996577
  24788. 27019 430 1 8560 4.99 2007-04-29 09:55:53.996577
  24789. 27020 430 2 9450 2.99 2007-04-30 20:32:30.996577
  24790. 27021 431 1 4144 3.99 2007-04-07 06:54:10.996577
  24791. 27022 431 1 4801 2.99 2007-04-08 15:20:02.996577
  24792. 27023 431 1 4863 0.99 2007-04-08 17:31:41.996577
  24793. 27024 431 2 7978 4.99 2007-04-28 12:44:40.996577
  24794. 27025 431 2 8810 4.99 2007-04-29 20:13:45.996577
  24795. 27026 432 1 4965 5.99 2007-04-08 22:15:23.996577
  24796. 27027 432 1 4973 4.99 2007-04-08 22:26:44.996577
  24797. 27028 432 1 5204 2.99 2007-04-09 09:22:40.996577
  24798. 27029 432 1 5322 6.99 2007-04-09 14:56:39.996577
  24799. 27030 432 1 5944 4.99 2007-04-10 21:20:10.996577
  24800. 27031 432 1 5990 4.99 2007-04-10 23:31:40.996577
  24801. 27032 432 2 7326 4.99 2007-04-27 12:19:06.996577
  24802. 27033 432 2 7681 0.99 2007-04-28 01:35:35.996577
  24803. 27034 432 2 8079 4.99 2007-04-28 16:27:02.996577
  24804. 27035 432 2 8094 6.99 2007-04-28 16:58:54.996577
  24805. 27036 432 2 9916 4.99 2007-04-30 13:23:18.996577
  24806. 27037 432 2 9984 2.99 2007-04-30 15:40:49.996577
  24807. 27038 433 2 4087 6.99 2007-04-07 03:59:22.996577
  24808. 27039 433 2 4158 0.99 2007-04-07 07:34:08.996577
  24809. 27040 433 2 4988 7.99 2007-04-08 23:14:40.996577
  24810. 27041 433 2 5457 0.99 2007-04-09 21:01:40.996577
  24811. 27042 433 1 5969 8.99 2007-04-10 22:31:48.996577
  24812. 27043 433 1 6765 5.99 2007-04-12 13:59:13.996577
  24813. 27044 433 1 6848 0.99 2007-04-12 17:52:33.996577
  24814. 27045 433 1 6850 4.99 2007-04-12 17:59:08.996577
  24815. 27046 433 1 7821 4.99 2007-04-28 06:59:49.996577
  24816. 27047 433 2 7907 4.99 2007-04-28 10:00:26.996577
  24817. 27048 433 1 8414 5.99 2007-04-29 05:17:01.996577
  24818. 27049 433 1 8713 2.99 2007-04-29 15:59:45.996577
  24819. 27050 433 2 9161 4.99 2007-04-30 09:47:44.996577
  24820. 27051 433 1 9294 3.99 2007-04-30 14:43:03.996577
  24821. 27052 434 1 4414 2.99 2007-04-07 20:28:47.996577
  24822. 27053 434 2 4654 6.99 2007-04-08 08:16:29.996577
  24823. 27054 434 2 4960 10.99 2007-04-08 21:55:42.996577
  24824. 27055 434 2 5464 2.99 2007-04-09 21:26:40.996577
  24825. 27056 434 2 6972 0.99 2007-04-26 22:59:51.996577
  24826. 27057 434 1 7260 6.99 2007-04-27 09:37:54.996577
  24827. 27058 434 2 7479 2.99 2007-04-27 17:46:43.996577
  24828. 27059 434 1 8205 0.99 2007-04-28 21:47:14.996577
  24829. 27060 434 1 9350 4.99 2007-04-30 16:52:56.996577
  24830. 27061 435 1 3690 0.99 2007-04-06 08:14:29.996577
  24831. 27062 435 1 3918 8.99 2007-04-06 18:54:41.996577
  24832. 27063 435 2 5220 4.99 2007-04-09 10:27:30.996577
  24833. 27064 435 2 6051 4.99 2007-04-11 02:15:07.996577
  24834. 27065 435 1 6935 2.99 2007-04-26 21:41:36.996577
  24835. 27066 435 1 8386 5.99 2007-04-29 04:13:56.996577
  24836. 27067 435 2 8891 4.99 2007-04-29 23:15:21.996577
  24837. 27068 435 2 9269 0.99 2007-04-30 13:30:59.996577
  24838. 27069 435 1 9655 3.99 2007-04-30 04:26:20.996577
  24839. 27070 435 2 9829 4.99 2007-04-30 10:27:04.996577
  24840. 27071 436 2 3851 1.99 2007-04-06 15:22:38.996577
  24841. 27072 436 2 3944 2.99 2007-04-06 20:02:37.996577
  24842. 27073 436 2 4643 0.99 2007-04-08 07:42:22.996577
  24843. 27074 436 2 4751 2.99 2007-04-08 12:36:18.996577
  24844. 27075 436 1 4782 4.99 2007-04-08 14:37:17.996577
  24845. 27076 436 1 5959 0.99 2007-04-10 22:04:02.996577
  24846. 27077 436 1 7593 4.99 2007-04-27 21:57:13.996577
  24847. 27078 436 2 8027 5.99 2007-04-28 14:38:23.996577
  24848. 27079 436 2 8097 9.99 2007-04-28 17:01:15.996577
  24849. 27080 436 1 9345 9.99 2007-04-30 16:42:17.996577
  24850. 27081 436 1 9539 0.99 2007-04-30 00:04:45.996577
  24851. 27082 436 1 9638 5.99 2007-04-30 03:58:53.996577
  24852. 27083 436 2 10216 3.99 2007-04-30 23:34:53.996577
  24853. 27084 437 1 3747 4.99 2007-04-06 10:39:40.996577
  24854. 27085 437 2 4765 4.99 2007-04-08 13:37:11.996577
  24855. 27086 437 2 5085 4.99 2007-04-09 04:05:15.996577
  24856. 27087 437 1 5167 1.99 2007-04-09 07:47:09.996577
  24857. 27088 437 2 5744 2.99 2007-04-10 10:36:59.996577
  24858. 27089 437 2 5864 6.99 2007-04-10 16:58:23.996577
  24859. 27090 437 2 8215 2.99 2007-04-28 22:12:22.996577
  24860. 27091 437 2 9172 2.99 2007-04-30 10:05:04.996577
  24861. 27092 437 2 9333 2.99 2007-04-30 16:22:11.996577
  24862. 27093 437 2 10009 8.99 2007-04-30 16:28:54.996577
  24863. 27094 438 1 4355 4.99 2007-04-07 17:49:45.996577
  24864. 27095 438 2 4446 2.99 2007-04-07 21:40:42.996577
  24865. 27096 438 2 5316 4.99 2007-04-09 14:38:08.996577
  24866. 27097 438 2 5426 4.99 2007-04-09 19:33:13.996577
  24867. 27098 438 1 5870 2.99 2007-04-10 17:08:51.996577
  24868. 27099 438 2 6138 4.99 2007-04-11 07:04:30.996577
  24869. 27100 438 1 6563 3.99 2007-04-12 04:02:35.996577
  24870. 27101 438 2 6615 4.99 2007-04-12 07:04:48.996577
  24871. 27102 438 2 7357 1.99 2007-04-27 13:16:57.996577
  24872. 27103 438 2 7374 8.99 2007-04-27 13:49:23.996577
  24873. 27104 438 1 7598 0.99 2007-04-27 22:04:27.996577
  24874. 27105 438 2 8547 2.99 2007-04-29 09:38:41.996577
  24875. 27106 438 1 9082 3.99 2007-04-30 06:39:48.996577
  24876. 27107 438 2 9782 0.99 2007-04-30 08:42:52.996577
  24877. 27108 439 2 3774 5.99 2007-04-06 11:53:33.996577
  24878. 27109 439 1 4528 2.99 2007-04-08 01:53:20.996577
  24879. 27110 439 1 4813 4.99 2007-04-08 15:38:22.996577
  24880. 27111 439 2 5801 5.99 2007-04-10 13:27:31.996577
  24881. 27112 439 1 5893 2.99 2007-04-10 18:33:56.996577
  24882. 27113 439 1 6577 2.99 2007-04-12 04:43:31.996577
  24883. 27114 439 2 6672 2.99 2007-04-12 10:17:42.996577
  24884. 27115 439 1 8343 2.99 2007-04-29 03:13:42.996577
  24885. 27116 439 1 8624 2.99 2007-04-29 12:24:02.996577
  24886. 27117 439 2 8703 2.99 2007-04-29 15:41:10.996577
  24887. 27118 439 1 9275 0.99 2007-04-30 13:37:41.996577
  24888. 27119 439 1 9322 6.99 2007-04-30 15:50:05.996577
  24889. 27120 440 1 4301 2.99 2007-04-07 15:05:49.996577
  24890. 27121 440 1 4946 7.99 2007-04-08 21:14:49.996577
  24891. 27122 440 2 5423 2.99 2007-04-09 19:25:14.996577
  24892. 27123 440 2 5594 0.99 2007-04-10 03:02:02.996577
  24893. 27124 440 2 5731 2.99 2007-04-10 10:00:18.996577
  24894. 27125 440 2 5782 0.99 2007-04-10 12:21:22.996577
  24895. 27126 440 2 7585 4.99 2007-04-27 21:46:48.996577
  24896. 27127 440 1 7614 0.99 2007-04-27 22:43:04.996577
  24897. 27128 440 1 7806 9.99 2007-04-28 06:26:43.996577
  24898. 27129 440 1 9001 4.99 2007-04-30 03:28:07.996577
  24899. 27130 440 1 9195 2.99 2007-04-30 10:58:09.996577
  24900. 27131 440 1 9547 4.99 2007-04-30 00:21:00.996577
  24901. 27132 441 2 3629 0.99 2007-04-06 04:51:48.996577
  24902. 27133 441 2 3695 2.99 2007-04-06 08:30:34.996577
  24903. 27134 441 1 4084 8.99 2007-04-07 03:44:26.996577
  24904. 27135 441 2 4208 0.99 2007-04-07 10:02:48.996577
  24905. 27136 441 2 5129 2.99 2007-04-09 05:56:59.996577
  24906. 27137 441 1 5811 0.99 2007-04-10 13:55:30.996577
  24907. 27138 441 2 6636 2.99 2007-04-12 08:18:12.996577
  24908. 27139 441 1 6642 4.99 2007-04-12 09:06:18.996577
  24909. 27140 441 1 6941 5.99 2007-04-26 21:47:15.996577
  24910. 27141 441 2 8237 2.99 2007-04-28 22:58:22.996577
  24911. 27142 441 1 8281 0.99 2007-04-29 00:14:26.996577
  24912. 27143 441 1 8427 4.99 2007-04-29 05:37:02.996577
  24913. 27144 441 1 8575 4.99 2007-04-29 10:21:13.996577
  24914. 27145 441 2 8617 4.99 2007-04-29 12:14:40.996577
  24915. 27146 441 2 9644 10.99 2007-04-30 04:09:01.996577
  24916. 27147 441 2 9854 2.99 2007-04-30 11:28:00.996577
  24917. 27148 441 2 10139 1.99 2007-04-30 20:30:46.996577
  24918. 27149 442 2 3545 4.99 2007-04-06 00:44:43.996577
  24919. 27150 442 1 3661 2.99 2007-04-06 06:38:28.996577
  24920. 27151 442 1 4052 5.99 2007-04-07 02:06:48.996577
  24921. 27152 442 1 4058 2.99 2007-04-07 02:31:16.996577
  24922. 27153 442 2 4365 2.99 2007-04-07 18:16:12.996577
  24923. 27154 442 2 4577 3.99 2007-04-08 04:27:26.996577
  24924. 27155 442 2 6590 4.99 2007-04-12 05:36:47.996577
  24925. 27156 442 2 6632 2.99 2007-04-12 08:01:36.996577
  24926. 27157 442 2 7427 2.99 2007-04-27 15:48:42.996577
  24927. 27158 442 1 7460 0.99 2007-04-27 17:10:01.996577
  24928. 27159 442 1 7671 2.99 2007-04-28 01:16:57.996577
  24929. 27160 442 1 8044 2.99 2007-04-28 15:17:38.996577
  24930. 27161 442 1 8758 4.99 2007-04-29 17:49:15.996577
  24931. 27162 442 1 9180 4.99 2007-04-30 10:31:41.996577
  24932. 27163 442 2 9873 5.99 2007-04-30 12:00:44.996577
  24933. 27164 442 1 10034 2.99 2007-04-30 17:13:56.996577
  24934. 27165 443 2 3510 5.99 2007-04-05 22:56:07.996577
  24935. 27166 443 2 6625 5.99 2007-04-12 07:35:06.996577
  24936. 27167 443 1 6913 4.99 2007-04-12 20:46:38.996577
  24937. 27168 443 2 6983 2.99 2007-04-26 23:23:29.996577
  24938. 27169 443 1 7317 2.99 2007-04-27 11:48:07.996577
  24939. 27170 443 1 7667 8.99 2007-04-28 01:05:48.996577
  24940. 27171 443 1 7987 9.99 2007-04-28 13:05:18.996577
  24941. 27172 443 2 9740 1.99 2007-04-30 07:36:29.996577
  24942. 27173 443 1 10014 4.99 2007-04-30 16:39:22.996577
  24943. 27174 443 2 10081 5.99 2007-04-30 18:36:10.996577
  24944. 27175 444 2 3498 4.99 2007-04-05 22:30:34.996577
  24945. 27176 444 1 3539 0.99 2007-04-06 00:07:34.996577
  24946. 27177 444 2 4648 6.99 2007-04-08 07:59:53.996577
  24947. 27178 444 1 5753 2.99 2007-04-10 10:58:09.996577
  24948. 27179 444 2 5825 2.99 2007-04-10 14:48:56.996577
  24949. 27180 444 2 6285 2.99 2007-04-11 15:20:33.996577
  24950. 27181 444 2 7679 3.99 2007-04-28 01:27:05.996577
  24951. 27182 444 2 9634 1.99 2007-04-30 03:34:28.996577
  24952. 27183 445 1 4041 0.99 2007-04-07 01:31:59.996577
  24953. 27184 445 1 4193 0.99 2007-04-07 09:25:47.996577
  24954. 27185 445 2 5225 2.99 2007-04-09 10:38:42.996577
  24955. 27186 445 1 6346 0.99 2007-04-11 18:37:00.996577
  24956. 27187 445 2 7351 2.99 2007-04-27 13:06:02.996577
  24957. 27188 445 2 7971 4.99 2007-04-28 12:29:13.996577
  24958. 27189 445 1 8851 8.99 2007-04-29 21:54:45.996577
  24959. 27190 445 2 8911 0.99 2007-04-29 23:59:23.996577
  24960. 27191 445 2 9625 4.99 2007-04-30 02:59:14.996577
  24961. 27192 445 1 10007 0.99 2007-04-30 16:23:24.996577
  24962. 27193 446 2 4358 4.99 2007-04-07 17:55:30.996577
  24963. 27194 446 2 5393 4.99 2007-04-09 18:03:38.996577
  24964. 27195 446 2 5409 2.99 2007-04-09 18:45:45.996577
  24965. 27196 446 2 6454 0.99 2007-04-11 23:28:38.996577
  24966. 27197 446 1 6510 4.99 2007-04-12 02:04:05.996577
  24967. 27198 446 1 6535 0.99 2007-04-12 03:12:09.996577
  24968. 27199 446 1 6734 6.99 2007-04-12 12:32:50.996577
  24969. 27200 446 1 7005 5.99 2007-04-27 00:07:02.996577
  24970. 27201 446 2 7089 0.99 2007-04-27 03:12:08.996577
  24971. 27202 446 1 7576 4.99 2007-04-27 21:23:01.996577
  24972. 27203 446 2 8284 6.99 2007-04-29 00:25:06.996577
  24973. 27204 446 1 8309 4.99 2007-04-29 01:50:46.996577
  24974. 27205 446 2 8670 4.99 2007-04-29 14:17:29.996577
  24975. 27206 446 2 8691 0.99 2007-04-29 15:09:49.996577
  24976. 27207 446 2 8922 9.99 2007-04-30 00:36:51.996577
  24977. 27208 446 1 8923 3.99 2007-04-30 00:37:15.996577
  24978. 27209 446 1 9116 0.99 2007-04-30 07:48:07.996577
  24979. 27210 447 2 4403 4.99 2007-04-07 19:58:06.996577
  24980. 27211 447 1 4858 6.99 2007-04-08 17:21:50.996577
  24981. 27212 447 1 5331 4.99 2007-04-09 15:22:32.996577
  24982. 27213 447 1 5734 0.99 2007-04-10 10:05:54.996577
  24983. 27214 447 2 5987 2.99 2007-04-10 23:23:57.996577
  24984. 27215 447 1 6651 0.99 2007-04-12 09:25:54.996577
  24985. 27216 447 1 6690 1.99 2007-04-12 10:51:28.996577
  24986. 27217 447 1 8537 8.99 2007-04-29 09:13:20.996577
  24987. 27218 447 2 8945 4.99 2007-04-30 01:40:14.996577
  24988. 27219 447 2 9076 5.99 2007-04-30 06:26:38.996577
  24989. 27220 447 1 9288 6.99 2007-04-30 14:25:05.996577
  24990. 27221 448 2 3959 5.99 2007-04-06 20:36:24.996577
  24991. 27222 448 2 3992 6.99 2007-04-06 22:05:22.996577
  24992. 27223 448 2 4024 0.99 2007-04-07 00:39:49.996577
  24993. 27224 448 2 4206 2.99 2007-04-07 10:00:42.996577
  24994. 27225 448 1 4406 1.99 2007-04-07 20:03:42.996577
  24995. 27226 448 2 4537 2.99 2007-04-08 02:17:06.996577
  24996. 27227 448 2 4558 2.99 2007-04-08 03:23:52.996577
  24997. 27228 448 2 6341 2.99 2007-04-11 18:16:28.996577
  24998. 27229 448 2 6985 4.99 2007-04-26 23:26:08.996577
  24999. 27230 448 1 9178 10.99 2007-04-30 10:27:16.996577
  25000. 27231 449 1 3503 0.99 2007-04-05 22:45:50.996577
  25001. 27232 449 1 3977 8.99 2007-04-06 21:29:15.996577
  25002. 27233 449 2 4433 3.99 2007-04-07 21:14:07.996577
  25003. 27234 449 1 5824 2.99 2007-04-10 14:48:19.996577
  25004. 27235 449 2 7755 6.99 2007-04-28 04:50:44.996577
  25005. 27236 449 2 7803 3.99 2007-04-28 06:20:39.996577
  25006. 27237 449 2 8002 2.99 2007-04-28 13:39:26.996577
  25007. 27238 449 2 10083 5.99 2007-04-30 18:38:45.996577
  25008. 27239 450 1 3570 3.99 2007-04-06 01:52:09.996577
  25009. 27240 450 1 5999 7.99 2007-04-10 23:49:48.996577
  25010. 27241 450 1 6028 4.99 2007-04-11 01:00:10.996577
  25011. 27242 450 2 7365 2.99 2007-04-27 13:28:46.996577
  25012. 27243 450 1 7610 0.99 2007-04-27 22:40:01.996577
  25013. 27244 450 1 7626 0.99 2007-04-27 23:17:27.996577
  25014. 27245 450 2 8733 4.99 2007-04-29 16:55:00.996577
  25015. 27246 451 2 3826 4.99 2007-04-06 14:20:24.996577
  25016. 27247 451 1 4538 2.99 2007-04-08 02:24:55.996577
  25017. 27248 451 1 4794 8.99 2007-04-08 14:58:37.996577
  25018. 27249 451 2 4930 4.99 2007-04-08 20:44:14.996577
  25019. 27250 451 1 5005 3.99 2007-04-08 23:50:10.996577
  25020. 27251 451 2 5518 8.99 2007-04-09 23:43:37.996577
  25021. 27252 451 1 7018 2.99 2007-04-27 00:48:48.996577
  25022. 27253 452 2 3638 3.99 2007-04-06 05:36:43.996577
  25023. 27254 452 1 3791 2.99 2007-04-06 12:53:22.996577
  25024. 27255 452 2 3907 6.99 2007-04-06 18:07:40.996577
  25025. 27256 452 1 4348 0.99 2007-04-07 17:30:31.996577
  25026. 27257 452 2 4353 4.99 2007-04-07 17:47:31.996577
  25027. 27258 452 2 4417 2.99 2007-04-07 20:33:31.996577
  25028. 27259 452 1 4720 0.99 2007-04-08 11:03:00.996577
  25029. 27260 452 1 5177 1.99 2007-04-09 08:11:47.996577
  25030. 27261 452 2 5480 0.99 2007-04-09 22:17:33.996577
  25031. 27262 452 2 6959 2.99 2007-04-26 22:36:17.996577
  25032. 27263 452 2 7899 6.99 2007-04-28 09:38:38.996577
  25033. 27264 452 1 8898 1.99 2007-04-29 23:30:46.996577
  25034. 27265 452 2 9379 6.99 2007-04-30 17:41:27.996577
  25035. 27266 453 2 3929 0.99 2007-04-06 19:21:05.996577
  25036. 27267 453 2 4033 8.99 2007-04-07 01:04:12.996577
  25037. 27268 453 1 4717 4.99 2007-04-08 10:51:09.996577
  25038. 27269 453 2 4805 2.99 2007-04-08 15:27:38.996577
  25039. 27270 453 2 5359 6.99 2007-04-09 16:39:18.996577
  25040. 27271 453 1 6752 4.99 2007-04-12 13:21:41.996577
  25041. 27272 453 1 7563 0.99 2007-04-27 20:54:02.996577
  25042. 27273 453 2 9289 6.99 2007-04-30 14:25:30.996577
  25043. 27274 453 2 9406 6.99 2007-04-30 18:52:26.996577
  25044. 27275 453 2 9900 1.99 2007-04-30 12:43:31.996577
  25045. 27276 454 1 3622 7.99 2007-04-06 04:33:30.996577
  25046. 27277 454 2 4562 4.99 2007-04-08 03:36:58.996577
  25047. 27278 454 2 5088 4.99 2007-04-09 04:13:42.996577
  25048. 27279 454 2 5446 2.99 2007-04-09 20:28:21.996577
  25049. 27280 454 2 6260 4.99 2007-04-11 13:54:55.996577
  25050. 27281 454 2 6701 0.99 2007-04-12 11:16:25.996577
  25051. 27282 454 2 8481 2.99 2007-04-29 07:14:23.996577
  25052. 27283 454 1 8806 0.99 2007-04-29 20:05:00.996577
  25053. 27284 454 2 9041 0.99 2007-04-30 05:01:02.996577
  25054. 27285 454 1 9372 9.99 2007-04-30 17:32:56.996577
  25055. 27286 454 1 10005 3.99 2007-04-30 16:22:17.996577
  25056. 27287 455 2 4195 2.99 2007-04-07 09:28:28.996577
  25057. 27288 455 1 4861 8.99 2007-04-08 17:25:56.996577
  25058. 27289 455 1 4964 2.99 2007-04-08 22:15:04.996577
  25059. 27290 455 1 5504 6.99 2007-04-09 23:05:04.996577
  25060. 27291 455 2 6729 4.99 2007-04-12 12:26:49.996577
  25061. 27292 455 1 7388 4.99 2007-04-27 14:22:45.996577
  25062. 27293 455 2 7498 4.99 2007-04-27 18:37:57.996577
  25063. 27294 455 2 7905 5.99 2007-04-28 09:55:23.996577
  25064. 27295 455 2 8291 2.99 2007-04-29 00:56:51.996577
  25065. 27296 456 1 3743 7.99 2007-04-06 10:32:20.996577
  25066. 27297 456 2 3881 2.99 2007-04-06 17:04:03.996577
  25067. 27298 456 1 4141 3.99 2007-04-07 06:47:46.996577
  25068. 27299 456 2 5964 0.99 2007-04-10 22:15:44.996577
  25069. 27300 456 2 6023 0.99 2007-04-11 00:44:23.996577
  25070. 27301 456 2 7248 2.99 2007-04-27 09:06:11.996577
  25071. 27302 456 1 8749 4.99 2007-04-29 17:41:41.996577
  25072. 27303 457 2 4600 5.99 2007-04-08 05:17:03.996577
  25073. 27304 457 1 5500 0.99 2007-04-09 22:56:43.996577
  25074. 27305 457 1 6467 7.99 2007-04-11 23:50:29.996577
  25075. 27306 457 1 7184 1.99 2007-04-27 06:50:52.996577
  25076. 27307 457 2 8373 4.99 2007-04-29 03:48:19.996577
  25077. 27308 457 1 8502 2.99 2007-04-29 07:44:07.996577
  25078. 27309 457 1 10049 2.99 2007-04-30 17:39:37.996577
  25079. 27310 458 2 4525 2.99 2007-04-08 01:43:26.996577
  25080. 27311 458 1 5412 2.99 2007-04-09 18:52:18.996577
  25081. 27312 458 1 5572 0.99 2007-04-10 02:17:26.996577
  25082. 27313 458 2 6250 3.99 2007-04-11 13:30:30.996577
  25083. 27314 458 1 6431 5.99 2007-04-11 22:32:23.996577
  25084. 27315 458 2 6595 7.99 2007-04-12 05:54:14.996577
  25085. 27316 458 1 6654 1.99 2007-04-12 09:34:54.996577
  25086. 27317 458 2 7923 3.99 2007-04-28 10:36:55.996577
  25087. 27318 458 1 8158 0.99 2007-04-28 19:37:12.996577
  25088. 27319 459 1 3506 2.99 2007-04-05 22:50:55.996577
  25089. 27320 459 2 4519 2.99 2007-04-08 01:19:49.996577
  25090. 27321 459 1 5301 3.99 2007-04-09 14:10:36.996577
  25091. 27322 459 1 5695 0.99 2007-04-10 08:12:06.996577
  25092. 27323 459 1 6206 0.99 2007-04-11 11:00:40.996577
  25093. 27324 459 2 6750 3.99 2007-04-12 13:18:05.996577
  25094. 27325 459 1 7623 6.99 2007-04-27 23:06:07.996577
  25095. 27326 459 2 7639 4.99 2007-04-27 23:43:02.996577
  25096. 27327 459 1 7717 4.99 2007-04-28 03:02:20.996577
  25097. 27328 459 1 7820 5.99 2007-04-28 06:57:17.996577
  25098. 27329 459 1 7913 6.99 2007-04-28 10:15:49.996577
  25099. 27330 459 1 8289 9.99 2007-04-29 00:51:50.996577
  25100. 27331 459 2 8557 10.99 2007-04-29 09:48:25.996577
  25101. 27332 459 1 8897 2.99 2007-04-29 23:28:43.996577
  25102. 27333 459 1 9137 6.99 2007-04-30 08:37:50.996577
  25103. 27334 459 2 9639 2.99 2007-04-30 04:00:36.996577
  25104. 27335 459 1 9744 4.99 2007-04-30 07:44:04.996577
  25105. 27336 459 2 10117 4.99 2007-04-30 19:42:57.996577
  25106. 27337 460 2 3820 4.99 2007-04-06 14:03:52.996577
  25107. 27338 460 1 4452 7.99 2007-04-07 22:00:20.996577
  25108. 27339 460 2 5482 3.99 2007-04-09 22:21:30.996577
  25109. 27340 460 1 6613 4.99 2007-04-12 06:58:33.996577
  25110. 27341 460 1 6788 5.99 2007-04-12 15:02:10.996577
  25111. 27342 460 1 7125 6.99 2007-04-27 04:39:26.996577
  25112. 27343 460 1 7785 3.99 2007-04-28 05:44:37.996577
  25113. 27344 460 2 8656 2.99 2007-04-29 13:34:18.996577
  25114. 27345 461 2 3698 0.99 2007-04-06 08:37:46.996577
  25115. 27346 461 2 4586 2.99 2007-04-08 04:40:59.996577
  25116. 27347 461 1 5650 0.99 2007-04-10 05:45:27.996577
  25117. 27348 461 1 5809 2.99 2007-04-10 13:47:56.996577
  25118. 27349 461 2 7334 2.99 2007-04-27 12:28:24.996577
  25119. 27350 461 2 7664 2.99 2007-04-28 00:52:49.996577
  25120. 27351 461 2 8133 0.99 2007-04-28 18:29:32.996577
  25121. 27352 461 2 8164 0.99 2007-04-28 19:45:45.996577
  25122. 27353 461 2 9499 4.99 2007-04-30 22:26:56.996577
  25123. 27354 461 1 9885 0.99 2007-04-30 12:27:58.996577
  25124. 27355 461 2 10113 4.99 2007-04-30 19:38:29.996577
  25125. 27356 462 1 4500 4.99 2007-04-08 00:38:27.996577
  25126. 27357 462 2 4728 3.99 2007-04-08 11:27:27.996577
  25127. 27358 462 1 6583 4.99 2007-04-12 05:10:57.996577
  25128. 27359 462 1 6630 0.99 2007-04-12 07:58:31.996577
  25129. 27360 462 1 6710 7.99 2007-04-12 11:51:35.996577
  25130. 27361 462 1 6721 6.99 2007-04-12 12:11:24.996577
  25131. 27362 462 2 7295 8.99 2007-04-27 11:07:13.996577
  25132. 27363 462 1 7324 6.99 2007-04-27 12:11:05.996577
  25133. 27364 462 1 7762 8.99 2007-04-28 05:02:49.996577
  25134. 27365 462 1 7932 4.99 2007-04-28 10:53:20.996577
  25135. 27366 462 2 7935 2.99 2007-04-28 11:01:43.996577
  25136. 27367 462 1 8066 2.99 2007-04-28 15:48:35.996577
  25137. 27368 462 1 8282 0.99 2007-04-29 00:17:30.996577
  25138. 27369 462 1 8290 3.99 2007-04-29 00:52:34.996577
  25139. 27370 462 2 8757 2.99 2007-04-29 17:47:36.996577
  25140. 27371 462 1 9891 0.99 2007-04-30 12:34:10.996577
  25141. 27372 463 1 5026 2.99 2007-04-09 01:01:00.996577
  25142. 27373 463 1 5157 2.99 2007-04-09 07:20:38.996577
  25143. 27374 463 1 5448 0.99 2007-04-09 20:39:40.996577
  25144. 27375 463 2 6294 0.99 2007-04-11 15:54:21.996577
  25145. 27376 463 1 6932 6.99 2007-04-26 21:36:30.996577
  25146. 27377 463 1 7013 0.99 2007-04-27 00:31:47.996577
  25147. 27378 463 1 7361 0.99 2007-04-27 13:22:21.996577
  25148. 27379 463 1 8762 2.99 2007-04-29 17:58:28.996577
  25149. 27380 463 2 9405 7.99 2007-04-30 18:50:43.996577
  25150. 27381 463 1 9954 2.99 2007-04-30 14:25:33.996577
  25151. 27382 464 1 3761 4.99 2007-04-06 11:21:10.996577
  25152. 27383 464 1 4337 5.99 2007-04-07 17:05:03.996577
  25153. 27384 464 2 5455 6.99 2007-04-09 20:57:11.996577
  25154. 27385 464 1 5910 4.99 2007-04-10 19:20:00.996577
  25155. 27386 464 2 6601 3.99 2007-04-12 06:13:15.996577
  25156. 27387 464 1 9600 5.99 2007-04-30 02:04:00.996577
  25157. 27388 465 1 4763 0.99 2007-04-08 13:25:58.996577
  25158. 27389 465 2 6904 3.99 2007-04-12 20:30:35.996577
  25159. 27390 465 2 7508 2.99 2007-04-27 19:01:34.996577
  25160. 27391 466 2 5048 0.99 2007-04-09 02:14:59.996577
  25161. 27392 466 1 5691 4.99 2007-04-10 07:58:15.996577
  25162. 27393 466 1 6073 6.99 2007-04-11 03:22:57.996577
  25163. 27394 466 2 7080 2.99 2007-04-27 02:53:51.996577
  25164. 27395 466 2 8276 0.99 2007-04-29 00:07:09.996577
  25165. 27396 466 1 9202 3.99 2007-04-30 11:11:50.996577
  25166. 27397 466 1 9257 2.99 2007-04-30 12:59:04.996577
  25167. 27398 467 1 4216 0.99 2007-04-07 10:30:00.996577
  25168. 27399 467 2 4222 4.99 2007-04-07 10:48:47.996577
  25169. 27400 467 1 4259 4.99 2007-04-07 12:50:44.996577
  25170. 27401 467 2 5160 4.99 2007-04-09 07:25:33.996577
  25171. 27402 467 2 6271 6.99 2007-04-11 14:30:01.996577
  25172. 27403 467 2 7360 2.99 2007-04-27 13:20:32.996577
  25173. 27404 467 2 7573 5.99 2007-04-27 21:14:46.996577
  25174. 27405 467 1 7611 2.99 2007-04-27 22:40:13.996577
  25175. 27406 467 1 8010 7.99 2007-04-28 13:54:46.996577
  25176. 27407 467 2 8061 6.99 2007-04-28 15:41:19.996577
  25177. 27408 467 2 8224 2.99 2007-04-28 22:27:28.996577
  25178. 27409 467 2 8480 8.99 2007-04-29 07:13:12.996577
  25179. 27410 467 1 8767 4.99 2007-04-29 18:10:59.996577
  25180. 27411 468 2 3724 2.99 2007-04-06 09:41:14.996577
  25181. 27412 468 1 3840 5.99 2007-04-06 14:59:25.996577
  25182. 27413 468 2 4184 3.99 2007-04-07 08:58:34.996577
  25183. 27414 468 2 4527 3.99 2007-04-08 01:48:36.996577
  25184. 27415 468 1 5285 2.99 2007-04-09 13:39:10.996577
  25185. 27416 468 1 6392 0.99 2007-04-11 20:53:45.996577
  25186. 27417 468 1 6581 4.99 2007-04-12 04:55:15.996577
  25187. 27418 468 2 6815 5.99 2007-04-12 16:42:36.996577
  25188. 27419 468 2 7292 4.99 2007-04-27 11:02:40.996577
  25189. 27420 468 1 7685 0.99 2007-04-28 01:41:26.996577
  25190. 27421 468 2 8423 5.99 2007-04-29 05:31:23.996577
  25191. 27422 468 2 8768 6.99 2007-04-29 18:11:28.996577
  25192. 27423 468 1 9598 0.99 2007-04-30 01:59:07.996577
  25193. 27424 468 1 9690 6.99 2007-04-30 05:34:55.996577
  25194. 27425 469 2 3522 4.99 2007-04-05 23:28:47.996577
  25195. 27426 469 1 3526 10.99 2007-04-05 23:31:55.996577
  25196. 27427 469 2 4067 3.99 2007-04-07 03:02:49.996577
  25197. 27428 469 2 4123 0.99 2007-04-07 05:44:45.996577
  25198. 27429 469 1 5133 0.99 2007-04-09 06:11:48.996577
  25199. 27430 469 1 5299 3.99 2007-04-09 14:06:35.996577
  25200. 27431 469 2 5664 6.99 2007-04-10 06:33:07.996577
  25201. 27432 469 2 6022 0.99 2007-04-11 00:44:19.996577
  25202. 27433 469 2 6099 4.99 2007-04-11 04:53:10.996577
  25203. 27434 469 1 6797 4.99 2007-04-12 15:15:32.996577
  25204. 27435 469 1 6955 3.99 2007-04-26 22:24:14.996577
  25205. 27436 469 2 7062 6.99 2007-04-27 02:20:27.996577
  25206. 27437 469 2 7271 6.99 2007-04-27 09:57:37.996577
  25207. 27438 469 2 7756 4.99 2007-04-28 04:51:18.996577
  25208. 27439 469 1 7914 4.99 2007-04-28 10:16:34.996577
  25209. 27440 469 2 8791 0.99 2007-04-29 19:21:49.996577
  25210. 27441 469 1 9187 2.99 2007-04-30 10:42:29.996577
  25211. 27442 469 2 10075 4.99 2007-04-30 18:27:08.996577
  25212. 27443 470 1 3764 5.99 2007-04-06 11:29:29.996577
  25213. 27444 470 1 3841 4.99 2007-04-06 15:02:26.996577
  25214. 27445 470 1 3922 4.99 2007-04-06 19:00:53.996577
  25215. 27446 470 1 4373 4.99 2007-04-07 18:39:25.996577
  25216. 27447 470 2 4502 6.99 2007-04-08 00:40:30.996577
  25217. 27448 470 2 5082 4.99 2007-04-09 03:57:04.996577
  25218. 27449 470 1 6009 3.99 2007-04-11 00:20:24.996577
  25219. 27450 470 1 6198 2.99 2007-04-11 10:40:43.996577
  25220. 27451 470 2 6703 4.99 2007-04-12 11:18:45.996577
  25221. 27452 470 1 6927 10.99 2007-04-26 21:24:26.996577
  25222. 27453 470 1 6942 5.99 2007-04-26 21:56:06.996577
  25223. 27454 470 1 7663 4.99 2007-04-28 00:48:14.996577
  25224. 27455 470 2 8476 8.99 2007-04-29 07:07:38.996577
  25225. 27456 470 1 8890 6.99 2007-04-29 23:10:32.996577
  25226. 27457 470 1 9422 5.99 2007-04-30 19:37:07.996577
  25227. 27458 470 1 9687 2.99 2007-04-30 05:21:20.996577
  25228. 27459 470 1 10006 4.99 2007-04-30 16:23:01.996577
  25229. 27460 471 1 3917 0.99 2007-04-06 18:47:55.996577
  25230. 27461 471 1 4020 2.99 2007-04-07 00:10:48.996577
  25231. 27462 471 2 6293 2.99 2007-04-11 15:53:23.996577
  25232. 27463 471 1 6336 8.99 2007-04-11 17:58:39.996577
  25233. 27464 471 1 6912 5.99 2007-04-12 20:45:42.996577
  25234. 27465 471 1 8199 0.99 2007-04-28 21:38:51.996577
  25235. 27466 471 1 9077 2.99 2007-04-30 06:28:45.996577
  25236. 27467 471 1 9502 0.99 2007-04-30 22:30:36.996577
  25237. 27468 471 2 9560 2.99 2007-04-30 00:45:53.996577
  25238. 27469 472 2 3815 6.99 2007-04-06 13:55:02.996577
  25239. 27470 472 2 5318 2.99 2007-04-09 14:39:59.996577
  25240. 27471 472 1 5612 3.99 2007-04-10 03:43:38.996577
  25241. 27472 472 1 6119 6.99 2007-04-11 06:13:12.996577
  25242. 27473 472 2 6274 5.99 2007-04-11 14:38:08.996577
  25243. 27474 472 1 6308 5.99 2007-04-11 16:37:07.996577
  25244. 27475 472 1 6584 2.99 2007-04-12 05:12:02.996577
  25245. 27476 472 2 8929 5.99 2007-04-30 00:56:48.996577
  25246. 27477 472 2 9926 6.99 2007-04-30 13:40:17.996577
  25247. 27478 473 1 3971 0.99 2007-04-06 21:19:06.996577
  25248. 27479 473 2 4006 4.99 2007-04-06 22:53:55.996577
  25249. 27480 473 2 4625 4.99 2007-04-08 06:42:52.996577
  25250. 27481 473 1 4873 0.99 2007-04-08 17:51:58.996577
  25251. 27482 473 2 5447 5.99 2007-04-09 20:37:54.996577
  25252. 27483 473 1 6446 2.99 2007-04-11 23:12:34.996577
  25253. 27484 473 2 6890 4.99 2007-04-12 19:31:29.996577
  25254. 27485 473 1 7111 4.99 2007-04-27 04:06:42.996577
  25255. 27486 473 1 7215 2.99 2007-04-27 07:52:26.996577
  25256. 27487 473 2 7918 1.99 2007-04-28 10:27:19.996577
  25257. 27488 473 2 7928 7.99 2007-04-28 10:44:17.996577
  25258. 27489 473 1 9025 4.99 2007-04-30 04:18:34.996577
  25259. 27490 473 2 9120 8.99 2007-04-30 07:54:34.996577
  25260. 27491 474 2 3787 4.99 2007-04-06 12:30:27.996577
  25261. 27492 474 2 4048 1.99 2007-04-07 01:59:18.996577
  25262. 27493 474 1 4481 2.99 2007-04-07 23:26:41.996577
  25263. 27494 474 1 4533 0.99 2007-04-08 02:00:27.996577
  25264. 27495 474 2 4785 0.99 2007-04-08 14:38:45.996577
  25265. 27496 474 1 4809 2.99 2007-04-08 15:31:48.996577
  25266. 27497 474 2 4886 4.99 2007-04-08 18:21:48.996577
  25267. 27498 474 1 5251 0.99 2007-04-09 12:04:36.996577
  25268. 27499 474 1 6499 7.99 2007-04-12 01:39:44.996577
  25269. 27500 474 1 8991 2.99 2007-04-30 03:11:20.996577
  25270. 27501 475 2 3980 5.99 2007-04-06 21:39:37.996577
  25271. 27502 475 1 4013 6.99 2007-04-06 23:26:26.996577
  25272. 27503 475 1 4617 4.99 2007-04-08 06:23:34.996577
  25273. 27504 475 2 5379 0.99 2007-04-09 17:36:29.996577
  25274. 27505 475 1 5407 0.99 2007-04-09 18:44:33.996577
  25275. 27506 475 2 5415 9.99 2007-04-09 18:58:29.996577
  25276. 27507 475 2 5469 2.99 2007-04-09 21:36:33.996577
  25277. 27508 475 1 6224 4.99 2007-04-11 12:10:44.996577
  25278. 27509 475 1 7641 7.99 2007-04-27 23:44:11.996577
  25279. 27510 475 1 7775 1.99 2007-04-28 05:33:02.996577
  25280. 27511 475 2 8207 5.99 2007-04-28 21:54:57.996577
  25281. 27512 475 1 9183 7.99 2007-04-30 10:38:22.996577
  25282. 27513 475 1 9647 2.99 2007-04-30 04:13:41.996577
  25283. 27514 475 1 9737 2.99 2007-04-30 07:27:44.996577
  25284. 27515 475 2 10162 3.99 2007-04-30 21:39:27.996577
  25285. 27516 476 2 3477 7.99 2007-04-05 21:33:43.996577
  25286. 27517 476 1 4010 5.99 2007-04-06 23:15:26.996577
  25287. 27518 476 2 4171 4.99 2007-04-07 08:17:30.996577
  25288. 27519 476 2 5644 4.99 2007-04-10 05:26:10.996577
  25289. 27520 476 1 6151 2.99 2007-04-11 07:53:43.996577
  25290. 27521 476 1 7461 0.99 2007-04-27 17:13:41.996577
  25291. 27522 476 1 8146 0.99 2007-04-28 19:06:02.996577
  25292. 27523 476 2 9325 6.99 2007-04-30 15:57:45.996577
  25293. 27524 476 2 9743 3.99 2007-04-30 07:41:08.996577
  25294. 27525 477 2 4237 5.99 2007-04-07 11:45:21.996577
  25295. 27526 477 1 4283 2.99 2007-04-07 13:58:01.996577
  25296. 27527 477 2 4956 7.99 2007-04-08 21:45:36.996577
  25297. 27528 477 2 6265 2.99 2007-04-11 14:12:17.996577
  25298. 27529 477 2 7302 2.99 2007-04-27 11:20:39.996577
  25299. 27530 477 2 7904 10.99 2007-04-28 09:54:05.996577
  25300. 27531 477 1 8515 6.99 2007-04-29 08:23:46.996577
  25301. 27532 477 1 8821 5.99 2007-04-29 20:46:38.996577
  25302. 27533 477 2 8857 2.99 2007-04-29 22:12:48.996577
  25303. 27534 477 2 9446 8.99 2007-04-30 20:21:27.996577
  25304. 27535 478 1 3691 4.99 2007-04-06 08:14:38.996577
  25305. 27536 478 1 5837 4.99 2007-04-10 15:26:16.996577
  25306. 27537 478 1 7522 2.99 2007-04-27 19:39:29.996577
  25307. 27538 478 2 8488 4.99 2007-04-29 07:26:04.996577
  25308. 27539 478 1 9665 4.99 2007-04-30 04:45:59.996577
  25309. 27540 478 2 10016 4.99 2007-04-30 16:41:32.996577
  25310. 27541 478 2 10127 0.99 2007-04-30 20:08:14.996577
  25311. 27542 479 2 3537 6.99 2007-04-06 00:05:19.996577
  25312. 27543 479 1 3798 0.99 2007-04-06 13:26:19.996577
  25313. 27544 479 2 4183 8.99 2007-04-07 08:56:59.996577
  25314. 27545 479 1 5481 0.99 2007-04-09 22:20:23.996577
  25315. 27546 479 1 5751 4.99 2007-04-10 10:53:37.996577
  25316. 27547 479 2 6084 7.99 2007-04-11 03:44:46.996577
  25317. 27548 479 1 6421 1.99 2007-04-11 22:13:51.996577
  25318. 27549 479 1 6597 0.99 2007-04-12 06:05:28.996577
  25319. 27550 479 2 6849 8.99 2007-04-12 17:57:45.996577
  25320. 27551 479 1 7060 7.99 2007-04-27 02:19:30.996577
  25321. 27552 479 2 7893 2.99 2007-04-28 09:17:53.996577
  25322. 27553 479 1 9347 5.99 2007-04-30 16:44:29.996577
  25323. 27554 479 1 9439 8.99 2007-04-30 20:06:38.996577
  25324. 27555 479 2 9697 2.99 2007-04-30 05:51:37.996577
  25325. 27556 479 2 9754 7.99 2007-04-30 07:52:09.996577
  25326. 27557 480 2 3507 7.99 2007-04-05 22:52:09.996577
  25327. 27558 480 2 5633 2.99 2007-04-10 04:50:50.996577
  25328. 27559 480 1 6191 2.99 2007-04-11 10:06:18.996577
  25329. 27560 480 1 7257 2.99 2007-04-27 09:32:43.996577
  25330. 27561 480 2 7910 9.99 2007-04-28 10:13:22.996577
  25331. 27562 480 2 8847 4.99 2007-04-29 21:42:07.996577
  25332. 27563 480 1 8967 6.99 2007-04-30 02:25:21.996577
  25333. 27564 480 2 9332 4.99 2007-04-30 16:22:05.996577
  25334. 27565 481 1 3863 0.99 2007-04-06 16:08:44.996577
  25335. 27566 481 1 4473 2.99 2007-04-07 22:50:36.996577
  25336. 27567 481 1 4505 1.99 2007-04-08 00:48:30.996577
  25337. 27568 481 1 4532 0.99 2007-04-08 01:59:05.996577
  25338. 27569 481 1 4668 10.99 2007-04-08 08:40:11.996577
  25339. 27570 481 2 5711 2.99 2007-04-10 09:05:46.996577
  25340. 27571 481 1 6044 0.99 2007-04-11 01:47:05.996577
  25341. 27572 481 1 7228 4.99 2007-04-27 08:23:59.996577
  25342. 27573 481 2 7836 7.99 2007-04-28 07:23:53.996577
  25343. 27574 481 1 8243 6.99 2007-04-28 23:03:59.996577
  25344. 27575 481 2 8271 6.99 2007-04-28 23:56:10.996577
  25345. 27576 481 1 9481 4.99 2007-04-30 21:54:31.996577
  25346. 27577 481 1 10018 3.99 2007-04-30 16:43:40.996577
  25347. 27578 482 2 3650 2.99 2007-04-06 06:02:41.996577
  25348. 27579 482 1 4768 4.99 2007-04-08 13:56:46.996577
  25349. 27580 482 1 5334 4.99 2007-04-09 15:28:39.996577
  25350. 27581 482 1 5466 4.99 2007-04-09 21:31:47.996577
  25351. 27582 482 2 5810 8.99 2007-04-10 13:50:30.996577
  25352. 27583 482 2 5880 2.99 2007-04-10 17:43:24.996577
  25353. 27584 482 1 6355 8.99 2007-04-11 19:24:55.996577
  25354. 27585 482 2 6447 7.99 2007-04-11 23:13:43.996577
  25355. 27586 482 2 6844 5.99 2007-04-12 17:43:19.996577
  25356. 27587 482 2 7840 6.99 2007-04-28 07:31:28.996577
  25357. 27588 482 2 8584 2.99 2007-04-29 10:36:19.996577
  25358. 27589 482 2 9874 6.99 2007-04-30 12:00:57.996577
  25359. 27590 483 2 3559 4.99 2007-04-06 01:18:08.996577
  25360. 27591 483 1 5823 4.99 2007-04-10 14:48:18.996577
  25361. 27592 483 2 6478 4.99 2007-04-12 00:10:10.996577
  25362. 27593 483 2 6899 9.99 2007-04-12 20:12:42.996577
  25363. 27594 483 2 7137 0.99 2007-04-27 05:09:07.996577
  25364. 27595 483 1 7381 4.99 2007-04-27 14:08:52.996577
  25365. 27596 483 1 7669 4.99 2007-04-28 01:12:33.996577
  25366. 27597 483 1 8057 7.99 2007-04-28 15:35:39.996577
  25367. 27598 483 1 8356 4.99 2007-04-29 03:27:22.996577
  25368. 27599 484 1 4214 4.99 2007-04-07 10:22:59.996577
  25369. 27600 484 1 5389 2.99 2007-04-09 17:54:11.996577
  25370. 27601 484 2 5708 6.99 2007-04-10 08:57:45.996577
  25371. 27602 484 1 5852 0.99 2007-04-10 16:11:56.996577
  25372. 27603 484 2 5866 6.99 2007-04-10 17:03:40.996577
  25373. 27604 484 2 5977 5.99 2007-04-10 22:45:04.996577
  25374. 27605 484 2 6296 2.99 2007-04-11 16:02:30.996577
  25375. 27606 484 1 6863 6.99 2007-04-12 18:27:00.996577
  25376. 27607 484 2 7440 4.99 2007-04-27 16:11:53.996577
  25377. 27608 484 2 7548 2.99 2007-04-27 20:21:44.996577
  25378. 27609 484 2 8508 0.99 2007-04-29 08:03:04.996577
  25379. 27610 484 2 9141 5.99 2007-04-30 08:44:30.996577
  25380. 27611 484 2 9414 9.99 2007-04-30 19:14:28.996577
  25381. 27612 484 1 9769 4.99 2007-04-30 08:20:42.996577
  25382. 27613 484 2 10166 8.99 2007-04-30 21:50:46.996577
  25383. 27614 485 2 3579 0.99 2007-04-06 02:16:13.996577
  25384. 27615 485 1 3899 1.99 2007-04-06 17:41:06.996577
  25385. 27616 485 1 3904 0.99 2007-04-06 17:59:23.996577
  25386. 27617 485 2 4137 3.99 2007-04-07 06:45:32.996577
  25387. 27618 485 2 4667 2.99 2007-04-08 08:34:52.996577
  25388. 27619 485 1 5193 2.99 2007-04-09 08:56:44.996577
  25389. 27620 485 1 5343 3.99 2007-04-09 15:52:09.996577
  25390. 27621 485 1 5367 3.99 2007-04-09 17:07:41.996577
  25391. 27622 485 1 5820 4.99 2007-04-10 14:33:25.996577
  25392. 27623 485 2 6810 4.99 2007-04-12 16:22:45.996577
  25393. 27624 485 2 6902 4.99 2007-04-12 20:25:42.996577
  25394. 27625 485 1 7144 4.99 2007-04-27 05:29:03.996577
  25395. 27626 485 2 8984 6.99 2007-04-30 03:00:16.996577
  25396. 27627 485 2 9039 2.99 2007-04-30 04:52:54.996577
  25397. 27628 485 1 9053 4.99 2007-04-30 05:36:05.996577
  25398. 27629 485 2 9189 2.99 2007-04-30 10:49:25.996577
  25399. 27630 485 1 9535 2.99 2007-04-30 23:47:19.996577
  25400. 27631 485 1 9565 0.99 2007-04-30 01:00:26.996577
  25401. 27632 486 1 3835 4.99 2007-04-06 14:51:11.996577
  25402. 27633 486 2 4110 4.99 2007-04-07 05:12:53.996577
  25403. 27634 486 1 4205 4.99 2007-04-07 09:54:05.996577
  25404. 27635 486 1 4381 2.99 2007-04-07 19:06:19.996577
  25405. 27636 486 1 4772 7.99 2007-04-08 14:09:37.996577
  25406. 27637 486 2 5006 4.99 2007-04-08 23:52:33.996577
  25407. 27638 486 2 6383 4.99 2007-04-11 20:35:19.996577
  25408. 27639 486 2 7127 4.99 2007-04-27 04:42:14.996577
  25409. 27640 486 2 7446 4.99 2007-04-27 16:28:50.996577
  25410. 27641 486 2 8425 8.99 2007-04-29 05:34:47.996577
  25411. 27642 486 2 9142 0.99 2007-04-30 08:49:29.996577
  25412. 27643 486 1 10079 2.99 2007-04-30 18:34:11.996577
  25413. 27644 487 2 3994 1.99 2007-04-06 22:07:27.996577
  25414. 27645 487 2 4854 2.99 2007-04-08 17:13:10.996577
  25415. 27646 487 1 5634 3.99 2007-04-10 04:54:14.996577
  25416. 27647 487 1 6928 2.99 2007-04-26 21:24:47.996577
  25417. 27648 487 1 7097 2.99 2007-04-27 03:24:35.996577
  25418. 27649 487 1 7788 0.99 2007-04-28 05:50:21.996577
  25419. 27650 487 2 7949 4.99 2007-04-28 11:35:50.996577
  25420. 27651 487 2 8510 1.99 2007-04-29 08:10:04.996577
  25421. 27652 487 2 8689 2.99 2007-04-29 15:07:24.996577
  25422. 27653 487 1 8814 4.99 2007-04-29 20:18:09.996577
  25423. 27654 487 1 8988 7.99 2007-04-30 03:07:15.996577
  25424. 27655 487 2 9457 2.99 2007-04-30 20:51:31.996577
  25425. 27656 487 1 9490 3.99 2007-04-30 22:13:35.996577
  25426. 27657 487 2 10123 0.99 2007-04-30 19:59:12.996577
  25427. 27658 488 2 4133 6.99 2007-04-07 06:40:52.996577
  25428. 27659 488 2 4233 5.99 2007-04-07 11:28:46.996577
  25429. 27660 488 1 5141 8.99 2007-04-09 06:33:40.996577
  25430. 27661 488 2 6548 5.99 2007-04-12 03:29:12.996577
  25431. 27662 488 1 7373 5.99 2007-04-27 13:47:59.996577
  25432. 27663 488 1 8005 2.99 2007-04-28 13:43:37.996577
  25433. 27664 488 2 8050 0.99 2007-04-28 15:24:13.996577
  25434. 27665 488 2 8064 2.99 2007-04-28 15:44:04.996577
  25435. 27666 488 2 9083 5.99 2007-04-30 06:42:53.996577
  25436. 27667 488 1 9532 2.99 2007-04-30 23:45:17.996577
  25437. 27668 488 1 9537 0.99 2007-04-30 23:51:26.996577
  25438. 27669 489 2 3816 2.99 2007-04-06 13:55:30.996577
  25439. 27670 489 1 4774 3.99 2007-04-08 14:10:54.996577
  25440. 27671 489 1 6963 4.99 2007-04-26 22:41:28.996577
  25441. 27672 489 2 9231 0.99 2007-04-30 12:10:41.996577
  25442. 27673 489 1 9459 4.99 2007-04-30 20:53:12.996577
  25443. 27674 490 1 3476 4.99 2007-04-05 21:31:03.996577
  25444. 27675 490 2 3932 4.99 2007-04-06 19:34:43.996577
  25445. 27676 490 1 4083 2.99 2007-04-07 03:41:41.996577
  25446. 27677 490 1 4906 5.99 2007-04-08 19:27:39.996577
  25447. 27678 490 2 5173 7.99 2007-04-09 08:00:10.996577
  25448. 27679 490 2 5489 0.99 2007-04-09 22:35:29.996577
  25449. 27680 490 1 5654 4.99 2007-04-10 05:53:12.996577
  25450. 27681 490 2 6230 2.99 2007-04-11 12:30:45.996577
  25451. 27682 490 1 6803 4.99 2007-04-12 15:50:15.996577
  25452. 27683 490 2 6888 2.99 2007-04-12 19:29:37.996577
  25453. 27684 490 2 6923 8.99 2007-04-12 21:09:14.996577
  25454. 27685 490 1 8552 5.99 2007-04-29 09:42:28.996577
  25455. 27686 490 2 9108 4.99 2007-04-30 07:25:02.996577
  25456. 27687 490 1 9554 0.99 2007-04-30 00:35:15.996577
  25457. 27688 491 1 4046 8.99 2007-04-07 01:56:25.996577
  25458. 27689 491 1 4392 2.99 2007-04-07 19:39:28.996577
  25459. 27690 491 2 5134 6.99 2007-04-09 06:21:38.996577
  25460. 27691 491 1 5889 4.99 2007-04-10 18:23:07.996577
  25461. 27692 491 2 6171 2.99 2007-04-11 08:58:01.996577
  25462. 27693 491 2 7019 3.99 2007-04-27 00:48:52.996577
  25463. 27694 491 2 7281 6.99 2007-04-27 10:27:46.996577
  25464. 27695 491 2 7688 7.99 2007-04-28 01:49:13.996577
  25465. 27696 491 1 7871 6.99 2007-04-28 08:45:03.996577
  25466. 27697 491 2 10036 2.99 2007-04-30 17:15:46.996577
  25467. 27698 491 2 10178 4.99 2007-04-30 22:11:30.996577
  25468. 27699 492 2 4128 8.99 2007-04-07 06:03:51.996577
  25469. 27700 492 1 4142 2.99 2007-04-07 06:48:11.996577
  25470. 27701 492 2 4258 6.99 2007-04-07 12:49:25.996577
  25471. 27702 492 2 5325 0.99 2007-04-09 15:04:13.996577
  25472. 27703 492 1 5609 0.99 2007-04-10 03:38:12.996577
  25473. 27704 492 1 6257 2.99 2007-04-11 13:52:12.996577
  25474. 27705 492 2 7203 2.99 2007-04-27 07:29:49.996577
  25475. 27706 493 2 3586 4.99 2007-04-06 02:53:08.996577
  25476. 27707 493 1 3655 5.99 2007-04-06 06:21:20.996577
  25477. 27708 493 1 6549 7.99 2007-04-12 03:30:27.996577
  25478. 27709 493 1 6552 4.99 2007-04-12 03:33:32.996577
  25479. 27710 493 1 7026 2.99 2007-04-27 01:17:24.996577
  25480. 27711 493 2 7043 7.99 2007-04-27 01:52:49.996577
  25481. 27712 493 1 8298 4.99 2007-04-29 01:16:02.996577
  25482. 27713 493 1 8616 2.99 2007-04-29 12:07:35.996577
  25483. 27714 494 1 3511 0.99 2007-04-05 23:10:27.996577
  25484. 27715 494 2 3803 2.99 2007-04-06 13:35:21.996577
  25485. 27716 494 2 3913 0.99 2007-04-06 18:39:26.996577
  25486. 27717 494 1 4086 3.99 2007-04-07 03:54:32.996577
  25487. 27718 494 2 4397 5.99 2007-04-07 19:43:20.996577
  25488. 27719 494 2 4551 7.99 2007-04-08 03:04:47.996577
  25489. 27720 494 2 5083 4.99 2007-04-09 03:58:58.996577
  25490. 27721 494 1 5180 2.99 2007-04-09 08:35:19.996577
  25491. 27722 494 2 7258 3.99 2007-04-27 09:34:20.996577
  25492. 27723 494 2 7546 8.99 2007-04-27 20:18:35.996577
  25493. 27724 494 2 7737 1.99 2007-04-28 03:43:29.996577
  25494. 27725 494 2 8333 2.99 2007-04-29 02:45:06.996577
  25495. 27726 494 2 8895 2.99 2007-04-29 23:17:43.996577
  25496. 27727 494 1 8934 4.99 2007-04-30 01:05:31.996577
  25497. 27728 494 2 9012 4.99 2007-04-30 03:47:23.996577
  25498. 27729 494 2 9510 7.99 2007-04-30 22:52:43.996577
  25499. 27730 494 1 9799 2.99 2007-04-30 09:26:58.996577
  25500. 27731 494 2 9943 7.99 2007-04-30 14:05:55.996577
  25501. 27732 495 2 3966 2.99 2007-04-06 21:07:15.996577
  25502. 27733 495 2 5484 7.99 2007-04-09 22:23:03.996577
  25503. 27734 495 2 6426 7.99 2007-04-11 22:25:04.996577
  25504. 27735 495 2 7191 2.99 2007-04-27 07:04:41.996577
  25505. 27736 495 1 8151 0.99 2007-04-28 19:19:18.996577
  25506. 27737 495 1 8383 1.99 2007-04-29 04:05:13.996577
  25507. 27738 495 1 8451 5.99 2007-04-29 06:13:22.996577
  25508. 27739 495 1 8672 5.99 2007-04-29 14:18:14.996577
  25509. 27740 495 1 9387 9.99 2007-04-30 17:55:31.996577
  25510. 27741 495 1 9741 4.99 2007-04-30 07:37:48.996577
  25511. 27742 495 2 10065 4.99 2007-04-30 17:56:00.996577
  25512. 27743 496 2 3569 3.99 2007-04-06 01:45:49.996577
  25513. 27744 496 1 4070 2.99 2007-04-07 03:05:35.996577
  25514. 27745 496 1 4261 4.99 2007-04-07 12:52:22.996577
  25515. 27746 496 1 4269 0.99 2007-04-07 13:06:59.996577
  25516. 27747 496 1 5559 5.99 2007-04-10 01:41:33.996577
  25517. 27748 496 2 5949 4.99 2007-04-10 21:41:26.996577
  25518. 27749 496 1 7133 2.99 2007-04-27 04:57:49.996577
  25519. 27750 496 2 8221 2.99 2007-04-28 22:15:45.996577
  25520. 27751 497 1 3696 2.99 2007-04-06 08:33:21.996577
  25521. 27752 497 2 4218 7.99 2007-04-07 10:38:50.996577
  25522. 27753 497 1 4516 4.99 2007-04-08 01:12:07.996577
  25523. 27754 497 1 4578 0.99 2007-04-08 04:28:43.996577
  25524. 27755 497 2 4795 0.99 2007-04-08 15:01:20.996577
  25525. 27756 497 1 5030 4.99 2007-04-09 01:04:09.996577
  25526. 27757 497 1 5239 4.99 2007-04-09 11:41:01.996577
  25527. 27758 497 2 7603 2.99 2007-04-27 22:23:10.996577
  25528. 27759 497 2 8011 2.99 2007-04-28 13:55:05.996577
  25529. 27760 497 1 8150 6.99 2007-04-28 19:19:07.996577
  25530. 27761 497 2 8813 6.99 2007-04-29 20:16:21.996577
  25531. 27762 497 2 8867 4.99 2007-04-29 22:30:44.996577
  25532. 27763 497 1 9273 9.99 2007-04-30 13:34:02.996577
  25533. 27764 497 2 9850 4.99 2007-04-30 11:15:18.996577
  25534. 27765 498 2 3828 0.99 2007-04-06 14:25:56.996577
  25535. 27766 498 2 3856 2.99 2007-04-06 15:33:12.996577
  25536. 27767 498 1 4311 4.99 2007-04-07 15:59:40.996577
  25537. 27768 498 2 4972 2.99 2007-04-08 22:24:35.996577
  25538. 27769 498 1 5286 2.99 2007-04-09 13:40:07.996577
  25539. 27770 498 2 5884 0.99 2007-04-10 18:00:04.996577
  25540. 27771 498 1 6058 2.99 2007-04-11 02:32:17.996577
  25541. 27772 498 1 6088 1.99 2007-04-11 04:09:01.996577
  25542. 27773 498 1 7285 4.99 2007-04-27 10:42:32.996577
  25543. 27774 498 1 7286 6.99 2007-04-27 10:52:15.996577
  25544. 27775 498 1 7341 4.99 2007-04-27 12:52:21.996577
  25545. 27776 498 2 8020 4.99 2007-04-28 14:11:58.996577
  25546. 27777 498 1 8229 2.99 2007-04-28 22:37:34.996577
  25547. 27778 498 2 9021 0.99 2007-04-30 04:02:50.996577
  25548. 27779 498 2 9689 4.99 2007-04-30 05:28:34.996577
  25549. 27780 499 1 3794 4.99 2007-04-06 13:03:52.996577
  25550. 27781 499 1 5022 2.99 2007-04-09 00:39:20.996577
  25551. 27782 499 2 5392 2.99 2007-04-09 18:00:56.996577
  25552. 27783 499 2 5427 3.99 2007-04-09 19:40:52.996577
  25553. 27784 499 1 5956 4.99 2007-04-10 21:51:34.996577
  25554. 27785 499 2 6723 4.99 2007-04-12 12:13:23.996577
  25555. 27786 499 1 7800 0.99 2007-04-28 06:19:25.996577
  25556. 27787 499 1 7831 0.99 2007-04-28 07:12:47.996577
  25557. 27788 499 1 7898 6.99 2007-04-28 09:36:48.996577
  25558. 27789 499 2 8130 4.99 2007-04-28 18:16:41.996577
  25559. 27790 499 1 8770 3.99 2007-04-29 18:22:16.996577
  25560. 27791 499 1 9588 0.99 2007-04-30 01:41:39.996577
  25561. 27792 500 2 3926 4.99 2007-04-06 19:11:01.996577
  25562. 27793 500 1 4561 0.99 2007-04-08 03:31:09.996577
  25563. 27794 500 2 4790 4.99 2007-04-08 14:53:53.996577
  25564. 27795 500 2 6018 4.99 2007-04-11 00:35:02.996577
  25565. 27796 500 2 6187 2.99 2007-04-11 09:57:17.996577
  25566. 27797 500 2 6801 3.99 2007-04-12 15:37:34.996577
  25567. 27798 500 1 7857 0.99 2007-04-28 08:18:06.996577
  25568. 27799 500 1 7925 2.99 2007-04-28 10:38:28.996577
  25569. 27800 500 1 8538 6.99 2007-04-29 09:13:43.996577
  25570. 27801 500 1 8925 0.99 2007-04-30 00:37:40.996577
  25571. 27802 500 2 9290 3.99 2007-04-30 14:27:34.996577
  25572. 27803 501 2 3541 6.99 2007-04-06 00:18:37.996577
  25573. 27804 501 2 3723 6.99 2007-04-06 09:40:28.996577
  25574. 27805 501 2 4769 2.99 2007-04-08 13:57:42.996577
  25575. 27806 501 2 5520 1.99 2007-04-09 23:59:07.996577
  25576. 27807 501 2 6095 7.99 2007-04-11 04:35:07.996577
  25577. 27808 501 1 7456 0.99 2007-04-27 17:03:19.996577
  25578. 27809 501 1 8021 2.99 2007-04-28 14:13:50.996577
  25579. 27810 501 2 8529 2.99 2007-04-29 08:52:57.996577
  25580. 27811 501 1 9359 2.99 2007-04-30 17:07:54.996577
  25581. 27812 502 2 3614 2.99 2007-04-06 04:14:31.996577
  25582. 27813 502 1 4606 2.99 2007-04-08 05:34:16.996577
  25583. 27814 502 2 5368 5.99 2007-04-09 17:10:25.996577
  25584. 27815 502 2 5662 2.99 2007-04-10 06:27:50.996577
  25585. 27816 502 2 6414 7.99 2007-04-11 21:54:39.996577
  25586. 27817 502 1 6760 8.99 2007-04-12 13:44:26.996577
  25587. 27818 502 2 6828 2.99 2007-04-12 17:07:17.996577
  25588. 27819 502 2 6924 8.99 2007-04-26 21:20:19.996577
  25589. 27820 502 2 7213 3.99 2007-04-27 07:50:55.996577
  25590. 27821 502 1 7255 4.99 2007-04-27 09:18:20.996577
  25591. 27822 502 1 7757 4.99 2007-04-28 04:51:26.996577
  25592. 27823 502 1 7884 4.99 2007-04-28 09:05:50.996577
  25593. 27824 502 2 8034 4.99 2007-04-28 14:48:52.996577
  25594. 27825 502 2 9232 0.99 2007-04-30 12:11:26.996577
  25595. 27826 502 1 9599 4.99 2007-04-30 02:00:32.996577
  25596. 27827 503 2 3935 6.99 2007-04-06 19:36:55.996577
  25597. 27828 503 2 4570 2.99 2007-04-08 04:02:25.996577
  25598. 27829 503 2 5465 2.99 2007-04-09 21:29:39.996577
  25599. 27830 503 1 5925 6.99 2007-04-10 20:09:53.996577
  25600. 27831 503 1 6166 4.99 2007-04-11 08:47:31.996577
  25601. 27832 503 1 6529 2.99 2007-04-12 02:59:30.996577
  25602. 27833 503 2 6950 4.99 2007-04-26 22:13:59.996577
  25603. 27834 503 1 8178 2.99 2007-04-28 20:22:57.996577
  25604. 27835 503 2 9725 0.99 2007-04-30 07:03:44.996577
  25605. 27836 503 1 9974 4.99 2007-04-30 15:19:37.996577
  25606. 27837 504 2 3712 9.99 2007-04-06 09:16:01.996577
  25607. 27838 504 1 3713 6.99 2007-04-06 09:17:56.996577
  25608. 27839 504 1 4329 5.99 2007-04-07 16:32:42.996577
  25609. 27840 504 1 4757 0.99 2007-04-08 13:05:17.996577
  25610. 27841 504 2 5153 6.99 2007-04-09 07:03:31.996577
  25611. 27842 504 2 7342 3.99 2007-04-27 12:53:43.996577
  25612. 27843 504 1 7567 2.99 2007-04-27 21:06:31.996577
  25613. 27844 504 2 7807 2.99 2007-04-28 06:26:53.996577
  25614. 27845 504 2 7875 1.99 2007-04-28 08:52:14.996577
  25615. 27846 504 2 7944 4.99 2007-04-28 11:19:48.996577
  25616. 27847 504 1 8393 9.99 2007-04-29 04:30:37.996577
  25617. 27848 505 2 4008 5.99 2007-04-06 22:55:09.996577
  25618. 27849 505 1 4507 6.99 2007-04-08 00:51:11.996577
  25619. 27850 505 2 5976 9.99 2007-04-10 22:45:01.996577
  25620. 27851 505 2 6292 4.99 2007-04-11 15:51:59.996577
  25621. 27852 505 1 6441 0.99 2007-04-11 22:55:34.996577
  25622. 27853 505 1 7784 4.99 2007-04-28 05:43:58.996577
  25623. 27854 505 2 10219 5.99 2007-04-30 23:38:59.996577
  25624. 27855 506 2 4594 7.99 2007-04-08 05:08:32.996577
  25625. 27856 506 2 4640 6.99 2007-04-08 07:28:00.996577
  25626. 27857 506 2 4806 8.99 2007-04-08 15:29:28.996577
  25627. 27858 506 2 5985 0.99 2007-04-10 23:20:24.996577
  25628. 27859 506 1 6783 2.99 2007-04-12 14:56:22.996577
  25629. 27860 506 1 7020 0.99 2007-04-27 00:52:53.996577
  25630. 27861 506 2 8096 9.99 2007-04-28 17:01:12.996577
  25631. 27862 506 2 8506 0.99 2007-04-29 07:52:18.996577
  25632. 27863 506 2 9654 3.99 2007-04-30 04:26:08.996577
  25633. 27864 506 2 9972 2.99 2007-04-30 15:11:09.996577
  25634. 27865 507 1 3660 4.99 2007-04-06 06:35:55.996577
  25635. 27866 507 1 3880 2.99 2007-04-06 17:01:15.996577
  25636. 27867 507 2 4440 0.99 2007-04-07 21:29:24.996577
  25637. 27868 507 2 4455 2.99 2007-04-07 22:12:12.996577
  25638. 27869 507 2 4744 0.99 2007-04-08 12:12:23.996577
  25639. 27870 507 2 4901 2.99 2007-04-08 19:13:17.996577
  25640. 27871 507 1 5962 0.99 2007-04-10 22:13:48.996577
  25641. 27872 507 1 6351 6.99 2007-04-11 19:00:10.996577
  25642. 27873 507 1 6396 1.99 2007-04-11 20:59:34.996577
  25643. 27874 507 1 6891 2.99 2007-04-12 19:36:01.996577
  25644. 27875 507 2 7770 5.99 2007-04-28 05:18:01.996577
  25645. 27876 507 1 7970 5.99 2007-04-28 12:27:04.996577
  25646. 27877 507 2 8369 2.99 2007-04-29 03:44:08.996577
  25647. 27878 507 2 8976 2.99 2007-04-30 02:40:58.996577
  25648. 27879 507 1 9003 2.99 2007-04-30 03:31:18.996577
  25649. 27880 508 2 5657 9.99 2007-04-10 06:02:09.996577
  25650. 27881 508 2 5978 6.99 2007-04-10 22:45:20.996577
  25651. 27882 508 1 6101 4.99 2007-04-11 05:18:59.996577
  25652. 27883 508 2 6646 0.99 2007-04-12 09:10:00.996577
  25653. 27884 508 2 6929 8.99 2007-04-26 21:27:45.996577
  25654. 27885 508 1 7283 5.99 2007-04-27 10:31:07.996577
  25655. 27886 508 2 7322 3.99 2007-04-27 12:05:52.996577
  25656. 27887 508 2 7327 7.99 2007-04-27 12:21:52.996577
  25657. 27888 508 2 7668 2.99 2007-04-28 01:09:57.996577
  25658. 27889 508 2 7676 4.99 2007-04-28 01:23:53.996577
  25659. 27890 508 2 8191 4.99 2007-04-28 21:15:40.996577
  25660. 27891 508 2 9694 5.99 2007-04-30 05:41:42.996577
  25661. 27892 508 1 9706 2.99 2007-04-30 06:11:45.996577
  25662. 27893 508 2 10128 2.99 2007-04-30 20:08:30.996577
  25663. 27894 509 2 4139 1.99 2007-04-07 06:46:01.996577
  25664. 27895 509 2 4266 4.99 2007-04-07 13:03:16.996577
  25665. 27896 509 2 4832 2.99 2007-04-08 16:35:31.996577
  25666. 27897 509 2 5008 2.99 2007-04-09 00:00:08.996577
  25667. 27898 509 1 6591 5.99 2007-04-12 05:42:12.996577
  25668. 27899 509 1 7848 6.99 2007-04-28 07:52:57.996577
  25669. 27900 509 1 8114 8.99 2007-04-28 17:42:32.996577
  25670. 27901 509 1 8214 5.99 2007-04-28 22:06:23.996577
  25671. 27902 509 2 8240 0.99 2007-04-28 23:01:58.996577
  25672. 27903 509 1 10189 4.99 2007-04-30 22:53:26.996577
  25673. 27904 510 2 3744 2.99 2007-04-06 10:38:28.996577
  25674. 27905 510 1 4014 4.99 2007-04-06 23:27:20.996577
  25675. 27906 510 2 5851 4.99 2007-04-10 16:09:13.996577
  25676. 27907 510 1 6531 1.99 2007-04-12 03:03:50.996577
  25677. 27908 510 1 7457 2.99 2007-04-27 17:03:43.996577
  25678. 27909 510 1 7678 8.99 2007-04-28 01:26:42.996577
  25679. 27910 510 2 7794 9.99 2007-04-28 05:56:29.996577
  25680. 27911 510 2 8763 3.99 2007-04-29 18:06:50.996577
  25681. 27912 510 1 8926 4.99 2007-04-30 00:38:57.996577
  25682. 27913 510 1 10131 0.99 2007-04-30 20:13:54.996577
  25683. 27914 511 2 3600 4.99 2007-04-06 03:48:08.996577
  25684. 27915 511 1 3852 0.99 2007-04-06 15:26:15.996577
  25685. 27916 511 1 4482 4.99 2007-04-07 23:29:44.996577
  25686. 27917 511 2 5164 3.99 2007-04-09 07:31:40.996577
  25687. 27918 511 1 5601 0.99 2007-04-10 03:25:21.996577
  25688. 27919 511 2 6040 0.99 2007-04-11 01:42:52.996577
  25689. 27920 511 1 6320 0.99 2007-04-11 17:19:21.996577
  25690. 27921 511 1 8026 4.99 2007-04-28 14:34:04.996577
  25691. 27922 511 1 9095 0.99 2007-04-30 07:07:02.996577
  25692. 27923 511 1 9143 6.99 2007-04-30 08:50:37.996577
  25693. 27924 511 1 9760 4.99 2007-04-30 07:57:59.996577
  25694. 27925 512 1 4752 5.99 2007-04-08 12:43:46.996577
  25695. 27926 512 1 4799 0.99 2007-04-08 15:17:53.996577
  25696. 27927 512 1 5064 6.99 2007-04-09 03:07:17.996577
  25697. 27928 512 2 5813 3.99 2007-04-10 14:03:03.996577
  25698. 27929 512 1 7219 2.99 2007-04-27 08:04:02.996577
  25699. 27930 512 1 7507 0.99 2007-04-27 19:00:14.996577
  25700. 27931 512 1 7715 6.99 2007-04-28 03:01:04.996577
  25701. 27932 512 2 8868 4.99 2007-04-29 22:30:52.996577
  25702. 27933 512 1 9055 2.99 2007-04-30 05:41:33.996577
  25703. 27934 513 2 3872 0.99 2007-04-06 16:28:45.996577
  25704. 27935 513 2 4055 2.99 2007-04-07 02:17:39.996577
  25705. 27936 513 2 4178 4.99 2007-04-07 08:42:57.996577
  25706. 27937 513 2 4220 4.99 2007-04-07 10:41:02.996577
  25707. 27938 513 1 5741 7.99 2007-04-10 10:24:06.996577
  25708. 27939 513 1 6027 4.99 2007-04-11 00:54:55.996577
  25709. 27940 513 1 7655 0.99 2007-04-28 00:29:37.996577
  25710. 27941 513 2 8320 4.99 2007-04-29 02:18:24.996577
  25711. 27942 513 1 8350 4.99 2007-04-29 03:19:05.996577
  25712. 27943 513 2 8683 9.99 2007-04-29 14:44:09.996577
  25713. 27944 513 1 8798 5.99 2007-04-29 19:44:04.996577
  25714. 27945 513 2 9862 2.99 2007-04-30 11:33:29.996577
  25715. 27946 513 1 10012 3.99 2007-04-30 16:34:32.996577
  25716. 27947 514 2 3668 5.99 2007-04-06 07:05:14.996577
  25717. 27948 514 2 3860 2.99 2007-04-06 15:48:50.996577
  25718. 27949 514 1 7791 4.99 2007-04-28 05:51:17.996577
  25719. 27950 514 1 9038 3.99 2007-04-30 04:52:01.996577
  25720. 27951 515 2 3782 0.99 2007-04-06 12:25:29.996577
  25721. 27952 515 2 4111 6.99 2007-04-07 05:16:22.996577
  25722. 27953 515 2 5216 0.99 2007-04-09 10:23:24.996577
  25723. 27954 515 2 5546 2.99 2007-04-10 01:19:03.996577
  25724. 27955 515 2 5697 4.99 2007-04-10 08:13:10.996577
  25725. 27956 515 2 7429 3.99 2007-04-27 15:53:16.996577
  25726. 27957 515 1 8706 4.99 2007-04-29 15:47:41.996577
  25727. 27958 515 1 10159 4.99 2007-04-30 21:22:56.996577
  25728. 27959 516 2 5780 3.99 2007-04-10 12:14:49.996577
  25729. 27960 516 2 6677 6.99 2007-04-12 10:26:40.996577
  25730. 27961 516 1 6858 6.99 2007-04-12 18:22:17.996577
  25731. 27962 516 1 7628 4.99 2007-04-27 23:26:30.996577
  25732. 27963 516 1 7882 4.99 2007-04-28 09:02:08.996577
  25733. 27964 516 2 8396 4.99 2007-04-29 04:35:26.996577
  25734. 27965 516 2 8534 5.99 2007-04-29 08:58:39.996577
  25735. 27966 516 2 8585 2.99 2007-04-29 10:42:44.996577
  25736. 27967 516 2 9243 4.99 2007-04-30 12:34:53.996577
  25737. 27968 517 2 4094 2.99 2007-04-07 04:28:47.996577
  25738. 27969 517 1 4109 4.99 2007-04-07 05:08:09.996577
  25739. 27970 517 1 4369 4.99 2007-04-07 18:30:04.996577
  25740. 27971 517 2 4374 4.99 2007-04-07 18:42:24.996577
  25741. 27972 517 2 4934 0.99 2007-04-08 20:47:08.996577
  25742. 27973 517 1 4993 2.99 2007-04-08 23:18:13.996577
  25743. 27974 517 1 5206 7.99 2007-04-09 09:39:27.996577
  25744. 27975 517 2 5974 5.99 2007-04-10 22:39:03.996577
  25745. 27976 517 2 6594 4.99 2007-04-12 05:54:09.996577
  25746. 27977 517 2 6903 0.99 2007-04-12 20:26:41.996577
  25747. 27978 517 2 7988 3.99 2007-04-28 13:05:44.996577
  25748. 27979 517 1 10063 4.99 2007-04-30 17:53:39.996577
  25749. 27980 518 1 3652 0.99 2007-04-06 06:12:56.996577
  25750. 27981 518 2 4029 7.99 2007-04-07 00:48:10.996577
  25751. 27982 518 2 4661 4.99 2007-04-08 08:23:32.996577
  25752. 27983 518 2 4948 6.99 2007-04-08 21:22:47.996577
  25753. 27984 518 1 6652 2.99 2007-04-12 09:28:04.996577
  25754. 27985 518 1 6957 2.99 2007-04-26 22:28:26.996577
  25755. 27986 518 2 7038 3.99 2007-04-27 01:35:55.996577
  25756. 27987 518 2 7154 4.99 2007-04-27 05:44:43.996577
  25757. 27988 518 2 7382 2.99 2007-04-27 14:11:41.996577
  25758. 27989 518 1 7657 2.99 2007-04-28 00:37:26.996577
  25759. 27990 518 2 7839 6.99 2007-04-28 07:29:39.996577
  25760. 27991 518 1 8107 3.99 2007-04-28 17:31:42.996577
  25761. 27992 518 1 8397 2.99 2007-04-29 04:38:01.996577
  25762. 27993 519 2 4564 0.99 2007-04-08 03:38:04.996577
  25763. 27994 519 2 4773 2.99 2007-04-08 14:10:05.996577
  25764. 27995 519 2 5236 0.99 2007-04-09 11:24:55.996577
  25765. 27996 519 2 5547 5.99 2007-04-10 01:21:13.996577
  25766. 27997 519 2 6063 0.99 2007-04-11 02:45:17.996577
  25767. 27998 519 1 6599 3.99 2007-04-12 06:09:40.996577
  25768. 27999 519 1 9417 6.99 2007-04-30 19:23:21.996577
  25769. 28000 519 2 9441 4.99 2007-04-30 20:11:54.996577
  25770. 28001 519 2 9534 7.99 2007-04-30 23:46:53.996577
  25771. 28002 519 2 9645 0.99 2007-04-30 04:11:15.996577
  25772. 28003 519 2 9886 7.99 2007-04-30 12:28:39.996577
  25773. 28004 519 1 9905 0.99 2007-04-30 13:05:29.996577
  25774. 28005 519 1 10097 5.99 2007-04-30 19:08:04.996577
  25775. 28006 520 2 3482 4.99 2007-04-05 21:41:48.996577
  25776. 28007 520 1 3499 7.99 2007-04-05 22:32:46.996577
  25777. 28008 520 2 4346 2.99 2007-04-07 17:27:11.996577
  25778. 28009 520 2 5799 4.99 2007-04-10 13:22:01.996577
  25779. 28010 520 1 5802 10.99 2007-04-10 13:30:43.996577
  25780. 28011 520 1 5853 3.99 2007-04-10 16:13:39.996577
  25781. 28012 520 1 6029 2.99 2007-04-11 01:05:12.996577
  25782. 28013 520 2 7198 5.99 2007-04-27 07:18:33.996577
  25783. 28014 520 1 7720 4.99 2007-04-28 03:10:10.996577
  25784. 28015 520 1 7936 0.99 2007-04-28 11:01:47.996577
  25785. 28016 520 1 8294 2.99 2007-04-29 01:01:07.996577
  25786. 28017 520 2 8435 2.99 2007-04-29 05:48:42.996577
  25787. 28018 520 1 9803 2.99 2007-04-30 09:34:28.996577
  25788. 28019 520 1 10072 0.99 2007-04-30 18:19:03.996577
  25789. 28020 521 2 4284 0.99 2007-04-07 14:00:23.996577
  25790. 28021 521 2 4439 2.99 2007-04-07 21:25:56.996577
  25791. 28022 521 1 5276 2.99 2007-04-09 13:03:39.996577
  25792. 28023 521 2 5458 4.99 2007-04-09 21:04:15.996577
  25793. 28024 521 2 5580 6.99 2007-04-10 02:34:15.996577
  25794. 28025 521 2 5686 0.99 2007-04-10 07:34:29.996577
  25795. 28026 521 1 7478 1.99 2007-04-27 17:44:28.996577
  25796. 28027 521 1 9556 7.99 2007-04-30 00:41:56.996577
  25797. 28028 521 2 9937 1.99 2007-04-30 13:56:36.996577
  25798. 28029 522 1 3594 0.99 2007-04-06 03:11:13.996577
  25799. 28030 522 2 4078 4.99 2007-04-07 03:33:31.996577
  25800. 28031 522 2 4563 9.99 2007-04-08 03:37:21.996577
  25801. 28032 522 2 4701 4.99 2007-04-08 10:07:14.996577
  25802. 28033 522 2 5271 6.99 2007-04-09 12:53:27.996577
  25803. 28034 522 2 5514 6.99 2007-04-09 23:38:08.996577
  25804. 28035 522 2 5532 4.99 2007-04-10 00:45:57.996577
  25805. 28036 522 2 5936 0.99 2007-04-10 20:42:56.996577
  25806. 28037 522 2 7262 4.99 2007-04-27 09:44:02.996577
  25807. 28038 522 1 7955 2.99 2007-04-28 12:00:02.996577
  25808. 28039 522 2 8181 4.99 2007-04-28 20:47:04.996577
  25809. 28040 522 1 8642 6.99 2007-04-29 13:06:43.996577
  25810. 28041 522 1 8966 2.99 2007-04-30 02:22:38.996577
  25811. 28042 522 1 9047 7.99 2007-04-30 05:24:59.996577
  25812. 28043 522 2 9227 7.99 2007-04-30 12:04:39.996577
  25813. 28044 522 1 9335 4.99 2007-04-30 16:29:19.996577
  25814. 28045 522 1 9412 5.99 2007-04-30 19:12:36.996577
  25815. 28046 522 2 9533 5.99 2007-04-30 23:46:36.996577
  25816. 28047 522 2 10223 0.99 2007-04-30 23:51:41.996577
  25817. 28048 523 1 4605 4.99 2007-04-08 05:28:40.996577
  25818. 28049 523 2 5155 2.99 2007-04-09 07:15:20.996577
  25819. 28050 523 1 5287 6.99 2007-04-09 13:40:20.996577
  25820. 28051 523 2 5932 2.99 2007-04-10 20:33:41.996577
  25821. 28052 523 2 6675 4.99 2007-04-12 10:21:32.996577
  25822. 28053 523 2 7642 1.99 2007-04-27 23:45:17.996577
  25823. 28054 523 2 8141 0.99 2007-04-28 18:49:45.996577
  25824. 28055 523 1 8372 5.99 2007-04-29 03:46:34.996577
  25825. 28056 523 1 9071 2.99 2007-04-30 06:09:24.996577
  25826. 28057 523 2 9667 6.99 2007-04-30 04:52:18.996577
  25827. 28058 524 1 4366 5.99 2007-04-07 18:17:02.996577
  25828. 28059 524 2 5037 4.99 2007-04-09 01:27:36.996577
  25829. 28060 524 2 6161 4.99 2007-04-11 08:40:20.996577
  25830. 28061 524 1 6240 6.99 2007-04-11 13:01:07.996577
  25831. 28062 524 2 6745 4.99 2007-04-12 12:59:17.996577
  25832. 28063 524 2 7014 8.99 2007-04-27 00:43:06.996577
  25833. 28064 524 1 7040 4.99 2007-04-27 01:45:45.996577
  25834. 28065 524 1 8507 6.99 2007-04-29 07:58:10.996577
  25835. 28066 525 1 3993 6.99 2007-04-06 22:05:32.996577
  25836. 28067 525 1 5841 2.99 2007-04-10 15:39:57.996577
  25837. 28068 525 2 6098 7.99 2007-04-11 04:51:54.996577
  25838. 28069 525 2 6388 6.99 2007-04-11 20:45:42.996577
  25839. 28070 525 1 6689 1.99 2007-04-12 10:50:39.996577
  25840. 28071 525 2 7337 4.99 2007-04-27 12:40:30.996577
  25841. 28072 525 2 7591 4.99 2007-04-27 21:54:20.996577
  25842. 28073 525 1 8007 0.99 2007-04-28 13:50:53.996577
  25843. 28074 525 1 8960 4.99 2007-04-30 02:04:57.996577
  25844. 28075 525 2 9507 5.99 2007-04-30 22:50:55.996577
  25845. 28076 525 1 9702 0.99 2007-04-30 06:02:33.996577
  25846. 28077 526 1 3619 1.99 2007-04-06 04:28:10.996577
  25847. 28078 526 2 3905 5.99 2007-04-06 18:02:00.996577
  25848. 28079 526 1 4423 6.99 2007-04-07 20:39:54.996577
  25849. 28080 526 2 5056 2.99 2007-04-09 02:42:11.996577
  25850. 28081 526 2 5121 3.99 2007-04-09 05:46:57.996577
  25851. 28082 526 1 6316 7.99 2007-04-11 17:13:18.996577
  25852. 28083 526 1 6404 4.99 2007-04-11 21:18:16.996577
  25853. 28084 526 2 6650 2.99 2007-04-12 09:25:36.996577
  25854. 28085 526 1 6671 3.99 2007-04-12 10:17:14.996577
  25855. 28086 526 2 7270 7.99 2007-04-27 09:57:28.996577
  25856. 28087 526 2 7343 0.99 2007-04-27 12:55:39.996577
  25857. 28088 526 2 7399 1.99 2007-04-27 14:44:28.996577
  25858. 28089 526 2 7543 5.99 2007-04-27 20:12:54.996577
  25859. 28090 526 2 7883 2.99 2007-04-28 09:05:46.996577
  25860. 28091 526 1 8053 4.99 2007-04-28 15:28:07.996577
  25861. 28092 526 1 8232 4.99 2007-04-28 22:43:03.996577
  25862. 28093 526 1 8441 2.99 2007-04-29 06:01:31.996577
  25863. 28094 526 2 9577 6.99 2007-04-30 01:21:59.996577
  25864. 28095 526 2 10020 4.99 2007-04-30 16:49:34.996577
  25865. 28096 526 2 10199 2.99 2007-04-30 23:07:21.996577
  25866. 28097 527 1 4888 0.99 2007-04-08 18:32:53.996577
  25867. 28098 527 1 5365 0.99 2007-04-09 16:55:26.996577
  25868. 28099 527 2 6003 3.99 2007-04-10 23:56:59.996577
  25869. 28100 527 2 6011 4.99 2007-04-11 00:23:14.996577
  25870. 28101 527 1 6050 2.99 2007-04-11 02:02:55.996577
  25871. 28102 527 2 6975 1.99 2007-04-26 23:08:20.996577
  25872. 28103 527 1 7506 8.99 2007-04-27 18:57:00.996577
  25873. 28104 527 1 8854 0.99 2007-04-29 22:08:33.996577
  25874. 28105 527 2 9750 0.99 2007-04-30 07:48:12.996577
  25875. 28106 528 2 3654 4.99 2007-04-06 06:13:57.996577
  25876. 28107 528 1 3664 0.99 2007-04-06 06:44:23.996577
  25877. 28108 528 2 4050 9.99 2007-04-07 02:03:59.996577
  25878. 28109 528 1 4593 5.99 2007-04-08 05:06:38.996577
  25879. 28110 528 2 5215 3.99 2007-04-09 10:16:24.996577
  25880. 28111 528 2 6561 0.99 2007-04-12 03:52:28.996577
  25881. 28112 528 1 7569 7.99 2007-04-27 21:07:19.996577
  25882. 28113 528 2 8112 4.99 2007-04-28 17:39:33.996577
  25883. 28114 528 1 8727 3.99 2007-04-29 16:38:23.996577
  25884. 28115 528 2 9488 8.99 2007-04-30 22:11:08.996577
  25885. 28116 528 1 10084 3.99 2007-04-30 18:39:55.996577
  25886. 28117 529 2 4045 0.99 2007-04-07 01:54:40.996577
  25887. 28118 529 2 4254 0.99 2007-04-07 12:42:18.996577
  25888. 28119 529 2 4444 5.99 2007-04-07 21:36:10.996577
  25889. 28120 529 1 4553 0.99 2007-04-08 03:12:07.996577
  25890. 28121 529 1 5993 4.99 2007-04-10 23:35:07.996577
  25891. 28122 529 2 6538 6.99 2007-04-12 03:18:52.996577
  25892. 28123 529 2 6541 5.99 2007-04-12 03:22:07.996577
  25893. 28124 529 1 6908 7.99 2007-04-12 20:37:12.996577
  25894. 28125 529 1 7128 3.99 2007-04-27 04:43:02.996577
  25895. 28126 529 2 8708 2.99 2007-04-29 15:52:39.996577
  25896. 28127 529 1 8979 5.99 2007-04-30 02:48:51.996577
  25897. 28128 529 2 9310 4.99 2007-04-30 15:25:35.996577
  25898. 28129 529 2 9375 0.99 2007-04-30 17:38:43.996577
  25899. 28130 530 2 3669 2.99 2007-04-06 07:06:55.996577
  25900. 28131 530 2 3887 4.99 2007-04-06 17:15:00.996577
  25901. 28132 530 2 5663 0.99 2007-04-10 06:29:59.996577
  25902. 28133 530 1 7031 3.99 2007-04-27 01:30:33.996577
  25903. 28134 530 2 7075 1.99 2007-04-27 02:40:06.996577
  25904. 28135 530 1 7218 4.99 2007-04-27 08:02:50.996577
  25905. 28136 530 2 8208 4.99 2007-04-28 21:55:01.996577
  25906. 28137 530 1 8736 0.99 2007-04-29 16:59:41.996577
  25907. 28138 530 1 9914 4.99 2007-04-30 13:19:45.996577
  25908. 28139 530 2 10211 3.99 2007-04-30 23:29:42.996577
  25909. 28140 531 2 3921 5.99 2007-04-06 18:58:14.996577
  25910. 28141 531 1 5587 5.99 2007-04-10 02:45:51.996577
  25911. 28142 531 2 5850 0.99 2007-04-10 16:04:53.996577
  25912. 28143 531 2 5904 4.99 2007-04-10 19:08:10.996577
  25913. 28144 531 1 6756 4.99 2007-04-12 13:36:54.996577
  25914. 28145 531 1 6876 4.99 2007-04-12 19:01:16.996577
  25915. 28146 531 2 7204 2.99 2007-04-27 07:30:57.996577
  25916. 28147 531 1 7391 6.99 2007-04-27 14:28:26.996577
  25917. 28148 531 2 7444 2.99 2007-04-27 16:17:42.996577
  25918. 28149 531 2 7753 6.99 2007-04-28 04:37:45.996577
  25919. 28150 531 2 8359 5.99 2007-04-29 03:30:38.996577
  25920. 28151 531 2 8860 4.99 2007-04-29 22:14:23.996577
  25921. 28152 531 2 8943 0.99 2007-04-30 01:35:14.996577
  25922. 28153 531 2 9107 4.99 2007-04-30 07:21:11.996577
  25923. 28154 532 1 4336 2.99 2007-04-07 17:03:02.996577
  25924. 28155 532 2 4962 4.99 2007-04-08 22:04:39.996577
  25925. 28156 532 2 5190 2.99 2007-04-09 08:53:50.996577
  25926. 28157 532 1 5253 7.99 2007-04-09 12:09:43.996577
  25927. 28158 532 2 5278 4.99 2007-04-09 13:12:49.996577
  25928. 28159 532 2 5805 8.99 2007-04-10 13:37:07.996577
  25929. 28160 532 1 5887 2.99 2007-04-10 18:14:13.996577
  25930. 28161 532 2 6345 7.99 2007-04-11 18:33:44.996577
  25931. 28162 532 2 6598 4.99 2007-04-12 06:06:51.996577
  25932. 28163 532 1 6730 3.99 2007-04-12 12:26:51.996577
  25933. 28164 532 1 7192 4.99 2007-04-27 07:05:21.996577
  25934. 28165 532 2 7572 2.99 2007-04-27 21:12:55.996577
  25935. 28166 532 1 8273 5.99 2007-04-29 00:01:42.996577
  25936. 28167 532 1 9843 2.99 2007-04-30 10:53:54.996577
  25937. 28168 533 1 4112 8.99 2007-04-07 05:17:35.996577
  25938. 28169 533 1 4788 4.99 2007-04-08 14:46:01.996577
  25939. 28170 533 2 6781 2.99 2007-04-12 14:50:13.996577
  25940. 28171 533 2 6834 0.99 2007-04-12 17:22:03.996577
  25941. 28172 533 2 6837 9.99 2007-04-12 17:28:11.996577
  25942. 28173 533 2 7555 4.99 2007-04-27 20:45:31.996577
  25943. 28174 533 1 8093 8.99 2007-04-28 16:57:42.996577
  25944. 28175 533 2 8104 2.99 2007-04-28 17:28:02.996577
  25945. 28176 533 2 8250 2.99 2007-04-28 23:17:41.996577
  25946. 28177 533 1 8471 2.99 2007-04-29 07:00:37.996577
  25947. 28178 533 1 8676 1.99 2007-04-29 14:27:32.996577
  25948. 28179 533 2 8786 1.99 2007-04-29 19:08:15.996577
  25949. 28180 533 2 10090 3.99 2007-04-30 18:50:27.996577
  25950. 28181 534 1 3735 2.99 2007-04-06 10:10:30.996577
  25951. 28182 534 2 4998 4.99 2007-04-08 23:35:47.996577
  25952. 28183 534 2 7113 2.99 2007-04-27 04:09:46.996577
  25953. 28184 534 1 7662 2.99 2007-04-28 00:44:34.996577
  25954. 28185 534 2 8633 0.99 2007-04-29 12:48:19.996577
  25955. 28186 534 1 9456 5.99 2007-04-30 20:50:42.996577
  25956. 28187 534 2 9464 4.99 2007-04-30 20:59:57.996577
  25957. 28188 535 1 4331 4.99 2007-04-07 16:50:56.996577
  25958. 28189 535 1 4718 6.99 2007-04-08 11:00:34.996577
  25959. 28190 535 1 4743 2.99 2007-04-08 12:11:02.996577
  25960. 28191 535 2 4914 6.99 2007-04-08 19:59:19.996577
  25961. 28192 535 1 5588 0.99 2007-04-10 02:49:36.996577
  25962. 28193 535 2 5890 8.99 2007-04-10 18:28:51.996577
  25963. 28194 535 1 6504 2.99 2007-04-12 01:47:40.996577
  25964. 28195 535 1 8395 2.99 2007-04-29 04:31:56.996577
  25965. 28196 535 1 8645 4.99 2007-04-29 13:16:11.996577
  25966. 28197 535 2 9440 0.99 2007-04-30 20:08:41.996577
  25967. 28198 535 1 9524 4.99 2007-04-30 23:29:32.996577
  25968. 28199 536 1 3483 4.99 2007-04-05 21:42:17.996577
  25969. 28200 536 1 3514 0.99 2007-04-05 23:15:20.996577
  25970. 28201 536 1 4448 2.99 2007-04-07 21:45:38.996577
  25971. 28202 536 2 5196 0.99 2007-04-09 09:12:00.996577
  25972. 28203 536 1 6400 5.99 2007-04-11 21:12:10.996577
  25973. 28204 536 1 7065 4.99 2007-04-27 02:22:09.996577
  25974. 28205 536 2 8535 4.99 2007-04-29 09:00:59.996577
  25975. 28206 536 1 8679 4.99 2007-04-29 14:36:13.996577
  25976. 28207 536 1 8958 2.99 2007-04-30 02:02:52.996577
  25977. 28208 536 1 9411 8.99 2007-04-30 19:06:48.996577
  25978. 28209 536 1 9727 4.99 2007-04-30 07:07:39.996577
  25979. 28210 536 2 10019 3.99 2007-04-30 16:49:22.996577
  25980. 28211 537 1 3555 0.99 2007-04-06 01:14:01.996577
  25981. 28212 537 2 3853 0.99 2007-04-06 15:27:46.996577
  25982. 28213 537 1 5630 2.99 2007-04-10 04:36:40.996577
  25983. 28214 537 2 5877 5.99 2007-04-10 17:37:17.996577
  25984. 28215 537 2 6310 2.99 2007-04-11 16:42:31.996577
  25985. 28216 537 1 6409 4.99 2007-04-11 21:34:15.996577
  25986. 28217 537 1 6746 0.99 2007-04-12 13:01:27.996577
  25987. 28218 537 1 7179 2.99 2007-04-27 06:38:55.996577
  25988. 28219 537 2 7810 4.99 2007-04-28 06:29:04.996577
  25989. 28220 537 2 8126 4.99 2007-04-28 18:01:07.996577
  25990. 28221 537 2 8256 4.99 2007-04-28 23:31:08.996577
  25991. 28222 537 1 9967 2.99 2007-04-30 14:59:43.996577
  25992. 28223 538 2 3554 4.99 2007-04-06 01:05:36.996577
  25993. 28224 538 2 5135 8.99 2007-04-09 06:21:48.996577
  25994. 28225 538 1 5369 4.99 2007-04-09 17:10:42.996577
  25995. 28226 538 1 5486 2.99 2007-04-09 22:26:10.996577
  25996. 28227 538 1 5898 2.99 2007-04-10 18:46:35.996577
  25997. 28228 538 2 6130 2.99 2007-04-11 06:48:22.996577
  25998. 28229 538 1 6332 0.99 2007-04-11 17:47:32.996577
  25999. 28230 538 2 6936 0.99 2007-04-26 21:42:00.996577
  26000. 28231 538 1 7694 0.99 2007-04-28 02:07:51.996577
  26001. 28232 538 1 8765 0.99 2007-04-29 18:08:34.996577
  26002. 28233 538 1 9307 0.99 2007-04-30 15:21:09.996577
  26003. 28234 538 1 9643 4.99 2007-04-30 04:04:14.996577
  26004. 28235 538 2 9897 4.99 2007-04-30 12:40:23.996577
  26005. 28236 538 2 9939 8.99 2007-04-30 13:57:26.996577
  26006. 28237 539 1 4035 2.99 2007-04-07 01:13:28.996577
  26007. 28238 539 1 4247 0.99 2007-04-07 12:20:20.996577
  26008. 28239 539 2 5086 4.99 2007-04-09 04:08:30.996577
  26009. 28240 539 2 5139 7.99 2007-04-09 06:30:17.996577
  26010. 28241 539 2 5493 2.99 2007-04-09 22:40:10.996577
  26011. 28242 539 2 6874 5.99 2007-04-12 18:49:19.996577
  26012. 28243 539 1 7781 2.99 2007-04-28 05:41:46.996577
  26013. 28244 539 2 8247 6.99 2007-04-28 23:10:04.996577
  26014. 28245 539 2 8761 5.99 2007-04-29 17:55:13.996577
  26015. 28246 539 2 9250 0.99 2007-04-30 12:46:42.996577
  26016. 28247 539 1 9777 7.99 2007-04-30 08:29:32.996577
  26017. 28248 539 1 9796 4.99 2007-04-30 09:21:09.996577
  26018. 28249 540 2 4628 4.99 2007-04-08 06:54:18.996577
  26019. 28250 540 2 4991 4.99 2007-04-08 23:17:29.996577
  26020. 28251 540 1 6103 2.99 2007-04-11 05:28:21.996577
  26021. 28252 540 2 6145 7.99 2007-04-11 07:35:27.996577
  26022. 28253 540 2 6182 2.99 2007-04-11 09:40:04.996577
  26023. 28254 540 1 6748 6.99 2007-04-12 13:07:53.996577
  26024. 28255 540 1 6919 0.99 2007-04-12 21:00:43.996577
  26025. 28256 540 2 9762 4.99 2007-04-30 08:01:20.996577
  26026. 28257 540 2 9815 2.99 2007-04-30 09:59:17.996577
  26027. 28258 541 1 5018 2.99 2007-04-09 00:29:31.996577
  26028. 28259 541 2 5197 4.99 2007-04-09 09:12:20.996577
  26029. 28260 541 2 6468 7.99 2007-04-11 23:55:35.996577
  26030. 28261 541 2 6718 2.99 2007-04-12 12:06:32.996577
  26031. 28262 541 1 8113 8.99 2007-04-28 17:42:26.996577
  26032. 28263 541 1 8322 4.99 2007-04-29 02:21:15.996577
  26033. 28264 541 2 9603 0.99 2007-04-30 02:12:09.996577
  26034. 28265 542 2 5293 0.99 2007-04-09 13:45:49.996577
  26035. 28266 542 1 5477 6.99 2007-04-09 22:12:15.996577
  26036. 28267 542 2 6077 5.99 2007-04-11 03:34:34.996577
  26037. 28268 542 2 6325 5.99 2007-04-11 17:34:27.996577
  26038. 28269 542 1 6887 9.99 2007-04-12 19:28:49.996577
  26039. 28270 542 2 7672 8.99 2007-04-28 01:18:07.996577
  26040. 28271 542 1 8533 4.99 2007-04-29 08:57:42.996577
  26041. 28272 542 2 8544 3.99 2007-04-29 09:30:34.996577
  26042. 28273 543 1 4887 2.99 2007-04-08 18:27:40.996577
  26043. 28274 543 2 5467 4.99 2007-04-09 21:34:13.996577
  26044. 28275 543 2 6013 4.99 2007-04-11 00:30:29.996577
  26045. 28276 543 2 7312 2.99 2007-04-27 11:31:40.996577
  26046. 28277 543 1 8580 2.99 2007-04-29 10:28:53.996577
  26047. 28278 543 2 8845 4.99 2007-04-29 21:34:39.996577
  26048. 28279 543 1 9505 2.99 2007-04-30 22:39:45.996577
  26049. 28280 543 1 9999 0.99 2007-04-30 16:09:19.996577
  26050. 28281 544 1 4395 0.99 2007-04-07 19:41:48.996577
  26051. 28282 544 1 4703 2.99 2007-04-08 10:13:22.996577
  26052. 28283 544 2 4847 6.99 2007-04-08 16:57:39.996577
  26053. 28284 544 2 8566 2.99 2007-04-29 10:04:12.996577
  26054. 28285 544 1 8937 5.99 2007-04-30 01:21:47.996577
  26055. 28286 544 1 8963 9.99 2007-04-30 02:14:52.996577
  26056. 28287 545 2 3693 8.99 2007-04-06 08:24:35.996577
  26057. 28288 545 1 3975 5.99 2007-04-06 21:28:35.996577
  26058. 28289 545 1 4597 5.99 2007-04-08 05:12:08.996577
  26059. 28290 545 1 5264 0.99 2007-04-09 12:39:54.996577
  26060. 28291 545 1 7078 5.99 2007-04-27 02:45:03.996577
  26061. 28292 545 2 8599 3.99 2007-04-29 11:27:18.996577
  26062. 28293 545 2 8848 2.99 2007-04-29 21:49:24.996577
  26063. 28294 545 2 9810 2.99 2007-04-30 09:51:07.996577
  26064. 28295 545 2 9942 4.99 2007-04-30 14:04:09.996577
  26065. 28296 546 1 3738 4.99 2007-04-06 10:19:23.996577
  26066. 28297 546 2 4664 0.99 2007-04-08 08:29:54.996577
  26067. 28298 546 1 4734 0.99 2007-04-08 11:40:38.996577
  26068. 28299 546 1 5629 0.99 2007-04-10 04:30:51.996577
  26069. 28300 546 2 6758 9.99 2007-04-12 13:42:15.996577
  26070. 28301 546 1 6786 2.99 2007-04-12 15:00:59.996577
  26071. 28302 546 2 6910 6.99 2007-04-12 20:39:47.996577
  26072. 28303 546 1 8532 4.99 2007-04-29 08:55:22.996577
  26073. 28304 546 1 9087 4.99 2007-04-30 06:48:13.996577
  26074. 28305 267 1 9308 6.99 2007-04-30 15:21:47.996577
  26075. 28306 546 2 9626 1.99 2007-04-30 03:06:07.996577
  26076. 28307 547 2 3679 4.99 2007-04-06 07:44:23.996577
  26077. 28308 547 1 3765 4.99 2007-04-06 11:30:13.996577
  26078. 28309 547 2 5327 4.99 2007-04-09 15:08:15.996577
  26079. 28310 547 2 5854 4.99 2007-04-10 16:16:00.996577
  26080. 28311 547 1 6605 0.99 2007-04-12 06:29:33.996577
  26081. 28312 547 2 7420 4.99 2007-04-27 15:38:05.996577
  26082. 28313 547 2 7547 3.99 2007-04-27 20:20:14.996577
  26083. 28314 547 1 7835 4.99 2007-04-28 07:18:05.996577
  26084. 28315 547 1 7859 3.99 2007-04-28 08:25:43.996577
  26085. 28316 547 1 8828 2.99 2007-04-29 21:01:20.996577
  26086. 28317 548 1 3686 2.99 2007-04-06 08:06:16.996577
  26087. 28318 548 2 3777 2.99 2007-04-06 12:05:14.996577
  26088. 28319 548 1 4155 7.99 2007-04-07 07:29:15.996577
  26089. 28320 548 2 5138 4.99 2007-04-09 06:29:12.996577
  26090. 28321 548 2 6490 4.99 2007-04-12 00:56:29.996577
  26091. 28322 548 1 9614 5.99 2007-04-30 02:27:57.996577
  26092. 28323 549 2 3523 2.99 2007-04-05 23:30:04.996577
  26093. 28324 549 2 3892 4.99 2007-04-06 17:27:24.996577
  26094. 28325 549 1 4447 0.99 2007-04-07 21:43:54.996577
  26095. 28326 549 1 7252 7.99 2007-04-27 09:13:54.996577
  26096. 28327 549 2 8239 0.99 2007-04-28 23:00:05.996577
  26097. 28328 549 1 8316 4.99 2007-04-29 02:07:15.996577
  26098. 28329 549 2 9445 7.99 2007-04-30 20:19:08.996577
  26099. 28330 549 2 9511 9.99 2007-04-30 22:53:31.996577
  26100. 28331 549 2 9887 0.99 2007-04-30 12:28:58.996577
  26101. 28332 550 1 3979 4.99 2007-04-06 21:33:01.996577
  26102. 28333 550 1 5727 4.99 2007-04-10 09:53:54.996577
  26103. 28334 550 1 6695 2.99 2007-04-12 11:08:05.996577
  26104. 28335 550 1 7030 0.99 2007-04-27 01:30:06.996577
  26105. 28336 550 2 7838 2.99 2007-04-28 07:28:47.996577
  26106. 28337 550 1 8628 6.99 2007-04-29 12:34:50.996577
  26107. 28338 550 2 8838 2.99 2007-04-29 21:20:49.996577
  26108. 28339 550 1 8959 8.99 2007-04-30 02:04:15.996577
  26109. 28340 550 1 9616 2.99 2007-04-30 02:33:27.996577
  26110. 28341 550 1 9748 0.99 2007-04-30 07:46:22.996577
  26111. 28342 550 2 10140 4.99 2007-04-30 20:31:46.996577
  26112. 28343 551 2 3996 5.99 2007-04-06 22:15:09.996577
  26113. 28344 551 1 5201 1.99 2007-04-09 09:21:19.996577
  26114. 28345 551 2 5528 0.99 2007-04-10 00:37:47.996577
  26115. 28346 551 1 6041 0.99 2007-04-11 01:43:24.996577
  26116. 28347 551 2 7095 9.99 2007-04-27 03:19:41.996577
  26117. 28348 551 1 8986 0.99 2007-04-30 03:05:46.996577
  26118. 28349 551 1 9287 2.99 2007-04-30 14:04:05.996577
  26119. 28350 551 2 9765 4.99 2007-04-30 08:13:06.996577
  26120. 28351 552 1 4477 6.99 2007-04-07 23:06:50.996577
  26121. 28352 552 1 5213 7.99 2007-04-09 10:08:09.996577
  26122. 28353 552 2 6189 4.99 2007-04-11 10:04:29.996577
  26123. 28354 552 1 7772 2.99 2007-04-28 05:27:35.996577
  26124. 28355 552 1 8085 2.99 2007-04-28 16:41:41.996577
  26125. 28356 552 2 8192 2.99 2007-04-28 21:17:37.996577
  26126. 28357 552 2 8614 5.99 2007-04-29 12:00:31.996577
  26127. 28358 552 2 8894 4.99 2007-04-29 23:16:57.996577
  26128. 28359 552 1 9342 8.99 2007-04-30 16:38:22.996577
  26129. 28360 553 1 3495 6.99 2007-04-05 22:18:30.996577
  26130. 28361 553 2 3793 4.99 2007-04-06 13:01:10.996577
  26131. 28362 553 2 3859 2.99 2007-04-06 15:46:41.996577
  26132. 28363 553 1 3890 4.99 2007-04-06 17:26:41.996577
  26133. 28364 553 2 3891 4.99 2007-04-06 17:26:51.996577
  26134. 28365 553 2 3942 4.99 2007-04-06 19:50:00.996577
  26135. 28366 553 1 4257 4.99 2007-04-07 12:47:07.996577
  26136. 28367 553 2 4662 0.99 2007-04-08 08:27:20.996577
  26137. 28368 553 2 4845 4.99 2007-04-08 16:56:46.996577
  26138. 28369 553 2 4941 3.99 2007-04-08 21:07:36.996577
  26139. 28370 553 1 6069 2.99 2007-04-11 03:13:25.996577
  26140. 28371 553 2 6657 0.99 2007-04-12 09:40:02.996577
  26141. 28372 553 1 6812 6.99 2007-04-12 16:31:51.996577
  26142. 28373 553 1 7890 4.99 2007-04-28 09:12:06.996577
  26143. 28374 553 2 9272 4.99 2007-04-30 13:33:48.996577
  26144. 28375 553 2 9601 2.99 2007-04-30 02:10:43.996577
  26145. 28376 554 2 4902 4.99 2007-04-08 19:17:56.996577
  26146. 28377 554 1 5527 2.99 2007-04-10 00:34:27.996577
  26147. 28378 554 1 5968 5.99 2007-04-10 22:31:37.996577
  26148. 28379 554 1 6144 2.99 2007-04-11 07:31:19.996577
  26149. 28380 555 2 4875 2.99 2007-04-08 17:52:43.996577
  26150. 28381 555 1 8161 0.99 2007-04-28 19:39:26.996577
  26151. 28382 555 1 8245 3.99 2007-04-28 23:05:35.996577
  26152. 28383 555 1 9299 5.99 2007-04-30 15:01:17.996577
  26153. 28384 555 2 9990 7.99 2007-04-30 15:52:47.996577
  26154. 28385 555 2 10076 7.99 2007-04-30 18:29:00.996577
  26155. 28386 556 2 4719 2.99 2007-04-08 11:01:26.996577
  26156. 28387 556 2 4839 3.99 2007-04-08 16:41:36.996577
  26157. 28388 556 1 4846 0.99 2007-04-08 16:57:31.996577
  26158. 28389 556 2 5722 0.99 2007-04-10 09:38:30.996577
  26159. 28390 556 2 6484 2.99 2007-04-12 00:32:36.996577
  26160. 28391 556 1 8909 5.99 2007-04-29 23:56:29.996577
  26161. 28392 556 2 10106 4.99 2007-04-30 19:29:13.996577
  26162. 28393 557 1 4651 0.99 2007-04-08 08:08:05.996577
  26163. 28394 557 1 4851 1.99 2007-04-08 17:08:31.996577
  26164. 28395 557 1 6459 0.99 2007-04-11 23:40:29.996577
  26165. 28396 557 2 6713 3.99 2007-04-12 11:56:02.996577
  26166. 28397 557 2 6823 4.99 2007-04-12 16:52:57.996577
  26167. 28398 557 2 6898 0.99 2007-04-12 20:07:30.996577
  26168. 28399 557 1 9336 0.99 2007-04-30 16:29:41.996577
  26169. 28400 557 1 9341 2.99 2007-04-30 16:36:24.996577
  26170. 28401 557 2 9366 1.99 2007-04-30 17:17:23.996577
  26171. 28402 557 2 9367 6.99 2007-04-30 17:18:24.996577
  26172. 28403 558 1 3731 9.99 2007-04-06 10:02:02.996577
  26173. 28404 558 1 3954 0.99 2007-04-06 20:26:10.996577
  26174. 28405 558 1 3990 3.99 2007-04-06 22:01:10.996577
  26175. 28406 558 1 4192 5.99 2007-04-07 09:25:32.996577
  26176. 28407 558 1 4932 2.99 2007-04-08 20:46:06.996577
  26177. 28408 558 2 5375 6.99 2007-04-09 17:21:21.996577
  26178. 28409 558 1 5492 3.99 2007-04-09 22:39:35.996577
  26179. 28410 558 2 6278 7.99 2007-04-11 14:48:28.996577
  26180. 28411 558 2 6479 9.99 2007-04-12 00:17:26.996577
  26181. 28412 558 2 6742 4.99 2007-04-12 12:53:57.996577
  26182. 28413 558 1 6757 0.99 2007-04-12 13:38:14.996577
  26183. 28414 558 1 7424 0.99 2007-04-27 15:42:45.996577
  26184. 28415 558 1 8523 2.99 2007-04-29 08:46:53.996577
  26185. 28416 558 1 8858 4.99 2007-04-29 22:13:01.996577
  26186. 28417 558 1 8889 2.99 2007-04-29 23:08:09.996577
  26187. 28418 559 1 3674 5.99 2007-04-06 07:31:39.996577
  26188. 28419 559 1 4120 4.99 2007-04-07 05:35:29.996577
  26189. 28420 559 1 4370 7.99 2007-04-07 18:34:02.996577
  26190. 28421 559 2 5396 1.99 2007-04-09 18:11:18.996577
  26191. 28422 559 1 6201 4.99 2007-04-11 10:46:33.996577
  26192. 28423 559 1 6915 2.99 2007-04-12 20:56:35.996577
  26193. 28424 559 1 7169 1.99 2007-04-27 06:20:05.996577
  26194. 28425 559 1 7680 1.99 2007-04-28 01:27:34.996577
  26195. 28426 559 1 8631 1.99 2007-04-29 12:36:32.996577
  26196. 28427 559 2 9134 0.99 2007-04-30 08:28:47.996577
  26197. 28428 559 1 9877 2.99 2007-04-30 12:10:23.996577
  26198. 28429 559 2 10146 2.99 2007-04-30 20:46:22.996577
  26199. 28430 560 1 3941 4.99 2007-04-06 19:49:03.996577
  26200. 28431 560 1 4298 2.99 2007-04-07 14:55:51.996577
  26201. 28432 560 2 4375 9.99 2007-04-07 18:48:55.996577
  26202. 28433 560 1 4453 0.99 2007-04-07 22:01:05.996577
  26203. 28434 560 2 5208 2.99 2007-04-09 09:45:22.996577
  26204. 28435 560 1 6410 4.99 2007-04-11 21:36:32.996577
  26205. 28436 560 1 6945 2.99 2007-04-26 22:03:55.996577
  26206. 28437 560 2 7202 4.99 2007-04-27 07:28:46.996577
  26207. 28438 560 1 7891 3.99 2007-04-28 09:12:22.996577
  26208. 28439 560 1 8753 2.99 2007-04-29 17:44:16.996577
  26209. 28440 560 2 8861 5.99 2007-04-29 22:15:55.996577
  26210. 28441 560 2 8906 4.99 2007-04-29 23:50:05.996577
  26211. 28442 560 1 9265 0.99 2007-04-30 13:23:51.996577
  26212. 28443 560 2 9895 5.99 2007-04-30 12:36:22.996577
  26213. 28444 561 2 6361 2.99 2007-04-11 19:37:40.996577
  26214. 28445 561 1 6435 0.99 2007-04-11 22:44:45.996577
  26215. 28446 561 1 6621 0.99 2007-04-12 07:25:56.996577
  26216. 28447 561 1 6843 4.99 2007-04-12 17:42:31.996577
  26217. 28448 561 1 7698 0.99 2007-04-28 02:12:40.996577
  26218. 28449 561 1 8504 10.99 2007-04-29 07:48:42.996577
  26219. 28450 561 2 9839 7.99 2007-04-30 10:49:42.996577
  26220. 28451 562 2 4732 5.99 2007-04-08 11:38:11.996577
  26221. 28452 562 1 4802 4.99 2007-04-08 15:23:43.996577
  26222. 28453 562 2 5360 0.99 2007-04-09 16:42:29.996577
  26223. 28454 562 2 6065 6.99 2007-04-11 02:54:17.996577
  26224. 28455 562 1 6607 8.99 2007-04-12 06:37:16.996577
  26225. 28456 562 2 7166 3.99 2007-04-27 06:05:22.996577
  26226. 28457 562 1 7430 2.99 2007-04-27 15:54:40.996577
  26227. 28458 562 2 7560 2.99 2007-04-27 20:48:43.996577
  26228. 28459 562 2 8132 0.99 2007-04-28 18:25:57.996577
  26229. 28460 563 1 4106 1.99 2007-04-07 05:02:01.996577
  26230. 28461 563 2 4436 0.99 2007-04-07 21:20:30.996577
  26231. 28462 563 1 4565 3.99 2007-04-08 03:40:54.996577
  26232. 28463 563 2 4629 6.99 2007-04-08 06:59:52.996577
  26233. 28464 563 2 4711 2.99 2007-04-08 10:35:24.996577
  26234. 28465 563 2 4776 5.99 2007-04-08 14:12:46.996577
  26235. 28466 563 2 4808 3.99 2007-04-08 15:31:15.996577
  26236. 28467 563 2 4825 4.99 2007-04-08 16:11:27.996577
  26237. 28468 563 1 4883 0.99 2007-04-08 18:15:24.996577
  26238. 28469 563 1 5406 0.99 2007-04-09 18:41:49.996577
  26239. 28470 563 2 6326 2.99 2007-04-11 17:35:21.996577
  26240. 28471 563 2 7612 0.99 2007-04-27 22:40:21.996577
  26241. 28472 563 1 8262 1.99 2007-04-28 23:39:44.996577
  26242. 28473 563 1 8610 5.99 2007-04-29 11:53:28.996577
  26243. 28474 563 2 8632 6.99 2007-04-29 12:39:51.996577
  26244. 28475 563 2 8812 7.99 2007-04-29 20:16:06.996577
  26245. 28476 564 1 4196 2.99 2007-04-07 09:34:59.996577
  26246. 28477 564 2 4385 0.99 2007-04-07 19:17:04.996577
  26247. 28478 564 1 6973 2.99 2007-04-26 23:00:30.996577
  26248. 28479 564 2 7470 10.99 2007-04-27 17:29:29.996577
  26249. 28480 564 2 8426 4.99 2007-04-29 05:36:14.996577
  26250. 28481 564 1 8874 0.99 2007-04-29 22:43:11.996577
  26251. 28482 564 2 9063 3.99 2007-04-30 05:53:00.996577
  26252. 28483 564 2 9929 2.99 2007-04-30 13:45:50.996577
  26253. 28484 564 1 10129 6.99 2007-04-30 20:10:01.996577
  26254. 28485 565 2 3470 0.99 2007-04-05 21:17:50.996577
  26255. 28486 565 1 3838 2.99 2007-04-06 14:58:09.996577
  26256. 28487 565 1 4413 2.99 2007-04-07 20:28:30.996577
  26257. 28488 565 2 5020 0.99 2007-04-09 00:36:22.996577
  26258. 28489 565 1 5124 4.99 2007-04-09 05:53:45.996577
  26259. 28490 565 1 6264 2.99 2007-04-11 14:11:01.996577
  26260. 28491 565 1 6627 2.99 2007-04-12 07:45:12.996577
  26261. 28492 565 1 6699 0.99 2007-04-12 11:13:47.996577
  26262. 28493 565 2 7242 5.99 2007-04-27 08:54:17.996577
  26263. 28494 565 1 9628 2.99 2007-04-30 03:19:37.996577
  26264. 28495 565 1 10025 5.99 2007-04-30 16:57:35.996577
  26265. 28496 566 2 3663 4.99 2007-04-06 06:44:13.996577
  26266. 28497 566 1 3943 0.99 2007-04-06 19:50:43.996577
  26267. 28498 566 1 3998 3.99 2007-04-06 22:17:46.996577
  26268. 28499 566 1 5079 9.99 2007-04-09 03:49:06.996577
  26269. 28500 566 2 6365 2.99 2007-04-11 19:46:06.996577
  26270. 28501 566 1 7677 2.99 2007-04-28 01:25:03.996577
  26271. 28502 566 2 7941 0.99 2007-04-28 11:15:46.996577
  26272. 28503 566 2 8118 2.99 2007-04-28 17:50:48.996577
  26273. 28504 566 1 8157 6.99 2007-04-28 19:35:11.996577
  26274. 28505 566 1 8257 2.99 2007-04-28 23:31:46.996577
  26275. 28506 566 2 8305 1.99 2007-04-29 01:37:13.996577
  26276. 28507 566 2 8660 6.99 2007-04-29 13:55:25.996577
  26277. 28508 566 1 8710 0.99 2007-04-29 15:54:29.996577
  26278. 28509 566 1 8797 4.99 2007-04-29 19:39:03.996577
  26279. 28510 566 2 9101 4.99 2007-04-30 07:15:39.996577
  26280. 28511 566 2 9470 4.99 2007-04-30 21:29:57.996577
  26281. 28512 566 1 9688 3.99 2007-04-30 05:24:34.996577
  26282. 28513 566 2 9915 2.99 2007-04-30 13:20:52.996577
  26283. 28514 567 1 3769 5.99 2007-04-06 11:39:59.996577
  26284. 28515 567 2 4457 0.99 2007-04-07 22:14:04.996577
  26285. 28516 567 2 4576 0.99 2007-04-08 04:19:45.996577
  26286. 28517 567 1 4949 4.99 2007-04-08 21:25:36.996577
  26287. 28518 567 2 6358 2.99 2007-04-11 19:31:38.996577
  26288. 28519 567 2 6551 0.99 2007-04-12 03:32:09.996577
  26289. 28520 567 2 7340 2.99 2007-04-27 12:46:36.996577
  26290. 28521 567 1 8201 2.99 2007-04-28 21:39:14.996577
  26291. 28522 567 1 8629 2.99 2007-04-29 12:35:01.996577
  26292. 28523 567 1 9279 7.99 2007-04-30 13:43:47.996577
  26293. 28524 567 1 9475 6.99 2007-04-30 21:34:59.996577
  26294. 28525 568 1 4322 2.99 2007-04-07 16:23:03.996577
  26295. 28526 568 2 5332 2.99 2007-04-09 15:27:49.996577
  26296. 28527 568 1 5622 0.99 2007-04-10 04:08:03.996577
  26297. 28528 568 1 5776 4.99 2007-04-10 12:03:48.996577
  26298. 28529 568 2 7068 2.99 2007-04-27 02:26:16.996577
  26299. 28530 568 2 8185 0.99 2007-04-28 20:52:15.996577
  26300. 28531 568 2 9583 6.99 2007-04-30 01:33:47.996577
  26301. 28532 568 1 9738 0.99 2007-04-30 07:32:40.996577
  26302. 28533 569 1 4204 5.99 2007-04-07 09:52:44.996577
  26303. 28534 569 2 5003 0.99 2007-04-08 23:47:29.996577
  26304. 28535 569 2 6046 5.99 2007-04-11 01:50:15.996577
  26305. 28536 569 1 8910 2.99 2007-04-29 23:58:14.996577
  26306. 28537 569 2 9220 1.99 2007-04-30 11:45:53.996577
  26307. 28538 569 1 9399 4.99 2007-04-30 18:43:16.996577
  26308. 28539 569 2 9960 1.99 2007-04-30 14:34:18.996577
  26309. 28540 569 2 10192 2.99 2007-04-30 23:01:26.996577
  26310. 28541 570 2 3984 0.99 2007-04-06 21:51:02.996577
  26311. 28542 570 1 4069 0.99 2007-04-07 03:03:32.996577
  26312. 28543 570 1 4698 0.99 2007-04-08 09:47:57.996577
  26313. 28544 570 2 5638 4.99 2007-04-10 05:01:15.996577
  26314. 28545 570 1 6253 4.99 2007-04-11 13:35:45.996577
  26315. 28546 570 1 6556 0.99 2007-04-12 03:38:42.996577
  26316. 28547 570 2 7174 4.99 2007-04-27 06:29:02.996577
  26317. 28548 570 2 8735 4.99 2007-04-29 16:57:20.996577
  26318. 28549 570 1 9385 7.99 2007-04-30 17:54:15.996577
  26319. 28550 570 1 9398 0.99 2007-04-30 18:37:26.996577
  26320. 28551 570 2 9432 2.99 2007-04-30 19:54:44.996577
  26321. 28552 570 1 9766 4.99 2007-04-30 08:14:55.996577
  26322. 28553 570 1 10004 0.99 2007-04-30 16:19:49.996577
  26323. 28554 570 2 10168 2.99 2007-04-30 21:53:50.996577
  26324. 28555 571 2 3616 2.99 2007-04-06 04:20:39.996577
  26325. 28556 571 1 4162 4.99 2007-04-07 07:45:52.996577
  26326. 28557 571 2 5789 4.99 2007-04-10 12:39:52.996577
  26327. 28558 571 2 6676 8.99 2007-04-12 10:22:06.996577
  26328. 28559 571 1 6792 8.99 2007-04-12 15:05:54.996577
  26329. 28560 571 1 8084 5.99 2007-04-28 16:40:24.996577
  26330. 28561 571 1 8638 4.99 2007-04-29 12:58:49.996577
  26331. 28562 571 2 9300 1.99 2007-04-30 15:01:38.996577
  26332. 28563 571 1 9408 4.99 2007-04-30 19:00:35.996577
  26333. 28564 572 1 4601 2.99 2007-04-08 05:17:36.996577
  26334. 28565 572 1 5595 4.99 2007-04-10 03:02:11.996577
  26335. 28566 572 1 5713 6.99 2007-04-10 09:14:41.996577
  26336. 28567 572 2 6108 2.99 2007-04-11 05:47:50.996577
  26337. 28568 572 1 7161 4.99 2007-04-27 05:54:58.996577
  26338. 28569 572 1 7345 4.99 2007-04-27 12:58:19.996577
  26339. 28570 572 2 7713 6.99 2007-04-28 03:00:40.996577
  26340. 28571 572 2 8342 0.99 2007-04-29 03:13:31.996577
  26341. 28572 572 1 8432 0.99 2007-04-29 05:41:59.996577
  26342. 28573 572 1 9081 3.99 2007-04-30 06:38:24.996577
  26343. 28574 572 2 9950 5.99 2007-04-30 14:18:48.996577
  26344. 28575 572 2 10204 4.99 2007-04-30 23:16:05.996577
  26345. 28576 573 2 3768 0.99 2007-04-06 11:35:56.996577
  26346. 28577 573 1 3930 2.99 2007-04-06 19:22:33.996577
  26347. 28578 573 2 4023 4.99 2007-04-07 00:23:51.996577
  26348. 28579 573 1 4085 0.99 2007-04-07 03:54:05.996577
  26349. 28580 573 1 4609 0.99 2007-04-08 05:50:55.996577
  26350. 28581 573 1 4770 2.99 2007-04-08 13:58:12.996577
  26351. 28582 573 1 5036 5.99 2007-04-09 01:27:07.996577
  26352. 28583 573 2 5522 9.99 2007-04-10 00:14:55.996577
  26353. 28584 573 2 5903 2.99 2007-04-10 19:07:30.996577
  26354. 28585 573 1 6693 7.99 2007-04-12 11:05:26.996577
  26355. 28586 573 1 8400 4.99 2007-04-29 04:52:22.996577
  26356. 28587 573 2 9837 10.99 2007-04-30 10:42:45.996577
  26357. 28588 573 2 9846 4.99 2007-04-30 10:58:38.996577
  26358. 28589 573 2 9963 2.99 2007-04-30 14:45:12.996577
  26359. 28590 573 2 9971 5.99 2007-04-30 15:10:42.996577
  26360. 28591 574 1 3583 7.99 2007-04-06 02:39:09.996577
  26361. 28592 574 1 4004 4.99 2007-04-06 22:49:17.996577
  26362. 28593 574 1 4212 4.99 2007-04-07 10:21:40.996577
  26363. 28594 574 2 4890 2.99 2007-04-08 18:34:04.996577
  26364. 28595 574 2 5010 4.99 2007-04-09 00:01:49.996577
  26365. 28596 574 1 5076 3.99 2007-04-09 03:41:48.996577
  26366. 28597 574 1 5077 3.99 2007-04-09 03:46:27.996577
  26367. 28598 574 1 5640 2.99 2007-04-10 05:06:26.996577
  26368. 28599 574 1 6523 2.99 2007-04-12 02:42:45.996577
  26369. 28600 574 1 7093 1.99 2007-04-27 03:15:26.996577
  26370. 28601 574 1 7134 2.99 2007-04-27 05:01:32.996577
  26371. 28602 574 1 7964 2.99 2007-04-28 12:18:24.996577
  26372. 28603 574 1 8303 4.99 2007-04-29 01:34:22.996577
  26373. 28604 574 1 9589 7.99 2007-04-30 01:41:55.996577
  26374. 28605 574 1 9759 3.99 2007-04-30 07:54:23.996577
  26375. 28606 575 1 3558 6.99 2007-04-06 01:17:32.996577
  26376. 28607 575 2 5875 8.99 2007-04-10 17:35:13.996577
  26377. 28608 575 2 6907 2.99 2007-04-12 20:32:15.996577
  26378. 28609 575 1 7083 0.99 2007-04-27 02:57:05.996577
  26379. 28610 575 1 7139 2.99 2007-04-27 05:20:47.996577
  26380. 28611 575 2 8711 2.99 2007-04-29 15:55:41.996577
  26381. 28612 575 2 8904 0.99 2007-04-29 23:36:59.996577
  26382. 28613 575 2 8989 4.99 2007-04-30 03:07:45.996577
  26383. 28614 575 1 9733 4.99 2007-04-30 07:26:01.996577
  26384. 28615 576 1 3877 4.99 2007-04-06 16:50:36.996577
  26385. 28616 576 2 3889 0.99 2007-04-06 17:24:51.996577
  26386. 28617 576 2 3934 4.99 2007-04-06 19:35:49.996577
  26387. 28618 576 1 4514 4.99 2007-04-08 01:09:51.996577
  26388. 28619 576 2 5597 3.99 2007-04-10 03:16:23.996577
  26389. 28620 576 1 5934 4.99 2007-04-10 20:36:25.996577
  26390. 28621 576 2 7319 1.99 2007-04-27 11:59:51.996577
  26391. 28622 576 1 7605 3.99 2007-04-27 22:25:27.996577
  26392. 28623 576 1 8907 4.99 2007-04-29 23:53:29.996577
  26393. 28624 576 1 9133 5.99 2007-04-30 08:27:26.996577
  26394. 28625 576 2 9548 5.99 2007-04-30 00:22:45.996577
  26395. 28626 576 2 9620 8.99 2007-04-30 02:47:44.996577
  26396. 28627 576 2 9962 0.99 2007-04-30 14:39:02.996577
  26397. 28628 576 1 9979 2.99 2007-04-30 15:28:33.996577
  26398. 28629 576 1 10000 2.99 2007-04-30 16:09:31.996577
  26399. 28630 267 2 9403 4.99 2007-04-30 18:47:19.996577
  26400. 28631 577 2 3599 0.99 2007-04-06 03:45:02.996577
  26401. 28632 577 1 3785 7.99 2007-04-06 12:28:39.996577
  26402. 28633 577 1 4922 2.99 2007-04-08 20:12:26.996577
  26403. 28634 577 1 6500 2.99 2007-04-12 01:39:49.996577
  26404. 28635 577 2 6534 2.99 2007-04-12 03:08:09.996577
  26405. 28636 577 2 7197 0.99 2007-04-27 07:17:58.996577
  26406. 28637 577 1 7371 4.99 2007-04-27 13:47:08.996577
  26407. 28638 577 2 7876 8.99 2007-04-28 08:52:48.996577
  26408. 28639 577 1 8043 5.99 2007-04-28 15:14:10.996577
  26409. 28640 577 1 8060 6.99 2007-04-28 15:38:28.996577
  26410. 28641 577 2 8671 6.99 2007-04-29 14:18:03.996577
  26411. 28642 578 2 4496 4.99 2007-04-08 00:12:45.996577
  26412. 28643 578 1 5377 4.99 2007-04-09 17:32:56.996577
  26413. 28644 578 1 5445 0.99 2007-04-09 20:28:07.996577
  26414. 28645 578 2 5876 4.99 2007-04-10 17:35:41.996577
  26415. 28646 578 1 6784 4.99 2007-04-12 14:57:15.996577
  26416. 28647 578 1 6830 0.99 2007-04-12 17:11:21.996577
  26417. 28648 578 2 7059 5.99 2007-04-27 02:19:28.996577
  26418. 28649 578 1 8179 2.99 2007-04-28 20:33:39.996577
  26419. 28650 578 1 8218 2.99 2007-04-28 22:14:07.996577
  26420. 28651 578 2 9970 4.99 2007-04-30 15:06:50.996577
  26421. 28652 578 1 10029 6.99 2007-04-30 17:06:13.996577
  26422. 28653 578 2 10182 2.99 2007-04-30 22:36:27.996577
  26423. 28654 579 1 4619 9.99 2007-04-08 06:29:35.996577
  26424. 28655 579 1 4933 2.99 2007-04-08 20:46:55.996577
  26425. 28656 579 1 6304 4.99 2007-04-11 16:30:42.996577
  26426. 28657 579 2 6814 1.99 2007-04-12 16:40:24.996577
  26427. 28658 579 2 6824 6.99 2007-04-12 16:55:12.996577
  26428. 28659 579 2 6969 8.99 2007-04-26 22:52:20.996577
  26429. 28660 579 2 7221 2.99 2007-04-27 08:06:01.996577
  26430. 28661 579 1 8354 0.99 2007-04-29 03:24:52.996577
  26431. 28662 579 1 8876 0.99 2007-04-29 22:43:35.996577
  26432. 28663 579 1 8996 0.99 2007-04-30 03:21:49.996577
  26433. 28664 579 2 9349 9.99 2007-04-30 16:48:34.996577
  26434. 28665 579 2 9553 5.99 2007-04-30 00:35:00.996577
  26435. 28666 579 2 9976 2.99 2007-04-30 15:26:15.996577
  26436. 28667 579 2 9997 4.99 2007-04-30 16:05:56.996577
  26437. 28668 580 2 3571 1.99 2007-04-06 02:00:57.996577
  26438. 28669 580 2 3867 1.99 2007-04-06 16:20:45.996577
  26439. 28670 580 2 4169 1.99 2007-04-07 08:07:44.996577
  26440. 28671 580 2 4590 3.99 2007-04-08 04:56:14.996577
  26441. 28672 580 1 5937 6.99 2007-04-10 20:44:34.996577
  26442. 28673 580 1 6089 2.99 2007-04-11 04:14:25.996577
  26443. 28674 580 2 6170 2.99 2007-04-11 08:57:47.996577
  26444. 28675 580 1 7620 0.99 2007-04-27 22:55:43.996577
  26445. 28676 580 2 8784 4.99 2007-04-29 19:04:03.996577
  26446. 28677 580 1 8839 3.99 2007-04-29 21:21:00.996577
  26447. 28678 580 1 9199 0.99 2007-04-30 11:06:26.996577
  26448. 28679 580 1 9239 3.99 2007-04-30 12:19:18.996577
  26449. 28680 580 1 9460 5.99 2007-04-30 20:54:05.996577
  26450. 28681 580 2 9604 4.99 2007-04-30 02:15:38.996577
  26451. 28682 580 2 9865 0.99 2007-04-30 11:39:11.996577
  26452. 28683 581 2 4210 2.99 2007-04-07 10:04:46.996577
  26453. 28684 581 2 4244 2.99 2007-04-07 12:10:24.996577
  26454. 28685 581 1 4338 4.99 2007-04-07 17:08:22.996577
  26455. 28686 581 2 4613 0.99 2007-04-08 06:13:15.996577
  26456. 28687 581 1 4669 5.99 2007-04-08 08:41:34.996577
  26457. 28688 581 1 4815 8.99 2007-04-08 15:41:17.996577
  26458. 28689 581 1 4833 1.99 2007-04-08 16:36:01.996577
  26459. 28690 581 1 5516 4.99 2007-04-09 23:42:18.996577
  26460. 28691 581 1 5707 4.99 2007-04-10 08:54:40.996577
  26461. 28692 581 2 5812 2.99 2007-04-10 13:56:22.996577
  26462. 28693 581 2 7048 7.99 2007-04-27 02:00:14.996577
  26463. 28694 581 1 7783 2.99 2007-04-28 05:43:09.996577
  26464. 28695 581 1 9278 2.99 2007-04-30 13:43:45.996577
  26465. 28696 581 1 9449 1.99 2007-04-30 20:31:00.996577
  26466. 28697 582 1 3767 0.99 2007-04-06 11:35:53.996577
  26467. 28698 582 2 6629 5.99 2007-04-12 07:47:01.996577
  26468. 28699 582 2 7126 4.99 2007-04-27 04:41:39.996577
  26469. 28700 582 2 7311 6.99 2007-04-27 11:31:20.996577
  26470. 28701 582 2 7412 5.99 2007-04-27 15:13:00.996577
  26471. 28702 582 1 7575 2.99 2007-04-27 21:22:18.996577
  26472. 28703 582 2 8308 5.99 2007-04-29 01:50:41.996577
  26473. 28704 582 1 8554 2.99 2007-04-29 09:44:55.996577
  26474. 28705 582 1 8778 6.99 2007-04-29 18:42:51.996577
  26475. 28706 582 1 9768 9.99 2007-04-30 08:17:07.996577
  26476. 28707 583 1 3779 2.99 2007-04-06 12:15:02.996577
  26477. 28708 583 1 3842 4.99 2007-04-06 15:02:58.996577
  26478. 28709 583 2 3991 9.99 2007-04-06 22:02:07.996577
  26479. 28710 583 1 4464 4.99 2007-04-07 22:35:44.996577
  26480. 28711 583 1 5462 0.99 2007-04-09 21:25:19.996577
  26481. 28712 583 1 5478 5.99 2007-04-09 22:13:41.996577
  26482. 28713 583 2 5747 7.99 2007-04-10 10:43:59.996577
  26483. 28714 583 2 6684 6.99 2007-04-12 10:43:08.996577
  26484. 28715 583 1 7401 5.99 2007-04-27 14:46:21.996577
  26485. 28716 583 2 8568 7.99 2007-04-29 10:06:48.996577
  26486. 28717 583 1 9550 7.99 2007-04-30 00:26:00.996577
  26487. 28718 583 2 9808 1.99 2007-04-30 09:45:48.996577
  26488. 28719 584 2 3741 2.99 2007-04-06 10:28:44.996577
  26489. 28720 584 2 3895 7.99 2007-04-06 17:32:50.996577
  26490. 28721 584 1 4410 0.99 2007-04-07 20:16:42.996577
  26491. 28722 584 1 4977 0.99 2007-04-08 22:44:16.996577
  26492. 28723 584 2 6954 0.99 2007-04-26 22:23:39.996577
  26493. 28724 584 1 7186 2.99 2007-04-27 06:54:38.996577
  26494. 28725 584 1 7372 4.99 2007-04-27 13:47:08.996577
  26495. 28726 584 1 7659 4.99 2007-04-28 00:38:11.996577
  26496. 28727 584 2 8879 4.99 2007-04-29 22:44:28.996577
  26497. 28728 584 2 9451 3.99 2007-04-30 20:38:43.996577
  26498. 28729 584 1 9719 5.99 2007-04-30 06:53:39.996577
  26499. 28730 584 2 10073 2.99 2007-04-30 18:21:41.996577
  26500. 28731 585 2 4156 4.99 2007-04-07 07:32:17.996577
  26501. 28732 585 2 4579 4.99 2007-04-08 04:30:22.996577
  26502. 28733 585 1 4684 9.99 2007-04-08 09:09:32.996577
  26503. 28734 585 2 5284 2.99 2007-04-09 13:36:47.996577
  26504. 28735 585 2 5950 4.99 2007-04-10 21:42:11.996577
  26505. 28736 585 2 6733 6.99 2007-04-12 12:32:27.996577
  26506. 28737 585 1 7131 2.99 2007-04-27 04:53:32.996577
  26507. 28738 585 1 7384 4.99 2007-04-27 14:18:11.996577
  26508. 28739 585 2 7409 4.99 2007-04-27 15:06:50.996577
  26509. 28740 585 2 8353 2.99 2007-04-29 03:20:36.996577
  26510. 28741 585 2 9407 8.99 2007-04-30 18:53:50.996577
  26511. 28742 585 1 9590 3.99 2007-04-30 01:45:42.996577
  26512. 28743 585 1 9860 6.99 2007-04-30 11:31:50.996577
  26513. 28744 586 2 3487 6.99 2007-04-05 21:59:02.996577
  26514. 28745 586 2 3733 4.99 2007-04-06 10:02:21.996577
  26515. 28746 586 2 5382 2.99 2007-04-09 17:41:23.996577
  26516. 28747 586 1 6679 2.99 2007-04-12 10:29:33.996577
  26517. 28748 586 2 9786 2.99 2007-04-30 08:53:47.996577
  26518. 28749 586 2 9896 2.99 2007-04-30 12:38:14.996577
  26519. 28750 587 2 3562 2.99 2007-04-06 01:23:02.996577
  26520. 28751 587 2 3969 0.99 2007-04-06 21:16:25.996577
  26521. 28752 587 2 5243 3.99 2007-04-09 11:50:34.996577
  26522. 28753 587 1 6639 0.99 2007-04-12 08:29:10.996577
  26523. 28754 587 2 6665 6.99 2007-04-12 09:57:40.996577
  26524. 28755 587 1 7501 8.99 2007-04-27 18:45:25.996577
  26525. 28756 587 2 8776 5.99 2007-04-29 18:35:32.996577
  26526. 28757 587 2 9720 6.99 2007-04-30 06:53:47.996577
  26527. 28758 587 2 9785 4.99 2007-04-30 08:50:41.996577
  26528. 28759 587 2 9909 5.99 2007-04-30 13:12:00.996577
  26529. 28760 588 1 3628 4.99 2007-04-06 04:48:09.996577
  26530. 28761 588 1 4101 0.99 2007-04-07 04:53:37.996577
  26531. 28762 588 2 4207 5.99 2007-04-07 10:01:11.996577
  26532. 28763 588 2 5203 2.99 2007-04-09 09:22:25.996577
  26533. 28764 588 1 5335 4.99 2007-04-09 15:29:15.996577
  26534. 28765 588 1 6368 4.99 2007-04-11 19:47:27.996577
  26535. 28766 588 2 7377 2.99 2007-04-27 13:59:54.996577
  26536. 28767 588 2 7903 2.99 2007-04-28 09:49:02.996577
  26537. 28768 588 1 8421 4.99 2007-04-29 05:29:13.996577
  26538. 28769 588 1 8429 2.99 2007-04-29 05:40:15.996577
  26539. 28770 588 2 8519 2.99 2007-04-29 08:38:09.996577
  26540. 28771 588 1 8769 2.99 2007-04-29 18:13:59.996577
  26541. 28772 588 2 9326 2.99 2007-04-30 15:58:29.996577
  26542. 28773 588 2 9370 4.99 2007-04-30 17:25:55.996577
  26543. 28774 589 2 4986 2.99 2007-04-08 23:12:59.996577
  26544. 28775 589 1 5951 0.99 2007-04-10 21:42:55.996577
  26545. 28776 589 2 6177 4.99 2007-04-11 09:22:15.996577
  26546. 28777 589 2 6247 3.99 2007-04-11 13:28:31.996577
  26547. 28778 589 2 7250 0.99 2007-04-27 09:12:35.996577
  26548. 28779 589 2 7431 3.99 2007-04-27 15:55:53.996577
  26549. 28780 589 2 7948 9.99 2007-04-28 11:34:42.996577
  26550. 28781 589 2 8056 0.99 2007-04-28 15:32:41.996577
  26551. 28782 589 1 8374 3.99 2007-04-29 03:52:28.996577
  26552. 28783 589 1 9153 4.99 2007-04-30 09:26:42.996577
  26553. 28784 590 2 4685 4.99 2007-04-08 09:13:39.996577
  26554. 28785 590 1 4710 2.99 2007-04-08 10:33:19.996577
  26555. 28786 590 2 4722 4.99 2007-04-08 11:10:53.996577
  26556. 28787 590 1 5165 0.99 2007-04-09 07:37:19.996577
  26557. 28788 590 1 5529 2.99 2007-04-10 00:39:39.996577
  26558. 28789 590 1 5991 4.99 2007-04-10 23:32:04.996577
  26559. 28790 590 2 6232 4.99 2007-04-11 12:36:53.996577
  26560. 28791 590 2 6492 4.99 2007-04-12 00:57:06.996577
  26561. 28792 590 1 7010 4.99 2007-04-27 00:24:27.996577
  26562. 28793 590 2 7665 2.99 2007-04-28 00:56:56.996577
  26563. 28794 590 1 8195 5.99 2007-04-28 21:21:24.996577
  26564. 28795 590 1 8801 4.99 2007-04-29 19:53:48.996577
  26565. 28796 590 2 9126 0.99 2007-04-30 08:12:41.996577
  26566. 28797 590 1 9884 4.99 2007-04-30 12:24:50.996577
  26567. 28798 591 1 3636 0.99 2007-04-06 05:32:18.996577
  26568. 28799 591 2 4383 11.99 2007-04-07 19:14:17.996577
  26569. 28800 591 1 4581 6.99 2007-04-08 04:33:32.996577
  26570. 28801 591 1 5704 5.99 2007-04-10 08:34:55.996577
  26571. 28802 591 1 5759 6.99 2007-04-10 11:11:48.996577
  26572. 28803 591 1 7118 8.99 2007-04-27 04:22:16.996577
  26573. 28804 591 1 7212 2.99 2007-04-27 07:49:48.996577
  26574. 28805 591 2 7511 4.99 2007-04-27 19:07:06.996577
  26575. 28806 591 1 7549 3.99 2007-04-27 20:21:47.996577
  26576. 28807 591 2 7741 0.99 2007-04-28 03:54:21.996577
  26577. 28808 591 1 7997 4.99 2007-04-28 13:30:51.996577
  26578. 28809 591 1 8149 3.99 2007-04-28 19:16:38.996577
  26579. 28810 591 2 8666 5.99 2007-04-29 14:08:04.996577
  26580. 28811 591 2 8819 4.99 2007-04-29 20:42:52.996577
  26581. 28812 591 1 9684 0.99 2007-04-30 05:16:59.996577
  26582. 28813 592 2 3560 2.99 2007-04-06 01:20:03.996577
  26583. 28814 592 1 3973 11.99 2007-04-06 21:26:57.996577
  26584. 28815 592 1 4129 1.99 2007-04-07 06:05:29.996577
  26585. 28816 592 1 4145 9.99 2007-04-07 06:55:05.996577
  26586. 28817 592 1 4460 0.99 2007-04-07 22:18:40.996577
  26587. 28818 592 1 4518 2.99 2007-04-08 01:17:02.996577
  26588. 28819 592 1 6937 0.99 2007-04-26 21:44:16.996577
  26589. 28820 592 2 7173 0.99 2007-04-27 06:27:50.996577
  26590. 28821 592 1 7278 3.99 2007-04-27 10:19:00.996577
  26591. 28822 592 2 7364 4.99 2007-04-27 13:27:06.996577
  26592. 28823 592 1 8730 2.99 2007-04-29 16:52:00.996577
  26593. 28824 592 2 8773 0.99 2007-04-29 18:24:00.996577
  26594. 28825 592 1 9268 4.99 2007-04-30 13:30:56.996577
  26595. 28826 592 1 9437 3.99 2007-04-30 20:04:30.996577
  26596. 28827 592 2 9666 6.99 2007-04-30 04:49:24.996577
  26597. 28828 593 2 3542 2.99 2007-04-06 00:20:08.996577
  26598. 28829 593 2 4075 2.99 2007-04-07 03:20:10.996577
  26599. 28830 593 2 4280 3.99 2007-04-07 13:37:57.996577
  26600. 28831 593 2 4623 0.99 2007-04-08 06:31:48.996577
  26601. 28832 593 2 4781 4.99 2007-04-08 14:35:21.996577
  26602. 28833 593 2 4867 0.99 2007-04-08 17:39:18.996577
  26603. 28834 593 1 6386 2.99 2007-04-11 20:43:23.996577
  26604. 28835 593 1 6731 2.99 2007-04-12 12:26:53.996577
  26605. 28836 593 2 7958 4.99 2007-04-28 12:03:00.996577
  26606. 28837 593 1 8497 2.99 2007-04-29 07:35:29.996577
  26607. 28838 593 2 9329 6.99 2007-04-30 16:11:04.996577
  26608. 28839 593 1 9483 6.99 2007-04-30 21:59:57.996577
  26609. 28840 594 2 3474 0.99 2007-04-05 21:28:19.996577
  26610. 28841 594 1 3546 4.99 2007-04-06 00:46:20.996577
  26611. 28842 594 2 3960 2.99 2007-04-06 20:37:19.996577
  26612. 28843 594 1 4037 5.99 2007-04-07 01:21:18.996577
  26613. 28844 594 1 4154 3.99 2007-04-07 07:26:49.996577
  26614. 28845 594 2 5386 2.99 2007-04-09 17:47:35.996577
  26615. 28846 594 1 6473 6.99 2007-04-12 00:04:06.996577
  26616. 28847 594 1 7533 8.99 2007-04-27 19:52:59.996577
  26617. 28848 594 1 8567 1.99 2007-04-29 10:05:56.996577
  26618. 28849 594 1 8603 2.99 2007-04-29 11:35:33.996577
  26619. 28850 594 2 8820 5.99 2007-04-29 20:43:22.996577
  26620. 28851 594 1 9545 7.99 2007-04-30 00:14:50.996577
  26621. 28852 594 1 9698 3.99 2007-04-30 05:53:01.996577
  26622. 28853 594 2 9802 4.99 2007-04-30 09:32:46.996577
  26623. 28854 595 1 3789 9.99 2007-04-06 12:30:52.996577
  26624. 28855 595 1 4017 4.99 2007-04-06 23:36:44.996577
  26625. 28856 595 1 4241 4.99 2007-04-07 12:07:26.996577
  26626. 28857 595 2 4775 2.99 2007-04-08 14:12:31.996577
  26627. 28858 595 1 5631 1.99 2007-04-10 04:44:11.996577
  26628. 28859 595 1 5952 1.99 2007-04-10 21:46:46.996577
  26629. 28860 595 1 6105 6.99 2007-04-11 05:31:45.996577
  26630. 28861 595 1 6704 6.99 2007-04-12 11:18:50.996577
  26631. 28862 595 1 7086 4.99 2007-04-27 03:08:12.996577
  26632. 28863 595 2 7307 0.99 2007-04-27 11:27:36.996577
  26633. 28864 595 1 7396 4.99 2007-04-27 14:32:19.996577
  26634. 28865 595 2 7490 3.99 2007-04-27 18:16:38.996577
  26635. 28866 595 1 9152 2.99 2007-04-30 09:19:53.996577
  26636. 28867 595 2 9223 2.99 2007-04-30 11:51:46.996577
  26637. 28868 595 1 9354 4.99 2007-04-30 17:01:17.996577
  26638. 28869 595 2 9497 0.99 2007-04-30 22:25:20.996577
  26639. 28870 595 2 9542 4.99 2007-04-30 00:10:14.996577
  26640. 28871 595 1 9631 2.99 2007-04-30 03:30:26.996577
  26641. 28872 595 2 9826 10.99 2007-04-30 10:20:12.996577
  26642. 28873 596 2 5742 3.99 2007-04-10 10:24:44.996577
  26643. 28874 596 1 6015 2.99 2007-04-11 00:32:38.996577
  26644. 28875 596 1 6017 0.99 2007-04-11 00:33:58.996577
  26645. 28876 596 1 6197 4.99 2007-04-11 10:38:17.996577
  26646. 28877 596 2 6883 4.99 2007-04-12 19:19:14.996577
  26647. 28878 596 1 10094 3.99 2007-04-30 18:59:44.996577
  26648. 28879 597 1 5093 0.99 2007-04-09 04:27:38.996577
  26649. 28880 597 1 5348 4.99 2007-04-09 16:02:37.996577
  26650. 28881 597 2 5732 2.99 2007-04-10 10:04:58.996577
  26651. 28882 597 1 6508 2.99 2007-04-12 02:03:16.996577
  26652. 28883 597 2 7968 4.99 2007-04-28 12:26:01.996577
  26653. 28884 597 2 8948 4.99 2007-04-30 01:44:44.996577
  26654. 28885 597 2 10021 4.99 2007-04-30 16:53:05.996577
  26655. 28886 597 1 10214 0.99 2007-04-30 23:32:41.996577
  26656. 28887 598 1 3648 0.99 2007-04-06 05:59:07.996577
  26657. 28888 598 2 3950 6.99 2007-04-06 20:17:10.996577
  26658. 28889 598 1 3972 4.99 2007-04-06 21:22:23.996577
  26659. 28890 598 1 4181 4.99 2007-04-07 08:56:20.996577
  26660. 28891 598 2 5688 5.99 2007-04-10 07:44:34.996577
  26661. 28892 598 1 6519 4.99 2007-04-12 02:29:02.996577
  26662. 28893 598 2 6528 4.99 2007-04-12 02:58:10.996577
  26663. 28894 598 2 6575 0.99 2007-04-12 04:41:19.996577
  26664. 28895 598 2 6660 3.99 2007-04-12 09:48:38.996577
  26665. 28896 598 2 7201 6.99 2007-04-27 07:26:06.996577
  26666. 28897 598 2 7354 0.99 2007-04-27 13:10:37.996577
  26667. 28898 598 1 7998 0.99 2007-04-28 13:37:14.996577
  26668. 28899 598 2 8436 0.99 2007-04-29 05:49:46.996577
  26669. 28900 598 1 8511 5.99 2007-04-29 08:11:08.996577
  26670. 28901 598 1 8939 4.99 2007-04-30 01:25:19.996577
  26671. 28902 598 1 10054 4.99 2007-04-30 17:44:18.996577
  26672. 28903 599 1 5065 0.99 2007-04-09 03:10:26.996577
  26673. 28904 599 1 5843 2.99 2007-04-10 15:42:53.996577
  26674. 28905 599 2 6800 9.99 2007-04-12 15:32:22.996577
  26675. 28906 599 2 6895 2.99 2007-04-12 19:52:25.996577
  26676. 28907 599 1 8965 6.99 2007-04-30 02:21:03.996577
  26677. 28908 599 2 9630 2.99 2007-04-30 03:25:33.996577
  26678. 28909 202 1 3861 8.99 2007-04-06 15:53:15.996577
  26679. 28910 599 2 9679 2.99 2007-04-30 05:09:45.996577
  26680. 28911 202 2 4567 4.99 2007-04-08 03:48:30.996577
  26681. 28912 202 2 5194 2.99 2007-04-09 09:00:00.996577
  26682. 28913 202 1 5297 2.99 2007-04-09 14:00:55.996577
  26683. 28914 202 2 5838 2.99 2007-04-10 15:33:22.996577
  26684. 28915 202 1 7613 2.99 2007-04-27 22:42:24.996577
  26685. 28916 202 1 8351 2.99 2007-04-29 03:19:19.996577
  26686. 28917 202 1 8779 2.99 2007-04-29 18:43:26.996577
  26687. 28918 202 1 8830 2.99 2007-04-29 21:03:01.996577
  26688. 28919 202 2 8930 0.99 2007-04-30 00:57:04.996577
  26689. 28920 202 2 9057 2.99 2007-04-30 05:42:44.996577
  26690. 28921 202 2 9467 8.99 2007-04-30 21:14:00.996577
  26691. 28922 202 2 9751 4.99 2007-04-30 07:49:16.996577
  26692. 28923 203 2 4136 2.99 2007-04-07 06:44:18.996577
  26693. 28924 203 2 5579 5.99 2007-04-10 02:32:55.996577
  26694. 28925 203 2 7787 6.99 2007-04-28 05:47:28.996577
  26695. 28926 203 1 8039 0.99 2007-04-28 15:03:42.996577
  26696. 28927 203 1 8463 4.99 2007-04-29 06:46:17.996577
  26697. 28928 203 1 8792 7.99 2007-04-29 19:24:40.996577
  26698. 28929 203 2 9015 10.99 2007-04-30 03:49:58.996577
  26699. 28930 204 1 4043 0.99 2007-04-07 01:38:16.996577
  26700. 28931 204 1 4979 4.99 2007-04-08 22:53:00.996577
  26701. 28932 204 2 5145 0.99 2007-04-09 06:41:51.996577
  26702. 28933 204 1 5619 2.99 2007-04-10 03:57:59.996577
  26703. 28934 204 2 6004 4.99 2007-04-11 00:02:51.996577
  26704. 28935 204 2 6225 2.99 2007-04-11 12:13:40.996577
  26705. 28936 204 2 6631 0.99 2007-04-12 08:00:09.996577
  26706. 28937 204 1 6694 6.99 2007-04-12 11:07:49.996577
  26707. 28938 204 2 6871 2.99 2007-04-12 18:42:15.996577
  26708. 28939 204 1 7392 4.99 2007-04-27 14:29:31.996577
  26709. 28940 204 2 9005 0.99 2007-04-30 03:33:24.996577
  26710. 28941 204 1 9394 5.99 2007-04-30 18:34:50.996577
  26711. 28942 204 2 9906 4.99 2007-04-30 13:06:38.996577
  26712. 28943 204 2 10042 2.99 2007-04-30 17:29:51.996577
  26713. 28944 205 1 3601 7.99 2007-04-06 03:48:51.996577
  26714. 28945 205 2 4230 3.99 2007-04-07 11:15:13.996577
  26715. 28946 205 2 4377 7.99 2007-04-07 18:57:23.996577
  26716. 28947 205 1 4729 4.99 2007-04-08 11:28:06.996577
  26717. 28948 205 1 7736 2.99 2007-04-28 03:40:30.996577
  26718. 28949 205 2 7976 7.99 2007-04-28 12:41:50.996577
  26719. 28950 205 2 8896 4.99 2007-04-29 23:19:47.996577
  26720. 28951 205 2 10086 4.99 2007-04-30 18:42:34.996577
  26721. 28952 206 1 3533 5.99 2007-04-05 23:55:10.996577
  26722. 28953 206 2 3831 0.99 2007-04-06 14:35:01.996577
  26723. 28954 206 1 3847 4.99 2007-04-06 15:13:07.996577
  26724. 28955 206 2 4068 4.99 2007-04-07 03:03:04.996577
  26725. 28956 206 2 4107 4.99 2007-04-07 05:04:58.996577
  26726. 28957 206 2 4823 4.99 2007-04-08 15:57:20.996577
  26727. 28958 206 1 6139 3.99 2007-04-11 07:07:59.996577
  26728. 28959 206 1 6420 6.99 2007-04-11 22:07:15.996577
  26729. 28960 206 1 7222 4.99 2007-04-27 08:07:09.996577
  26730. 28961 206 2 7541 4.99 2007-04-27 20:08:31.996577
  26731. 28962 206 1 8217 5.99 2007-04-28 22:12:39.996577
  26732. 28963 206 1 8549 3.99 2007-04-29 09:40:39.996577
  26733. 28964 206 2 9474 2.99 2007-04-30 21:34:10.996577
  26734. 28965 207 2 3584 2.99 2007-04-06 02:45:09.996577
  26735. 28966 207 2 3687 9.99 2007-04-06 08:06:59.996577
  26736. 28967 207 1 4018 2.99 2007-04-06 23:38:59.996577
  26737. 28968 207 2 4713 5.99 2007-04-08 10:40:59.996577
  26738. 28969 207 1 4816 0.99 2007-04-08 15:42:40.996577
  26739. 28970 207 2 5007 0.99 2007-04-08 23:54:48.996577
  26740. 28971 207 1 5258 0.99 2007-04-09 12:25:22.996577
  26741. 28972 207 1 5259 4.99 2007-04-09 12:31:16.996577
  26742. 28973 207 2 5939 0.99 2007-04-10 20:58:31.996577
  26743. 28974 207 2 6465 5.99 2007-04-11 23:45:37.996577
  26744. 28975 207 1 6537 0.99 2007-04-12 03:14:56.996577
  26745. 28976 207 2 7306 5.99 2007-04-27 11:25:52.996577
  26746. 28977 207 1 7540 5.99 2007-04-27 20:08:21.996577
  26747. 28978 207 1 8800 5.99 2007-04-29 19:47:25.996577
  26748. 28979 207 2 9652 2.99 2007-04-30 04:18:19.996577
  26749. 28980 208 2 3811 2.99 2007-04-06 13:49:03.996577
  26750. 28981 208 1 4354 5.99 2007-04-07 17:49:28.996577
  26751. 28982 208 2 4985 4.99 2007-04-08 23:04:28.996577
  26752. 28983 208 1 5117 2.99 2007-04-09 05:39:48.996577
  26753. 28984 208 2 5693 2.99 2007-04-10 08:04:09.996577
  26754. 28985 208 2 6306 6.99 2007-04-11 16:32:52.996577
  26755. 28986 208 1 6767 1.99 2007-04-12 14:15:21.996577
  26756. 28987 208 1 7315 0.99 2007-04-27 11:43:22.996577
  26757. 28988 208 1 7861 2.99 2007-04-28 08:30:27.996577
  26758. 28989 208 2 7984 2.99 2007-04-28 12:56:17.996577
  26759. 28990 208 1 8742 1.99 2007-04-29 17:24:38.996577
  26760. 28991 208 2 9298 3.99 2007-04-30 14:56:19.996577
  26761. 28992 208 1 9838 4.99 2007-04-30 10:47:15.996577
  26762. 28993 1 2 4526 5.99 2007-04-08 01:45:31.996577
  26763. 28994 1 1 4611 5.99 2007-04-08 06:02:22.996577
  26764. 28995 1 1 5244 4.99 2007-04-09 11:52:33.996577
  26765. 28996 1 1 5326 4.99 2007-04-09 15:06:27.996577
  26766. 28997 1 1 6163 7.99 2007-04-11 08:42:12.996577
  26767. 28998 1 2 7273 2.99 2007-04-27 09:59:48.996577
  26768. 28999 1 1 7841 4.99 2007-04-28 07:33:11.996577
  26769. 29000 1 2 8033 4.99 2007-04-28 14:46:49.996577
  26770. 29001 1 1 8074 0.99 2007-04-28 16:02:05.996577
  26771. 29002 1 2 8116 0.99 2007-04-28 17:48:33.996577
  26772. 29003 1 2 8326 2.99 2007-04-29 02:27:15.996577
  26773. 29004 1 2 9571 2.99 2007-04-30 01:10:44.996577
  26774. 29005 2 1 5636 2.99 2007-04-10 04:59:50.996577
  26775. 29006 2 1 5755 6.99 2007-04-10 11:07:22.996577
  26776. 29007 2 2 7346 4.99 2007-04-27 12:59:08.996577
  26777. 29008 2 1 7376 5.99 2007-04-27 13:51:28.996577
  26778. 29009 2 2 7459 5.99 2007-04-27 17:08:46.996577
  26779. 29010 2 2 8230 5.99 2007-04-28 22:41:25.996577
  26780. 29011 2 1 8598 2.99 2007-04-29 11:25:25.996577
  26781. 29012 2 2 8705 5.99 2007-04-29 15:42:55.996577
  26782. 29013 2 1 9031 4.99 2007-04-30 04:34:36.996577
  26783. 29014 2 2 9236 10.99 2007-04-30 12:16:09.996577
  26784. 29015 2 2 9248 0.99 2007-04-30 12:42:37.996577
  26785. 29016 2 2 9296 6.99 2007-04-30 14:49:39.996577
  26786. 29017 2 2 9465 6.99 2007-04-30 21:08:19.996577
  26787. 29018 2 1 10136 2.99 2007-04-30 20:27:22.996577
  26788. 29019 3 1 4180 4.99 2007-04-07 08:51:51.996577
  26789. 29020 3 1 4725 4.99 2007-04-08 11:15:37.996577
  26790. 29021 3 1 7096 5.99 2007-04-27 03:23:08.996577
  26791. 29022 3 2 7503 10.99 2007-04-27 18:51:38.996577
  26792. 29023 3 2 7703 7.99 2007-04-28 02:27:47.996577
  26793. 29024 3 2 7724 6.99 2007-04-28 03:14:56.996577
  26794. 29025 3 1 7911 4.99 2007-04-28 10:15:11.996577
  26795. 29026 3 2 8086 4.99 2007-04-28 16:45:40.996577
  26796. 29027 3 1 8545 2.99 2007-04-29 09:35:30.996577
  26797. 29028 3 1 9226 1.99 2007-04-30 11:59:46.996577
  26798. 29029 3 2 9443 3.99 2007-04-30 20:14:12.996577
  26799. 29030 3 1 9595 2.99 2007-04-30 01:56:24.996577
  26800. 29031 3 2 9816 4.99 2007-04-30 10:01:24.996577
  26801. 29032 4 1 7660 2.99 2007-04-28 00:38:36.996577
  26802. 29033 4 2 7718 2.99 2007-04-28 03:06:25.996577
  26803. 29034 4 1 8741 3.99 2007-04-29 17:13:23.996577
  26804. 29035 4 1 9100 5.99 2007-04-30 07:14:35.996577
  26805. 29036 4 1 9371 5.99 2007-04-30 17:26:26.996577
  26806. 29037 5 2 3677 4.99 2007-04-06 07:40:24.996577
  26807. 29038 5 2 4889 2.99 2007-04-08 18:33:09.996577
  26808. 29039 5 1 5016 4.99 2007-04-09 00:26:23.996577
  26809. 29040 5 2 5118 5.99 2007-04-09 05:42:18.996577
  26810. 29041 5 2 5156 1.99 2007-04-09 07:20:08.996577
  26811. 29042 5 2 5721 0.99 2007-04-10 09:38:01.996577
  26812. 29043 5 1 6042 8.99 2007-04-11 01:45:30.996577
  26813. 29044 5 1 6663 3.99 2007-04-12 09:56:01.996577
  26814. 29045 5 2 6685 4.99 2007-04-12 10:44:54.996577
  26815. 29046 5 2 7293 0.99 2007-04-27 11:05:54.996577
  26816. 29047 5 2 7652 0.99 2007-04-28 00:18:55.996577
  26817. 29048 5 2 7829 3.99 2007-04-28 07:12:05.996577
  26818. 29049 5 1 8263 2.99 2007-04-28 23:39:49.996577
  26819. 29050 5 1 8978 1.99 2007-04-30 02:42:54.996577
  26820. 29051 5 1 9493 4.99 2007-04-30 22:20:56.996577
  26821. 29052 5 1 9888 3.99 2007-04-30 12:29:19.996577
  26822. 29053 6 2 3983 0.99 2007-04-06 21:42:47.996577
  26823. 29054 6 2 4278 2.99 2007-04-07 13:21:50.996577
  26824. 29055 6 1 5553 0.99 2007-04-10 01:32:01.996577
  26825. 29056 6 2 6211 5.99 2007-04-11 11:07:27.996577
  26826. 29057 6 1 6248 7.99 2007-04-11 13:30:20.996577
  26827. 29058 6 2 6686 0.99 2007-04-12 10:47:04.996577
  26828. 29059 6 2 7099 2.99 2007-04-27 03:32:10.996577
  26829. 29060 6 2 7136 2.99 2007-04-27 05:06:51.996577
  26830. 29061 6 1 8101 0.99 2007-04-28 17:15:49.996577
  26831. 29062 7 2 3639 5.99 2007-04-06 05:37:43.996577
  26832. 29063 7 2 4238 2.99 2007-04-07 11:50:46.996577
  26833. 29064 7 2 4787 5.99 2007-04-08 14:44:30.996577
  26834. 29065 7 1 4856 4.99 2007-04-08 17:16:04.996577
  26835. 29066 7 1 5441 8.99 2007-04-09 20:20:31.996577
  26836. 29067 7 1 5921 7.99 2007-04-10 20:03:38.996577
  26837. 29068 7 1 6174 1.99 2007-04-11 09:04:54.996577
  26838. 29069 7 1 6295 2.99 2007-04-11 15:59:24.996577
  26839. 29070 7 2 6761 3.99 2007-04-12 13:46:08.996577
  26840. 29071 7 2 8422 5.99 2007-04-29 05:31:21.996577
  26841. 29072 7 2 9624 7.99 2007-04-30 02:58:29.996577
  26842. 29073 8 1 3475 5.99 2007-04-05 21:29:47.996577
  26843. 29074 8 1 4003 0.99 2007-04-06 22:37:28.996577
  26844. 29075 8 2 4175 2.99 2007-04-07 08:30:29.996577
  26845. 29076 8 2 4409 3.99 2007-04-07 20:15:55.996577
  26846. 29077 8 1 4503 3.99 2007-04-08 00:45:38.996577
  26847. 29078 8 1 5300 2.99 2007-04-09 14:09:12.996577
  26848. 29079 8 2 5341 2.99 2007-04-09 15:41:49.996577
  26849. 29080 8 1 6375 4.99 2007-04-11 20:08:12.996577
  26850. 29081 8 1 6647 0.99 2007-04-12 09:12:19.996577
  26851. 29082 8 1 8809 1.99 2007-04-29 20:11:15.996577
  26852. 29083 8 2 9629 2.99 2007-04-30 03:23:09.996577
  26853. 29084 8 2 10141 0.99 2007-04-30 20:36:55.996577
  26854. 29085 9 1 4454 2.99 2007-04-07 22:05:26.996577
  26855. 29086 9 2 4748 0.99 2007-04-08 12:28:04.996577
  26856. 29087 9 1 4796 1.99 2007-04-08 15:04:10.996577
  26857. 29088 9 1 5659 2.99 2007-04-10 06:14:06.996577
  26858. 29089 9 2 6019 4.99 2007-04-11 00:36:55.996577
  26859. 29090 9 1 6165 5.99 2007-04-11 08:45:55.996577
  26860. 29091 9 2 7616 0.99 2007-04-27 22:43:52.996577
  26861. 29092 9 1 7801 2.99 2007-04-28 06:20:22.996577
  26862. 29093 9 1 9043 4.99 2007-04-30 05:02:33.996577
  26863. 29094 10 2 3790 3.99 2007-04-06 12:42:11.996577
  26864. 29095 10 2 4042 4.99 2007-04-07 01:35:06.996577
  26865. 29096 10 1 4255 1.99 2007-04-07 12:42:39.996577
  26866. 29097 10 1 5038 7.99 2007-04-09 01:41:18.996577
  26867. 29098 10 2 5068 2.99 2007-04-09 03:21:44.996577
  26868. 29099 10 1 5444 0.99 2007-04-09 20:27:23.996577
  26869. 29100 10 1 5905 2.99 2007-04-10 19:09:35.996577
  26870. 29101 10 1 7738 2.99 2007-04-28 03:50:08.996577
  26871. 29102 10 2 8001 6.99 2007-04-28 13:39:21.996577
  26872. 29103 10 2 8188 4.99 2007-04-28 21:02:38.996577
  26873. 29104 10 1 9935 4.99 2007-04-30 13:55:33.996577
  26874. 29105 11 2 4608 2.99 2007-04-08 05:47:37.996577
  26875. 29106 11 1 4943 4.99 2007-04-08 21:11:31.996577
  26876. 29107 11 2 5835 5.99 2007-04-10 15:13:24.996577
  26877. 29108 11 2 6146 6.99 2007-04-11 07:38:25.996577
  26878. 29109 11 1 7314 4.99 2007-04-27 11:41:58.996577
  26879. 29110 11 1 8014 4.99 2007-04-28 14:00:33.996577
  26880. 29111 11 2 8100 2.99 2007-04-28 17:11:37.996577
  26881. 29112 11 2 8447 1.99 2007-04-29 06:06:40.996577
  26882. 29113 11 1 8715 0.99 2007-04-29 16:02:11.996577
  26883. 29114 11 1 8950 9.99 2007-04-30 01:45:39.996577
  26884. 29115 11 2 9292 6.99 2007-04-30 14:36:47.996577
  26885. 29116 12 1 3870 3.99 2007-04-06 16:26:20.996577
  26886. 29117 12 1 5071 0.99 2007-04-09 03:29:05.996577
  26887. 29118 12 1 5074 0.99 2007-04-09 03:34:50.996577
  26888. 29119 12 2 5111 0.99 2007-04-09 05:30:45.996577
  26889. 29120 12 2 5242 3.99 2007-04-09 11:48:51.996577
  26890. 29121 12 1 6773 2.99 2007-04-12 14:24:05.996577
  26891. 29122 12 2 7008 0.99 2007-04-27 00:12:29.996577
  26892. 29123 12 2 7279 0.99 2007-04-27 10:19:13.996577
  26893. 29124 12 2 8985 0.99 2007-04-30 03:03:17.996577
  26894. 29125 12 2 9166 4.99 2007-04-30 09:54:54.996577
  26895. 29126 12 2 9238 5.99 2007-04-30 12:18:09.996577
  26896. 29127 12 1 9627 5.99 2007-04-30 03:11:12.996577
  26897. 29128 12 2 9708 5.99 2007-04-30 06:13:59.996577
  26898. 29129 13 2 3946 2.99 2007-04-06 20:07:50.996577
  26899. 29130 13 1 6118 8.99 2007-04-11 06:11:34.996577
  26900. 29131 13 1 6568 2.99 2007-04-12 04:14:13.996577
  26901. 29132 13 1 6870 0.99 2007-04-12 18:42:11.996577
  26902. 29133 13 1 6897 2.99 2007-04-12 19:59:07.996577
  26903. 29134 13 1 7916 2.99 2007-04-28 10:18:19.996577
  26904. 29135 13 1 8277 2.99 2007-04-29 00:07:19.996577
  26905. 29136 13 2 8831 11.99 2007-04-29 21:06:07.996577
  26906. 29137 13 2 9260 9.99 2007-04-30 13:06:48.996577
  26907. 29138 13 2 9434 0.99 2007-04-30 19:58:07.996577
  26908. 29139 13 1 9664 0.99 2007-04-30 04:40:34.996577
  26909. 29140 13 1 9736 7.99 2007-04-30 07:27:06.996577
  26910. 29141 13 1 10003 4.99 2007-04-30 16:17:17.996577
  26911. 29142 14 1 3707 2.99 2007-04-06 08:50:15.996577
  26912. 29143 14 1 4952 0.99 2007-04-08 21:28:33.996577
  26913. 29144 14 1 5104 0.99 2007-04-09 05:05:33.996577
  26914. 29145 14 2 5317 7.99 2007-04-09 14:38:51.996577
  26915. 29146 14 1 5383 4.99 2007-04-09 17:42:58.996577
  26916. 29147 14 1 5565 7.99 2007-04-10 01:58:14.996577
  26917. 29148 14 1 8035 6.99 2007-04-28 14:51:27.996577
  26918. 29149 14 1 8042 0.99 2007-04-28 15:13:37.996577
  26919. 29150 14 1 8548 3.99 2007-04-29 09:39:59.996577
  26920. 29151 14 2 8836 4.99 2007-04-29 21:14:34.996577
  26921. 29152 14 2 9438 4.99 2007-04-30 20:04:41.996577
  26922. 29153 14 1 9592 2.99 2007-04-30 01:49:42.996577
  26923. 29154 15 1 3550 7.99 2007-04-06 00:57:47.996577
  26924. 29155 15 1 4127 5.99 2007-04-07 05:54:45.996577
  26925. 29156 15 1 5717 2.99 2007-04-10 09:30:29.996577
  26926. 29157 15 2 5975 2.99 2007-04-10 22:42:45.996577
  26927. 29158 15 1 7105 4.99 2007-04-27 03:44:03.996577
  26928. 29159 15 1 8193 0.99 2007-04-28 21:19:16.996577
  26929. 29160 15 2 8615 6.99 2007-04-29 12:04:27.996577
  26930. 29161 15 2 8927 4.99 2007-04-30 00:41:57.996577
  26931. 29162 15 1 9987 2.99 2007-04-30 15:51:01.996577
  26932. 29163 401 1 4591 0.99 2007-04-12 04:54:36.996577
  26933. 29164 16 1 3548 0.99 2007-04-06 00:52:05.996577
  26934. 29165 16 2 4219 2.99 2007-04-07 10:39:48.996577
  26935. 29166 16 2 4263 3.99 2007-04-07 12:53:10.996577
  26936. 29167 16 2 4517 4.99 2007-04-08 01:13:45.996577
  26937. 29168 16 1 6100 4.99 2007-04-11 05:08:57.996577
  26938. 29169 16 2 7489 0.99 2007-04-27 18:08:04.996577
  26939. 29170 16 2 7552 2.99 2007-04-27 20:32:07.996577
  26940. 29171 16 2 8452 5.99 2007-04-29 06:13:26.996577
  26941. 29172 16 2 9158 0.99 2007-04-30 09:40:29.996577
  26942. 29173 16 2 9610 5.99 2007-04-30 02:22:31.996577
  26943. 29174 17 1 5714 3.99 2007-04-10 09:15:23.996577
  26944. 29175 17 1 5883 3.99 2007-04-10 17:53:47.996577
  26945. 29176 17 2 6884 1.99 2007-04-12 19:21:07.996577
  26946. 29177 17 2 8076 8.99 2007-04-28 16:14:24.996577
  26947. 29178 17 1 8213 2.99 2007-04-28 22:05:59.996577
  26948. 29179 17 2 9092 8.99 2007-04-30 06:59:22.996577
  26949. 29180 17 1 9138 2.99 2007-04-30 08:40:18.996577
  26950. 29181 17 2 9382 8.99 2007-04-30 17:52:10.996577
  26951. 29182 17 1 9489 0.99 2007-04-30 22:11:58.996577
  26952. 29183 18 2 4672 3.99 2007-04-08 08:44:04.996577
  26953. 29184 18 2 4724 3.99 2007-04-08 11:14:56.996577
  26954. 29185 18 2 4923 3.99 2007-04-08 20:13:05.996577
  26955. 29186 18 2 6128 2.99 2007-04-11 06:43:34.996577
  26956. 29187 18 1 6846 0.99 2007-04-12 17:49:11.996577
  26957. 29188 18 2 8122 2.99 2007-04-28 17:56:03.996577
  26958. 29189 18 1 8555 4.99 2007-04-29 09:46:27.996577
  26959. 29190 18 1 9036 4.99 2007-04-30 04:47:04.996577
  26960. 29191 18 2 9114 4.99 2007-04-30 07:41:47.996577
  26961. 29192 19 2 3549 4.99 2007-04-06 00:53:21.996577
  26962. 29193 19 2 6495 4.99 2007-04-12 01:25:28.996577
  26963. 29194 19 1 9157 5.99 2007-04-30 09:34:49.996577
  26964. 29195 19 1 9256 0.99 2007-04-30 12:57:55.996577
  26965. 29196 19 2 10077 9.99 2007-04-30 18:29:32.996577
  26966. 29197 19 1 10176 7.99 2007-04-30 22:09:01.996577
  26967. 29198 20 2 4011 3.99 2007-04-06 23:16:51.996577
  26968. 29199 20 1 4407 2.99 2007-04-07 20:08:11.996577
  26969. 29200 20 1 5718 2.99 2007-04-10 09:31:46.996577
  26970. 29201 20 1 6254 2.99 2007-04-11 13:38:44.996577
  26971. 29202 20 2 6267 6.99 2007-04-11 14:21:26.996577
  26972. 29203 20 2 7217 4.99 2007-04-27 08:00:10.996577
  26973. 29204 20 2 7864 5.99 2007-04-28 08:34:36.996577
  26974. 29205 20 2 8127 2.99 2007-04-28 18:13:45.996577
  26975. 29206 20 2 9075 4.99 2007-04-30 06:23:40.996577
  26976. 29207 20 2 9468 3.99 2007-04-30 21:22:18.996577
  26977. 29208 21 2 5107 4.99 2007-04-09 05:10:58.996577
  26978. 29209 21 1 5772 3.99 2007-04-10 11:56:06.996577
  26979. 29210 21 1 5961 2.99 2007-04-10 22:11:49.996577
  26980. 29211 21 2 6943 1.99 2007-04-26 21:56:39.996577
  26981. 29212 21 1 7994 0.99 2007-04-28 13:25:20.996577
  26982. 29213 21 2 8196 6.99 2007-04-28 21:24:37.996577
  26983. 29214 21 2 8862 2.99 2007-04-29 22:17:49.996577
  26984. 29215 21 2 9149 0.99 2007-04-30 09:13:38.996577
  26985. 29216 21 1 9699 5.99 2007-04-30 05:57:51.996577
  26986. 29217 22 2 4215 2.99 2007-04-07 10:29:18.996577
  26987. 29218 22 1 5294 6.99 2007-04-09 13:52:08.996577
  26988. 29219 22 1 5815 2.99 2007-04-10 14:16:45.996577
  26989. 29220 22 1 7087 4.99 2007-04-27 03:10:34.996577
  26990. 29221 22 1 7705 7.99 2007-04-28 02:31:24.996577
  26991. 29222 22 2 9410 0.99 2007-04-30 19:06:31.996577
  26992. 29223 22 1 9580 4.99 2007-04-30 01:29:37.996577
  26993. 29224 23 2 3736 3.99 2007-04-06 10:12:10.996577
  26994. 29225 23 2 3781 2.99 2007-04-06 12:22:07.996577
  26995. 29226 23 2 4853 2.99 2007-04-08 17:11:44.996577
  26996. 29227 23 1 6213 2.99 2007-04-11 11:11:33.996577
  26997. 29228 23 1 6238 2.99 2007-04-11 12:48:44.996577
  26998. 29229 23 2 6917 5.99 2007-04-12 20:58:41.996577
  26999. 29230 23 1 7155 7.99 2007-04-27 05:47:12.996577
  27000. 29231 23 1 8015 2.99 2007-04-28 14:01:29.996577
  27001. 29232 23 2 8718 0.99 2007-04-29 16:09:40.996577
  27002. 29233 23 2 9209 5.99 2007-04-30 11:24:02.996577
  27003. 29234 23 2 9255 9.99 2007-04-30 12:55:12.996577
  27004. 29235 23 2 9718 3.99 2007-04-30 06:53:29.996577
  27005. 29236 23 1 10132 6.99 2007-04-30 20:18:50.996577
  27006. 29237 24 2 3649 7.99 2007-04-06 06:01:08.996577
  27007. 29238 24 2 4378 2.99 2007-04-07 18:57:34.996577
  27008. 29239 24 1 5310 0.99 2007-04-09 14:29:00.996577
  27009. 29240 24 2 5648 0.99 2007-04-10 05:37:47.996577
  27010. 29241 24 1 6855 4.99 2007-04-12 18:14:55.996577
  27011. 29242 24 1 7266 1.99 2007-04-27 09:50:43.996577
  27012. 29243 24 1 8947 4.99 2007-04-30 01:44:03.996577
  27013. 29244 24 1 9723 0.99 2007-04-30 06:59:44.996577
  27014. 29245 24 2 9925 0.99 2007-04-30 13:37:13.996577
  27015. 29246 25 1 4282 2.99 2007-04-07 13:54:57.996577
  27016. 29247 25 1 4319 0.99 2007-04-07 16:18:53.996577
  27017. 29248 25 2 4404 2.99 2007-04-07 20:00:19.996577
  27018. 29249 25 1 5881 2.99 2007-04-10 17:48:09.996577
  27019. 29250 25 1 6653 4.99 2007-04-12 09:34:43.996577
  27020. 29251 25 2 6905 2.99 2007-04-12 20:30:44.996577
  27021. 29252 25 2 8667 2.99 2007-04-29 14:09:23.996577
  27022. 29253 25 2 8878 0.99 2007-04-29 22:44:23.996577
  27023. 29254 25 1 9140 8.99 2007-04-30 08:40:27.996577
  27024. 29255 25 2 9334 2.99 2007-04-30 16:25:04.996577
  27025. 29256 25 2 9922 2.99 2007-04-30 13:28:03.996577
  27026. 29257 25 2 10103 2.99 2007-04-30 19:17:39.996577
  27027. 29258 26 1 4065 2.99 2007-04-07 03:00:54.996577
  27028. 29259 26 1 4274 4.99 2007-04-07 13:10:30.996577
  27029. 29260 26 1 4382 4.99 2007-04-07 19:09:29.996577
  27030. 29261 26 2 4402 0.99 2007-04-07 19:57:12.996577
  27031. 29262 26 1 4431 6.99 2007-04-07 21:07:28.996577
  27032. 29263 26 1 4536 3.99 2007-04-08 02:11:48.996577
  27033. 29264 26 1 4641 6.99 2007-04-08 07:38:12.996577
  27034. 29265 26 1 5437 2.99 2007-04-09 20:00:55.996577
  27035. 29266 26 1 6149 1.99 2007-04-11 07:47:57.996577
  27036. 29267 26 2 6243 2.99 2007-04-11 13:21:51.996577
  27037. 29268 26 2 7328 0.99 2007-04-27 12:23:44.996577
  27038. 29269 26 1 8241 4.99 2007-04-28 23:02:02.996577
  27039. 29270 26 1 9484 0.99 2007-04-30 22:00:06.996577
  27040. 29271 27 2 4038 0.99 2007-04-07 01:21:19.996577
  27041. 29272 27 1 4510 5.99 2007-04-08 01:03:17.996577
  27042. 29273 27 1 5552 0.99 2007-04-10 01:29:45.996577
  27043. 29274 27 1 5736 4.99 2007-04-10 10:14:14.996577
  27044. 29275 27 2 6115 0.99 2007-04-11 06:05:16.996577
  27045. 29276 27 2 6562 5.99 2007-04-12 03:54:52.996577
  27046. 29277 27 2 6658 4.99 2007-04-12 09:41:47.996577
  27047. 29278 27 1 7927 1.99 2007-04-28 10:42:08.996577
  27048. 29279 27 2 9244 0.99 2007-04-30 12:35:19.996577
  27049. 29280 27 2 9636 5.99 2007-04-30 03:41:25.996577
  27050. 29281 27 1 9673 7.99 2007-04-30 05:03:21.996577
  27051. 29282 27 1 9908 4.99 2007-04-30 13:08:18.996577
  27052. 29283 28 1 3845 0.99 2007-04-06 15:06:40.996577
  27053. 29284 28 2 4704 0.99 2007-04-08 10:14:01.996577
  27054. 29285 28 2 4951 4.99 2007-04-08 21:26:47.996577
  27055. 29286 28 2 5653 2.99 2007-04-10 05:49:53.996577
  27056. 29287 28 1 5817 5.99 2007-04-10 14:17:38.996577
  27057. 29288 28 2 6032 0.99 2007-04-11 01:17:27.996577
  27058. 29289 28 2 6476 0.99 2007-04-12 00:06:14.996577
  27059. 29290 28 1 7580 9.99 2007-04-27 21:36:06.996577
  27060. 29291 28 1 8464 4.99 2007-04-29 06:46:46.996577
  27061. 29292 28 1 8901 2.99 2007-04-29 23:35:38.996577
  27062. 29293 28 2 9544 2.99 2007-04-30 00:13:17.996577
  27063. 29294 28 2 9593 4.99 2007-04-30 01:50:56.996577
  27064. 29295 28 2 9705 4.99 2007-04-30 06:08:59.996577
  27065. 29296 28 2 10116 2.99 2007-04-30 19:42:28.996577
  27066. 29297 29 2 4262 6.99 2007-04-07 12:52:56.996577
  27067. 29298 29 1 4313 0.99 2007-04-07 16:05:22.996577
  27068. 29299 29 2 4535 0.99 2007-04-08 02:09:12.996577
  27069. 29300 29 2 5442 10.99 2007-04-09 20:23:45.996577
  27070. 29301 29 1 5857 1.99 2007-04-10 16:27:55.996577
  27071. 29302 29 2 7237 3.99 2007-04-27 08:41:02.996577
  27072. 29303 29 1 7451 6.99 2007-04-27 16:47:07.996577
  27073. 29304 29 1 7453 0.99 2007-04-27 16:55:39.996577
  27074. 29305 29 2 8673 2.99 2007-04-29 14:18:40.996577
  27075. 29306 29 2 9392 4.99 2007-04-30 18:18:39.996577
  27076. 29307 29 1 9946 4.99 2007-04-30 14:17:20.996577
  27077. 29308 30 1 3964 4.99 2007-04-06 20:51:28.996577
  27078. 29309 30 2 4471 2.99 2007-04-07 22:49:55.996577
  27079. 29310 30 2 4642 2.99 2007-04-08 07:41:54.996577
  27080. 29311 30 2 5028 5.99 2007-04-09 01:03:11.996577
  27081. 29312 30 1 5108 9.99 2007-04-09 05:12:56.996577
  27082. 29313 30 1 5289 0.99 2007-04-09 13:42:34.996577
  27083. 29314 30 2 5972 7.99 2007-04-10 22:37:20.996577
  27084. 29315 30 1 6249 0.99 2007-04-11 13:30:28.996577
  27085. 29316 30 2 6359 2.99 2007-04-11 19:34:43.996577
  27086. 29317 30 2 7394 2.99 2007-04-27 14:31:34.996577
  27087. 29318 30 2 7769 4.99 2007-04-28 05:13:49.996577
  27088. 29319 30 1 8030 4.99 2007-04-28 14:41:19.996577
  27089. 29320 30 2 8038 4.99 2007-04-28 15:01:21.996577
  27090. 29321 30 1 8083 4.99 2007-04-28 16:38:14.996577
  27091. 29322 30 1 8641 2.99 2007-04-29 13:05:56.996577
  27092. 29323 30 2 9309 2.99 2007-04-30 15:24:19.996577
  27093. 29324 30 2 9551 0.99 2007-04-30 00:33:24.996577
  27094. 29325 30 1 9641 0.99 2007-04-30 04:02:14.996577
  27095. 29326 30 1 9998 2.99 2007-04-30 16:09:01.996577
  27096. 29327 31 1 3701 4.99 2007-04-06 08:41:11.996577
  27097. 29328 31 2 3967 4.99 2007-04-06 21:13:36.996577
  27098. 29329 31 1 4122 6.99 2007-04-07 05:44:01.996577
  27099. 29330 31 2 4738 9.99 2007-04-08 11:53:24.996577
  27100. 29331 31 1 6208 3.99 2007-04-11 11:03:22.996577
  27101. 29332 31 2 6580 4.99 2007-04-12 04:54:36.996577
  27102. 29333 31 1 7000 1.99 2007-04-26 23:51:50.996577
  27103. 29334 31 2 7138 3.99 2007-04-27 05:15:39.996577
  27104. 29335 31 2 7178 2.99 2007-04-27 06:37:51.996577
  27105. 29336 31 2 7464 2.99 2007-04-27 17:18:08.996577
  27106. 29337 31 2 8997 0.99 2007-04-30 03:22:22.996577
  27107. 29338 32 1 3500 2.99 2007-04-05 22:39:39.996577
  27108. 29339 32 1 4434 2.99 2007-04-07 21:17:00.996577
  27109. 29340 32 2 4771 2.99 2007-04-08 14:01:58.996577
  27110. 29341 32 2 4899 0.99 2007-04-08 19:05:37.996577
  27111. 29342 32 1 5307 9.99 2007-04-09 14:25:41.996577
  27112. 29343 32 1 5767 0.99 2007-04-10 11:41:44.996577
  27113. 29344 32 1 5954 2.99 2007-04-10 21:50:27.996577
  27114. 29345 32 1 6122 3.99 2007-04-11 06:26:33.996577
  27115. 29346 32 2 6450 2.99 2007-04-11 23:17:31.996577
  27116. 29347 32 1 7084 6.99 2007-04-27 03:02:33.996577
  27117. 29348 32 1 7589 5.99 2007-04-27 21:52:02.996577
  27118. 29349 32 1 7793 2.99 2007-04-28 05:54:40.996577
  27119. 29350 32 2 8390 5.99 2007-04-29 04:20:52.996577
  27120. 29351 32 2 8453 2.99 2007-04-29 06:14:55.996577
  27121. 29352 32 2 8914 2.99 2007-04-30 00:10:29.996577
  27122. 29353 33 1 4095 5.99 2007-04-07 04:30:14.996577
  27123. 29354 33 1 5421 0.99 2007-04-09 19:17:38.996577
  27124. 29355 33 1 5723 4.99 2007-04-10 09:43:14.996577
  27125. 29356 33 2 6280 0.99 2007-04-11 15:04:43.996577
  27126. 29357 33 1 7992 4.99 2007-04-28 13:21:32.996577
  27127. 29358 33 1 9040 4.99 2007-04-30 05:00:11.996577
  27128. 29359 33 2 9085 4.99 2007-04-30 06:45:50.996577
  27129. 29360 33 1 9254 1.99 2007-04-30 12:54:37.996577
  27130. 29361 34 2 3508 3.99 2007-04-05 22:52:51.996577
  27131. 29362 34 1 3911 2.99 2007-04-06 18:37:37.996577
  27132. 29363 34 1 5188 4.99 2007-04-09 08:50:57.996577
  27133. 29364 34 2 5643 4.99 2007-04-10 05:17:26.996577
  27134. 29365 34 2 5918 5.99 2007-04-10 20:00:32.996577
  27135. 29366 34 2 7015 2.99 2007-04-27 00:43:27.996577
  27136. 29367 34 2 7124 2.99 2007-04-27 04:37:56.996577
  27137. 29368 34 1 7532 0.99 2007-04-27 19:49:18.996577
  27138. 29369 34 1 9160 3.99 2007-04-30 09:45:59.996577
  27139. 29370 35 2 3597 2.99 2007-04-06 03:32:25.996577
  27140. 29371 35 2 4098 4.99 2007-04-07 04:43:17.996577
  27141. 29372 35 2 4990 0.99 2007-04-08 23:17:15.996577
  27142. 29373 35 1 5013 2.99 2007-04-09 00:15:11.996577
  27143. 29374 35 2 5323 0.99 2007-04-09 15:02:33.996577
  27144. 29375 35 1 5916 5.99 2007-04-10 19:54:57.996577
  27145. 29376 35 1 5963 0.99 2007-04-10 22:15:34.996577
  27146. 29377 35 1 6147 5.99 2007-04-11 07:41:34.996577
  27147. 29378 35 1 6401 4.99 2007-04-11 21:13:00.996577
  27148. 29379 35 1 6565 4.99 2007-04-12 04:08:16.996577
  27149. 29380 35 1 6572 4.99 2007-04-12 04:25:04.996577
  27150. 29381 35 1 7140 4.99 2007-04-27 05:22:38.996577
  27151. 29382 35 1 8822 6.99 2007-04-29 20:48:47.996577
  27152. 29383 35 1 8971 5.99 2007-04-30 02:32:24.996577
  27153. 29384 35 2 9033 2.99 2007-04-30 04:36:08.996577
  27154. 29385 35 1 9579 6.99 2007-04-30 01:27:46.996577
  27155. 29386 36 2 4135 0.99 2007-04-07 06:43:29.996577
  27156. 29387 36 2 4560 4.99 2007-04-08 03:27:14.996577
  27157. 29388 36 2 4762 4.99 2007-04-08 13:23:08.996577
  27158. 29389 36 1 5403 0.99 2007-04-09 18:35:35.996577
  27159. 29390 36 2 6030 0.99 2007-04-11 01:06:17.996577
  27160. 29391 36 1 7205 6.99 2007-04-27 07:34:39.996577
  27161. 29392 36 1 7647 0.99 2007-04-28 00:03:43.996577
  27162. 29393 36 2 7919 6.99 2007-04-28 10:28:11.996577
  27163. 29394 36 2 8099 0.99 2007-04-28 17:03:38.996577
  27164. 29395 36 1 8391 2.99 2007-04-29 04:21:16.996577
  27165. 29396 36 1 8952 4.99 2007-04-30 01:49:04.996577
  27166. 29397 36 1 9369 2.99 2007-04-30 17:20:45.996577
  27167. 29398 36 2 9805 0.99 2007-04-30 09:39:36.996577
  27168. 29399 37 2 3472 7.99 2007-04-05 21:24:59.996577
  27169. 29400 37 1 3734 5.99 2007-04-06 10:08:53.996577
  27170. 29401 37 1 5425 5.99 2007-04-09 19:30:52.996577
  27171. 29402 37 2 7939 0.99 2007-04-28 11:14:13.996577
  27172. 29403 37 1 8419 9.99 2007-04-29 05:23:14.996577
  27173. 29404 37 1 9567 5.99 2007-04-30 01:04:37.996577
  27174. 29405 38 1 4202 5.99 2007-04-07 09:52:14.996577
  27175. 29406 38 2 4228 1.99 2007-04-07 11:10:28.996577
  27176. 29407 38 1 4300 4.99 2007-04-07 15:04:42.996577
  27177. 29408 38 2 4644 4.99 2007-04-08 07:42:55.996577
  27178. 29409 38 1 5273 2.99 2007-04-09 12:59:50.996577
  27179. 29410 38 2 5460 2.99 2007-04-09 21:14:40.996577
  27180. 29411 38 1 5822 2.99 2007-04-10 14:39:05.996577
  27181. 29412 38 1 6864 5.99 2007-04-12 18:27:51.996577
  27182. 29413 38 1 6961 0.99 2007-04-26 22:39:15.996577
  27183. 29414 38 2 7158 4.99 2007-04-27 05:52:24.996577
  27184. 29415 38 2 7163 5.99 2007-04-27 06:04:37.996577
  27185. 29416 38 2 7321 5.99 2007-04-27 12:02:04.996577
  27186. 29417 38 1 7795 0.99 2007-04-28 05:56:42.996577
  27187. 29418 38 2 8924 3.99 2007-04-30 00:37:24.996577
  27188. 29419 38 2 9216 0.99 2007-04-30 11:39:45.996577
  27189. 29420 38 1 9284 0.99 2007-04-30 13:53:45.996577
  27190. 29421 38 1 9621 4.99 2007-04-30 02:49:34.996577
  27191. 29422 38 2 10111 2.99 2007-04-30 19:36:59.996577
  27192. 29423 39 1 4419 5.99 2007-04-07 20:34:50.996577
  27193. 29424 39 2 4695 8.99 2007-04-08 09:36:25.996577
  27194. 29425 39 2 4712 6.99 2007-04-08 10:39:16.996577
  27195. 29426 39 2 4727 7.99 2007-04-08 11:22:41.996577
  27196. 29427 39 1 5451 4.99 2007-04-09 20:50:36.996577
  27197. 29428 39 2 5515 2.99 2007-04-09 23:41:10.996577
  27198. 29429 39 1 6045 2.99 2007-04-11 01:49:31.996577
  27199. 29430 39 2 8307 6.99 2007-04-29 01:47:00.996577
  27200. 29431 39 2 8366 1.99 2007-04-29 03:39:40.996577
  27201. 29432 39 2 8723 7.99 2007-04-29 16:32:13.996577
  27202. 29433 39 1 8805 2.99 2007-04-29 19:58:24.996577
  27203. 29434 39 1 9431 1.99 2007-04-30 19:52:48.996577
  27204. 29435 39 1 9656 4.99 2007-04-30 04:28:47.996577
  27205. 29436 39 2 10052 4.99 2007-04-30 17:43:39.996577
  27206. 29437 39 1 10126 0.99 2007-04-30 20:04:33.996577
  27207. 29438 40 2 5001 1.99 2007-04-08 23:45:30.996577
  27208. 29439 40 2 5777 2.99 2007-04-10 12:07:07.996577
  27209. 29440 40 1 5869 5.99 2007-04-10 17:08:35.996577
  27210. 29441 40 1 6502 0.99 2007-04-12 01:44:11.996577
  27211. 29442 40 2 7684 0.99 2007-04-28 01:40:20.996577
  27212. 29443 40 2 8031 0.99 2007-04-28 14:44:15.996577
  27213. 29444 40 2 8170 3.99 2007-04-28 20:00:55.996577
  27214. 29445 40 1 9050 8.99 2007-04-30 05:28:21.996577
  27215. 29446 40 2 9700 4.99 2007-04-30 05:58:25.996577
  27216. 29447 40 2 9961 6.99 2007-04-30 14:36:16.996577
  27217. 29448 40 1 9975 1.99 2007-04-30 15:22:09.996577
  27218. 29449 41 2 3827 2.99 2007-04-06 14:20:29.996577
  27219. 29450 41 2 4294 9.99 2007-04-07 14:24:49.996577
  27220. 29451 41 1 4543 4.99 2007-04-08 02:35:21.996577
  27221. 29452 41 1 4575 2.99 2007-04-08 04:17:40.996577
  27222. 29453 41 1 6976 4.99 2007-04-26 23:08:27.996577
  27223. 29454 41 2 7153 4.99 2007-04-27 05:44:04.996577
  27224. 29455 41 1 7517 1.99 2007-04-27 19:25:33.996577
  27225. 29456 41 2 8008 6.99 2007-04-28 13:54:21.996577
  27226. 29457 41 1 8098 0.99 2007-04-28 17:02:46.996577
  27227. 29458 41 1 8134 6.99 2007-04-28 18:29:49.996577
  27228. 29459 41 2 8225 2.99 2007-04-28 22:27:55.996577
  27229. 29460 41 1 8712 2.99 2007-04-29 15:58:32.996577
  27230. 29461 41 2 9313 5.99 2007-04-30 15:28:09.996577
  27231. 29462 41 1 10064 2.99 2007-04-30 17:55:28.996577
  27232. 29463 41 1 10170 7.99 2007-04-30 21:55:57.996577
  27233. 29464 42 2 4391 2.99 2007-04-07 19:38:04.996577
  27234. 29465 42 2 5199 4.99 2007-04-09 09:19:22.996577
  27235. 29466 42 2 5517 5.99 2007-04-09 23:43:26.996577
  27236. 29467 42 2 5652 3.99 2007-04-10 05:47:24.996577
  27237. 29468 42 1 6179 2.99 2007-04-11 09:28:25.996577
  27238. 29469 42 1 6799 2.99 2007-04-12 15:20:39.996577
  27239. 29470 42 1 6925 0.99 2007-04-26 21:20:58.996577
  27240. 29471 42 1 7405 3.99 2007-04-27 14:53:37.996577
  27241. 29472 42 1 8049 0.99 2007-04-28 15:20:24.996577
  27242. 29473 42 1 8095 6.99 2007-04-28 17:01:06.996577
  27243. 29474 42 1 8166 2.99 2007-04-28 19:51:59.996577
  27244. 29475 42 1 8499 3.99 2007-04-29 07:39:07.996577
  27245. 29476 42 2 8785 2.99 2007-04-29 19:04:52.996577
  27246. 29477 42 2 8852 3.99 2007-04-29 21:58:29.996577
  27247. 29478 42 2 8915 3.99 2007-04-30 00:10:35.996577
  27248. 29479 42 2 10060 6.99 2007-04-30 17:51:26.996577
  27249. 29480 43 2 3683 1.99 2007-04-06 07:54:22.996577
  27250. 29481 43 1 4498 2.99 2007-04-08 00:36:16.996577
  27251. 29482 43 1 5162 4.99 2007-04-09 07:28:37.996577
  27252. 29483 43 1 5401 4.99 2007-04-09 18:27:36.996577
  27253. 29484 43 1 5831 2.99 2007-04-10 15:02:28.996577
  27254. 29485 43 2 5941 4.99 2007-04-10 21:09:13.996577
  27255. 29486 43 1 6474 3.99 2007-04-12 00:05:12.996577
  27256. 29487 43 2 6680 0.99 2007-04-12 10:30:22.996577
  27257. 29488 43 1 7348 4.99 2007-04-27 13:00:58.996577
  27258. 29489 43 2 7868 4.99 2007-04-28 08:37:21.996577
  27259. 29490 43 2 8376 4.99 2007-04-29 03:53:58.996577
  27260. 29491 43 1 9204 4.99 2007-04-30 11:12:24.996577
  27261. 29492 44 2 4390 0.99 2007-04-07 19:27:32.996577
  27262. 29493 44 2 4723 9.99 2007-04-08 11:13:25.996577
  27263. 29494 44 1 5551 3.99 2007-04-10 01:29:35.996577
  27264. 29495 44 1 5787 8.99 2007-04-10 12:37:15.996577
  27265. 29496 44 2 5849 6.99 2007-04-10 16:00:59.996577
  27266. 29497 44 2 5909 4.99 2007-04-10 19:14:39.996577
  27267. 29498 44 1 7514 0.99 2007-04-27 19:20:15.996577
  27268. 29499 44 2 7526 6.99 2007-04-27 19:42:13.996577
  27269. 29500 44 2 8775 4.99 2007-04-29 18:34:04.996577
  27270. 29501 44 1 8866 4.99 2007-04-29 22:26:45.996577
  27271. 29502 45 1 4843 0.99 2007-04-08 16:55:54.996577
  27272. 29503 45 1 5181 6.99 2007-04-09 08:35:53.996577
  27273. 29504 45 1 5405 7.99 2007-04-09 18:40:15.996577
  27274. 29505 45 1 5637 0.99 2007-04-10 05:00:03.996577
  27275. 29506 45 2 6001 0.99 2007-04-10 23:53:10.996577
  27276. 29507 45 2 6002 2.99 2007-04-10 23:56:15.996577
  27277. 29508 45 1 6966 9.99 2007-04-26 22:44:01.996577
  27278. 29509 45 1 7436 2.99 2007-04-27 16:07:38.996577
  27279. 29510 45 1 7961 3.99 2007-04-28 12:15:47.996577
  27280. 29511 46 2 3855 2.99 2007-04-06 15:32:14.996577
  27281. 29512 46 1 3916 4.99 2007-04-06 18:47:16.996577
  27282. 29513 46 2 5698 4.99 2007-04-10 08:15:26.996577
  27283. 29514 46 1 7336 0.99 2007-04-27 12:40:11.996577
  27284. 29515 46 2 8152 3.99 2007-04-28 19:21:31.996577
  27285. 29516 46 2 9045 8.99 2007-04-30 05:05:23.996577
  27286. 29517 46 2 9806 2.99 2007-04-30 09:42:15.996577
  27287. 29518 46 1 10088 2.99 2007-04-30 18:44:47.996577
  27288. 29519 47 1 3631 4.99 2007-04-06 05:05:19.996577
  27289. 29520 47 2 4064 5.99 2007-04-07 02:57:46.996577
  27290. 29521 47 1 5174 0.99 2007-04-09 08:00:25.996577
  27291. 29522 47 2 6153 9.99 2007-04-11 07:59:30.996577
  27292. 29523 47 2 6164 0.99 2007-04-11 08:44:49.996577
  27293. 29524 47 1 6337 3.99 2007-04-11 17:59:13.996577
  27294. 29525 47 2 8159 4.99 2007-04-28 19:37:54.996577
  27295. 29526 47 2 8402 6.99 2007-04-29 04:54:11.996577
  27296. 29527 47 1 8863 3.99 2007-04-29 22:20:27.996577
  27297. 29528 47 2 9274 4.99 2007-04-30 13:35:30.996577
  27298. 29529 48 2 3758 4.99 2007-04-06 11:11:37.996577
  27299. 29530 48 1 4367 2.99 2007-04-07 18:20:27.996577
  27300. 29531 48 2 5148 6.99 2007-04-09 06:51:12.996577
  27301. 29532 48 2 6498 3.99 2007-04-12 01:34:04.996577
  27302. 29533 48 1 7920 2.99 2007-04-28 10:29:45.996577
  27303. 29534 48 1 8716 6.99 2007-04-29 16:07:35.996577
  27304. 29535 48 1 9402 7.99 2007-04-30 18:46:53.996577
  27305. 29536 48 2 9742 7.99 2007-04-30 07:38:46.996577
  27306. 29537 49 2 3575 4.99 2007-04-06 02:04:45.996577
  27307. 29538 49 2 3615 0.99 2007-04-06 04:16:13.996577
  27308. 29539 49 1 5491 2.99 2007-04-09 22:38:11.996577
  27309. 29540 49 1 6214 4.99 2007-04-11 11:18:14.996577
  27310. 29541 49 1 6279 6.99 2007-04-11 14:54:33.996577
  27311. 29542 49 1 6521 7.99 2007-04-12 02:34:37.996577
  27312. 29543 49 2 6759 4.99 2007-04-12 13:43:14.996577
  27313. 29544 49 2 7209 4.99 2007-04-27 07:45:19.996577
  27314. 29545 49 2 7742 8.99 2007-04-28 04:01:42.996577
  27315. 29546 49 2 8553 10.99 2007-04-29 09:44:02.996577
  27316. 29547 49 2 9006 0.99 2007-04-30 03:34:58.996577
  27317. 29548 49 1 9851 4.99 2007-04-30 11:18:50.996577
  27318. 29549 49 1 10144 4.99 2007-04-30 20:42:18.996577
  27319. 29550 50 2 4149 2.99 2007-04-07 07:08:43.996577
  27320. 29551 50 2 5290 4.99 2007-04-09 13:43:13.996577
  27321. 29552 50 2 5641 4.99 2007-04-10 05:12:09.996577
  27322. 29553 50 2 5681 9.99 2007-04-10 07:17:05.996577
  27323. 29554 50 1 5928 6.99 2007-04-10 20:26:56.996577
  27324. 29555 50 2 6634 0.99 2007-04-12 08:05:44.996577
  27325. 29556 50 1 6667 8.99 2007-04-12 10:04:48.996577
  27326. 29557 50 1 7383 4.99 2007-04-27 14:15:19.996577
  27327. 29558 50 1 8089 0.99 2007-04-28 16:55:13.996577
  27328. 29559 50 1 8261 0.99 2007-04-28 23:39:31.996577
  27329. 29560 50 1 8619 5.99 2007-04-29 12:18:34.996577
  27330. 29561 50 2 9179 0.99 2007-04-30 10:31:07.996577
  27331. 29562 50 1 9615 4.99 2007-04-30 02:28:22.996577
  27332. 29563 50 2 9691 10.99 2007-04-30 05:38:21.996577
  27333. 29564 50 2 10046 2.99 2007-04-30 17:35:37.996577
  27334. 29565 50 2 10165 0.99 2007-04-30 21:49:49.996577
  27335. 29566 50 2 10180 6.99 2007-04-30 22:26:09.996577
  27336. 29567 51 1 3525 9.99 2007-04-05 23:31:05.996577
  27337. 29568 51 1 5230 2.99 2007-04-09 10:58:49.996577
  27338. 29569 51 2 5304 5.99 2007-04-09 14:16:32.996577
  27339. 29570 51 1 5473 7.99 2007-04-09 21:47:37.996577
  27340. 29571 51 1 5606 4.99 2007-04-10 03:36:21.996577
  27341. 29572 51 1 7207 5.99 2007-04-27 07:41:52.996577
  27342. 29573 51 1 7398 6.99 2007-04-27 14:35:48.996577
  27343. 29574 51 1 7636 5.99 2007-04-27 23:37:02.996577
  27344. 29575 51 1 8495 4.99 2007-04-29 07:33:32.996577
  27345. 29576 51 1 8693 0.99 2007-04-29 15:12:39.996577
  27346. 29577 51 1 8880 0.99 2007-04-29 22:45:21.996577
  27347. 29578 51 2 9649 0.99 2007-04-30 04:15:20.996577
  27348. 29579 52 1 3997 1.99 2007-04-06 22:15:18.996577
  27349. 29580 52 1 5308 0.99 2007-04-09 14:27:04.996577
  27350. 29581 52 2 5313 3.99 2007-04-09 14:33:11.996577
  27351. 29582 52 1 5607 2.99 2007-04-10 03:36:36.996577
  27352. 29583 52 1 6394 7.99 2007-04-11 20:57:41.996577
  27353. 29584 52 2 7284 0.99 2007-04-27 10:40:30.996577
  27354. 29585 52 2 7438 5.99 2007-04-27 16:09:06.996577
  27355. 29586 52 2 7627 4.99 2007-04-27 23:25:13.996577
  27356. 29587 52 1 8686 4.99 2007-04-29 14:46:15.996577
  27357. 29588 52 1 9029 4.99 2007-04-30 04:31:37.996577
  27358. 29589 52 2 9749 3.99 2007-04-30 07:46:59.996577
  27359. 29590 52 2 9797 4.99 2007-04-30 09:22:10.996577
  27360. 29591 53 2 3591 2.99 2007-04-06 03:05:36.996577
  27361. 29592 53 2 3898 4.99 2007-04-06 17:41:03.996577
  27362. 29593 53 2 5185 2.99 2007-04-09 08:43:05.996577
  27363. 29594 53 2 7466 2.99 2007-04-27 17:19:43.996577
  27364. 29595 53 1 7699 4.99 2007-04-28 02:20:47.996577
  27365. 29596 53 1 9343 4.99 2007-04-30 16:41:39.996577
  27366. 29597 53 1 9928 7.99 2007-04-30 13:42:23.996577
  27367. 29598 54 2 4657 4.99 2007-04-08 08:19:28.996577
  27368. 29599 54 2 5055 1.99 2007-04-09 02:33:54.996577
  27369. 29600 54 1 5929 2.99 2007-04-10 20:27:55.996577
  27370. 29601 54 1 5992 2.99 2007-04-10 23:34:47.996577
  27371. 29602 54 1 6338 7.99 2007-04-11 18:08:07.996577
  27372. 29603 54 2 6560 2.99 2007-04-12 03:50:32.996577
  27373. 29604 54 1 6813 0.99 2007-04-12 16:32:16.996577
  27374. 29605 54 2 8992 4.99 2007-04-30 03:12:44.996577
  27375. 29606 55 1 4671 4.99 2007-04-08 08:43:58.996577
  27376. 29607 55 2 6314 7.99 2007-04-11 17:01:10.996577
  27377. 29608 55 2 7050 4.99 2007-04-27 02:01:43.996577
  27378. 29609 55 2 8288 6.99 2007-04-29 00:32:48.996577
  27379. 29610 55 1 9302 2.99 2007-04-30 15:03:23.996577
  27380. 29611 55 2 9596 5.99 2007-04-30 01:57:13.996577
  27381. 29612 55 2 9798 2.99 2007-04-30 09:23:44.996577
  27382. 29613 56 1 3718 7.99 2007-04-06 09:26:22.996577
  27383. 29614 56 2 3771 2.99 2007-04-06 11:48:00.996577
  27384. 29615 56 1 4097 3.99 2007-04-07 04:39:21.996577
  27385. 29616 56 2 4702 4.99 2007-04-08 10:10:02.996577
  27386. 29617 56 1 5142 4.99 2007-04-09 06:33:49.996577
  27387. 29618 56 1 7385 2.99 2007-04-27 14:18:12.996577
  27388. 29619 56 1 7696 7.99 2007-04-28 02:10:01.996577
  27389. 29620 56 2 7942 0.99 2007-04-28 11:18:10.996577
  27390. 29621 56 1 8285 0.99 2007-04-29 00:28:44.996577
  27391. 29622 57 1 3727 4.99 2007-04-06 09:45:09.996577
  27392. 29623 57 2 4226 4.99 2007-04-07 11:06:22.996577
  27393. 29624 57 1 5060 4.99 2007-04-09 02:56:29.996577
  27394. 29625 57 1 5694 0.99 2007-04-10 08:09:04.996577
  27395. 29626 57 2 5948 2.99 2007-04-10 21:40:34.996577
  27396. 29627 57 2 6482 4.99 2007-04-12 00:18:47.996577
  27397. 29628 57 1 6494 1.99 2007-04-12 01:11:17.996577
  27398. 29629 57 2 6649 4.99 2007-04-12 09:19:35.996577
  27399. 29630 57 2 8249 5.99 2007-04-28 23:17:10.996577
  27400. 29631 57 1 9086 0.99 2007-04-30 06:47:12.996577
  27401. 29632 57 2 9136 0.99 2007-04-30 08:35:46.996577
  27402. 29633 57 1 9211 1.99 2007-04-30 11:28:11.996577
  27403. 29634 57 1 9703 0.99 2007-04-30 06:03:18.996577
  27404. 29635 57 2 9812 2.99 2007-04-30 09:56:33.996577
  27405. 29636 57 2 10169 4.99 2007-04-30 21:55:39.996577
  27406. 29637 58 1 3685 4.99 2007-04-06 07:59:11.996577
  27407. 29638 58 2 4131 4.99 2007-04-07 06:21:44.996577
  27408. 29639 58 2 5439 1.99 2007-04-09 20:08:01.996577
  27409. 29640 58 1 7063 9.99 2007-04-27 02:20:53.996577
  27410. 29641 58 2 7487 4.99 2007-04-27 18:01:11.996577
  27411. 29642 58 1 8853 0.99 2007-04-29 22:02:47.996577
  27412. 29643 58 2 9561 2.99 2007-04-30 00:50:39.996577
  27413. 29644 58 2 10037 2.99 2007-04-30 17:16:34.996577
  27414. 29645 58 1 10068 4.99 2007-04-30 18:08:04.996577
  27415. 29646 59 2 4148 2.99 2007-04-07 07:05:24.996577
  27416. 29647 59 1 4384 4.99 2007-04-07 19:15:11.996577
  27417. 29648 59 1 4631 4.99 2007-04-08 07:06:48.996577
  27418. 29649 59 1 4891 3.99 2007-04-08 18:34:45.996577
  27419. 29650 59 2 5195 8.99 2007-04-09 09:07:57.996577
  27420. 29651 59 1 5207 3.99 2007-04-09 09:44:10.996577
  27421. 29652 59 1 5830 4.99 2007-04-10 15:02:26.996577
  27422. 29653 59 1 7991 4.99 2007-04-28 13:14:11.996577
  27423. 29654 59 2 8643 4.99 2007-04-29 13:13:49.996577
  27424. 29655 59 1 9469 8.99 2007-04-30 21:25:00.996577
  27425. 29656 59 2 9573 6.99 2007-04-30 01:14:04.996577
  27426. 29657 60 2 3473 2.99 2007-04-05 21:26:00.996577
  27427. 29658 60 1 3849 2.99 2007-04-06 15:18:09.996577
  27428. 29659 60 1 6282 5.99 2007-04-11 15:14:48.996577
  27429. 29660 60 2 7067 0.99 2007-04-27 02:23:36.996577
  27430. 29661 60 1 7331 3.99 2007-04-27 12:26:16.996577
  27431. 29662 60 1 7494 0.99 2007-04-27 18:24:57.996577
  27432. 29663 60 1 9356 4.99 2007-04-30 17:04:50.996577
  27433. 29664 60 1 9761 4.99 2007-04-30 08:00:20.996577
  27434. 29665 61 1 7027 7.99 2007-04-27 01:18:41.996577
  27435. 29666 61 2 7071 1.99 2007-04-27 02:29:41.996577
  27436. 29667 61 2 8029 6.99 2007-04-28 14:39:47.996577
  27437. 29668 61 2 8075 4.99 2007-04-28 16:05:54.996577
  27438. 29669 61 1 8651 3.99 2007-04-29 13:30:44.996577
  27439. 29670 61 2 9597 6.99 2007-04-30 01:57:33.996577
  27440. 29671 62 2 3843 2.99 2007-04-06 15:04:06.996577
  27441. 29672 62 2 4159 4.99 2007-04-07 07:39:23.996577
  27442. 29673 62 2 5292 2.99 2007-04-09 13:45:20.996577
  27443. 29674 62 2 8360 4.99 2007-04-29 03:36:26.996577
  27444. 29675 62 2 10080 0.99 2007-04-30 18:35:36.996577
  27445. 29676 63 2 3923 8.99 2007-04-06 19:02:36.996577
  27446. 29677 63 1 4587 4.99 2007-04-08 04:44:52.996577
  27447. 29678 63 1 5585 6.99 2007-04-10 02:44:09.996577
  27448. 29679 63 2 5788 4.99 2007-04-10 12:38:48.996577
  27449. 29680 63 2 5832 4.99 2007-04-10 15:03:14.996577
  27450. 29681 63 2 6769 3.99 2007-04-12 14:17:20.996577
  27451. 29682 63 2 6847 8.99 2007-04-12 17:51:03.996577
  27452. 29683 63 2 8311 5.99 2007-04-29 01:54:33.996577
  27453. 29684 63 2 9007 0.99 2007-04-30 03:37:58.996577
  27454. 29685 63 1 9546 4.99 2007-04-30 00:16:06.996577
  27455. 29686 63 2 9549 3.99 2007-04-30 00:25:30.996577
  27456. 29687 63 1 9795 0.99 2007-04-30 09:15:45.996577
  27457. 29688 63 2 9938 2.99 2007-04-30 13:57:13.996577
  27458. 29689 63 2 10148 0.99 2007-04-30 20:47:42.996577
  27459. 29690 64 2 3982 0.99 2007-04-06 21:42:42.996577
  27460. 29691 64 1 4288 4.99 2007-04-07 14:06:51.996577
  27461. 29692 64 1 4690 1.99 2007-04-08 09:32:28.996577
  27462. 29693 64 2 4819 5.99 2007-04-08 15:47:41.996577
  27463. 29694 64 2 4971 5.99 2007-04-08 22:23:15.996577
  27464. 29695 64 1 5114 3.99 2007-04-09 05:35:31.996577
  27465. 29696 64 2 5279 2.99 2007-04-09 13:15:02.996577
  27466. 29697 64 1 5432 0.99 2007-04-09 19:49:51.996577
  27467. 29698 64 2 6372 2.99 2007-04-11 20:03:32.996577
  27468. 29699 64 2 6457 0.99 2007-04-11 23:35:01.996577
  27469. 29700 64 2 6698 1.99 2007-04-12 11:13:26.996577
  27470. 29701 64 2 6744 0.99 2007-04-12 12:58:54.996577
  27471. 29702 64 2 7045 0.99 2007-04-27 01:56:01.996577
  27472. 29703 64 1 7082 2.99 2007-04-27 02:55:58.996577
  27473. 29704 64 1 7476 1.99 2007-04-27 17:37:22.996577
  27474. 29705 64 2 8602 4.99 2007-04-29 11:32:53.996577
  27475. 29706 64 1 9832 2.99 2007-04-30 10:30:15.996577
  27476. 29707 64 1 9880 6.99 2007-04-30 12:17:28.996577
  27477. 29708 64 1 9924 3.99 2007-04-30 13:33:23.996577
  27478. 29709 64 2 10185 0.99 2007-04-30 22:40:37.996577
  27479. 29710 65 1 3535 4.99 2007-04-06 00:01:12.996577
  27480. 29711 65 1 4240 4.99 2007-04-07 12:01:38.996577
  27481. 29712 65 2 4635 3.99 2007-04-08 07:11:06.996577
  27482. 29713 65 1 5735 3.99 2007-04-10 10:07:41.996577
  27483. 29714 65 2 6527 0.99 2007-04-12 02:51:32.996577
  27484. 29715 65 1 7877 6.99 2007-04-28 08:54:02.996577
  27485. 29716 65 2 8392 1.99 2007-04-29 04:28:53.996577
  27486. 29717 65 2 8404 5.99 2007-04-29 04:55:27.996577
  27487. 29718 65 1 9293 3.99 2007-04-30 14:40:54.996577
  27488. 29719 66 1 3573 4.99 2007-04-06 02:02:14.996577
  27489. 29720 66 2 3757 2.99 2007-04-06 11:10:52.996577
  27490. 29721 66 2 4088 2.99 2007-04-07 04:00:21.996577
  27491. 29722 66 1 4108 4.99 2007-04-07 05:06:57.996577
  27492. 29723 66 2 4165 6.99 2007-04-07 07:51:53.996577
  27493. 29724 66 2 4911 5.99 2007-04-08 19:48:52.996577
  27494. 29725 66 2 5915 0.99 2007-04-10 19:40:42.996577
  27495. 29726 66 1 6290 8.99 2007-04-11 15:41:08.996577
  27496. 29727 66 2 6348 5.99 2007-04-11 18:49:44.996577
  27497. 29728 66 1 6402 3.99 2007-04-11 21:14:36.996577
  27498. 29729 66 1 6995 2.99 2007-04-26 23:40:39.996577
  27499. 29730 66 1 7872 2.99 2007-04-28 08:46:42.996577
  27500. 29731 66 1 9091 5.99 2007-04-30 06:59:11.996577
  27501. 29732 67 2 4090 4.99 2007-04-07 04:15:59.996577
  27502. 29733 67 2 5399 2.99 2007-04-09 18:21:10.996577
  27503. 29734 67 2 5510 2.99 2007-04-09 23:27:03.996577
  27504. 29735 67 1 6137 2.99 2007-04-11 07:02:46.996577
  27505. 29736 67 2 7277 5.99 2007-04-27 10:17:03.996577
  27506. 29737 67 2 7895 0.99 2007-04-28 09:25:41.996577
  27507. 29738 67 2 8563 1.99 2007-04-29 10:01:24.996577
  27508. 29739 67 1 9640 7.99 2007-04-30 04:01:51.996577
  27509. 29740 68 1 3598 0.99 2007-04-06 03:39:30.996577
  27510. 29741 68 2 3801 4.99 2007-04-06 13:34:16.996577
  27511. 29742 68 1 3864 0.99 2007-04-06 16:10:08.996577
  27512. 29743 68 2 4555 6.99 2007-04-08 03:17:02.996577
  27513. 29744 68 1 4925 3.99 2007-04-08 20:24:26.996577
  27514. 29745 68 1 6512 4.99 2007-04-12 02:11:15.996577
  27515. 29746 68 2 9339 3.99 2007-04-30 16:31:54.996577
  27516. 29747 68 1 9538 3.99 2007-04-30 23:53:48.996577
  27517. 29748 68 2 9642 4.99 2007-04-30 04:02:23.996577
  27518. 29749 68 1 10115 7.99 2007-04-30 19:42:13.996577
  27519. 29750 69 1 3883 8.99 2007-04-06 17:08:04.996577
  27520. 29751 69 1 4265 0.99 2007-04-07 12:56:17.996577
  27521. 29752 69 1 4427 0.99 2007-04-07 20:57:17.996577
  27522. 29753 69 2 5569 3.99 2007-04-10 02:06:58.996577
  27523. 29754 69 2 6297 4.99 2007-04-11 16:05:48.996577
  27524. 29755 69 1 6385 6.99 2007-04-11 20:35:58.996577
  27525. 29756 69 2 6785 6.99 2007-04-12 14:59:23.996577
  27526. 29757 69 2 8649 6.99 2007-04-29 13:25:59.996577
  27527. 29758 69 2 9193 2.99 2007-04-30 10:57:08.996577
  27528. 29759 69 1 9612 2.99 2007-04-30 02:26:57.996577
  27529. 29760 69 2 10074 0.99 2007-04-30 18:25:42.996577
  27530. 29761 70 1 4061 0.99 2007-04-07 02:42:01.996577
  27531. 29762 70 1 5927 5.99 2007-04-10 20:25:40.996577
  27532. 29763 70 2 7036 4.99 2007-04-27 01:34:38.996577
  27533. 29764 70 2 7421 7.99 2007-04-27 15:38:31.996577
  27534. 29765 70 1 7714 2.99 2007-04-28 03:00:56.996577
  27535. 29766 70 2 8550 0.99 2007-04-29 09:41:03.996577
  27536. 29767 70 1 8747 2.99 2007-04-29 17:36:23.996577
  27537. 29768 71 2 4614 4.99 2007-04-08 06:13:43.996577
  27538. 29769 71 2 5281 1.99 2007-04-09 13:23:33.996577
  27539. 29770 71 2 5358 3.99 2007-04-09 16:37:47.996577
  27540. 29771 71 1 5543 8.99 2007-04-10 01:16:29.996577
  27541. 29772 71 1 5770 4.99 2007-04-10 11:49:54.996577
  27542. 29773 71 2 5814 4.99 2007-04-10 14:15:16.996577
  27543. 29774 71 2 6020 0.99 2007-04-11 00:37:21.996577
  27544. 29775 71 1 6739 5.99 2007-04-12 12:50:34.996577
  27545. 29776 71 2 7160 0.99 2007-04-27 05:54:32.996577
  27546. 29777 71 1 7550 4.99 2007-04-27 20:23:33.996577
  27547. 29778 71 2 7982 4.99 2007-04-28 12:48:25.996577
  27548. 29779 71 2 8128 2.99 2007-04-28 18:14:32.996577
  27549. 29780 71 1 8293 2.99 2007-04-29 00:59:16.996577
  27550. 29781 71 1 8574 1.99 2007-04-29 10:20:19.996577
  27551. 29782 71 1 8668 4.99 2007-04-29 14:09:57.996577
  27552. 29783 71 1 8783 3.99 2007-04-29 18:59:54.996577
  27553. 29784 71 1 8789 4.99 2007-04-29 19:15:53.996577
  27554. 29785 71 1 8956 0.99 2007-04-30 02:00:55.996577
  27555. 29786 72 1 3700 0.99 2007-04-06 08:40:45.996577
  27556. 29787 72 2 5223 4.99 2007-04-09 10:34:29.996577
  27557. 29788 72 1 5302 4.99 2007-04-09 14:11:02.996577
  27558. 29789 72 1 5424 0.99 2007-04-09 19:27:35.996577
  27559. 29790 72 1 5840 4.99 2007-04-10 15:37:35.996577
  27560. 29791 72 2 6081 0.99 2007-04-11 03:39:35.996577
  27561. 29792 72 2 8228 4.99 2007-04-28 22:37:24.996577
  27562. 29793 72 1 9027 2.99 2007-04-30 04:26:53.996577
  27563. 29794 72 2 9420 5.99 2007-04-30 19:33:44.996577
  27564. 29795 72 2 9648 4.99 2007-04-30 04:14:29.996577
  27565. 29796 73 2 4327 2.99 2007-04-07 16:30:05.996577
  27566. 29797 73 1 4789 4.99 2007-04-08 14:50:27.996577
  27567. 29798 73 2 5021 4.99 2007-04-09 00:38:07.996577
  27568. 29799 73 1 6514 9.99 2007-04-12 02:16:10.996577
  27569. 29800 73 1 6645 2.99 2007-04-12 09:08:21.996577
  27570. 29801 73 1 7590 4.99 2007-04-27 21:52:50.996577
  27571. 29802 73 1 7683 4.99 2007-04-28 01:39:55.996577
  27572. 29803 73 1 8377 4.99 2007-04-29 03:56:06.996577
  27573. 29804 73 1 9212 2.99 2007-04-30 11:31:39.996577
  27574. 29805 73 1 9776 2.99 2007-04-30 08:29:29.996577
  27575. 29806 74 2 3819 3.99 2007-04-06 14:03:32.996577
  27576. 29807 74 1 5530 2.99 2007-04-10 00:42:15.996577
  27577. 29808 74 2 5603 2.99 2007-04-10 03:33:20.996577
  27578. 29809 74 2 5917 4.99 2007-04-10 19:58:48.996577
  27579. 29810 74 1 6241 7.99 2007-04-11 13:09:14.996577
  27580. 29811 74 1 6475 2.99 2007-04-12 00:05:23.996577
  27581. 29812 74 1 7304 6.99 2007-04-27 11:25:22.996577
  27582. 29813 74 2 8796 5.99 2007-04-29 19:37:37.996577
  27583. 29814 74 2 9112 4.99 2007-04-30 07:34:57.996577
  27584. 29815 74 2 10051 3.99 2007-04-30 17:42:46.996577
  27585. 29816 75 1 3711 0.99 2007-04-06 09:14:41.996577
  27586. 29817 75 2 4179 2.99 2007-04-07 08:45:41.996577
  27587. 29818 75 2 4511 0.99 2007-04-08 01:04:47.996577
  27588. 29819 75 1 4639 5.99 2007-04-08 07:25:47.996577
  27589. 29820 75 2 5260 2.99 2007-04-09 12:34:11.996577
  27590. 29821 75 2 6052 0.99 2007-04-11 02:19:53.996577
  27591. 29822 75 1 6092 3.99 2007-04-11 04:19:57.996577
  27592. 29823 75 1 6486 0.99 2007-04-12 00:38:02.996577
  27593. 29824 75 2 6530 0.99 2007-04-12 03:01:45.996577
  27594. 29825 75 2 6852 2.99 2007-04-12 18:02:15.996577
  27595. 29826 75 1 7052 2.99 2007-04-27 02:05:04.996577
  27596. 29827 75 1 7454 4.99 2007-04-27 16:55:52.996577
  27597. 29828 75 1 7843 0.99 2007-04-28 07:38:48.996577
  27598. 29829 75 2 7897 2.99 2007-04-28 09:30:17.996577
  27599. 29830 75 2 8202 1.99 2007-04-28 21:40:11.996577
  27600. 29831 75 1 8823 6.99 2007-04-29 20:50:38.996577
  27601. 29832 75 2 9168 5.99 2007-04-30 09:59:43.996577
  27602. 29833 75 2 9442 4.99 2007-04-30 20:12:57.996577
  27603. 29834 75 2 9501 4.99 2007-04-30 22:27:47.996577
  27604. 29835 75 1 9783 9.99 2007-04-30 08:44:12.996577
  27605. 29836 76 2 4099 4.99 2007-04-07 04:48:59.996577
  27606. 29837 76 2 5571 0.99 2007-04-10 02:16:46.996577
  27607. 29838 76 2 6789 0.99 2007-04-12 15:03:06.996577
  27608. 29839 76 2 8253 6.99 2007-04-28 23:25:32.996577
  27609. 29840 76 2 8357 2.99 2007-04-29 03:28:10.996577
  27610. 29841 76 2 8405 3.99 2007-04-29 04:56:45.996577
  27611. 29842 76 1 8935 0.99 2007-04-30 01:07:11.996577
  27612. 29843 76 2 9312 2.99 2007-04-30 15:27:43.996577
  27613. 29844 76 2 10082 0.99 2007-04-30 18:37:58.996577
  27614. 29845 77 2 4928 0.99 2007-04-08 20:34:07.996577
  27615. 29846 77 2 6168 0.99 2007-04-11 08:50:04.996577
  27616. 29847 77 2 6390 2.99 2007-04-11 20:47:49.996577
  27617. 29848 77 1 7406 3.99 2007-04-27 14:54:11.996577
  27618. 29849 77 1 7710 0.99 2007-04-28 02:52:33.996577
  27619. 29850 77 2 8942 4.99 2007-04-30 01:29:33.996577
  27620. 29851 77 1 9811 0.99 2007-04-30 09:52:11.996577
  27621. 29852 77 2 10184 4.99 2007-04-30 22:37:59.996577
  27622. 29853 78 1 3593 4.99 2007-04-06 03:08:18.996577
  27623. 29854 78 2 4227 5.99 2007-04-07 11:10:02.996577
  27624. 29855 78 2 4627 2.99 2007-04-08 06:53:05.996577
  27625. 29856 78 2 4778 0.99 2007-04-08 14:20:17.996577
  27626. 29857 78 1 5078 1.99 2007-04-09 03:48:50.996577
  27627. 29858 78 2 5604 0.99 2007-04-10 03:33:26.996577
  27628. 29859 78 1 6005 0.99 2007-04-11 00:05:08.996577
  27629. 29860 78 1 6344 4.99 2007-04-11 18:33:09.996577
  27630. 29861 78 2 7200 1.99 2007-04-27 07:26:04.996577
  27631. 29862 78 2 7747 4.99 2007-04-28 04:18:37.996577
  27632. 29863 78 2 7926 3.99 2007-04-28 10:41:28.996577
  27633. 29864 78 1 7957 6.99 2007-04-28 12:02:34.996577
  27634. 29865 78 2 8920 4.99 2007-04-30 00:27:50.996577
  27635. 29866 78 1 9068 5.99 2007-04-30 06:00:11.996577
  27636. 29867 79 1 3641 0.99 2007-04-06 05:45:35.996577
  27637. 29868 79 1 3748 2.99 2007-04-06 10:39:48.996577
  27638. 29869 79 2 4049 4.99 2007-04-07 02:03:19.996577
  27639. 29870 79 1 4530 4.99 2007-04-08 01:55:31.996577
  27640. 29871 79 2 4736 4.99 2007-04-08 11:51:21.996577
  27641. 29872 79 2 5205 2.99 2007-04-09 09:25:03.996577
  27642. 29873 79 1 5555 2.99 2007-04-10 01:37:21.996577
  27643. 29874 79 2 6162 5.99 2007-04-11 08:40:56.996577
  27644. 29875 79 1 7220 9.99 2007-04-27 08:04:20.996577
  27645. 29876 79 1 8849 2.99 2007-04-29 21:49:27.996577
  27646. 29877 79 1 9814 1.99 2007-04-30 09:58:12.996577
  27647. 29878 79 2 9845 6.99 2007-04-30 10:56:31.996577
  27648. 29879 79 1 9989 0.99 2007-04-30 15:51:05.996577
  27649. 29880 80 2 3623 4.99 2007-04-06 04:33:49.996577
  27650. 29881 80 2 4268 8.99 2007-04-07 13:04:31.996577
  27651. 29882 80 2 4299 3.99 2007-04-07 15:02:14.996577
  27652. 29883 80 1 4688 5.99 2007-04-08 09:31:55.996577
  27653. 29884 80 2 5420 3.99 2007-04-09 19:17:08.996577
  27654. 29885 80 2 5452 4.99 2007-04-09 20:51:47.996577
  27655. 29886 80 1 6199 5.99 2007-04-11 10:44:29.996577
  27656. 29887 80 2 6417 6.99 2007-04-11 22:03:37.996577
  27657. 29888 80 2 6707 1.99 2007-04-12 11:36:21.996577
  27658. 29889 80 2 7558 0.99 2007-04-27 20:47:34.996577
  27659. 29890 80 1 8509 5.99 2007-04-29 08:06:45.996577
  27660. 29891 80 1 8884 6.99 2007-04-29 22:54:48.996577
  27661. 29892 81 1 3879 2.99 2007-04-06 16:59:46.996577
  27662. 29893 81 2 4983 9.99 2007-04-08 23:02:42.996577
  27663. 29894 81 1 5468 0.99 2007-04-09 21:34:35.996577
  27664. 29895 81 2 7130 4.99 2007-04-27 04:52:02.996577
  27665. 29896 81 1 7709 0.99 2007-04-28 02:50:40.996577
  27666. 29897 81 2 9454 3.99 2007-04-30 20:48:35.996577
  27667. 29898 82 1 3680 2.99 2007-04-06 07:44:36.996577
  27668. 29899 82 1 4598 6.99 2007-04-08 05:14:52.996577
  27669. 29900 82 2 5746 4.99 2007-04-10 10:43:38.996577
  27670. 29901 82 2 6082 6.99 2007-04-11 03:41:07.996577
  27671. 29902 82 2 6708 6.99 2007-04-12 11:39:21.996577
  27672. 29903 82 2 7733 9.99 2007-04-28 03:33:13.996577
  27673. 29904 82 2 7873 0.99 2007-04-28 08:48:12.996577
  27674. 29905 82 1 8487 4.99 2007-04-29 07:22:15.996577
  27675. 29906 82 2 9277 3.99 2007-04-30 13:42:11.996577
  27676. 29907 82 1 9305 8.99 2007-04-30 15:14:22.996577
  27677. 29908 82 1 9447 6.99 2007-04-30 20:22:48.996577
  27678. 29909 83 2 3722 6.99 2007-04-06 09:38:53.996577
  27679. 29910 83 1 3754 2.99 2007-04-06 11:04:10.996577
  27680. 29911 83 1 5218 0.99 2007-04-09 10:25:38.996577
  27681. 29912 83 2 5394 6.99 2007-04-09 18:04:41.996577
  27682. 29913 83 2 6194 2.99 2007-04-11 10:19:26.996577
  27683. 29914 83 2 6861 2.99 2007-04-12 18:25:18.996577
  27684. 29915 83 2 7721 0.99 2007-04-28 03:11:24.996577
  27685. 29916 83 2 8729 4.99 2007-04-29 16:51:28.996577
  27686. 29917 83 1 9867 1.99 2007-04-30 11:45:30.996577
  27687. 29918 84 2 4079 6.99 2007-04-07 03:34:53.996577
  27688. 29919 84 2 4838 6.99 2007-04-08 16:39:26.996577
  27689. 29920 84 1 5221 5.99 2007-04-09 10:30:49.996577
  27690. 29921 84 1 5237 0.99 2007-04-09 11:25:24.996577
  27691. 29922 84 1 5971 5.99 2007-04-10 22:34:24.996577
  27692. 29923 84 2 6259 2.99 2007-04-11 13:54:18.996577
  27693. 29924 84 2 6415 9.99 2007-04-11 21:56:18.996577
  27694. 29925 84 1 7854 2.99 2007-04-28 08:10:57.996577
  27695. 29926 84 2 8019 4.99 2007-04-28 14:06:09.996577
  27696. 29927 84 1 8654 8.99 2007-04-29 13:32:53.996577
  27697. 29928 84 2 9074 2.99 2007-04-30 06:18:36.996577
  27698. 29929 84 2 9680 4.99 2007-04-30 05:10:12.996577
  27699. 29930 85 2 4451 0.99 2007-04-07 21:58:20.996577
  27700. 29931 85 1 4705 2.99 2007-04-08 10:19:04.996577
  27701. 29932 85 1 5051 4.99 2007-04-09 02:26:19.996577
  27702. 29933 85 1 5519 0.99 2007-04-09 23:46:58.996577
  27703. 29934 85 2 7906 0.99 2007-04-28 10:00:08.996577
  27704. 29935 85 2 9427 7.99 2007-04-30 19:44:59.996577
  27705. 29936 85 2 9957 4.99 2007-04-30 14:32:21.996577
  27706. 29937 85 1 9985 2.99 2007-04-30 15:43:13.996577
  27707. 29938 86 1 3611 0.99 2007-04-06 04:05:44.996577
  27708. 29939 86 2 3945 4.99 2007-04-06 20:03:26.996577
  27709. 29940 86 1 4235 2.99 2007-04-07 11:34:18.996577
  27710. 29941 86 1 4571 9.99 2007-04-08 04:03:07.996577
  27711. 29942 86 2 5295 0.99 2007-04-09 13:53:32.996577
  27712. 29943 86 1 5752 8.99 2007-04-10 10:56:04.996577
  27713. 29944 86 2 6872 7.99 2007-04-12 18:43:30.996577
  27714. 29945 86 1 7231 2.99 2007-04-27 08:30:17.996577
  27715. 29946 86 1 7874 10.99 2007-04-28 08:50:18.996577
  27716. 29947 86 2 8803 5.99 2007-04-29 19:54:50.996577
  27717. 29948 86 1 8850 2.99 2007-04-29 21:52:46.996577
  27718. 29949 86 2 9376 4.99 2007-04-30 17:40:15.996577
  27719. 29950 87 1 5084 7.99 2007-04-09 04:01:53.996577
  27720. 29951 87 1 5628 3.99 2007-04-10 04:25:06.996577
  27721. 29952 87 2 5700 4.99 2007-04-10 08:18:08.996577
  27722. 29953 87 1 6638 4.99 2007-04-12 08:26:28.996577
  27723. 29954 87 2 7599 2.99 2007-04-27 22:07:12.996577
  27724. 29955 87 2 8187 7.99 2007-04-28 21:02:19.996577
  27725. 29956 87 1 8286 5.99 2007-04-29 00:31:12.996577
  27726. 29957 87 2 8323 4.99 2007-04-29 02:21:25.996577
  27727. 29958 87 2 9060 0.99 2007-04-30 05:49:02.996577
  27728. 29959 87 1 9348 2.99 2007-04-30 16:45:35.996577
  27729. 29960 87 2 9364 8.99 2007-04-30 17:13:10.996577
  27730. 29961 87 2 10205 4.99 2007-04-30 23:16:50.996577
  27731. 29962 88 2 3524 0.99 2007-04-05 23:30:17.996577
  27732. 29963 88 2 3620 0.99 2007-04-06 04:30:16.996577
  27733. 29964 88 2 3673 5.99 2007-04-06 07:30:35.996577
  27734. 29965 88 1 3846 5.99 2007-04-06 15:11:36.996577
  27735. 29966 88 1 6643 1.99 2007-04-12 09:07:48.996577
  27736. 29967 88 1 6916 4.99 2007-04-12 20:57:44.996577
  27737. 29968 88 1 7088 5.99 2007-04-27 03:10:54.996577
  27738. 29969 88 1 7621 8.99 2007-04-27 23:02:32.996577
  27739. 29970 88 1 8296 2.99 2007-04-29 01:11:51.996577
  27740. 29971 88 2 8526 2.99 2007-04-29 08:49:14.996577
  27741. 29972 88 1 8692 2.99 2007-04-29 15:12:05.996577
  27742. 29973 89 2 4152 4.99 2007-04-07 07:18:59.996577
  27743. 29974 89 1 4488 0.99 2007-04-07 23:50:49.996577
  27744. 29975 89 1 4764 8.99 2007-04-08 13:29:51.996577
  27745. 29976 89 2 5144 7.99 2007-04-09 06:38:19.996577
  27746. 29977 89 2 5436 2.99 2007-04-09 19:59:37.996577
  27747. 29978 89 1 5483 2.99 2007-04-09 22:22:35.996577
  27748. 29979 89 1 6772 2.99 2007-04-12 14:24:01.996577
  27749. 29980 89 2 7370 7.99 2007-04-27 13:44:19.996577
  27750. 29981 89 2 7729 4.99 2007-04-28 03:26:23.996577
  27751. 29982 89 2 7995 4.99 2007-04-28 13:28:35.996577
  27752. 29983 89 1 8003 2.99 2007-04-28 13:39:53.996577
  27753. 29984 89 2 8070 2.99 2007-04-28 15:55:22.996577
  27754. 29985 89 2 8972 0.99 2007-04-30 02:34:51.996577
  27755. 29986 89 1 9328 2.99 2007-04-30 16:00:37.996577
  27756. 29987 89 2 9646 2.99 2007-04-30 04:11:54.996577
  27757. 29988 89 2 9767 0.99 2007-04-30 08:15:15.996577
  27758. 29989 89 2 10164 4.99 2007-04-30 21:46:23.996577
  27759. 29990 90 2 3729 3.99 2007-04-06 09:58:55.996577
  27760. 29991 90 2 4371 4.99 2007-04-07 18:35:11.996577
  27761. 29992 90 2 5272 0.99 2007-04-09 12:54:27.996577
  27762. 29993 90 2 5539 3.99 2007-04-10 01:11:24.996577
  27763. 29994 90 2 7035 5.99 2007-04-27 01:34:35.996577
  27764. 29995 90 2 7058 1.99 2007-04-27 02:19:12.996577
  27765. 29996 90 1 7428 5.99 2007-04-27 15:50:18.996577
  27766. 29997 90 1 7946 6.99 2007-04-28 11:29:48.996577
  27767. 29998 90 1 8024 2.99 2007-04-28 14:24:06.996577
  27768. 29999 90 1 8408 0.99 2007-04-29 05:09:06.996577
  27769. 30000 90 2 8870 9.99 2007-04-29 22:36:34.996577
  27770. 30001 90 2 9337 2.99 2007-04-30 16:30:51.996577
  27771. 30002 90 2 10206 7.99 2007-04-30 23:21:06.996577
  27772. 30003 91 2 3802 0.99 2007-04-06 13:34:35.996577
  27773. 30004 91 2 4103 2.99 2007-04-07 04:53:54.996577
  27774. 30005 91 1 4245 4.99 2007-04-07 12:16:59.996577
  27775. 30006 91 1 4321 4.99 2007-04-07 16:21:04.996577
  27776. 30007 91 1 4673 4.99 2007-04-08 08:44:26.996577
  27777. 30008 91 2 5025 4.99 2007-04-09 00:56:50.996577
  27778. 30009 91 2 5187 1.99 2007-04-09 08:48:17.996577
  27779. 30010 91 2 5701 0.99 2007-04-10 08:24:50.996577
  27780. 30011 91 1 6078 4.99 2007-04-11 03:35:18.996577
  27781. 30012 91 1 6178 2.99 2007-04-11 09:27:35.996577
  27782. 30013 91 2 6860 2.99 2007-04-12 18:22:43.996577
  27783. 30014 91 2 7143 0.99 2007-04-27 05:24:57.996577
  27784. 30015 91 2 7637 0.99 2007-04-27 23:40:51.996577
  27785. 30016 91 1 7966 4.99 2007-04-28 12:22:20.996577
  27786. 30017 91 1 8313 0.99 2007-04-29 02:02:47.996577
  27787. 30018 91 2 8873 0.99 2007-04-29 22:42:58.996577
  27788. 30019 91 2 9228 2.99 2007-04-30 12:05:23.996577
  27789. 30020 91 2 9396 4.99 2007-04-30 18:35:50.996577
  27790. 30021 91 2 10008 4.99 2007-04-30 16:28:02.996577
  27791. 30022 92 2 3595 8.99 2007-04-06 03:28:15.996577
  27792. 30023 92 2 3716 7.99 2007-04-06 09:20:58.996577
  27793. 30024 92 1 4360 2.99 2007-04-07 17:59:38.996577
  27794. 30025 92 2 4828 4.99 2007-04-08 16:20:55.996577
  27795. 30026 92 2 5497 5.99 2007-04-09 22:51:49.996577
  27796. 30027 92 2 5620 7.99 2007-04-10 03:59:18.996577
  27797. 30028 92 1 5792 6.99 2007-04-10 12:50:45.996577
  27798. 30029 92 2 5919 2.99 2007-04-10 20:00:40.996577
  27799. 30030 92 1 6158 0.99 2007-04-11 08:18:50.996577
  27800. 30031 92 2 6277 6.99 2007-04-11 14:47:27.996577
  27801. 30032 92 1 7073 4.99 2007-04-27 02:31:52.996577
  27802. 30033 92 1 7832 1.99 2007-04-28 07:14:37.996577
  27803. 30034 92 1 8494 4.99 2007-04-29 07:32:58.996577
  27804. 30035 92 1 8938 4.99 2007-04-30 01:24:34.996577
  27805. 30036 92 1 9240 4.99 2007-04-30 12:26:20.996577
  27806. 30037 93 1 4733 2.99 2007-04-08 11:40:33.996577
  27807. 30038 93 2 5130 4.99 2007-04-09 05:58:11.996577
  27808. 30039 93 2 6287 4.99 2007-04-11 15:28:30.996577
  27809. 30040 93 1 6586 4.99 2007-04-12 05:24:50.996577
  27810. 30041 93 1 7301 2.99 2007-04-27 11:18:49.996577
  27811. 30042 93 1 8233 0.99 2007-04-28 22:44:49.996577
  27812. 30043 94 2 4044 0.99 2007-04-07 01:50:49.996577
  27813. 30044 94 1 4287 8.99 2007-04-07 14:05:57.996577
  27814. 30045 94 2 5719 4.99 2007-04-10 09:36:06.996577
  27815. 30046 94 2 5970 4.99 2007-04-10 22:33:16.996577
  27816. 30047 94 2 7809 2.99 2007-04-28 06:28:12.996577
  27817. 30048 94 2 7979 0.99 2007-04-28 12:44:56.996577
  27818. 30049 94 1 9605 4.99 2007-04-30 02:18:33.996577
  27819. 30050 95 1 3633 1.99 2007-04-06 05:11:52.996577
  27820. 30051 95 2 4000 4.99 2007-04-06 22:27:03.996577
  27821. 30052 95 1 4835 5.99 2007-04-08 16:36:39.996577
  27822. 30053 95 2 7245 5.99 2007-04-27 08:57:32.996577
  27823. 30054 95 1 7471 4.99 2007-04-27 17:30:45.996577
  27824. 30055 95 1 9222 6.99 2007-04-30 11:49:34.996577
  27825. 30056 95 1 9695 6.99 2007-04-30 05:41:56.996577
  27826. 30057 95 1 9951 4.99 2007-04-30 14:19:42.996577
  27827. 30058 95 1 10130 0.99 2007-04-30 20:12:56.996577
  27828. 30059 96 1 3720 2.99 2007-04-06 09:35:23.996577
  27829. 30060 96 2 3742 2.99 2007-04-06 10:30:04.996577
  27830. 30061 96 1 4961 4.99 2007-04-08 22:04:19.996577
  27831. 30062 96 1 5558 0.99 2007-04-10 01:40:34.996577
  27832. 30063 96 1 5678 4.99 2007-04-10 07:11:08.996577
  27833. 30064 96 1 5696 2.99 2007-04-10 08:12:58.996577
  27834. 30065 96 2 8125 4.99 2007-04-28 18:00:14.996577
  27835. 30066 96 1 8437 6.99 2007-04-29 05:52:09.996577
  27836. 30067 96 2 9093 3.99 2007-04-30 07:01:50.996577
  27837. 30068 96 1 9315 4.99 2007-04-30 15:33:55.996577
  27838. 30069 96 1 9662 3.99 2007-04-30 04:38:19.996577
  27839. 30070 96 2 10031 4.99 2007-04-30 17:08:41.996577
  27840. 30071 97 1 3540 2.99 2007-04-06 00:15:46.996577
  27841. 30072 97 2 3565 0.99 2007-04-06 01:31:24.996577
  27842. 30073 97 2 3818 4.99 2007-04-06 14:01:57.996577
  27843. 30074 97 2 4312 4.99 2007-04-07 16:03:25.996577
  27844. 30075 97 1 4508 4.99 2007-04-08 00:57:07.996577
  27845. 30076 97 2 5454 4.99 2007-04-09 20:52:51.996577
  27846. 30077 97 1 6544 0.99 2007-04-12 03:24:41.996577
  27847. 30078 97 1 6726 0.99 2007-04-12 12:16:40.996577
  27848. 30079 97 2 7182 5.99 2007-04-27 06:44:04.996577
  27849. 30080 97 2 7924 0.99 2007-04-28 10:37:19.996577
  27850. 30081 97 2 8438 2.99 2007-04-29 05:54:08.996577
  27851. 30082 97 1 9591 4.99 2007-04-30 01:47:54.996577
  27852. 30083 98 2 3682 7.99 2007-04-06 07:51:14.996577
  27853. 30084 98 1 4549 4.99 2007-04-08 02:53:29.996577
  27854. 30085 98 2 6951 2.99 2007-04-26 22:15:57.996577
  27855. 30086 98 2 7120 3.99 2007-04-27 04:25:05.996577
  27856. 30087 98 1 7530 0.99 2007-04-27 19:47:24.996577
  27857. 30088 98 1 8324 5.99 2007-04-29 02:24:31.996577
  27858. 30089 98 2 8622 4.99 2007-04-29 12:21:54.996577
  27859. 30090 98 2 8818 5.99 2007-04-29 20:42:30.996577
  27860. 30091 98 1 9753 2.99 2007-04-30 07:51:04.996577
  27861. 30092 99 2 3780 6.99 2007-04-06 12:20:28.996577
  27862. 30093 99 2 4170 2.99 2007-04-07 08:13:02.996577
  27863. 30094 99 2 4344 4.99 2007-04-07 17:19:13.996577
  27864. 30095 99 1 4589 0.99 2007-04-08 04:54:30.996577
  27865. 30096 99 2 4800 4.99 2007-04-08 15:19:34.996577
  27866. 30097 99 2 4954 2.99 2007-04-08 21:42:42.996577
  27867. 30098 99 2 5035 2.99 2007-04-09 01:20:00.996577
  27868. 30099 99 1 5748 2.99 2007-04-10 10:48:25.996577
  27869. 30100 99 1 6289 2.99 2007-04-11 15:35:05.996577
  27870. 30101 99 1 6370 3.99 2007-04-11 19:56:58.996577
  27871. 30102 99 2 6662 4.99 2007-04-12 09:49:32.996577
  27872. 30103 99 1 7039 4.99 2007-04-27 01:40:14.996577
  27873. 30104 99 1 8072 0.99 2007-04-28 15:56:25.996577
  27874. 30105 99 2 8242 7.99 2007-04-28 23:02:53.996577
  27875. 30106 99 2 8514 0.99 2007-04-29 08:21:59.996577
  27876. 30107 100 2 3602 5.99 2007-04-06 03:51:36.996577
  27877. 30108 100 1 3800 8.99 2007-04-06 13:29:53.996577
  27878. 30109 100 1 4209 2.99 2007-04-07 10:03:34.996577
  27879. 30110 100 1 4970 8.99 2007-04-08 22:22:55.996577
  27880. 30111 100 2 4980 6.99 2007-04-08 22:55:25.996577
  27881. 30112 100 2 5238 4.99 2007-04-09 11:39:40.996577
  27882. 30113 100 2 5355 6.99 2007-04-09 16:35:43.996577
  27883. 30114 100 1 6655 4.99 2007-04-12 09:36:58.996577
  27884. 30115 100 2 7819 4.99 2007-04-28 06:55:40.996577
  27885. 30116 100 1 7921 1.99 2007-04-28 10:31:12.996577
  27886. 30117 100 2 8203 0.99 2007-04-28 21:43:22.996577
  27887. 30118 100 2 9048 5.99 2007-04-30 05:25:33.996577
  27888. 30119 100 1 9271 4.99 2007-04-30 13:32:57.996577
  27889. 30120 101 1 4975 2.99 2007-04-08 22:31:12.996577
  27890. 30121 101 2 5100 2.99 2007-04-09 04:44:29.996577
  27891. 30122 101 1 5132 5.99 2007-04-09 06:08:58.996577
  27892. 30123 101 2 5198 2.99 2007-04-09 09:17:36.996577
  27893. 30124 101 1 5757 2.99 2007-04-10 11:08:43.996577
  27894. 30125 101 2 6433 5.99 2007-04-11 22:40:28.996577
  27895. 30126 101 2 7112 5.99 2007-04-27 04:07:08.996577
  27896. 30127 101 2 7866 8.99 2007-04-28 08:36:27.996577
  27897. 30128 101 1 8301 0.99 2007-04-29 01:28:34.996577
  27898. 30129 101 2 8825 1.99 2007-04-29 20:52:42.996577
  27899. 30130 101 2 8833 4.99 2007-04-29 21:08:02.996577
  27900. 30131 101 2 9965 6.99 2007-04-30 14:47:58.996577
  27901. 30132 101 2 10218 0.99 2007-04-30 23:38:10.996577
  27902. 30133 102 2 3520 1.99 2007-04-05 23:26:53.996577
  27903. 30134 102 2 3630 1.99 2007-04-06 04:55:41.996577
  27904. 30135 102 2 3665 4.99 2007-04-06 06:51:34.996577
  27905. 30136 102 1 4089 6.99 2007-04-07 04:14:25.996577
  27906. 30137 102 2 4777 3.99 2007-04-08 14:17:00.996577
  27907. 30138 102 1 4997 6.99 2007-04-08 23:34:29.996577
  27908. 30139 102 1 5009 5.99 2007-04-09 00:00:43.996577
  27909. 30140 102 1 5109 4.99 2007-04-09 05:17:15.996577
  27910. 30141 102 2 5509 5.99 2007-04-09 23:23:12.996577
  27911. 30142 102 1 5716 2.99 2007-04-10 09:27:49.996577
  27912. 30143 102 2 6434 5.99 2007-04-11 22:42:51.996577
  27913. 30144 102 2 7119 0.99 2007-04-27 04:23:58.996577
  27914. 30145 102 2 7247 0.99 2007-04-27 09:01:24.996577
  27915. 30146 102 2 7439 6.99 2007-04-27 16:10:57.996577
  27916. 30147 102 1 8186 0.99 2007-04-28 20:58:53.996577
  27917. 30148 102 1 8664 5.99 2007-04-29 14:04:53.996577
  27918. 30149 102 2 9151 3.99 2007-04-30 09:19:19.996577
  27919. 30150 102 1 9192 2.99 2007-04-30 10:54:52.996577
  27920. 30151 102 2 9295 0.99 2007-04-30 14:47:05.996577
  27921. 30152 102 2 9617 2.99 2007-04-30 02:44:04.996577
  27922. 30153 102 1 9780 4.99 2007-04-30 08:38:48.996577
  27923. 30154 103 2 3750 6.99 2007-04-06 10:47:54.996577
  27924. 30155 103 1 3850 4.99 2007-04-06 15:19:47.996577
  27925. 30156 103 2 4040 6.99 2007-04-07 01:31:06.996577
  27926. 30157 103 1 4213 2.99 2007-04-07 10:22:15.996577
  27927. 30158 103 1 4357 1.99 2007-04-07 17:53:05.996577
  27928. 30159 103 2 4872 4.99 2007-04-08 17:51:42.996577
  27929. 30160 103 2 5163 4.99 2007-04-09 07:28:54.996577
  27930. 30161 103 1 6525 5.99 2007-04-12 02:45:41.996577
  27931. 30162 103 2 6697 6.99 2007-04-12 11:13:23.996577
  27932. 30163 103 2 6949 2.99 2007-04-26 22:12:38.996577
  27933. 30164 103 1 7310 0.99 2007-04-27 11:29:21.996577
  27934. 30165 103 2 7472 6.99 2007-04-27 17:32:45.996577
  27935. 30166 103 1 8302 0.99 2007-04-29 01:29:50.996577
  27936. 30167 103 1 8520 4.99 2007-04-29 08:38:28.996577
  27937. 30168 103 2 9390 4.99 2007-04-30 18:10:33.996577
  27938. 30169 104 2 4012 4.99 2007-04-06 23:24:35.996577
  27939. 30170 104 2 4438 6.99 2007-04-07 21:24:43.996577
  27940. 30171 104 2 4520 4.99 2007-04-08 01:22:12.996577
  27941. 30172 104 1 4529 7.99 2007-04-08 01:54:46.996577
  27942. 30173 104 1 4917 2.99 2007-04-08 20:00:56.996577
  27943. 30174 104 1 5376 1.99 2007-04-09 17:22:34.996577
  27944. 30175 104 2 7107 2.99 2007-04-27 03:50:30.996577
  27945. 30176 104 1 8413 1.99 2007-04-29 05:16:05.996577
  27946. 30177 104 1 9090 3.99 2007-04-30 06:53:08.996577
  27947. 30178 104 2 9996 5.99 2007-04-30 16:00:29.996577
  27948. 30179 105 2 5261 4.99 2007-04-09 12:35:22.996577
  27949. 30180 105 1 5429 4.99 2007-04-09 19:42:29.996577
  27950. 30181 105 2 5542 2.99 2007-04-10 01:14:19.996577
  27951. 30182 105 2 5677 4.99 2007-04-10 07:09:54.996577
  27952. 30183 105 2 6546 4.99 2007-04-12 03:25:43.996577
  27953. 30184 105 1 7442 2.99 2007-04-27 16:15:26.996577
  27954. 30185 105 2 8980 2.99 2007-04-30 02:50:41.996577
  27955. 30186 105 2 9124 3.99 2007-04-30 08:11:38.996577
  27956. 30187 105 2 9198 5.99 2007-04-30 11:05:34.996577
  27957. 30188 105 2 9210 9.99 2007-04-30 11:25:10.996577
  27958. 30189 106 1 4229 4.99 2007-04-07 11:11:49.996577
  27959. 30190 106 2 4277 2.99 2007-04-07 13:20:38.996577
  27960. 30191 106 1 4665 3.99 2007-04-08 08:32:50.996577
  27961. 30192 106 2 5453 3.99 2007-04-09 20:52:37.996577
  27962. 30193 106 2 6992 0.99 2007-04-26 23:33:11.996577
  27963. 30194 106 1 7224 3.99 2007-04-27 08:12:52.996577
  27964. 30195 106 1 7483 4.99 2007-04-27 17:53:26.996577
  27965. 30196 106 1 8115 4.99 2007-04-28 17:42:43.996577
  27966. 30197 106 2 9072 2.99 2007-04-30 06:14:15.996577
  27967. 30198 106 2 9747 7.99 2007-04-30 07:45:23.996577
  27968. 30199 106 2 10213 8.99 2007-04-30 23:31:44.996577
  27969. 30200 107 2 3824 6.99 2007-04-06 14:11:41.996577
  27970. 30201 107 2 5311 4.99 2007-04-09 14:31:20.996577
  27971. 30202 107 2 5575 2.99 2007-04-10 02:24:16.996577
  27972. 30203 107 2 5798 3.99 2007-04-10 13:13:35.996577
  27973. 30204 107 2 6131 2.99 2007-04-11 06:50:31.996577
  27974. 30205 107 2 6133 0.99 2007-04-11 06:53:48.996577
  27975. 30206 107 1 6811 5.99 2007-04-12 16:22:59.996577
  27976. 30207 107 2 6934 6.99 2007-04-26 21:39:29.996577
  27977. 30208 107 2 7447 4.99 2007-04-27 16:30:34.996577
  27978. 30209 107 1 7600 7.99 2007-04-27 22:09:44.996577
  27979. 30210 107 1 8162 4.99 2007-04-28 19:40:12.996577
  27980. 30211 107 2 8704 1.99 2007-04-29 15:42:11.996577
  27981. 30212 107 1 9155 2.99 2007-04-30 09:28:26.996577
  27982. 30213 107 2 9351 2.99 2007-04-30 16:56:56.996577
  27983. 30214 108 1 3875 0.99 2007-04-06 16:44:05.996577
  27984. 30215 108 2 4082 2.99 2007-04-07 03:40:19.996577
  27985. 30216 108 1 4303 1.99 2007-04-07 15:25:58.996577
  27986. 30217 108 1 4650 4.99 2007-04-08 08:00:34.996577
  27987. 30218 108 1 4754 0.99 2007-04-08 12:48:27.996577
  27988. 30219 108 2 5274 6.99 2007-04-09 13:02:35.996577
  27989. 30220 108 1 5661 5.99 2007-04-10 06:22:17.996577
  27990. 30221 108 2 5806 4.99 2007-04-10 13:40:20.996577
  27991. 30222 108 1 6841 0.99 2007-04-12 17:32:50.996577
  27992. 30223 108 2 8329 5.99 2007-04-29 02:34:59.996577
  27993. 30224 108 2 8587 4.99 2007-04-29 10:47:06.996577
  27994. 30225 108 1 8846 4.99 2007-04-29 21:38:54.996577
  27995. 30226 108 2 9755 4.99 2007-04-30 07:53:21.996577
  27996. 30227 109 1 4921 4.99 2007-04-08 20:11:47.996577
  27997. 30228 109 1 5027 2.99 2007-04-09 01:01:03.996577
  27998. 30229 109 2 5296 2.99 2007-04-09 13:54:53.996577
  27999. 30230 109 2 6920 6.99 2007-04-12 21:01:24.996577
  28000. 30231 109 2 7145 0.99 2007-04-27 05:29:26.996577
  28001. 30232 109 1 8006 3.99 2007-04-28 13:44:07.996577
  28002. 30233 109 1 9230 0.99 2007-04-30 12:08:08.996577
  28003. 30234 109 1 9871 2.99 2007-04-30 11:54:12.996577
  28004. 30235 110 1 3587 4.99 2007-04-06 02:56:18.996577
  28005. 30236 110 1 4317 2.99 2007-04-07 16:13:15.996577
  28006. 30237 110 2 4827 4.99 2007-04-08 16:14:56.996577
  28007. 30238 110 1 6160 4.99 2007-04-11 08:36:39.996577
  28008. 30239 110 1 7474 0.99 2007-04-27 17:35:43.996577
  28009. 30240 110 2 7542 0.99 2007-04-27 20:11:30.996577
  28010. 30241 110 1 7570 2.99 2007-04-27 21:08:32.996577
  28011. 30242 111 2 3485 1.99 2007-04-05 21:54:20.996577
  28012. 30243 111 1 3551 3.99 2007-04-06 01:02:14.996577
  28013. 30244 111 2 3963 9.99 2007-04-06 20:47:43.996577
  28014. 30245 111 1 4249 4.99 2007-04-07 12:33:43.996577
  28015. 30246 111 2 4286 0.99 2007-04-07 14:05:10.996577
  28016. 30247 111 1 6896 2.99 2007-04-12 19:54:03.996577
  28017. 30248 111 2 8525 0.99 2007-04-29 08:48:45.996577
  28018. 30249 111 2 9933 0.99 2007-04-30 13:53:12.996577
  28019. 30250 111 2 10039 2.99 2007-04-30 17:19:06.996577
  28020. 30251 112 1 5351 4.99 2007-04-09 16:09:18.996577
  28021. 30252 112 1 5385 2.99 2007-04-09 17:46:37.996577
  28022. 30253 112 2 6550 2.99 2007-04-12 03:31:40.996577
  28023. 30254 112 2 7691 4.99 2007-04-28 01:58:35.996577
  28024. 30255 112 2 7761 4.99 2007-04-28 05:00:11.996577
  28025. 30256 112 1 9217 4.99 2007-04-30 11:42:21.996577
  28026. 30257 112 2 9321 6.99 2007-04-30 15:48:10.996577
  28027. 30258 112 2 9609 4.99 2007-04-30 02:21:50.996577
  28028. 30259 112 1 9830 5.99 2007-04-30 10:27:31.996577
  28029. 30260 112 2 9911 3.99 2007-04-30 13:16:27.996577
  28030. 30261 112 1 10038 2.99 2007-04-30 17:17:38.996577
  28031. 30262 113 2 3657 5.99 2007-04-06 06:23:56.996577
  28032. 30263 113 1 4333 2.99 2007-04-07 17:00:16.996577
  28033. 30264 113 2 5189 2.99 2007-04-09 08:51:47.996577
  28034. 30265 113 2 5324 2.99 2007-04-09 15:02:44.996577
  28035. 30266 113 2 5655 4.99 2007-04-10 05:59:32.996577
  28036. 30267 113 1 5774 5.99 2007-04-10 12:00:22.996577
  28037. 30268 113 1 6025 0.99 2007-04-11 00:46:39.996577
  28038. 30269 113 1 6836 0.99 2007-04-12 17:26:31.996577
  28039. 30270 113 2 7468 5.99 2007-04-27 17:20:53.996577
  28040. 30271 113 2 7587 2.99 2007-04-27 21:51:29.996577
  28041. 30272 113 2 9221 6.99 2007-04-30 11:48:32.996577
  28042. 30273 113 2 10181 4.99 2007-04-30 22:29:10.996577
  28043. 30274 114 1 3484 4.99 2007-04-05 21:51:37.996577
  28044. 30275 114 1 3924 2.99 2007-04-06 19:06:28.996577
  28045. 30276 114 1 4025 0.99 2007-04-07 00:41:50.996577
  28046. 30277 114 1 5418 0.99 2007-04-09 19:10:01.996577
  28047. 30278 114 2 5624 4.99 2007-04-10 04:11:42.996577
  28048. 30279 114 1 5625 2.99 2007-04-10 04:12:28.996577
  28049. 30280 114 1 6188 2.99 2007-04-11 10:00:13.996577
  28050. 30281 114 1 6754 4.99 2007-04-12 13:27:50.996577
  28051. 30282 114 2 7316 2.99 2007-04-27 11:47:29.996577
  28052. 30283 114 2 7462 2.99 2007-04-27 17:16:13.996577
  28053. 30284 114 2 7565 2.99 2007-04-27 21:02:25.996577
  28054. 30285 114 2 7938 5.99 2007-04-28 11:07:37.996577
  28055. 30286 114 2 8496 4.99 2007-04-29 07:33:59.996577
  28056. 30287 114 1 8590 10.99 2007-04-29 11:00:46.996577
  28057. 30288 114 1 9717 4.99 2007-04-30 06:53:07.996577
  28058. 30289 115 2 3544 0.99 2007-04-06 00:34:58.996577
  28059. 30290 115 1 3624 0.99 2007-04-06 04:34:53.996577
  28060. 30291 115 1 4780 1.99 2007-04-08 14:35:17.996577
  28061. 30292 115 1 5245 4.99 2007-04-09 11:52:40.996577
  28062. 30293 115 1 6080 2.99 2007-04-11 03:36:37.996577
  28063. 30294 115 2 6113 2.99 2007-04-11 05:59:34.996577
  28064. 30295 115 1 6373 0.99 2007-04-11 20:03:46.996577
  28065. 30296 115 1 6574 5.99 2007-04-12 04:32:48.996577
  28066. 30297 115 1 6798 6.99 2007-04-12 15:17:37.996577
  28067. 30298 115 2 7355 1.99 2007-04-27 13:14:25.996577
  28068. 30299 115 2 7465 4.99 2007-04-27 17:18:56.996577
  28069. 30300 115 1 7983 4.99 2007-04-28 12:51:27.996577
  28070. 30301 115 1 8594 4.99 2007-04-29 11:10:39.996577
  28071. 30302 115 2 9578 0.99 2007-04-30 01:22:57.996577
  28072. 30303 115 2 10022 3.99 2007-04-30 16:53:56.996577
  28073. 30304 116 2 3908 6.99 2007-04-06 18:15:52.996577
  28074. 30305 116 2 3940 2.99 2007-04-06 19:45:25.996577
  28075. 30306 116 1 4027 0.99 2007-04-07 00:47:27.996577
  28076. 30307 116 2 4737 4.99 2007-04-08 11:52:19.996577
  28077. 30308 116 2 5169 2.99 2007-04-09 07:50:51.996577
  28078. 30309 116 1 6557 4.99 2007-04-12 03:40:29.996577
  28079. 30310 116 1 7238 0.99 2007-04-27 08:42:07.996577
  28080. 30311 116 2 7763 5.99 2007-04-28 05:03:42.996577
  28081. 30312 116 2 9245 6.99 2007-04-30 12:36:16.996577
  28082. 30313 116 1 9562 3.99 2007-04-30 00:51:46.996577
  28083. 30314 117 2 5506 5.99 2007-04-09 23:14:14.996577
  28084. 30315 117 1 5673 0.99 2007-04-10 06:50:20.996577
  28085. 30316 117 1 6093 9.99 2007-04-11 04:21:16.996577
  28086. 30317 117 1 6449 6.99 2007-04-11 23:17:24.996577
  28087. 30318 117 1 8687 2.99 2007-04-29 14:47:43.996577
  28088. 30319 118 1 4966 0.99 2007-04-08 22:15:51.996577
  28089. 30320 118 1 5829 1.99 2007-04-10 14:58:07.996577
  28090. 30321 118 1 6377 0.99 2007-04-11 20:09:42.996577
  28091. 30322 118 1 6507 1.99 2007-04-12 02:01:38.996577
  28092. 30323 118 1 7196 2.99 2007-04-27 07:17:34.996577
  28093. 30324 118 1 7850 4.99 2007-04-28 07:59:39.996577
  28094. 30325 118 2 7956 4.99 2007-04-28 12:00:43.996577
  28095. 30326 118 1 8314 3.99 2007-04-29 02:03:30.996577
  28096. 30327 118 2 8760 7.99 2007-04-29 17:51:06.996577
  28097. 30328 118 1 8881 4.99 2007-04-29 22:50:57.996577
  28098. 30329 118 2 10045 1.99 2007-04-30 17:33:01.996577
  28099. 30330 119 2 4840 8.99 2007-04-08 16:46:42.996577
  28100. 30331 119 1 5176 5.99 2007-04-09 08:07:57.996577
  28101. 30332 119 1 5268 0.99 2007-04-09 12:51:09.996577
  28102. 30333 119 1 6079 7.99 2007-04-11 03:35:40.996577
  28103. 30334 119 2 6330 0.99 2007-04-11 17:44:08.996577
  28104. 30335 119 2 8140 4.99 2007-04-28 18:46:16.996577
  28105. 30336 119 1 8183 5.99 2007-04-28 20:49:33.996577
  28106. 30337 119 1 8304 4.99 2007-04-29 01:36:56.996577
  28107. 30338 119 2 9028 2.99 2007-04-30 04:29:01.996577
  28108. 30339 119 1 10101 0.99 2007-04-30 19:15:55.996577
  28109. 30340 120 1 4001 5.99 2007-04-06 22:35:26.996577
  28110. 30341 120 2 4272 3.99 2007-04-07 13:07:46.996577
  28111. 30342 120 2 4342 0.99 2007-04-07 17:15:29.996577
  28112. 30343 120 2 4666 9.99 2007-04-08 08:33:28.996577
  28113. 30344 120 1 4942 1.99 2007-04-08 21:11:13.996577
  28114. 30345 120 2 5288 1.99 2007-04-09 13:41:33.996577
  28115. 30346 120 2 6503 0.99 2007-04-12 01:46:33.996577
  28116. 30347 120 1 6989 4.99 2007-04-26 23:29:00.996577
  28117. 30348 120 2 8046 0.99 2007-04-28 15:18:07.996577
  28118. 30349 120 2 8756 1.99 2007-04-29 17:47:23.996577
  28119. 30350 120 1 8998 6.99 2007-04-30 03:22:40.996577
  28120. 30351 120 2 9907 6.99 2007-04-30 13:08:16.996577
  28121. 30352 120 2 10161 0.99 2007-04-30 21:38:07.996577
  28122. 30353 121 2 5670 0.99 2007-04-10 06:43:18.996577
  28123. 30354 121 2 6780 4.99 2007-04-12 14:46:38.996577
  28124. 30355 121 2 7114 0.99 2007-04-27 04:10:39.996577
  28125. 30356 121 1 7185 0.99 2007-04-27 06:52:20.996577
  28126. 30357 121 2 7298 2.99 2007-04-27 11:13:40.996577
  28127. 30358 121 1 8370 6.99 2007-04-29 03:44:47.996577
  28128. 30359 121 2 8788 1.99 2007-04-29 19:15:10.996577
  28129. 30360 121 2 8875 2.99 2007-04-29 22:43:35.996577
  28130. 30361 121 2 8969 8.99 2007-04-30 02:28:45.996577
  28131. 30362 122 1 3778 2.99 2007-04-06 12:13:14.996577
  28132. 30363 122 2 3986 4.99 2007-04-06 21:53:39.996577
  28133. 30364 122 1 4239 7.99 2007-04-07 11:51:43.996577
  28134. 30365 122 1 4568 4.99 2007-04-08 03:52:25.996577
  28135. 30366 122 2 5235 6.99 2007-04-09 11:22:51.996577
  28136. 30367 122 2 6231 0.99 2007-04-11 12:31:02.996577
  28137. 30368 122 1 6427 0.99 2007-04-11 22:26:00.996577
  28138. 30369 122 1 6436 0.99 2007-04-11 22:47:08.996577
  28139. 30370 122 2 6974 7.99 2007-04-26 23:07:42.996577
  28140. 30371 122 1 7267 2.99 2007-04-27 09:51:21.996577
  28141. 30372 122 2 7950 4.99 2007-04-28 11:49:26.996577
  28142. 30373 122 1 8077 2.99 2007-04-28 16:23:01.996577
  28143. 30374 122 2 8177 0.99 2007-04-28 20:12:20.996577
  28144. 30375 122 1 8772 5.99 2007-04-29 18:23:51.996577
  28145. 30376 122 2 9910 4.99 2007-04-30 13:16:23.996577
  28146. 30377 123 1 4442 3.99 2007-04-07 21:33:56.996577
  28147. 30378 123 1 4860 8.99 2007-04-08 17:22:33.996577
  28148. 30379 123 2 7535 4.99 2007-04-27 20:01:05.996577
  28149. 30380 123 1 7727 2.99 2007-04-28 03:21:09.996577
  28150. 30381 123 2 7768 0.99 2007-04-28 05:12:29.996577
  28151. 30382 123 1 7852 2.99 2007-04-28 08:02:55.996577
  28152. 30383 123 1 7969 5.99 2007-04-28 12:26:03.996577
  28153. 30384 123 2 8699 4.99 2007-04-29 15:21:26.996577
  28154. 30385 123 2 9529 4.99 2007-04-30 23:33:52.996577
  28155. 30386 123 1 10066 4.99 2007-04-30 17:58:27.996577
  28156. 30387 124 1 4341 7.99 2007-04-07 17:12:49.996577
  28157. 30388 124 2 4709 2.99 2007-04-08 10:33:00.996577
  28158. 30389 124 1 5566 2.99 2007-04-10 01:58:43.996577
  28159. 30390 124 1 6411 2.99 2007-04-11 21:39:16.996577
  28160. 30391 124 1 7519 6.99 2007-04-27 19:30:07.996577
  28161. 30392 124 2 7700 8.99 2007-04-28 02:22:40.996577
  28162. 30393 124 2 8524 0.99 2007-04-29 08:48:33.996577
  28163. 30394 124 1 9986 3.99 2007-04-30 15:45:16.996577
  28164. 30395 125 1 3617 4.99 2007-04-06 04:26:32.996577
  28165. 30396 125 1 5200 2.99 2007-04-09 09:20:35.996577
  28166. 30397 125 2 5523 7.99 2007-04-10 00:16:21.996577
  28167. 30398 125 1 6055 0.99 2007-04-11 02:27:34.996577
  28168. 30399 125 2 6268 6.99 2007-04-11 14:24:00.996577
  28169. 30400 125 1 7323 4.99 2007-04-27 12:08:06.996577
  28170. 30401 125 2 7879 0.99 2007-04-28 08:56:12.996577
  28171. 30402 125 2 7922 0.99 2007-04-28 10:33:51.996577
  28172. 30403 125 2 8375 2.99 2007-04-29 03:53:56.996577
  28173. 30404 125 1 8433 2.99 2007-04-29 05:47:42.996577
  28174. 30405 125 1 8832 4.99 2007-04-29 21:06:15.996577
  28175. 30406 125 1 9129 9.99 2007-04-30 08:19:47.996577
  28176. 30407 125 1 9496 4.99 2007-04-30 22:23:46.996577
  28177. 30408 125 2 9504 0.99 2007-04-30 22:37:33.996577
  28178. 30409 125 1 9722 4.99 2007-04-30 06:58:14.996577
  28179. 30410 125 2 9734 2.99 2007-04-30 07:26:11.996577
  28180. 30411 126 2 3502 5.99 2007-04-05 22:43:32.996577
  28181. 30412 126 1 3725 4.99 2007-04-06 09:43:30.996577
  28182. 30413 126 1 3804 7.99 2007-04-06 13:36:34.996577
  28183. 30414 126 1 4691 0.99 2007-04-08 09:33:19.996577
  28184. 30415 126 2 4730 2.99 2007-04-08 11:28:15.996577
  28185. 30416 126 2 5137 0.99 2007-04-09 06:29:00.996577
  28186. 30417 126 1 5865 0.99 2007-04-10 16:59:31.996577
  28187. 30418 126 1 6747 0.99 2007-04-12 13:01:47.996577
  28188. 30419 126 2 6755 6.99 2007-04-12 13:36:15.996577
  28189. 30420 126 1 7962 0.99 2007-04-28 12:16:35.996577
  28190. 30421 126 1 8091 2.99 2007-04-28 16:55:55.996577
  28191. 30422 126 1 9492 6.99 2007-04-30 22:20:47.996577
  28192. 30423 126 2 10032 4.99 2007-04-30 17:10:21.996577
  28193. 30424 127 1 4652 5.99 2007-04-08 08:16:17.996577
  28194. 30425 127 2 4811 5.99 2007-04-08 15:32:50.996577
  28195. 30426 127 2 5499 2.99 2007-04-09 22:56:11.996577
  28196. 30427 127 2 5983 2.99 2007-04-10 23:02:37.996577
  28197. 30428 127 1 7912 4.99 2007-04-28 10:15:24.996577
  28198. 30429 127 2 8209 6.99 2007-04-28 21:57:54.996577
  28199. 30430 127 1 9859 6.99 2007-04-30 11:31:21.996577
  28200. 30431 127 1 10197 2.99 2007-04-30 23:03:51.996577
  28201. 30432 128 1 3751 0.99 2007-04-06 10:52:07.996577
  28202. 30433 128 2 3995 5.99 2007-04-06 22:11:29.996577
  28203. 30434 128 1 5270 2.99 2007-04-09 12:52:12.996577
  28204. 30435 128 1 5647 4.99 2007-04-10 05:37:06.996577
  28205. 30436 128 2 5997 4.99 2007-04-10 23:48:16.996577
  28206. 30437 128 2 6186 2.99 2007-04-11 09:55:07.996577
  28207. 30438 128 2 6481 6.99 2007-04-12 00:18:41.996577
  28208. 30439 128 2 6687 2.99 2007-04-12 10:47:49.996577
  28209. 30440 128 2 7582 4.99 2007-04-27 21:43:40.996577
  28210. 30441 128 2 8415 2.99 2007-04-29 05:20:53.996577
  28211. 30442 128 2 9215 5.99 2007-04-30 11:39:37.996577
  28212. 30443 128 2 9234 2.99 2007-04-30 12:14:20.996577
  28213. 30444 128 1 9433 5.99 2007-04-30 19:56:43.996577
  28214. 30445 128 2 9858 2.99 2007-04-30 11:30:33.996577
  28215. 30446 128 1 9952 3.99 2007-04-30 14:21:03.996577
  28216. 30447 128 1 10011 2.99 2007-04-30 16:31:07.996577
  28217. 30448 129 1 3689 0.99 2007-04-06 08:11:27.996577
  28218. 30449 129 2 3900 4.99 2007-04-06 17:49:54.996577
  28219. 30450 129 2 3936 0.99 2007-04-06 19:43:29.996577
  28220. 30451 129 2 4256 2.99 2007-04-07 12:43:02.996577
  28221. 30452 129 1 4602 0.99 2007-04-08 05:21:06.996577
  28222. 30453 129 1 4896 2.99 2007-04-08 18:51:41.996577
  28223. 30454 129 1 4996 0.99 2007-04-08 23:28:12.996577
  28224. 30455 129 1 5127 0.99 2007-04-09 05:54:13.996577
  28225. 30456 129 2 5350 4.99 2007-04-09 16:07:56.996577
  28226. 30457 129 1 8339 4.99 2007-04-29 03:09:39.996577
  28227. 30458 129 1 8345 2.99 2007-04-29 03:16:03.996577
  28228. 30459 129 2 9823 4.99 2007-04-30 10:17:26.996577
  28229. 30460 129 1 9983 7.99 2007-04-30 15:38:02.996577
  28230. 30461 129 1 10024 7.99 2007-04-30 16:55:02.996577
  28231. 30462 129 2 10167 5.99 2007-04-30 21:52:57.996577
  28232. 30463 130 2 4339 4.99 2007-04-07 17:10:08.996577
  28233. 30464 130 2 4485 4.99 2007-04-07 23:36:20.996577
  28234. 30465 130 1 6353 3.99 2007-04-11 19:17:22.996577
  28235. 30466 130 1 7181 4.99 2007-04-27 06:43:00.996577
  28236. 30467 130 1 7728 0.99 2007-04-28 03:24:59.996577
  28237. 30468 130 1 9452 0.99 2007-04-30 20:47:42.996577
  28238. 30469 130 2 9637 4.99 2007-04-30 03:47:20.996577
  28239. 30470 130 2 9724 5.99 2007-04-30 07:01:34.996577
  28240. 30471 131 1 3515 2.99 2007-04-05 23:17:21.996577
  28241. 30472 131 1 5233 4.99 2007-04-09 11:12:52.996577
  28242. 30473 131 1 5395 4.99 2007-04-09 18:11:03.996577
  28243. 30474 131 1 5610 2.99 2007-04-10 03:38:18.996577
  28244. 30475 131 2 5726 2.99 2007-04-10 09:50:34.996577
  28245. 30476 131 1 5874 3.99 2007-04-10 17:31:17.996577
  28246. 30477 131 1 7557 2.99 2007-04-27 20:46:45.996577
  28247. 30478 131 2 8071 0.99 2007-04-28 15:56:14.996577
  28248. 30479 131 1 8267 6.99 2007-04-28 23:49:28.996577
  28249. 30480 131 1 8570 8.99 2007-04-29 10:08:34.996577
  28250. 30481 131 1 9323 3.99 2007-04-30 15:50:10.996577
  28251. 30482 131 1 10179 2.99 2007-04-30 22:18:20.996577
  28252. 30483 132 1 3706 0.99 2007-04-06 08:46:27.996577
  28253. 30484 132 2 3825 2.99 2007-04-06 14:18:29.996577
  28254. 30485 132 1 4168 4.99 2007-04-07 08:05:50.996577
  28255. 30486 132 1 4534 4.99 2007-04-08 02:05:21.996577
  28256. 30487 132 1 4557 5.99 2007-04-08 03:17:41.996577
  28257. 30488 132 2 4903 0.99 2007-04-08 19:18:31.996577
  28258. 30489 132 1 5391 2.99 2007-04-09 17:57:00.996577
  28259. 30490 132 2 5684 5.99 2007-04-10 07:27:29.996577
  28260. 30491 132 1 5703 0.99 2007-04-10 08:32:41.996577
  28261. 30492 132 2 5715 1.99 2007-04-10 09:16:29.996577
  28262. 30493 132 1 6239 6.99 2007-04-11 12:49:14.996577
  28263. 30494 132 1 6978 1.99 2007-04-26 23:16:06.996577
  28264. 30495 132 2 7432 0.99 2007-04-27 16:00:06.996577
  28265. 30496 132 1 7631 1.99 2007-04-27 23:29:41.996577
  28266. 30497 133 2 4506 6.99 2007-04-08 00:50:44.996577
  28267. 30498 133 2 4566 2.99 2007-04-08 03:47:16.996577
  28268. 30499 133 1 4681 6.99 2007-04-08 09:04:29.996577
  28269. 30500 133 2 4829 2.99 2007-04-08 16:22:44.996577
  28270. 30501 133 2 5063 2.99 2007-04-09 03:05:57.996577
  28271. 30502 133 1 6157 4.99 2007-04-11 08:16:42.996577
  28272. 30503 133 1 6609 3.99 2007-04-12 06:48:07.996577
  28273. 30504 133 1 7177 2.99 2007-04-27 06:36:05.996577
  28274. 30505 133 1 7400 0.99 2007-04-27 14:45:03.996577
  28275. 30506 133 2 8389 6.99 2007-04-29 04:18:35.996577
  28276. 30507 133 2 9139 2.99 2007-04-30 08:40:18.996577
  28277. 30508 133 1 9175 0.99 2007-04-30 10:16:14.996577
  28278. 30509 133 2 9671 0.99 2007-04-30 05:02:07.996577
  28279. 30510 134 1 5315 4.99 2007-04-09 14:37:45.996577
  28280. 30511 134 2 6226 2.99 2007-04-11 12:16:37.996577
  28281. 30512 134 1 6659 0.99 2007-04-12 09:46:31.996577
  28282. 30513 134 2 7516 2.99 2007-04-27 19:23:54.996577
  28283. 30514 134 2 7965 4.99 2007-04-28 12:21:23.996577
  28284. 30515 134 2 8650 1.99 2007-04-29 13:27:30.996577
  28285. 30516 135 1 4102 0.99 2007-04-07 04:53:45.996577
  28286. 30517 135 2 5054 7.99 2007-04-09 02:29:28.996577
  28287. 30518 135 1 5541 0.99 2007-04-10 01:12:53.996577
  28288. 30519 135 1 6117 3.99 2007-04-11 06:08:04.996577
  28289. 30520 135 1 6461 3.99 2007-04-11 23:42:29.996577
  28290. 30521 135 1 6817 3.99 2007-04-12 16:48:23.996577
  28291. 30522 135 2 7297 4.99 2007-04-27 11:08:14.996577
  28292. 30523 135 1 7437 0.99 2007-04-27 16:07:44.996577
  28293. 30524 135 1 7554 7.99 2007-04-27 20:41:07.996577
  28294. 30525 135 1 7734 0.99 2007-04-28 03:37:10.996577
  28295. 30526 135 1 8315 0.99 2007-04-29 02:05:33.996577
  28296. 30527 135 2 8885 7.99 2007-04-29 23:04:52.996577
  28297. 30528 135 1 8987 6.99 2007-04-30 03:06:02.996577
  28298. 30529 135 2 10091 4.99 2007-04-30 18:51:39.996577
  28299. 30530 136 1 4927 0.99 2007-04-08 20:34:01.996577
  28300. 30531 136 1 5627 3.99 2007-04-10 04:19:38.996577
  28301. 30532 136 2 6142 3.99 2007-04-11 07:22:35.996577
  28302. 30533 136 1 6585 8.99 2007-04-12 05:19:18.996577
  28303. 30534 136 2 9319 0.99 2007-04-30 15:43:53.996577
  28304. 30535 136 2 9764 5.99 2007-04-30 08:11:24.996577
  28305. 30536 137 2 3589 4.99 2007-04-06 02:58:44.996577
  28306. 30537 137 2 3676 5.99 2007-04-06 07:39:03.996577
  28307. 30538 137 2 3874 6.99 2007-04-06 16:34:38.996577
  28308. 30539 137 1 4332 6.99 2007-04-07 16:53:52.996577
  28309. 30540 137 2 4474 3.99 2007-04-07 22:55:22.996577
  28310. 30541 137 1 5106 2.99 2007-04-09 05:08:50.996577
  28311. 30542 137 1 5443 3.99 2007-04-09 20:24:35.996577
  28312. 30543 137 1 5804 2.99 2007-04-10 13:34:57.996577
  28313. 30544 137 1 6039 6.99 2007-04-11 01:40:45.996577
  28314. 30545 137 2 6200 0.99 2007-04-11 10:45:08.996577
  28315. 30546 137 1 8028 8.99 2007-04-28 14:39:41.996577
  28316. 30547 137 1 8106 4.99 2007-04-28 17:31:12.996577
  28317. 30548 137 2 8954 2.99 2007-04-30 01:54:17.996577
  28318. 30549 137 1 9002 4.99 2007-04-30 03:30:47.996577
  28319. 30550 137 2 9200 4.99 2007-04-30 11:08:18.996577
  28320. 30551 137 2 9466 7.99 2007-04-30 21:13:02.996577
  28321. 30552 137 1 9709 4.99 2007-04-30 06:33:21.996577
  28322. 30553 137 1 9789 2.99 2007-04-30 08:58:51.996577
  28323. 30554 137 1 10175 6.99 2007-04-30 22:08:37.996577
  28324. 30555 138 2 3481 2.99 2007-04-05 21:41:33.996577
  28325. 30556 138 1 5378 0.99 2007-04-09 17:34:22.996577
  28326. 30557 138 1 5600 1.99 2007-04-10 03:24:11.996577
  28327. 30558 138 1 5679 4.99 2007-04-10 07:12:28.996577
  28328. 30559 138 1 6458 2.99 2007-04-11 23:37:18.996577
  28329. 30560 138 1 6892 0.99 2007-04-12 19:38:30.996577
  28330. 30561 138 1 7208 2.99 2007-04-27 07:44:54.996577
  28331. 30562 138 1 7754 2.99 2007-04-28 04:39:21.996577
  28332. 30563 138 2 8123 4.99 2007-04-28 17:56:49.996577
  28333. 30564 138 2 8160 3.99 2007-04-28 19:38:56.996577
  28334. 30565 138 1 8424 3.99 2007-04-29 05:34:29.996577
  28335. 30566 138 2 9259 1.99 2007-04-30 13:06:10.996577
  28336. 30567 138 1 9619 0.99 2007-04-30 02:45:28.996577
  28337. 30568 138 1 9947 9.99 2007-04-30 14:18:06.996577
  28338. 30569 138 1 10110 0.99 2007-04-30 19:34:38.996577
  28339. 30570 138 2 10190 4.99 2007-04-30 22:56:19.996577
  28340. 30571 139 2 4660 0.99 2007-04-08 08:23:13.996577
  28341. 30572 139 2 4663 2.99 2007-04-08 08:27:44.996577
  28342. 30573 139 2 5092 2.99 2007-04-09 04:26:05.996577
  28343. 30574 139 2 5265 7.99 2007-04-09 12:43:27.996577
  28344. 30575 139 1 5390 6.99 2007-04-09 17:54:48.996577
  28345. 30576 139 1 5494 6.99 2007-04-09 22:43:26.996577
  28346. 30577 139 1 6496 6.99 2007-04-12 01:26:05.996577
  28347. 30578 139 2 6740 0.99 2007-04-12 12:50:34.996577
  28348. 30579 139 1 7369 0.99 2007-04-27 13:36:24.996577
  28349. 30580 139 2 7767 5.99 2007-04-28 05:10:28.996577
  28350. 30581 139 2 9415 2.99 2007-04-30 19:16:57.996577
  28351. 30582 139 2 9920 4.99 2007-04-30 13:25:39.996577
  28352. 30583 140 1 6286 4.99 2007-04-11 15:24:01.996577
  28353. 30584 140 1 6407 9.99 2007-04-11 21:30:45.996577
  28354. 30585 140 2 6571 0.99 2007-04-12 04:20:13.996577
  28355. 30586 140 1 6918 2.99 2007-04-12 20:58:55.996577
  28356. 30587 140 1 7170 4.99 2007-04-27 06:26:52.996577
  28357. 30588 140 1 9094 4.99 2007-04-30 07:03:36.996577
  28358. 30589 140 1 9404 0.99 2007-04-30 18:50:01.996577
  28359. 30590 141 1 4057 1.99 2007-04-07 02:28:46.996577
  28360. 30591 141 2 4297 0.99 2007-04-07 14:52:35.996577
  28361. 30592 141 1 4656 5.99 2007-04-08 08:18:36.996577
  28362. 30593 141 2 5062 2.99 2007-04-09 03:05:15.996577
  28363. 30594 141 1 5769 0.99 2007-04-10 11:46:24.996577
  28364. 30595 141 2 6979 4.99 2007-04-26 23:18:19.996577
  28365. 30596 141 2 7878 2.99 2007-04-28 08:55:36.996577
  28366. 30597 141 1 8434 4.99 2007-04-29 05:48:40.996577
  28367. 30598 141 2 9073 7.99 2007-04-30 06:18:22.996577
  28368. 30599 141 1 9584 4.99 2007-04-30 01:34:14.996577
  28369. 30600 141 2 9683 2.99 2007-04-30 05:15:39.996577
  28370. 30601 142 2 3492 2.99 2007-04-05 22:13:03.996577
  28371. 30602 142 2 4497 4.99 2007-04-08 00:19:58.996577
  28372. 30603 142 1 4531 4.99 2007-04-08 01:56:25.996577
  28373. 30604 142 1 6522 0.99 2007-04-12 02:40:24.996577
  28374. 30605 142 1 7764 2.99 2007-04-28 05:08:31.996577
  28375. 30606 142 2 8513 2.99 2007-04-29 08:21:25.996577
  28376. 30607 142 2 8623 4.99 2007-04-29 12:23:37.996577
  28377. 30608 142 1 9020 7.99 2007-04-30 03:59:53.996577
  28378. 30609 142 1 9131 2.99 2007-04-30 08:24:23.996577
  28379. 30610 142 1 9419 5.99 2007-04-30 19:33:25.996577
  28380. 30611 143 1 4031 7.99 2007-04-07 01:00:33.996577
  28381. 30612 143 2 4221 0.99 2007-04-07 10:47:23.996577
  28382. 30613 143 1 4585 7.99 2007-04-08 04:40:24.996577
  28383. 30614 143 2 6076 6.99 2007-04-11 03:33:56.996577
  28384. 30615 143 2 6207 4.99 2007-04-11 11:02:50.996577
  28385. 30616 143 1 8312 0.99 2007-04-29 02:01:04.996577
  28386. 30617 143 1 8335 0.99 2007-04-29 02:46:51.996577
  28387. 30618 143 2 9889 1.99 2007-04-30 12:31:16.996577
  28388. 30619 143 1 10118 0.99 2007-04-30 19:44:57.996577
  28389. 30620 144 1 4726 6.99 2007-04-08 11:19:20.996577
  28390. 30621 144 2 4818 3.99 2007-04-08 15:46:48.996577
  28391. 30622 144 2 5049 0.99 2007-04-09 02:22:38.996577
  28392. 30623 144 2 5374 8.99 2007-04-09 17:20:34.996577
  28393. 30624 144 2 5408 7.99 2007-04-09 18:45:17.996577
  28394. 30625 144 2 5526 7.99 2007-04-10 00:32:29.996577
  28395. 30626 144 2 6614 7.99 2007-04-12 07:02:15.996577
  28396. 30627 144 2 6791 9.99 2007-04-12 15:03:33.996577
  28397. 30628 144 2 7378 5.99 2007-04-27 13:59:59.996577
  28398. 30629 144 2 7566 2.99 2007-04-27 21:03:11.996577
  28399. 30630 144 1 7830 0.99 2007-04-28 07:12:15.996577
  28400. 30631 144 1 7858 3.99 2007-04-28 08:18:44.996577
  28401. 30632 144 2 8459 5.99 2007-04-29 06:34:06.996577
  28402. 30633 144 1 8983 0.99 2007-04-30 02:59:34.996577
  28403. 30634 144 1 9034 7.99 2007-04-30 04:39:24.996577
  28404. 30635 144 1 9098 3.99 2007-04-30 07:12:47.996577
  28405. 30636 144 2 9174 4.99 2007-04-30 10:10:36.996577
  28406. 30637 144 2 9714 0.99 2007-04-30 06:43:58.996577
  28407. 30638 145 1 3647 5.99 2007-04-06 05:57:43.996577
  28408. 30639 145 2 4201 8.99 2007-04-07 09:48:17.996577
  28409. 30640 145 1 4364 4.99 2007-04-07 18:15:17.996577
  28410. 30641 145 2 4405 6.99 2007-04-07 20:01:42.996577
  28411. 30642 145 1 4470 2.99 2007-04-07 22:49:23.996577
  28412. 30643 145 2 4817 2.99 2007-04-08 15:45:57.996577
  28413. 30644 145 2 6056 2.99 2007-04-11 02:29:53.996577
  28414. 30645 145 1 6339 1.99 2007-04-11 18:13:58.996577
  28415. 30646 145 2 6378 0.99 2007-04-11 20:13:49.996577
  28416. 30647 145 2 7061 2.99 2007-04-27 02:19:36.996577
  28417. 30648 145 1 7529 7.99 2007-04-27 19:46:34.996577
  28418. 30649 145 2 7954 0.99 2007-04-28 11:53:31.996577
  28419. 30650 145 1 8380 0.99 2007-04-29 03:59:55.996577
  28420. 30651 145 1 9156 2.99 2007-04-30 09:33:21.996577
  28421. 30652 145 2 9576 0.99 2007-04-30 01:21:25.996577
  28422. 30653 146 1 4849 6.99 2007-04-08 17:03:00.996577
  28423. 30654 146 2 5000 4.99 2007-04-08 23:44:39.996577
  28424. 30655 146 1 6102 7.99 2007-04-11 05:21:35.996577
  28425. 30656 146 2 6184 6.99 2007-04-11 09:47:47.996577
  28426. 30657 146 1 6327 4.99 2007-04-11 17:35:55.996577
  28427. 30658 146 1 6990 0.99 2007-04-26 23:31:12.996577
  28428. 30659 146 2 8246 3.99 2007-04-28 23:07:07.996577
  28429. 30660 147 2 3919 7.99 2007-04-06 18:54:47.996577
  28430. 30661 147 2 3956 2.99 2007-04-06 20:30:17.996577
  28431. 30662 147 2 4792 0.99 2007-04-08 14:58:04.996577
  28432. 30663 147 2 5044 0.99 2007-04-09 01:58:51.996577
  28433. 30664 147 1 5567 2.99 2007-04-10 02:05:12.996577
  28434. 30665 147 1 5844 0.99 2007-04-10 15:43:09.996577
  28435. 30666 147 2 6343 0.99 2007-04-11 18:20:01.996577
  28436. 30667 147 2 6469 4.99 2007-04-11 23:57:53.996577
  28437. 30668 147 2 6753 2.99 2007-04-12 13:24:08.996577
  28438. 30669 147 2 7044 0.99 2007-04-27 01:55:55.996577
  28439. 30670 147 1 7723 0.99 2007-04-28 03:14:03.996577
  28440. 30671 147 1 8893 2.99 2007-04-29 23:16:45.996577
  28441. 30672 147 2 9772 0.99 2007-04-30 08:24:33.996577
  28442. 30673 148 1 3653 0.99 2007-04-06 06:13:39.996577
  28443. 30674 148 1 4080 0.99 2007-04-07 03:38:20.996577
  28444. 30675 148 1 4746 2.99 2007-04-08 12:16:21.996577
  28445. 30676 148 1 4950 2.99 2007-04-08 21:26:33.996577
  28446. 30677 148 1 5034 4.99 2007-04-09 01:16:41.996577
  28447. 30678 148 1 5372 4.99 2007-04-09 17:17:05.996577
  28448. 30679 148 1 6169 1.99 2007-04-11 08:54:22.996577
  28449. 30680 148 1 6640 8.99 2007-04-12 08:55:45.996577
  28450. 30681 148 2 6793 10.99 2007-04-12 15:06:21.996577
  28451. 30682 148 1 7656 0.99 2007-04-28 00:35:45.996577
  28452. 30683 148 2 7693 4.99 2007-04-28 01:59:48.996577
  28453. 30684 148 1 7865 9.99 2007-04-28 08:35:30.996577
  28454. 30685 148 2 8111 4.99 2007-04-28 17:38:29.996577
  28455. 30686 148 2 8331 3.99 2007-04-29 02:41:55.996577
  28456. 30687 148 1 8394 4.99 2007-04-29 04:30:40.996577
  28457. 30688 148 2 8578 4.99 2007-04-29 10:26:40.996577
  28458. 30689 148 2 8626 4.99 2007-04-29 12:31:46.996577
  28459. 30690 148 1 9023 5.99 2007-04-30 04:05:06.996577
  28460. 30691 148 1 9106 2.99 2007-04-30 07:21:00.996577
  28461. 30692 148 1 9530 1.99 2007-04-30 23:37:32.996577
  28462. 30693 148 1 9594 4.99 2007-04-30 01:52:18.996577
  28463. 30694 148 2 10067 4.99 2007-04-30 18:06:24.996577
  28464. 30695 149 1 3894 2.99 2007-04-06 17:30:05.996577
  28465. 30696 149 1 3939 6.99 2007-04-06 19:44:58.996577
  28466. 30697 149 1 4766 3.99 2007-04-08 13:44:30.996577
  28467. 30698 149 1 4837 0.99 2007-04-08 16:37:38.996577
  28468. 30699 149 1 5091 2.99 2007-04-09 04:21:20.996577
  28469. 30700 149 1 5298 10.99 2007-04-09 14:04:43.996577
  28470. 30701 149 1 6356 4.99 2007-04-11 19:26:14.996577
  28471. 30702 149 2 6940 5.99 2007-04-26 21:47:01.996577
  28472. 30703 149 2 7559 4.99 2007-04-27 20:48:29.996577
  28473. 30704 149 1 7989 6.99 2007-04-28 13:07:31.996577
  28474. 30705 149 2 10154 2.99 2007-04-30 20:59:15.996577
  28475. 30706 150 1 4271 6.99 2007-04-07 13:07:18.996577
  28476. 30707 150 1 6633 2.99 2007-04-12 08:04:08.996577
  28477. 30708 150 2 7690 4.99 2007-04-28 01:54:47.996577
  28478. 30709 150 1 9121 2.99 2007-04-30 08:04:52.996577
  28479. 30710 151 1 4376 2.99 2007-04-07 18:52:59.996577
  28480. 30711 151 2 6720 0.99 2007-04-12 12:09:42.996577
  28481. 30712 151 2 6768 3.99 2007-04-12 14:16:17.996577
  28482. 30713 151 2 6854 0.99 2007-04-12 18:07:23.996577
  28483. 30714 151 1 7189 0.99 2007-04-27 07:03:28.996577
  28484. 30715 151 2 7332 3.99 2007-04-27 12:27:23.996577
  28485. 30716 151 1 9253 4.99 2007-04-30 12:48:38.996577
  28486. 30717 151 1 9890 4.99 2007-04-30 12:33:10.996577
  28487. 30718 151 1 9969 2.99 2007-04-30 15:06:38.996577
  28488. 30719 151 1 10078 2.99 2007-04-30 18:30:28.996577
  28489. 30720 152 2 3577 2.99 2007-04-06 02:09:02.996577
  28490. 30721 152 1 3786 7.99 2007-04-06 12:29:07.996577
  28491. 30722 152 1 4974 4.99 2007-04-08 22:29:02.996577
  28492. 30723 152 1 6273 0.99 2007-04-11 14:37:07.996577
  28493. 30724 152 1 6612 2.99 2007-04-12 06:56:59.996577
  28494. 30725 152 1 9010 5.99 2007-04-30 03:40:30.996577
  28495. 30726 153 1 3795 0.99 2007-04-06 13:06:07.996577
  28496. 30727 153 1 3949 0.99 2007-04-06 20:15:02.996577
  28497. 30728 153 1 4194 5.99 2007-04-07 09:28:05.996577
  28498. 30729 153 2 4670 5.99 2007-04-08 08:42:44.996577
  28499. 30730 153 2 5676 0.99 2007-04-10 07:06:58.996577
  28500. 30731 153 2 5771 0.99 2007-04-10 11:55:11.996577
  28501. 30732 153 2 6818 9.99 2007-04-12 16:49:20.996577
  28502. 30733 153 2 7824 7.99 2007-04-28 07:03:13.996577
  28503. 30734 153 2 9936 0.99 2007-04-30 13:56:07.996577
  28504. 30735 153 2 10015 4.99 2007-04-30 16:39:43.996577
  28505. 30736 154 2 3806 7.99 2007-04-06 13:38:07.996577
  28506. 30737 154 2 3912 0.99 2007-04-06 18:38:29.996577
  28507. 30738 154 2 4132 4.99 2007-04-07 06:34:33.996577
  28508. 30739 154 1 4252 2.99 2007-04-07 12:41:31.996577
  28509. 30740 154 1 4850 5.99 2007-04-08 17:07:57.996577
  28510. 30741 154 1 5101 0.99 2007-04-09 04:49:55.996577
  28511. 30742 154 2 5760 2.99 2007-04-10 11:13:14.996577
  28512. 30743 154 1 6048 0.99 2007-04-11 02:00:49.996577
  28513. 30744 154 2 6993 4.99 2007-04-26 23:33:50.996577
  28514. 30745 154 1 7055 4.99 2007-04-27 02:14:08.996577
  28515. 30746 154 1 7156 4.99 2007-04-27 05:48:00.996577
  28516. 30747 154 2 7900 1.99 2007-04-28 09:39:59.996577
  28517. 30748 154 2 8334 7.99 2007-04-29 02:46:51.996577
  28518. 30749 154 2 9286 2.99 2007-04-30 14:00:54.996577
  28519. 30750 155 1 5128 1.99 2007-04-09 05:54:20.996577
  28520. 30751 155 1 6066 5.99 2007-04-11 03:01:08.996577
  28521. 30752 155 1 6085 4.99 2007-04-11 03:53:02.996577
  28522. 30753 155 2 6087 4.99 2007-04-11 03:57:48.996577
  28523. 30754 155 1 6443 2.99 2007-04-11 23:04:17.996577
  28524. 30755 155 1 7077 3.99 2007-04-27 02:41:28.996577
  28525. 30756 155 1 7492 2.99 2007-04-27 18:22:44.996577
  28526. 30757 155 2 7730 5.99 2007-04-28 03:28:14.996577
  28527. 30758 155 2 9781 7.99 2007-04-30 08:41:28.996577
  28528. 30759 155 1 10098 0.99 2007-04-30 19:09:43.996577
  28529. 30760 156 2 4394 2.99 2007-04-07 19:41:11.996577
  28530. 30761 156 2 5534 4.99 2007-04-10 00:55:15.996577
  28531. 30762 156 1 5828 2.99 2007-04-10 14:55:51.996577
  28532. 30763 156 2 5908 0.99 2007-04-10 19:12:40.996577
  28533. 30764 156 2 6540 6.99 2007-04-12 03:19:39.996577
  28534. 30765 156 2 7389 2.99 2007-04-27 14:24:41.996577
  28535. 30766 156 2 7822 4.99 2007-04-28 07:00:11.996577
  28536. 30767 156 1 9409 6.99 2007-04-30 19:02:19.996577
  28537. 30768 156 1 9696 0.99 2007-04-30 05:42:12.996577
  28538. 30769 157 1 3739 0.99 2007-04-06 10:22:44.996577
  28539. 30770 157 1 4253 5.99 2007-04-07 12:41:39.996577
  28540. 30771 157 2 4435 3.99 2007-04-07 21:19:30.996577
  28541. 30772 157 1 4919 0.99 2007-04-08 20:10:20.996577
  28542. 30773 157 1 5862 4.99 2007-04-10 16:49:14.996577
  28543. 30774 157 1 7110 2.99 2007-04-27 03:59:14.996577
  28544. 30775 157 2 7195 2.99 2007-04-27 07:15:27.996577
  28545. 30776 157 2 7499 4.99 2007-04-27 18:38:54.996577
  28546. 30777 157 2 8163 0.99 2007-04-28 19:40:14.996577
  28547. 30778 157 2 8337 0.99 2007-04-29 03:00:21.996577
  28548. 30779 157 2 8347 0.99 2007-04-29 03:17:51.996577
  28549. 30780 157 2 8576 4.99 2007-04-29 10:23:27.996577
  28550. 30781 157 1 8707 0.99 2007-04-29 15:50:24.996577
  28551. 30782 157 1 8827 4.99 2007-04-29 20:59:50.996577
  28552. 30783 157 2 9237 2.99 2007-04-30 12:16:43.996577
  28553. 30784 157 2 9264 4.99 2007-04-30 13:20:02.996577
  28554. 30785 157 1 9958 2.99 2007-04-30 14:32:22.996577
  28555. 30786 157 1 10203 4.99 2007-04-30 23:13:53.996577
  28556. 30787 158 1 4117 8.99 2007-04-07 05:26:40.996577
  28557. 30788 158 1 5672 2.99 2007-04-10 06:48:04.996577
  28558. 30789 158 1 5988 4.99 2007-04-10 23:24:04.996577
  28559. 30790 158 1 6416 2.99 2007-04-11 21:57:40.996577
  28560. 30791 158 2 6901 5.99 2007-04-12 20:14:59.996577
  28561. 30792 158 2 7159 2.99 2007-04-27 05:52:26.996577
  28562. 30793 158 1 7732 0.99 2007-04-28 03:31:58.996577
  28563. 30794 158 2 7952 2.99 2007-04-28 11:52:15.996577
  28564. 30795 158 1 8750 2.99 2007-04-29 17:42:47.996577
  28565. 30796 158 1 8957 1.99 2007-04-30 02:02:36.996577
  28566. 30797 158 1 9393 2.99 2007-04-30 18:33:14.996577
  28567. 30798 158 1 9713 1.99 2007-04-30 06:41:54.996577
  28568. 30799 158 1 9801 2.99 2007-04-30 09:31:39.996577
  28569. 30800 159 2 3914 5.99 2007-04-06 18:39:36.996577
  28570. 30801 159 2 4273 4.99 2007-04-07 13:08:48.996577
  28571. 30802 159 2 5656 0.99 2007-04-10 05:59:33.996577
  28572. 30803 159 2 6885 4.99 2007-04-12 19:24:30.996577
  28573. 30804 159 2 8212 2.99 2007-04-28 22:05:49.996577
  28574. 30805 159 1 8470 0.99 2007-04-29 06:57:16.996577
  28575. 30806 159 2 9022 3.99 2007-04-30 04:03:11.996577
  28576. 30807 159 2 9132 0.99 2007-04-30 08:24:26.996577
  28577. 30808 159 1 9559 7.99 2007-04-30 00:44:19.996577
  28578. 30809 159 1 9917 4.99 2007-04-30 13:23:37.996577
  28579. 30810 160 1 4842 0.99 2007-04-08 16:49:56.996577
  28580. 30811 160 1 4908 5.99 2007-04-08 19:34:10.996577
  28581. 30812 160 2 6364 6.99 2007-04-11 19:43:14.996577
  28582. 30813 160 2 6448 1.99 2007-04-11 23:14:25.996577
  28583. 30814 160 2 7500 0.99 2007-04-27 18:44:29.996577
  28584. 30815 160 1 8184 4.99 2007-04-28 20:51:01.996577
  28585. 30816 160 1 9681 0.99 2007-04-30 05:10:35.996577
  28586. 30817 160 2 9758 2.99 2007-04-30 07:54:04.996577
  28587. 30818 160 2 10089 2.99 2007-04-30 18:45:35.996577
  28588. 30819 161 1 3948 4.99 2007-04-06 20:14:19.996577
  28589. 30820 161 2 4187 0.99 2007-04-07 09:09:57.996577
  28590. 30821 161 2 4248 6.99 2007-04-07 12:27:46.996577
  28591. 30822 161 1 4490 2.99 2007-04-07 23:54:58.996577
  28592. 30823 161 2 5349 6.99 2007-04-09 16:04:01.996577
  28593. 30824 161 2 6873 4.99 2007-04-12 18:49:16.996577
  28594. 30825 161 1 7003 2.99 2007-04-27 00:00:32.996577
  28595. 30826 161 2 8774 4.99 2007-04-29 18:33:30.996577
  28596. 30827 161 1 9135 4.99 2007-04-30 08:35:19.996577
  28597. 30828 161 2 9421 0.99 2007-04-30 19:36:58.996577
  28598. 30829 162 2 4982 2.99 2007-04-08 22:59:18.996577
  28599. 30830 162 2 8478 4.99 2007-04-29 07:09:02.996577
  28600. 30831 162 1 8582 4.99 2007-04-29 10:31:53.996577
  28601. 30832 162 2 9167 4.99 2007-04-30 09:59:03.996577
  28602. 30833 162 1 9726 7.99 2007-04-30 07:05:33.996577
  28603. 30834 162 1 9775 0.99 2007-04-30 08:28:26.996577
  28604. 30835 162 2 10093 5.99 2007-04-30 18:58:58.996577
  28605. 30836 163 2 3915 3.99 2007-04-06 18:45:12.996577
  28606. 30837 163 1 4126 1.99 2007-04-07 05:52:37.996577
  28607. 30838 163 2 5549 4.99 2007-04-10 01:26:55.996577
  28608. 30839 163 1 5574 10.99 2007-04-10 02:23:04.996577
  28609. 30840 163 1 6109 0.99 2007-04-11 05:49:23.996577
  28610. 30841 163 1 6831 1.99 2007-04-12 17:12:30.996577
  28611. 30842 163 1 7303 1.99 2007-04-27 11:23:05.996577
  28612. 30843 163 1 7403 2.99 2007-04-27 14:50:35.996577
  28613. 30844 163 2 8040 0.99 2007-04-28 15:08:09.996577
  28614. 30845 163 2 8063 4.99 2007-04-28 15:43:37.996577
  28615. 30846 163 2 8403 4.99 2007-04-29 04:55:05.996577
  28616. 30847 164 2 4548 4.99 2007-04-08 02:50:20.996577
  28617. 30848 164 1 5895 3.99 2007-04-10 18:41:45.996577
  28618. 30849 164 1 6393 0.99 2007-04-11 20:56:38.996577
  28619. 30850 164 2 6558 2.99 2007-04-12 03:44:33.996577
  28620. 30851 164 1 6637 4.99 2007-04-12 08:26:05.996577
  28621. 30852 164 2 6702 0.99 2007-04-12 11:16:29.996577
  28622. 30853 164 1 6980 3.99 2007-04-26 23:18:56.996577
  28623. 30854 164 1 7227 6.99 2007-04-27 08:22:09.996577
  28624. 30855 164 2 8135 3.99 2007-04-28 18:31:51.996577
  28625. 30856 164 2 8824 4.99 2007-04-29 20:51:24.996577
  28626. 30857 165 2 3531 4.99 2007-04-05 23:52:34.996577
  28627. 30858 165 1 3784 5.99 2007-04-06 12:26:22.996577
  28628. 30859 165 2 4304 0.99 2007-04-07 15:29:45.996577
  28629. 30860 165 2 4945 2.99 2007-04-08 21:13:28.996577
  28630. 30861 165 1 5472 4.99 2007-04-09 21:45:06.996577
  28631. 30862 165 2 5658 4.99 2007-04-10 06:02:34.996577
  28632. 30863 165 2 5901 6.99 2007-04-10 18:50:38.996577
  28633. 30864 165 1 5973 0.99 2007-04-10 22:37:43.996577
  28634. 30865 165 1 7074 2.99 2007-04-27 02:34:50.996577
  28635. 30866 165 1 8608 0.99 2007-04-29 11:47:18.996577
  28636. 30867 165 2 9182 7.99 2007-04-30 10:35:24.996577
  28637. 30868 165 2 9685 4.99 2007-04-30 05:17:44.996577
  28638. 30869 166 2 3606 2.99 2007-04-06 03:56:28.996577
  28639. 30870 166 1 3642 2.99 2007-04-06 05:46:46.996577
  28640. 30871 166 2 4389 6.99 2007-04-07 19:27:24.996577
  28641. 30872 166 1 4658 0.99 2007-04-08 08:19:37.996577
  28642. 30873 166 1 5184 4.99 2007-04-09 08:43:00.996577
  28643. 30874 166 2 5380 4.99 2007-04-09 17:37:10.996577
  28644. 30875 166 1 5646 2.99 2007-04-10 05:36:35.996577
  28645. 30876 166 1 5855 7.99 2007-04-10 16:22:32.996577
  28646. 30877 166 2 6237 0.99 2007-04-11 12:47:38.996577
  28647. 30878 166 2 6882 2.99 2007-04-12 19:19:05.996577
  28648. 30879 166 1 7581 2.99 2007-04-27 21:43:01.996577
  28649. 30880 166 1 8052 5.99 2007-04-28 15:25:57.996577
  28650. 30881 166 1 9009 8.99 2007-04-30 03:40:27.996577
  28651. 30882 167 2 3518 4.99 2007-04-05 23:24:29.996577
  28652. 30883 167 2 4493 0.99 2007-04-08 00:08:50.996577
  28653. 30884 167 2 5131 0.99 2007-04-09 06:03:29.996577
  28654. 30885 167 1 5178 4.99 2007-04-09 08:28:18.996577
  28655. 30886 167 1 5191 0.99 2007-04-09 08:55:14.996577
  28656. 30887 167 1 5413 4.99 2007-04-09 18:57:08.996577
  28657. 30888 167 1 5781 2.99 2007-04-10 12:17:56.996577
  28658. 30889 167 2 6269 4.99 2007-04-11 14:27:09.996577
  28659. 30890 167 1 7608 4.99 2007-04-27 22:37:02.996577
  28660. 30891 167 1 8092 2.99 2007-04-28 16:56:33.996577
  28661. 30892 167 2 8227 4.99 2007-04-28 22:30:48.996577
  28662. 30893 167 1 8318 2.99 2007-04-29 02:12:56.996577
  28663. 30894 167 1 8793 0.99 2007-04-29 19:25:48.996577
  28664. 30895 167 2 8864 0.99 2007-04-29 22:20:38.996577
  28665. 30896 167 2 9563 4.99 2007-04-30 00:57:05.996577
  28666. 30897 168 1 3530 2.99 2007-04-05 23:51:11.996577
  28667. 30898 168 1 4308 5.99 2007-04-07 15:57:42.996577
  28668. 30899 168 2 4363 5.99 2007-04-07 18:11:54.996577
  28669. 30900 168 2 4953 2.99 2007-04-08 21:38:14.996577
  28670. 30901 168 1 5459 0.99 2007-04-09 21:12:22.996577
  28671. 30902 168 1 5907 5.99 2007-04-10 19:10:07.996577
  28672. 30903 168 1 6334 5.99 2007-04-11 17:49:10.996577
  28673. 30904 168 2 6444 0.99 2007-04-11 23:04:28.996577
  28674. 30905 168 2 6809 3.99 2007-04-12 16:20:20.996577
  28675. 30906 168 2 8352 1.99 2007-04-29 03:20:27.996577
  28676. 30907 168 1 8527 1.99 2007-04-29 08:49:26.996577
  28677. 30908 168 2 8659 6.99 2007-04-29 13:54:57.996577
  28678. 30909 168 2 8883 1.99 2007-04-29 22:53:14.996577
  28679. 30910 168 2 9197 4.99 2007-04-30 11:00:02.996577
  28680. 30911 168 1 9418 4.99 2007-04-30 19:29:18.996577
  28681. 30912 168 2 9857 6.99 2007-04-30 11:29:19.996577
  28682. 30913 168 2 9899 4.99 2007-04-30 12:41:02.996577
  28683. 30914 169 1 3493 8.99 2007-04-05 22:14:45.996577
  28684. 30915 169 1 4687 4.99 2007-04-08 09:22:45.996577
  28685. 30916 169 1 5066 2.99 2007-04-09 03:17:16.996577
  28686. 30917 169 1 6143 3.99 2007-04-11 07:31:03.996577
  28687. 30918 169 2 6453 4.99 2007-04-11 23:28:19.996577
  28688. 30919 169 2 6488 9.99 2007-04-12 00:48:35.996577
  28689. 30920 169 2 7187 6.99 2007-04-27 06:56:24.996577
  28690. 30921 169 1 7597 0.99 2007-04-27 22:04:15.996577
  28691. 30922 169 2 8558 4.99 2007-04-29 09:53:15.996577
  28692. 30923 169 2 9203 0.99 2007-04-30 11:12:06.996577
  28693. 30924 170 2 3651 4.99 2007-04-06 06:08:57.996577
  28694. 30925 170 1 3749 4.99 2007-04-06 10:46:29.996577
  28695. 30926 170 2 4113 4.99 2007-04-07 05:18:18.996577
  28696. 30927 170 2 4468 0.99 2007-04-07 22:46:25.996577
  28697. 30928 170 2 5075 0.99 2007-04-09 03:40:33.996577
  28698. 30929 170 1 5573 4.99 2007-04-10 02:19:13.996577
  28699. 30930 170 2 5685 7.99 2007-04-10 07:30:04.996577
  28700. 30931 170 2 5808 2.99 2007-04-10 13:45:59.996577
  28701. 30932 170 1 7999 7.99 2007-04-28 13:38:40.996577
  28702. 30933 170 2 9517 2.99 2007-04-30 23:09:49.996577
  28703. 30934 170 1 9817 2.99 2007-04-30 10:01:57.996577
  28704. 30935 170 1 10102 9.99 2007-04-30 19:17:36.996577
  28705. 30936 171 1 3621 0.99 2007-04-06 04:32:21.996577
  28706. 30937 171 2 3745 2.99 2007-04-06 10:38:58.996577
  28707. 30938 171 1 5660 5.99 2007-04-10 06:14:38.996577
  28708. 30939 171 1 5986 4.99 2007-04-10 23:23:22.996577
  28709. 30940 171 1 6766 2.99 2007-04-12 14:00:27.996577
  28710. 30941 171 2 6774 0.99 2007-04-12 14:24:34.996577
  28711. 30942 171 1 7037 3.99 2007-04-27 01:35:10.996577
  28712. 30943 171 2 9066 4.99 2007-04-30 05:57:20.996577
  28713. 30944 171 2 9084 5.99 2007-04-30 06:42:55.996577
  28714. 30945 172 1 4820 5.99 2007-04-08 15:53:49.996577
  28715. 30946 172 1 4821 4.99 2007-04-08 15:56:34.996577
  28716. 30947 172 2 4878 6.99 2007-04-08 18:02:15.996577
  28717. 30948 172 2 6246 7.99 2007-04-11 13:26:17.996577
  28718. 30949 172 1 6380 0.99 2007-04-11 20:24:06.996577
  28719. 30950 172 1 6875 5.99 2007-04-12 18:51:31.996577
  28720. 30951 172 1 7122 6.99 2007-04-27 04:31:44.996577
  28721. 30952 172 1 7135 2.99 2007-04-27 05:02:58.996577
  28722. 30953 172 1 7194 3.99 2007-04-27 07:08:24.996577
  28723. 30954 172 2 7261 2.99 2007-04-27 09:43:27.996577
  28724. 30955 172 1 7638 4.99 2007-04-27 23:41:52.996577
  28725. 30956 172 2 8944 6.99 2007-04-30 01:40:10.996577
  28726. 30957 172 1 9118 2.99 2007-04-30 07:52:44.996577
  28727. 30958 172 2 9218 5.99 2007-04-30 11:43:01.996577
  28728. 30959 173 2 3717 0.99 2007-04-06 09:22:00.996577
  28729. 30960 173 1 4904 7.99 2007-04-08 19:21:53.996577
  28730. 30961 173 2 5430 2.99 2007-04-09 19:48:20.996577
  28731. 30962 173 2 5485 4.99 2007-04-09 22:23:51.996577
  28732. 30963 173 1 5488 2.99 2007-04-09 22:30:32.996577
  28733. 30964 173 2 5531 2.99 2007-04-10 00:42:25.996577
  28734. 30965 173 1 5615 3.99 2007-04-10 03:47:17.996577
  28735. 30966 173 2 6021 4.99 2007-04-11 00:38:44.996577
  28736. 30967 173 1 7644 0.99 2007-04-27 23:55:59.996577
  28737. 30968 173 2 8299 2.99 2007-04-29 01:24:26.996577
  28738. 30969 173 2 8808 4.99 2007-04-29 20:07:33.996577
  28739. 30970 173 2 8829 8.99 2007-04-29 21:02:00.996577
  28740. 30971 173 1 9097 4.99 2007-04-30 07:09:01.996577
  28741. 30972 173 2 9512 2.99 2007-04-30 22:54:56.996577
  28742. 30973 174 2 4803 1.99 2007-04-08 15:25:00.996577
  28743. 30974 174 2 5414 4.99 2007-04-09 18:58:02.996577
  28744. 30975 174 1 6909 4.99 2007-04-12 20:37:56.996577
  28745. 30976 174 2 8348 7.99 2007-04-29 03:17:52.996577
  28746. 30977 174 1 8754 4.99 2007-04-29 17:46:56.996577
  28747. 30978 174 1 9301 4.99 2007-04-30 15:02:55.996577
  28748. 30979 174 1 9847 2.99 2007-04-30 11:02:09.996577
  28749. 30980 175 1 3625 4.99 2007-04-06 04:41:18.996577
  28750. 30981 175 2 4167 5.99 2007-04-07 08:05:34.996577
  28751. 30982 175 1 5232 1.99 2007-04-09 11:03:34.996577
  28752. 30983 175 2 6865 7.99 2007-04-12 18:31:06.996577
  28753. 30984 175 1 7448 2.99 2007-04-27 16:34:56.996577
  28754. 30985 175 1 7771 0.99 2007-04-28 05:20:38.996577
  28755. 30986 175 1 8244 2.99 2007-04-28 23:04:00.996577
  28756. 30987 175 1 8264 4.99 2007-04-28 23:47:16.996577
  28757. 30988 175 1 8440 3.99 2007-04-29 05:59:52.996577
  28758. 30989 175 1 8817 4.99 2007-04-29 20:37:34.996577
  28759. 30990 175 2 9941 4.99 2007-04-30 13:59:51.996577
  28760. 30991 176 1 3643 4.99 2007-04-06 05:48:34.996577
  28761. 30992 176 2 3931 6.99 2007-04-06 19:32:12.996577
  28762. 30993 176 2 4121 3.99 2007-04-07 05:42:16.996577
  28763. 30994 176 1 6035 2.99 2007-04-11 01:30:11.996577
  28764. 30995 176 1 6354 6.99 2007-04-11 19:22:53.996577
  28765. 30996 176 1 7017 4.99 2007-04-27 00:44:29.996577
  28766. 30997 176 1 7025 2.99 2007-04-27 01:08:55.996577
  28767. 30998 176 1 7210 2.99 2007-04-27 07:47:31.996577
  28768. 30999 176 2 7521 2.99 2007-04-27 19:33:08.996577
  28769. 31000 176 1 7751 5.99 2007-04-28 04:24:39.996577
  28770. 31001 176 1 8279 2.99 2007-04-29 00:12:03.996577
  28771. 31002 176 2 9145 6.99 2007-04-30 08:56:21.996577
  28772. 31003 177 1 4760 0.99 2007-04-08 13:16:33.996577
  28773. 31004 177 2 6217 9.99 2007-04-11 11:42:11.996577
  28774. 31005 177 1 6284 2.99 2007-04-11 15:20:05.996577
  28775. 31006 177 1 7493 3.99 2007-04-27 18:24:12.996577
  28776. 31007 177 2 7674 1.99 2007-04-28 01:22:56.996577
  28777. 31008 177 1 8139 0.99 2007-04-28 18:44:56.996577
  28778. 31009 177 2 9190 1.99 2007-04-30 10:52:43.996577
  28779. 31010 178 1 4915 2.99 2007-04-08 19:59:48.996577
  28780. 31011 178 1 5015 2.99 2007-04-09 00:22:50.996577
  28781. 31012 178 1 5057 4.99 2007-04-09 02:48:55.996577
  28782. 31013 178 1 5094 10.99 2007-04-09 04:28:13.996577
  28783. 31014 178 1 5984 2.99 2007-04-10 23:13:02.996577
  28784. 31015 178 2 6347 4.99 2007-04-11 18:47:19.996577
  28785. 31016 178 1 6554 5.99 2007-04-12 03:35:52.996577
  28786. 31017 178 1 6566 6.99 2007-04-12 04:11:19.996577
  28787. 31018 178 2 6606 2.99 2007-04-12 06:32:06.996577
  28788. 31019 178 1 7959 4.99 2007-04-28 12:11:46.996577
  28789. 31020 178 2 8069 0.99 2007-04-28 15:52:12.996577
  28790. 31021 178 1 8287 3.99 2007-04-29 00:32:24.996577
  28791. 31022 178 2 8388 5.99 2007-04-29 04:16:41.996577
  28792. 31023 178 2 8696 4.99 2007-04-29 15:13:44.996577
  28793. 31024 178 2 9004 4.99 2007-04-30 03:32:53.996577
  28794. 31025 178 1 9311 7.99 2007-04-30 15:26:57.996577
  28795. 31026 178 2 9879 4.99 2007-04-30 12:13:58.996577
  28796. 31027 178 2 10125 0.99 2007-04-30 20:01:29.996577
  28797. 31028 179 1 3671 6.99 2007-04-06 07:29:55.996577
  28798. 31029 179 1 3844 0.99 2007-04-06 15:06:24.996577
  28799. 31030 179 1 4618 2.99 2007-04-08 06:28:46.996577
  28800. 31031 179 2 6071 6.99 2007-04-11 03:18:29.996577
  28801. 31032 179 1 6616 7.99 2007-04-12 07:05:56.996577
  28802. 31033 179 1 6806 2.99 2007-04-12 16:00:09.996577
  28803. 31034 179 1 7028 6.99 2007-04-27 01:22:51.996577
  28804. 31035 179 1 7054 4.99 2007-04-27 02:11:54.996577
  28805. 31036 179 1 7609 4.99 2007-04-27 22:39:26.996577
  28806. 31037 179 1 8573 2.99 2007-04-29 10:19:51.996577
  28807. 31038 179 1 8731 8.99 2007-04-29 16:52:23.996577
  28808. 31039 179 2 9491 4.99 2007-04-30 22:13:49.996577
  28809. 31040 179 2 9893 0.99 2007-04-30 12:35:47.996577
  28810. 31041 179 1 10156 4.99 2007-04-30 21:04:26.996577
  28811. 31042 180 2 4826 7.99 2007-04-08 16:12:51.996577
  28812. 31043 180 1 4924 9.99 2007-04-08 20:23:51.996577
  28813. 31044 180 2 5384 0.99 2007-04-09 17:46:12.996577
  28814. 31045 180 2 5773 0.99 2007-04-10 11:59:35.996577
  28815. 31046 180 1 5860 3.99 2007-04-10 16:37:15.996577
  28816. 31047 180 1 7274 2.99 2007-04-27 10:04:00.996577
  28817. 31048 180 2 8540 2.99 2007-04-29 09:21:17.996577
  28818. 31049 180 2 8720 5.99 2007-04-29 16:16:58.996577
  28819. 31050 180 1 9373 0.99 2007-04-30 17:34:02.996577
  28820. 31051 180 2 9995 3.99 2007-04-30 15:59:13.996577
  28821. 31052 181 1 3862 6.99 2007-04-06 16:03:48.996577
  28822. 31053 181 2 4428 4.99 2007-04-07 20:58:06.996577
  28823. 31054 181 2 6477 4.99 2007-04-12 00:07:08.996577
  28824. 31055 181 1 6946 8.99 2007-04-26 22:08:33.996577
  28825. 31056 181 1 7393 0.99 2007-04-27 14:31:18.996577
  28826. 31057 181 1 7632 4.99 2007-04-27 23:31:06.996577
  28827. 31058 181 1 8593 5.99 2007-04-29 11:06:40.996577
  28828. 31059 181 1 8601 9.99 2007-04-29 11:31:57.996577
  28829. 31060 181 2 9214 4.99 2007-04-30 11:38:40.996577
  28830. 31061 181 2 9235 5.99 2007-04-30 12:15:43.996577
  28831. 31062 181 1 9357 8.99 2007-04-30 17:05:26.996577
  28832. 31063 181 1 9844 4.99 2007-04-30 10:54:57.996577
  28833. 31064 182 1 3509 2.99 2007-04-05 22:53:23.996577
  28834. 31065 182 1 3697 6.99 2007-04-06 08:35:48.996577
  28835. 31066 182 1 4174 2.99 2007-04-07 08:28:15.996577
  28836. 31067 182 1 4349 0.99 2007-04-07 17:31:03.996577
  28837. 31068 182 2 4513 1.99 2007-04-08 01:08:25.996577
  28838. 31069 182 2 4591 3.99 2007-04-08 04:58:09.996577
  28839. 31070 182 2 4784 0.99 2007-04-08 14:38:22.996577
  28840. 31071 182 1 5521 2.99 2007-04-09 23:59:48.996577
  28841. 31072 182 2 7229 0.99 2007-04-27 08:29:20.996577
  28842. 31073 182 2 7863 0.99 2007-04-28 08:34:12.996577
  28843. 31074 182 2 7880 4.99 2007-04-28 08:59:03.996577
  28844. 31075 182 2 8048 8.99 2007-04-28 15:18:52.996577
  28845. 31076 183 1 3869 2.99 2007-04-06 16:25:12.996577
  28846. 31077 183 2 4134 0.99 2007-04-07 06:42:50.996577
  28847. 31078 183 2 4157 2.99 2007-04-07 07:32:52.996577
  28848. 31079 183 1 5069 1.99 2007-04-09 03:24:56.996577
  28849. 31080 183 2 5756 0.99 2007-04-10 11:07:54.996577
  28850. 31081 183 1 6472 4.99 2007-04-12 00:01:51.996577
  28851. 31082 183 1 6569 4.99 2007-04-12 04:16:06.996577
  28852. 31083 183 2 7359 0.99 2007-04-27 13:19:30.996577
  28853. 31084 183 2 9672 5.99 2007-04-30 05:02:32.996577
  28854. 31085 183 1 9818 4.99 2007-04-30 10:02:58.996577
  28855. 31086 183 2 9931 2.99 2007-04-30 13:46:45.996577
  28856. 31087 184 1 4314 0.99 2007-04-07 16:06:57.996577
  28857. 31088 184 2 4882 6.99 2007-04-08 18:10:29.996577
  28858. 31089 184 1 5891 0.99 2007-04-10 18:29:43.996577
  28859. 31090 184 2 6493 2.99 2007-04-12 01:09:07.996577
  28860. 31091 184 2 6700 6.99 2007-04-12 11:15:48.996577
  28861. 31092 184 2 7051 4.99 2007-04-27 02:03:03.996577
  28862. 31093 184 2 7686 6.99 2007-04-28 01:47:49.996577
  28863. 31094 184 1 8892 4.99 2007-04-29 23:15:29.996577
  28864. 31095 184 1 9162 0.99 2007-04-30 09:50:22.996577
  28865. 31096 185 1 4186 9.99 2007-04-07 09:00:51.996577
  28866. 31097 185 1 4524 2.99 2007-04-08 01:39:14.996577
  28867. 31098 185 2 4822 7.99 2007-04-08 15:57:13.996577
  28868. 31099 185 2 6106 2.99 2007-04-11 05:33:32.996577
  28869. 31100 185 1 6418 1.99 2007-04-11 22:04:53.996577
  28870. 31101 185 1 6965 2.99 2007-04-26 22:43:44.996577
  28871. 31102 185 1 7066 4.99 2007-04-27 02:22:18.996577
  28872. 31103 185 1 8200 2.99 2007-04-28 21:39:12.996577
  28873. 31104 185 2 8442 0.99 2007-04-29 06:01:33.996577
  28874. 31105 185 1 8684 8.99 2007-04-29 14:44:59.996577
  28875. 31106 185 2 9246 0.99 2007-04-30 12:40:57.996577
  28876. 31107 185 2 9473 2.99 2007-04-30 21:32:39.996577
  28877. 31108 186 2 6067 4.99 2007-04-11 03:03:15.996577
  28878. 31109 186 2 7739 0.99 2007-04-28 03:50:17.996577
  28879. 31110 186 1 7915 3.99 2007-04-28 10:18:12.996577
  28880. 31111 186 1 8483 4.99 2007-04-29 07:18:44.996577
  28881. 31112 186 2 8872 0.99 2007-04-29 22:42:20.996577
  28882. 31113 186 2 9303 2.99 2007-04-30 15:04:25.996577
  28883. 31114 186 2 9360 5.99 2007-04-30 17:08:09.996577
  28884. 31115 186 1 10104 1.99 2007-04-30 19:17:40.996577
  28885. 31116 187 2 3709 10.99 2007-04-06 08:55:22.996577
  28886. 31117 187 1 4429 4.99 2007-04-07 21:01:13.996577
  28887. 31118 187 2 5366 0.99 2007-04-09 16:57:03.996577
  28888. 31119 187 1 5738 8.99 2007-04-10 10:19:17.996577
  28889. 31120 187 2 5833 6.99 2007-04-10 15:07:50.996577
  28890. 31121 187 1 6057 3.99 2007-04-11 02:32:06.996577
  28891. 31122 187 2 6428 2.99 2007-04-11 22:30:17.996577
  28892. 31123 187 2 7289 4.99 2007-04-27 10:55:17.996577
  28893. 31124 187 2 7844 7.99 2007-04-28 07:44:45.996577
  28894. 31125 187 2 7967 7.99 2007-04-28 12:25:17.996577
  28895. 31126 187 1 9241 2.99 2007-04-30 12:27:07.996577
  28896. 31127 188 2 3848 3.99 2007-04-06 15:15:58.996577
  28897. 31128 188 2 4150 2.99 2007-04-07 07:11:48.996577
  28898. 31129 188 2 5356 2.99 2007-04-09 16:36:54.996577
  28899. 31130 188 2 5729 5.99 2007-04-10 09:55:51.996577
  28900. 31131 188 2 6555 4.99 2007-04-12 03:36:42.996577
  28901. 31132 188 2 7042 0.99 2007-04-27 01:48:44.996577
  28902. 31133 188 1 7556 4.99 2007-04-27 20:45:43.996577
  28903. 31134 188 2 9613 4.99 2007-04-30 02:27:19.996577
  28904. 31135 189 1 3763 0.99 2007-04-06 11:24:57.996577
  28905. 31136 189 2 3813 4.99 2007-04-06 13:52:00.996577
  28906. 31137 189 2 4203 0.99 2007-04-07 09:52:40.996577
  28907. 31138 189 1 6193 5.99 2007-04-11 10:15:23.996577
  28908. 31139 189 1 7469 4.99 2007-04-27 17:26:06.996577
  28909. 31140 189 1 7675 4.99 2007-04-28 01:23:46.996577
  28910. 31141 189 2 7790 2.99 2007-04-28 05:51:01.996577
  28911. 31142 189 2 9171 5.99 2007-04-30 10:04:50.996577
  28912. 31143 189 2 9386 0.99 2007-04-30 17:54:47.996577
  28913. 31144 189 1 9506 4.99 2007-04-30 22:47:27.996577
  28914. 31145 190 2 4005 5.99 2007-04-06 22:50:52.996577
  28915. 31146 190 1 4140 2.99 2007-04-07 06:47:36.996577
  28916. 31147 190 2 6867 3.99 2007-04-12 18:35:13.996577
  28917. 31148 190 1 7175 4.99 2007-04-27 06:31:48.996577
  28918. 31149 190 1 7386 5.99 2007-04-27 14:20:36.996577
  28919. 31150 190 2 7404 2.99 2007-04-27 14:53:09.996577
  28920. 31151 190 1 8498 0.99 2007-04-29 07:36:04.996577
  28921. 31152 191 1 5338 2.99 2007-04-09 15:35:33.996577
  28922. 31153 191 2 5397 5.99 2007-04-09 18:12:17.996577
  28923. 31154 191 1 5924 5.99 2007-04-10 20:09:49.996577
  28924. 31155 191 1 7150 6.99 2007-04-27 05:39:40.996577
  28925. 31156 191 1 7450 3.99 2007-04-27 16:47:01.996577
  28926. 31157 191 1 7520 2.99 2007-04-27 19:30:28.996577
  28927. 31158 191 2 8583 0.99 2007-04-29 10:33:16.996577
  28928. 31159 191 1 9297 4.99 2007-04-30 14:54:55.996577
  28929. 31160 191 1 9964 4.99 2007-04-30 14:46:05.996577
  28930. 31161 192 1 3902 2.99 2007-04-06 17:53:44.996577
  28931. 31162 192 1 4469 4.99 2007-04-07 22:46:58.996577
  28932. 31163 192 1 5400 2.99 2007-04-09 18:25:06.996577
  28933. 31164 192 2 6223 0.99 2007-04-11 11:55:35.996577
  28934. 31165 192 2 6691 0.99 2007-04-12 10:55:04.996577
  28935. 31166 192 2 7147 2.99 2007-04-27 05:31:00.996577
  28936. 31167 192 2 8051 0.99 2007-04-28 15:24:42.996577
  28937. 31168 192 2 8292 7.99 2007-04-29 00:58:02.996577
  28938. 31169 192 1 9462 7.99 2007-04-30 20:59:10.996577
  28939. 31170 192 1 9831 2.99 2007-04-30 10:27:58.996577
  28940. 31171 193 1 4892 6.99 2007-04-08 18:34:51.996577
  28941. 31172 193 1 8211 2.99 2007-04-28 22:02:48.996577
  28942. 31173 193 1 8379 4.99 2007-04-29 03:58:06.996577
  28943. 31174 193 1 8431 4.99 2007-04-29 05:41:14.996577
  28944. 31175 193 1 9079 2.99 2007-04-30 06:30:26.996577
  28945. 31176 193 1 9575 4.99 2007-04-30 01:20:19.996577
  28946. 31177 194 2 4231 7.99 2007-04-07 11:16:45.996577
  28947. 31178 194 2 5146 2.99 2007-04-09 06:43:24.996577
  28948. 31179 194 1 5291 2.99 2007-04-09 13:43:28.996577
  28949. 31180 194 2 5894 3.99 2007-04-10 18:38:00.996577
  28950. 31181 194 1 9064 7.99 2007-04-30 05:53:21.996577
  28951. 31182 195 1 4234 6.99 2007-04-07 11:30:01.996577
  28952. 31183 195 1 4315 2.99 2007-04-07 16:08:52.996577
  28953. 31184 195 1 5228 4.99 2007-04-09 10:54:27.996577
  28954. 31185 195 1 5536 0.99 2007-04-10 00:58:08.996577
  28955. 31186 195 2 6175 4.99 2007-04-11 09:13:03.996577
  28956. 31187 195 1 7349 2.99 2007-04-27 13:01:26.996577
  28957. 31188 195 2 8280 4.99 2007-04-29 00:14:17.996577
  28958. 31189 195 2 8479 0.99 2007-04-29 07:10:30.996577
  28959. 31190 195 2 9188 6.99 2007-04-30 10:48:20.996577
  28960. 31191 195 1 9870 5.99 2007-04-30 11:51:17.996577
  28961. 31192 195 1 9994 4.99 2007-04-30 15:58:57.996577
  28962. 31193 196 1 4879 2.99 2007-04-08 18:03:21.996577
  28963. 31194 196 2 4999 4.99 2007-04-08 23:41:23.996577
  28964. 31195 196 2 5143 4.99 2007-04-09 06:35:33.996577
  28965. 31196 196 2 5353 3.99 2007-04-09 16:32:55.996577
  28966. 31197 196 2 5768 4.99 2007-04-10 11:43:52.996577
  28967. 31198 196 2 6857 4.99 2007-04-12 18:21:56.996577
  28968. 31199 196 2 7666 3.99 2007-04-28 01:03:38.996577
  28969. 31200 196 2 8266 0.99 2007-04-28 23:48:42.996577
  28970. 31201 196 2 8472 1.99 2007-04-29 07:04:48.996577
  28971. 31202 196 2 8700 0.99 2007-04-29 15:24:27.996577
  28972. 31203 196 1 9346 5.99 2007-04-30 16:42:18.996577
  28973. 31204 196 1 9721 6.99 2007-04-30 06:57:12.996577
  28974. 31205 196 1 9804 4.99 2007-04-30 09:36:05.996577
  28975. 31206 196 2 10122 10.99 2007-04-30 19:57:54.996577
  28976. 31207 196 1 10191 4.99 2007-04-30 22:57:04.996577
  28977. 31208 197 1 4486 8.99 2007-04-07 23:37:35.996577
  28978. 31209 197 2 4739 4.99 2007-04-08 11:54:23.996577
  28979. 31210 197 2 5182 6.99 2007-04-09 08:36:36.996577
  28980. 31211 197 2 5344 0.99 2007-04-09 15:55:31.996577
  28981. 31212 197 1 8165 2.99 2007-04-28 19:51:32.996577
  28982. 31213 197 2 9378 4.99 2007-04-30 17:41:20.996577
  28983. 31214 197 1 9476 0.99 2007-04-30 21:35:06.996577
  28984. 31215 197 2 9585 4.99 2007-04-30 01:34:21.996577
  28985. 31216 198 2 3770 2.99 2007-04-06 11:42:54.996577
  28986. 31217 198 2 4588 2.99 2007-04-08 04:46:27.996577
  28987. 31218 198 2 4750 0.99 2007-04-08 12:35:29.996577
  28988. 31219 198 2 5794 4.99 2007-04-10 13:03:19.996577
  28989. 31220 198 2 6567 4.99 2007-04-12 04:11:35.996577
  28990. 31221 198 1 6819 4.99 2007-04-12 16:49:27.996577
  28991. 31222 198 2 6889 4.99 2007-04-12 19:29:48.996577
  28992. 31223 198 1 7287 0.99 2007-04-27 10:52:38.996577
  28993. 31224 198 1 7441 5.99 2007-04-27 16:15:19.996577
  28994. 31225 198 1 7583 2.99 2007-04-27 21:43:48.996577
  28995. 31226 198 2 7622 0.99 2007-04-27 23:06:00.996577
  28996. 31227 198 1 8145 5.99 2007-04-28 19:03:07.996577
  28997. 31228 198 2 9389 0.99 2007-04-30 17:56:25.996577
  28998. 31229 198 1 10112 4.99 2007-04-30 19:37:22.996577
  28999. 31230 198 1 10147 2.99 2007-04-30 20:47:09.996577
  29000. 31231 199 1 4499 2.99 2007-04-08 00:37:14.996577
  29001. 31232 199 2 4580 8.99 2007-04-08 04:32:49.996577
  29002. 31233 199 1 4976 4.99 2007-04-08 22:31:56.996577
  29003. 31234 199 2 5398 2.99 2007-04-09 18:13:24.996577
  29004. 31235 199 2 5680 5.99 2007-04-10 07:16:02.996577
  29005. 31236 199 2 6668 2.99 2007-04-12 10:06:11.996577
  29006. 31237 199 2 6782 4.99 2007-04-12 14:51:51.996577
  29007. 31238 199 1 7782 4.99 2007-04-28 05:42:06.996577
  29008. 31239 199 1 8709 0.99 2007-04-29 15:54:20.996577
  29009. 31240 199 1 9752 2.99 2007-04-30 07:50:28.996577
  29010. 31241 199 2 9894 4.99 2007-04-30 12:36:10.996577
  29011. 31242 199 1 9959 4.99 2007-04-30 14:32:48.996577
  29012. 31243 199 1 10196 2.99 2007-04-30 23:03:17.996577
  29013. 31244 200 1 3580 4.99 2007-04-06 02:17:10.996577
  29014. 31245 200 1 5110 2.99 2007-04-09 05:25:51.996577
  29015. 31246 200 1 6123 0.99 2007-04-11 06:30:53.996577
  29016. 31247 200 2 6167 2.99 2007-04-11 08:49:47.996577
  29017. 31248 200 1 6181 4.99 2007-04-11 09:38:37.996577
  29018. 31249 200 1 6947 3.99 2007-04-26 22:10:29.996577
  29019. 31250 200 1 7574 2.99 2007-04-27 21:21:26.996577
  29020. 31251 200 2 8368 3.99 2007-04-29 03:44:07.996577
  29021. 31252 200 2 8462 2.99 2007-04-29 06:44:08.996577
  29022. 31253 200 1 9527 6.99 2007-04-30 23:30:50.996577
  29023. 31254 201 2 3528 4.99 2007-04-05 23:41:53.996577
  29024. 31255 201 2 3708 6.99 2007-04-06 08:51:53.996577
  29025. 31256 201 1 7106 0.99 2007-04-27 03:49:50.996577
  29026. 31257 201 2 7606 2.99 2007-04-27 22:30:41.996577
  29027. 31258 201 2 9355 0.99 2007-04-30 17:03:51.996577
  29028. 31259 209 2 3504 2.99 2007-04-05 22:46:55.996577
  29029. 31260 209 2 4071 5.99 2007-04-07 03:05:52.996577
  29030. 31261 209 1 4309 5.99 2007-04-07 15:58:07.996577
  29031. 31262 209 2 4810 4.99 2007-04-08 15:32:32.996577
  29032. 31263 209 1 4907 4.99 2007-04-08 19:30:07.996577
  29033. 31264 209 2 5170 3.99 2007-04-09 07:52:45.996577
  29034. 31265 209 2 5219 5.99 2007-04-09 10:26:21.996577
  29035. 31266 209 1 6210 0.99 2007-04-11 11:05:09.996577
  29036. 31267 209 1 7116 6.99 2007-04-27 04:15:09.996577
  29037. 31268 209 1 7269 3.99 2007-04-27 09:52:13.996577
  29038. 31269 209 1 7505 4.99 2007-04-27 18:56:29.996577
  29039. 31270 209 2 7752 5.99 2007-04-28 04:29:26.996577
  29040. 31271 209 1 8067 4.99 2007-04-28 15:48:43.996577
  29041. 31272 209 2 8759 8.99 2007-04-29 17:51:03.996577
  29042. 31273 209 2 8816 2.99 2007-04-29 20:21:26.996577
  29043. 31274 209 2 9054 6.99 2007-04-30 05:40:10.996577
  29044. 31275 209 1 9923 0.99 2007-04-30 13:28:41.996577
  29045. 31276 210 2 3563 4.99 2007-04-06 01:25:27.996577
  29046. 31277 210 2 3884 4.99 2007-04-06 17:09:59.996577
  29047. 31278 210 2 4270 0.99 2007-04-07 13:07:07.996577
  29048. 31279 210 1 4306 2.99 2007-04-07 15:40:58.996577
  29049. 31280 210 1 4334 0.99 2007-04-07 17:00:30.996577
  29050. 31281 210 2 4388 7.99 2007-04-07 19:26:29.996577
  29051. 31282 210 1 4620 5.99 2007-04-08 06:30:10.996577
  29052. 31283 210 1 4871 6.99 2007-04-08 17:48:18.996577
  29053. 31284 210 1 4893 4.99 2007-04-08 18:48:21.996577
  29054. 31285 210 1 4989 3.99 2007-04-08 23:15:22.996577
  29055. 31286 210 2 5957 0.99 2007-04-10 21:52:28.996577
  29056. 31287 210 2 6227 4.99 2007-04-11 12:25:12.996577
  29057. 31288 210 1 6564 1.99 2007-04-12 04:03:10.996577
  29058. 31289 210 1 7743 5.99 2007-04-28 04:04:39.996577
  29059. 31290 210 2 7909 0.99 2007-04-28 10:06:34.996577
  29060. 31291 210 2 8336 8.99 2007-04-29 02:49:08.996577
  29061. 31292 210 2 8678 3.99 2007-04-29 14:32:26.996577
  29062. 31293 210 2 8738 0.99 2007-04-29 17:01:13.996577
  29063. 31294 211 2 3937 8.99 2007-04-06 19:44:04.996577
  29064. 31295 211 2 4060 2.99 2007-04-07 02:38:39.996577
  29065. 31296 211 2 4441 5.99 2007-04-07 21:32:49.996577
  29066. 31297 211 2 4479 2.99 2007-04-07 23:21:01.996577
  29067. 31298 211 1 4857 2.99 2007-04-08 17:20:33.996577
  29068. 31299 211 1 5668 5.99 2007-04-10 06:39:31.996577
  29069. 31300 211 2 5699 3.99 2007-04-10 08:16:30.996577
  29070. 31301 211 2 5785 4.99 2007-04-10 12:34:29.996577
  29071. 31302 211 2 6438 0.99 2007-04-11 22:51:27.996577
  29072. 31303 211 1 6628 4.99 2007-04-12 07:46:34.996577
  29073. 31304 211 1 6722 1.99 2007-04-12 12:12:29.996577
  29074. 31305 211 2 7484 0.99 2007-04-27 17:56:43.996577
  29075. 31306 211 1 7975 2.99 2007-04-28 12:41:13.996577
  29076. 31307 211 2 8961 6.99 2007-04-30 02:12:01.996577
  29077. 31308 211 1 9111 3.99 2007-04-30 07:34:10.996577
  29078. 31309 211 1 9953 0.99 2007-04-30 14:25:01.996577
  29079. 31310 212 2 4708 10.99 2007-04-08 10:27:45.996577
  29080. 31311 212 2 4798 3.99 2007-04-08 15:13:42.996577
  29081. 31312 212 2 4916 6.99 2007-04-08 20:00:43.996577
  29082. 31313 212 1 5115 6.99 2007-04-09 05:35:44.996577
  29083. 31314 212 2 7828 2.99 2007-04-28 07:09:12.996577
  29084. 31315 212 2 8000 4.99 2007-04-28 13:38:51.996577
  29085. 31316 212 1 8940 3.99 2007-04-30 01:25:52.996577
  29086. 31317 213 2 3989 4.99 2007-04-06 21:59:20.996577
  29087. 31318 213 2 4236 4.99 2007-04-07 11:40:33.996577
  29088. 31319 213 1 4655 8.99 2007-04-08 08:17:48.996577
  29089. 31320 213 2 5159 4.99 2007-04-09 07:24:18.996577
  29090. 31321 213 1 5431 0.99 2007-04-09 19:49:37.996577
  29091. 31322 213 2 6725 2.99 2007-04-12 12:15:43.996577
  29092. 31323 213 2 7528 0.99 2007-04-27 19:43:51.996577
  29093. 31324 213 2 8444 2.99 2007-04-29 06:04:39.996577
  29094. 31325 213 2 8542 4.99 2007-04-29 09:30:16.996577
  29095. 31326 213 2 9150 6.99 2007-04-30 09:17:58.996577
  29096. 31327 213 2 9340 2.99 2007-04-30 16:35:42.996577
  29097. 31328 213 1 9477 4.99 2007-04-30 21:35:48.996577
  29098. 31329 214 2 4211 0.99 2007-04-07 10:19:07.996577
  29099. 31330 214 1 4783 3.99 2007-04-08 14:37:50.996577
  29100. 31331 214 2 4984 3.99 2007-04-08 23:03:57.996577
  29101. 31332 214 2 5172 2.99 2007-04-09 07:59:53.996577
  29102. 31333 214 1 6602 7.99 2007-04-12 06:18:50.996577
  29103. 31334 214 2 7417 4.99 2007-04-27 15:26:59.996577
  29104. 31335 214 2 7826 5.99 2007-04-28 07:04:17.996577
  29105. 31336 214 1 8663 4.99 2007-04-29 14:01:44.996577
  29106. 31337 215 2 4940 8.99 2007-04-08 21:04:32.996577
  29107. 31338 215 1 5886 2.99 2007-04-10 18:04:51.996577
  29108. 31339 215 2 5967 8.99 2007-04-10 22:30:45.996577
  29109. 31340 215 1 7180 1.99 2007-04-27 06:43:00.996577
  29110. 31341 215 2 9046 2.99 2007-04-30 05:15:21.996577
  29111. 31342 215 1 9518 0.99 2007-04-30 23:11:52.996577
  29112. 31343 215 2 9611 4.99 2007-04-30 02:23:09.996577
  29113. 31344 216 2 4161 2.99 2007-04-07 07:43:37.996577
  29114. 31345 216 1 6008 6.99 2007-04-11 00:19:55.996577
  29115. 31346 216 2 6349 7.99 2007-04-11 18:53:31.996577
  29116. 31347 216 1 8068 4.99 2007-04-28 15:50:54.996577
  29117. 31348 216 2 8859 8.99 2007-04-29 22:13:09.996577
  29118. 31349 216 1 9096 0.99 2007-04-30 07:07:49.996577
  29119. 31350 217 2 5576 2.99 2007-04-10 02:25:31.996577
  29120. 31351 217 2 5762 3.99 2007-04-10 11:16:27.996577
  29121. 31352 217 2 6570 4.99 2007-04-12 04:18:57.996577
  29122. 31353 217 2 7104 2.99 2007-04-27 03:43:51.996577
  29123. 31354 217 2 8332 4.99 2007-04-29 02:44:26.996577
  29124. 31355 217 1 9159 0.99 2007-04-30 09:45:03.996577
  29125. 31356 217 2 9317 2.99 2007-04-30 15:42:03.996577
  29126. 31357 217 2 9632 6.99 2007-04-30 03:30:49.996577
  29127. 31358 217 2 9745 2.99 2007-04-30 07:44:40.996577
  29128. 31359 218 1 4898 6.99 2007-04-08 19:00:09.996577
  29129. 31360 218 1 5226 0.99 2007-04-09 10:39:10.996577
  29130. 31361 218 2 5737 0.99 2007-04-10 10:18:30.996577
  29131. 31362 218 2 7090 4.99 2007-04-27 03:12:19.996577
  29132. 31363 218 1 7236 8.99 2007-04-27 08:38:05.996577
  29133. 31364 218 2 9018 6.99 2007-04-30 03:57:06.996577
  29134. 31365 218 2 9902 6.99 2007-04-30 12:52:59.996577
  29135. 31366 218 1 10114 0.99 2007-04-30 19:41:24.996577
  29136. 31367 219 2 4678 0.99 2007-04-08 08:59:06.996577
  29137. 31368 219 2 4910 7.99 2007-04-08 19:42:22.996577
  29138. 31369 219 2 5123 0.99 2007-04-09 05:48:56.996577
  29139. 31370 219 2 5416 4.99 2007-04-09 19:02:16.996577
  29140. 31371 219 2 5475 4.99 2007-04-09 22:00:04.996577
  29141. 31372 219 2 5739 7.99 2007-04-10 10:20:16.996577
  29142. 31373 219 2 6172 4.99 2007-04-11 09:00:35.996577
  29143. 31374 219 1 6209 2.99 2007-04-11 11:04:31.996577
  29144. 31375 219 2 6501 1.99 2007-04-12 01:40:21.996577
  29145. 31376 219 2 7335 2.99 2007-04-27 12:35:16.996577
  29146. 31377 219 1 7726 5.99 2007-04-28 03:20:45.996577
  29147. 31378 219 1 8430 0.99 2007-04-29 05:40:43.996577
  29148. 31379 219 2 8536 4.99 2007-04-29 09:05:49.996577
  29149. 31380 219 1 8652 6.99 2007-04-29 13:31:20.996577
  29150. 31381 219 1 9712 4.99 2007-04-30 06:41:37.996577
  29151. 31382 220 2 4918 2.99 2007-04-08 20:05:57.996577
  29152. 31383 220 2 5613 2.99 2007-04-10 03:44:09.996577
  29153. 31384 220 2 5847 2.99 2007-04-10 15:56:08.996577
  29154. 31385 220 2 5859 0.99 2007-04-10 16:30:28.996577
  29155. 31386 220 2 6412 0.99 2007-04-11 21:47:47.996577
  29156. 31387 220 2 6832 8.99 2007-04-12 17:20:07.996577
  29157. 31388 220 2 7750 9.99 2007-04-28 04:23:56.996577
  29158. 31389 220 1 8065 2.99 2007-04-28 15:44:14.996577
  29159. 31390 220 1 8398 4.99 2007-04-29 04:41:06.996577
  29160. 31391 220 2 9384 7.99 2007-04-30 17:54:01.996577
  29161. 31392 220 2 9455 10.99 2007-04-30 20:48:55.996577
  29162. 31393 220 1 10099 2.99 2007-04-30 19:15:40.996577
  29163. 31394 221 1 4293 4.99 2007-04-07 14:22:13.996577
  29164. 31395 221 2 4649 4.99 2007-04-08 08:00:31.996577
  29165. 31396 221 1 4693 6.99 2007-04-08 09:36:02.996577
  29166. 31397 221 1 5058 5.99 2007-04-09 02:49:01.996577
  29167. 31398 221 2 5920 5.99 2007-04-10 20:02:24.996577
  29168. 31399 221 1 7101 2.99 2007-04-27 03:35:00.996577
  29169. 31400 221 1 7129 0.99 2007-04-27 04:46:27.996577
  29170. 31401 221 2 7531 8.99 2007-04-27 19:48:00.996577
  29171. 31402 221 2 8486 0.99 2007-04-29 07:22:04.996577
  29172. 31403 221 1 9320 6.99 2007-04-30 15:45:05.996577
  29173. 31404 221 1 9453 7.99 2007-04-30 20:48:30.996577
  29174. 31405 221 2 9853 0.99 2007-04-30 11:26:46.996577
  29175. 31406 222 2 5209 8.99 2007-04-09 09:51:05.996577
  29176. 31407 222 1 5266 3.99 2007-04-09 12:46:06.996577
  29177. 31408 222 2 5592 6.99 2007-04-10 02:54:39.996577
  29178. 31409 222 2 5635 5.99 2007-04-10 04:57:05.996577
  29179. 31410 222 2 6129 2.99 2007-04-11 06:43:35.996577
  29180. 31411 222 1 6497 0.99 2007-04-12 01:32:55.996577
  29181. 31412 222 2 7786 0.99 2007-04-28 05:46:52.996577
  29182. 31413 222 1 8300 1.99 2007-04-29 01:26:25.996577
  29183. 31414 222 2 8597 6.99 2007-04-29 11:24:21.996577
  29184. 31415 222 1 8787 4.99 2007-04-29 19:12:15.996577
  29185. 31416 222 2 10043 1.99 2007-04-30 17:30:33.996577
  29186. 31417 223 1 3513 5.99 2007-04-05 23:14:23.996577
  29187. 31418 223 1 3705 0.99 2007-04-06 08:46:25.996577
  29188. 31419 223 1 4874 4.99 2007-04-08 17:52:04.996577
  29189. 31420 223 2 5996 2.99 2007-04-10 23:46:59.996577
  29190. 31421 223 2 7085 5.99 2007-04-27 03:04:10.996577
  29191. 31422 223 2 8362 3.99 2007-04-29 03:37:37.996577
  29192. 31423 223 2 10053 7.99 2007-04-30 17:44:05.996577
  29193. 31424 224 1 4118 2.99 2007-04-07 05:31:56.996577
  29194. 31425 224 2 4411 3.99 2007-04-07 20:23:24.996577
  29195. 31426 224 1 4697 2.99 2007-04-08 09:47:40.996577
  29196. 31427 224 1 6031 4.99 2007-04-11 01:10:40.996577
  29197. 31428 224 2 6999 2.99 2007-04-26 23:49:45.996577
  29198. 31429 224 2 8255 0.99 2007-04-28 23:30:56.996577
  29199. 31430 224 2 8439 2.99 2007-04-29 05:57:09.996577
  29200. 31431 224 1 8605 4.99 2007-04-29 11:42:00.996577
  29201. 31432 224 1 9181 0.99 2007-04-30 10:34:24.996577
  29202. 31433 225 2 3574 4.99 2007-04-06 02:04:27.996577
  29203. 31434 225 1 4345 7.99 2007-04-07 17:21:23.996577
  29204. 31435 225 1 4824 7.99 2007-04-08 16:06:05.996577
  29205. 31436 225 2 4955 2.99 2007-04-08 21:44:47.996577
  29206. 31437 225 1 5067 4.99 2007-04-09 03:21:01.996577
  29207. 31438 225 1 6159 2.99 2007-04-11 08:24:00.996577
  29208. 31439 225 1 6317 2.99 2007-04-11 17:16:07.996577
  29209. 31440 225 2 6350 2.99 2007-04-11 18:58:41.996577
  29210. 31441 225 1 6526 3.99 2007-04-12 02:49:46.996577
  29211. 31442 225 2 6532 2.99 2007-04-12 03:06:58.996577
  29212. 31443 225 2 7347 4.99 2007-04-27 12:59:50.996577
  29213. 31444 225 1 7524 6.99 2007-04-27 19:40:10.996577
  29214. 31445 225 1 8054 7.99 2007-04-28 15:30:44.996577
  29215. 31446 225 2 8110 4.99 2007-04-28 17:36:11.996577
  29216. 31447 225 1 9980 4.99 2007-04-30 15:30:26.996577
  29217. 31448 225 2 9993 2.99 2007-04-30 15:58:46.996577
  29218. 31449 225 2 10138 2.99 2007-04-30 20:30:35.996577
  29219. 31450 226 1 3721 4.99 2007-04-06 09:38:35.996577
  29220. 31451 226 1 4324 4.99 2007-04-07 16:26:22.996577
  29221. 31452 226 1 5282 2.99 2007-04-09 13:29:49.996577
  29222. 31453 226 1 5419 2.99 2007-04-09 19:16:02.996577
  29223. 31454 226 1 6712 9.99 2007-04-12 11:53:13.996577
  29224. 31455 226 2 7288 5.99 2007-04-27 10:53:25.996577
  29225. 31456 226 1 7329 3.99 2007-04-27 12:24:00.996577
  29226. 31457 226 2 8600 2.99 2007-04-29 11:29:45.996577
  29227. 31458 226 1 8627 2.99 2007-04-29 12:33:38.996577
  29228. 31459 227 1 3576 5.99 2007-04-06 02:08:27.996577
  29229. 31460 227 2 4340 2.99 2007-04-07 17:10:12.996577
  29230. 31461 227 2 4459 4.99 2007-04-07 22:17:18.996577
  29231. 31462 227 1 4680 2.99 2007-04-08 09:03:54.996577
  29232. 31463 227 1 5046 3.99 2007-04-09 02:03:23.996577
  29233. 31464 227 1 7132 7.99 2007-04-27 04:57:00.996577
  29234. 31465 227 1 8219 2.99 2007-04-28 22:14:57.996577
  29235. 31466 227 1 8234 0.99 2007-04-28 22:47:46.996577
  29236. 31467 227 1 8384 0.99 2007-04-29 04:07:09.996577
  29237. 31468 227 2 8417 4.99 2007-04-29 05:22:02.996577
  29238. 31469 227 1 8936 2.99 2007-04-30 01:15:39.996577
  29239. 31470 227 2 9521 2.99 2007-04-30 23:20:50.996577
  29240. 31471 228 2 3538 0.99 2007-04-06 00:05:33.996577
  29241. 31472 228 2 3710 8.99 2007-04-06 08:57:19.996577
  29242. 31473 228 1 3715 6.99 2007-04-06 09:20:14.996577
  29243. 31474 228 2 3796 0.99 2007-04-06 13:13:48.996577
  29244. 31475 228 1 4217 3.99 2007-04-07 10:37:25.996577
  29245. 31476 228 1 4636 4.99 2007-04-08 07:12:58.996577
  29246. 31477 228 1 4909 0.99 2007-04-08 19:35:50.996577
  29247. 31478 228 1 5151 2.99 2007-04-09 06:59:29.996577
  29248. 31479 228 1 5320 4.99 2007-04-09 14:51:58.996577
  29249. 31480 228 2 5902 0.99 2007-04-10 18:59:50.996577
  29250. 31481 228 2 6141 1.99 2007-04-11 07:20:42.996577
  29251. 31482 228 1 6948 2.99 2007-04-26 22:12:15.996577
  29252. 31483 228 2 7509 8.99 2007-04-27 19:05:45.996577
  29253. 31484 228 1 7601 0.99 2007-04-27 22:16:41.996577
  29254. 31485 228 1 8147 2.99 2007-04-28 19:06:22.996577
  29255. 31486 229 2 3933 4.99 2007-04-06 19:35:03.996577
  29256. 31487 229 2 4458 2.99 2007-04-07 22:16:13.996577
  29257. 31488 229 1 4515 4.99 2007-04-08 01:10:29.996577
  29258. 31489 229 2 4694 0.99 2007-04-08 09:36:03.996577
  29259. 31490 229 1 5623 2.99 2007-04-10 04:10:04.996577
  29260. 31491 229 2 6155 4.99 2007-04-11 08:13:57.996577
  29261. 31492 229 2 6578 4.99 2007-04-12 04:44:07.996577
  29262. 31493 229 1 6880 2.99 2007-04-12 19:10:01.996577
  29263. 31494 229 2 7305 0.99 2007-04-27 11:25:32.996577
  29264. 31495 229 2 7308 5.99 2007-04-27 11:28:51.996577
  29265. 31496 229 2 7629 0.99 2007-04-27 23:28:35.996577
  29266. 31497 229 2 7640 7.99 2007-04-27 23:43:15.996577
  29267. 31498 229 2 9913 3.99 2007-04-30 13:19:30.996577
  29268. 31499 230 1 4509 3.99 2007-04-08 01:01:04.996577
  29269. 31500 230 1 4935 0.99 2007-04-08 20:49:22.996577
  29270. 31501 230 1 5045 4.99 2007-04-09 02:01:58.996577
  29271. 31502 230 1 5061 0.99 2007-04-09 02:59:16.996577
  29272. 31503 230 2 5269 2.99 2007-04-09 12:51:31.996577
  29273. 31504 230 2 6126 4.99 2007-04-11 06:35:22.996577
  29274. 31505 230 1 6251 2.99 2007-04-11 13:34:46.996577
  29275. 31506 230 2 7333 4.99 2007-04-27 12:27:37.996577
  29276. 31507 230 2 7390 4.99 2007-04-27 14:27:45.996577
  29277. 31508 230 2 8032 4.99 2007-04-28 14:45:26.996577
  29278. 31509 230 2 8653 0.99 2007-04-29 13:32:49.996577
  29279. 31510 230 1 8815 2.99 2007-04-29 20:19:52.996577
  29280. 31511 230 2 9778 3.99 2007-04-30 08:30:30.996577
  29281. 31512 230 2 10050 3.99 2007-04-30 17:41:55.996577
  29282. 31513 230 1 10057 9.99 2007-04-30 17:48:44.996577
  29283. 31514 231 2 3561 9.99 2007-04-06 01:22:59.996577
  29284. 31515 231 1 3839 2.99 2007-04-06 14:58:56.996577
  29285. 31516 231 2 4289 0.99 2007-04-07 14:14:24.996577
  29286. 31517 231 2 4969 0.99 2007-04-08 22:19:52.996577
  29287. 31518 231 1 5096 2.99 2007-04-09 04:36:49.996577
  29288. 31519 231 1 5560 5.99 2007-04-10 01:41:50.996577
  29289. 31520 231 1 6862 0.99 2007-04-12 18:26:35.996577
  29290. 31521 231 1 6877 1.99 2007-04-12 19:01:24.996577
  29291. 31522 231 1 8556 0.99 2007-04-29 09:46:53.996577
  29292. 31523 231 2 8949 5.99 2007-04-30 01:45:28.996577
  29293. 31524 231 2 9711 2.99 2007-04-30 06:35:07.996577
  29294. 31525 232 2 6234 5.99 2007-04-11 12:44:36.996577
  29295. 31526 232 1 6309 2.99 2007-04-11 16:41:50.996577
  29296. 31527 232 1 7123 5.99 2007-04-27 04:37:14.996577
  29297. 31528 232 2 7653 4.99 2007-04-28 00:26:56.996577
  29298. 31529 232 2 7707 0.99 2007-04-28 02:36:13.996577
  29299. 31530 232 1 7749 2.99 2007-04-28 04:22:02.996577
  29300. 31531 232 1 7990 2.99 2007-04-28 13:11:34.996577
  29301. 31532 232 1 8306 2.99 2007-04-29 01:40:52.996577
  29302. 31533 232 2 8401 4.99 2007-04-29 04:53:34.996577
  29303. 31534 232 2 8655 4.99 2007-04-29 13:33:08.996577
  29304. 31535 232 2 9270 0.99 2007-04-30 13:31:42.996577
  29305. 31536 232 2 9330 10.99 2007-04-30 16:12:50.996577
  29306. 31537 232 2 9365 2.99 2007-04-30 17:14:28.996577
  29307. 31538 232 2 10157 2.99 2007-04-30 21:07:14.996577
  29308. 31539 233 1 3832 2.99 2007-04-06 14:40:49.996577
  29309. 31540 233 1 4015 5.99 2007-04-06 23:28:12.996577
  29310. 31541 233 1 4885 4.99 2007-04-08 18:19:43.996577
  29311. 31542 233 2 5267 5.99 2007-04-09 12:49:36.996577
  29312. 31543 233 1 5846 2.99 2007-04-10 15:53:50.996577
  29313. 31544 233 1 6319 4.99 2007-04-11 17:19:11.996577
  29314. 31545 233 1 6794 2.99 2007-04-12 15:06:49.996577
  29315. 31546 233 1 7056 8.99 2007-04-27 02:14:53.996577
  29316. 31547 233 2 7387 4.99 2007-04-27 14:22:45.996577
  29317. 31548 233 2 8385 5.99 2007-04-29 04:07:42.996577
  29318. 31549 233 2 8530 2.99 2007-04-29 08:54:40.996577
  29319. 31550 233 2 8596 0.99 2007-04-29 11:17:20.996577
  29320. 31551 233 1 9574 0.99 2007-04-30 01:17:46.996577
  29321. 31552 234 2 4686 0.99 2007-04-08 09:22:05.996577
  29322. 31553 234 1 4721 7.99 2007-04-08 11:07:57.996577
  29323. 31554 234 2 10133 5.99 2007-04-30 20:23:33.996577
  29324. 31555 235 2 3581 2.99 2007-04-06 02:26:01.996577
  29325. 31556 235 1 3752 6.99 2007-04-06 10:58:38.996577
  29326. 31557 235 1 3968 4.99 2007-04-06 21:15:35.996577
  29327. 31558 235 2 4592 2.99 2007-04-08 04:59:54.996577
  29328. 31559 235 1 5790 4.99 2007-04-10 12:43:47.996577
  29329. 31560 235 1 6047 2.99 2007-04-11 01:55:27.996577
  29330. 31561 235 2 6352 4.99 2007-04-11 19:02:39.996577
  29331. 31562 235 2 6466 4.99 2007-04-11 23:49:29.996577
  29332. 31563 235 1 8120 0.99 2007-04-28 17:52:50.996577
  29333. 31564 235 2 8446 6.99 2007-04-29 06:06:36.996577
  29334. 31565 235 2 8781 0.99 2007-04-29 18:48:42.996577
  29335. 31566 235 1 9019 5.99 2007-04-30 03:57:19.996577
  29336. 31567 235 2 9519 6.99 2007-04-30 23:14:23.996577
  29337. 31568 235 1 9587 3.99 2007-04-30 01:38:56.996577
  29338. 31569 235 2 10155 0.99 2007-04-30 21:00:09.996577
  29339. 31570 236 1 3645 0.99 2007-04-06 05:50:35.996577
  29340. 31571 236 2 3857 4.99 2007-04-06 15:36:20.996577
  29341. 31572 236 2 4749 4.99 2007-04-08 12:34:24.996577
  29342. 31573 236 1 4959 0.99 2007-04-08 21:50:49.996577
  29343. 31574 236 1 5404 2.99 2007-04-09 18:39:09.996577
  29344. 31575 236 1 5545 3.99 2007-04-10 01:18:55.996577
  29345. 31576 236 2 5938 3.99 2007-04-10 20:46:08.996577
  29346. 31577 236 2 6049 0.99 2007-04-11 02:00:58.996577
  29347. 31578 236 2 6281 4.99 2007-04-11 15:06:42.996577
  29348. 31579 236 1 6303 2.99 2007-04-11 16:24:09.996577
  29349. 31580 236 2 6996 4.99 2007-04-26 23:42:11.996577
  29350. 31581 236 2 7047 4.99 2007-04-27 01:59:37.996577
  29351. 31582 236 2 7253 0.99 2007-04-27 09:15:03.996577
  29352. 31583 236 1 7780 5.99 2007-04-28 05:40:21.996577
  29353. 31584 236 1 7792 4.99 2007-04-28 05:52:28.996577
  29354. 31585 236 2 7798 2.99 2007-04-28 06:10:25.996577
  29355. 31586 236 1 8657 2.99 2007-04-29 13:37:51.996577
  29356. 31587 236 1 9011 5.99 2007-04-30 03:44:55.996577
  29357. 31588 236 1 9934 2.99 2007-04-30 13:53:52.996577
  29358. 31589 236 2 10137 4.99 2007-04-30 20:30:07.996577
  29359. 31590 237 1 4844 4.99 2007-04-08 16:56:39.996577
  29360. 31591 237 2 6053 4.99 2007-04-11 02:20:25.996577
  29361. 31592 237 1 7193 2.99 2007-04-27 07:05:26.996577
  29362. 31593 237 2 7330 3.99 2007-04-27 12:25:12.996577
  29363. 31594 237 1 7812 4.99 2007-04-28 06:35:18.996577
  29364. 31595 237 2 7951 8.99 2007-04-28 11:49:42.996577
  29365. 31596 237 2 8102 2.99 2007-04-28 17:18:09.996577
  29366. 31597 237 2 8748 2.99 2007-04-29 17:37:03.996577
  29367. 31598 237 2 8799 6.99 2007-04-29 19:45:13.996577
  29368. 31599 237 1 8835 3.99 2007-04-29 21:13:01.996577
  29369. 31600 237 1 9276 5.99 2007-04-30 13:37:54.996577
  29370. 31601 237 1 9661 4.99 2007-04-30 04:35:03.996577
  29371. 31602 237 2 9715 1.99 2007-04-30 06:45:24.996577
  29372. 31603 237 2 10056 0.99 2007-04-30 17:47:39.996577
  29373. 31604 237 2 10058 2.99 2007-04-30 17:48:47.996577
  29374. 31605 238 1 4143 0.99 2007-04-07 06:50:33.996577
  29375. 31606 238 1 5616 5.99 2007-04-10 03:49:37.996577
  29376. 31607 238 2 6403 0.99 2007-04-11 21:14:51.996577
  29377. 31608 238 2 7243 4.99 2007-04-27 08:54:37.996577
  29378. 31609 238 1 8310 8.99 2007-04-29 01:54:22.996577
  29379. 31610 238 1 8382 6.99 2007-04-29 04:01:47.996577
  29380. 31611 238 1 8465 0.99 2007-04-29 06:49:15.996577
  29381. 31612 238 1 9065 4.99 2007-04-30 05:53:35.996577
  29382. 31613 238 2 9841 7.99 2007-04-30 10:52:45.996577
  29383. 31614 239 2 3547 0.99 2007-04-06 00:46:32.996577
  29384. 31615 239 1 3552 5.99 2007-04-06 01:02:35.996577
  29385. 31616 239 2 4920 7.99 2007-04-08 20:10:36.996577
  29386. 31617 239 2 5651 4.99 2007-04-10 05:45:39.996577
  29387. 31618 239 1 5960 0.99 2007-04-10 22:07:00.996577
  29388. 31619 239 1 6573 0.99 2007-04-12 04:32:06.996577
  29389. 31620 239 2 7012 8.99 2007-04-27 00:29:29.996577
  29390. 31621 239 1 7426 0.99 2007-04-27 15:48:12.996577
  29391. 31622 239 2 7491 2.99 2007-04-27 18:21:49.996577
  29392. 31623 239 1 8457 6.99 2007-04-29 06:27:29.996577
  29393. 31624 239 2 9676 0.99 2007-04-30 05:07:39.996577
  29394. 31625 239 1 9863 5.99 2007-04-30 11:33:55.996577
  29395. 31626 240 2 4305 4.99 2007-04-07 15:35:37.996577
  29396. 31627 240 2 5262 4.99 2007-04-09 12:36:27.996577
  29397. 31628 240 1 5596 0.99 2007-04-10 03:11:40.996577
  29398. 31629 240 1 6272 0.99 2007-04-11 14:32:15.996577
  29399. 31630 240 2 6470 0.99 2007-04-11 23:58:07.996577
  29400. 31631 240 1 6956 4.99 2007-04-26 22:24:23.996577
  29401. 31632 240 1 7001 4.99 2007-04-26 23:54:00.996577
  29402. 31633 240 1 7467 8.99 2007-04-27 17:20:20.996577
  29403. 31634 240 2 7481 4.99 2007-04-27 17:48:51.996577
  29404. 31635 240 1 7870 4.99 2007-04-28 08:44:29.996577
  29405. 31636 240 2 8503 3.99 2007-04-29 07:45:16.996577
  29406. 31637 240 2 8905 5.99 2007-04-29 23:39:37.996577
  29407. 31638 241 2 3822 0.99 2007-04-06 14:09:41.996577
  29408. 31639 241 1 4731 0.99 2007-04-08 11:36:44.996577
  29409. 31640 241 2 5017 2.99 2007-04-09 00:28:42.996577
  29410. 31641 241 1 5211 0.99 2007-04-09 09:55:16.996577
  29411. 31642 241 1 5438 4.99 2007-04-09 20:02:58.996577
  29412. 31643 241 2 5525 3.99 2007-04-10 00:31:34.996577
  29413. 31644 241 1 5981 4.99 2007-04-10 22:47:30.996577
  29414. 31645 241 2 6090 6.99 2007-04-11 04:15:34.996577
  29415. 31646 241 2 6245 2.99 2007-04-11 13:25:23.996577
  29416. 31647 241 1 7320 0.99 2007-04-27 12:02:01.996577
  29417. 31648 241 1 7434 2.99 2007-04-27 16:03:06.996577
  29418. 31649 241 1 7860 2.99 2007-04-28 08:26:28.996577
  29419. 31650 241 1 9500 6.99 2007-04-30 22:27:02.996577
  29420. 31651 241 1 9528 3.99 2007-04-30 23:33:30.996577
  29421. 31652 241 1 9944 5.99 2007-04-30 14:13:09.996577
  29422. 31653 242 1 3471 4.99 2007-04-05 21:20:10.996577
  29423. 31654 242 2 3604 0.99 2007-04-06 03:53:48.996577
  29424. 31655 242 1 4426 4.99 2007-04-07 20:56:58.996577
  29425. 31656 242 2 4895 1.99 2007-04-08 18:50:31.996577
  29426. 31657 242 2 5666 5.99 2007-04-10 06:38:55.996577
  29427. 31658 242 2 7149 3.99 2007-04-27 05:39:06.996577
  29428. 31659 242 1 8491 4.99 2007-04-29 07:30:39.996577
  29429. 31660 242 1 9423 3.99 2007-04-30 19:38:40.996577
  29430. 31661 242 1 9730 6.99 2007-04-30 07:18:34.996577
  29431. 31662 243 2 3854 5.99 2007-04-06 15:30:59.996577
  29432. 31663 243 1 3965 4.99 2007-04-06 21:04:46.996577
  29433. 31664 243 1 4831 0.99 2007-04-08 16:28:40.996577
  29434. 31665 243 1 5502 0.99 2007-04-09 23:02:41.996577
  29435. 31666 243 2 6038 3.99 2007-04-11 01:39:03.996577
  29436. 31667 243 2 6820 2.99 2007-04-12 16:49:56.996577
  29437. 31668 243 2 7022 2.99 2007-04-27 00:59:41.996577
  29438. 31669 243 2 7165 0.99 2007-04-27 06:05:12.996577
  29439. 31670 243 1 8834 4.99 2007-04-29 21:10:14.996577
  29440. 31671 243 2 9035 2.99 2007-04-30 04:44:33.996577
  29441. 31672 243 2 9514 4.99 2007-04-30 22:58:10.996577
  29442. 31673 243 2 9675 2.99 2007-04-30 05:05:33.996577
  29443. 31674 243 2 9988 5.99 2007-04-30 15:51:02.996577
  29444. 31675 244 1 4814 4.99 2007-04-08 15:39:35.996577
  29445. 31676 244 2 5387 4.99 2007-04-09 17:53:40.996577
  29446. 31677 244 2 5461 0.99 2007-04-09 21:16:30.996577
  29447. 31678 244 2 5692 0.99 2007-04-10 08:00:48.996577
  29448. 31679 244 1 5779 4.99 2007-04-10 12:14:20.996577
  29449. 31680 244 1 5803 3.99 2007-04-10 13:34:08.996577
  29450. 31681 244 2 6374 4.99 2007-04-11 20:04:36.996577
  29451. 31682 244 2 6608 2.99 2007-04-12 06:45:16.996577
  29452. 31683 244 2 6683 2.99 2007-04-12 10:42:31.996577
  29453. 31684 244 2 8454 0.99 2007-04-29 06:17:30.996577
  29454. 31685 244 2 8844 5.99 2007-04-29 21:33:34.996577
  29455. 31686 244 1 10001 4.99 2007-04-30 16:14:44.996577
  29456. 31687 244 2 10047 4.99 2007-04-30 17:36:09.996577
  29457. 31688 244 1 10152 5.99 2007-04-30 20:56:31.996577
  29458. 31689 245 1 3634 2.99 2007-04-06 05:19:40.996577
  29459. 31690 245 2 5321 2.99 2007-04-09 14:54:59.996577
  29460. 31691 245 1 5764 4.99 2007-04-10 11:26:42.996577
  29461. 31692 245 2 6242 2.99 2007-04-11 13:13:30.996577
  29462. 31693 245 1 6795 5.99 2007-04-12 15:09:26.996577
  29463. 31694 245 2 6962 0.99 2007-04-26 22:39:24.996577
  29464. 31695 245 1 7230 4.99 2007-04-27 08:30:07.996577
  29465. 31696 245 2 7233 5.99 2007-04-27 08:37:02.996577
  29466. 31697 245 1 7358 0.99 2007-04-27 13:18:10.996577
  29467. 31698 245 2 7397 4.99 2007-04-27 14:33:26.996577
  29468. 31699 245 2 8701 6.99 2007-04-29 15:31:01.996577
  29469. 31700 245 1 8811 10.99 2007-04-29 20:14:47.996577
  29470. 31701 245 2 9088 0.99 2007-04-30 06:49:28.996577
  29471. 31702 245 2 9169 4.99 2007-04-30 10:03:26.996577
  29472. 31703 245 1 9813 6.99 2007-04-30 09:57:49.996577
  29473. 31704 245 1 10087 3.99 2007-04-30 18:43:48.996577
  29474. 31705 246 1 4092 7.99 2007-04-07 04:22:44.996577
  29475. 31706 246 2 4905 4.99 2007-04-08 19:24:26.996577
  29476. 31707 246 2 4994 2.99 2007-04-08 23:22:39.996577
  29477. 31708 246 2 5347 0.99 2007-04-09 15:59:58.996577
  29478. 31709 246 1 6688 4.99 2007-04-12 10:50:38.996577
  29479. 31710 246 2 9525 5.99 2007-04-30 23:30:44.996577
  29480. 31711 246 2 10208 4.99 2007-04-30 23:23:17.996577
  29481. 31712 247 2 3955 2.99 2007-04-06 20:26:34.996577
  29482. 31713 247 2 4198 6.99 2007-04-07 09:36:37.996577
  29483. 31714 247 1 4492 2.99 2007-04-08 00:00:30.996577
  29484. 31715 247 2 4995 2.99 2007-04-08 23:26:12.996577
  29485. 31716 247 1 5328 6.99 2007-04-09 15:16:55.996577
  29486. 31717 247 1 5842 4.99 2007-04-10 15:40:03.996577
  29487. 31718 247 1 7963 5.99 2007-04-28 12:17:04.996577
  29488. 31719 248 1 3910 0.99 2007-04-06 18:33:44.996577
  29489. 31720 248 2 4541 4.99 2007-04-08 02:32:45.996577
  29490. 31721 248 1 4841 0.99 2007-04-08 16:46:49.996577
  29491. 31722 248 1 5370 2.99 2007-04-09 17:11:45.996577
  29492. 31723 248 2 6617 2.99 2007-04-12 07:08:22.996577
  29493. 31724 248 2 7778 5.99 2007-04-28 05:38:37.996577
  29494. 31725 249 1 4352 9.99 2007-04-07 17:44:24.996577
  29495. 31726 249 1 5011 4.99 2007-04-09 00:13:06.996577
  29496. 31727 249 1 5275 4.99 2007-04-09 13:02:44.996577
  29497. 31728 249 2 5639 3.99 2007-04-10 05:02:05.996577
  29498. 31729 249 2 6670 7.99 2007-04-12 10:12:59.996577
  29499. 31730 249 1 7544 7.99 2007-04-27 20:16:03.996577
  29500. 31731 249 1 7804 2.99 2007-04-28 06:24:26.996577
  29501. 31732 249 2 7881 4.99 2007-04-28 09:01:48.996577
  29502. 31733 250 1 3635 4.99 2007-04-06 05:24:02.996577
  29503. 31734 250 1 3951 3.99 2007-04-06 20:19:07.996577
  29504. 31735 250 1 5479 2.99 2007-04-09 22:15:59.996577
  29505. 31736 250 1 5540 0.99 2007-04-10 01:12:47.996577
  29506. 31737 250 1 5998 2.99 2007-04-10 23:49:12.996577
  29507. 31738 250 1 8579 2.99 2007-04-29 10:27:48.996577
  29508. 31739 250 2 9099 0.99 2007-04-30 07:14:14.996577
  29509. 31740 251 1 3799 4.99 2007-04-06 13:28:40.996577
  29510. 31741 251 2 4026 3.99 2007-04-07 00:44:14.996577
  29511. 31742 251 2 4848 2.99 2007-04-08 16:58:42.996577
  29512. 31743 251 2 5012 2.99 2007-04-09 00:13:30.996577
  29513. 31744 251 2 5979 2.99 2007-04-10 22:45:35.996577
  29514. 31745 251 2 6413 6.99 2007-04-11 21:54:37.996577
  29515. 31746 251 2 7338 8.99 2007-04-27 12:42:00.996577
  29516. 31747 251 2 8443 2.99 2007-04-29 06:01:38.996577
  29517. 31748 251 2 8982 0.99 2007-04-30 02:59:28.996577
  29518. 31749 251 1 9196 2.99 2007-04-30 10:58:45.996577
  29519. 31750 251 1 9892 0.99 2007-04-30 12:34:51.996577
  29520. 31751 252 2 4372 0.99 2007-04-07 18:37:27.996577
  29521. 31752 252 2 5554 2.99 2007-04-10 01:32:04.996577
  29522. 31753 252 1 6357 0.99 2007-04-11 19:27:17.996577
  29523. 31754 252 2 6369 0.99 2007-04-11 19:52:02.996577
  29524. 31755 252 1 7024 4.99 2007-04-27 01:05:06.996577
  29525. 31756 252 2 7121 0.99 2007-04-27 04:26:58.996577
  29526. 31757 252 2 7168 0.99 2007-04-27 06:19:37.996577
  29527. 31758 252 1 7670 0.99 2007-04-28 01:12:51.996577
  29528. 31759 252 1 8636 5.99 2007-04-29 12:52:39.996577
  29529. 31760 252 1 8899 0.99 2007-04-29 23:33:56.996577
  29530. 31761 253 1 3658 7.99 2007-04-06 06:29:34.996577
  29531. 31762 253 1 5505 2.99 2007-04-09 23:07:14.996577
  29532. 31763 253 1 5602 4.99 2007-04-10 03:30:48.996577
  29533. 31764 253 2 7689 2.99 2007-04-28 01:49:50.996577
  29534. 31765 253 2 7851 0.99 2007-04-28 08:00:24.996577
  29535. 31766 253 2 7887 2.99 2007-04-28 09:08:38.996577
  29536. 31767 253 2 8752 2.99 2007-04-29 17:43:33.996577
  29537. 31768 253 2 9606 0.99 2007-04-30 02:19:12.996577
  29538. 31769 253 2 9618 6.99 2007-04-30 02:44:40.996577
  29539. 31770 254 1 3882 4.99 2007-04-06 17:06:47.996577
  29540. 31771 254 2 5042 2.99 2007-04-09 01:48:56.996577
  29541. 31772 254 1 5072 3.99 2007-04-09 03:30:24.996577
  29542. 31773 254 2 5080 2.99 2007-04-09 03:52:21.996577
  29543. 31774 254 1 5537 0.99 2007-04-10 01:04:07.996577
  29544. 31775 254 1 5550 5.99 2007-04-10 01:27:01.996577
  29545. 31776 254 1 5826 7.99 2007-04-10 14:49:28.996577
  29546. 31777 254 2 5930 4.99 2007-04-10 20:27:58.996577
  29547. 31778 254 2 7011 0.99 2007-04-27 00:27:00.996577
  29548. 31779 254 1 7413 4.99 2007-04-27 15:14:06.996577
  29549. 31780 254 2 8216 7.99 2007-04-28 22:12:25.996577
  29550. 31781 254 2 8581 4.99 2007-04-29 10:30:32.996577
  29551. 31782 254 2 9494 1.99 2007-04-30 22:21:12.996577
  29552. 31783 255 1 4547 0.99 2007-04-08 02:48:45.996577
  29553. 31784 255 1 5706 1.99 2007-04-10 08:50:12.996577
  29554. 31785 255 1 5943 0.99 2007-04-10 21:16:39.996577
  29555. 31786 255 2 7475 8.99 2007-04-27 17:36:09.996577
  29556. 31787 255 1 7646 2.99 2007-04-28 00:00:11.996577
  29557. 31788 255 1 8562 0.99 2007-04-29 10:00:39.996577
  29558. 31789 255 1 9061 6.99 2007-04-30 05:50:18.996577
  29559. 31790 256 1 4130 0.99 2007-04-07 06:20:19.996577
  29560. 31791 256 2 4182 0.99 2007-04-07 08:56:26.996577
  29561. 31792 256 1 5179 2.99 2007-04-09 08:29:10.996577
  29562. 31793 256 1 6298 0.99 2007-04-11 16:10:59.996577
  29563. 31794 256 1 7661 3.99 2007-04-28 00:38:53.996577
  29564. 31795 256 2 9424 2.99 2007-04-30 19:39:22.996577
  29565. 31796 257 2 4462 6.99 2007-04-07 22:31:15.996577
  29566. 31797 257 2 4574 4.99 2007-04-08 04:08:08.996577
  29567. 31798 257 1 5495 6.99 2007-04-09 22:45:20.996577
  29568. 31799 257 1 5858 4.99 2007-04-10 16:28:33.996577
  29569. 31800 257 1 6422 5.99 2007-04-11 22:14:45.996577
  29570. 31801 257 2 6711 5.99 2007-04-12 11:52:06.996577
  29571. 31802 257 2 7007 4.99 2007-04-27 00:12:05.996577
  29572. 31803 257 1 7176 2.99 2007-04-27 06:32:54.996577
  29573. 31804 257 1 7496 1.99 2007-04-27 18:32:31.996577
  29574. 31805 257 2 7510 2.99 2007-04-27 19:06:23.996577
  29575. 31806 257 2 7518 5.99 2007-04-27 19:29:42.996577
  29576. 31807 257 2 8156 3.99 2007-04-28 19:27:30.996577
  29577. 31808 257 2 8252 2.99 2007-04-28 23:22:43.996577
  29578. 31809 257 1 8344 4.99 2007-04-29 03:13:51.996577
  29579. 31810 257 1 8640 4.99 2007-04-29 13:02:43.996577
  29580. 31811 257 2 8946 6.99 2007-04-30 01:43:19.996577
  29581. 31812 257 1 9800 4.99 2007-04-30 09:29:24.996577
  29582. 31813 257 2 10142 4.99 2007-04-30 20:39:20.996577
  29583. 31814 258 2 4408 2.99 2007-04-07 20:09:32.996577
  29584. 31815 258 1 4677 5.99 2007-04-08 08:59:02.996577
  29585. 31816 258 2 4897 0.99 2007-04-08 18:53:37.996577
  29586. 31817 258 2 5312 5.99 2007-04-09 14:31:35.996577
  29587. 31818 258 1 5674 0.99 2007-04-10 06:54:52.996577
  29588. 31819 258 1 5935 9.99 2007-04-10 20:39:30.996577
  29589. 31820 258 2 6012 4.99 2007-04-11 00:28:38.996577
  29590. 31821 258 1 7814 2.99 2007-04-28 06:38:14.996577
  29591. 31822 258 1 8675 4.99 2007-04-29 14:24:44.996577
  29592. 31823 258 2 9069 4.99 2007-04-30 06:08:25.996577
  29593. 31824 259 2 4199 5.99 2007-04-07 09:41:33.996577
  29594. 31825 259 2 4489 4.99 2007-04-07 23:52:24.996577
  29595. 31826 259 1 6074 0.99 2007-04-11 03:28:22.996577
  29596. 31827 259 2 6539 3.99 2007-04-12 03:19:15.996577
  29597. 31828 259 2 7188 2.99 2007-04-27 07:00:34.996577
  29598. 31829 259 2 7774 7.99 2007-04-28 05:31:51.996577
  29599. 31830 259 1 7817 4.99 2007-04-28 06:49:21.996577
  29600. 31831 259 2 9205 6.99 2007-04-30 11:15:06.996577
  29601. 31832 259 1 9282 6.99 2007-04-30 13:45:57.996577
  29602. 31833 259 1 9444 7.99 2007-04-30 20:17:10.996577
  29603. 31834 546 1 4591 3.99 2007-04-30 19:44:46.996577
  29604. 31835 260 2 4054 0.99 2007-04-07 02:10:33.996577
  29605. 31836 260 2 4741 6.99 2007-04-08 11:59:49.996577
  29606. 31837 260 1 4870 2.99 2007-04-08 17:43:11.996577
  29607. 31838 260 2 6328 2.99 2007-04-11 17:37:59.996577
  29608. 31839 260 2 7072 0.99 2007-04-27 02:30:59.996577
  29609. 31840 260 1 7268 1.99 2007-04-27 09:51:35.996577
  29610. 31841 260 1 7885 7.99 2007-04-28 09:06:07.996577
  29611. 31842 260 1 8475 1.99 2007-04-29 07:06:07.996577
  29612. 31843 260 1 8484 2.99 2007-04-29 07:20:25.996577
  29613. 31844 260 1 8717 0.99 2007-04-29 16:09:11.996577
  29614. 31845 260 1 8933 0.99 2007-04-30 01:04:32.996577
  29615. 31846 260 2 9176 4.99 2007-04-30 10:19:20.996577
  29616. 31847 261 1 5122 3.99 2007-04-09 05:48:01.996577
  29617. 31848 261 1 5449 5.99 2007-04-09 20:40:27.996577
  29618. 31849 261 2 6515 2.99 2007-04-12 02:18:58.996577
  29619. 31850 261 1 6743 0.99 2007-04-12 12:57:51.996577
  29620. 31851 261 2 9552 4.99 2007-04-30 00:33:58.996577
  29621. 31852 261 1 9842 4.99 2007-04-30 10:53:24.996577
  29622. 31853 261 1 9869 4.99 2007-04-30 11:50:20.996577
  29623. 31854 262 1 3521 1.99 2007-04-05 23:28:37.996577
  29624. 31855 262 1 3699 3.99 2007-04-06 08:39:51.996577
  29625. 31856 262 1 4501 0.99 2007-04-08 00:40:26.996577
  29626. 31857 262 2 5503 0.99 2007-04-09 23:04:03.996577
  29627. 31858 262 1 6291 0.99 2007-04-11 15:45:06.996577
  29628. 31859 262 2 6547 7.99 2007-04-12 03:26:12.996577
  29629. 31860 262 1 6724 3.99 2007-04-12 12:13:41.996577
  29630. 31861 262 2 6762 7.99 2007-04-12 13:53:59.996577
  29631. 31862 262 1 6805 6.99 2007-04-12 15:51:27.996577
  29632. 31863 262 1 6986 4.99 2007-04-26 23:27:31.996577
  29633. 31864 262 1 9105 6.99 2007-04-30 07:18:51.996577
  29634. 31865 263 1 3578 4.99 2007-04-06 02:15:31.996577
  29635. 31866 263 2 3773 2.99 2007-04-06 11:52:00.996577
  29636. 31867 263 2 4637 0.99 2007-04-08 07:18:20.996577
  29637. 31868 263 2 4682 2.99 2007-04-08 09:06:53.996577
  29638. 31869 263 2 5125 2.99 2007-04-09 05:53:54.996577
  29639. 31870 263 2 5254 1.99 2007-04-09 12:18:37.996577
  29640. 31871 263 2 6376 4.99 2007-04-11 20:08:49.996577
  29641. 31872 263 1 6483 2.99 2007-04-12 00:27:46.996577
  29642. 31873 263 1 6808 1.99 2007-04-12 16:05:08.996577
  29643. 31874 263 2 7291 4.99 2007-04-27 10:59:13.996577
  29644. 31875 263 1 7425 4.99 2007-04-27 15:47:01.996577
  29645. 31876 263 1 7706 4.99 2007-04-28 02:31:43.996577
  29646. 31877 263 2 7833 1.99 2007-04-28 07:14:40.996577
  29647. 31878 264 1 3618 6.99 2007-04-06 04:27:11.996577
  29648. 31879 264 1 4328 4.99 2007-04-07 16:31:43.996577
  29649. 31880 264 1 4539 0.99 2007-04-08 02:29:28.996577
  29650. 31881 264 1 6340 8.99 2007-04-11 18:14:31.996577
  29651. 31882 264 2 6391 0.99 2007-04-11 20:51:35.996577
  29652. 31883 264 1 6395 2.99 2007-04-11 20:57:55.996577
  29653. 31884 264 1 6543 0.99 2007-04-12 03:22:58.996577
  29654. 31885 264 1 7006 8.99 2007-04-27 00:10:46.996577
  29655. 31886 264 2 9380 2.99 2007-04-30 17:45:57.996577
  29656. 31887 264 2 9515 0.99 2007-04-30 23:03:31.996577
  29657. 31888 264 1 9861 5.99 2007-04-30 11:32:40.996577
  29658. 31889 264 1 9932 5.99 2007-04-30 13:48:14.996577
  29659. 31890 265 1 3823 2.99 2007-04-06 14:09:53.996577
  29660. 31891 265 1 4610 0.99 2007-04-08 05:56:31.996577
  29661. 31892 265 1 4797 2.99 2007-04-08 15:07:31.996577
  29662. 31893 265 2 5029 7.99 2007-04-09 01:03:58.996577
  29663. 31894 265 1 5417 4.99 2007-04-09 19:02:35.996577
  29664. 31895 265 1 5710 9.99 2007-04-10 09:01:18.996577
  29665. 31896 265 1 6068 4.99 2007-04-11 03:09:35.996577
  29666. 31897 265 2 6371 4.99 2007-04-11 20:00:17.996577
  29667. 31898 265 2 6553 5.99 2007-04-12 03:35:05.996577
  29668. 31899 265 2 6921 6.99 2007-04-12 21:07:29.996577
  29669. 31900 265 2 7414 1.99 2007-04-27 15:14:33.996577
  29670. 31901 265 1 7704 2.99 2007-04-28 02:30:39.996577
  29671. 31902 265 1 8278 5.99 2007-04-29 00:11:21.996577
  29672. 31903 265 2 8489 2.99 2007-04-29 07:26:29.996577
  29673. 31904 265 2 8665 0.99 2007-04-29 14:07:55.996577
  29674. 31905 265 1 9416 2.99 2007-04-30 19:21:11.996577
  29675. 31906 266 2 3585 0.99 2007-04-06 02:51:02.996577
  29676. 31907 266 2 5362 5.99 2007-04-09 16:44:34.996577
  29677. 31908 266 1 5577 4.99 2007-04-10 02:27:06.996577
  29678. 31909 266 1 8492 2.99 2007-04-29 07:32:43.996577
  29679. 31910 266 2 9109 5.99 2007-04-30 07:26:50.996577
  29680. 31911 267 1 3817 2.99 2007-04-06 14:00:11.996577
  29681. 31912 267 1 5340 6.99 2007-04-09 15:40:01.996577
  29682. 31913 267 1 6070 0.99 2007-04-11 03:16:08.996577
  29683. 31914 267 1 6706 3.99 2007-04-12 11:27:42.996577
  29684. 31915 267 1 8190 4.99 2007-04-28 21:15:32.996577
  29685. 31916 267 1 8572 1.99 2007-04-29 10:19:50.996577
  29686. 31917 267 2 12066 7.98 2007-05-14 13:44:29.996577
  29687. 31918 267 2 13713 0.00 2007-05-14 13:44:29.996577
  29688. 31919 269 1 13025 3.98 2007-05-14 13:44:29.996577
  29689. 31920 269 2 12610 0.00 2007-05-14 13:44:29.996577
  29690. 31921 274 1 13486 0.99 2007-05-14 13:44:29.996577
  29691. 31922 279 2 13538 4.99 2007-05-14 13:44:29.996577
  29692. 31923 282 2 15430 0.99 2007-05-14 13:44:29.996577
  29693. 31924 284 1 12064 5.98 2007-05-14 13:44:29.996577
  29694. 31925 284 2 12959 0.00 2007-05-14 13:44:29.996577
  29695. 31926 287 2 14204 0.99 2007-05-14 13:44:29.996577
  29696. 31927 295 2 15735 0.99 2007-05-14 13:44:29.996577
  29697. 31928 296 1 12009 2.99 2007-05-14 13:44:29.996577
  29698. 31929 300 1 15695 4.99 2007-05-14 13:44:29.996577
  29699. 31930 315 2 14426 2.99 2007-05-14 13:44:29.996577
  29700. 31931 317 1 12574 0.99 2007-05-14 13:44:29.996577
  29701. 31932 324 2 13965 2.99 2007-05-14 13:44:29.996577
  29702. 31933 327 1 15297 2.99 2007-05-14 13:44:29.996577
  29703. 31934 330 2 11709 2.99 2007-05-14 13:44:29.996577
  29704. 31935 334 1 14219 0.99 2007-05-14 13:44:29.996577
  29705. 31936 335 2 11541 0.99 2007-05-14 13:44:29.996577
  29706. 31937 336 1 13022 0.99 2007-05-14 13:44:29.996577
  29707. 31938 337 2 11847 0.99 2007-05-14 13:44:29.996577
  29708. 31939 349 1 14915 2.99 2007-05-14 13:44:29.996577
  29709. 31940 352 2 13578 2.99 2007-05-14 13:44:29.996577
  29710. 31941 354 1 12759 7.98 2007-05-14 13:44:29.996577
  29711. 31942 354 1 11782 0.00 2007-05-14 13:44:29.996577
  29712. 31943 355 1 14760 0.99 2007-05-14 13:44:29.996577
  29713. 31944 359 2 15655 4.99 2007-05-14 13:44:29.996577
  29714. 31945 361 1 13298 3.98 2007-05-14 13:44:29.996577
  29715. 31946 361 1 14769 0.00 2007-05-14 13:44:29.996577
  29716. 31947 366 1 13421 4.99 2007-05-14 13:44:29.996577
  29717. 31948 369 1 13898 0.99 2007-05-14 13:44:29.996577
  29718. 31949 373 1 11739 0.99 2007-05-14 13:44:29.996577
  29719. 31950 374 2 15966 2.99 2007-05-14 13:44:29.996577
  29720. 31951 388 1 12891 0.99 2007-05-14 13:44:29.996577
  29721. 31952 394 2 13178 4.99 2007-05-14 13:44:29.996577
  29722. 31953 405 1 12792 0.99 2007-05-14 13:44:29.996577
  29723. 31954 410 1 12665 2.99 2007-05-14 13:44:29.996577
  29724. 31955 411 2 13246 4.99 2007-05-14 13:44:29.996577
  29725. 31956 412 1 15314 0.99 2007-05-14 13:44:29.996577
  29726. 31957 417 2 13261 2.99 2007-05-14 13:44:29.996577
  29727. 31958 421 2 15710 0.99 2007-05-14 13:44:29.996577
  29728. 31959 422 2 15441 2.99 2007-05-14 13:44:29.996577
  29729. 31960 424 1 15094 0.99 2007-05-14 13:44:29.996577
  29730. 31961 431 2 13587 2.99 2007-05-14 13:44:29.996577
  29731. 31962 438 2 12524 0.99 2007-05-14 13:44:29.996577
  29732. 31963 440 1 13106 4.99 2007-05-14 13:44:29.996577
  29733. 31964 441 1 14878 4.99 2007-05-14 13:44:29.996577
  29734. 31965 448 2 14734 3.98 2007-05-14 13:44:29.996577
  29735. 31966 448 1 13577 0.00 2007-05-14 13:44:29.996577
  29736. 31967 450 1 14172 0.99 2007-05-14 13:44:29.996577
  29737. 31968 452 1 14175 4.99 2007-05-14 13:44:29.996577
  29738. 31969 457 1 12645 3.98 2007-05-14 13:44:29.996577
  29739. 31970 457 2 14516 0.00 2007-05-14 13:44:29.996577
  29740. 31971 472 2 14928 4.99 2007-05-14 13:44:29.996577
  29741. 31972 474 1 11909 0.99 2007-05-14 13:44:29.996577
  29742. 31973 476 1 13941 0.99 2007-05-14 13:44:29.996577
  29743. 31974 479 1 12101 0.99 2007-05-14 13:44:29.996577
  29744. 31975 493 2 14160 2.99 2007-05-14 13:44:29.996577
  29745. 31976 495 2 13753 0.99 2007-05-14 13:44:29.996577
  29746. 31977 496 1 13182 2.99 2007-05-14 13:44:29.996577
  29747. 31978 497 1 12698 4.99 2007-05-14 13:44:29.996577
  29748. 31979 505 2 15867 4.99 2007-05-14 13:44:29.996577
  29749. 31980 508 1 14318 0.99 2007-05-14 13:44:29.996577
  29750. 31981 512 1 12786 0.99 2007-05-14 13:44:29.996577
  29751. 31982 516 1 12130 5.98 2007-05-14 13:44:29.996577
  29752. 31983 516 1 12915 0.00 2007-05-14 13:44:29.996577
  29753. 31984 521 2 11672 4.99 2007-05-14 13:44:29.996577
  29754. 31985 525 1 14954 2.99 2007-05-14 13:44:29.996577
  29755. 31986 527 1 14267 2.99 2007-05-14 13:44:29.996577
  29756. 31987 530 1 13561 2.99 2007-05-14 13:44:29.996577
  29757. 31988 532 1 14616 0.99 2007-05-14 13:44:29.996577
  29758. 31989 533 2 14018 2.99 2007-05-14 13:44:29.996577
  29759. 31990 534 1 14526 2.99 2007-05-14 13:44:29.996577
  29760. 31991 537 1 13419 4.99 2007-05-14 13:44:29.996577
  29761. 31992 548 1 13584 0.99 2007-05-14 13:44:29.996577
  29762. 31993 550 2 11757 2.99 2007-05-14 13:44:29.996577
  29763. 31994 557 1 14278 4.99 2007-05-14 13:44:29.996577
  29764. 31995 560 2 12116 5.98 2007-05-14 13:44:29.996577
  29765. 31996 560 2 14425 0.00 2007-05-14 13:44:29.996577
  29766. 31997 561 1 14415 0.99 2007-05-14 13:44:29.996577
  29767. 31998 568 2 14531 2.99 2007-05-14 13:44:29.996577
  29768. 31999 570 1 12716 0.99 2007-05-14 13:44:29.996577
  29769. 32000 576 2 11942 5.98 2007-05-14 13:44:29.996577
  29770. 32001 576 1 13464 0.00 2007-05-14 13:44:29.996577
  29771. 32002 579 2 15794 0.99 2007-05-14 13:44:29.996577
  29772. 32003 582 2 12127 2.99 2007-05-14 13:44:29.996577
  29773. 32004 585 2 14604 4.99 2007-05-14 13:44:29.996577
  29774. 32005 587 1 12144 0.99 2007-05-14 13:44:29.996577
  29775. 32006 590 2 15458 2.99 2007-05-14 13:44:29.996577
  29776. 32007 592 2 14606 0.99 2007-05-14 13:44:29.996577
  29777. 32008 596 1 15423 0.99 2007-05-14 13:44:29.996577
  29778. 32009 597 1 11652 4.99 2007-05-14 13:44:29.996577
  29779. 32010 5 2 13209 0.99 2007-05-14 13:44:29.996577
  29780. 32011 9 1 15813 4.99 2007-05-14 13:44:29.996577
  29781. 32012 11 1 11646 0.99 2007-05-14 13:44:29.996577
  29782. 32013 14 1 13780 4.99 2007-05-14 13:44:29.996577
  29783. 32014 15 1 13798 3.98 2007-05-14 13:44:29.996577
  29784. 32015 15 2 13968 0.00 2007-05-14 13:44:29.996577
  29785. 32016 21 1 14933 2.99 2007-05-14 13:44:29.996577
  29786. 32017 22 1 12222 4.99 2007-05-14 13:44:29.996577
  29787. 32018 23 2 15532 2.99 2007-05-14 13:44:29.996577
  29788. 32019 28 2 12938 2.99 2007-05-14 13:44:29.996577
  29789. 32020 29 2 15577 0.99 2007-05-14 13:44:29.996577
  29790. 32021 33 1 12277 0.99 2007-05-14 13:44:29.996577
  29791. 32022 41 1 15875 2.99 2007-05-14 13:44:29.996577
  29792. 32023 42 1 13351 5.98 2007-05-14 13:44:29.996577
  29793. 32024 42 1 15407 0.00 2007-05-14 13:44:29.996577
  29794. 32025 43 2 15644 3.98 2007-05-14 13:44:29.996577
  29795. 32026 43 1 15745 0.00 2007-05-14 13:44:29.996577
  29796. 32027 44 2 13428 4.99 2007-05-14 13:44:29.996577
  29797. 32028 52 1 12001 4.99 2007-05-14 13:44:29.996577
  29798. 32029 53 2 11657 7.98 2007-05-14 13:44:29.996577
  29799. 32030 53 1 14137 0.00 2007-05-14 13:44:29.996577
  29800. 32031 56 2 15714 4.99 2007-05-14 13:44:29.996577
  29801. 32032 58 2 15326 0.99 2007-05-14 13:44:29.996577
  29802. 32033 60 2 12489 9.98 2007-05-14 13:44:29.996577
  29803. 32034 60 2 14741 0.00 2007-05-14 13:44:29.996577
  29804. 32035 64 2 13333 4.99 2007-05-14 13:44:29.996577
  29805. 32036 69 2 11995 0.99 2007-05-14 13:44:29.996577
  29806. 32037 73 2 13108 2.99 2007-05-14 13:44:29.996577
  29807. 32038 75 2 13534 8.97 2007-05-14 13:44:29.996577
  29808. 32039 75 1 14488 0.00 2007-05-14 13:44:29.996577
  29809. 32040 75 2 15191 0.00 2007-05-14 13:44:29.996577
  29810. 32041 80 2 12457 2.99 2007-05-14 13:44:29.996577
  29811. 32042 83 2 11563 4.99 2007-05-14 13:44:29.996577
  29812. 32043 87 2 12719 4.99 2007-05-14 13:44:29.996577
  29813. 32044 91 1 12902 4.99 2007-05-14 13:44:29.996577
  29814. 32045 94 1 15371 4.99 2007-05-14 13:44:29.996577
  29815. 32046 99 1 11593 0.99 2007-05-14 13:44:29.996577
  29816. 32047 100 2 15021 0.99 2007-05-14 13:44:29.996577
  29817. 32048 101 2 12141 0.99 2007-05-14 13:44:29.996577
  29818. 32049 107 1 13079 1.98 2007-05-14 13:44:29.996577
  29819. 32050 107 1 15497 0.00 2007-05-14 13:44:29.996577
  29820. 32051 108 1 15294 4.99 2007-05-14 13:44:29.996577
  29821. 32052 111 2 15542 2.99 2007-05-14 13:44:29.996577
  29822. 32053 114 2 12506 4.99 2007-05-14 13:44:29.996577
  29823. 32054 115 2 13056 2.99 2007-05-14 13:44:29.996577
  29824. 32055 120 1 15780 4.99 2007-05-14 13:44:29.996577
  29825. 32056 135 1 13390 0.99 2007-05-14 13:44:29.996577
  29826. 32057 142 1 15454 0.99 2007-05-14 13:44:29.996577
  29827. 32058 152 2 11848 4.99 2007-05-14 13:44:29.996577
  29828. 32059 155 2 11496 7.98 2007-05-14 13:44:29.996577
  29829. 32060 155 1 12352 0.00 2007-05-14 13:44:29.996577
  29830. 32061 162 1 14220 0.99 2007-05-14 13:44:29.996577
  29831. 32062 163 2 11754 7.98 2007-05-14 13:44:29.996577
  29832. 32063 163 1 15282 0.00 2007-05-14 13:44:29.996577
  29833. 32064 168 1 15894 0.99 2007-05-14 13:44:29.996577
  29834. 32065 175 2 14060 3.98 2007-05-14 13:44:29.996577
  29835. 32066 175 2 13161 0.00 2007-05-14 13:44:29.996577
  29836. 32067 178 1 12897 4.99 2007-05-14 13:44:29.996577
  29837. 32068 180 1 12901 4.99 2007-05-14 13:44:29.996577
  29838. 32069 181 2 13008 2.99 2007-05-14 13:44:29.996577
  29839. 32070 186 1 14216 2.99 2007-05-14 13:44:29.996577
  29840. 32071 188 1 14503 2.99 2007-05-14 13:44:29.996577
  29841. 32072 190 2 15167 4.99 2007-05-14 13:44:29.996577
  29842. 32073 191 1 14361 0.99 2007-05-14 13:44:29.996577
  29843. 32074 192 1 11611 4.99 2007-05-14 13:44:29.996577
  29844. 32075 193 2 15729 2.99 2007-05-14 13:44:29.996577
  29845. 32076 199 2 13952 2.99 2007-05-14 13:44:29.996577
  29846. 32077 200 2 11866 2.99 2007-05-14 13:44:29.996577
  29847. 32078 208 1 13719 5.98 2007-05-14 13:44:29.996577
  29848. 32079 208 1 15717 0.00 2007-05-14 13:44:29.996577
  29849. 32080 211 2 12746 4.99 2007-05-14 13:44:29.996577
  29850. 32081 213 2 14374 2.99 2007-05-14 13:44:29.996577
  29851. 32082 214 2 15645 2.99 2007-05-14 13:44:29.996577
  29852. 32083 215 2 15862 0.99 2007-05-14 13:44:29.996577
  29853. 32084 216 1 12970 5.98 2007-05-14 13:44:29.996577
  29854. 32085 216 1 11676 0.00 2007-05-14 13:44:29.996577
  29855. 32086 219 1 11577 4.99 2007-05-14 13:44:29.996577
  29856. 32087 227 2 13374 4.99 2007-05-14 13:44:29.996577
  29857. 32088 228 2 12672 3.98 2007-05-14 13:44:29.996577
  29858. 32089 228 1 15234 0.00 2007-05-14 13:44:29.996577
  29859. 32090 229 2 13295 0.99 2007-05-14 13:44:29.996577
  29860. 32091 234 1 15778 0.99 2007-05-14 13:44:29.996577
  29861. 32092 236 1 12988 0.99 2007-05-14 13:44:29.996577
  29862. 32093 244 2 12736 4.99 2007-05-14 13:44:29.996577
  29863. 32094 245 2 12682 2.99 2007-05-14 13:44:29.996577
  29864. 32095 251 1 14107 0.99 2007-05-14 13:44:29.996577
  29865. 32096 252 2 13756 4.99 2007-05-14 13:44:29.996577
  29866. 32097 263 1 15293 0.99 2007-05-14 13:44:29.996577
  29867. 32098 264 2 14243 2.99 2007-05-14 13:44:29.996577
  29868. \.
  29869.  
  29870.  
  29871. --
  29872. -- Name: payment_payment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  29873. --
  29874.  
  29875. SELECT pg_catalog.setval('"payment_payment_id_seq"', 32098, true);
  29876.  
  29877.  
  29878. --
  29879. -- Data for Name: rental; Type: TABLE DATA; Schema: public; Owner: postgres
  29880. --
  29881.  
  29882. COPY "rental" ("rental_id", "rental_date", "inventory_id", "customer_id", "return_date", "staff_id", "last_update") FROM stdin;
  29883. 2 2005-05-24 22:54:33 1525 459 2005-05-28 19:40:33 1 2006-02-16 02:30:53
  29884. 3 2005-05-24 23:03:39 1711 408 2005-06-01 22:12:39 1 2006-02-16 02:30:53
  29885. 4 2005-05-24 23:04:41 2452 333 2005-06-03 01:43:41 2 2006-02-16 02:30:53
  29886. 5 2005-05-24 23:05:21 2079 222 2005-06-02 04:33:21 1 2006-02-16 02:30:53
  29887. 6 2005-05-24 23:08:07 2792 549 2005-05-27 01:32:07 1 2006-02-16 02:30:53
  29888. 7 2005-05-24 23:11:53 3995 269 2005-05-29 20:34:53 2 2006-02-16 02:30:53
  29889. 8 2005-05-24 23:31:46 2346 239 2005-05-27 23:33:46 2 2006-02-16 02:30:53
  29890. 9 2005-05-25 00:00:40 2580 126 2005-05-28 00:22:40 1 2006-02-16 02:30:53
  29891. 10 2005-05-25 00:02:21 1824 399 2005-05-31 22:44:21 2 2006-02-16 02:30:53
  29892. 11 2005-05-25 00:09:02 4443 142 2005-06-02 20:56:02 2 2006-02-16 02:30:53
  29893. 12 2005-05-25 00:19:27 1584 261 2005-05-30 05:44:27 2 2006-02-16 02:30:53
  29894. 13 2005-05-25 00:22:55 2294 334 2005-05-30 04:28:55 1 2006-02-16 02:30:53
  29895. 14 2005-05-25 00:31:15 2701 446 2005-05-26 02:56:15 1 2006-02-16 02:30:53
  29896. 15 2005-05-25 00:39:22 3049 319 2005-06-03 03:30:22 1 2006-02-16 02:30:53
  29897. 16 2005-05-25 00:43:11 389 316 2005-05-26 04:42:11 2 2006-02-16 02:30:53
  29898. 17 2005-05-25 01:06:36 830 575 2005-05-27 00:43:36 1 2006-02-16 02:30:53
  29899. 18 2005-05-25 01:10:47 3376 19 2005-05-31 06:35:47 2 2006-02-16 02:30:53
  29900. 19 2005-05-25 01:17:24 1941 456 2005-05-31 06:00:24 1 2006-02-16 02:30:53
  29901. 20 2005-05-25 01:48:41 3517 185 2005-05-27 02:20:41 2 2006-02-16 02:30:53
  29902. 21 2005-05-25 01:59:46 146 388 2005-05-26 01:01:46 2 2006-02-16 02:30:53
  29903. 22 2005-05-25 02:19:23 727 509 2005-05-26 04:52:23 2 2006-02-16 02:30:53
  29904. 23 2005-05-25 02:40:21 4441 438 2005-05-29 06:34:21 1 2006-02-16 02:30:53
  29905. 24 2005-05-25 02:53:02 3273 350 2005-05-27 01:15:02 1 2006-02-16 02:30:53
  29906. 25 2005-05-25 03:21:20 3961 37 2005-05-27 21:25:20 2 2006-02-16 02:30:53
  29907. 26 2005-05-25 03:36:50 4371 371 2005-05-31 00:34:50 1 2006-02-16 02:30:53
  29908. 27 2005-05-25 03:41:50 1225 301 2005-05-30 01:13:50 2 2006-02-16 02:30:53
  29909. 28 2005-05-25 03:42:37 4068 232 2005-05-26 09:26:37 2 2006-02-16 02:30:53
  29910. 29 2005-05-25 03:47:12 611 44 2005-05-30 00:31:12 2 2006-02-16 02:30:53
  29911. 30 2005-05-25 04:01:32 3744 430 2005-05-30 03:12:32 1 2006-02-16 02:30:53
  29912. 31 2005-05-25 04:05:17 4482 369 2005-05-30 07:15:17 1 2006-02-16 02:30:53
  29913. 32 2005-05-25 04:06:21 3832 230 2005-05-25 23:55:21 1 2006-02-16 02:30:53
  29914. 33 2005-05-25 04:18:51 1681 272 2005-05-27 03:58:51 1 2006-02-16 02:30:53
  29915. 34 2005-05-25 04:19:28 2613 597 2005-05-29 00:10:28 2 2006-02-16 02:30:53
  29916. 35 2005-05-25 04:24:36 1286 484 2005-05-27 07:02:36 2 2006-02-16 02:30:53
  29917. 36 2005-05-25 04:36:26 1308 88 2005-05-29 00:31:26 1 2006-02-16 02:30:53
  29918. 37 2005-05-25 04:44:31 403 535 2005-05-29 01:03:31 1 2006-02-16 02:30:53
  29919. 38 2005-05-25 04:47:44 2540 302 2005-06-01 00:58:44 1 2006-02-16 02:30:53
  29920. 39 2005-05-25 04:51:46 4466 207 2005-05-31 03:14:46 2 2006-02-16 02:30:53
  29921. 40 2005-05-25 05:09:04 2638 413 2005-05-27 23:12:04 1 2006-02-16 02:30:53
  29922. 41 2005-05-25 05:12:29 1761 174 2005-06-02 00:28:29 1 2006-02-16 02:30:53
  29923. 42 2005-05-25 05:24:58 380 523 2005-05-31 02:47:58 2 2006-02-16 02:30:53
  29924. 43 2005-05-25 05:39:25 2578 532 2005-05-26 06:54:25 2 2006-02-16 02:30:53
  29925. 44 2005-05-25 05:53:23 3098 207 2005-05-29 10:56:23 2 2006-02-16 02:30:53
  29926. 45 2005-05-25 05:59:39 1853 436 2005-06-02 09:56:39 2 2006-02-16 02:30:53
  29927. 46 2005-05-25 06:04:08 3318 7 2005-06-02 08:18:08 2 2006-02-16 02:30:53
  29928. 47 2005-05-25 06:05:20 2211 35 2005-05-30 03:04:20 1 2006-02-16 02:30:53
  29929. 48 2005-05-25 06:20:46 1780 282 2005-06-02 05:42:46 1 2006-02-16 02:30:53
  29930. 49 2005-05-25 06:39:35 2965 498 2005-05-30 10:12:35 2 2006-02-16 02:30:53
  29931. 50 2005-05-25 06:44:53 1983 18 2005-05-28 11:28:53 2 2006-02-16 02:30:53
  29932. 51 2005-05-25 06:49:10 1257 256 2005-05-26 06:42:10 1 2006-02-16 02:30:53
  29933. 52 2005-05-25 06:51:29 4017 507 2005-05-31 01:27:29 2 2006-02-16 02:30:53
  29934. 53 2005-05-25 07:19:16 1255 569 2005-05-27 05:19:16 2 2006-02-16 02:30:53
  29935. 54 2005-05-25 07:23:25 2787 291 2005-06-01 05:05:25 2 2006-02-16 02:30:53
  29936. 55 2005-05-25 08:26:13 1139 131 2005-05-30 10:57:13 1 2006-02-16 02:30:53
  29937. 56 2005-05-25 08:28:11 1352 511 2005-05-26 14:21:11 1 2006-02-16 02:30:53
  29938. 57 2005-05-25 08:43:32 3938 6 2005-05-29 06:42:32 2 2006-02-16 02:30:53
  29939. 58 2005-05-25 08:53:14 3050 323 2005-05-28 14:40:14 1 2006-02-16 02:30:53
  29940. 59 2005-05-25 08:56:42 2884 408 2005-06-01 09:52:42 1 2006-02-16 02:30:53
  29941. 60 2005-05-25 08:58:25 330 470 2005-05-30 14:14:25 1 2006-02-16 02:30:53
  29942. 61 2005-05-25 09:01:57 4210 250 2005-06-02 07:22:57 2 2006-02-16 02:30:53
  29943. 62 2005-05-25 09:18:52 261 419 2005-05-30 10:55:52 1 2006-02-16 02:30:53
  29944. 63 2005-05-25 09:19:16 4008 383 2005-05-27 04:24:16 1 2006-02-16 02:30:53
  29945. 64 2005-05-25 09:21:29 79 368 2005-06-03 11:31:29 1 2006-02-16 02:30:53
  29946. 65 2005-05-25 09:32:03 3552 346 2005-05-29 14:21:03 1 2006-02-16 02:30:53
  29947. 66 2005-05-25 09:35:12 1162 86 2005-05-29 04:16:12 2 2006-02-16 02:30:53
  29948. 67 2005-05-25 09:41:01 239 119 2005-05-27 13:46:01 2 2006-02-16 02:30:53
  29949. 68 2005-05-25 09:47:31 4029 120 2005-05-31 10:20:31 2 2006-02-16 02:30:53
  29950. 69 2005-05-25 10:10:14 3207 305 2005-05-27 14:02:14 2 2006-02-16 02:30:53
  29951. 70 2005-05-25 10:15:23 2168 73 2005-05-27 05:56:23 2 2006-02-16 02:30:53
  29952. 71 2005-05-25 10:26:39 2408 100 2005-05-28 04:59:39 1 2006-02-16 02:30:53
  29953. 72 2005-05-25 10:52:13 2260 48 2005-05-28 05:52:13 2 2006-02-16 02:30:53
  29954. 73 2005-05-25 11:00:07 517 391 2005-06-01 13:56:07 2 2006-02-16 02:30:53
  29955. 74 2005-05-25 11:09:48 1744 265 2005-05-26 12:23:48 2 2006-02-16 02:30:53
  29956. 75 2005-05-25 11:13:34 3393 510 2005-06-03 12:58:34 1 2006-02-16 02:30:53
  29957. 76 2005-05-25 11:30:37 3021 1 2005-06-03 12:00:37 2 2006-02-16 02:30:53
  29958. 77 2005-05-25 11:31:59 1303 451 2005-05-26 16:53:59 2 2006-02-16 02:30:53
  29959. 78 2005-05-25 11:35:18 4067 135 2005-05-31 12:48:18 2 2006-02-16 02:30:53
  29960. 79 2005-05-25 12:11:07 3299 245 2005-06-03 10:54:07 2 2006-02-16 02:30:53
  29961. 80 2005-05-25 12:12:07 2478 314 2005-05-31 17:46:07 2 2006-02-16 02:30:53
  29962. 81 2005-05-25 12:15:19 2610 286 2005-06-02 14:08:19 2 2006-02-16 02:30:53
  29963. 82 2005-05-25 12:17:46 1388 427 2005-06-01 10:48:46 1 2006-02-16 02:30:53
  29964. 83 2005-05-25 12:30:15 466 131 2005-05-27 15:40:15 1 2006-02-16 02:30:53
  29965. 84 2005-05-25 12:36:30 1829 492 2005-05-29 18:33:30 1 2006-02-16 02:30:53
  29966. 85 2005-05-25 13:05:34 470 414 2005-05-29 16:53:34 1 2006-02-16 02:30:53
  29967. 86 2005-05-25 13:36:12 2275 266 2005-05-30 14:53:12 1 2006-02-16 02:30:53
  29968. 87 2005-05-25 13:52:43 1586 331 2005-05-29 11:12:43 2 2006-02-16 02:30:53
  29969. 88 2005-05-25 14:13:54 2221 53 2005-05-29 09:32:54 2 2006-02-16 02:30:53
  29970. 89 2005-05-25 14:28:29 2181 499 2005-05-29 14:33:29 1 2006-02-16 02:30:53
  29971. 90 2005-05-25 14:31:25 2984 25 2005-06-01 10:07:25 1 2006-02-16 02:30:53
  29972. 91 2005-05-25 14:57:22 139 267 2005-06-01 18:32:22 1 2006-02-16 02:30:53
  29973. 92 2005-05-25 15:38:46 775 302 2005-05-31 13:40:46 2 2006-02-16 02:30:53
  29974. 93 2005-05-25 15:54:16 4360 288 2005-06-03 20:18:16 1 2006-02-16 02:30:53
  29975. 94 2005-05-25 16:03:42 1675 197 2005-05-30 14:23:42 1 2006-02-16 02:30:53
  29976. 95 2005-05-25 16:12:52 178 400 2005-06-02 18:55:52 2 2006-02-16 02:30:53
  29977. 96 2005-05-25 16:32:19 3418 49 2005-05-30 10:47:19 2 2006-02-16 02:30:53
  29978. 97 2005-05-25 16:34:24 1283 263 2005-05-28 12:13:24 2 2006-02-16 02:30:53
  29979. 98 2005-05-25 16:48:24 2970 269 2005-05-27 11:29:24 2 2006-02-16 02:30:53
  29980. 99 2005-05-25 16:50:20 535 44 2005-05-28 18:52:20 1 2006-02-16 02:30:53
  29981. 100 2005-05-25 16:50:28 2599 208 2005-06-02 22:11:28 1 2006-02-16 02:30:53
  29982. 101 2005-05-25 17:17:04 617 468 2005-05-31 19:47:04 1 2006-02-16 02:30:53
  29983. 102 2005-05-25 17:22:10 373 343 2005-05-31 19:47:10 1 2006-02-16 02:30:53
  29984. 103 2005-05-25 17:30:42 3343 384 2005-06-03 22:36:42 1 2006-02-16 02:30:53
  29985. 104 2005-05-25 17:46:33 4281 310 2005-05-27 15:20:33 1 2006-02-16 02:30:53
  29986. 105 2005-05-25 17:54:12 794 108 2005-05-30 12:03:12 2 2006-02-16 02:30:53
  29987. 106 2005-05-25 18:18:19 3627 196 2005-06-04 00:01:19 2 2006-02-16 02:30:53
  29988. 107 2005-05-25 18:28:09 2833 317 2005-06-03 22:46:09 2 2006-02-16 02:30:53
  29989. 108 2005-05-25 18:30:05 3289 242 2005-05-30 19:40:05 1 2006-02-16 02:30:53
  29990. 109 2005-05-25 18:40:20 1044 503 2005-05-29 20:39:20 2 2006-02-16 02:30:53
  29991. 110 2005-05-25 18:43:49 4108 19 2005-06-03 18:13:49 2 2006-02-16 02:30:53
  29992. 111 2005-05-25 18:45:19 3725 227 2005-05-28 17:18:19 1 2006-02-16 02:30:53
  29993. 112 2005-05-25 18:57:24 2153 500 2005-06-02 20:44:24 1 2006-02-16 02:30:53
  29994. 113 2005-05-25 19:07:40 2963 93 2005-05-27 22:16:40 2 2006-02-16 02:30:53
  29995. 114 2005-05-25 19:12:42 4502 506 2005-06-01 23:10:42 1 2006-02-16 02:30:53
  29996. 115 2005-05-25 19:13:25 749 455 2005-05-29 20:17:25 1 2006-02-16 02:30:53
  29997. 116 2005-05-25 19:27:51 4453 18 2005-05-26 16:23:51 1 2006-02-16 02:30:53
  29998. 117 2005-05-25 19:30:46 4278 7 2005-05-31 23:59:46 2 2006-02-16 02:30:53
  29999. 118 2005-05-25 19:31:18 872 524 2005-05-31 15:00:18 1 2006-02-16 02:30:53
  30000. 119 2005-05-25 19:37:02 1359 51 2005-05-29 23:51:02 2 2006-02-16 02:30:53
  30001. 120 2005-05-25 19:37:47 37 365 2005-06-01 23:29:47 2 2006-02-16 02:30:53
  30002. 121 2005-05-25 19:41:29 1053 405 2005-05-29 21:31:29 1 2006-02-16 02:30:53
  30003. 122 2005-05-25 19:46:21 2908 273 2005-06-02 19:07:21 1 2006-02-16 02:30:53
  30004. 123 2005-05-25 20:26:42 1795 43 2005-05-26 19:41:42 1 2006-02-16 02:30:53
  30005. 124 2005-05-25 20:46:11 212 246 2005-05-30 00:47:11 2 2006-02-16 02:30:53
  30006. 125 2005-05-25 20:48:50 952 368 2005-06-02 21:39:50 1 2006-02-16 02:30:53
  30007. 126 2005-05-25 21:07:59 2047 439 2005-05-28 18:51:59 1 2006-02-16 02:30:53
  30008. 127 2005-05-25 21:10:40 2026 94 2005-06-02 21:38:40 1 2006-02-16 02:30:53
  30009. 128 2005-05-25 21:19:53 4322 40 2005-05-29 23:34:53 1 2006-02-16 02:30:53
  30010. 129 2005-05-25 21:20:03 4154 23 2005-06-04 01:25:03 2 2006-02-16 02:30:53
  30011. 130 2005-05-25 21:21:56 3990 56 2005-05-30 22:41:56 2 2006-02-16 02:30:53
  30012. 131 2005-05-25 21:42:46 815 325 2005-05-30 23:25:46 2 2006-02-16 02:30:53
  30013. 132 2005-05-25 21:46:54 3367 479 2005-05-31 21:02:54 1 2006-02-16 02:30:53
  30014. 133 2005-05-25 21:48:30 399 237 2005-05-30 00:26:30 2 2006-02-16 02:30:53
  30015. 134 2005-05-25 21:48:41 2272 222 2005-06-02 18:28:41 1 2006-02-16 02:30:53
  30016. 135 2005-05-25 21:58:58 103 304 2005-06-03 17:50:58 1 2006-02-16 02:30:53
  30017. 136 2005-05-25 22:02:30 2296 504 2005-05-31 18:06:30 1 2006-02-16 02:30:53
  30018. 137 2005-05-25 22:25:18 2591 560 2005-06-01 02:30:18 2 2006-02-16 02:30:53
  30019. 138 2005-05-25 22:48:22 4134 586 2005-05-29 20:21:22 2 2006-02-16 02:30:53
  30020. 139 2005-05-25 23:00:21 327 257 2005-05-29 17:12:21 1 2006-02-16 02:30:53
  30021. 140 2005-05-25 23:34:22 655 354 2005-05-27 01:10:22 1 2006-02-16 02:30:53
  30022. 141 2005-05-25 23:34:53 811 89 2005-06-02 01:57:53 1 2006-02-16 02:30:53
  30023. 142 2005-05-25 23:43:47 4407 472 2005-05-29 00:46:47 2 2006-02-16 02:30:53
  30024. 143 2005-05-25 23:45:52 847 297 2005-05-27 21:41:52 2 2006-02-16 02:30:53
  30025. 144 2005-05-25 23:49:56 1689 357 2005-06-01 21:41:56 2 2006-02-16 02:30:53
  30026. 145 2005-05-25 23:59:03 3905 82 2005-05-31 02:56:03 1 2006-02-16 02:30:53
  30027. 146 2005-05-26 00:07:11 1431 433 2005-06-04 00:20:11 2 2006-02-16 02:30:53
  30028. 147 2005-05-26 00:17:50 633 274 2005-05-29 23:21:50 2 2006-02-16 02:30:53
  30029. 148 2005-05-26 00:25:23 4252 142 2005-06-01 19:29:23 2 2006-02-16 02:30:53
  30030. 149 2005-05-26 00:28:05 1084 319 2005-06-02 21:30:05 2 2006-02-16 02:30:53
  30031. 150 2005-05-26 00:28:39 909 429 2005-06-01 02:10:39 2 2006-02-16 02:30:53
  30032. 151 2005-05-26 00:37:28 2942 14 2005-05-30 06:28:28 1 2006-02-16 02:30:53
  30033. 152 2005-05-26 00:41:10 2622 57 2005-06-03 06:05:10 1 2006-02-16 02:30:53
  30034. 153 2005-05-26 00:47:47 3888 348 2005-05-27 21:28:47 1 2006-02-16 02:30:53
  30035. 154 2005-05-26 00:55:56 1354 185 2005-05-29 23:18:56 2 2006-02-16 02:30:53
  30036. 155 2005-05-26 01:15:05 288 551 2005-06-01 00:03:05 1 2006-02-16 02:30:53
  30037. 156 2005-05-26 01:19:05 3193 462 2005-05-27 23:43:05 1 2006-02-16 02:30:53
  30038. 157 2005-05-26 01:25:21 887 344 2005-05-26 21:17:21 2 2006-02-16 02:30:53
  30039. 158 2005-05-26 01:27:11 2395 354 2005-06-03 00:30:11 2 2006-02-16 02:30:53
  30040. 159 2005-05-26 01:34:28 3453 505 2005-05-29 04:00:28 1 2006-02-16 02:30:53
  30041. 160 2005-05-26 01:46:20 1885 290 2005-06-01 05:45:20 1 2006-02-16 02:30:53
  30042. 161 2005-05-26 01:51:48 2941 182 2005-05-27 05:42:48 1 2006-02-16 02:30:53
  30043. 162 2005-05-26 02:02:05 1229 296 2005-05-27 03:38:05 2 2006-02-16 02:30:53
  30044. 163 2005-05-26 02:26:23 2306 104 2005-06-04 06:36:23 1 2006-02-16 02:30:53
  30045. 164 2005-05-26 02:26:49 1070 151 2005-05-28 00:32:49 1 2006-02-16 02:30:53
  30046. 165 2005-05-26 02:28:36 2735 33 2005-06-02 03:21:36 1 2006-02-16 02:30:53
  30047. 166 2005-05-26 02:49:11 3894 322 2005-05-31 01:28:11 1 2006-02-16 02:30:53
  30048. 167 2005-05-26 02:50:31 865 401 2005-05-27 03:07:31 1 2006-02-16 02:30:53
  30049. 168 2005-05-26 03:07:43 2714 469 2005-06-02 02:09:43 2 2006-02-16 02:30:53
  30050. 169 2005-05-26 03:09:30 1758 381 2005-05-27 01:37:30 2 2006-02-16 02:30:53
  30051. 170 2005-05-26 03:11:12 3688 107 2005-06-02 03:53:12 1 2006-02-16 02:30:53
  30052. 171 2005-05-26 03:14:15 4483 400 2005-06-03 00:24:15 2 2006-02-16 02:30:53
  30053. 172 2005-05-26 03:17:42 2873 176 2005-05-29 04:11:42 2 2006-02-16 02:30:53
  30054. 173 2005-05-26 03:42:10 3596 533 2005-05-28 01:37:10 2 2006-02-16 02:30:53
  30055. 174 2005-05-26 03:44:10 3954 552 2005-05-28 07:13:10 2 2006-02-16 02:30:53
  30056. 175 2005-05-26 03:46:26 4346 47 2005-06-03 06:01:26 2 2006-02-16 02:30:53
  30057. 176 2005-05-26 03:47:39 851 250 2005-06-01 02:36:39 2 2006-02-16 02:30:53
  30058. 177 2005-05-26 04:14:29 3545 548 2005-06-01 08:16:29 2 2006-02-16 02:30:53
  30059. 178 2005-05-26 04:21:46 1489 196 2005-06-04 07:09:46 2 2006-02-16 02:30:53
  30060. 179 2005-05-26 04:26:06 2575 19 2005-06-03 10:06:06 1 2006-02-16 02:30:53
  30061. 180 2005-05-26 04:46:23 2752 75 2005-06-01 09:58:23 1 2006-02-16 02:30:53
  30062. 181 2005-05-26 04:47:06 2417 587 2005-05-29 06:34:06 2 2006-02-16 02:30:53
  30063. 182 2005-05-26 04:49:17 4396 237 2005-06-01 05:43:17 2 2006-02-16 02:30:53
  30064. 183 2005-05-26 05:01:18 2877 254 2005-06-01 09:04:18 1 2006-02-16 02:30:53
  30065. 184 2005-05-26 05:29:49 1970 556 2005-05-28 10:10:49 1 2006-02-16 02:30:53
  30066. 185 2005-05-26 05:30:03 2598 125 2005-06-02 09:48:03 2 2006-02-16 02:30:53
  30067. 186 2005-05-26 05:32:52 1799 468 2005-06-03 07:19:52 2 2006-02-16 02:30:53
  30068. 187 2005-05-26 05:42:37 4004 515 2005-06-04 00:38:37 1 2006-02-16 02:30:53
  30069. 188 2005-05-26 05:47:12 3342 243 2005-05-26 23:48:12 1 2006-02-16 02:30:53
  30070. 189 2005-05-26 06:01:41 984 247 2005-05-27 06:11:41 1 2006-02-16 02:30:53
  30071. 190 2005-05-26 06:11:28 3962 533 2005-06-01 09:44:28 1 2006-02-16 02:30:53
  30072. 191 2005-05-26 06:14:06 4365 412 2005-05-28 05:33:06 1 2006-02-16 02:30:53
  30073. 192 2005-05-26 06:20:37 1897 437 2005-06-02 10:57:37 1 2006-02-16 02:30:53
  30074. 193 2005-05-26 06:41:48 3900 270 2005-05-30 06:21:48 2 2006-02-16 02:30:53
  30075. 194 2005-05-26 06:52:33 1337 29 2005-05-30 04:08:33 2 2006-02-16 02:30:53
  30076. 195 2005-05-26 06:52:36 506 564 2005-05-31 02:47:36 2 2006-02-16 02:30:53
  30077. 196 2005-05-26 06:55:58 190 184 2005-05-27 10:54:58 1 2006-02-16 02:30:53
  30078. 197 2005-05-26 06:59:21 4212 546 2005-06-03 05:04:21 2 2006-02-16 02:30:53
  30079. 198 2005-05-26 07:03:49 1789 54 2005-06-04 11:45:49 1 2006-02-16 02:30:53
  30080. 199 2005-05-26 07:11:58 2135 71 2005-05-28 09:06:58 1 2006-02-16 02:30:53
  30081. 200 2005-05-26 07:12:21 3926 321 2005-05-31 12:07:21 1 2006-02-16 02:30:53
  30082. 201 2005-05-26 07:13:45 776 444 2005-06-04 02:02:45 2 2006-02-16 02:30:53
  30083. 202 2005-05-26 07:27:36 674 20 2005-06-02 03:52:36 1 2006-02-16 02:30:53
  30084. 203 2005-05-26 07:27:57 3374 109 2005-06-03 12:52:57 1 2006-02-16 02:30:53
  30085. 204 2005-05-26 07:30:37 1842 528 2005-05-30 08:11:37 1 2006-02-16 02:30:53
  30086. 205 2005-05-26 07:59:37 303 114 2005-05-29 09:43:37 2 2006-02-16 02:30:53
  30087. 206 2005-05-26 08:01:54 1717 345 2005-05-27 06:26:54 1 2006-02-16 02:30:53
  30088. 207 2005-05-26 08:04:38 102 47 2005-05-27 09:32:38 2 2006-02-16 02:30:53
  30089. 208 2005-05-26 08:10:22 3669 274 2005-05-27 03:55:22 1 2006-02-16 02:30:53
  30090. 209 2005-05-26 08:14:01 729 379 2005-05-27 09:00:01 1 2006-02-16 02:30:53
  30091. 210 2005-05-26 08:14:15 1801 391 2005-05-27 12:12:15 2 2006-02-16 02:30:53
  30092. 211 2005-05-26 08:33:10 4005 170 2005-05-28 14:09:10 1 2006-02-16 02:30:53
  30093. 212 2005-05-26 08:34:41 764 59 2005-05-30 12:46:41 2 2006-02-16 02:30:53
  30094. 213 2005-05-26 08:44:08 1505 394 2005-05-31 12:33:08 2 2006-02-16 02:30:53
  30095. 214 2005-05-26 08:48:49 1453 98 2005-05-31 04:06:49 2 2006-02-16 02:30:53
  30096. 215 2005-05-26 09:02:47 679 197 2005-05-28 09:45:47 2 2006-02-16 02:30:53
  30097. 216 2005-05-26 09:17:43 1398 91 2005-06-03 08:21:43 1 2006-02-16 02:30:53
  30098. 217 2005-05-26 09:24:26 4395 121 2005-05-31 03:24:26 2 2006-02-16 02:30:53
  30099. 218 2005-05-26 09:27:09 2291 309 2005-06-04 11:53:09 2 2006-02-16 02:30:53
  30100. 219 2005-05-26 09:41:45 3074 489 2005-05-28 04:40:45 1 2006-02-16 02:30:53
  30101. 220 2005-05-26 10:06:49 1259 542 2005-06-01 07:43:49 1 2006-02-16 02:30:53
  30102. 221 2005-05-26 10:14:09 3578 143 2005-05-29 05:57:09 1 2006-02-16 02:30:53
  30103. 222 2005-05-26 10:14:38 2745 83 2005-05-31 08:36:38 2 2006-02-16 02:30:53
  30104. 223 2005-05-26 10:15:23 3121 460 2005-05-30 11:43:23 1 2006-02-16 02:30:53
  30105. 224 2005-05-26 10:18:27 4285 318 2005-06-04 06:59:27 1 2006-02-16 02:30:53
  30106. 225 2005-05-26 10:27:50 651 467 2005-06-01 07:01:50 2 2006-02-16 02:30:53
  30107. 226 2005-05-26 10:44:04 4181 221 2005-05-31 13:26:04 2 2006-02-16 02:30:53
  30108. 227 2005-05-26 10:51:46 214 301 2005-05-30 07:24:46 1 2006-02-16 02:30:53
  30109. 228 2005-05-26 10:54:28 511 571 2005-06-04 09:39:28 1 2006-02-16 02:30:53
  30110. 229 2005-05-26 11:19:20 1131 312 2005-05-31 11:56:20 2 2006-02-16 02:30:53
  30111. 230 2005-05-26 11:31:50 1085 58 2005-05-30 15:22:50 1 2006-02-16 02:30:53
  30112. 231 2005-05-26 11:31:59 4032 365 2005-05-27 07:27:59 1 2006-02-16 02:30:53
  30113. 232 2005-05-26 11:38:05 2945 256 2005-05-27 08:42:05 2 2006-02-16 02:30:53
  30114. 233 2005-05-26 11:43:44 715 531 2005-05-28 17:28:44 2 2006-02-16 02:30:53
  30115. 234 2005-05-26 11:47:20 1321 566 2005-06-03 10:39:20 2 2006-02-16 02:30:53
  30116. 235 2005-05-26 11:51:09 3537 119 2005-06-04 09:36:09 1 2006-02-16 02:30:53
  30117. 236 2005-05-26 11:53:49 1265 446 2005-05-28 13:55:49 1 2006-02-16 02:30:53
  30118. 237 2005-05-26 12:15:13 241 536 2005-05-29 18:10:13 1 2006-02-16 02:30:53
  30119. 238 2005-05-26 12:30:22 503 211 2005-05-27 06:49:22 1 2006-02-16 02:30:53
  30120. 239 2005-05-26 12:30:26 131 49 2005-06-01 13:26:26 2 2006-02-16 02:30:53
  30121. 240 2005-05-26 12:40:23 3420 103 2005-06-04 07:22:23 1 2006-02-16 02:30:53
  30122. 241 2005-05-26 12:49:01 4438 245 2005-05-28 11:43:01 2 2006-02-16 02:30:53
  30123. 242 2005-05-26 13:05:08 2095 214 2005-06-02 15:26:08 1 2006-02-16 02:30:53
  30124. 243 2005-05-26 13:06:05 1721 543 2005-06-03 17:28:05 2 2006-02-16 02:30:53
  30125. 244 2005-05-26 13:40:40 1041 257 2005-05-31 11:58:40 1 2006-02-16 02:30:53
  30126. 245 2005-05-26 13:46:59 3045 158 2005-05-27 09:58:59 2 2006-02-16 02:30:53
  30127. 246 2005-05-26 13:57:07 2829 240 2005-05-29 10:12:07 2 2006-02-16 02:30:53
  30128. 247 2005-05-26 14:01:05 4095 102 2005-05-28 13:38:05 2 2006-02-16 02:30:53
  30129. 248 2005-05-26 14:07:58 1913 545 2005-05-31 14:03:58 2 2006-02-16 02:30:53
  30130. 249 2005-05-26 14:19:09 2428 472 2005-05-28 17:47:09 2 2006-02-16 02:30:53
  30131. 250 2005-05-26 14:30:24 368 539 2005-05-27 08:50:24 1 2006-02-16 02:30:53
  30132. 251 2005-05-26 14:35:40 4352 204 2005-05-29 17:17:40 1 2006-02-16 02:30:53
  30133. 252 2005-05-26 14:39:53 1203 187 2005-06-02 14:48:53 1 2006-02-16 02:30:53
  30134. 253 2005-05-26 14:43:14 2969 416 2005-05-27 12:21:14 1 2006-02-16 02:30:53
  30135. 254 2005-05-26 14:43:48 1835 390 2005-05-31 09:19:48 2 2006-02-16 02:30:53
  30136. 255 2005-05-26 14:52:15 3264 114 2005-05-27 12:45:15 1 2006-02-16 02:30:53
  30137. 256 2005-05-26 15:20:58 3194 436 2005-05-31 15:58:58 1 2006-02-16 02:30:53
  30138. 257 2005-05-26 15:27:05 2570 373 2005-05-29 16:25:05 2 2006-02-16 02:30:53
  30139. 258 2005-05-26 15:28:14 3534 502 2005-05-30 18:38:14 2 2006-02-16 02:30:53
  30140. 259 2005-05-26 15:32:46 30 482 2005-06-04 15:27:46 2 2006-02-16 02:30:53
  30141. 260 2005-05-26 15:42:20 435 21 2005-05-31 13:21:20 2 2006-02-16 02:30:53
  30142. 261 2005-05-26 15:44:23 1369 414 2005-06-02 09:47:23 2 2006-02-16 02:30:53
  30143. 262 2005-05-26 15:46:56 4261 236 2005-05-28 15:49:56 2 2006-02-16 02:30:53
  30144. 263 2005-05-26 15:47:40 1160 449 2005-05-30 10:07:40 2 2006-02-16 02:30:53
  30145. 264 2005-05-26 16:00:49 2069 251 2005-05-27 10:12:49 2 2006-02-16 02:30:53
  30146. 265 2005-05-26 16:07:38 2276 303 2005-06-01 14:20:38 1 2006-02-16 02:30:53
  30147. 266 2005-05-26 16:08:05 3303 263 2005-05-27 10:55:05 2 2006-02-16 02:30:53
  30148. 267 2005-05-26 16:16:21 1206 417 2005-05-30 16:53:21 2 2006-02-16 02:30:53
  30149. 268 2005-05-26 16:19:08 1714 75 2005-05-27 14:35:08 1 2006-02-16 02:30:53
  30150. 269 2005-05-26 16:19:46 3501 322 2005-05-27 15:59:46 2 2006-02-16 02:30:53
  30151. 270 2005-05-26 16:20:56 207 200 2005-06-03 12:40:56 2 2006-02-16 02:30:53
  30152. 271 2005-05-26 16:22:01 2388 92 2005-06-03 17:30:01 2 2006-02-16 02:30:53
  30153. 272 2005-05-26 16:27:11 971 71 2005-06-03 13:10:11 2 2006-02-16 02:30:53
  30154. 273 2005-05-26 16:29:36 1590 193 2005-05-29 18:49:36 2 2006-02-16 02:30:53
  30155. 274 2005-05-26 16:48:51 656 311 2005-06-03 18:17:51 1 2006-02-16 02:30:53
  30156. 275 2005-05-26 17:09:53 1718 133 2005-06-04 22:35:53 1 2006-02-16 02:30:53
  30157. 276 2005-05-26 17:16:07 1221 58 2005-06-03 12:59:07 1 2006-02-16 02:30:53
  30158. 277 2005-05-26 17:32:11 1409 45 2005-05-28 22:54:11 1 2006-02-16 02:30:53
  30159. 278 2005-05-26 17:40:58 182 214 2005-06-02 16:43:58 2 2006-02-16 02:30:53
  30160. 279 2005-05-26 18:02:50 661 384 2005-06-03 18:48:50 2 2006-02-16 02:30:53
  30161. 280 2005-05-26 18:36:58 1896 167 2005-05-27 23:42:58 1 2006-02-16 02:30:53
  30162. 281 2005-05-26 18:49:35 1208 582 2005-05-27 18:11:35 2 2006-02-16 02:30:53
  30163. 282 2005-05-26 18:56:26 4486 282 2005-06-01 16:32:26 2 2006-02-16 02:30:53
  30164. 283 2005-05-26 19:05:05 3530 242 2005-05-31 19:19:05 1 2006-02-16 02:30:53
  30165. 284 2005-05-26 19:21:44 350 359 2005-06-04 14:18:44 2 2006-02-16 02:30:53
  30166. 285 2005-05-26 19:41:40 2486 162 2005-05-31 16:58:40 2 2006-02-16 02:30:53
  30167. 286 2005-05-26 19:44:51 314 371 2005-06-04 18:00:51 2 2006-02-16 02:30:53
  30168. 287 2005-05-26 19:44:54 3631 17 2005-06-02 01:10:54 1 2006-02-16 02:30:53
  30169. 288 2005-05-26 19:47:49 3546 82 2005-06-03 20:53:49 2 2006-02-16 02:30:53
  30170. 289 2005-05-26 20:01:09 2449 81 2005-05-28 15:09:09 1 2006-02-16 02:30:53
  30171. 290 2005-05-26 20:08:33 2776 429 2005-05-30 00:32:33 1 2006-02-16 02:30:53
  30172. 291 2005-05-26 20:20:47 485 577 2005-06-03 02:06:47 2 2006-02-16 02:30:53
  30173. 292 2005-05-26 20:22:12 4264 515 2005-06-05 00:58:12 1 2006-02-16 02:30:53
  30174. 293 2005-05-26 20:27:02 1828 158 2005-06-03 16:45:02 2 2006-02-16 02:30:53
  30175. 294 2005-05-26 20:29:57 2751 369 2005-05-28 17:20:57 1 2006-02-16 02:30:53
  30176. 295 2005-05-26 20:33:20 4030 65 2005-05-27 18:23:20 2 2006-02-16 02:30:53
  30177. 296 2005-05-26 20:35:19 3878 468 2005-06-04 02:31:19 2 2006-02-16 02:30:53
  30178. 297 2005-05-26 20:48:48 1594 48 2005-05-27 19:52:48 2 2006-02-16 02:30:53
  30179. 298 2005-05-26 20:52:26 1083 460 2005-05-29 22:08:26 2 2006-02-16 02:30:53
  30180. 299 2005-05-26 20:55:36 4376 448 2005-05-28 00:25:36 2 2006-02-16 02:30:53
  30181. 300 2005-05-26 20:57:00 249 47 2005-06-05 01:34:00 2 2006-02-16 02:30:53
  30182. 301 2005-05-26 21:06:14 3448 274 2005-06-01 01:54:14 2 2006-02-16 02:30:53
  30183. 302 2005-05-26 21:13:46 2921 387 2005-06-03 15:49:46 2 2006-02-16 02:30:53
  30184. 303 2005-05-26 21:16:52 1111 596 2005-05-27 23:41:52 2 2006-02-16 02:30:53
  30185. 304 2005-05-26 21:21:28 1701 534 2005-06-02 00:05:28 1 2006-02-16 02:30:53
  30186. 305 2005-05-26 21:22:07 2665 464 2005-06-02 22:33:07 2 2006-02-16 02:30:53
  30187. 306 2005-05-26 21:31:57 2781 547 2005-05-28 19:37:57 1 2006-02-16 02:30:53
  30188. 307 2005-05-26 21:48:13 1097 375 2005-06-04 22:24:13 1 2006-02-16 02:30:53
  30189. 308 2005-05-26 22:01:39 187 277 2005-06-04 20:24:39 2 2006-02-16 02:30:53
  30190. 309 2005-05-26 22:38:10 1946 251 2005-06-02 03:10:10 2 2006-02-16 02:30:53
  30191. 310 2005-05-26 22:41:07 593 409 2005-06-02 04:09:07 1 2006-02-16 02:30:53
  30192. 311 2005-05-26 22:51:37 2830 201 2005-06-01 00:02:37 1 2006-02-16 02:30:53
  30193. 312 2005-05-26 22:52:19 2008 143 2005-06-02 18:14:19 2 2006-02-16 02:30:53
  30194. 313 2005-05-26 22:56:19 4156 594 2005-05-29 01:29:19 2 2006-02-16 02:30:53
  30195. 314 2005-05-26 23:09:41 2851 203 2005-05-28 22:49:41 2 2006-02-16 02:30:53
  30196. 315 2005-05-26 23:12:55 2847 238 2005-05-29 23:33:55 1 2006-02-16 02:30:53
  30197. 316 2005-05-26 23:22:55 3828 249 2005-05-29 23:25:55 2 2006-02-16 02:30:53
  30198. 317 2005-05-26 23:23:56 26 391 2005-06-01 19:56:56 2 2006-02-16 02:30:53
  30199. 318 2005-05-26 23:37:39 2559 60 2005-06-03 04:31:39 2 2006-02-16 02:30:53
  30200. 319 2005-05-26 23:52:13 3024 77 2005-05-30 18:55:13 1 2006-02-16 02:30:53
  30201. 320 2005-05-27 00:09:24 1090 2 2005-05-28 04:30:24 2 2006-02-16 02:30:53
  30202. 322 2005-05-27 00:47:35 4556 496 2005-06-02 00:32:35 1 2006-02-16 02:30:53
  30203. 323 2005-05-27 00:49:27 2362 144 2005-05-30 03:12:27 1 2006-02-16 02:30:53
  30204. 324 2005-05-27 01:00:04 3364 292 2005-05-30 04:27:04 1 2006-02-16 02:30:53
  30205. 325 2005-05-27 01:09:55 2510 449 2005-05-31 07:01:55 2 2006-02-16 02:30:53
  30206. 326 2005-05-27 01:10:11 3979 432 2005-06-04 20:25:11 2 2006-02-16 02:30:53
  30207. 327 2005-05-27 01:18:57 2678 105 2005-06-04 04:06:57 1 2006-02-16 02:30:53
  30208. 328 2005-05-27 01:29:31 2524 451 2005-06-01 02:27:31 1 2006-02-16 02:30:53
  30209. 329 2005-05-27 01:57:14 2659 231 2005-05-31 04:19:14 2 2006-02-16 02:30:53
  30210. 330 2005-05-27 02:15:30 1536 248 2005-06-04 05:09:30 2 2006-02-16 02:30:53
  30211. 331 2005-05-27 02:22:26 1872 67 2005-06-05 00:25:26 1 2006-02-16 02:30:53
  30212. 332 2005-05-27 02:27:10 1529 299 2005-06-03 01:26:10 2 2006-02-16 02:30:53
  30213. 333 2005-05-27 02:52:21 4001 412 2005-06-01 00:55:21 2 2006-02-16 02:30:53
  30214. 334 2005-05-27 03:03:07 3973 194 2005-05-29 03:54:07 1 2006-02-16 02:30:53
  30215. 335 2005-05-27 03:07:10 1411 16 2005-06-05 00:15:10 2 2006-02-16 02:30:53
  30216. 336 2005-05-27 03:15:23 1811 275 2005-05-29 22:43:23 1 2006-02-16 02:30:53
  30217. 337 2005-05-27 03:22:30 751 19 2005-06-02 03:27:30 1 2006-02-16 02:30:53
  30218. 338 2005-05-27 03:42:52 2596 165 2005-06-01 05:23:52 2 2006-02-16 02:30:53
  30219. 339 2005-05-27 03:47:18 2410 516 2005-06-04 05:46:18 2 2006-02-16 02:30:53
  30220. 340 2005-05-27 03:55:25 946 209 2005-06-04 07:57:25 2 2006-02-16 02:30:53
  30221. 341 2005-05-27 04:01:42 4168 56 2005-06-05 08:51:42 1 2006-02-16 02:30:53
  30222. 342 2005-05-27 04:11:04 4019 539 2005-05-29 01:28:04 2 2006-02-16 02:30:53
  30223. 343 2005-05-27 04:13:41 3301 455 2005-05-28 08:34:41 1 2006-02-16 02:30:53
  30224. 344 2005-05-27 04:30:22 2327 236 2005-05-29 10:13:22 2 2006-02-16 02:30:53
  30225. 345 2005-05-27 04:32:25 1396 144 2005-05-31 09:50:25 1 2006-02-16 02:30:53
  30226. 346 2005-05-27 04:34:41 4319 14 2005-06-05 04:24:41 2 2006-02-16 02:30:53
  30227. 347 2005-05-27 04:40:33 1625 378 2005-05-28 09:56:33 2 2006-02-16 02:30:53
  30228. 348 2005-05-27 04:50:56 1825 473 2005-06-01 04:43:56 1 2006-02-16 02:30:53
  30229. 349 2005-05-27 04:53:11 2920 36 2005-05-28 06:33:11 2 2006-02-16 02:30:53
  30230. 350 2005-05-27 05:01:28 2756 9 2005-06-04 05:01:28 2 2006-02-16 02:30:53
  30231. 351 2005-05-27 05:39:03 3371 118 2005-06-01 11:10:03 1 2006-02-16 02:30:53
  30232. 352 2005-05-27 05:48:19 4369 157 2005-05-29 09:05:19 1 2006-02-16 02:30:53
  30233. 353 2005-05-27 06:03:39 3989 503 2005-06-03 04:39:39 2 2006-02-16 02:30:53
  30234. 354 2005-05-27 06:12:26 2058 452 2005-06-01 06:48:26 1 2006-02-16 02:30:53
  30235. 355 2005-05-27 06:15:33 141 446 2005-06-01 02:50:33 2 2006-02-16 02:30:53
  30236. 356 2005-05-27 06:32:30 2868 382 2005-05-30 06:24:30 2 2006-02-16 02:30:53
  30237. 357 2005-05-27 06:37:15 4417 198 2005-05-30 07:04:15 2 2006-02-16 02:30:53
  30238. 358 2005-05-27 06:43:59 1925 102 2005-05-29 11:28:59 2 2006-02-16 02:30:53
  30239. 359 2005-05-27 06:48:33 1156 152 2005-05-29 03:55:33 1 2006-02-16 02:30:53
  30240. 360 2005-05-27 06:51:14 3489 594 2005-06-03 01:58:14 1 2006-02-16 02:30:53
  30241. 361 2005-05-27 07:03:28 6 587 2005-05-31 08:01:28 1 2006-02-16 02:30:53
  30242. 362 2005-05-27 07:10:25 2324 147 2005-06-01 08:34:25 1 2006-02-16 02:30:53
  30243. 363 2005-05-27 07:14:00 4282 345 2005-05-28 12:22:00 2 2006-02-16 02:30:53
  30244. 364 2005-05-27 07:20:12 833 430 2005-05-31 10:44:12 2 2006-02-16 02:30:53
  30245. 365 2005-05-27 07:31:20 2887 167 2005-06-04 04:46:20 1 2006-02-16 02:30:53
  30246. 366 2005-05-27 07:33:54 360 134 2005-06-04 01:55:54 2 2006-02-16 02:30:53
  30247. 367 2005-05-27 07:37:02 3437 439 2005-05-30 05:43:02 2 2006-02-16 02:30:53
  30248. 368 2005-05-27 07:42:29 1247 361 2005-06-04 11:20:29 2 2006-02-16 02:30:53
  30249. 369 2005-05-27 07:46:49 944 508 2005-06-01 06:20:49 2 2006-02-16 02:30:53
  30250. 370 2005-05-27 07:49:43 3347 22 2005-06-05 06:39:43 2 2006-02-16 02:30:53
  30251. 371 2005-05-27 08:08:18 1235 295 2005-06-05 03:05:18 2 2006-02-16 02:30:53
  30252. 372 2005-05-27 08:13:58 4089 510 2005-06-04 03:50:58 2 2006-02-16 02:30:53
  30253. 373 2005-05-27 08:16:25 1649 464 2005-06-01 11:41:25 1 2006-02-16 02:30:53
  30254. 374 2005-05-27 08:26:30 4420 337 2005-06-05 07:13:30 1 2006-02-16 02:30:53
  30255. 375 2005-05-27 08:49:21 1815 306 2005-06-04 14:11:21 1 2006-02-16 02:30:53
  30256. 376 2005-05-27 08:58:15 3197 542 2005-06-02 04:48:15 1 2006-02-16 02:30:53
  30257. 377 2005-05-27 09:04:05 3012 170 2005-06-02 03:36:05 2 2006-02-16 02:30:53
  30258. 378 2005-05-27 09:23:22 2242 53 2005-05-29 15:20:22 1 2006-02-16 02:30:53
  30259. 379 2005-05-27 09:25:32 3462 584 2005-06-02 06:19:32 1 2006-02-16 02:30:53
  30260. 380 2005-05-27 09:34:39 1777 176 2005-06-04 11:45:39 1 2006-02-16 02:30:53
  30261. 381 2005-05-27 09:43:25 2748 371 2005-05-31 12:00:25 1 2006-02-16 02:30:53
  30262. 382 2005-05-27 10:12:00 4358 183 2005-05-31 15:03:00 1 2006-02-16 02:30:53
  30263. 383 2005-05-27 10:12:20 955 298 2005-06-03 10:37:20 1 2006-02-16 02:30:53
  30264. 384 2005-05-27 10:18:20 910 371 2005-06-02 09:21:20 2 2006-02-16 02:30:53
  30265. 385 2005-05-27 10:23:25 1565 213 2005-05-30 15:27:25 2 2006-02-16 02:30:53
  30266. 386 2005-05-27 10:26:31 1288 109 2005-05-30 08:32:31 1 2006-02-16 02:30:53
  30267. 387 2005-05-27 10:35:27 2684 506 2005-06-01 13:37:27 2 2006-02-16 02:30:53
  30268. 388 2005-05-27 10:37:27 434 28 2005-05-30 05:45:27 1 2006-02-16 02:30:53
  30269. 389 2005-05-27 10:45:41 691 500 2005-06-05 06:22:41 2 2006-02-16 02:30:53
  30270. 390 2005-05-27 11:02:26 3759 48 2005-06-02 16:09:26 2 2006-02-16 02:30:53
  30271. 391 2005-05-27 11:03:55 2193 197 2005-06-01 11:59:55 2 2006-02-16 02:30:53
  30272. 392 2005-05-27 11:14:42 263 359 2005-06-01 14:28:42 2 2006-02-16 02:30:53
  30273. 393 2005-05-27 11:18:25 145 251 2005-05-28 07:10:25 2 2006-02-16 02:30:53
  30274. 394 2005-05-27 11:26:11 1890 274 2005-06-03 16:44:11 2 2006-02-16 02:30:53
  30275. 395 2005-05-27 11:45:49 752 575 2005-05-31 13:42:49 1 2006-02-16 02:30:53
  30276. 396 2005-05-27 11:47:04 1020 112 2005-05-29 10:14:04 1 2006-02-16 02:30:53
  30277. 397 2005-05-27 12:29:02 4193 544 2005-05-28 17:36:02 2 2006-02-16 02:30:53
  30278. 398 2005-05-27 12:44:03 1686 422 2005-06-02 08:19:03 1 2006-02-16 02:30:53
  30279. 399 2005-05-27 12:48:38 553 204 2005-05-29 15:27:38 1 2006-02-16 02:30:53
  30280. 400 2005-05-27 12:51:44 258 249 2005-05-31 08:34:44 2 2006-02-16 02:30:53
  30281. 401 2005-05-27 12:57:55 2179 46 2005-05-29 17:55:55 2 2006-02-16 02:30:53
  30282. 402 2005-05-27 13:17:18 461 354 2005-05-30 08:53:18 2 2006-02-16 02:30:53
  30283. 403 2005-05-27 13:28:52 3983 424 2005-05-29 11:47:52 2 2006-02-16 02:30:53
  30284. 404 2005-05-27 13:31:51 1293 168 2005-05-30 16:58:51 1 2006-02-16 02:30:53
  30285. 405 2005-05-27 13:32:39 4090 272 2005-06-05 18:53:39 2 2006-02-16 02:30:53
  30286. 406 2005-05-27 13:46:46 2136 381 2005-05-30 12:43:46 1 2006-02-16 02:30:53
  30287. 407 2005-05-27 13:57:38 1077 44 2005-05-31 18:23:38 1 2006-02-16 02:30:53
  30288. 408 2005-05-27 13:57:39 1438 84 2005-05-28 11:57:39 1 2006-02-16 02:30:53
  30289. 409 2005-05-27 14:10:58 3652 220 2005-06-02 10:40:58 2 2006-02-16 02:30:53
  30290. 410 2005-05-27 14:11:22 4010 506 2005-06-02 20:06:22 2 2006-02-16 02:30:53
  30291. 411 2005-05-27 14:14:14 1434 388 2005-06-03 17:39:14 1 2006-02-16 02:30:53
  30292. 412 2005-05-27 14:17:23 1400 375 2005-05-29 15:07:23 2 2006-02-16 02:30:53
  30293. 413 2005-05-27 14:45:37 3516 307 2005-06-03 11:11:37 1 2006-02-16 02:30:53
  30294. 414 2005-05-27 14:48:20 1019 219 2005-05-31 14:39:20 2 2006-02-16 02:30:53
  30295. 415 2005-05-27 14:51:45 3698 304 2005-05-28 19:07:45 2 2006-02-16 02:30:53
  30296. 416 2005-05-27 15:02:10 2371 222 2005-05-29 10:34:10 2 2006-02-16 02:30:53
  30297. 417 2005-05-27 15:07:27 2253 475 2005-05-29 20:01:27 2 2006-02-16 02:30:53
  30298. 418 2005-05-27 15:13:17 3063 151 2005-06-04 12:05:17 2 2006-02-16 02:30:53
  30299. 419 2005-05-27 15:15:11 2514 77 2005-06-02 11:53:11 1 2006-02-16 02:30:53
  30300. 420 2005-05-27 15:19:38 619 93 2005-06-03 15:07:38 2 2006-02-16 02:30:53
  30301. 421 2005-05-27 15:30:13 2985 246 2005-06-04 13:19:13 2 2006-02-16 02:30:53
  30302. 422 2005-05-27 15:31:55 1152 150 2005-06-01 11:47:55 2 2006-02-16 02:30:53
  30303. 423 2005-05-27 15:32:57 1783 284 2005-06-02 19:03:57 1 2006-02-16 02:30:53
  30304. 424 2005-05-27 15:34:01 2815 35 2005-06-05 09:44:01 1 2006-02-16 02:30:53
  30305. 425 2005-05-27 15:51:30 1518 182 2005-06-03 16:52:30 2 2006-02-16 02:30:53
  30306. 426 2005-05-27 15:56:57 1103 522 2005-06-05 11:45:57 1 2006-02-16 02:30:53
  30307. 427 2005-05-27 16:10:04 1677 288 2005-06-05 13:22:04 2 2006-02-16 02:30:53
  30308. 428 2005-05-27 16:10:58 3349 161 2005-05-31 17:24:58 2 2006-02-16 02:30:53
  30309. 429 2005-05-27 16:21:26 129 498 2005-06-05 20:23:26 2 2006-02-16 02:30:53
  30310. 430 2005-05-27 16:22:10 1920 190 2005-06-05 13:10:10 1 2006-02-16 02:30:53
  30311. 431 2005-05-27 16:31:05 4507 334 2005-06-05 11:29:05 1 2006-02-16 02:30:53
  30312. 432 2005-05-27 16:40:29 1119 46 2005-05-29 16:20:29 1 2006-02-16 02:30:53
  30313. 433 2005-05-27 16:40:40 4364 574 2005-05-30 19:55:40 2 2006-02-16 02:30:53
  30314. 434 2005-05-27 16:54:27 3360 246 2005-06-04 22:26:27 1 2006-02-16 02:30:53
  30315. 435 2005-05-27 17:17:09 3328 3 2005-06-02 11:20:09 2 2006-02-16 02:30:53
  30316. 436 2005-05-27 17:21:04 4317 267 2005-05-30 21:26:04 2 2006-02-16 02:30:53
  30317. 437 2005-05-27 17:47:22 1800 525 2005-06-05 14:22:22 2 2006-02-16 02:30:53
  30318. 438 2005-05-27 17:52:34 4260 249 2005-06-05 22:23:34 2 2006-02-16 02:30:53
  30319. 439 2005-05-27 17:54:48 354 319 2005-06-02 23:01:48 2 2006-02-16 02:30:53
  30320. 440 2005-05-27 18:00:35 4452 314 2005-05-29 16:15:35 1 2006-02-16 02:30:53
  30321. 441 2005-05-27 18:11:05 1578 54 2005-05-30 22:45:05 1 2006-02-16 02:30:53
  30322. 442 2005-05-27 18:12:13 1457 403 2005-05-30 12:30:13 2 2006-02-16 02:30:53
  30323. 443 2005-05-27 18:35:20 2021 547 2005-06-04 18:58:20 1 2006-02-16 02:30:53
  30324. 444 2005-05-27 18:39:15 723 239 2005-06-01 15:56:15 1 2006-02-16 02:30:53
  30325. 445 2005-05-27 18:42:57 1757 293 2005-05-30 22:35:57 2 2006-02-16 02:30:53
  30326. 446 2005-05-27 18:48:41 1955 401 2005-06-03 16:42:41 2 2006-02-16 02:30:53
  30327. 447 2005-05-27 18:57:02 3890 133 2005-06-05 18:38:02 1 2006-02-16 02:30:53
  30328. 448 2005-05-27 19:03:08 2671 247 2005-06-03 20:28:08 2 2006-02-16 02:30:53
  30329. 449 2005-05-27 19:13:15 2469 172 2005-06-04 01:08:15 2 2006-02-16 02:30:53
  30330. 450 2005-05-27 19:18:54 1343 247 2005-06-05 23:52:54 1 2006-02-16 02:30:53
  30331. 451 2005-05-27 19:27:54 205 87 2005-05-29 01:07:54 2 2006-02-16 02:30:53
  30332. 452 2005-05-27 19:30:33 2993 127 2005-05-30 20:53:33 2 2006-02-16 02:30:53
  30333. 453 2005-05-27 19:31:16 4425 529 2005-05-29 23:06:16 1 2006-02-16 02:30:53
  30334. 454 2005-05-27 19:31:36 3499 575 2005-05-30 15:46:36 1 2006-02-16 02:30:53
  30335. 455 2005-05-27 19:43:29 3344 343 2005-06-04 23:40:29 2 2006-02-16 02:30:53
  30336. 456 2005-05-27 19:50:06 1699 92 2005-06-02 22:14:06 1 2006-02-16 02:30:53
  30337. 457 2005-05-27 19:52:29 2368 300 2005-06-02 17:17:29 2 2006-02-16 02:30:53
  30338. 458 2005-05-27 19:58:36 3350 565 2005-06-06 00:51:36 1 2006-02-16 02:30:53
  30339. 459 2005-05-27 20:00:04 597 468 2005-05-29 22:47:04 1 2006-02-16 02:30:53
  30340. 460 2005-05-27 20:02:03 4238 240 2005-05-28 16:14:03 1 2006-02-16 02:30:53
  30341. 461 2005-05-27 20:08:55 2077 447 2005-06-01 14:32:55 1 2006-02-16 02:30:53
  30342. 462 2005-05-27 20:10:36 2314 364 2005-06-03 21:12:36 2 2006-02-16 02:30:53
  30343. 463 2005-05-27 20:11:47 826 21 2005-06-04 21:18:47 1 2006-02-16 02:30:53
  30344. 464 2005-05-27 20:42:44 1313 193 2005-05-30 00:49:44 2 2006-02-16 02:30:53
  30345. 465 2005-05-27 20:44:36 20 261 2005-06-02 02:43:36 1 2006-02-16 02:30:53
  30346. 466 2005-05-27 20:57:07 1786 442 2005-05-29 15:52:07 1 2006-02-16 02:30:53
  30347. 467 2005-05-27 21:10:03 339 557 2005-06-01 16:08:03 1 2006-02-16 02:30:53
  30348. 468 2005-05-27 21:13:10 2656 101 2005-06-04 15:26:10 2 2006-02-16 02:30:53
  30349. 469 2005-05-27 21:14:26 4463 154 2005-06-05 21:51:26 1 2006-02-16 02:30:53
  30350. 470 2005-05-27 21:17:08 1613 504 2005-06-04 17:47:08 1 2006-02-16 02:30:53
  30351. 471 2005-05-27 21:32:42 2872 209 2005-05-31 00:39:42 2 2006-02-16 02:30:53
  30352. 472 2005-05-27 21:36:15 1338 528 2005-05-29 21:07:15 1 2006-02-16 02:30:53
  30353. 473 2005-05-27 21:36:34 802 105 2005-06-05 17:02:34 1 2006-02-16 02:30:53
  30354. 474 2005-05-27 22:11:56 1474 274 2005-05-31 19:07:56 1 2006-02-16 02:30:53
  30355. 475 2005-05-27 22:16:26 2520 159 2005-05-28 19:58:26 1 2006-02-16 02:30:53
  30356. 476 2005-05-27 22:31:36 2451 543 2005-06-03 19:12:36 1 2006-02-16 02:30:53
  30357. 477 2005-05-27 22:33:33 2437 161 2005-06-02 18:35:33 2 2006-02-16 02:30:53
  30358. 478 2005-05-27 22:38:20 424 557 2005-05-31 18:39:20 2 2006-02-16 02:30:53
  30359. 479 2005-05-27 22:39:10 2060 231 2005-06-05 22:46:10 2 2006-02-16 02:30:53
  30360. 480 2005-05-27 22:47:39 2108 220 2005-06-04 21:17:39 2 2006-02-16 02:30:53
  30361. 481 2005-05-27 22:49:27 72 445 2005-05-30 17:46:27 2 2006-02-16 02:30:53
  30362. 482 2005-05-27 22:53:02 4178 546 2005-06-01 22:53:02 2 2006-02-16 02:30:53
  30363. 483 2005-05-27 23:00:25 1510 32 2005-05-28 21:30:25 1 2006-02-16 02:30:53
  30364. 484 2005-05-27 23:26:45 3115 491 2005-05-29 21:16:45 2 2006-02-16 02:30:53
  30365. 485 2005-05-27 23:40:52 2392 105 2005-05-28 22:40:52 2 2006-02-16 02:30:53
  30366. 486 2005-05-27 23:51:12 1822 398 2005-05-28 20:26:12 1 2006-02-16 02:30:53
  30367. 487 2005-05-28 00:00:30 3774 569 2005-05-28 19:18:30 2 2006-02-16 02:30:53
  30368. 488 2005-05-28 00:07:50 393 168 2005-06-03 22:30:50 2 2006-02-16 02:30:53
  30369. 489 2005-05-28 00:09:12 1940 476 2005-05-31 04:44:12 2 2006-02-16 02:30:53
  30370. 490 2005-05-28 00:09:56 3524 95 2005-05-30 22:32:56 2 2006-02-16 02:30:53
  30371. 491 2005-05-28 00:13:35 1326 196 2005-05-29 00:11:35 2 2006-02-16 02:30:53
  30372. 492 2005-05-28 00:24:58 1999 228 2005-05-28 22:34:58 1 2006-02-16 02:30:53
  30373. 493 2005-05-28 00:34:11 184 501 2005-05-30 18:40:11 1 2006-02-16 02:30:53
  30374. 494 2005-05-28 00:39:31 1850 64 2005-06-02 19:35:31 1 2006-02-16 02:30:53
  30375. 495 2005-05-28 00:40:48 1007 526 2005-05-29 06:07:48 1 2006-02-16 02:30:53
  30376. 496 2005-05-28 00:43:41 1785 56 2005-06-04 03:56:41 1 2006-02-16 02:30:53
  30377. 497 2005-05-28 00:54:39 2636 20 2005-06-03 20:47:39 2 2006-02-16 02:30:53
  30378. 498 2005-05-28 01:01:21 458 287 2005-05-30 21:20:21 2 2006-02-16 02:30:53
  30379. 499 2005-05-28 01:05:07 2381 199 2005-06-05 19:54:07 2 2006-02-16 02:30:53
  30380. 500 2005-05-28 01:05:25 4500 145 2005-05-31 20:04:25 1 2006-02-16 02:30:53
  30381. 501 2005-05-28 01:09:36 601 162 2005-05-30 06:14:36 2 2006-02-16 02:30:53
  30382. 502 2005-05-28 01:34:43 3131 179 2005-05-31 01:02:43 2 2006-02-16 02:30:53
  30383. 503 2005-05-28 01:35:25 3005 288 2005-05-28 22:12:25 2 2006-02-16 02:30:53
  30384. 504 2005-05-28 02:05:34 2086 170 2005-05-30 23:03:34 1 2006-02-16 02:30:53
  30385. 505 2005-05-28 02:06:37 71 111 2005-05-29 06:57:37 1 2006-02-16 02:30:53
  30386. 506 2005-05-28 02:09:19 667 469 2005-06-05 20:34:19 1 2006-02-16 02:30:53
  30387. 507 2005-05-28 02:31:19 3621 421 2005-06-02 05:07:19 2 2006-02-16 02:30:53
  30388. 508 2005-05-28 02:40:50 4179 434 2005-06-05 03:05:50 1 2006-02-16 02:30:53
  30389. 509 2005-05-28 02:51:12 3416 147 2005-05-31 06:27:12 1 2006-02-16 02:30:53
  30390. 510 2005-05-28 02:52:14 4338 113 2005-05-30 21:20:14 2 2006-02-16 02:30:53
  30391. 511 2005-05-28 03:04:04 3827 296 2005-06-03 04:58:04 1 2006-02-16 02:30:53
  30392. 512 2005-05-28 03:07:50 2176 231 2005-06-05 02:12:50 2 2006-02-16 02:30:53
  30393. 513 2005-05-28 03:08:10 225 489 2005-05-29 07:22:10 1 2006-02-16 02:30:53
  30394. 514 2005-05-28 03:09:28 1697 597 2005-06-05 00:49:28 2 2006-02-16 02:30:53
  30395. 515 2005-05-28 03:10:10 3369 110 2005-06-04 02:18:10 2 2006-02-16 02:30:53
  30396. 516 2005-05-28 03:11:47 4357 400 2005-06-04 02:19:47 1 2006-02-16 02:30:53
  30397. 517 2005-05-28 03:17:57 234 403 2005-05-29 06:33:57 1 2006-02-16 02:30:53
  30398. 518 2005-05-28 03:18:02 4087 480 2005-05-30 05:32:02 1 2006-02-16 02:30:53
  30399. 519 2005-05-28 03:22:33 3564 245 2005-06-03 05:06:33 1 2006-02-16 02:30:53
  30400. 520 2005-05-28 03:27:37 3845 161 2005-06-04 05:47:37 1 2006-02-16 02:30:53
  30401. 521 2005-05-28 03:32:22 2397 374 2005-05-28 22:37:22 1 2006-02-16 02:30:53
  30402. 522 2005-05-28 03:33:20 3195 382 2005-05-31 04:23:20 1 2006-02-16 02:30:53
  30403. 523 2005-05-28 03:53:26 1905 138 2005-05-31 05:58:26 2 2006-02-16 02:30:53
  30404. 524 2005-05-28 03:57:28 1962 223 2005-05-31 05:20:28 1 2006-02-16 02:30:53
  30405. 525 2005-05-28 04:25:33 1817 14 2005-06-06 04:18:33 1 2006-02-16 02:30:53
  30406. 526 2005-05-28 04:27:37 1387 408 2005-05-30 07:52:37 1 2006-02-16 02:30:53
  30407. 527 2005-05-28 04:28:38 266 169 2005-06-02 08:19:38 1 2006-02-16 02:30:53
  30408. 528 2005-05-28 04:30:05 1655 359 2005-06-03 10:01:05 2 2006-02-16 02:30:53
  30409. 529 2005-05-28 04:34:17 2624 469 2005-05-30 00:35:17 1 2006-02-16 02:30:53
  30410. 530 2005-05-28 05:13:01 3332 312 2005-06-01 10:21:01 2 2006-02-16 02:30:53
  30411. 531 2005-05-28 05:23:38 1113 589 2005-05-29 08:00:38 2 2006-02-16 02:30:53
  30412. 532 2005-05-28 05:36:58 2793 120 2005-06-02 01:50:58 1 2006-02-16 02:30:53
  30413. 533 2005-05-28 06:14:46 4306 528 2005-06-01 06:26:46 2 2006-02-16 02:30:53
  30414. 534 2005-05-28 06:15:25 992 184 2005-06-06 07:51:25 1 2006-02-16 02:30:53
  30415. 535 2005-05-28 06:16:32 4209 307 2005-05-31 02:48:32 1 2006-02-16 02:30:53
  30416. 536 2005-05-28 06:17:33 2962 514 2005-06-03 10:02:33 2 2006-02-16 02:30:53
  30417. 537 2005-05-28 06:20:55 3095 315 2005-06-05 11:48:55 2 2006-02-16 02:30:53
  30418. 538 2005-05-28 06:21:05 2262 110 2005-06-02 01:22:05 2 2006-02-16 02:30:53
  30419. 539 2005-05-28 06:26:16 3427 161 2005-05-30 02:02:16 1 2006-02-16 02:30:53
  30420. 540 2005-05-28 06:40:25 3321 119 2005-06-06 00:47:25 1 2006-02-16 02:30:53
  30421. 541 2005-05-28 06:41:58 1662 535 2005-06-02 09:12:58 2 2006-02-16 02:30:53
  30422. 542 2005-05-28 06:42:13 4444 261 2005-06-03 09:05:13 1 2006-02-16 02:30:53
  30423. 543 2005-05-28 06:43:34 530 493 2005-06-06 07:16:34 2 2006-02-16 02:30:53
  30424. 544 2005-05-28 07:03:00 2964 311 2005-06-06 06:23:00 1 2006-02-16 02:30:53
  30425. 545 2005-05-28 07:10:20 1086 54 2005-06-04 01:47:20 2 2006-02-16 02:30:53
  30426. 546 2005-05-28 07:16:25 487 20 2005-06-01 08:36:25 1 2006-02-16 02:30:53
  30427. 547 2005-05-28 07:24:28 2065 506 2005-06-06 01:31:28 2 2006-02-16 02:30:53
  30428. 548 2005-05-28 07:34:56 3704 450 2005-06-05 03:14:56 2 2006-02-16 02:30:53
  30429. 549 2005-05-28 07:35:37 1818 159 2005-06-02 09:08:37 1 2006-02-16 02:30:53
  30430. 550 2005-05-28 07:39:16 3632 432 2005-06-06 12:20:16 2 2006-02-16 02:30:53
  30431. 551 2005-05-28 07:44:18 3119 315 2005-06-02 12:55:18 2 2006-02-16 02:30:53
  30432. 552 2005-05-28 07:53:38 23 106 2005-06-04 12:45:38 2 2006-02-16 02:30:53
  30433. 553 2005-05-28 08:14:44 1349 176 2005-06-02 03:01:44 2 2006-02-16 02:30:53
  30434. 554 2005-05-28 08:23:16 1951 376 2005-05-31 03:29:16 2 2006-02-16 02:30:53
  30435. 555 2005-05-28 08:31:14 4397 55 2005-05-30 07:34:14 2 2006-02-16 02:30:53
  30436. 556 2005-05-28 08:31:36 1814 22 2005-06-06 07:29:36 2 2006-02-16 02:30:53
  30437. 557 2005-05-28 08:36:22 158 444 2005-06-03 10:42:22 2 2006-02-16 02:30:53
  30438. 558 2005-05-28 08:38:43 4163 442 2005-06-06 13:52:43 1 2006-02-16 02:30:53
  30439. 559 2005-05-28 08:39:02 1227 572 2005-06-05 08:38:02 2 2006-02-16 02:30:53
  30440. 560 2005-05-28 08:53:02 644 463 2005-06-04 12:27:02 2 2006-02-16 02:30:53
  30441. 561 2005-05-28 08:54:06 928 77 2005-06-05 05:54:06 1 2006-02-16 02:30:53
  30442. 562 2005-05-28 09:01:21 3390 102 2005-06-02 05:26:21 2 2006-02-16 02:30:53
  30443. 563 2005-05-28 09:10:49 53 324 2005-06-06 11:32:49 1 2006-02-16 02:30:53
  30444. 564 2005-05-28 09:12:09 2973 282 2005-05-29 05:07:09 1 2006-02-16 02:30:53
  30445. 565 2005-05-28 09:26:31 1494 288 2005-06-01 07:28:31 1 2006-02-16 02:30:53
  30446. 566 2005-05-28 09:51:39 4330 253 2005-06-05 09:35:39 1 2006-02-16 02:30:53
  30447. 567 2005-05-28 09:56:20 3308 184 2005-06-01 06:41:20 2 2006-02-16 02:30:53
  30448. 568 2005-05-28 09:57:36 2232 155 2005-05-31 15:44:36 1 2006-02-16 02:30:53
  30449. 569 2005-05-28 10:12:41 4534 56 2005-06-03 10:08:41 2 2006-02-16 02:30:53
  30450. 570 2005-05-28 10:15:04 1122 21 2005-05-30 08:32:04 1 2006-02-16 02:30:53
  30451. 571 2005-05-28 10:17:41 4250 516 2005-06-05 07:56:41 1 2006-02-16 02:30:53
  30452. 572 2005-05-28 10:30:13 1899 337 2005-06-02 05:04:13 2 2006-02-16 02:30:53
  30453. 573 2005-05-28 10:35:23 4020 1 2005-06-03 06:32:23 1 2006-02-16 02:30:53
  30454. 574 2005-05-28 10:44:28 3883 76 2005-06-04 11:42:28 1 2006-02-16 02:30:53
  30455. 575 2005-05-28 10:56:09 4451 142 2005-06-05 15:39:09 1 2006-02-16 02:30:53
  30456. 576 2005-05-28 10:56:10 1866 588 2005-06-04 13:15:10 2 2006-02-16 02:30:53
  30457. 577 2005-05-28 11:09:14 375 6 2005-06-01 13:27:14 2 2006-02-16 02:30:53
  30458. 578 2005-05-28 11:15:48 2938 173 2005-06-02 09:59:48 1 2006-02-16 02:30:53
  30459. 579 2005-05-28 11:19:23 3481 181 2005-06-02 13:51:23 1 2006-02-16 02:30:53
  30460. 580 2005-05-28 11:19:53 3515 17 2005-06-01 10:44:53 2 2006-02-16 02:30:53
  30461. 581 2005-05-28 11:20:29 1380 186 2005-06-04 12:37:29 2 2006-02-16 02:30:53
  30462. 582 2005-05-28 11:33:46 4579 198 2005-05-29 08:33:46 1 2006-02-16 02:30:53
  30463. 583 2005-05-28 11:48:55 2679 386 2005-06-04 07:09:55 2 2006-02-16 02:30:53
  30464. 584 2005-05-28 11:49:00 1833 69 2005-06-01 11:54:00 1 2006-02-16 02:30:53
  30465. 585 2005-05-28 11:50:45 3544 490 2005-06-03 15:35:45 2 2006-02-16 02:30:53
  30466. 586 2005-05-28 12:03:00 898 77 2005-05-29 13:16:00 1 2006-02-16 02:30:53
  30467. 587 2005-05-28 12:05:33 1413 64 2005-05-30 13:45:33 2 2006-02-16 02:30:53
  30468. 588 2005-05-28 12:08:37 95 89 2005-05-29 16:25:37 2 2006-02-16 02:30:53
  30469. 589 2005-05-28 12:27:50 4231 308 2005-06-03 07:15:50 2 2006-02-16 02:30:53
  30470. 590 2005-05-28 13:06:50 473 462 2005-06-02 09:18:50 1 2006-02-16 02:30:53
  30471. 591 2005-05-28 13:11:04 377 19 2005-05-29 17:20:04 2 2006-02-16 02:30:53
  30472. 592 2005-05-28 13:21:08 638 244 2005-05-29 16:55:08 1 2006-02-16 02:30:53
  30473. 593 2005-05-28 13:33:23 1810 16 2005-05-30 17:10:23 2 2006-02-16 02:30:53
  30474. 594 2005-05-28 13:41:56 2766 538 2005-05-30 12:00:56 1 2006-02-16 02:30:53
  30475. 595 2005-05-28 13:59:54 595 294 2005-06-05 15:16:54 1 2006-02-16 02:30:53
  30476. 596 2005-05-28 14:00:03 821 589 2005-05-29 17:10:03 1 2006-02-16 02:30:53
  30477. 597 2005-05-28 14:01:02 4469 249 2005-06-06 19:06:02 2 2006-02-16 02:30:53
  30478. 598 2005-05-28 14:04:50 599 159 2005-06-03 18:00:50 2 2006-02-16 02:30:53
  30479. 599 2005-05-28 14:05:57 4136 393 2005-06-01 16:41:57 2 2006-02-16 02:30:53
  30480. 600 2005-05-28 14:08:19 1567 332 2005-06-03 11:57:19 2 2006-02-16 02:30:53
  30481. 601 2005-05-28 14:08:22 3225 429 2005-06-04 10:50:22 1 2006-02-16 02:30:53
  30482. 602 2005-05-28 14:15:54 1300 590 2005-06-05 15:16:54 2 2006-02-16 02:30:53
  30483. 603 2005-05-28 14:27:51 3248 537 2005-05-29 13:13:51 1 2006-02-16 02:30:53
  30484. 604 2005-05-28 14:37:07 1585 426 2005-06-03 11:03:07 2 2006-02-16 02:30:53
  30485. 605 2005-05-28 14:39:10 4232 501 2005-06-01 09:28:10 2 2006-02-16 02:30:53
  30486. 606 2005-05-28 14:48:39 3509 299 2005-06-04 09:44:39 2 2006-02-16 02:30:53
  30487. 607 2005-05-28 15:02:41 2561 554 2005-05-30 12:54:41 2 2006-02-16 02:30:53
  30488. 608 2005-05-28 15:03:44 4254 494 2005-06-04 17:14:44 2 2006-02-16 02:30:53
  30489. 609 2005-05-28 15:04:02 2944 150 2005-06-05 14:47:02 2 2006-02-16 02:30:53
  30490. 610 2005-05-28 15:15:25 3642 500 2005-06-02 12:30:25 2 2006-02-16 02:30:53
  30491. 611 2005-05-28 15:18:18 1230 580 2005-05-31 20:15:18 2 2006-02-16 02:30:53
  30492. 612 2005-05-28 15:24:54 2180 161 2005-05-30 14:22:54 2 2006-02-16 02:30:53
  30493. 613 2005-05-28 15:27:22 270 595 2005-06-02 20:01:22 1 2006-02-16 02:30:53
  30494. 614 2005-05-28 15:33:28 280 307 2005-06-04 12:27:28 2 2006-02-16 02:30:53
  30495. 615 2005-05-28 15:35:52 3397 533 2005-06-03 17:35:52 2 2006-02-16 02:30:53
  30496. 616 2005-05-28 15:45:39 989 471 2005-06-02 09:55:39 1 2006-02-16 02:30:53
  30497. 617 2005-05-28 15:49:14 4142 372 2005-05-31 14:29:14 2 2006-02-16 02:30:53
  30498. 618 2005-05-28 15:50:07 4445 248 2005-06-01 19:45:07 1 2006-02-16 02:30:53
  30499. 619 2005-05-28 15:52:26 2482 407 2005-06-06 17:55:26 2 2006-02-16 02:30:53
  30500. 620 2005-05-28 15:54:45 2444 321 2005-06-04 20:26:45 1 2006-02-16 02:30:53
  30501. 621 2005-05-28 15:58:12 1144 239 2005-05-30 21:54:12 1 2006-02-16 02:30:53
  30502. 622 2005-05-28 15:58:22 2363 109 2005-06-04 10:13:22 1 2006-02-16 02:30:53
  30503. 623 2005-05-28 16:01:28 1222 495 2005-05-30 11:19:28 1 2006-02-16 02:30:53
  30504. 624 2005-05-28 16:13:22 3660 569 2005-06-06 20:35:22 1 2006-02-16 02:30:53
  30505. 625 2005-05-28 16:35:46 2889 596 2005-06-01 14:19:46 1 2006-02-16 02:30:53
  30506. 626 2005-05-28 16:58:09 452 584 2005-06-01 14:02:09 2 2006-02-16 02:30:53
  30507. 627 2005-05-28 17:04:43 425 241 2005-06-04 19:58:43 2 2006-02-16 02:30:53
  30508. 628 2005-05-28 17:05:46 2513 173 2005-06-06 16:29:46 2 2006-02-16 02:30:53
  30509. 629 2005-05-28 17:19:15 1527 94 2005-06-02 20:01:15 2 2006-02-16 02:30:53
  30510. 630 2005-05-28 17:24:51 1254 417 2005-06-05 20:05:51 2 2006-02-16 02:30:53
  30511. 631 2005-05-28 17:36:32 2465 503 2005-06-03 14:56:32 2 2006-02-16 02:30:53
  30512. 632 2005-05-28 17:37:50 1287 442 2005-06-03 16:04:50 1 2006-02-16 02:30:53
  30513. 633 2005-05-28 17:37:59 58 360 2005-06-03 22:49:59 2 2006-02-16 02:30:53
  30514. 634 2005-05-28 17:40:35 2630 428 2005-06-05 16:18:35 2 2006-02-16 02:30:53
  30515. 635 2005-05-28 17:46:57 1648 42 2005-06-06 18:24:57 1 2006-02-16 02:30:53
  30516. 636 2005-05-28 17:47:58 4213 239 2005-06-04 16:32:58 1 2006-02-16 02:30:53
  30517. 637 2005-05-28 18:14:29 1581 250 2005-05-29 23:48:29 2 2006-02-16 02:30:53
  30518. 638 2005-05-28 18:24:43 2685 372 2005-06-02 19:03:43 2 2006-02-16 02:30:53
  30519. 639 2005-05-28 18:25:02 4204 198 2005-05-29 18:22:02 1 2006-02-16 02:30:53
  30520. 640 2005-05-28 18:43:26 495 465 2005-05-30 13:39:26 1 2006-02-16 02:30:53
  30521. 641 2005-05-28 18:45:47 3548 396 2005-06-04 15:24:47 1 2006-02-16 02:30:53
  30522. 642 2005-05-28 18:49:12 140 157 2005-06-01 20:50:12 2 2006-02-16 02:30:53
  30523. 643 2005-05-28 18:52:11 3105 240 2005-05-31 15:15:11 2 2006-02-16 02:30:53
  30524. 644 2005-05-28 18:59:12 4304 316 2005-06-04 18:06:12 1 2006-02-16 02:30:53
  30525. 645 2005-05-28 19:14:09 3128 505 2005-06-05 14:01:09 1 2006-02-16 02:30:53
  30526. 646 2005-05-28 19:16:14 1922 185 2005-05-31 16:50:14 2 2006-02-16 02:30:53
  30527. 647 2005-05-28 19:22:52 3435 569 2005-06-01 00:10:52 1 2006-02-16 02:30:53
  30528. 648 2005-05-28 19:25:54 3476 253 2005-06-03 15:57:54 2 2006-02-16 02:30:53
  30529. 649 2005-05-28 19:35:45 1781 197 2005-06-05 16:00:45 1 2006-02-16 02:30:53
  30530. 650 2005-05-28 19:45:40 4384 281 2005-05-29 21:02:40 1 2006-02-16 02:30:53
  30531. 651 2005-05-28 19:46:50 739 266 2005-05-30 16:29:50 1 2006-02-16 02:30:53
  30532. 652 2005-05-28 20:08:47 1201 43 2005-05-29 14:57:47 2 2006-02-16 02:30:53
  30533. 653 2005-05-28 20:12:20 126 327 2005-06-04 14:44:20 2 2006-02-16 02:30:53
  30534. 654 2005-05-28 20:15:30 2312 23 2005-05-30 22:02:30 2 2006-02-16 02:30:53
  30535. 655 2005-05-28 20:16:20 331 287 2005-05-31 16:46:20 2 2006-02-16 02:30:53
  30536. 656 2005-05-28 20:18:24 2846 437 2005-05-30 16:19:24 1 2006-02-16 02:30:53
  30537. 657 2005-05-28 20:23:09 848 65 2005-06-01 02:11:09 1 2006-02-16 02:30:53
  30538. 658 2005-05-28 20:23:23 3226 103 2005-06-06 19:31:23 2 2006-02-16 02:30:53
  30539. 659 2005-05-28 20:27:53 1382 207 2005-05-31 01:36:53 2 2006-02-16 02:30:53
  30540. 660 2005-05-28 20:53:31 1414 578 2005-05-30 15:26:31 1 2006-02-16 02:30:53
  30541. 661 2005-05-28 21:01:25 2247 51 2005-06-02 01:22:25 2 2006-02-16 02:30:53
  30542. 662 2005-05-28 21:09:31 2968 166 2005-06-01 19:00:31 2 2006-02-16 02:30:53
  30543. 663 2005-05-28 21:23:02 3997 176 2005-06-02 17:39:02 2 2006-02-16 02:30:53
  30544. 664 2005-05-28 21:31:08 87 523 2005-06-02 20:56:08 2 2006-02-16 02:30:53
  30545. 665 2005-05-28 21:38:39 1012 415 2005-05-29 21:37:39 1 2006-02-16 02:30:53
  30546. 666 2005-05-28 21:48:51 3075 437 2005-06-05 16:45:51 2 2006-02-16 02:30:53
  30547. 667 2005-05-28 21:49:02 797 596 2005-05-31 03:07:02 1 2006-02-16 02:30:53
  30548. 668 2005-05-28 21:54:45 3528 484 2005-05-29 22:32:45 1 2006-02-16 02:30:53
  30549. 669 2005-05-28 22:03:25 3677 313 2005-06-03 03:39:25 1 2006-02-16 02:30:53
  30550. 670 2005-05-28 22:04:03 227 201 2005-06-06 22:43:03 2 2006-02-16 02:30:53
  30551. 671 2005-05-28 22:04:30 1027 14 2005-06-03 01:21:30 2 2006-02-16 02:30:53
  30552. 672 2005-05-28 22:05:29 697 306 2005-06-06 02:10:29 2 2006-02-16 02:30:53
  30553. 673 2005-05-28 22:07:30 1769 468 2005-06-01 23:42:30 1 2006-02-16 02:30:53
  30554. 674 2005-05-28 22:11:35 1150 87 2005-06-01 23:58:35 2 2006-02-16 02:30:53
  30555. 675 2005-05-28 22:22:44 1273 338 2005-06-01 02:57:44 2 2006-02-16 02:30:53
  30556. 676 2005-05-28 22:27:51 2329 490 2005-05-29 20:36:51 2 2006-02-16 02:30:53
  30557. 677 2005-05-28 23:00:08 4558 194 2005-06-05 19:11:08 2 2006-02-16 02:30:53
  30558. 678 2005-05-28 23:15:48 3741 269 2005-06-03 04:43:48 2 2006-02-16 02:30:53
  30559. 679 2005-05-28 23:24:57 907 526 2005-06-06 21:59:57 2 2006-02-16 02:30:53
  30560. 680 2005-05-28 23:27:26 4147 482 2005-06-02 02:28:26 2 2006-02-16 02:30:53
  30561. 681 2005-05-28 23:39:44 3346 531 2005-06-01 01:42:44 1 2006-02-16 02:30:53
  30562. 682 2005-05-28 23:53:18 3160 148 2005-05-29 19:14:18 2 2006-02-16 02:30:53
  30563. 683 2005-05-29 00:09:48 2038 197 2005-06-02 04:27:48 1 2006-02-16 02:30:53
  30564. 684 2005-05-29 00:13:15 3242 461 2005-06-04 21:26:15 2 2006-02-16 02:30:53
  30565. 685 2005-05-29 00:17:51 1385 172 2005-06-05 05:32:51 2 2006-02-16 02:30:53
  30566. 686 2005-05-29 00:27:10 2441 411 2005-05-30 02:29:10 1 2006-02-16 02:30:53
  30567. 687 2005-05-29 00:32:09 1731 250 2005-05-31 23:53:09 1 2006-02-16 02:30:53
  30568. 688 2005-05-29 00:45:24 4135 162 2005-06-02 01:30:24 1 2006-02-16 02:30:53
  30569. 689 2005-05-29 00:46:53 742 571 2005-06-03 23:48:53 2 2006-02-16 02:30:53
  30570. 690 2005-05-29 00:54:53 2646 85 2005-06-06 00:45:53 1 2006-02-16 02:30:53
  30571. 691 2005-05-29 01:01:26 4034 433 2005-06-07 06:21:26 1 2006-02-16 02:30:53
  30572. 692 2005-05-29 01:32:10 800 18 2005-06-02 03:54:10 2 2006-02-16 02:30:53
  30573. 693 2005-05-29 01:42:31 635 190 2005-06-03 02:29:31 2 2006-02-16 02:30:53
  30574. 694 2005-05-29 01:49:43 592 399 2005-06-05 06:52:43 1 2006-02-16 02:30:53
  30575. 695 2005-05-29 01:50:53 4276 528 2005-06-03 02:28:53 1 2006-02-16 02:30:53
  30576. 696 2005-05-29 01:59:10 2076 19 2005-06-01 02:45:10 1 2006-02-16 02:30:53
  30577. 697 2005-05-29 02:04:04 3949 387 2005-06-04 00:47:04 2 2006-02-16 02:30:53
  30578. 698 2005-05-29 02:10:52 1412 109 2005-06-01 21:52:52 1 2006-02-16 02:30:53
  30579. 699 2005-05-29 02:11:44 130 246 2005-06-04 20:23:44 2 2006-02-16 02:30:53
  30580. 700 2005-05-29 02:18:54 500 117 2005-05-30 05:54:54 1 2006-02-16 02:30:53
  30581. 701 2005-05-29 02:26:27 372 112 2005-06-03 04:59:27 1 2006-02-16 02:30:53
  30582. 702 2005-05-29 02:27:30 2556 475 2005-05-30 01:52:30 2 2006-02-16 02:30:53
  30583. 703 2005-05-29 02:29:36 1123 269 2005-06-03 04:54:36 2 2006-02-16 02:30:53
  30584. 704 2005-05-29 02:44:43 2628 330 2005-06-06 01:51:43 2 2006-02-16 02:30:53
  30585. 705 2005-05-29 02:48:52 2809 257 2005-05-30 06:21:52 1 2006-02-16 02:30:53
  30586. 706 2005-05-29 03:05:49 2278 60 2005-06-04 22:48:49 1 2006-02-16 02:30:53
  30587. 707 2005-05-29 03:18:19 819 252 2005-05-30 02:45:19 1 2006-02-16 02:30:53
  30588. 708 2005-05-29 03:23:47 3133 127 2005-05-31 21:27:47 2 2006-02-16 02:30:53
  30589. 709 2005-05-29 03:48:01 2459 479 2005-06-06 05:21:01 1 2006-02-16 02:30:53
  30590. 710 2005-05-29 03:48:36 194 518 2005-06-03 05:03:36 1 2006-02-16 02:30:53
  30591. 711 2005-05-29 03:49:03 4581 215 2005-05-31 08:29:03 2 2006-02-16 02:30:53
  30592. 712 2005-05-29 04:02:24 4191 313 2005-05-30 03:09:24 2 2006-02-16 02:30:53
  30593. 713 2005-05-29 04:10:17 3664 507 2005-06-07 07:13:17 1 2006-02-16 02:30:53
  30594. 714 2005-05-29 04:15:21 2010 452 2005-06-01 23:05:21 2 2006-02-16 02:30:53
  30595. 715 2005-05-29 04:22:41 2030 545 2005-06-05 09:28:41 1 2006-02-16 02:30:53
  30596. 716 2005-05-29 04:35:29 85 36 2005-06-01 07:42:29 2 2006-02-16 02:30:53
  30597. 717 2005-05-29 04:37:44 1383 412 2005-05-30 05:48:44 2 2006-02-16 02:30:53
  30598. 718 2005-05-29 04:52:23 1736 498 2005-06-02 02:27:23 1 2006-02-16 02:30:53
  30599. 719 2005-05-29 05:16:05 267 245 2005-06-01 07:53:05 2 2006-02-16 02:30:53
  30600. 720 2005-05-29 05:17:30 3687 480 2005-06-06 02:47:30 2 2006-02-16 02:30:53
  30601. 721 2005-05-29 05:28:47 1116 44 2005-05-31 11:24:47 1 2006-02-16 02:30:53
  30602. 722 2005-05-29 05:30:31 4540 259 2005-06-06 04:51:31 1 2006-02-16 02:30:53
  30603. 723 2005-05-29 05:34:44 3407 309 2005-05-30 05:50:44 1 2006-02-16 02:30:53
  30604. 724 2005-05-29 05:53:23 3770 416 2005-06-05 04:01:23 2 2006-02-16 02:30:53
  30605. 725 2005-05-29 06:03:41 4088 245 2005-06-03 08:52:41 2 2006-02-16 02:30:53
  30606. 726 2005-05-29 06:05:29 933 452 2005-06-05 04:40:29 2 2006-02-16 02:30:53
  30607. 727 2005-05-29 06:08:15 1629 484 2005-05-30 07:16:15 1 2006-02-16 02:30:53
  30608. 728 2005-05-29 06:12:38 242 551 2005-06-03 07:41:38 1 2006-02-16 02:30:53
  30609. 729 2005-05-29 06:35:13 1688 323 2005-06-04 03:23:13 2 2006-02-16 02:30:53
  30610. 730 2005-05-29 07:00:59 3473 197 2005-06-06 01:17:59 1 2006-02-16 02:30:53
  30611. 731 2005-05-29 07:25:16 4124 5 2005-05-30 05:21:16 1 2006-02-16 02:30:53
  30612. 732 2005-05-29 07:32:51 2530 447 2005-05-30 10:08:51 2 2006-02-16 02:30:53
  30613. 733 2005-05-29 07:35:21 2951 363 2005-06-05 09:14:21 1 2006-02-16 02:30:53
  30614. 734 2005-05-29 07:38:52 3084 538 2005-06-03 10:17:52 2 2006-02-16 02:30:53
  30615. 735 2005-05-29 08:08:13 3421 454 2005-06-07 13:35:13 1 2006-02-16 02:30:53
  30616. 736 2005-05-29 08:10:07 3689 276 2005-06-05 10:21:07 2 2006-02-16 02:30:53
  30617. 737 2005-05-29 08:11:31 769 589 2005-06-04 11:18:31 2 2006-02-16 02:30:53
  30618. 738 2005-05-29 08:20:08 2284 256 2005-06-06 08:59:08 2 2006-02-16 02:30:53
  30619. 739 2005-05-29 08:28:18 1183 84 2005-06-06 09:21:18 2 2006-02-16 02:30:53
  30620. 740 2005-05-29 08:30:36 600 89 2005-06-04 12:47:36 2 2006-02-16 02:30:53
  30621. 741 2005-05-29 08:35:49 3189 495 2005-06-04 11:55:49 1 2006-02-16 02:30:53
  30622. 742 2005-05-29 08:36:30 273 483 2005-06-05 11:30:30 1 2006-02-16 02:30:53
  30623. 743 2005-05-29 08:39:02 2528 548 2005-06-06 08:42:02 2 2006-02-16 02:30:53
  30624. 744 2005-05-29 09:13:08 3722 420 2005-06-01 07:05:08 2 2006-02-16 02:30:53
  30625. 745 2005-05-29 09:22:57 581 152 2005-06-01 09:10:57 1 2006-02-16 02:30:53
  30626. 746 2005-05-29 09:25:10 4272 130 2005-06-02 04:20:10 2 2006-02-16 02:30:53
  30627. 747 2005-05-29 09:26:34 1993 291 2005-06-05 07:28:34 1 2006-02-16 02:30:53
  30628. 748 2005-05-29 09:27:00 2803 7 2005-06-03 04:25:00 1 2006-02-16 02:30:53
  30629. 749 2005-05-29 09:33:33 1146 375 2005-05-31 11:45:33 2 2006-02-16 02:30:53
  30630. 750 2005-05-29 09:41:40 730 269 2005-05-30 13:31:40 1 2006-02-16 02:30:53
  30631. 751 2005-05-29 09:55:43 2711 53 2005-06-02 04:54:43 1 2006-02-16 02:30:53
  30632. 752 2005-05-29 10:14:15 1720 126 2005-06-04 06:30:15 1 2006-02-16 02:30:53
  30633. 753 2005-05-29 10:16:42 1021 135 2005-06-05 08:52:42 2 2006-02-16 02:30:53
  30634. 754 2005-05-29 10:18:59 734 281 2005-06-04 05:03:59 2 2006-02-16 02:30:53
  30635. 755 2005-05-29 10:26:29 3090 576 2005-06-01 10:25:29 2 2006-02-16 02:30:53
  30636. 756 2005-05-29 10:28:45 3152 201 2005-06-04 12:50:45 1 2006-02-16 02:30:53
  30637. 757 2005-05-29 10:29:47 1067 435 2005-06-07 15:27:47 1 2006-02-16 02:30:53
  30638. 758 2005-05-29 10:31:56 1191 563 2005-06-01 14:53:56 2 2006-02-16 02:30:53
  30639. 759 2005-05-29 10:57:57 2367 179 2005-06-07 16:23:57 2 2006-02-16 02:30:53
  30640. 760 2005-05-29 11:07:25 3250 77 2005-06-02 14:16:25 1 2006-02-16 02:30:53
  30641. 761 2005-05-29 11:09:01 2342 58 2005-06-03 16:18:01 2 2006-02-16 02:30:53
  30642. 762 2005-05-29 11:15:51 3683 146 2005-06-06 07:48:51 1 2006-02-16 02:30:53
  30643. 763 2005-05-29 11:32:15 2022 50 2005-05-31 17:31:15 1 2006-02-16 02:30:53
  30644. 764 2005-05-29 11:37:35 1069 149 2005-05-31 16:47:35 1 2006-02-16 02:30:53
  30645. 765 2005-05-29 11:38:34 515 69 2005-06-02 17:04:34 1 2006-02-16 02:30:53
  30646. 766 2005-05-29 11:47:02 2154 383 2005-06-06 07:14:02 1 2006-02-16 02:30:53
  30647. 767 2005-05-29 12:20:19 687 67 2005-06-02 14:15:19 2 2006-02-16 02:30:53
  30648. 768 2005-05-29 12:30:46 2895 566 2005-06-07 09:00:46 2 2006-02-16 02:30:53
  30649. 769 2005-05-29 12:51:44 1523 575 2005-06-01 17:43:44 1 2006-02-16 02:30:53
  30650. 770 2005-05-29 12:56:50 2491 405 2005-06-07 15:54:50 2 2006-02-16 02:30:53
  30651. 771 2005-05-29 12:59:14 353 476 2005-06-01 16:05:14 2 2006-02-16 02:30:53
  30652. 772 2005-05-29 13:08:06 3319 556 2005-06-06 08:19:06 1 2006-02-16 02:30:53
  30653. 773 2005-05-29 13:18:05 245 563 2005-06-07 17:22:05 1 2006-02-16 02:30:53
  30654. 774 2005-05-29 13:19:43 1188 575 2005-06-01 18:51:43 1 2006-02-16 02:30:53
  30655. 775 2005-05-29 13:23:26 1197 124 2005-05-30 07:53:26 2 2006-02-16 02:30:53
  30656. 776 2005-05-29 13:35:35 4339 113 2005-06-03 17:33:35 1 2006-02-16 02:30:53
  30657. 777 2005-05-29 14:07:58 451 360 2005-06-03 08:41:58 2 2006-02-16 02:30:53
  30658. 778 2005-05-29 14:09:53 1816 535 2005-06-05 20:05:53 1 2006-02-16 02:30:53
  30659. 779 2005-05-29 14:17:17 533 105 2005-06-06 16:46:17 1 2006-02-16 02:30:53
  30660. 780 2005-05-29 14:18:32 1919 300 2005-06-06 20:14:32 1 2006-02-16 02:30:53
  30661. 781 2005-05-29 14:23:58 88 313 2005-05-30 17:44:58 1 2006-02-16 02:30:53
  30662. 782 2005-05-29 14:38:57 2255 596 2005-06-02 13:18:57 2 2006-02-16 02:30:53
  30663. 783 2005-05-29 14:41:18 3046 53 2005-06-06 10:39:18 2 2006-02-16 02:30:53
  30664. 784 2005-05-29 14:44:22 2936 352 2005-06-01 17:28:22 2 2006-02-16 02:30:53
  30665. 785 2005-05-29 15:08:41 39 72 2005-05-30 15:51:41 1 2006-02-16 02:30:53
  30666. 786 2005-05-29 15:17:28 2637 439 2005-06-07 10:07:28 2 2006-02-16 02:30:53
  30667. 787 2005-05-29 16:03:03 3919 27 2005-06-07 11:07:03 2 2006-02-16 02:30:53
  30668. 788 2005-05-29 16:13:55 763 562 2005-05-31 16:40:55 1 2006-02-16 02:30:53
  30669. 789 2005-05-29 16:17:07 708 553 2005-06-06 18:15:07 1 2006-02-16 02:30:53
  30670. 790 2005-05-29 16:19:29 2858 593 2005-06-02 17:22:29 2 2006-02-16 02:30:53
  30671. 791 2005-05-29 16:30:42 1554 284 2005-06-01 19:11:42 1 2006-02-16 02:30:53
  30672. 792 2005-05-29 16:32:10 2841 261 2005-05-31 18:01:10 1 2006-02-16 02:30:53
  30673. 793 2005-05-29 16:44:08 379 528 2005-06-06 19:21:08 2 2006-02-16 02:30:53
  30674. 794 2005-05-29 16:44:11 1995 50 2005-06-05 16:11:11 1 2006-02-16 02:30:53
  30675. 795 2005-05-29 16:57:39 609 551 2005-06-01 11:33:39 2 2006-02-16 02:30:53
  30676. 796 2005-05-29 16:59:44 2697 26 2005-06-03 16:22:44 2 2006-02-16 02:30:53
  30677. 797 2005-05-29 17:12:17 1446 244 2005-06-03 16:06:17 1 2006-02-16 02:30:53
  30678. 798 2005-05-29 17:23:43 1102 134 2005-06-01 13:06:43 2 2006-02-16 02:30:53
  30679. 799 2005-05-29 17:24:48 1713 429 2005-06-05 12:25:48 1 2006-02-16 02:30:53
  30680. 800 2005-05-29 17:28:12 441 472 2005-05-30 14:59:12 1 2006-02-16 02:30:53
  30681. 801 2005-05-29 17:35:50 1642 402 2005-06-04 17:05:50 2 2006-02-16 02:30:53
  30682. 802 2005-05-29 17:38:59 785 350 2005-05-31 22:42:59 2 2006-02-16 02:30:53
  30683. 803 2005-05-29 17:52:30 1602 32 2005-05-30 14:35:30 2 2006-02-16 02:30:53
  30684. 804 2005-05-29 18:10:24 3909 171 2005-06-06 22:53:24 1 2006-02-16 02:30:53
  30685. 805 2005-05-29 18:18:18 3132 232 2005-06-07 15:11:18 2 2006-02-16 02:30:53
  30686. 806 2005-05-29 18:31:30 2386 435 2005-05-31 00:18:30 2 2006-02-16 02:30:53
  30687. 807 2005-05-29 18:50:50 2195 235 2005-06-03 18:36:50 2 2006-02-16 02:30:53
  30688. 808 2005-05-29 19:08:20 1928 104 2005-06-06 20:32:20 2 2006-02-16 02:30:53
  30689. 809 2005-05-29 19:10:20 2114 222 2005-06-05 19:05:20 2 2006-02-16 02:30:53
  30690. 810 2005-05-29 19:12:04 2533 346 2005-06-04 21:12:04 2 2006-02-16 02:30:53
  30691. 811 2005-05-29 19:30:42 4419 401 2005-06-02 16:19:42 2 2006-02-16 02:30:53
  30692. 812 2005-05-29 20:00:30 1099 225 2005-05-30 19:43:30 2 2006-02-16 02:30:53
  30693. 813 2005-05-29 20:14:34 4554 344 2005-06-05 20:56:34 1 2006-02-16 02:30:53
  30694. 814 2005-05-29 20:16:12 1572 134 2005-06-07 17:47:12 1 2006-02-16 02:30:53
  30695. 815 2005-05-29 20:24:28 3757 14 2005-06-03 15:32:28 1 2006-02-16 02:30:53
  30696. 816 2005-05-29 20:26:39 630 474 2005-06-06 22:31:39 2 2006-02-16 02:30:53
  30697. 817 2005-05-29 20:39:14 186 554 2005-05-31 18:24:14 1 2006-02-16 02:30:53
  30698. 818 2005-05-29 20:47:53 4106 321 2005-06-02 23:18:53 2 2006-02-16 02:30:53
  30699. 819 2005-05-29 21:00:32 623 511 2005-06-02 15:15:32 2 2006-02-16 02:30:53
  30700. 820 2005-05-29 21:07:22 2584 22 2005-06-07 00:22:22 2 2006-02-16 02:30:53
  30701. 821 2005-05-29 21:31:12 3380 348 2005-06-04 22:49:12 1 2006-02-16 02:30:53
  30702. 822 2005-05-29 21:36:00 2634 480 2005-06-07 17:24:00 1 2006-02-16 02:30:53
  30703. 823 2005-05-29 21:39:37 3249 441 2005-05-30 22:06:37 1 2006-02-16 02:30:53
  30704. 824 2005-05-29 21:45:32 3518 357 2005-05-31 19:01:32 1 2006-02-16 02:30:53
  30705. 825 2005-05-29 21:49:41 712 371 2005-06-04 20:27:41 2 2006-02-16 02:30:53
  30706. 826 2005-05-29 21:56:15 2263 207 2005-06-08 03:18:15 1 2006-02-16 02:30:53
  30707. 827 2005-05-29 21:58:43 62 573 2005-06-06 00:54:43 1 2006-02-16 02:30:53
  30708. 828 2005-05-29 22:14:55 2468 217 2005-05-30 17:22:55 1 2006-02-16 02:30:53
  30709. 829 2005-05-29 22:16:42 1684 371 2005-06-06 01:38:42 1 2006-02-16 02:30:53
  30710. 830 2005-05-29 22:43:55 3464 3 2005-06-01 17:43:55 1 2006-02-16 02:30:53
  30711. 831 2005-05-29 22:50:25 3912 509 2005-06-06 02:27:25 1 2006-02-16 02:30:53
  30712. 832 2005-05-29 22:51:20 1381 159 2005-06-07 17:37:20 2 2006-02-16 02:30:53
  30713. 833 2005-05-29 23:21:56 2898 417 2005-06-02 18:40:56 1 2006-02-16 02:30:53
  30714. 834 2005-05-29 23:24:30 3628 84 2005-05-30 22:00:30 2 2006-02-16 02:30:53
  30715. 835 2005-05-29 23:37:00 299 381 2005-06-02 23:38:00 1 2006-02-16 02:30:53
  30716. 836 2005-05-29 23:56:42 3140 368 2005-05-31 04:11:42 2 2006-02-16 02:30:53
  30717. 837 2005-05-30 00:02:08 977 172 2005-06-02 05:31:08 2 2006-02-16 02:30:53
  30718. 838 2005-05-30 00:27:57 2859 504 2005-06-06 22:19:57 2 2006-02-16 02:30:53
  30719. 839 2005-05-30 00:28:12 1886 337 2005-06-08 02:43:12 1 2006-02-16 02:30:53
  30720. 840 2005-05-30 00:28:41 4049 79 2005-05-31 20:39:41 2 2006-02-16 02:30:53
  30721. 841 2005-05-30 00:31:17 4318 387 2005-06-02 19:14:17 1 2006-02-16 02:30:53
  30722. 842 2005-05-30 00:32:04 2328 238 2005-06-01 02:21:04 1 2006-02-16 02:30:53
  30723. 843 2005-05-30 00:44:24 2214 313 2005-05-31 00:58:24 2 2006-02-16 02:30:53
  30724. 844 2005-05-30 00:58:20 536 429 2005-06-01 00:38:20 1 2006-02-16 02:30:53
  30725. 845 2005-05-30 01:17:25 2001 72 2005-06-07 02:00:25 1 2006-02-16 02:30:53
  30726. 846 2005-05-30 01:17:45 938 49 2005-06-01 00:56:45 2 2006-02-16 02:30:53
  30727. 847 2005-05-30 01:18:15 4387 380 2005-06-06 20:20:15 2 2006-02-16 02:30:53
  30728. 848 2005-05-30 01:19:53 1363 436 2005-06-05 23:40:53 1 2006-02-16 02:30:53
  30729. 849 2005-05-30 01:23:07 2424 449 2005-06-07 01:50:07 1 2006-02-16 02:30:53
  30730. 850 2005-05-30 01:35:12 2390 517 2005-05-31 01:51:12 1 2006-02-16 02:30:53
  30731. 851 2005-05-30 01:35:15 2780 530 2005-06-06 07:27:15 1 2006-02-16 02:30:53
  30732. 852 2005-05-30 01:36:57 1622 549 2005-06-01 22:44:57 1 2006-02-16 02:30:53
  30733. 853 2005-05-30 01:43:31 3693 122 2005-06-01 02:05:31 1 2006-02-16 02:30:53
  30734. 854 2005-05-30 01:56:11 921 369 2005-06-01 06:34:11 2 2006-02-16 02:30:53
  30735. 855 2005-05-30 02:00:28 2527 406 2005-06-03 20:16:28 2 2006-02-16 02:30:53
  30736. 856 2005-05-30 02:01:21 3969 53 2005-06-07 03:25:21 1 2006-02-16 02:30:53
  30737. 857 2005-05-30 02:01:23 2569 204 2005-06-02 06:07:23 2 2006-02-16 02:30:53
  30738. 858 2005-05-30 02:10:32 1258 358 2005-06-01 04:42:32 1 2006-02-16 02:30:53
  30739. 859 2005-05-30 02:36:20 3032 79 2005-06-02 07:49:20 2 2006-02-16 02:30:53
  30740. 860 2005-05-30 02:45:16 578 276 2005-06-08 07:28:16 1 2006-02-16 02:30:53
  30741. 861 2005-05-30 02:48:32 3711 502 2005-06-06 05:43:32 1 2006-02-16 02:30:53
  30742. 862 2005-05-30 03:09:11 1186 328 2005-06-03 21:27:11 1 2006-02-16 02:30:53
  30743. 863 2005-05-30 03:14:59 3999 379 2005-06-05 04:34:59 2 2006-02-16 02:30:53
  30744. 864 2005-05-30 03:27:17 2777 544 2005-06-06 08:28:17 1 2006-02-16 02:30:53
  30745. 865 2005-05-30 03:39:44 3183 154 2005-06-07 08:10:44 2 2006-02-16 02:30:53
  30746. 866 2005-05-30 03:43:54 2867 8 2005-06-08 04:28:54 1 2006-02-16 02:30:53
  30747. 867 2005-05-30 03:54:43 3389 99 2005-06-01 22:59:43 1 2006-02-16 02:30:53
  30748. 868 2005-05-30 04:19:55 3604 28 2005-05-31 02:28:55 1 2006-02-16 02:30:53
  30749. 869 2005-05-30 04:22:06 3399 296 2005-06-03 09:18:06 2 2006-02-16 02:30:53
  30750. 870 2005-05-30 04:25:47 2903 391 2005-06-06 04:32:47 1 2006-02-16 02:30:53
  30751. 871 2005-05-30 05:01:30 4573 303 2005-06-04 06:22:30 2 2006-02-16 02:30:53
  30752. 872 2005-05-30 05:03:04 3904 548 2005-06-06 10:35:04 1 2006-02-16 02:30:53
  30753. 873 2005-05-30 05:15:20 4568 375 2005-06-07 00:49:20 2 2006-02-16 02:30:53
  30754. 874 2005-05-30 05:36:21 363 52 2005-06-01 09:32:21 1 2006-02-16 02:30:53
  30755. 875 2005-05-30 05:38:24 1428 326 2005-06-06 00:34:24 2 2006-02-16 02:30:53
  30756. 876 2005-05-30 05:41:22 1471 339 2005-06-07 09:06:22 2 2006-02-16 02:30:53
  30757. 877 2005-05-30 05:48:59 886 9 2005-06-02 09:30:59 1 2006-02-16 02:30:53
  30758. 878 2005-05-30 05:49:13 4265 323 2005-06-07 04:35:13 1 2006-02-16 02:30:53
  30759. 879 2005-05-30 05:49:42 4021 482 2005-06-05 01:45:42 2 2006-02-16 02:30:53
  30760. 880 2005-05-30 06:12:33 1819 460 2005-06-02 04:35:33 2 2006-02-16 02:30:53
  30761. 881 2005-05-30 06:15:36 602 242 2005-06-02 10:21:36 1 2006-02-16 02:30:53
  30762. 882 2005-05-30 06:16:06 3841 477 2005-06-02 11:57:06 1 2006-02-16 02:30:53
  30763. 883 2005-05-30 06:21:05 2271 399 2005-06-07 04:50:05 2 2006-02-16 02:30:53
  30764. 884 2005-05-30 06:41:32 4079 17 2005-05-31 07:39:32 1 2006-02-16 02:30:53
  30765. 885 2005-05-30 06:54:28 646 62 2005-06-03 07:03:28 2 2006-02-16 02:30:53
  30766. 886 2005-05-30 06:54:51 4356 393 2005-06-01 06:04:51 2 2006-02-16 02:30:53
  30767. 887 2005-05-30 07:10:00 2727 16 2005-06-01 06:48:00 2 2006-02-16 02:30:53
  30768. 888 2005-05-30 07:13:14 387 128 2005-06-06 09:50:14 1 2006-02-16 02:30:53
  30769. 889 2005-05-30 07:14:53 1299 114 2005-05-31 07:56:53 2 2006-02-16 02:30:53
  30770. 890 2005-05-30 07:43:04 1464 349 2005-06-01 11:26:04 1 2006-02-16 02:30:53
  30771. 891 2005-05-30 07:43:12 2611 391 2005-06-08 09:21:12 1 2006-02-16 02:30:53
  30772. 892 2005-05-30 08:02:56 471 274 2005-06-05 12:51:56 1 2006-02-16 02:30:53
  30773. 893 2005-05-30 08:06:59 3260 502 2005-06-07 08:23:59 2 2006-02-16 02:30:53
  30774. 894 2005-05-30 08:31:31 1118 400 2005-06-07 12:39:31 1 2006-02-16 02:30:53
  30775. 895 2005-05-30 08:50:43 2744 192 2005-06-05 10:58:43 1 2006-02-16 02:30:53
  30776. 896 2005-05-30 09:03:52 2817 207 2005-06-05 07:37:52 2 2006-02-16 02:30:53
  30777. 897 2005-05-30 09:10:01 1334 432 2005-06-08 03:43:01 1 2006-02-16 02:30:53
  30778. 898 2005-05-30 09:26:19 3497 384 2005-06-01 10:45:19 2 2006-02-16 02:30:53
  30779. 899 2005-05-30 09:29:30 1096 156 2005-06-06 12:39:30 2 2006-02-16 02:30:53
  30780. 900 2005-05-30 09:38:41 3543 586 2005-06-07 11:54:41 1 2006-02-16 02:30:53
  30781. 901 2005-05-30 09:40:40 760 259 2005-06-02 10:32:40 1 2006-02-16 02:30:53
  30782. 902 2005-05-30 09:53:36 1514 561 2005-06-07 12:10:36 1 2006-02-16 02:30:53
  30783. 903 2005-05-30 10:11:29 2423 197 2005-06-03 09:33:29 1 2006-02-16 02:30:53
  30784. 904 2005-05-30 10:19:42 2466 44 2005-06-05 04:58:42 2 2006-02-16 02:30:53
  30785. 905 2005-05-30 10:25:00 4372 50 2005-06-06 06:23:00 1 2006-02-16 02:30:53
  30786. 906 2005-05-30 10:30:38 1862 549 2005-06-07 06:44:38 2 2006-02-16 02:30:53
  30787. 907 2005-05-30 10:37:27 3320 506 2005-06-02 09:51:27 1 2006-02-16 02:30:53
  30788. 908 2005-05-30 10:38:37 4427 85 2005-06-03 09:56:37 1 2006-02-16 02:30:53
  30789. 909 2005-05-30 10:43:38 3775 486 2005-06-08 12:07:38 1 2006-02-16 02:30:53
  30790. 910 2005-05-30 10:46:16 2601 374 2005-06-04 13:32:16 1 2006-02-16 02:30:53
  30791. 911 2005-05-30 10:50:22 1404 366 2005-06-07 12:26:22 2 2006-02-16 02:30:53
  30792. 912 2005-05-30 10:58:33 3200 390 2005-05-31 09:31:33 2 2006-02-16 02:30:53
  30793. 913 2005-05-30 11:04:58 3213 369 2005-06-07 13:22:58 2 2006-02-16 02:30:53
  30794. 914 2005-05-30 11:06:00 1393 596 2005-06-04 06:07:00 2 2006-02-16 02:30:53
  30795. 915 2005-05-30 11:20:27 1859 115 2005-06-02 11:55:27 1 2006-02-16 02:30:53
  30796. 916 2005-05-30 11:25:01 1290 6 2005-05-31 09:06:01 1 2006-02-16 02:30:53
  30797. 917 2005-05-30 11:27:06 3629 385 2005-06-02 08:31:06 1 2006-02-16 02:30:53
  30798. 918 2005-05-30 11:32:24 818 197 2005-05-31 07:55:24 2 2006-02-16 02:30:53
  30799. 919 2005-05-30 11:35:06 4052 374 2005-06-02 13:16:06 2 2006-02-16 02:30:53
  30800. 920 2005-05-30 11:44:01 3860 584 2005-06-02 08:19:01 2 2006-02-16 02:30:53
  30801. 921 2005-05-30 11:53:09 1827 508 2005-06-03 10:00:09 2 2006-02-16 02:30:53
  30802. 922 2005-05-30 11:55:55 2442 550 2005-06-08 10:12:55 2 2006-02-16 02:30:53
  30803. 923 2005-05-30 11:58:50 1884 37 2005-06-05 09:57:50 1 2006-02-16 02:30:53
  30804. 924 2005-05-30 12:10:59 3279 293 2005-06-04 17:28:59 1 2006-02-16 02:30:53
  30805. 925 2005-05-30 12:13:52 3203 137 2005-06-02 14:41:52 2 2006-02-16 02:30:53
  30806. 926 2005-05-30 12:15:54 4327 76 2005-06-01 08:53:54 2 2006-02-16 02:30:53
  30807. 927 2005-05-30 12:16:40 1158 167 2005-05-31 16:20:40 2 2006-02-16 02:30:53
  30808. 928 2005-05-30 12:27:14 246 79 2005-06-05 13:56:14 2 2006-02-16 02:30:53
  30809. 929 2005-05-30 12:32:39 4296 536 2005-06-06 12:17:39 1 2006-02-16 02:30:53
  30810. 930 2005-05-30 12:44:57 2835 141 2005-06-04 10:53:57 2 2006-02-16 02:30:53
  30811. 931 2005-05-30 12:53:01 3384 421 2005-05-31 14:28:01 1 2006-02-16 02:30:53
  30812. 932 2005-05-30 12:55:36 719 198 2005-05-31 10:30:36 2 2006-02-16 02:30:53
  30813. 933 2005-05-30 13:08:45 3672 66 2005-06-01 18:56:45 1 2006-02-16 02:30:53
  30814. 934 2005-05-30 13:24:46 3595 60 2005-06-08 16:44:46 2 2006-02-16 02:30:53
  30815. 935 2005-05-30 13:29:36 2421 256 2005-06-02 11:08:36 1 2006-02-16 02:30:53
  30816. 936 2005-05-30 13:52:49 901 469 2005-06-07 16:56:49 1 2006-02-16 02:30:53
  30817. 937 2005-05-30 14:47:31 1054 304 2005-06-05 09:53:31 2 2006-02-16 02:30:53
  30818. 938 2005-05-30 14:47:31 1521 46 2005-06-04 10:10:31 2 2006-02-16 02:30:53
  30819. 939 2005-05-30 14:49:34 1314 367 2005-06-01 19:00:34 1 2006-02-16 02:30:53
  30820. 940 2005-05-30 15:01:02 1278 534 2005-06-01 18:26:02 1 2006-02-16 02:30:53
  30821. 941 2005-05-30 15:02:25 3630 562 2005-06-01 17:19:25 1 2006-02-16 02:30:53
  30822. 942 2005-05-30 15:05:47 4279 473 2005-06-08 15:59:47 2 2006-02-16 02:30:53
  30823. 943 2005-05-30 15:20:19 3737 57 2005-06-06 18:53:19 1 2006-02-16 02:30:53
  30824. 944 2005-05-30 15:26:24 151 131 2005-06-07 18:09:24 2 2006-02-16 02:30:53
  30825. 945 2005-05-30 15:33:17 1441 357 2005-06-02 15:02:17 2 2006-02-16 02:30:53
  30826. 946 2005-05-30 15:35:08 1264 486 2005-06-08 11:38:08 1 2006-02-16 02:30:53
  30827. 947 2005-05-30 15:36:57 4478 62 2005-06-04 18:48:57 1 2006-02-16 02:30:53
  30828. 948 2005-05-30 15:44:27 585 245 2005-06-08 17:30:27 2 2006-02-16 02:30:53
  30829. 949 2005-05-30 15:50:39 2202 368 2005-06-03 14:25:39 1 2006-02-16 02:30:53
  30830. 950 2005-05-30 16:06:08 491 83 2005-06-01 11:43:08 1 2006-02-16 02:30:53
  30831. 951 2005-05-30 16:10:35 1395 59 2005-05-31 19:01:35 2 2006-02-16 02:30:53
  30832. 952 2005-05-30 16:28:07 4389 311 2005-06-02 16:12:07 2 2006-02-16 02:30:53
  30833. 953 2005-05-30 16:34:02 2194 210 2005-05-31 20:34:02 1 2006-02-16 02:30:53
  30834. 954 2005-05-30 16:57:29 1231 297 2005-06-08 13:30:29 2 2006-02-16 02:30:53
  30835. 955 2005-05-30 16:59:03 4140 301 2005-05-31 11:58:03 2 2006-02-16 02:30:53
  30836. 956 2005-05-30 17:30:28 647 296 2005-06-07 13:54:28 2 2006-02-16 02:30:53
  30837. 957 2005-05-30 17:53:29 4428 440 2005-06-03 15:31:29 2 2006-02-16 02:30:53
  30838. 958 2005-05-30 17:58:03 548 186 2005-06-01 19:17:03 2 2006-02-16 02:30:53
  30839. 959 2005-05-30 18:07:00 3108 535 2005-06-02 14:37:00 2 2006-02-16 02:30:53
  30840. 960 2005-05-30 18:13:23 1966 445 2005-06-04 00:12:23 2 2006-02-16 02:30:53
  30841. 961 2005-05-30 18:16:44 3293 588 2005-06-04 23:40:44 2 2006-02-16 02:30:53
  30842. 962 2005-05-30 18:45:17 4535 520 2005-06-05 22:47:17 1 2006-02-16 02:30:53
  30843. 963 2005-05-30 18:52:53 1921 225 2005-06-07 16:19:53 2 2006-02-16 02:30:53
  30844. 964 2005-05-30 18:53:21 657 287 2005-06-04 22:32:21 2 2006-02-16 02:30:53
  30845. 965 2005-05-30 19:00:14 3363 502 2005-05-31 17:10:14 2 2006-02-16 02:30:53
  30846. 966 2005-05-30 19:00:37 1294 496 2005-05-31 23:51:37 1 2006-02-16 02:30:53
  30847. 967 2005-05-30 19:12:06 1954 330 2005-06-09 00:02:06 2 2006-02-16 02:30:53
  30848. 968 2005-05-30 19:20:03 119 576 2005-05-31 18:17:03 2 2006-02-16 02:30:53
  30849. 969 2005-05-30 19:23:48 443 551 2005-05-31 21:14:48 1 2006-02-16 02:30:53
  30850. 970 2005-05-30 19:50:28 1520 307 2005-06-09 01:19:28 1 2006-02-16 02:30:53
  30851. 971 2005-05-30 20:10:52 2911 561 2005-06-06 20:47:52 1 2006-02-16 02:30:53
  30852. 972 2005-05-30 20:21:07 2 411 2005-06-06 00:36:07 1 2006-02-16 02:30:53
  30853. 973 2005-05-30 20:27:45 1914 473 2005-06-08 22:47:45 2 2006-02-16 02:30:53
  30854. 974 2005-05-30 20:28:42 2617 596 2005-06-08 23:45:42 2 2006-02-16 02:30:53
  30855. 975 2005-05-30 21:07:15 3109 7 2005-06-03 01:48:15 2 2006-02-16 02:30:53
  30856. 976 2005-05-30 21:11:19 2290 581 2005-06-06 02:16:19 2 2006-02-16 02:30:53
  30857. 977 2005-05-30 21:22:26 2029 394 2005-06-04 22:32:26 2 2006-02-16 02:30:53
  30858. 978 2005-05-30 21:30:52 407 154 2005-06-07 16:22:52 1 2006-02-16 02:30:53
  30859. 979 2005-05-30 21:37:11 3917 279 2005-06-08 00:24:11 2 2006-02-16 02:30:53
  30860. 980 2005-05-30 21:45:19 4169 273 2005-06-01 20:32:19 1 2006-02-16 02:30:53
  30861. 981 2005-05-30 21:52:42 2913 326 2005-06-01 03:15:42 2 2006-02-16 02:30:53
  30862. 982 2005-05-30 22:15:24 3560 524 2005-06-02 16:18:24 1 2006-02-16 02:30:53
  30863. 983 2005-05-30 22:15:51 63 115 2005-06-02 22:56:51 1 2006-02-16 02:30:53
  30864. 984 2005-05-30 22:17:17 2305 262 2005-06-01 20:15:17 2 2006-02-16 02:30:53
  30865. 985 2005-05-30 22:18:35 1573 564 2005-06-04 23:36:35 1 2006-02-16 02:30:53
  30866. 986 2005-05-30 22:22:52 4045 253 2005-06-01 02:24:52 1 2006-02-16 02:30:53
  30867. 987 2005-05-30 22:59:12 390 11 2005-06-07 20:56:12 1 2006-02-16 02:30:53
  30868. 988 2005-05-30 23:08:03 1364 12 2005-06-07 00:22:03 1 2006-02-16 02:30:53
  30869. 989 2005-05-30 23:11:51 4388 83 2005-06-03 20:36:51 2 2006-02-16 02:30:53
  30870. 990 2005-05-30 23:25:14 4171 311 2005-06-06 18:41:14 2 2006-02-16 02:30:53
  30871. 991 2005-05-30 23:29:22 2863 593 2005-06-07 23:16:22 1 2006-02-16 02:30:53
  30872. 992 2005-05-30 23:47:56 3572 123 2005-06-05 19:01:56 1 2006-02-16 02:30:53
  30873. 993 2005-05-30 23:54:19 2080 513 2005-06-04 21:27:19 1 2006-02-16 02:30:53
  30874. 994 2005-05-30 23:55:36 2798 472 2005-06-04 01:00:36 2 2006-02-16 02:30:53
  30875. 995 2005-05-31 00:06:02 17 150 2005-06-06 02:30:02 2 2006-02-16 02:30:53
  30876. 996 2005-05-31 00:06:20 2075 331 2005-05-31 21:29:20 2 2006-02-16 02:30:53
  30877. 997 2005-05-31 00:08:25 4243 216 2005-06-02 00:17:25 2 2006-02-16 02:30:53
  30878. 998 2005-05-31 00:16:57 3395 389 2005-06-01 22:41:57 1 2006-02-16 02:30:53
  30879. 999 2005-05-31 00:25:10 4433 413 2005-06-03 06:05:10 2 2006-02-16 02:30:53
  30880. 1000 2005-05-31 00:25:56 1774 332 2005-06-08 19:42:56 2 2006-02-16 02:30:53
  30881. 1001 2005-05-31 00:46:31 1498 64 2005-06-06 06:14:31 2 2006-02-16 02:30:53
  30882. 1002 2005-05-31 00:47:56 709 397 2005-06-06 19:51:56 1 2006-02-16 02:30:53
  30883. 1003 2005-05-31 00:48:20 133 161 2005-06-02 04:53:20 2 2006-02-16 02:30:53
  30884. 1004 2005-05-31 00:48:36 1588 565 2005-06-01 20:56:36 1 2006-02-16 02:30:53
  30885. 1005 2005-05-31 00:53:25 4006 551 2005-06-04 01:21:25 2 2006-02-16 02:30:53
  30886. 1006 2005-05-31 00:57:08 3461 222 2005-06-02 22:35:08 1 2006-02-16 02:30:53
  30887. 1007 2005-05-31 01:02:28 3185 24 2005-06-07 01:36:28 2 2006-02-16 02:30:53
  30888. 1008 2005-05-31 01:18:56 914 599 2005-06-01 01:24:56 2 2006-02-16 02:30:53
  30889. 1009 2005-05-31 01:47:35 2523 485 2005-06-03 20:26:35 1 2006-02-16 02:30:53
  30890. 1010 2005-05-31 01:57:32 4038 49 2005-06-01 06:50:32 2 2006-02-16 02:30:53
  30891. 1011 2005-05-31 02:05:39 118 164 2005-06-04 21:27:39 2 2006-02-16 02:30:53
  30892. 1012 2005-05-31 02:18:05 688 291 2005-06-03 06:47:05 1 2006-02-16 02:30:53
  30893. 1013 2005-05-31 02:37:00 4522 384 2005-06-02 06:39:00 2 2006-02-16 02:30:53
  30894. 1014 2005-05-31 02:39:16 766 280 2005-06-01 06:03:16 2 2006-02-16 02:30:53
  30895. 1015 2005-05-31 02:44:57 3702 526 2005-06-07 23:01:57 2 2006-02-16 02:30:53
  30896. 1016 2005-05-31 02:49:43 3423 204 2005-06-04 03:48:43 1 2006-02-16 02:30:53
  30897. 1017 2005-05-31 02:53:36 1242 16 2005-06-03 05:04:36 1 2006-02-16 02:30:53
  30898. 1018 2005-05-31 02:53:42 1930 594 2005-06-03 00:47:42 2 2006-02-16 02:30:53
  30899. 1019 2005-05-31 03:05:07 3975 279 2005-06-03 08:34:07 1 2006-02-16 02:30:53
  30900. 1020 2005-05-31 03:06:08 3402 138 2005-06-02 08:57:08 2 2006-02-16 02:30:53
  30901. 1021 2005-05-31 03:16:15 2724 541 2005-06-08 06:43:15 2 2006-02-16 02:30:53
  30902. 1022 2005-05-31 03:16:45 842 239 2005-06-08 09:04:45 1 2006-02-16 02:30:53
  30903. 1023 2005-05-31 03:26:50 2483 227 2005-06-05 08:19:50 2 2006-02-16 02:30:53
  30904. 1024 2005-05-31 03:30:19 2310 457 2005-06-09 05:52:19 2 2006-02-16 02:30:53
  30905. 1025 2005-05-31 03:41:37 1618 93 2005-06-08 07:05:37 2 2006-02-16 02:30:53
  30906. 1026 2005-05-31 03:45:26 632 107 2005-06-06 22:30:26 2 2006-02-16 02:30:53
  30907. 1027 2005-05-31 03:46:19 2718 55 2005-06-09 03:50:19 1 2006-02-16 02:30:53
  30908. 1028 2005-05-31 03:48:05 4479 51 2005-06-01 03:51:05 1 2006-02-16 02:30:53
  30909. 1029 2005-05-31 03:52:02 2082 50 2005-06-06 08:10:02 1 2006-02-16 02:30:53
  30910. 1030 2005-05-31 04:06:47 3948 267 2005-06-02 02:59:47 1 2006-02-16 02:30:53
  30911. 1031 2005-05-31 04:23:01 917 416 2005-06-06 08:35:01 1 2006-02-16 02:30:53
  30912. 1032 2005-05-31 04:28:43 2937 236 2005-06-02 02:00:43 2 2006-02-16 02:30:53
  30913. 1033 2005-05-31 04:50:07 14 25 2005-06-02 01:53:07 1 2006-02-16 02:30:53
  30914. 1034 2005-05-31 04:53:40 4117 293 2005-06-09 08:25:40 2 2006-02-16 02:30:53
  30915. 1035 2005-05-31 05:01:09 949 362 2005-06-02 03:59:09 1 2006-02-16 02:30:53
  30916. 1036 2005-05-31 05:21:10 2164 438 2005-06-04 04:19:10 1 2006-02-16 02:30:53
  30917. 1037 2005-05-31 05:22:25 810 569 2005-06-09 04:52:25 1 2006-02-16 02:30:53
  30918. 1038 2005-05-31 05:23:47 1253 385 2005-06-02 03:57:47 2 2006-02-16 02:30:53
  30919. 1039 2005-05-31 05:32:29 2479 124 2005-06-01 06:04:29 2 2006-02-16 02:30:53
  30920. 1040 2005-05-31 05:35:16 2546 270 2005-06-09 04:14:16 1 2006-02-16 02:30:53
  30921. 1041 2005-05-31 05:46:23 4432 272 2005-06-06 09:50:23 2 2006-02-16 02:30:53
  30922. 1042 2005-05-31 05:53:00 3155 506 2005-06-01 05:24:00 1 2006-02-16 02:30:53
  30923. 1043 2005-05-31 06:11:40 2322 412 2005-06-08 09:15:40 2 2006-02-16 02:30:53
  30924. 1044 2005-05-31 06:24:44 2574 70 2005-06-03 04:51:44 1 2006-02-16 02:30:53
  30925. 1045 2005-05-31 06:29:01 3470 594 2005-06-09 04:31:01 1 2006-02-16 02:30:53
  30926. 1046 2005-05-31 06:42:30 468 179 2005-06-03 04:33:30 2 2006-02-16 02:30:53
  30927. 1047 2005-05-31 06:45:57 1366 72 2005-06-04 09:49:57 2 2006-02-16 02:30:53
  30928. 1048 2005-05-31 06:49:53 2811 55 2005-06-02 11:33:53 1 2006-02-16 02:30:53
  30929. 1049 2005-05-31 06:57:04 3913 312 2005-06-02 11:32:04 2 2006-02-16 02:30:53
  30930. 1050 2005-05-31 07:01:27 726 303 2005-06-03 07:50:27 2 2006-02-16 02:30:53
  30931. 1051 2005-05-31 07:02:09 1025 246 2005-06-03 01:32:09 1 2006-02-16 02:30:53
  30932. 1052 2005-05-31 07:07:03 2157 156 2005-06-05 09:38:03 1 2006-02-16 02:30:53
  30933. 1053 2005-05-31 07:12:44 3734 196 2005-06-04 12:33:44 1 2006-02-16 02:30:53
  30934. 1054 2005-05-31 07:33:25 1575 126 2005-06-02 01:40:25 2 2006-02-16 02:30:53
  30935. 1055 2005-05-31 07:47:18 1639 108 2005-06-03 01:57:18 1 2006-02-16 02:30:53
  30936. 1056 2005-05-31 07:48:07 1591 519 2005-06-05 08:51:07 2 2006-02-16 02:30:53
  30937. 1057 2005-05-31 07:58:06 497 124 2005-06-06 03:21:06 1 2006-02-16 02:30:53
  30938. 1058 2005-05-31 08:04:17 40 116 2005-06-03 11:12:17 2 2006-02-16 02:30:53
  30939. 1059 2005-05-31 08:20:43 3041 241 2005-06-04 09:05:43 2 2006-02-16 02:30:53
  30940. 1060 2005-05-31 08:21:43 2676 570 2005-06-09 04:02:43 2 2006-02-16 02:30:53
  30941. 1061 2005-05-31 08:27:58 965 109 2005-06-07 02:34:58 1 2006-02-16 02:30:53
  30942. 1062 2005-05-31 08:38:20 2223 176 2005-06-09 08:23:20 2 2006-02-16 02:30:53
  30943. 1063 2005-05-31 08:44:29 2484 7 2005-06-09 08:00:29 1 2006-02-16 02:30:53
  30944. 1064 2005-05-31 08:50:07 2373 460 2005-06-02 14:47:07 2 2006-02-16 02:30:53
  30945. 1065 2005-05-31 08:54:56 3379 316 2005-06-08 09:21:56 1 2006-02-16 02:30:53
  30946. 1066 2005-05-31 09:07:33 2383 541 2005-06-09 05:34:33 2 2006-02-16 02:30:53
  30947. 1067 2005-05-31 09:12:13 2345 32 2005-06-01 06:15:13 1 2006-02-16 02:30:53
  30948. 1068 2005-05-31 09:32:15 150 443 2005-06-01 11:20:15 1 2006-02-16 02:30:53
  30949. 1069 2005-05-31 09:32:31 3057 251 2005-06-08 10:19:31 2 2006-02-16 02:30:53
  30950. 1070 2005-05-31 09:39:56 3170 228 2005-06-05 10:23:56 1 2006-02-16 02:30:53
  30951. 1071 2005-05-31 09:48:56 469 174 2005-06-02 03:52:56 2 2006-02-16 02:30:53
  30952. 1072 2005-05-31 09:52:50 2557 272 2005-06-05 05:39:50 1 2006-02-16 02:30:53
  30953. 1073 2005-05-31 09:55:04 522 146 2005-06-07 03:55:04 1 2006-02-16 02:30:53
  30954. 1074 2005-05-31 10:04:42 2508 503 2005-06-02 15:27:42 2 2006-02-16 02:30:53
  30955. 1075 2005-05-31 10:13:34 2279 9 2005-06-09 08:11:34 1 2006-02-16 02:30:53
  30956. 1076 2005-05-31 10:14:31 2551 214 2005-06-05 10:13:31 2 2006-02-16 02:30:53
  30957. 1077 2005-05-31 10:22:54 1986 24 2005-06-02 12:21:54 1 2006-02-16 02:30:53
  30958. 1078 2005-05-31 10:28:33 3682 230 2005-06-03 14:45:33 2 2006-02-16 02:30:53
  30959. 1079 2005-05-31 10:48:17 268 312 2005-06-08 12:30:17 1 2006-02-16 02:30:53
  30960. 1080 2005-05-31 10:55:26 3491 215 2005-06-03 13:13:26 2 2006-02-16 02:30:53
  30961. 1081 2005-05-31 10:56:32 4524 404 2005-06-06 11:31:32 1 2006-02-16 02:30:53
  30962. 1082 2005-05-31 11:02:01 4510 239 2005-06-05 08:43:01 1 2006-02-16 02:30:53
  30963. 1083 2005-05-31 11:04:48 2393 556 2005-06-05 13:32:48 1 2006-02-16 02:30:53
  30964. 1084 2005-05-31 11:10:17 4577 12 2005-06-01 11:15:17 1 2006-02-16 02:30:53
  30965. 1085 2005-05-31 11:15:43 301 5 2005-06-07 12:02:43 1 2006-02-16 02:30:53
  30966. 1086 2005-05-31 11:17:37 2909 549 2005-06-06 13:58:37 2 2006-02-16 02:30:53
  30967. 1087 2005-05-31 11:18:08 431 169 2005-06-04 08:33:08 1 2006-02-16 02:30:53
  30968. 1088 2005-05-31 11:35:13 3988 356 2005-06-06 16:01:13 2 2006-02-16 02:30:53
  30969. 1089 2005-05-31 11:38:29 3784 367 2005-06-02 08:06:29 1 2006-02-16 02:30:53
  30970. 1090 2005-05-31 12:03:44 3329 23 2005-06-02 15:54:44 2 2006-02-16 02:30:53
  30971. 1091 2005-05-31 12:11:04 3853 251 2005-06-04 11:42:04 1 2006-02-16 02:30:53
  30972. 1092 2005-05-31 12:15:57 4412 278 2005-06-03 15:39:57 2 2006-02-16 02:30:53
  30973. 1093 2005-05-31 12:32:26 2189 214 2005-06-03 07:51:26 2 2006-02-16 02:30:53
  30974. 1094 2005-05-31 13:03:49 3810 547 2005-06-05 14:30:49 2 2006-02-16 02:30:53
  30975. 1095 2005-05-31 13:15:41 4546 252 2005-06-05 12:10:41 1 2006-02-16 02:30:53
  30976. 1096 2005-05-31 13:30:49 1066 271 2005-06-09 13:53:49 1 2006-02-16 02:30:53
  30977. 1097 2005-05-31 13:38:42 2285 491 2005-06-01 13:54:42 2 2006-02-16 02:30:53
  30978. 1098 2005-05-31 13:51:48 1050 425 2005-06-09 18:42:48 2 2006-02-16 02:30:53
  30979. 1099 2005-05-31 13:54:48 924 269 2005-06-05 13:04:48 2 2006-02-16 02:30:53
  30980. 1100 2005-05-31 14:03:21 316 497 2005-06-06 16:08:21 1 2006-02-16 02:30:53
  30981. 1101 2005-05-31 14:13:59 1174 260 2005-06-07 15:49:59 1 2006-02-16 02:30:53
  30982. 1102 2005-05-31 14:20:29 2052 115 2005-06-04 17:38:29 2 2006-02-16 02:30:53
  30983. 1103 2005-05-31 14:24:18 3154 353 2005-06-09 10:27:18 1 2006-02-16 02:30:53
  30984. 1104 2005-05-31 14:30:01 1619 466 2005-06-05 12:07:01 1 2006-02-16 02:30:53
  30985. 1105 2005-05-31 14:33:56 1708 26 2005-06-07 11:30:56 1 2006-02-16 02:30:53
  30986. 1106 2005-05-31 14:36:52 4185 109 2005-06-01 14:33:52 2 2006-02-16 02:30:53
  30987. 1107 2005-05-31 15:04:05 3449 53 2005-06-07 16:42:05 2 2006-02-16 02:30:53
  30988. 1108 2005-05-31 15:05:12 2562 254 2005-06-09 19:48:12 2 2006-02-16 02:30:53
  30989. 1109 2005-05-31 15:12:15 2031 481 2005-06-09 16:21:15 1 2006-02-16 02:30:53
  30990. 1110 2005-05-31 15:22:51 2085 355 2005-06-07 14:32:51 1 2006-02-16 02:30:53
  30991. 1111 2005-05-31 15:24:19 1137 300 2005-06-08 21:18:19 1 2006-02-16 02:30:53
  30992. 1112 2005-05-31 15:51:39 2453 214 2005-06-03 14:04:39 1 2006-02-16 02:30:53
  30993. 1113 2005-05-31 15:58:44 2078 451 2005-06-05 18:05:44 2 2006-02-16 02:30:53
  30994. 1114 2005-05-31 16:00:33 2287 117 2005-06-01 19:05:33 1 2006-02-16 02:30:53
  30995. 1115 2005-05-31 16:07:09 2140 109 2005-06-04 18:51:09 1 2006-02-16 02:30:53
  30996. 1116 2005-05-31 16:10:46 1356 256 2005-06-01 20:27:46 2 2006-02-16 02:30:53
  30997. 1117 2005-05-31 16:15:31 4125 189 2005-06-04 17:20:31 1 2006-02-16 02:30:53
  30998. 1118 2005-05-31 16:23:02 213 510 2005-06-03 20:00:02 1 2006-02-16 02:30:53
  30999. 1119 2005-05-31 16:34:27 4401 469 2005-06-02 10:54:27 1 2006-02-16 02:30:53
  31000. 1120 2005-05-31 16:37:14 2897 361 2005-06-04 12:53:14 1 2006-02-16 02:30:53
  31001. 1121 2005-05-31 16:37:36 1691 74 2005-06-06 21:02:36 1 2006-02-16 02:30:53
  31002. 1122 2005-05-31 16:39:33 1392 180 2005-06-04 17:25:33 1 2006-02-16 02:30:53
  31003. 1123 2005-05-31 16:48:43 142 448 2005-06-02 19:17:43 2 2006-02-16 02:30:53
  31004. 1124 2005-05-31 16:49:34 4560 134 2005-06-04 19:32:34 2 2006-02-16 02:30:53
  31005. 1125 2005-05-31 17:23:44 1172 234 2005-06-01 15:02:44 1 2006-02-16 02:30:53
  31006. 1126 2005-05-31 17:27:45 2765 431 2005-06-04 20:06:45 2 2006-02-16 02:30:53
  31007. 1127 2005-05-31 17:45:49 2412 387 2005-06-08 22:41:49 2 2006-02-16 02:30:53
  31008. 1128 2005-05-31 17:49:26 1496 311 2005-06-05 19:51:26 2 2006-02-16 02:30:53
  31009. 1129 2005-05-31 18:00:48 386 486 2005-06-04 23:05:48 1 2006-02-16 02:30:53
  31010. 1130 2005-05-31 18:13:57 3186 124 2005-06-06 22:50:57 2 2006-02-16 02:30:53
  31011. 1131 2005-05-31 18:44:19 2654 128 2005-06-01 20:13:19 1 2006-02-16 02:30:53
  31012. 1132 2005-05-31 18:44:53 1763 198 2005-06-07 22:02:53 2 2006-02-16 02:30:53
  31013. 1133 2005-05-31 19:12:21 4271 73 2005-06-02 20:12:21 1 2006-02-16 02:30:53
  31014. 1134 2005-05-31 19:14:15 143 191 2005-06-02 17:13:15 2 2006-02-16 02:30:53
  31015. 1135 2005-05-31 19:15:11 3118 122 2005-06-01 14:44:11 2 2006-02-16 02:30:53
  31016. 1136 2005-05-31 19:19:36 3963 50 2005-06-09 16:04:36 2 2006-02-16 02:30:53
  31017. 1137 2005-05-31 19:20:14 3259 351 2005-06-07 16:10:14 1 2006-02-16 02:30:53
  31018. 1138 2005-05-31 19:30:27 3944 438 2005-06-05 21:42:27 1 2006-02-16 02:30:53
  31019. 1139 2005-05-31 19:34:52 666 562 2005-06-06 17:40:52 1 2006-02-16 02:30:53
  31020. 1140 2005-05-31 19:36:30 3731 10 2005-06-07 18:33:30 2 2006-02-16 02:30:53
  31021. 1141 2005-05-31 19:42:02 4128 217 2005-06-07 00:59:02 2 2006-02-16 02:30:53
  31022. 1142 2005-05-31 19:46:38 3998 5 2005-06-05 14:03:38 1 2006-02-16 02:30:53
  31023. 1143 2005-05-31 19:53:03 2632 209 2005-06-06 20:56:03 2 2006-02-16 02:30:53
  31024. 1144 2005-05-31 20:04:10 2450 207 2005-06-09 16:34:10 1 2006-02-16 02:30:53
  31025. 1145 2005-05-31 20:13:45 1133 284 2005-06-08 02:10:45 1 2006-02-16 02:30:53
  31026. 1146 2005-05-31 20:34:45 3134 250 2005-06-03 18:12:45 2 2006-02-16 02:30:53
  31027. 1147 2005-05-31 20:37:52 622 259 2005-06-06 19:23:52 2 2006-02-16 02:30:53
  31028. 1148 2005-05-31 20:38:40 3307 235 2005-06-02 18:35:40 2 2006-02-16 02:30:53
  31029. 1149 2005-05-31 21:03:17 352 326 2005-06-08 19:58:17 2 2006-02-16 02:30:53
  31030. 1150 2005-05-31 21:20:09 1632 136 2005-06-03 19:15:09 2 2006-02-16 02:30:53
  31031. 1151 2005-05-31 21:29:00 1281 581 2005-06-03 23:24:00 1 2006-02-16 02:30:53
  31032. 1152 2005-05-31 21:32:17 210 191 2005-06-04 21:07:17 2 2006-02-16 02:30:53
  31033. 1153 2005-05-31 21:36:44 2725 506 2005-06-10 01:26:44 2 2006-02-16 02:30:53
  31034. 1154 2005-05-31 21:42:09 2732 59 2005-06-08 16:40:09 1 2006-02-16 02:30:53
  31035. 1155 2005-05-31 22:17:11 2048 251 2005-06-04 20:27:11 2 2006-02-16 02:30:53
  31036. 1156 2005-05-31 22:37:34 460 106 2005-06-01 23:02:34 2 2006-02-16 02:30:53
  31037. 1157 2005-05-31 22:47:45 1449 61 2005-06-02 18:01:45 1 2006-02-16 02:30:53
  31038. 1158 2005-06-14 22:53:33 1632 416 2005-06-18 21:37:33 2 2006-02-16 02:30:53
  31039. 1159 2005-06-14 22:55:13 4395 516 2005-06-17 02:11:13 1 2006-02-16 02:30:53
  31040. 1160 2005-06-14 23:00:34 2795 239 2005-06-18 01:58:34 2 2006-02-16 02:30:53
  31041. 1161 2005-06-14 23:07:08 1690 285 2005-06-21 17:12:08 1 2006-02-16 02:30:53
  31042. 1162 2005-06-14 23:09:38 987 310 2005-06-23 22:00:38 1 2006-02-16 02:30:53
  31043. 1163 2005-06-14 23:12:46 4209 592 2005-06-23 21:53:46 1 2006-02-16 02:30:53
  31044. 1164 2005-06-14 23:16:26 3691 49 2005-06-16 21:00:26 1 2006-02-16 02:30:53
  31045. 1165 2005-06-14 23:16:27 2855 264 2005-06-20 02:40:27 2 2006-02-16 02:30:53
  31046. 1166 2005-06-14 23:17:03 2508 46 2005-06-15 20:43:03 1 2006-02-16 02:30:53
  31047. 1167 2005-06-14 23:25:58 4021 323 2005-06-18 05:18:58 2 2006-02-16 02:30:53
  31048. 1168 2005-06-14 23:35:09 4368 481 2005-06-19 03:20:09 1 2006-02-16 02:30:53
  31049. 1169 2005-06-14 23:42:56 1062 139 2005-06-16 04:02:56 2 2006-02-16 02:30:53
  31050. 1170 2005-06-14 23:47:35 2444 595 2005-06-17 05:28:35 2 2006-02-16 02:30:53
  31051. 1171 2005-06-14 23:50:11 4082 284 2005-06-17 21:44:11 2 2006-02-16 02:30:53
  31052. 1172 2005-06-14 23:54:34 2685 306 2005-06-16 02:26:34 1 2006-02-16 02:30:53
  31053. 1173 2005-06-14 23:54:46 1050 191 2005-06-19 23:26:46 2 2006-02-16 02:30:53
  31054. 1174 2005-06-15 00:12:51 2653 95 2005-06-21 02:10:51 2 2006-02-16 02:30:53
  31055. 1175 2005-06-15 00:15:15 3255 197 2005-06-20 19:23:15 2 2006-02-16 02:30:53
  31056. 1176 2005-06-15 00:28:37 2715 512 2005-06-21 21:42:37 1 2006-02-16 02:30:53
  31057. 1177 2005-06-15 00:33:04 1897 210 2005-06-16 03:47:04 2 2006-02-16 02:30:53
  31058. 1178 2005-06-15 00:36:40 2553 279 2005-06-21 00:27:40 2 2006-02-16 02:30:53
  31059. 1179 2005-06-15 00:36:50 816 119 2005-06-22 22:09:50 1 2006-02-16 02:30:53
  31060. 1180 2005-06-15 00:39:01 3119 432 2005-06-21 22:44:01 2 2006-02-16 02:30:53
  31061. 1181 2005-06-15 00:42:17 2973 546 2005-06-19 03:36:17 2 2006-02-16 02:30:53
  31062. 1182 2005-06-15 00:45:21 1061 196 2005-06-22 03:52:21 1 2006-02-16 02:30:53
  31063. 1183 2005-06-15 00:49:19 706 329 2005-06-20 04:33:19 1 2006-02-16 02:30:53
  31064. 1184 2005-06-15 00:49:36 473 295 2005-06-22 23:39:36 2 2006-02-16 02:30:53
  31065. 1185 2005-06-15 00:54:12 2785 1 2005-06-23 02:42:12 2 2006-02-16 02:30:53
  31066. 1186 2005-06-15 00:56:45 1556 368 2005-06-16 02:23:45 1 2006-02-16 02:30:53
  31067. 1187 2005-06-15 00:58:50 1108 334 2005-06-23 02:19:50 1 2006-02-16 02:30:53
  31068. 1188 2005-06-15 01:04:07 246 173 2005-06-19 03:48:07 1 2006-02-16 02:30:53
  31069. 1189 2005-06-15 01:04:22 142 244 2005-06-24 06:48:22 1 2006-02-16 02:30:53
  31070. 1190 2005-06-15 01:05:32 2572 370 2005-06-23 02:34:32 2 2006-02-16 02:30:53
  31071. 1191 2005-06-15 01:10:35 2221 291 2005-06-17 20:36:35 2 2006-02-16 02:30:53
  31072. 1192 2005-06-15 01:18:39 4134 186 2005-06-19 22:46:39 1 2006-02-16 02:30:53
  31073. 1193 2005-06-15 01:24:20 4504 561 2005-06-21 02:29:20 2 2006-02-16 02:30:53
  31074. 1194 2005-06-15 01:25:08 3774 402 2005-06-21 01:16:08 2 2006-02-16 02:30:53
  31075. 1195 2005-06-15 01:37:38 2272 84 2005-06-17 21:50:38 1 2006-02-16 02:30:53
  31076. 1196 2005-06-15 01:38:31 994 52 2005-06-18 06:55:31 1 2006-02-16 02:30:53
  31077. 1197 2005-06-15 01:42:46 3812 349 2005-06-20 00:22:46 1 2006-02-16 02:30:53
  31078. 1198 2005-06-15 01:48:58 1138 491 2005-06-20 01:07:58 2 2006-02-16 02:30:53
  31079. 1199 2005-06-15 01:58:50 253 238 2005-06-16 20:30:50 2 2006-02-16 02:30:53
  31080. 1200 2005-06-15 01:59:51 3329 516 2005-06-21 21:33:51 1 2006-02-16 02:30:53
  31081. 1201 2005-06-15 02:06:28 2679 209 2005-06-16 21:38:28 2 2006-02-16 02:30:53
  31082. 1202 2005-06-15 02:08:04 2821 451 2005-06-16 21:56:04 1 2006-02-16 02:30:53
  31083. 1203 2005-06-15 02:09:02 2223 452 2005-06-21 00:04:02 1 2006-02-16 02:30:53
  31084. 1204 2005-06-15 02:21:46 2450 249 2005-06-20 07:14:46 2 2006-02-16 02:30:53
  31085. 1205 2005-06-15 02:25:56 470 340 2005-06-22 23:19:56 1 2006-02-16 02:30:53
  31086. 1206 2005-06-15 02:27:07 1097 264 2005-06-18 22:46:07 2 2006-02-16 02:30:53
  31087. 1207 2005-06-15 02:27:08 2277 430 2005-06-19 08:18:08 2 2006-02-16 02:30:53
  31088. 1208 2005-06-15 02:30:03 750 376 2005-06-18 00:04:03 1 2006-02-16 02:30:53
  31089. 1209 2005-06-15 02:31:12 1494 146 2005-06-21 07:39:12 1 2006-02-16 02:30:53
  31090. 1210 2005-06-15 02:57:51 7 345 2005-06-20 01:41:51 2 2006-02-16 02:30:53
  31091. 1211 2005-06-15 03:01:20 3360 122 2005-06-18 07:52:20 2 2006-02-16 02:30:53
  31092. 1212 2005-06-15 03:03:33 3611 371 2005-06-17 06:31:33 1 2006-02-16 02:30:53
  31093. 1213 2005-06-15 03:14:05 3191 94 2005-06-15 21:41:05 2 2006-02-16 02:30:53
  31094. 1214 2005-06-15 03:18:40 4482 46 2005-06-20 07:32:40 1 2006-02-16 02:30:53
  31095. 1215 2005-06-15 03:21:00 242 102 2005-06-19 03:39:00 1 2006-02-16 02:30:53
  31096. 1216 2005-06-15 03:23:48 3973 100 2005-06-18 03:35:48 1 2006-02-16 02:30:53
  31097. 1217 2005-06-15 03:24:14 600 203 2005-06-18 22:37:14 2 2006-02-16 02:30:53
  31098. 1218 2005-06-15 03:24:44 239 371 2005-06-21 22:45:44 2 2006-02-16 02:30:53
  31099. 1219 2005-06-15 03:25:59 3005 330 2005-06-20 00:37:59 1 2006-02-16 02:30:53
  31100. 1220 2005-06-15 03:26:15 1621 290 2005-06-23 08:17:15 1 2006-02-16 02:30:53
  31101. 1221 2005-06-15 03:35:16 2124 403 2005-06-18 03:11:16 1 2006-02-16 02:30:53
  31102. 1222 2005-06-15 03:38:49 2799 168 2005-06-17 22:30:49 1 2006-02-16 02:30:53
  31103. 1223 2005-06-15 03:38:53 1299 50 2005-06-20 01:00:53 2 2006-02-16 02:30:53
  31104. 1224 2005-06-15 03:44:25 1572 369 2005-06-17 03:49:25 2 2006-02-16 02:30:53
  31105. 1225 2005-06-15 03:45:35 1929 434 2005-06-19 02:03:35 1 2006-02-16 02:30:53
  31106. 1226 2005-06-15 03:46:10 2290 409 2005-06-23 02:00:10 1 2006-02-16 02:30:53
  31107. 1227 2005-06-15 03:50:03 654 428 2005-06-21 23:48:03 2 2006-02-16 02:30:53
  31108. 1228 2005-06-15 03:50:36 4473 398 2005-06-17 22:41:36 1 2006-02-16 02:30:53
  31109. 1229 2005-06-15 03:53:13 2140 468 2005-06-18 04:09:13 1 2006-02-16 02:30:53
  31110. 1230 2005-06-15 04:04:09 2324 447 2005-06-16 02:21:09 1 2006-02-16 02:30:53
  31111. 1231 2005-06-15 04:04:41 3003 302 2005-06-20 23:52:41 2 2006-02-16 02:30:53
  31112. 1232 2005-06-15 04:18:10 2743 391 2005-06-17 06:02:10 2 2006-02-16 02:30:53
  31113. 1233 2005-06-15 04:18:37 4214 550 2005-06-22 03:36:37 1 2006-02-16 02:30:53
  31114. 1234 2005-06-15 04:21:52 709 529 2005-06-22 03:25:52 1 2006-02-16 02:30:53
  31115. 1235 2005-06-15 04:31:28 1000 255 2005-06-22 10:08:28 1 2006-02-16 02:30:53
  31116. 1236 2005-06-15 04:34:27 3182 66 2005-06-18 08:15:27 1 2006-02-16 02:30:53
  31117. 1237 2005-06-15 04:44:10 3249 49 2005-06-23 07:00:10 2 2006-02-16 02:30:53
  31118. 1238 2005-06-15 04:49:08 3534 205 2005-06-20 00:06:08 1 2006-02-16 02:30:53
  31119. 1239 2005-06-15 04:53:01 3731 444 2005-06-16 07:03:01 1 2006-02-16 02:30:53
  31120. 1240 2005-06-15 04:58:07 3841 28 2005-06-17 23:56:07 1 2006-02-16 02:30:53
  31121. 1241 2005-06-15 04:59:43 4377 62 2005-06-24 03:32:43 2 2006-02-16 02:30:53
  31122. 1242 2005-06-15 05:05:07 821 141 2005-06-22 04:57:07 1 2006-02-16 02:30:53
  31123. 1243 2005-06-15 05:07:32 2629 107 2005-06-21 08:17:32 2 2006-02-16 02:30:53
  31124. 1244 2005-06-15 05:08:40 1026 515 2005-06-20 10:41:40 1 2006-02-16 02:30:53
  31125. 1245 2005-06-15 05:09:01 1314 234 2005-06-22 06:55:01 2 2006-02-16 02:30:53
  31126. 1246 2005-06-15 05:11:19 431 357 2005-06-21 02:21:19 1 2006-02-16 02:30:53
  31127. 1247 2005-06-15 05:16:40 4049 287 2005-06-23 11:01:40 1 2006-02-16 02:30:53
  31128. 1248 2005-06-15 05:33:52 3878 544 2005-06-19 06:56:52 2 2006-02-16 02:30:53
  31129. 1249 2005-06-15 05:38:09 2120 403 2005-06-22 10:29:09 1 2006-02-16 02:30:53
  31130. 1250 2005-06-15 05:55:40 4360 38 2005-06-23 03:11:40 2 2006-02-16 02:30:53
  31131. 1251 2005-06-15 05:58:55 3307 442 2005-06-23 02:45:55 2 2006-02-16 02:30:53
  31132. 1252 2005-06-15 06:05:18 1147 89 2005-06-24 07:40:18 1 2006-02-16 02:30:53
  31133. 1253 2005-06-15 06:06:33 3242 498 2005-06-21 04:13:33 2 2006-02-16 02:30:53
  31134. 1254 2005-06-15 06:11:16 3986 571 2005-06-21 06:40:16 2 2006-02-16 02:30:53
  31135. 1255 2005-06-15 06:13:45 1433 526 2005-06-16 03:59:45 2 2006-02-16 02:30:53
  31136. 1256 2005-06-15 06:13:57 1437 470 2005-06-16 06:54:57 2 2006-02-16 02:30:53
  31137. 1257 2005-06-15 06:15:36 1938 267 2005-06-21 01:04:36 2 2006-02-16 02:30:53
  31138. 1258 2005-06-15 06:21:30 4530 320 2005-06-18 05:43:30 2 2006-02-16 02:30:53
  31139. 1259 2005-06-15 06:37:55 4460 570 2005-06-23 04:02:55 2 2006-02-16 02:30:53
  31140. 1260 2005-06-15 06:42:25 330 586 2005-06-16 10:44:25 2 2006-02-16 02:30:53
  31141. 1261 2005-06-15 06:52:57 2447 95 2005-06-21 01:47:57 2 2006-02-16 02:30:53
  31142. 1262 2005-06-15 06:54:53 4495 236 2005-06-22 08:09:53 2 2006-02-16 02:30:53
  31143. 1263 2005-06-15 06:56:39 4144 540 2005-06-16 11:08:39 1 2006-02-16 02:30:53
  31144. 1264 2005-06-15 06:59:39 4176 439 2005-06-18 08:10:39 2 2006-02-16 02:30:53
  31145. 1265 2005-06-15 07:00:50 982 163 2005-06-19 12:27:50 1 2006-02-16 02:30:53
  31146. 1266 2005-06-15 07:11:39 2230 96 2005-06-21 02:59:39 2 2006-02-16 02:30:53
  31147. 1267 2005-06-15 07:21:21 4246 509 2005-06-17 08:12:21 2 2006-02-16 02:30:53
  31148. 1268 2005-06-15 07:29:30 3641 142 2005-06-23 12:36:30 1 2006-02-16 02:30:53
  31149. 1269 2005-06-15 07:29:59 108 59 2005-06-16 13:26:59 2 2006-02-16 02:30:53
  31150. 1270 2005-06-15 07:30:22 62 395 2005-06-18 11:31:22 2 2006-02-16 02:30:53
  31151. 1271 2005-06-15 07:32:24 379 560 2005-06-21 05:12:24 1 2006-02-16 02:30:53
  31152. 1272 2005-06-15 07:42:58 3128 135 2005-06-18 12:00:58 1 2006-02-16 02:30:53
  31153. 1273 2005-06-15 07:52:35 361 530 2005-06-21 04:55:35 1 2006-02-16 02:30:53
  31154. 1274 2005-06-15 07:52:52 2765 430 2005-06-20 10:01:52 1 2006-02-16 02:30:53
  31155. 1275 2005-06-15 07:55:43 950 214 2005-06-20 06:30:43 1 2006-02-16 02:30:53
  31156. 1276 2005-06-15 08:00:13 1508 388 2005-06-24 02:55:13 2 2006-02-16 02:30:53
  31157. 1277 2005-06-15 08:01:29 76 464 2005-06-22 07:16:29 2 2006-02-16 02:30:53
  31158. 1278 2005-06-15 08:09:12 4471 191 2005-06-17 04:05:12 2 2006-02-16 02:30:53
  31159. 1279 2005-06-15 08:13:57 698 183 2005-06-18 09:36:57 2 2006-02-16 02:30:53
  31160. 1280 2005-06-15 08:16:06 2597 266 2005-06-21 04:10:06 2 2006-02-16 02:30:53
  31161. 1281 2005-06-15 08:21:39 2963 511 2005-06-17 11:03:39 1 2006-02-16 02:30:53
  31162. 1282 2005-06-15 08:25:33 186 539 2005-06-21 04:02:33 1 2006-02-16 02:30:53
  31163. 1283 2005-06-15 08:27:30 3177 470 2005-06-16 09:46:30 2 2006-02-16 02:30:53
  31164. 1284 2005-06-15 08:27:33 1387 463 2005-06-17 03:58:33 1 2006-02-16 02:30:53
  31165. 1285 2005-06-15 08:33:06 1054 254 2005-06-19 07:36:06 1 2006-02-16 02:30:53
  31166. 1286 2005-06-15 08:41:13 774 179 2005-06-23 13:13:13 2 2006-02-16 02:30:53
  31167. 1287 2005-06-15 08:41:38 4204 104 2005-06-22 14:02:38 1 2006-02-16 02:30:53
  31168. 1288 2005-06-15 08:41:52 830 456 2005-06-19 05:30:52 2 2006-02-16 02:30:53
  31169. 1289 2005-06-15 08:44:09 3154 522 2005-06-21 06:04:09 1 2006-02-16 02:30:53
  31170. 1290 2005-06-15 08:52:44 1921 540 2005-06-24 13:36:44 2 2006-02-16 02:30:53
  31171. 1291 2005-06-15 08:55:01 3090 176 2005-06-24 04:22:01 1 2006-02-16 02:30:53
  31172. 1292 2005-06-15 09:03:52 4535 178 2005-06-21 07:53:52 1 2006-02-16 02:30:53
  31173. 1293 2005-06-15 09:06:24 2882 127 2005-06-18 06:58:24 1 2006-02-16 02:30:53
  31174. 1294 2005-06-15 09:09:27 339 327 2005-06-19 04:43:27 1 2006-02-16 02:30:53
  31175. 1295 2005-06-15 09:17:20 2897 449 2005-06-18 10:14:20 2 2006-02-16 02:30:53
  31176. 1296 2005-06-15 09:23:59 1760 200 2005-06-19 03:44:59 2 2006-02-16 02:30:53
  31177. 1297 2005-06-15 09:31:28 1075 4 2005-06-19 04:33:28 1 2006-02-16 02:30:53
  31178. 1298 2005-06-15 09:32:53 4163 334 2005-06-16 12:40:53 2 2006-02-16 02:30:53
  31179. 1299 2005-06-15 09:34:50 1584 91 2005-06-21 12:07:50 1 2006-02-16 02:30:53
  31180. 1300 2005-06-15 09:36:19 2524 186 2005-06-17 13:54:19 2 2006-02-16 02:30:53
  31181. 1301 2005-06-15 09:46:33 1484 33 2005-06-24 08:56:33 2 2006-02-16 02:30:53
  31182. 1302 2005-06-15 09:48:37 324 285 2005-06-22 06:18:37 1 2006-02-16 02:30:53
  31183. 1303 2005-06-15 09:55:57 2001 365 2005-06-20 14:26:57 2 2006-02-16 02:30:53
  31184. 1304 2005-06-15 09:56:02 1304 242 2005-06-24 07:00:02 1 2006-02-16 02:30:53
  31185. 1305 2005-06-15 09:59:16 187 8 2005-06-19 09:48:16 2 2006-02-16 02:30:53
  31186. 1306 2005-06-15 09:59:24 2132 524 2005-06-19 09:37:24 2 2006-02-16 02:30:53
  31187. 1307 2005-06-15 10:06:15 368 507 2005-06-20 04:50:15 2 2006-02-16 02:30:53
  31188. 1308 2005-06-15 10:07:48 220 236 2005-06-24 15:24:48 1 2006-02-16 02:30:53
  31189. 1309 2005-06-15 10:10:49 2356 200 2005-06-16 12:44:49 1 2006-02-16 02:30:53
  31190. 1310 2005-06-15 10:11:42 2045 27 2005-06-16 15:00:42 1 2006-02-16 02:30:53
  31191. 1311 2005-06-15 10:11:59 3114 326 2005-06-17 08:44:59 2 2006-02-16 02:30:53
  31192. 1312 2005-06-15 10:16:27 3608 313 2005-06-20 06:53:27 1 2006-02-16 02:30:53
  31193. 1313 2005-06-15 10:18:34 1657 448 2005-06-23 06:25:34 1 2006-02-16 02:30:53
  31194. 1314 2005-06-15 10:21:45 1359 538 2005-06-21 14:10:45 1 2006-02-16 02:30:53
  31195. 1315 2005-06-15 10:23:08 3844 405 2005-06-21 15:06:08 1 2006-02-16 02:30:53
  31196. 1316 2005-06-15 10:26:23 3891 138 2005-06-21 09:25:23 2 2006-02-16 02:30:53
  31197. 1317 2005-06-15 10:30:19 3696 316 2005-06-24 08:18:19 1 2006-02-16 02:30:53
  31198. 1318 2005-06-15 10:34:26 2760 341 2005-06-20 16:20:26 1 2006-02-16 02:30:53
  31199. 1319 2005-06-15 10:39:05 4296 190 2005-06-18 05:25:05 1 2006-02-16 02:30:53
  31200. 1320 2005-06-15 10:42:13 4484 84 2005-06-17 13:44:13 1 2006-02-16 02:30:53
  31201. 1321 2005-06-15 10:49:17 3516 204 2005-06-16 15:30:17 1 2006-02-16 02:30:53
  31202. 1322 2005-06-15 10:55:09 2076 217 2005-06-18 15:14:09 2 2006-02-16 02:30:53
  31203. 1323 2005-06-15 10:55:17 3273 187 2005-06-24 09:51:17 1 2006-02-16 02:30:53
  31204. 1324 2005-06-15 11:02:45 764 394 2005-06-17 07:14:45 1 2006-02-16 02:30:53
  31205. 1325 2005-06-15 11:03:24 52 193 2005-06-20 10:54:24 1 2006-02-16 02:30:53
  31206. 1326 2005-06-15 11:07:39 59 548 2005-06-22 05:55:39 2 2006-02-16 02:30:53
  31207. 1327 2005-06-15 11:11:39 403 539 2005-06-22 10:45:39 1 2006-02-16 02:30:53
  31208. 1328 2005-06-15 11:23:27 3665 295 2005-06-19 12:42:27 2 2006-02-16 02:30:53
  31209. 1329 2005-06-15 11:25:06 1154 359 2005-06-17 16:10:06 2 2006-02-16 02:30:53
  31210. 1330 2005-06-15 11:29:17 1219 587 2005-06-24 13:36:17 2 2006-02-16 02:30:53
  31211. 1331 2005-06-15 11:34:33 3089 277 2005-06-21 09:46:33 1 2006-02-16 02:30:53
  31212. 1332 2005-06-15 11:36:01 1412 116 2005-06-17 14:29:01 1 2006-02-16 02:30:53
  31213. 1333 2005-06-15 11:37:08 448 310 2005-06-16 10:13:08 2 2006-02-16 02:30:53
  31214. 1334 2005-06-15 11:43:09 1242 269 2005-06-20 15:45:09 2 2006-02-16 02:30:53
  31215. 1335 2005-06-15 11:51:30 1713 64 2005-06-16 16:42:30 2 2006-02-16 02:30:53
  31216. 1336 2005-06-15 12:01:34 1696 290 2005-06-23 12:05:34 1 2006-02-16 02:30:53
  31217. 1337 2005-06-15 12:12:42 4014 465 2005-06-20 12:38:42 2 2006-02-16 02:30:53
  31218. 1338 2005-06-15 12:17:34 1206 25 2005-06-19 07:40:34 2 2006-02-16 02:30:53
  31219. 1339 2005-06-15 12:21:56 424 162 2005-06-19 07:46:56 1 2006-02-16 02:30:53
  31220. 1340 2005-06-15 12:24:15 251 100 2005-06-22 13:02:15 1 2006-02-16 02:30:53
  31221. 1341 2005-06-15 12:26:18 3363 344 2005-06-21 07:26:18 2 2006-02-16 02:30:53
  31222. 1342 2005-06-15 12:26:21 4429 427 2005-06-22 11:23:21 1 2006-02-16 02:30:53
  31223. 1343 2005-06-15 12:27:19 2393 416 2005-06-21 16:57:19 1 2006-02-16 02:30:53
  31224. 1344 2005-06-15 12:29:41 1625 585 2005-06-22 12:45:41 2 2006-02-16 02:30:53
  31225. 1345 2005-06-15 12:32:13 1041 270 2005-06-24 14:02:13 1 2006-02-16 02:30:53
  31226. 1346 2005-06-15 12:39:52 4540 585 2005-06-24 17:43:52 1 2006-02-16 02:30:53
  31227. 1347 2005-06-15 12:43:43 374 190 2005-06-16 09:55:43 1 2006-02-16 02:30:53
  31228. 1348 2005-06-15 12:45:30 2078 196 2005-06-17 17:12:30 1 2006-02-16 02:30:53
  31229. 1349 2005-06-15 12:49:02 1131 267 2005-06-17 15:20:02 1 2006-02-16 02:30:53
  31230. 1350 2005-06-15 12:50:25 4261 316 2005-06-23 11:35:25 1 2006-02-16 02:30:53
  31231. 1351 2005-06-15 12:51:03 2364 484 2005-06-22 07:23:03 1 2006-02-16 02:30:53
  31232. 1352 2005-06-15 12:58:27 4352 276 2005-06-18 10:57:27 1 2006-02-16 02:30:53
  31233. 1353 2005-06-15 13:13:36 2711 480 2005-06-21 08:46:36 2 2006-02-16 02:30:53
  31234. 1354 2005-06-15 13:13:49 1294 83 2005-06-23 13:08:49 2 2006-02-16 02:30:53
  31235. 1355 2005-06-15 13:13:59 4203 499 2005-06-20 12:23:59 1 2006-02-16 02:30:53
  31236. 1356 2005-06-15 13:17:01 1318 212 2005-06-19 16:22:01 1 2006-02-16 02:30:53
  31237. 1357 2005-06-15 13:26:23 2285 205 2005-06-23 14:12:23 1 2006-02-16 02:30:53
  31238. 1358 2005-06-15 13:28:48 2025 442 2005-06-21 13:40:48 1 2006-02-16 02:30:53
  31239. 1359 2005-06-15 13:30:30 3140 353 2005-06-17 14:55:30 1 2006-02-16 02:30:53
  31240. 1360 2005-06-15 13:32:15 4107 14 2005-06-18 10:59:15 2 2006-02-16 02:30:53
  31241. 1361 2005-06-15 13:37:38 4338 115 2005-06-19 17:08:38 1 2006-02-16 02:30:53
  31242. 1362 2005-06-15 13:53:32 4524 98 2005-06-19 16:05:32 1 2006-02-16 02:30:53
  31243. 1363 2005-06-15 14:05:11 771 197 2005-06-17 19:53:11 2 2006-02-16 02:30:53
  31244. 1364 2005-06-15 14:05:32 115 400 2005-06-16 15:31:32 1 2006-02-16 02:30:53
  31245. 1365 2005-06-15 14:09:55 3813 25 2005-06-19 18:11:55 2 2006-02-16 02:30:53
  31246. 1366 2005-06-15 14:21:00 4238 576 2005-06-24 17:36:00 1 2006-02-16 02:30:53
  31247. 1367 2005-06-15 14:25:17 1505 94 2005-06-21 19:15:17 1 2006-02-16 02:30:53
  31248. 1368 2005-06-15 14:27:47 2020 222 2005-06-23 18:07:47 2 2006-02-16 02:30:53
  31249. 1369 2005-06-15 14:29:14 679 221 2005-06-16 13:01:14 1 2006-02-16 02:30:53
  31250. 1370 2005-06-15 14:31:05 644 396 2005-06-22 19:23:05 2 2006-02-16 02:30:53
  31251. 1371 2005-06-15 14:38:15 760 491 2005-06-23 15:36:15 1 2006-02-16 02:30:53
  31252. 1372 2005-06-15 14:45:48 3740 108 2005-06-17 18:02:48 2 2006-02-16 02:30:53
  31253. 1373 2005-06-15 14:48:04 284 51 2005-06-22 09:48:04 1 2006-02-16 02:30:53
  31254. 1374 2005-06-15 14:49:54 3353 120 2005-06-22 12:30:54 1 2006-02-16 02:30:53
  31255. 1375 2005-06-15 14:54:56 3555 500 2005-06-21 14:48:56 2 2006-02-16 02:30:53
  31256. 1376 2005-06-15 14:59:06 4271 215 2005-06-19 17:34:06 1 2006-02-16 02:30:53
  31257. 1377 2005-06-15 15:02:03 3410 245 2005-06-22 14:54:03 2 2006-02-16 02:30:53
  31258. 1378 2005-06-15 15:03:15 4372 253 2005-06-19 16:50:15 1 2006-02-16 02:30:53
  31259. 1379 2005-06-15 15:05:10 810 212 2005-06-18 12:11:10 1 2006-02-16 02:30:53
  31260. 1380 2005-06-15 15:13:10 3376 158 2005-06-18 12:42:10 2 2006-02-16 02:30:53
  31261. 1381 2005-06-15 15:17:21 3262 300 2005-06-20 17:07:21 2 2006-02-16 02:30:53
  31262. 1382 2005-06-15 15:18:08 3133 455 2005-06-22 09:22:08 2 2006-02-16 02:30:53
  31263. 1383 2005-06-15 15:20:06 1281 379 2005-06-24 18:42:06 2 2006-02-16 02:30:53
  31264. 1384 2005-06-15 15:22:03 4242 242 2005-06-18 18:11:03 1 2006-02-16 02:30:53
  31265. 1385 2005-06-15 15:28:23 4073 396 2005-06-18 18:37:23 1 2006-02-16 02:30:53
  31266. 1386 2005-06-15 15:38:58 1296 322 2005-06-20 16:28:58 2 2006-02-16 02:30:53
  31267. 1387 2005-06-15 15:40:56 515 278 2005-06-17 10:39:56 1 2006-02-16 02:30:53
  31268. 1388 2005-06-15 15:48:41 3987 500 2005-06-22 17:51:41 1 2006-02-16 02:30:53
  31269. 1389 2005-06-15 15:49:01 965 472 2005-06-19 11:08:01 2 2006-02-16 02:30:53
  31270. 1390 2005-06-15 16:06:29 4502 254 2005-06-19 13:11:29 1 2006-02-16 02:30:53
  31271. 1391 2005-06-15 16:11:21 4213 273 2005-06-22 21:32:21 1 2006-02-16 02:30:53
  31272. 1392 2005-06-15 16:12:27 363 460 2005-06-16 17:30:27 2 2006-02-16 02:30:53
  31273. 1393 2005-06-15 16:12:50 2767 177 2005-06-19 10:40:50 2 2006-02-16 02:30:53
  31274. 1394 2005-06-15 16:17:21 2802 268 2005-06-21 20:44:21 2 2006-02-16 02:30:53
  31275. 1395 2005-06-15 16:21:04 753 252 2005-06-23 12:52:04 2 2006-02-16 02:30:53
  31276. 1396 2005-06-15 16:22:38 1007 103 2005-06-17 15:53:38 2 2006-02-16 02:30:53
  31277. 1397 2005-06-15 16:25:26 1830 444 2005-06-21 20:45:26 1 2006-02-16 02:30:53
  31278. 1398 2005-06-15 16:28:42 4402 527 2005-06-16 12:11:42 1 2006-02-16 02:30:53
  31279. 1399 2005-06-15 16:29:51 1435 469 2005-06-18 14:06:51 1 2006-02-16 02:30:53
  31280. 1400 2005-06-15 16:29:56 230 571 2005-06-21 14:43:56 2 2006-02-16 02:30:53
  31281. 1401 2005-06-15 16:30:22 4081 366 2005-06-21 11:07:22 2 2006-02-16 02:30:53
  31282. 1402 2005-06-15 16:31:08 1951 381 2005-06-24 19:31:08 1 2006-02-16 02:30:53
  31283. 1403 2005-06-15 16:31:59 3380 546 2005-06-22 14:23:59 2 2006-02-16 02:30:53
  31284. 1404 2005-06-15 16:38:53 2776 375 2005-06-16 20:37:53 1 2006-02-16 02:30:53
  31285. 1405 2005-06-15 16:41:26 3184 243 2005-06-21 18:16:26 1 2006-02-16 02:30:53
  31286. 1406 2005-06-15 16:44:00 3118 199 2005-06-21 11:22:00 2 2006-02-16 02:30:53
  31287. 1407 2005-06-15 16:45:07 1286 89 2005-06-23 14:01:07 1 2006-02-16 02:30:53
  31288. 1408 2005-06-15 16:57:58 2655 396 2005-06-22 21:08:58 1 2006-02-16 02:30:53
  31289. 1409 2005-06-15 16:58:12 1398 297 2005-06-21 11:21:12 2 2006-02-16 02:30:53
  31290. 1410 2005-06-15 16:59:46 809 356 2005-06-21 16:38:46 1 2006-02-16 02:30:53
  31291. 1411 2005-06-15 17:05:36 2276 520 2005-06-21 14:05:36 1 2006-02-16 02:30:53
  31292. 1412 2005-06-15 17:09:48 4236 166 2005-06-18 17:05:48 2 2006-02-16 02:30:53
  31293. 1413 2005-06-15 17:25:07 3625 96 2005-06-21 17:17:07 2 2006-02-16 02:30:53
  31294. 1414 2005-06-15 17:26:32 4005 304 2005-06-22 22:30:32 1 2006-02-16 02:30:53
  31295. 1415 2005-06-15 17:31:57 1885 331 2005-06-16 22:22:57 2 2006-02-16 02:30:53
  31296. 1416 2005-06-15 17:44:57 3816 167 2005-06-22 20:53:57 2 2006-02-16 02:30:53
  31297. 1417 2005-06-15 17:45:51 1334 570 2005-06-19 14:00:51 2 2006-02-16 02:30:53
  31298. 1418 2005-06-15 17:51:27 2974 591 2005-06-18 23:20:27 2 2006-02-16 02:30:53
  31299. 1419 2005-06-15 17:54:50 1208 312 2005-06-17 19:44:50 2 2006-02-16 02:30:53
  31300. 1420 2005-06-15 17:56:14 4149 255 2005-06-24 15:45:14 2 2006-02-16 02:30:53
  31301. 1421 2005-06-15 17:57:04 2439 533 2005-06-21 20:38:04 2 2006-02-16 02:30:53
  31302. 1422 2005-06-15 18:02:53 1021 1 2005-06-19 15:54:53 2 2006-02-16 02:30:53
  31303. 1423 2005-06-15 18:08:12 1396 592 2005-06-24 19:13:12 1 2006-02-16 02:30:53
  31304. 1424 2005-06-15 18:08:14 887 224 2005-06-24 23:16:14 2 2006-02-16 02:30:53
  31305. 1425 2005-06-15 18:13:46 1308 108 2005-06-18 22:50:46 2 2006-02-16 02:30:53
  31306. 1426 2005-06-15 18:16:24 4412 363 2005-06-18 22:15:24 2 2006-02-16 02:30:53
  31307. 1427 2005-06-15 18:17:28 14 100 2005-06-16 15:47:28 1 2006-02-16 02:30:53
  31308. 1428 2005-06-15 18:19:30 3689 583 2005-06-22 23:05:30 2 2006-02-16 02:30:53
  31309. 1429 2005-06-15 18:24:10 4116 362 2005-06-18 16:30:10 1 2006-02-16 02:30:53
  31310. 1430 2005-06-15 18:24:55 3412 194 2005-06-16 12:26:55 1 2006-02-16 02:30:53
  31311. 1431 2005-06-15 18:26:29 3193 438 2005-06-21 17:33:29 1 2006-02-16 02:30:53
  31312. 1432 2005-06-15 18:27:24 523 339 2005-06-21 14:03:24 2 2006-02-16 02:30:53
  31313. 1433 2005-06-15 18:30:00 2310 88 2005-06-16 15:14:00 1 2006-02-16 02:30:53
  31314. 1434 2005-06-15 18:30:46 4228 544 2005-06-24 17:51:46 1 2006-02-16 02:30:53
  31315. 1435 2005-06-15 18:32:30 2769 510 2005-06-24 12:44:30 2 2006-02-16 02:30:53
  31316. 1436 2005-06-15 18:35:40 924 584 2005-06-21 15:04:40 1 2006-02-16 02:30:53
  31317. 1437 2005-06-15 18:37:04 3263 96 2005-06-20 12:56:04 1 2006-02-16 02:30:53
  31318. 1438 2005-06-15 18:38:51 1816 82 2005-06-17 23:50:51 1 2006-02-16 02:30:53
  31319. 1439 2005-06-15 18:45:32 3155 589 2005-06-22 15:57:32 2 2006-02-16 02:30:53
  31320. 1440 2005-06-15 18:53:14 2921 26 2005-06-24 15:28:14 1 2006-02-16 02:30:53
  31321. 1441 2005-06-15 18:54:21 2095 444 2005-06-22 22:48:21 2 2006-02-16 02:30:53
  31322. 1442 2005-06-15 18:55:34 3912 122 2005-06-22 20:41:34 2 2006-02-16 02:30:53
  31323. 1443 2005-06-15 18:57:51 2485 435 2005-06-18 14:18:51 2 2006-02-16 02:30:53
  31324. 1444 2005-06-15 19:08:16 1303 539 2005-06-24 15:20:16 2 2006-02-16 02:30:53
  31325. 1445 2005-06-15 19:10:07 3189 537 2005-06-19 20:27:07 2 2006-02-16 02:30:53
  31326. 1446 2005-06-15 19:13:45 1989 506 2005-06-23 19:43:45 2 2006-02-16 02:30:53
  31327. 1447 2005-06-15 19:13:51 984 471 2005-06-21 22:56:51 1 2006-02-16 02:30:53
  31328. 1448 2005-06-15 19:17:16 2781 246 2005-06-23 21:56:16 2 2006-02-16 02:30:53
  31329. 1449 2005-06-15 19:19:16 1525 471 2005-06-18 15:24:16 2 2006-02-16 02:30:53
  31330. 1450 2005-06-15 19:22:08 4132 268 2005-06-16 17:53:08 2 2006-02-16 02:30:53
  31331. 1451 2005-06-15 19:30:18 3560 18 2005-06-19 19:22:18 2 2006-02-16 02:30:53
  31332. 1452 2005-06-15 19:32:52 4348 243 2005-06-16 13:45:52 1 2006-02-16 02:30:53
  31333. 1453 2005-06-15 19:36:39 3274 457 2005-06-19 00:16:39 2 2006-02-16 02:30:53
  31334. 1454 2005-06-15 19:49:41 102 298 2005-06-17 15:17:41 2 2006-02-16 02:30:53
  31335. 1455 2005-06-15 19:51:06 2194 358 2005-06-18 21:54:06 2 2006-02-16 02:30:53
  31336. 1456 2005-06-15 20:00:11 632 590 2005-06-23 18:03:11 2 2006-02-16 02:30:53
  31337. 1457 2005-06-15 20:05:49 730 345 2005-06-19 15:35:49 1 2006-02-16 02:30:53
  31338. 1458 2005-06-15 20:24:05 3546 178 2005-06-21 01:22:05 1 2006-02-16 02:30:53
  31339. 1459 2005-06-15 20:25:53 1862 218 2005-06-22 23:34:53 2 2006-02-16 02:30:53
  31340. 1460 2005-06-15 20:27:02 1405 565 2005-06-16 16:21:02 1 2006-02-16 02:30:53
  31341. 1461 2005-06-15 20:32:08 4479 216 2005-06-23 01:08:08 1 2006-02-16 02:30:53
  31342. 1462 2005-06-15 20:37:40 653 187 2005-06-18 19:36:40 2 2006-02-16 02:30:53
  31343. 1463 2005-06-15 20:37:51 2984 569 2005-06-21 16:46:51 2 2006-02-16 02:30:53
  31344. 1464 2005-06-15 20:38:14 4113 387 2005-06-17 14:52:14 2 2006-02-16 02:30:53
  31345. 1465 2005-06-15 20:43:08 609 387 2005-06-18 23:00:08 1 2006-02-16 02:30:53
  31346. 1466 2005-06-15 20:46:04 1057 288 2005-06-24 22:46:04 1 2006-02-16 02:30:53
  31347. 1467 2005-06-15 20:47:10 688 506 2005-06-22 00:30:10 1 2006-02-16 02:30:53
  31348. 1468 2005-06-15 20:48:22 228 230 2005-06-21 19:48:22 1 2006-02-16 02:30:53
  31349. 1469 2005-06-15 20:52:36 2451 580 2005-06-21 19:55:36 1 2006-02-16 02:30:53
  31350. 1470 2005-06-15 20:53:07 4044 11 2005-06-25 02:12:07 1 2006-02-16 02:30:53
  31351. 1471 2005-06-15 20:53:26 565 428 2005-06-24 18:25:26 2 2006-02-16 02:30:53
  31352. 1472 2005-06-15 20:54:55 4233 373 2005-06-24 21:52:55 2 2006-02-16 02:30:53
  31353. 1473 2005-06-15 20:55:20 2377 249 2005-06-21 16:40:20 2 2006-02-16 02:30:53
  31354. 1474 2005-06-15 20:55:42 164 202 2005-06-19 02:41:42 2 2006-02-16 02:30:53
  31355. 1475 2005-06-15 21:08:01 1834 344 2005-06-18 22:33:01 2 2006-02-16 02:30:53
  31356. 1476 2005-06-15 21:08:46 1407 1 2005-06-25 02:26:46 1 2006-02-16 02:30:53
  31357. 1477 2005-06-15 21:11:18 418 51 2005-06-19 02:05:18 1 2006-02-16 02:30:53
  31358. 1478 2005-06-15 21:12:13 435 336 2005-06-18 21:43:13 2 2006-02-16 02:30:53
  31359. 1479 2005-06-15 21:13:38 172 592 2005-06-17 01:26:38 2 2006-02-16 02:30:53
  31360. 1480 2005-06-15 21:17:17 2598 27 2005-06-23 22:01:17 1 2006-02-16 02:30:53
  31361. 1481 2005-06-15 21:17:58 3041 125 2005-06-18 17:53:58 2 2006-02-16 02:30:53
  31362. 1482 2005-06-15 21:18:16 3980 60 2005-06-16 17:07:16 1 2006-02-16 02:30:53
  31363. 1483 2005-06-15 21:21:58 1926 242 2005-06-24 00:44:58 2 2006-02-16 02:30:53
  31364. 1484 2005-06-15 21:22:35 1589 320 2005-06-20 02:27:35 2 2006-02-16 02:30:53
  31365. 1485 2005-06-15 21:24:10 194 281 2005-06-24 23:03:10 1 2006-02-16 02:30:53
  31366. 1486 2005-06-15 21:25:30 847 62 2005-06-16 16:36:30 1 2006-02-16 02:30:53
  31367. 1487 2005-06-15 21:27:42 3791 76 2005-06-22 03:09:42 2 2006-02-16 02:30:53
  31368. 1488 2005-06-15 21:39:54 1081 355 2005-06-16 20:33:54 1 2006-02-16 02:30:53
  31369. 1489 2005-06-15 21:41:38 699 213 2005-06-22 17:00:38 1 2006-02-16 02:30:53
  31370. 1490 2005-06-15 21:42:17 3515 123 2005-06-22 02:01:17 2 2006-02-16 02:30:53
  31371. 1491 2005-06-15 21:48:18 848 354 2005-06-20 16:40:18 1 2006-02-16 02:30:53
  31372. 1492 2005-06-15 21:48:35 4148 360 2005-06-17 17:18:35 1 2006-02-16 02:30:53
  31373. 1493 2005-06-15 21:50:32 4581 235 2005-06-17 01:02:32 2 2006-02-16 02:30:53
  31374. 1494 2005-06-15 21:54:20 244 575 2005-06-19 18:46:20 1 2006-02-16 02:30:53
  31375. 1495 2005-06-15 21:54:31 1842 175 2005-06-19 00:08:31 2 2006-02-16 02:30:53
  31376. 1496 2005-06-15 21:55:58 3915 290 2005-06-17 02:28:58 2 2006-02-16 02:30:53
  31377. 1497 2005-06-15 21:56:39 2958 44 2005-06-20 20:32:39 1 2006-02-16 02:30:53
  31378. 1498 2005-06-15 21:58:00 3690 352 2005-06-17 21:50:00 1 2006-02-16 02:30:53
  31379. 1499 2005-06-15 21:58:07 165 375 2005-06-22 19:37:07 2 2006-02-16 02:30:53
  31380. 1500 2005-06-15 22:00:45 2652 237 2005-06-18 16:19:45 2 2006-02-16 02:30:53
  31381. 1501 2005-06-15 22:02:35 1780 148 2005-06-23 18:59:35 1 2006-02-16 02:30:53
  31382. 1502 2005-06-15 22:03:14 3277 5 2005-06-23 18:42:14 2 2006-02-16 02:30:53
  31383. 1503 2005-06-15 22:07:09 763 197 2005-06-20 23:15:09 1 2006-02-16 02:30:53
  31384. 1504 2005-06-15 22:08:06 3621 423 2005-06-24 01:16:06 2 2006-02-16 02:30:53
  31385. 1505 2005-06-15 22:12:50 2961 561 2005-06-17 21:37:50 2 2006-02-16 02:30:53
  31386. 1506 2005-06-15 22:19:37 4085 404 2005-06-22 18:28:37 1 2006-02-16 02:30:53
  31387. 1507 2005-06-15 22:25:26 2514 172 2005-06-19 17:00:26 1 2006-02-16 02:30:53
  31388. 1508 2005-06-15 22:33:24 1141 511 2005-06-18 02:27:24 2 2006-02-16 02:30:53
  31389. 1509 2005-06-15 22:35:53 655 167 2005-06-23 17:09:53 2 2006-02-16 02:30:53
  31390. 1510 2005-06-15 22:39:34 989 338 2005-06-24 19:21:34 2 2006-02-16 02:30:53
  31391. 1511 2005-06-15 22:45:06 1135 330 2005-06-22 22:48:06 1 2006-02-16 02:30:53
  31392. 1512 2005-06-15 22:53:03 1628 452 2005-06-23 18:56:03 1 2006-02-16 02:30:53
  31393. 1513 2005-06-15 22:53:30 1173 368 2005-06-23 01:00:30 1 2006-02-16 02:30:53
  31394. 1514 2005-06-15 22:57:34 2937 410 2005-06-19 20:27:34 1 2006-02-16 02:30:53
  31395. 1515 2005-06-15 23:07:50 3244 115 2005-06-20 02:33:50 2 2006-02-16 02:30:53
  31396. 1516 2005-06-15 23:11:10 3702 530 2005-06-17 20:37:10 1 2006-02-16 02:30:53
  31397. 1517 2005-06-15 23:20:26 3728 148 2005-06-23 23:23:26 1 2006-02-16 02:30:53
  31398. 1518 2005-06-15 23:36:37 4537 237 2005-06-16 18:24:37 2 2006-02-16 02:30:53
  31399. 1519 2005-06-15 23:55:27 1553 155 2005-06-21 04:06:27 2 2006-02-16 02:30:53
  31400. 1520 2005-06-15 23:57:20 3419 341 2005-06-24 23:46:20 1 2006-02-16 02:30:53
  31401. 1521 2005-06-15 23:58:53 4299 149 2005-06-18 03:10:53 1 2006-02-16 02:30:53
  31402. 1522 2005-06-16 00:17:39 235 133 2005-06-22 05:38:39 1 2006-02-16 02:30:53
  31403. 1523 2005-06-16 00:18:40 681 349 2005-06-17 02:50:40 2 2006-02-16 02:30:53
  31404. 1524 2005-06-16 00:25:52 3439 177 2005-06-19 03:32:52 1 2006-02-16 02:30:53
  31405. 1525 2005-06-16 00:26:07 1467 304 2005-06-19 22:37:07 2 2006-02-16 02:30:53
  31406. 1526 2005-06-16 00:27:51 1940 499 2005-06-19 00:19:51 1 2006-02-16 02:30:53
  31407. 1527 2005-06-16 00:31:40 296 188 2005-06-21 05:20:40 1 2006-02-16 02:30:53
  31408. 1528 2005-06-16 00:32:52 4297 110 2005-06-25 01:07:52 2 2006-02-16 02:30:53
  31409. 1529 2005-06-16 00:37:35 1688 362 2005-06-22 18:58:35 2 2006-02-16 02:30:53
  31410. 1530 2005-06-16 00:38:07 2421 392 2005-06-24 02:45:07 2 2006-02-16 02:30:53
  31411. 1531 2005-06-16 00:40:34 1388 515 2005-06-22 02:44:34 1 2006-02-16 02:30:53
  31412. 1532 2005-06-16 00:41:31 3793 290 2005-06-20 21:36:31 1 2006-02-16 02:30:53
  31413. 1533 2005-06-16 00:46:02 2452 116 2005-06-17 20:11:02 1 2006-02-16 02:30:53
  31414. 1534 2005-06-16 00:49:32 3124 42 2005-06-18 02:41:32 1 2006-02-16 02:30:53
  31415. 1535 2005-06-16 00:52:04 1096 202 2005-06-20 22:47:04 2 2006-02-16 02:30:53
  31416. 1536 2005-06-16 00:52:22 3248 339 2005-06-17 21:43:22 1 2006-02-16 02:30:53
  31417. 1537 2005-06-16 00:52:51 4577 594 2005-06-20 19:33:51 2 2006-02-16 02:30:53
  31418. 1538 2005-06-16 01:05:50 708 430 2005-06-18 19:48:50 1 2006-02-16 02:30:53
  31419. 1539 2005-06-16 01:11:25 267 390 2005-06-23 03:43:25 2 2006-02-16 02:30:53
  31420. 1540 2005-06-16 01:14:56 2707 586 2005-06-20 23:31:56 2 2006-02-16 02:30:53
  31421. 1541 2005-06-16 01:15:59 1911 189 2005-06-22 21:26:59 2 2006-02-16 02:30:53
  31422. 1542 2005-06-16 01:20:05 1714 182 2005-06-22 03:59:05 1 2006-02-16 02:30:53
  31423. 1543 2005-06-16 01:24:08 1188 28 2005-06-18 06:24:08 2 2006-02-16 02:30:53
  31424. 1544 2005-06-16 01:28:22 269 43 2005-06-17 06:57:22 2 2006-02-16 02:30:53
  31425. 1545 2005-06-16 01:31:23 762 563 2005-06-24 05:50:23 1 2006-02-16 02:30:53
  31426. 1546 2005-06-16 01:34:05 3913 3 2005-06-24 04:27:05 1 2006-02-16 02:30:53
  31427. 1547 2005-06-16 01:42:24 2909 343 2005-06-19 01:13:24 1 2006-02-16 02:30:53
  31428. 1548 2005-06-16 01:43:33 2094 374 2005-06-23 22:04:33 2 2006-02-16 02:30:53
  31429. 1549 2005-06-16 01:57:15 266 69 2005-06-18 23:30:15 1 2006-02-16 02:30:53
  31430. 1550 2005-06-16 01:58:35 2003 345 2005-06-18 23:56:35 1 2006-02-16 02:30:53
  31431. 1551 2005-06-16 02:01:15 4088 268 2005-06-22 07:33:15 1 2006-02-16 02:30:53
  31432. 1552 2005-06-16 02:01:37 819 518 2005-06-21 00:59:37 2 2006-02-16 02:30:53
  31433. 1553 2005-06-16 02:02:44 4026 416 2005-06-19 07:50:44 1 2006-02-16 02:30:53
  31434. 1554 2005-06-16 02:16:47 715 155 2005-06-22 05:15:47 1 2006-02-16 02:30:53
  31435. 1555 2005-06-16 02:17:07 4168 256 2005-06-22 06:28:07 1 2006-02-16 02:30:53
  31436. 1556 2005-06-16 02:19:02 533 54 2005-06-17 22:36:02 2 2006-02-16 02:30:53
  31437. 1557 2005-06-16 02:28:35 2617 439 2005-06-16 22:11:35 2 2006-02-16 02:30:53
  31438. 1558 2005-06-16 02:33:53 4350 20 2005-06-19 20:50:53 2 2006-02-16 02:30:53
  31439. 1559 2005-06-16 02:35:03 716 574 2005-06-19 21:22:03 1 2006-02-16 02:30:53
  31440. 1560 2005-06-16 02:36:43 3418 239 2005-06-24 23:10:43 2 2006-02-16 02:30:53
  31441. 1561 2005-06-16 02:41:30 2263 431 2005-06-22 05:19:30 1 2006-02-16 02:30:53
  31442. 1562 2005-06-16 02:46:27 595 395 2005-06-23 00:56:27 2 2006-02-16 02:30:53
  31443. 1563 2005-06-16 02:46:28 1516 262 2005-06-18 02:37:28 1 2006-02-16 02:30:53
  31444. 1564 2005-06-16 02:47:07 145 343 2005-06-24 03:12:07 1 2006-02-16 02:30:53
  31445. 1565 2005-06-16 03:13:09 3833 506 2005-06-16 22:42:09 2 2006-02-16 02:30:53
  31446. 1566 2005-06-16 03:13:20 3215 174 2005-06-24 01:59:20 2 2006-02-16 02:30:53
  31447. 1567 2005-06-16 03:13:30 3098 320 2005-06-21 23:56:30 1 2006-02-16 02:30:53
  31448. 1568 2005-06-16 03:14:01 635 178 2005-06-19 21:17:01 2 2006-02-16 02:30:53
  31449. 1569 2005-06-16 03:19:09 3927 363 2005-06-18 21:55:09 2 2006-02-16 02:30:53
  31450. 1570 2005-06-16 03:21:33 3711 82 2005-06-22 22:03:33 2 2006-02-16 02:30:53
  31451. 1571 2005-06-16 03:22:00 1019 54 2005-06-22 23:27:00 1 2006-02-16 02:30:53
  31452. 1572 2005-06-16 03:23:22 4179 560 2005-06-20 06:03:22 2 2006-02-16 02:30:53
  31453. 1573 2005-06-16 03:31:39 4536 371 2005-06-25 04:04:39 1 2006-02-16 02:30:53
  31454. 1574 2005-06-16 03:39:56 161 305 2005-06-22 05:40:56 2 2006-02-16 02:30:53
  31455. 1575 2005-06-16 03:41:38 3317 6 2005-06-22 03:01:38 2 2006-02-16 02:30:53
  31456. 1576 2005-06-16 03:54:39 1014 442 2005-06-24 21:55:39 2 2006-02-16 02:30:53
  31457. 1577 2005-06-16 04:03:28 367 327 2005-06-24 22:40:28 2 2006-02-16 02:30:53
  31458. 1578 2005-06-16 04:08:16 3397 365 2005-06-23 07:57:16 1 2006-02-16 02:30:53
  31459. 1579 2005-06-16 04:09:08 158 35 2005-06-21 05:21:08 2 2006-02-16 02:30:53
  31460. 1580 2005-06-16 04:12:25 2479 87 2005-06-20 06:53:25 1 2006-02-16 02:30:53
  31461. 1581 2005-06-16 04:28:45 4004 109 2005-06-18 07:07:45 1 2006-02-16 02:30:53
  31462. 1582 2005-06-16 04:31:57 163 536 2005-06-22 01:25:57 1 2006-02-16 02:30:53
  31463. 1583 2005-06-16 04:44:23 270 37 2005-06-18 03:44:23 1 2006-02-16 02:30:53
  31464. 1584 2005-06-16 04:50:50 3545 434 2005-06-21 22:51:50 2 2006-02-16 02:30:53
  31465. 1585 2005-06-16 04:51:13 1708 386 2005-06-24 00:23:13 2 2006-02-16 02:30:53
  31466. 1586 2005-06-16 04:51:18 769 140 2005-06-21 06:54:18 2 2006-02-16 02:30:53
  31467. 1587 2005-06-16 04:52:28 1781 62 2005-06-23 07:36:28 1 2006-02-16 02:30:53
  31468. 1588 2005-06-16 04:53:21 4472 322 2005-06-25 07:29:21 2 2006-02-16 02:30:53
  31469. 1589 2005-06-16 04:58:03 4307 293 2005-06-24 08:36:03 1 2006-02-16 02:30:53
  31470. 1590 2005-06-16 05:11:41 3685 98 2005-06-23 10:11:41 1 2006-02-16 02:30:53
  31471. 1591 2005-06-16 05:12:37 1648 83 2005-06-25 06:28:37 2 2006-02-16 02:30:53
  31472. 1592 2005-06-16 05:14:37 3798 187 2005-06-20 10:52:37 2 2006-02-16 02:30:53
  31473. 1593 2005-06-16 05:14:52 766 111 2005-06-24 08:00:52 2 2006-02-16 02:30:53
  31474. 1594 2005-06-16 05:15:12 3858 470 2005-06-25 00:38:12 1 2006-02-16 02:30:53
  31475. 1595 2005-06-16 05:23:46 1481 244 2005-06-20 00:37:46 1 2006-02-16 02:30:53
  31476. 1596 2005-06-16 05:30:58 2552 416 2005-06-21 04:18:58 2 2006-02-16 02:30:53
  31477. 1597 2005-06-16 05:47:03 743 432 2005-06-18 04:21:03 1 2006-02-16 02:30:53
  31478. 1598 2005-06-16 06:02:39 4171 314 2005-06-23 09:09:39 1 2006-02-16 02:30:53
  31479. 1599 2005-06-16 06:03:33 1476 215 2005-06-21 07:46:33 2 2006-02-16 02:30:53
  31480. 1600 2005-06-16 06:04:12 2264 196 2005-06-19 09:39:12 2 2006-02-16 02:30:53
  31481. 1601 2005-06-16 06:11:13 3115 428 2005-06-21 08:57:13 2 2006-02-16 02:30:53
  31482. 1602 2005-06-16 06:12:40 1777 441 2005-06-19 03:50:40 2 2006-02-16 02:30:53
  31483. 1603 2005-06-16 06:14:03 3308 395 2005-06-17 06:04:03 2 2006-02-16 02:30:53
  31484. 1604 2005-06-16 06:14:25 3226 272 2005-06-17 03:53:25 2 2006-02-16 02:30:53
  31485. 1605 2005-06-16 06:17:55 593 197 2005-06-25 01:25:55 1 2006-02-16 02:30:53
  31486. 1606 2005-06-16 06:18:31 4290 253 2005-06-25 09:15:31 1 2006-02-16 02:30:53
  31487. 1607 2005-06-16 06:25:35 3289 513 2005-06-20 02:50:35 2 2006-02-16 02:30:53
  31488. 1608 2005-06-16 06:28:57 2581 386 2005-06-24 05:20:57 2 2006-02-16 02:30:53
  31489. 1609 2005-06-16 06:34:59 2279 174 2005-06-17 09:41:59 2 2006-02-16 02:30:53
  31490. 1610 2005-06-16 06:36:33 3551 534 2005-06-19 07:12:33 1 2006-02-16 02:30:53
  31491. 1611 2005-06-16 06:41:35 1739 393 2005-06-25 06:13:35 2 2006-02-16 02:30:53
  31492. 1612 2005-06-16 06:52:05 3025 355 2005-06-19 01:51:05 1 2006-02-16 02:30:53
  31493. 1613 2005-06-16 06:55:10 4462 573 2005-06-24 12:08:10 1 2006-02-16 02:30:53
  31494. 1614 2005-06-16 06:58:02 23 489 2005-06-23 11:24:02 1 2006-02-16 02:30:53
  31495. 1615 2005-06-16 07:00:28 3894 362 2005-06-25 08:53:28 1 2006-02-16 02:30:53
  31496. 1616 2005-06-16 07:04:52 2296 204 2005-06-24 04:06:52 1 2006-02-16 02:30:53
  31497. 1617 2005-06-16 07:06:06 1382 83 2005-06-25 03:35:06 1 2006-02-16 02:30:53
  31498. 1618 2005-06-16 07:08:38 3741 134 2005-06-25 05:26:38 2 2006-02-16 02:30:53
  31499. 1619 2005-06-16 07:14:13 4258 232 2005-06-19 05:50:13 2 2006-02-16 02:30:53
  31500. 1620 2005-06-16 07:21:30 389 561 2005-06-17 09:46:30 1 2006-02-16 02:30:53
  31501. 1621 2005-06-16 07:24:12 3677 177 2005-06-19 02:35:12 1 2006-02-16 02:30:53
  31502. 1622 2005-06-16 07:33:18 1774 311 2005-06-21 07:23:18 1 2006-02-16 02:30:53
  31503. 1623 2005-06-16 07:48:50 4485 378 2005-06-17 03:53:50 2 2006-02-16 02:30:53
  31504. 1624 2005-06-16 07:48:57 1066 314 2005-06-17 05:52:57 1 2006-02-16 02:30:53
  31505. 1625 2005-06-16 07:49:08 3367 39 2005-06-24 09:08:08 2 2006-02-16 02:30:53
  31506. 1626 2005-06-16 07:49:47 694 260 2005-06-22 13:32:47 2 2006-02-16 02:30:53
  31507. 1627 2005-06-16 07:51:09 4135 468 2005-06-24 02:24:09 1 2006-02-16 02:30:53
  31508. 1628 2005-06-16 07:52:55 868 427 2005-06-25 11:09:55 1 2006-02-16 02:30:53
  31509. 1629 2005-06-16 07:53:47 4375 339 2005-06-22 13:03:47 1 2006-02-16 02:30:53
  31510. 1630 2005-06-16 07:55:01 2413 130 2005-06-19 06:38:01 1 2006-02-16 02:30:53
  31511. 1631 2005-06-16 08:01:02 2466 5 2005-06-19 09:04:02 1 2006-02-16 02:30:53
  31512. 1632 2005-06-16 08:03:42 1518 319 2005-06-17 03:40:42 1 2006-02-16 02:30:53
  31513. 1633 2005-06-16 08:08:40 280 4 2005-06-17 11:12:40 1 2006-02-16 02:30:53
  31514. 1634 2005-06-16 08:16:05 3990 121 2005-06-17 04:49:05 1 2006-02-16 02:30:53
  31515. 1635 2005-06-16 08:26:56 1187 566 2005-06-25 06:17:56 2 2006-02-16 02:30:53
  31516. 1636 2005-06-16 08:28:54 2052 574 2005-06-24 09:23:54 1 2006-02-16 02:30:53
  31517. 1637 2005-06-16 08:29:58 906 212 2005-06-23 04:55:58 2 2006-02-16 02:30:53
  31518. 1638 2005-06-16 08:32:36 1905 181 2005-06-18 07:11:36 2 2006-02-16 02:30:53
  31519. 1639 2005-06-16 08:33:39 176 450 2005-06-25 07:51:39 1 2006-02-16 02:30:53
  31520. 1640 2005-06-16 08:35:39 443 86 2005-06-17 05:37:39 2 2006-02-16 02:30:53
  31521. 1641 2005-06-16 08:46:26 2925 259 2005-06-24 14:39:26 2 2006-02-16 02:30:53
  31522. 1642 2005-06-16 08:54:15 3875 287 2005-06-18 12:36:15 1 2006-02-16 02:30:53
  31523. 1643 2005-06-16 08:55:35 1352 484 2005-06-21 05:36:35 2 2006-02-16 02:30:53
  31524. 1644 2005-06-16 08:58:18 749 596 2005-06-21 06:47:18 1 2006-02-16 02:30:53
  31525. 1645 2005-06-16 09:10:06 4434 234 2005-06-23 04:36:06 2 2006-02-16 02:30:53
  31526. 1646 2005-06-16 09:12:53 4037 131 2005-06-24 08:03:53 2 2006-02-16 02:30:53
  31527. 1647 2005-06-16 09:14:58 1936 454 2005-06-17 10:46:58 1 2006-02-16 02:30:53
  31528. 1648 2005-06-16 09:17:07 457 427 2005-06-24 06:31:07 2 2006-02-16 02:30:53
  31529. 1649 2005-06-16 09:20:33 390 352 2005-06-18 13:42:33 1 2006-02-16 02:30:53
  31530. 1650 2005-06-16 09:23:20 4125 299 2005-06-23 11:25:20 1 2006-02-16 02:30:53
  31531. 1651 2005-06-16 09:24:38 4444 524 2005-06-17 09:50:38 2 2006-02-16 02:30:53
  31532. 1652 2005-06-16 09:31:37 3416 533 2005-06-19 14:02:37 2 2006-02-16 02:30:53
  31533. 1653 2005-06-16 09:34:45 2294 517 2005-06-18 09:13:45 1 2006-02-16 02:30:53
  31534. 1654 2005-06-16 09:42:48 1039 348 2005-06-20 14:28:48 2 2006-02-16 02:30:53
  31535. 1655 2005-06-16 09:51:39 3693 488 2005-06-23 14:53:39 2 2006-02-16 02:30:53
  31536. 1656 2005-06-16 10:05:40 2253 31 2005-06-22 06:26:40 1 2006-02-16 02:30:53
  31537. 1657 2005-06-16 10:06:49 953 209 2005-06-22 10:34:49 2 2006-02-16 02:30:53
  31538. 1658 2005-06-16 10:07:10 272 568 2005-06-21 09:23:10 2 2006-02-16 02:30:53
  31539. 1659 2005-06-16 10:11:46 1182 296 2005-06-20 13:51:46 1 2006-02-16 02:30:53
  31540. 1660 2005-06-16 10:12:55 2374 238 2005-06-18 05:56:55 2 2006-02-16 02:30:53
  31541. 1661 2005-06-16 10:12:57 2403 508 2005-06-24 09:23:57 2 2006-02-16 02:30:53
  31542. 1662 2005-06-16 10:13:35 3552 378 2005-06-23 13:54:35 1 2006-02-16 02:30:53
  31543. 1663 2005-06-16 10:14:15 1558 186 2005-06-23 08:34:15 2 2006-02-16 02:30:53
  31544. 1664 2005-06-16 10:15:20 2464 216 2005-06-18 12:11:20 2 2006-02-16 02:30:53
  31545. 1665 2005-06-16 10:16:02 2613 490 2005-06-23 09:32:02 1 2006-02-16 02:30:53
  31546. 1666 2005-06-16 10:17:19 4019 557 2005-06-21 05:50:19 1 2006-02-16 02:30:53
  31547. 1667 2005-06-16 10:18:59 2362 333 2005-06-22 14:45:59 2 2006-02-16 02:30:53
  31548. 1668 2005-06-16 10:19:52 2483 569 2005-06-23 12:22:52 2 2006-02-16 02:30:53
  31549. 1669 2005-06-16 10:20:20 360 73 2005-06-18 04:26:20 1 2006-02-16 02:30:53
  31550. 1670 2005-06-16 10:26:33 2066 328 2005-06-19 07:15:33 1 2006-02-16 02:30:53
  31551. 1671 2005-06-16 10:30:22 3805 135 2005-06-22 11:08:22 2 2006-02-16 02:30:53
  31552. 1672 2005-06-16 10:37:34 4206 216 2005-06-23 05:30:34 1 2006-02-16 02:30:53
  31553. 1673 2005-06-16 10:40:17 907 534 2005-06-18 16:13:17 1 2006-02-16 02:30:53
  31554. 1674 2005-06-16 10:57:00 3606 234 2005-06-18 07:31:00 2 2006-02-16 02:30:53
  31555. 1675 2005-06-16 11:04:47 3048 371 2005-06-24 06:56:47 2 2006-02-16 02:30:53
  31556. 1676 2005-06-16 11:06:09 931 171 2005-06-21 05:17:09 1 2006-02-16 02:30:53
  31557. 1677 2005-06-16 11:07:11 240 191 2005-06-23 10:50:11 1 2006-02-16 02:30:53
  31558. 1678 2005-06-16 11:08:28 1856 352 2005-06-19 15:44:28 1 2006-02-16 02:30:53
  31559. 1679 2005-06-16 11:11:01 3959 227 2005-06-23 08:11:01 1 2006-02-16 02:30:53
  31560. 1680 2005-06-16 11:17:22 4441 469 2005-06-25 15:55:22 2 2006-02-16 02:30:53
  31561. 1681 2005-06-16 11:38:17 530 255 2005-06-19 13:05:17 1 2006-02-16 02:30:53
  31562. 1682 2005-06-16 11:54:25 2165 476 2005-06-22 11:09:25 2 2006-02-16 02:30:53
  31563. 1683 2005-06-16 11:54:55 2361 494 2005-06-18 08:51:55 2 2006-02-16 02:30:53
  31564. 1684 2005-06-16 11:57:34 806 485 2005-06-19 09:12:34 1 2006-02-16 02:30:53
  31565. 1685 2005-06-16 12:06:57 2754 85 2005-06-21 16:53:57 2 2006-02-16 02:30:53
  31566. 1686 2005-06-16 12:08:20 3883 529 2005-06-20 10:59:20 1 2006-02-16 02:30:53
  31567. 1687 2005-06-16 12:09:20 3686 140 2005-06-18 06:18:20 2 2006-02-16 02:30:53
  31568. 1688 2005-06-16 12:11:20 383 49 2005-06-18 08:39:20 2 2006-02-16 02:30:53
  31569. 1689 2005-06-16 12:18:41 4036 48 2005-06-24 13:33:41 2 2006-02-16 02:30:53
  31570. 1690 2005-06-16 12:24:18 1099 286 2005-06-25 15:00:18 1 2006-02-16 02:30:53
  31571. 1691 2005-06-16 12:24:28 4438 492 2005-06-24 08:24:28 1 2006-02-16 02:30:53
  31572. 1692 2005-06-16 12:30:19 3544 514 2005-06-17 17:31:19 2 2006-02-16 02:30:53
  31573. 1693 2005-06-16 12:39:51 2386 421 2005-06-19 16:19:51 2 2006-02-16 02:30:53
  31574. 1694 2005-06-16 12:40:23 147 532 2005-06-20 09:18:23 2 2006-02-16 02:30:53
  31575. 1695 2005-06-16 12:40:28 4436 159 2005-06-22 13:41:28 1 2006-02-16 02:30:53
  31576. 1696 2005-06-16 12:50:01 3928 502 2005-06-24 12:08:01 2 2006-02-16 02:30:53
  31577. 1697 2005-06-16 12:55:20 1801 340 2005-06-23 17:41:20 2 2006-02-16 02:30:53
  31578. 1698 2005-06-16 13:04:42 1474 407 2005-06-21 15:54:42 1 2006-02-16 02:30:53
  31579. 1699 2005-06-16 13:05:09 4507 27 2005-06-17 09:53:09 2 2006-02-16 02:30:53
  31580. 1700 2005-06-16 13:18:23 4251 456 2005-06-21 16:46:23 2 2006-02-16 02:30:53
  31581. 1701 2005-06-16 13:18:48 3000 315 2005-06-22 15:00:48 1 2006-02-16 02:30:53
  31582. 1702 2005-06-16 13:21:05 1822 242 2005-06-19 10:13:05 2 2006-02-16 02:30:53
  31583. 1703 2005-06-16 13:28:44 2346 589 2005-06-17 11:03:44 1 2006-02-16 02:30:53
  31584. 1704 2005-06-16 13:45:56 4425 488 2005-06-24 18:12:56 1 2006-02-16 02:30:53
  31585. 1705 2005-06-16 13:59:42 123 564 2005-06-18 19:54:42 2 2006-02-16 02:30:53
  31586. 1706 2005-06-16 14:01:02 2935 26 2005-06-25 19:29:02 1 2006-02-16 02:30:53
  31587. 1707 2005-06-16 14:01:27 185 4 2005-06-18 09:35:27 1 2006-02-16 02:30:53
  31588. 1708 2005-06-16 14:08:44 2259 478 2005-06-19 08:35:44 1 2006-02-16 02:30:53
  31589. 1709 2005-06-16 14:10:15 3501 426 2005-06-24 16:38:15 2 2006-02-16 02:30:53
  31590. 1710 2005-06-16 14:11:24 144 77 2005-06-22 15:26:24 1 2006-02-16 02:30:53
  31591. 1711 2005-06-16 14:11:52 273 347 2005-06-25 08:49:52 1 2006-02-16 02:30:53
  31592. 1712 2005-06-16 14:25:09 1363 535 2005-06-17 17:55:09 1 2006-02-16 02:30:53
  31593. 1713 2005-06-16 14:28:33 2580 164 2005-06-18 09:02:33 1 2006-02-16 02:30:53
  31594. 1714 2005-06-16 14:29:59 535 477 2005-06-24 17:27:59 2 2006-02-16 02:30:53
  31595. 1715 2005-06-16 14:37:12 1594 203 2005-06-20 19:36:12 1 2006-02-16 02:30:53
  31596. 1716 2005-06-16 14:39:31 20 24 2005-06-19 15:37:31 1 2006-02-16 02:30:53
  31597. 1717 2005-06-16 14:47:16 3007 277 2005-06-19 10:11:16 2 2006-02-16 02:30:53
  31598. 1718 2005-06-16 14:52:02 288 516 2005-06-25 10:53:02 2 2006-02-16 02:30:53
  31599. 1719 2005-06-16 14:55:53 2699 582 2005-06-18 14:12:53 1 2006-02-16 02:30:53
  31600. 1720 2005-06-16 15:00:14 3500 543 2005-06-21 13:57:14 2 2006-02-16 02:30:53
  31601. 1721 2005-06-16 15:01:36 3521 485 2005-06-23 10:48:36 1 2006-02-16 02:30:53
  31602. 1722 2005-06-16 15:12:52 2142 364 2005-06-19 13:01:52 2 2006-02-16 02:30:53
  31603. 1723 2005-06-16 15:14:18 2417 259 2005-06-23 15:45:18 2 2006-02-16 02:30:53
  31604. 1724 2005-06-16 15:15:43 61 146 2005-06-23 10:14:43 2 2006-02-16 02:30:53
  31605. 1725 2005-06-16 15:18:57 726 1 2005-06-17 21:05:57 1 2006-02-16 02:30:53
  31606. 1726 2005-06-16 15:19:10 116 3 2005-06-25 11:39:10 2 2006-02-16 02:30:53
  31607. 1727 2005-06-16 15:21:47 2951 457 2005-06-17 14:12:47 1 2006-02-16 02:30:53
  31608. 1728 2005-06-16 15:29:29 1366 59 2005-06-23 12:47:29 1 2006-02-16 02:30:53
  31609. 1729 2005-06-16 15:29:47 3364 523 2005-06-25 20:55:47 2 2006-02-16 02:30:53
  31610. 1730 2005-06-16 15:30:01 1372 390 2005-06-19 12:56:01 1 2006-02-16 02:30:53
  31611. 1731 2005-06-16 15:32:12 3698 344 2005-06-19 18:58:12 2 2006-02-16 02:30:53
  31612. 1732 2005-06-16 15:34:41 2287 129 2005-06-18 13:05:41 1 2006-02-16 02:30:53
  31613. 1733 2005-06-16 15:37:07 542 480 2005-06-23 15:53:07 2 2006-02-16 02:30:53
  31614. 1734 2005-06-16 15:49:30 1113 94 2005-06-22 13:52:30 2 2006-02-16 02:30:53
  31615. 1735 2005-06-16 15:51:52 97 4 2005-06-20 13:27:52 1 2006-02-16 02:30:53
  31616. 1736 2005-06-16 15:52:32 3771 139 2005-06-21 14:39:32 2 2006-02-16 02:30:53
  31617. 1737 2005-06-16 15:59:44 4029 467 2005-06-23 12:22:44 1 2006-02-16 02:30:53
  31618. 1738 2005-06-16 16:07:27 3260 177 2005-06-20 15:22:27 1 2006-02-16 02:30:53
  31619. 1739 2005-06-16 16:09:38 2557 450 2005-06-22 18:04:38 2 2006-02-16 02:30:53
  31620. 1740 2005-06-16 16:29:00 2282 324 2005-06-20 14:07:00 2 2006-02-16 02:30:53
  31621. 1741 2005-06-16 16:31:37 3722 176 2005-06-25 21:38:37 1 2006-02-16 02:30:53
  31622. 1742 2005-06-16 16:37:48 2772 576 2005-06-17 19:47:48 2 2006-02-16 02:30:53
  31623. 1743 2005-06-16 16:38:10 2777 258 2005-06-17 13:13:10 1 2006-02-16 02:30:53
  31624. 1744 2005-06-16 16:39:58 3075 230 2005-06-18 19:50:58 2 2006-02-16 02:30:53
  31625. 1745 2005-06-16 16:41:16 2812 178 2005-06-23 21:02:16 2 2006-02-16 02:30:53
  31626. 1746 2005-06-16 16:41:19 4272 385 2005-06-19 11:28:19 2 2006-02-16 02:30:53
  31627. 1747 2005-06-16 16:53:33 1661 273 2005-06-25 21:48:33 2 2006-02-16 02:30:53
  31628. 1748 2005-06-16 16:54:03 2434 473 2005-06-18 20:11:03 1 2006-02-16 02:30:53
  31629. 1749 2005-06-16 16:56:00 1554 283 2005-06-21 21:02:00 2 2006-02-16 02:30:53
  31630. 1750 2005-06-16 16:57:36 1103 321 2005-06-25 21:51:36 1 2006-02-16 02:30:53
  31631. 1751 2005-06-16 17:00:14 138 123 2005-06-17 12:12:14 2 2006-02-16 02:30:53
  31632. 1752 2005-06-16 17:02:55 3529 12 2005-06-23 19:09:55 2 2006-02-16 02:30:53
  31633. 1753 2005-06-16 17:08:17 3817 249 2005-06-21 21:47:17 2 2006-02-16 02:30:53
  31634. 1754 2005-06-16 17:13:23 4106 25 2005-06-22 20:46:23 1 2006-02-16 02:30:53
  31635. 1755 2005-06-16 17:18:44 1721 117 2005-06-17 16:54:44 1 2006-02-16 02:30:53
  31636. 1756 2005-06-16 17:22:33 1401 571 2005-06-21 16:52:33 1 2006-02-16 02:30:53
  31637. 1757 2005-06-16 17:32:24 4491 510 2005-06-18 13:12:24 1 2006-02-16 02:30:53
  31638. 1758 2005-06-16 17:39:39 2654 474 2005-06-25 13:06:39 1 2006-02-16 02:30:53
  31639. 1759 2005-06-16 17:46:37 1402 430 2005-06-24 19:40:37 2 2006-02-16 02:30:53
  31640. 1760 2005-06-16 17:48:37 3929 261 2005-06-18 16:01:37 2 2006-02-16 02:30:53
  31641. 1761 2005-06-16 17:49:57 1570 521 2005-06-17 21:03:57 2 2006-02-16 02:30:53
  31642. 1762 2005-06-16 17:50:19 3050 116 2005-06-19 21:35:19 2 2006-02-16 02:30:53
  31643. 1763 2005-06-16 17:51:01 1941 389 2005-06-20 17:27:01 1 2006-02-16 02:30:53
  31644. 1764 2005-06-16 17:51:54 705 392 2005-06-21 20:36:54 2 2006-02-16 02:30:53
  31645. 1765 2005-06-16 17:56:10 822 273 2005-06-19 23:40:10 2 2006-02-16 02:30:53
  31646. 1766 2005-06-16 17:59:37 2041 118 2005-06-18 16:32:37 2 2006-02-16 02:30:53
  31647. 1767 2005-06-16 18:01:36 1162 205 2005-06-18 12:39:36 2 2006-02-16 02:30:53
  31648. 1768 2005-06-16 18:02:06 2131 131 2005-06-23 17:19:06 2 2006-02-16 02:30:53
  31649. 1769 2005-06-16 18:07:48 1229 397 2005-06-22 12:39:48 1 2006-02-16 02:30:53
  31650. 1770 2005-06-16 18:07:55 1681 359 2005-06-23 23:49:55 2 2006-02-16 02:30:53
  31651. 1771 2005-06-16 18:12:17 1769 416 2005-06-18 16:11:17 1 2006-02-16 02:30:53
  31652. 1772 2005-06-16 18:12:54 1269 525 2005-06-24 19:55:54 1 2006-02-16 02:30:53
  31653. 1773 2005-06-16 18:13:43 4396 462 2005-06-24 17:43:43 2 2006-02-16 02:30:53
  31654. 1774 2005-06-16 18:27:52 3058 442 2005-06-21 13:35:52 2 2006-02-16 02:30:53
  31655. 1775 2005-06-16 18:28:19 1922 123 2005-06-25 13:09:19 2 2006-02-16 02:30:53
  31656. 1776 2005-06-16 18:46:58 1404 472 2005-06-24 16:01:58 1 2006-02-16 02:30:53
  31657. 1777 2005-06-16 18:52:12 3325 49 2005-06-25 13:55:12 1 2006-02-16 02:30:53
  31658. 1778 2005-06-16 18:54:48 2512 341 2005-06-22 16:08:48 2 2006-02-16 02:30:53
  31659. 1779 2005-06-16 18:55:11 1044 438 2005-06-17 20:11:11 1 2006-02-16 02:30:53
  31660. 1780 2005-06-16 19:11:45 146 352 2005-06-19 15:34:45 2 2006-02-16 02:30:53
  31661. 1781 2005-06-16 19:20:24 2841 429 2005-06-25 17:02:24 2 2006-02-16 02:30:53
  31662. 1782 2005-06-16 19:21:12 1820 498 2005-06-22 16:03:12 2 2006-02-16 02:30:53
  31663. 1783 2005-06-16 19:23:23 50 18 2005-06-18 00:57:23 1 2006-02-16 02:30:53
  31664. 1784 2005-06-16 19:25:32 3792 134 2005-06-20 00:00:32 2 2006-02-16 02:30:53
  31665. 1785 2005-06-16 19:27:12 3413 50 2005-06-24 19:25:12 1 2006-02-16 02:30:53
  31666. 1786 2005-06-16 19:30:54 263 323 2005-06-19 14:24:54 1 2006-02-16 02:30:53
  31667. 1787 2005-06-16 19:30:59 3823 546 2005-06-21 18:25:59 2 2006-02-16 02:30:53
  31668. 1788 2005-06-16 19:47:18 3794 357 2005-06-22 23:10:18 1 2006-02-16 02:30:53
  31669. 1789 2005-06-16 19:49:18 4264 105 2005-06-23 17:07:18 2 2006-02-16 02:30:53
  31670. 1790 2005-06-16 19:58:40 1070 158 2005-06-17 19:31:40 2 2006-02-16 02:30:53
  31671. 1791 2005-06-16 20:04:28 301 76 2005-06-23 22:30:28 1 2006-02-16 02:30:53
  31672. 1792 2005-06-16 20:04:50 3800 351 2005-06-26 00:57:50 1 2006-02-16 02:30:53
  31673. 1793 2005-06-16 20:07:27 4356 230 2005-06-19 20:55:27 1 2006-02-16 02:30:53
  31674. 1794 2005-06-16 20:08:37 497 452 2005-06-22 01:54:37 1 2006-02-16 02:30:53
  31675. 1795 2005-06-16 20:09:01 536 56 2005-06-24 17:50:01 2 2006-02-16 02:30:53
  31676. 1796 2005-06-16 20:10:43 3229 283 2005-06-20 19:12:43 1 2006-02-16 02:30:53
  31677. 1797 2005-06-16 20:13:03 3435 275 2005-06-22 22:56:03 1 2006-02-16 02:30:53
  31678. 1798 2005-06-16 20:16:15 1654 429 2005-06-20 22:23:15 2 2006-02-16 02:30:53
  31679. 1799 2005-06-16 20:17:20 2847 505 2005-06-20 23:55:20 1 2006-02-16 02:30:53
  31680. 1800 2005-06-16 20:18:46 2058 149 2005-06-20 17:12:46 1 2006-02-16 02:30:53
  31681. 1801 2005-06-16 20:21:53 1015 10 2005-06-18 23:18:53 1 2006-02-16 02:30:53
  31682. 1802 2005-06-16 20:23:30 4174 455 2005-06-21 20:02:30 1 2006-02-16 02:30:53
  31683. 1803 2005-06-16 20:32:47 3784 127 2005-06-21 02:03:47 1 2006-02-16 02:30:53
  31684. 1804 2005-06-16 20:33:15 1152 570 2005-06-18 02:31:15 2 2006-02-16 02:30:53
  31685. 1805 2005-06-16 20:36:00 3962 208 2005-06-17 16:27:00 1 2006-02-16 02:30:53
  31686. 1806 2005-06-16 20:41:57 2053 45 2005-06-18 19:25:57 2 2006-02-16 02:30:53
  31687. 1807 2005-06-16 20:58:59 1174 338 2005-06-20 21:31:59 2 2006-02-16 02:30:53
  31688. 1808 2005-06-16 20:59:35 2424 466 2005-06-24 15:31:35 1 2006-02-16 02:30:53
  31689. 1809 2005-06-16 21:00:20 1071 517 2005-06-25 20:25:20 1 2006-02-16 02:30:53
  31690. 1810 2005-06-16 21:06:00 2368 7 2005-06-21 21:24:00 1 2006-02-16 02:30:53
  31691. 1811 2005-06-16 21:06:20 3700 235 2005-06-21 21:59:20 2 2006-02-16 02:30:53
  31692. 1812 2005-06-16 21:08:46 751 37 2005-06-21 15:44:46 2 2006-02-16 02:30:53
  31693. 1813 2005-06-16 21:11:00 1236 259 2005-06-24 15:30:00 1 2006-02-16 02:30:53
  31694. 1814 2005-06-16 21:15:22 39 144 2005-06-23 17:00:22 1 2006-02-16 02:30:53
  31695. 1815 2005-06-16 21:16:07 1551 84 2005-06-17 16:37:07 2 2006-02-16 02:30:53
  31696. 1816 2005-06-16 21:20:41 2861 594 2005-06-18 02:21:41 1 2006-02-16 02:30:53
  31697. 1817 2005-06-16 21:20:52 1354 574 2005-06-19 16:24:52 2 2006-02-16 02:30:53
  31698. 1818 2005-06-16 21:30:34 1218 63 2005-06-20 03:27:34 2 2006-02-16 02:30:53
  31699. 1819 2005-06-16 21:32:50 1689 386 2005-06-26 01:11:50 1 2006-02-16 02:30:53
  31700. 1820 2005-06-16 21:34:50 3672 120 2005-06-20 16:50:50 1 2006-02-16 02:30:53
  31701. 1821 2005-06-16 21:42:49 3207 468 2005-06-20 16:25:49 2 2006-02-16 02:30:53
  31702. 1822 2005-06-16 21:43:45 674 86 2005-06-17 21:37:45 1 2006-02-16 02:30:53
  31703. 1823 2005-06-16 21:48:16 3871 448 2005-06-22 03:09:16 1 2006-02-16 02:30:53
  31704. 1824 2005-06-16 21:51:04 2269 575 2005-06-18 18:12:04 1 2006-02-16 02:30:53
  31705. 1825 2005-06-16 21:53:05 2908 55 2005-06-20 17:22:05 2 2006-02-16 02:30:53
  31706. 1826 2005-06-16 21:53:52 421 578 2005-06-25 18:46:52 2 2006-02-16 02:30:53
  31707. 1827 2005-06-16 21:54:40 3804 423 2005-06-19 21:28:40 2 2006-02-16 02:30:53
  31708. 1828 2005-06-16 22:04:34 316 68 2005-06-20 21:07:34 2 2006-02-16 02:30:53
  31709. 1829 2005-06-16 22:14:21 617 293 2005-06-21 16:51:21 1 2006-02-16 02:30:53
  31710. 1830 2005-06-16 22:18:43 4010 499 2005-06-23 21:14:43 2 2006-02-16 02:30:53
  31711. 1831 2005-06-16 22:22:17 2610 383 2005-06-25 23:23:17 2 2006-02-16 02:30:53
  31712. 1832 2005-06-16 22:35:20 500 220 2005-06-19 03:09:20 1 2006-02-16 02:30:53
  31713. 1833 2005-06-16 22:45:03 1337 121 2005-06-20 22:02:03 2 2006-02-16 02:30:53
  31714. 1834 2005-06-16 22:49:08 4018 189 2005-06-22 21:08:08 1 2006-02-16 02:30:53
  31715. 1835 2005-06-16 23:05:36 1482 112 2005-06-19 04:46:36 1 2006-02-16 02:30:53
  31716. 1836 2005-06-16 23:13:05 2753 176 2005-06-24 01:40:05 2 2006-02-16 02:30:53
  31717. 1837 2005-06-16 23:16:15 1259 309 2005-06-21 21:54:15 1 2006-02-16 02:30:53
  31718. 1838 2005-06-16 23:20:16 513 31 2005-06-20 02:34:16 1 2006-02-16 02:30:53
  31719. 1839 2005-06-16 23:22:22 2750 223 2005-06-23 00:33:22 1 2006-02-16 02:30:53
  31720. 1840 2005-06-16 23:39:34 340 404 2005-06-21 23:36:34 1 2006-02-16 02:30:53
  31721. 1841 2005-06-16 23:44:13 2363 6 2005-06-22 04:09:13 1 2006-02-16 02:30:53
  31722. 1842 2005-06-16 23:45:59 1472 426 2005-06-26 05:31:59 1 2006-02-16 02:30:53
  31723. 1843 2005-06-16 23:53:42 2714 132 2005-06-22 18:33:42 2 2006-02-16 02:30:53
  31724. 1844 2005-06-16 23:53:53 2307 454 2005-06-22 02:19:53 2 2006-02-16 02:30:53
  31725. 1845 2005-06-16 23:56:11 3395 215 2005-06-19 01:41:11 2 2006-02-16 02:30:53
  31726. 1846 2005-06-17 00:02:44 1725 422 2005-06-18 23:47:44 2 2006-02-16 02:30:53
  31727. 1847 2005-06-17 00:05:22 1189 363 2005-06-20 21:09:22 1 2006-02-16 02:30:53
  31728. 1848 2005-06-17 00:07:07 3797 526 2005-06-21 21:41:07 2 2006-02-16 02:30:53
  31729. 1849 2005-06-17 00:13:19 2507 341 2005-06-23 18:37:19 2 2006-02-16 02:30:53
  31730. 1850 2005-06-17 00:31:35 761 517 2005-06-25 05:19:35 1 2006-02-16 02:30:53
  31731. 1851 2005-06-17 00:32:26 1121 451 2005-06-22 19:54:26 2 2006-02-16 02:30:53
  31732. 1852 2005-06-17 00:38:20 4122 271 2005-06-22 20:04:20 2 2006-02-16 02:30:53
  31733. 1853 2005-06-17 00:39:54 2949 301 2005-06-19 00:22:54 2 2006-02-16 02:30:53
  31734. 1854 2005-06-17 00:43:57 119 37 2005-06-23 05:49:57 1 2006-02-16 02:30:53
  31735. 1855 2005-06-17 00:54:58 4457 492 2005-06-20 19:29:58 1 2006-02-16 02:30:53
  31736. 1856 2005-06-17 01:02:00 3034 161 2005-06-19 21:29:00 2 2006-02-16 02:30:53
  31737. 1857 2005-06-17 01:12:58 4257 427 2005-06-21 04:49:58 1 2006-02-16 02:30:53
  31738. 1858 2005-06-17 01:13:11 3200 99 2005-06-18 21:33:11 2 2006-02-16 02:30:53
  31739. 1859 2005-06-17 01:13:38 3405 533 2005-06-18 03:13:38 1 2006-02-16 02:30:53
  31740. 1860 2005-06-17 01:17:12 1853 293 2005-06-21 22:35:12 1 2006-02-16 02:30:53
  31741. 1861 2005-06-17 01:17:31 135 454 2005-06-25 02:11:31 1 2006-02-16 02:30:53
  31742. 1862 2005-06-17 01:29:30 3299 553 2005-06-25 20:43:30 1 2006-02-16 02:30:53
  31743. 1863 2005-06-17 01:31:46 4466 550 2005-06-26 02:09:46 2 2006-02-16 02:30:53
  31744. 1864 2005-06-17 01:39:47 1815 130 2005-06-24 19:39:47 2 2006-02-16 02:30:53
  31745. 1865 2005-06-17 01:49:36 2657 526 2005-06-23 21:13:36 1 2006-02-16 02:30:53
  31746. 1866 2005-06-17 01:53:19 2579 575 2005-06-19 06:14:19 2 2006-02-16 02:30:53
  31747. 1867 2005-06-17 02:01:37 3537 415 2005-06-25 04:52:37 2 2006-02-16 02:30:53
  31748. 1868 2005-06-17 02:03:22 2412 380 2005-06-25 04:38:22 1 2006-02-16 02:30:53
  31749. 1869 2005-06-17 02:08:00 871 351 2005-06-19 21:43:00 1 2006-02-16 02:30:53
  31750. 1870 2005-06-17 02:24:36 895 191 2005-06-17 23:04:36 2 2006-02-16 02:30:53
  31751. 1871 2005-06-17 02:25:12 481 204 2005-06-23 03:16:12 2 2006-02-16 02:30:53
  31752. 1872 2005-06-17 02:27:03 3596 206 2005-06-20 22:41:03 2 2006-02-16 02:30:53
  31753. 1873 2005-06-17 02:38:28 2933 71 2005-06-23 04:39:28 1 2006-02-16 02:30:53
  31754. 1874 2005-06-17 02:39:20 3884 30 2005-06-24 04:41:20 2 2006-02-16 02:30:53
  31755. 1875 2005-06-17 02:45:10 1652 528 2005-06-22 22:54:10 2 2006-02-16 02:30:53
  31756. 1876 2005-06-17 02:50:51 384 459 2005-06-18 07:21:51 1 2006-02-16 02:30:53
  31757. 1877 2005-06-17 02:54:16 3404 261 2005-06-25 21:51:16 2 2006-02-16 02:30:53
  31758. 1878 2005-06-17 02:55:32 3319 381 2005-06-21 03:44:32 1 2006-02-16 02:30:53
  31759. 1879 2005-06-17 02:57:34 3983 343 2005-06-19 00:00:34 1 2006-02-16 02:30:53
  31760. 1880 2005-06-17 03:08:59 1133 289 2005-06-19 07:16:59 1 2006-02-16 02:30:53
  31761. 1881 2005-06-17 03:09:56 159 134 2005-06-18 01:49:56 1 2006-02-16 02:30:53
  31762. 1882 2005-06-17 03:17:21 1400 47 2005-06-19 22:23:21 2 2006-02-16 02:30:53
  31763. 1883 2005-06-17 03:18:51 3504 550 2005-06-18 05:46:51 1 2006-02-16 02:30:53
  31764. 1884 2005-06-17 03:19:20 4567 305 2005-06-21 00:19:20 1 2006-02-16 02:30:53
  31765. 1885 2005-06-17 03:35:59 740 588 2005-06-21 05:57:59 2 2006-02-16 02:30:53
  31766. 1886 2005-06-17 03:36:02 2367 505 2005-06-19 08:12:02 2 2006-02-16 02:30:53
  31767. 1887 2005-06-17 03:53:18 3591 32 2005-06-25 07:37:18 2 2006-02-16 02:30:53
  31768. 1888 2005-06-17 03:58:36 2872 405 2005-06-22 09:28:36 1 2006-02-16 02:30:53
  31769. 1889 2005-06-17 04:05:12 3909 572 2005-06-26 04:13:12 1 2006-02-16 02:30:53
  31770. 1890 2005-06-17 04:06:13 1764 447 2005-06-22 07:46:13 2 2006-02-16 02:30:53
  31771. 1891 2005-06-17 04:16:44 3576 109 2005-06-24 07:20:44 1 2006-02-16 02:30:53
  31772. 1892 2005-06-17 04:17:33 139 319 2005-06-20 00:06:33 1 2006-02-16 02:30:53
  31773. 1893 2005-06-17 04:18:37 3346 390 2005-06-23 23:35:37 2 2006-02-16 02:30:53
  31774. 1894 2005-06-17 04:18:48 3707 204 2005-06-26 00:07:48 1 2006-02-16 02:30:53
  31775. 1895 2005-06-17 04:25:12 680 30 2005-06-26 08:44:12 1 2006-02-16 02:30:53
  31776. 1896 2005-06-17 04:25:46 2077 270 2005-06-26 09:37:46 1 2006-02-16 02:30:53
  31777. 1897 2005-06-17 04:26:23 4142 422 2005-06-25 09:32:23 2 2006-02-16 02:30:53
  31778. 1898 2005-06-17 04:28:11 2873 143 2005-06-25 07:04:11 2 2006-02-16 02:30:53
  31779. 1899 2005-06-17 04:29:15 858 200 2005-06-26 08:39:15 1 2006-02-16 02:30:53
  31780. 1900 2005-06-17 04:29:58 1425 34 2005-06-21 05:58:58 1 2006-02-16 02:30:53
  31781. 1901 2005-06-17 04:35:19 2469 292 2005-06-25 06:09:19 2 2006-02-16 02:30:53
  31782. 1902 2005-06-17 04:35:52 2905 479 2005-06-20 06:52:52 2 2006-02-16 02:30:53
  31783. 1903 2005-06-17 04:37:20 1939 588 2005-06-26 09:05:20 2 2006-02-16 02:30:53
  31784. 1904 2005-06-17 04:45:41 2472 87 2005-06-17 23:56:41 2 2006-02-16 02:30:53
  31785. 1905 2005-06-17 04:51:43 1043 39 2005-06-24 09:35:43 1 2006-02-16 02:30:53
  31786. 1906 2005-06-17 04:53:35 1049 455 2005-06-21 01:16:35 2 2006-02-16 02:30:53
  31787. 1907 2005-06-17 05:08:27 988 66 2005-06-23 09:13:27 1 2006-02-16 02:30:53
  31788. 1908 2005-06-17 05:10:36 399 358 2005-06-19 03:52:36 1 2006-02-16 02:30:53
  31789. 1909 2005-06-17 05:11:04 2599 269 2005-06-19 04:33:04 2 2006-02-16 02:30:53
  31790. 1910 2005-06-17 05:11:27 3903 199 2005-06-23 23:16:27 1 2006-02-16 02:30:53
  31791. 1911 2005-06-17 05:15:15 910 3 2005-06-24 11:05:15 2 2006-02-16 02:30:53
  31792. 1912 2005-06-17 05:18:32 4136 538 2005-06-20 10:01:32 2 2006-02-16 02:30:53
  31793. 1913 2005-06-17 05:19:47 1825 116 2005-06-21 03:39:47 1 2006-02-16 02:30:53
  31794. 1914 2005-06-17 05:25:54 3406 450 2005-06-24 04:25:54 2 2006-02-16 02:30:53
  31795. 1915 2005-06-17 05:28:28 2620 393 2005-06-21 07:12:28 2 2006-02-16 02:30:53
  31796. 1916 2005-06-17 05:29:59 4428 429 2005-06-26 05:35:59 2 2006-02-16 02:30:53
  31797. 1917 2005-06-17 05:36:07 2667 400 2005-06-24 01:44:07 1 2006-02-16 02:30:53
  31798. 1918 2005-06-17 05:40:14 3749 310 2005-06-21 08:53:14 2 2006-02-16 02:30:53
  31799. 1919 2005-06-17 05:40:52 3855 197 2005-06-23 05:58:52 1 2006-02-16 02:30:53
  31800. 1920 2005-06-17 06:00:23 2199 75 2005-06-24 04:49:23 1 2006-02-16 02:30:53
  31801. 1921 2005-06-17 06:04:16 4369 417 2005-06-23 05:26:16 2 2006-02-16 02:30:53
  31802. 1922 2005-06-17 06:04:25 2484 343 2005-06-18 09:15:25 2 2006-02-16 02:30:53
  31803. 1923 2005-06-17 06:06:10 691 400 2005-06-24 04:29:10 2 2006-02-16 02:30:53
  31804. 1924 2005-06-17 06:13:34 2577 86 2005-06-18 01:51:34 1 2006-02-16 02:30:53
  31805. 1925 2005-06-17 06:16:47 3995 510 2005-06-21 06:03:47 1 2006-02-16 02:30:53
  31806. 1926 2005-06-17 06:24:30 3509 462 2005-06-25 03:39:30 2 2006-02-16 02:30:53
  31807. 1927 2005-06-17 06:48:19 3304 188 2005-06-21 03:23:19 1 2006-02-16 02:30:53
  31808. 1928 2005-06-17 06:48:31 3454 353 2005-06-26 08:17:31 1 2006-02-16 02:30:53
  31809. 1929 2005-06-17 06:49:30 573 327 2005-06-22 12:07:30 2 2006-02-16 02:30:53
  31810. 1930 2005-06-17 06:50:46 79 112 2005-06-19 08:51:46 2 2006-02-16 02:30:53
  31811. 1931 2005-06-17 06:51:56 1411 391 2005-06-22 08:27:56 1 2006-02-16 02:30:53
  31812. 1932 2005-06-17 06:54:41 3185 120 2005-06-19 05:12:41 2 2006-02-16 02:30:53
  31813. 1933 2005-06-17 06:54:42 980 13 2005-06-26 02:00:42 1 2006-02-16 02:30:53
  31814. 1934 2005-06-17 07:04:57 4000 16 2005-06-25 12:21:57 2 2006-02-16 02:30:53
  31815. 1935 2005-06-17 07:14:15 1962 295 2005-06-20 05:59:15 1 2006-02-16 02:30:53
  31816. 1936 2005-06-17 07:15:41 3037 213 2005-06-18 11:37:41 2 2006-02-16 02:30:53
  31817. 1937 2005-06-17 07:16:46 1266 385 2005-06-21 04:22:46 2 2006-02-16 02:30:53
  31818. 1938 2005-06-17 07:18:36 570 454 2005-06-19 01:43:36 2 2006-02-16 02:30:53
  31819. 1939 2005-06-17 07:26:45 605 11 2005-06-25 13:06:45 2 2006-02-16 02:30:53
  31820. 1940 2005-06-17 07:42:22 105 451 2005-06-22 11:59:22 1 2006-02-16 02:30:53
  31821. 1941 2005-06-17 07:42:45 1063 519 2005-06-20 07:12:45 1 2006-02-16 02:30:53
  31822. 1942 2005-06-17 07:43:39 261 143 2005-06-25 02:24:39 1 2006-02-16 02:30:53
  31823. 1943 2005-06-17 07:49:17 4327 144 2005-06-20 03:47:17 1 2006-02-16 02:30:53
  31824. 1944 2005-06-17 07:50:53 318 16 2005-06-23 02:52:53 2 2006-02-16 02:30:53
  31825. 1945 2005-06-17 07:51:26 3366 207 2005-06-23 13:22:26 2 2006-02-16 02:30:53
  31826. 1946 2005-06-17 07:58:39 2335 389 2005-06-25 06:49:39 2 2006-02-16 02:30:53
  31827. 1947 2005-06-17 08:02:20 3344 479 2005-06-25 10:25:20 1 2006-02-16 02:30:53
  31828. 1948 2005-06-17 08:06:53 46 89 2005-06-21 05:00:53 1 2006-02-16 02:30:53
  31829. 1949 2005-06-17 08:19:22 1478 208 2005-06-25 08:43:22 1 2006-02-16 02:30:53
  31830. 1950 2005-06-17 08:26:52 723 594 2005-06-22 08:08:52 2 2006-02-16 02:30:53
  31831. 1951 2005-06-17 08:30:35 955 123 2005-06-20 10:43:35 2 2006-02-16 02:30:53
  31832. 1952 2005-06-17 08:33:02 1823 338 2005-06-21 14:00:02 2 2006-02-16 02:30:53
  31833. 1953 2005-06-17 08:34:57 3549 405 2005-06-24 09:38:57 2 2006-02-16 02:30:53
  31834. 1954 2005-06-17 08:37:55 3203 533 2005-06-20 02:55:55 2 2006-02-16 02:30:53
  31835. 1955 2005-06-17 08:40:22 811 311 2005-06-19 10:47:22 1 2006-02-16 02:30:53
  31836. 1956 2005-06-17 08:43:32 1403 492 2005-06-21 11:08:32 1 2006-02-16 02:30:53
  31837. 1957 2005-06-17 08:50:58 2496 68 2005-06-26 13:39:58 2 2006-02-16 02:30:53
  31838. 1958 2005-06-17 08:52:01 1843 581 2005-06-23 07:55:01 2 2006-02-16 02:30:53
  31839. 1959 2005-06-17 08:54:10 1464 554 2005-06-20 05:02:10 2 2006-02-16 02:30:53
  31840. 1960 2005-06-17 08:59:57 2202 27 2005-06-23 14:38:57 2 2006-02-16 02:30:53
  31841. 1961 2005-06-17 09:02:58 2851 384 2005-06-20 03:07:58 1 2006-02-16 02:30:53
  31842. 1962 2005-06-17 09:08:58 4386 536 2005-06-23 14:55:58 1 2006-02-16 02:30:53
  31843. 1963 2005-06-17 09:09:31 1943 154 2005-06-24 13:16:31 2 2006-02-16 02:30:53
  31844. 1964 2005-06-17 09:10:09 3390 53 2005-06-21 15:08:09 1 2006-02-16 02:30:53
  31845. 1965 2005-06-17 09:17:39 480 256 2005-06-18 12:35:39 2 2006-02-16 02:30:53
  31846. 1966 2005-06-17 09:19:45 2085 6 2005-06-20 11:19:45 1 2006-02-16 02:30:53
  31847. 1967 2005-06-17 09:19:52 3225 558 2005-06-21 03:35:52 1 2006-02-16 02:30:53
  31848. 1968 2005-06-17 09:20:36 1139 246 2005-06-18 11:06:36 2 2006-02-16 02:30:53
  31849. 1969 2005-06-17 09:22:22 4450 337 2005-06-21 05:31:22 2 2006-02-16 02:30:53
  31850. 1970 2005-06-17 09:23:16 1358 303 2005-06-22 09:40:16 2 2006-02-16 02:30:53
  31851. 1971 2005-06-17 09:23:59 2870 357 2005-06-25 13:20:59 2 2006-02-16 02:30:53
  31852. 1972 2005-06-17 09:25:49 2758 526 2005-06-24 09:59:49 2 2006-02-16 02:30:53
  31853. 1973 2005-06-17 09:26:15 3669 256 2005-06-21 10:18:15 1 2006-02-16 02:30:53
  31854. 1974 2005-06-17 09:30:05 1979 111 2005-06-21 12:10:05 1 2006-02-16 02:30:53
  31855. 1975 2005-06-17 09:32:10 2520 468 2005-06-23 03:50:10 2 2006-02-16 02:30:53
  31856. 1976 2005-06-17 09:38:08 3631 184 2005-06-23 07:23:08 2 2006-02-16 02:30:53
  31857. 1977 2005-06-17 09:38:22 2468 459 2005-06-23 14:19:22 2 2006-02-16 02:30:53
  31858. 1978 2005-06-17 09:42:34 1590 278 2005-06-20 09:13:34 2 2006-02-16 02:30:53
  31859. 1979 2005-06-17 09:45:30 3470 45 2005-06-20 10:52:30 1 2006-02-16 02:30:53
  31860. 1980 2005-06-17 09:48:05 2985 328 2005-06-23 14:43:05 1 2006-02-16 02:30:53
  31861. 1981 2005-06-17 10:03:34 3186 526 2005-06-20 13:14:34 2 2006-02-16 02:30:53
  31862. 1982 2005-06-17 10:12:15 1091 566 2005-06-20 13:56:15 1 2006-02-16 02:30:53
  31863. 1983 2005-06-17 10:22:13 1955 365 2005-06-24 05:04:13 1 2006-02-16 02:30:53
  31864. 1984 2005-06-17 10:25:28 3417 380 2005-06-23 08:18:28 2 2006-02-16 02:30:53
  31865. 1985 2005-06-17 10:31:37 87 411 2005-06-22 11:17:37 1 2006-02-16 02:30:53
  31866. 1986 2005-06-17 10:34:59 2894 541 2005-06-24 04:57:59 2 2006-02-16 02:30:53
  31867. 1987 2005-06-17 10:40:36 110 479 2005-06-23 14:23:36 1 2006-02-16 02:30:53
  31868. 1988 2005-06-17 10:42:34 3054 261 2005-06-25 11:47:34 2 2006-02-16 02:30:53
  31869. 1989 2005-06-17 10:47:24 634 35 2005-06-19 05:12:24 1 2006-02-16 02:30:53
  31870. 1990 2005-06-17 10:48:44 1471 571 2005-06-24 08:11:44 1 2006-02-16 02:30:53
  31871. 1991 2005-06-17 10:49:23 3963 105 2005-06-25 10:48:23 1 2006-02-16 02:30:53
  31872. 1992 2005-06-17 10:58:53 636 233 2005-06-19 08:42:53 2 2006-02-16 02:30:53
  31873. 1993 2005-06-17 10:59:24 168 234 2005-06-23 07:30:24 2 2006-02-16 02:30:53
  31874. 1994 2005-06-17 11:07:06 2203 346 2005-06-25 08:32:06 2 2006-02-16 02:30:53
  31875. 1995 2005-06-17 11:11:14 1866 10 2005-06-26 16:37:14 1 2006-02-16 02:30:53
  31876. 1996 2005-06-17 11:17:45 3074 149 2005-06-26 09:42:45 1 2006-02-16 02:30:53
  31877. 1997 2005-06-17 11:19:43 846 411 2005-06-19 14:18:43 1 2006-02-16 02:30:53
  31878. 1998 2005-06-17 11:24:57 4365 562 2005-06-26 09:48:57 1 2006-02-16 02:30:53
  31879. 1999 2005-06-17 11:30:08 3704 111 2005-06-23 08:36:08 1 2006-02-16 02:30:53
  31880. 2000 2005-06-17 11:32:30 323 163 2005-06-22 13:37:30 1 2006-02-16 02:30:53
  31881. 2001 2005-06-17 11:35:09 2069 260 2005-06-21 14:52:09 2 2006-02-16 02:30:53
  31882. 2002 2005-06-17 11:39:58 2406 514 2005-06-24 15:41:58 2 2006-02-16 02:30:53
  31883. 2003 2005-06-17 11:40:35 1581 515 2005-06-19 08:30:35 2 2006-02-16 02:30:53
  31884. 2004 2005-06-17 11:43:38 1342 171 2005-06-24 08:05:38 2 2006-02-16 02:30:53
  31885. 2005 2005-06-17 11:44:54 4177 234 2005-06-19 10:53:54 1 2006-02-16 02:30:53
  31886. 2006 2005-06-17 11:47:03 992 215 2005-06-19 13:47:03 2 2006-02-16 02:30:53
  31887. 2007 2005-06-17 11:47:17 1123 572 2005-06-21 07:19:17 1 2006-02-16 02:30:53
  31888. 2008 2005-06-17 11:48:05 2081 570 2005-06-25 13:16:05 1 2006-02-16 02:30:53
  31889. 2009 2005-06-17 11:48:31 1902 119 2005-06-18 09:34:31 2 2006-02-16 02:30:53
  31890. 2010 2005-06-17 11:54:15 2845 329 2005-06-21 05:55:15 1 2006-02-16 02:30:53
  31891. 2011 2005-06-17 11:56:09 734 350 2005-06-24 06:47:09 2 2006-02-16 02:30:53
  31892. 2012 2005-06-17 11:57:15 3588 84 2005-06-24 17:18:15 1 2006-02-16 02:30:53
  31893. 2013 2005-06-17 12:03:01 3256 165 2005-06-24 10:04:01 1 2006-02-16 02:30:53
  31894. 2014 2005-06-17 12:03:28 2969 337 2005-06-25 16:00:28 2 2006-02-16 02:30:53
  31895. 2015 2005-06-17 12:16:29 3776 484 2005-06-18 14:40:29 2 2006-02-16 02:30:53
  31896. 2016 2005-06-17 12:18:36 4265 282 2005-06-20 12:13:36 1 2006-02-16 02:30:53
  31897. 2017 2005-06-17 12:33:30 1434 516 2005-06-19 10:08:30 2 2006-02-16 02:30:53
  31898. 2018 2005-06-17 12:35:58 1278 380 2005-06-26 13:16:58 2 2006-02-16 02:30:53
  31899. 2019 2005-06-17 12:38:44 2314 528 2005-06-23 17:38:44 2 2006-02-16 02:30:53
  31900. 2020 2005-06-17 12:39:50 1914 384 2005-06-19 14:59:50 1 2006-02-16 02:30:53
  31901. 2021 2005-06-17 12:41:18 2852 319 2005-06-23 17:17:18 2 2006-02-16 02:30:53
  31902. 2022 2005-06-17 12:44:39 3053 547 2005-06-25 12:32:39 1 2006-02-16 02:30:53
  31903. 2023 2005-06-17 12:52:58 787 169 2005-06-23 11:07:58 1 2006-02-16 02:30:53
  31904. 2024 2005-06-17 13:00:51 2566 329 2005-06-22 07:03:51 1 2006-02-16 02:30:53
  31905. 2025 2005-06-17 13:04:00 1203 447 2005-06-18 18:45:00 2 2006-02-16 02:30:53
  31906. 2026 2005-06-17 13:05:38 3681 491 2005-06-21 17:19:38 1 2006-02-16 02:30:53
  31907. 2027 2005-06-17 13:06:56 4309 265 2005-06-23 13:46:56 1 2006-02-16 02:30:53
  31908. 2028 2005-06-17 13:08:08 4451 155 2005-06-23 10:54:08 1 2006-02-16 02:30:53
  31909. 2029 2005-06-17 13:10:59 914 512 2005-06-19 18:15:59 1 2006-02-16 02:30:53
  31910. 2030 2005-06-17 13:13:27 4024 457 2005-06-19 10:44:27 1 2006-02-16 02:30:53
  31911. 2031 2005-06-17 13:14:03 4275 570 2005-06-25 10:06:03 2 2006-02-16 02:30:53
  31912. 2032 2005-06-17 13:24:07 425 316 2005-06-18 18:18:07 1 2006-02-16 02:30:53
  31913. 2033 2005-06-17 13:24:43 58 90 2005-06-20 12:34:43 1 2006-02-16 02:30:53
  31914. 2034 2005-06-17 13:27:16 1512 587 2005-06-22 08:53:16 2 2006-02-16 02:30:53
  31915. 2035 2005-06-17 13:45:09 4371 158 2005-06-26 15:30:09 2 2006-02-16 02:30:53
  31916. 2036 2005-06-17 13:46:52 100 486 2005-06-18 15:42:52 2 2006-02-16 02:30:53
  31917. 2037 2005-06-17 13:54:20 2582 308 2005-06-20 14:49:20 2 2006-02-16 02:30:53
  31918. 2038 2005-06-17 14:00:51 4231 138 2005-06-19 11:54:51 2 2006-02-16 02:30:53
  31919. 2039 2005-06-17 14:03:43 1514 304 2005-06-24 09:21:43 1 2006-02-16 02:30:53
  31920. 2040 2005-06-17 14:18:37 227 260 2005-06-22 19:08:37 1 2006-02-16 02:30:53
  31921. 2041 2005-06-17 14:19:00 782 348 2005-06-26 08:38:00 2 2006-02-16 02:30:53
  31922. 2042 2005-06-17 14:31:02 3102 84 2005-06-18 14:43:02 1 2006-02-16 02:30:53
  31923. 2043 2005-06-17 14:31:12 2495 4 2005-06-19 11:04:12 2 2006-02-16 02:30:53
  31924. 2044 2005-06-17 14:37:57 2418 484 2005-06-22 17:15:57 2 2006-02-16 02:30:53
  31925. 2045 2005-06-17 14:38:11 561 391 2005-06-26 13:44:11 2 2006-02-16 02:30:53
  31926. 2046 2005-06-17 14:39:50 872 374 2005-06-24 16:02:50 1 2006-02-16 02:30:53
  31927. 2047 2005-06-17 14:40:58 2371 201 2005-06-21 08:52:58 1 2006-02-16 02:30:53
  31928. 2048 2005-06-17 14:55:29 2055 454 2005-06-23 16:29:29 2 2006-02-16 02:30:53
  31929. 2049 2005-06-17 14:58:36 1053 182 2005-06-22 14:53:36 2 2006-02-16 02:30:53
  31930. 2050 2005-06-17 15:07:30 1963 549 2005-06-18 14:43:30 1 2006-02-16 02:30:53
  31931. 2051 2005-06-17 15:10:16 2366 191 2005-06-19 20:45:16 1 2006-02-16 02:30:53
  31932. 2052 2005-06-17 15:14:43 1686 172 2005-06-21 11:08:43 1 2006-02-16 02:30:53
  31933. 2053 2005-06-17 15:19:34 4279 521 2005-06-19 10:06:34 2 2006-02-16 02:30:53
  31934. 2054 2005-06-17 15:26:37 1588 295 2005-06-26 14:22:37 1 2006-02-16 02:30:53
  31935. 2055 2005-06-17 15:27:03 1399 593 2005-06-25 13:44:03 1 2006-02-16 02:30:53
  31936. 2056 2005-06-17 15:27:33 229 42 2005-06-20 13:04:33 2 2006-02-16 02:30:53
  31937. 2057 2005-06-17 15:31:58 2803 190 2005-06-25 09:39:58 1 2006-02-16 02:30:53
  31938. 2058 2005-06-17 15:34:41 1324 57 2005-06-25 14:50:41 1 2006-02-16 02:30:53
  31939. 2059 2005-06-17 15:36:12 739 114 2005-06-18 19:01:12 2 2006-02-16 02:30:53
  31940. 2060 2005-06-17 15:42:42 1523 64 2005-06-22 16:39:42 1 2006-02-16 02:30:53
  31941. 2061 2005-06-17 15:47:00 4575 108 2005-06-24 16:36:00 2 2006-02-16 02:30:53
  31942. 2062 2005-06-17 15:56:43 1749 55 2005-06-20 21:37:43 2 2006-02-16 02:30:53
  31943. 2063 2005-06-17 15:56:53 4323 5 2005-06-21 14:19:53 1 2006-02-16 02:30:53
  31944. 2064 2005-06-17 15:57:56 1970 67 2005-06-23 21:04:56 2 2006-02-16 02:30:53
  31945. 2065 2005-06-17 16:03:46 844 266 2005-06-22 16:41:46 2 2006-02-16 02:30:53
  31946. 2066 2005-06-17 16:07:08 2561 248 2005-06-24 15:20:08 2 2006-02-16 02:30:53
  31947. 2067 2005-06-17 16:11:08 1711 297 2005-06-22 13:01:08 2 2006-02-16 02:30:53
  31948. 2068 2005-06-17 16:11:46 4252 387 2005-06-20 11:28:46 1 2006-02-16 02:30:53
  31949. 2069 2005-06-17 16:19:39 2746 551 2005-06-26 16:48:39 1 2006-02-16 02:30:53
  31950. 2070 2005-06-17 16:27:51 2609 24 2005-06-20 20:46:51 1 2006-02-16 02:30:53
  31951. 2071 2005-06-17 16:33:17 2867 479 2005-06-23 21:51:17 1 2006-02-16 02:30:53
  31952. 2072 2005-06-17 16:33:32 86 261 2005-06-23 13:22:32 1 2006-02-16 02:30:53
  31953. 2073 2005-06-17 16:33:59 3530 410 2005-06-19 11:57:59 1 2006-02-16 02:30:53
  31954. 2074 2005-06-17 16:40:03 71 495 2005-06-20 21:34:03 1 2006-02-16 02:30:53
  31955. 2075 2005-06-17 16:40:33 2415 459 2005-06-19 13:55:33 2 2006-02-16 02:30:53
  31956. 2076 2005-06-17 16:43:47 2242 217 2005-06-24 11:12:47 1 2006-02-16 02:30:53
  31957. 2077 2005-06-17 16:46:11 4478 113 2005-06-19 15:10:11 1 2006-02-16 02:30:53
  31958. 2078 2005-06-17 16:48:55 2021 278 2005-06-19 18:01:55 1 2006-02-16 02:30:53
  31959. 2079 2005-06-17 16:49:45 3853 465 2005-06-18 18:10:45 1 2006-02-16 02:30:53
  31960. 2080 2005-06-17 16:59:40 1231 476 2005-06-21 11:28:40 2 2006-02-16 02:30:53
  31961. 2081 2005-06-17 17:05:02 917 253 2005-06-26 20:26:02 1 2006-02-16 02:30:53
  31962. 2082 2005-06-17 17:13:32 434 254 2005-06-19 16:16:32 1 2006-02-16 02:30:53
  31963. 2083 2005-06-17 17:14:00 2423 97 2005-06-18 18:31:00 2 2006-02-16 02:30:53
  31964. 2084 2005-06-17 17:17:19 428 92 2005-06-22 14:57:19 1 2006-02-16 02:30:53
  31965. 2085 2005-06-17 17:30:56 2275 214 2005-06-23 12:13:56 1 2006-02-16 02:30:53
  31966. 2086 2005-06-17 17:32:07 898 326 2005-06-21 20:19:07 2 2006-02-16 02:30:53
  31967. 2087 2005-06-17 17:35:10 466 398 2005-06-26 13:52:10 1 2006-02-16 02:30:53
  31968. 2088 2005-06-17 17:35:30 506 310 2005-06-23 20:13:30 2 2006-02-16 02:30:53
  31969. 2089 2005-06-17 17:45:09 4030 156 2005-06-25 16:41:09 1 2006-02-16 02:30:53
  31970. 2090 2005-06-17 18:06:14 17 197 2005-06-22 23:52:14 1 2006-02-16 02:30:53
  31971. 2091 2005-06-17 18:09:04 4033 260 2005-06-26 12:11:04 1 2006-02-16 02:30:53
  31972. 2092 2005-06-17 18:12:16 4427 556 2005-06-25 15:06:16 2 2006-02-16 02:30:53
  31973. 2093 2005-06-17 18:14:08 814 26 2005-06-26 18:10:08 1 2006-02-16 02:30:53
  31974. 2094 2005-06-17 18:18:56 2205 308 2005-06-18 19:36:56 1 2006-02-16 02:30:53
  31975. 2095 2005-06-17 18:21:35 1907 8 2005-06-23 23:49:35 2 2006-02-16 02:30:53
  31976. 2096 2005-06-17 18:33:04 1069 431 2005-06-21 17:29:04 2 2006-02-16 02:30:53
  31977. 2097 2005-06-17 18:40:04 569 439 2005-06-23 13:49:04 1 2006-02-16 02:30:53
  31978. 2098 2005-06-17 18:42:09 3951 274 2005-06-19 20:40:09 1 2006-02-16 02:30:53
  31979. 2099 2005-06-17 18:47:26 3660 146 2005-06-24 22:31:26 2 2006-02-16 02:30:53
  31980. 2100 2005-06-17 18:53:21 2267 387 2005-06-19 21:49:21 2 2006-02-16 02:30:53
  31981. 2101 2005-06-17 18:57:02 2137 581 2005-06-20 15:38:02 2 2006-02-16 02:30:53
  31982. 2102 2005-06-17 19:05:22 2316 486 2005-06-23 23:21:22 2 2006-02-16 02:30:53
  31983. 2103 2005-06-17 19:13:10 1469 456 2005-06-21 21:32:10 2 2006-02-16 02:30:53
  31984. 2104 2005-06-17 19:14:30 3084 136 2005-06-19 16:26:30 1 2006-02-16 02:30:53
  31985. 2105 2005-06-17 19:15:45 4090 57 2005-06-20 16:00:45 1 2006-02-16 02:30:53
  31986. 2106 2005-06-17 19:29:03 643 66 2005-06-23 18:17:03 2 2006-02-16 02:30:53
  31987. 2107 2005-06-17 19:31:16 1270 104 2005-06-18 23:33:16 1 2006-02-16 02:30:53
  31988. 2108 2005-06-17 19:35:26 1395 503 2005-06-25 15:45:26 1 2006-02-16 02:30:53
  31989. 2109 2005-06-17 19:41:42 2292 493 2005-06-25 17:03:42 2 2006-02-16 02:30:53
  31990. 2110 2005-06-17 19:45:49 3592 163 2005-06-26 18:59:49 2 2006-02-16 02:30:53
  31991. 2111 2005-06-17 19:47:21 2108 76 2005-06-19 22:46:21 2 2006-02-16 02:30:53
  31992. 2112 2005-06-17 19:52:42 1629 18 2005-06-25 00:00:42 2 2006-02-16 02:30:53
  31993. 2113 2005-06-17 19:57:46 1509 406 2005-06-24 00:22:46 1 2006-02-16 02:30:53
  31994. 2114 2005-06-17 20:00:25 3541 358 2005-06-23 18:51:25 1 2006-02-16 02:30:53
  31995. 2115 2005-06-17 20:02:16 3448 270 2005-06-25 16:56:16 2 2006-02-16 02:30:53
  31996. 2116 2005-06-17 20:16:12 2373 24 2005-06-18 17:03:12 2 2006-02-16 02:30:53
  31997. 2117 2005-06-17 20:24:00 2 170 2005-06-23 17:45:00 2 2006-02-16 02:30:53
  31998. 2118 2005-06-17 20:28:29 1261 103 2005-06-23 22:47:29 1 2006-02-16 02:30:53
  31999. 2119 2005-06-17 20:34:42 2104 561 2005-06-22 00:05:42 1 2006-02-16 02:30:53
  32000. 2120 2005-06-17 20:36:50 1498 182 2005-06-27 01:18:50 2 2006-02-16 02:30:53
  32001. 2121 2005-06-17 20:38:54 141 467 2005-06-22 23:06:54 2 2006-02-16 02:30:53
  32002. 2122 2005-06-17 20:48:27 2932 245 2005-06-23 00:58:27 2 2006-02-16 02:30:53
  32003. 2123 2005-06-17 20:48:30 2497 545 2005-06-18 19:17:30 2 2006-02-16 02:30:53
  32004. 2124 2005-06-17 20:49:14 1273 178 2005-06-23 17:44:14 1 2006-02-16 02:30:53
  32005. 2125 2005-06-17 20:53:42 4303 473 2005-06-19 01:53:42 2 2006-02-16 02:30:53
  32006. 2126 2005-06-17 20:54:36 4276 263 2005-06-27 02:16:36 1 2006-02-16 02:30:53
  32007. 2127 2005-06-17 20:54:48 3757 187 2005-06-18 16:28:48 2 2006-02-16 02:30:53
  32008. 2128 2005-06-17 20:54:58 352 2 2005-06-24 00:41:58 2 2006-02-16 02:30:53
  32009. 2129 2005-06-17 20:58:32 1930 249 2005-06-23 22:22:32 1 2006-02-16 02:30:53
  32010. 2130 2005-06-17 21:00:44 1369 413 2005-06-26 00:05:44 2 2006-02-16 02:30:53
  32011. 2131 2005-06-17 21:02:25 4424 85 2005-06-25 18:45:25 1 2006-02-16 02:30:53
  32012. 2132 2005-06-17 21:05:06 2636 186 2005-06-20 18:10:06 1 2006-02-16 02:30:53
  32013. 2133 2005-06-17 21:10:05 932 268 2005-06-23 22:41:05 1 2006-02-16 02:30:53
  32014. 2134 2005-06-17 21:13:44 1699 378 2005-06-26 16:28:44 2 2006-02-16 02:30:53
  32015. 2135 2005-06-17 21:14:02 4091 39 2005-06-19 00:59:02 1 2006-02-16 02:30:53
  32016. 2136 2005-06-17 21:16:41 2651 20 2005-06-24 22:42:41 2 2006-02-16 02:30:53
  32017. 2137 2005-06-17 21:18:28 1158 581 2005-06-20 21:05:28 1 2006-02-16 02:30:53
  32018. 2138 2005-06-17 21:28:14 512 254 2005-06-22 01:16:14 2 2006-02-16 02:30:53
  32019. 2139 2005-06-17 21:29:34 807 236 2005-06-26 21:05:34 1 2006-02-16 02:30:53
  32020. 2140 2005-06-17 21:40:29 2395 56 2005-06-19 00:42:29 1 2006-02-16 02:30:53
  32021. 2141 2005-06-17 21:41:34 2176 86 2005-06-19 00:15:34 1 2006-02-16 02:30:53
  32022. 2142 2005-06-17 21:55:43 1787 253 2005-06-26 19:41:43 2 2006-02-16 02:30:53
  32023. 2143 2005-06-17 21:58:13 1257 507 2005-06-19 23:59:13 2 2006-02-16 02:30:53
  32024. 2144 2005-06-17 22:05:40 3303 46 2005-06-21 02:53:40 1 2006-02-16 02:30:53
  32025. 2145 2005-06-17 22:10:36 238 388 2005-06-18 21:07:36 2 2006-02-16 02:30:53
  32026. 2146 2005-06-17 22:26:23 326 456 2005-06-26 17:10:23 1 2006-02-16 02:30:53
  32027. 2147 2005-06-17 22:28:13 2752 279 2005-06-22 20:50:13 1 2006-02-16 02:30:53
  32028. 2148 2005-06-17 22:44:35 315 338 2005-06-26 19:43:35 1 2006-02-16 02:30:53
  32029. 2149 2005-06-17 22:50:00 3365 333 2005-06-26 18:40:00 1 2006-02-16 02:30:53
  32030. 2150 2005-06-17 22:50:36 1910 406 2005-06-21 19:33:36 1 2006-02-16 02:30:53
  32031. 2151 2005-06-17 22:52:37 407 329 2005-06-20 22:00:37 1 2006-02-16 02:30:53
  32032. 2152 2005-06-17 22:53:27 2665 307 2005-06-23 19:19:27 1 2006-02-16 02:30:53
  32033. 2153 2005-06-17 22:58:04 2440 357 2005-06-24 19:38:04 2 2006-02-16 02:30:53
  32034. 2154 2005-06-17 22:59:42 1655 30 2005-06-24 04:11:42 1 2006-02-16 02:30:53
  32035. 2155 2005-06-17 23:07:29 3640 227 2005-06-25 03:23:29 2 2006-02-16 02:30:53
  32036. 2156 2005-06-17 23:08:12 623 237 2005-06-22 19:44:12 2 2006-02-16 02:30:53
  32037. 2157 2005-06-17 23:30:52 1619 201 2005-06-24 01:56:52 2 2006-02-16 02:30:53
  32038. 2158 2005-06-17 23:36:27 243 530 2005-06-19 19:25:27 2 2006-02-16 02:30:53
  32039. 2159 2005-06-17 23:37:29 3095 465 2005-06-25 00:18:29 2 2006-02-16 02:30:53
  32040. 2160 2005-06-17 23:39:11 1644 32 2005-06-22 20:04:11 1 2006-02-16 02:30:53
  32041. 2161 2005-06-17 23:39:50 3149 75 2005-06-26 23:28:50 2 2006-02-16 02:30:53
  32042. 2162 2005-06-17 23:45:47 1790 277 2005-06-21 21:03:47 1 2006-02-16 02:30:53
  32043. 2163 2005-06-17 23:46:16 2600 130 2005-06-22 22:48:16 2 2006-02-16 02:30:53
  32044. 2164 2005-06-17 23:46:21 3442 227 2005-06-24 19:10:21 2 2006-02-16 02:30:53
  32045. 2165 2005-06-17 23:51:10 2392 471 2005-06-21 23:54:10 1 2006-02-16 02:30:53
  32046. 2166 2005-06-17 23:51:21 4343 305 2005-06-27 01:06:21 2 2006-02-16 02:30:53
  32047. 2167 2005-06-17 23:51:28 3796 307 2005-06-21 00:43:28 2 2006-02-16 02:30:53
  32048. 2168 2005-06-17 23:53:24 802 308 2005-06-20 01:11:24 1 2006-02-16 02:30:53
  32049. 2169 2005-06-17 23:57:23 785 120 2005-06-19 20:14:23 2 2006-02-16 02:30:53
  32050. 2170 2005-06-17 23:57:34 3989 42 2005-06-22 03:37:34 2 2006-02-16 02:30:53
  32051. 2171 2005-06-18 00:06:04 1768 147 2005-06-24 18:09:04 2 2006-02-16 02:30:53
  32052. 2172 2005-06-18 00:06:16 2912 457 2005-06-26 00:50:16 1 2006-02-16 02:30:53
  32053. 2173 2005-06-18 00:08:20 995 65 2005-06-25 05:30:20 1 2006-02-16 02:30:53
  32054. 2174 2005-06-18 00:09:01 3279 520 2005-06-25 23:14:01 1 2006-02-16 02:30:53
  32055. 2175 2005-06-18 00:17:58 4038 17 2005-06-22 23:18:58 2 2006-02-16 02:30:53
  32056. 2176 2005-06-18 00:29:51 4201 282 2005-06-21 01:41:51 1 2006-02-16 02:30:53
  32057. 2177 2005-06-18 00:34:45 492 340 2005-06-26 18:40:45 1 2006-02-16 02:30:53
  32058. 2178 2005-06-18 00:38:35 2950 260 2005-06-21 02:56:35 1 2006-02-16 02:30:53
  32059. 2179 2005-06-18 00:41:36 4334 338 2005-06-19 02:17:36 1 2006-02-16 02:30:53
  32060. 2180 2005-06-18 00:47:43 3564 497 2005-06-25 04:12:43 2 2006-02-16 02:30:53
  32061. 2181 2005-06-18 00:48:31 3481 176 2005-06-25 06:43:31 2 2006-02-16 02:30:53
  32062. 2182 2005-06-18 00:56:18 3494 454 2005-06-26 20:01:18 1 2006-02-16 02:30:53
  32063. 2183 2005-06-18 01:06:01 1776 340 2005-06-22 01:20:01 1 2006-02-16 02:30:53
  32064. 2184 2005-06-18 01:10:36 3468 537 2005-06-21 05:59:36 2 2006-02-16 02:30:53
  32065. 2185 2005-06-18 01:12:22 4326 198 2005-06-20 20:41:22 1 2006-02-16 02:30:53
  32066. 2186 2005-06-18 01:15:27 2050 204 2005-06-21 06:16:27 1 2006-02-16 02:30:53
  32067. 2187 2005-06-18 01:17:27 1385 477 2005-06-20 22:18:27 1 2006-02-16 02:30:53
  32068. 2188 2005-06-18 01:19:04 712 183 2005-06-25 03:59:04 2 2006-02-16 02:30:53
  32069. 2189 2005-06-18 01:20:26 249 500 2005-06-25 00:30:26 1 2006-02-16 02:30:53
  32070. 2190 2005-06-18 01:29:51 4398 342 2005-06-26 04:31:51 2 2006-02-16 02:30:53
  32071. 2191 2005-06-18 01:33:09 3369 58 2005-06-19 20:18:09 1 2006-02-16 02:30:53
  32072. 2192 2005-06-18 01:35:47 1886 456 2005-06-23 23:38:47 2 2006-02-16 02:30:53
  32073. 2193 2005-06-18 01:38:45 1013 112 2005-06-22 19:51:45 1 2006-02-16 02:30:53
  32074. 2194 2005-06-18 01:41:37 1827 149 2005-06-25 04:27:37 1 2006-02-16 02:30:53
  32075. 2195 2005-06-18 01:44:46 2247 286 2005-06-25 20:50:46 1 2006-02-16 02:30:53
  32076. 2196 2005-06-18 01:47:07 1925 240 2005-06-26 03:18:07 2 2006-02-16 02:30:53
  32077. 2197 2005-06-18 01:50:27 3350 103 2005-06-19 01:31:27 2 2006-02-16 02:30:53
  32078. 2198 2005-06-18 01:51:22 1983 109 2005-06-26 06:57:22 2 2006-02-16 02:30:53
  32079. 2199 2005-06-18 01:57:56 99 171 2005-06-23 20:34:56 2 2006-02-16 02:30:53
  32080. 2200 2005-06-18 01:59:16 1085 229 2005-06-26 23:25:16 2 2006-02-16 02:30:53
  32081. 2201 2005-06-18 02:08:27 1864 489 2005-06-23 01:40:27 1 2006-02-16 02:30:53
  32082. 2202 2005-06-18 02:09:24 815 297 2005-06-26 07:17:24 2 2006-02-16 02:30:53
  32083. 2203 2005-06-18 02:10:42 1347 46 2005-06-22 06:25:42 2 2006-02-16 02:30:53
  32084. 2204 2005-06-18 02:11:38 1137 426 2005-06-24 00:28:38 1 2006-02-16 02:30:53
  32085. 2205 2005-06-18 02:14:34 1245 593 2005-06-25 05:11:34 1 2006-02-16 02:30:53
  32086. 2206 2005-06-18 02:14:45 3651 438 2005-06-24 23:20:45 2 2006-02-16 02:30:53
  32087. 2207 2005-06-18 02:19:21 182 78 2005-06-24 02:25:21 2 2006-02-16 02:30:53
  32088. 2208 2005-06-18 02:22:07 2345 132 2005-06-23 07:24:07 2 2006-02-16 02:30:53
  32089. 2209 2005-06-18 02:24:01 2441 13 2005-06-22 04:13:01 2 2006-02-16 02:30:53
  32090. 2210 2005-06-18 02:27:01 219 108 2005-06-21 00:45:01 1 2006-02-16 02:30:53
  32091. 2211 2005-06-18 02:29:10 4114 166 2005-06-22 02:02:10 1 2006-02-16 02:30:53
  32092. 2212 2005-06-18 02:36:10 2458 336 2005-06-19 21:21:10 1 2006-02-16 02:30:53
  32093. 2213 2005-06-18 02:36:47 949 98 2005-06-23 05:02:47 1 2006-02-16 02:30:53
  32094. 2214 2005-06-18 02:44:37 2430 366 2005-06-18 23:37:37 2 2006-02-16 02:30:53
  32095. 2215 2005-06-18 02:48:21 2060 239 2005-06-22 01:03:21 2 2006-02-16 02:30:53
  32096. 2216 2005-06-18 03:08:17 1428 320 2005-06-19 08:13:17 1 2006-02-16 02:30:53
  32097. 2217 2005-06-18 03:12:29 2260 118 2005-06-20 06:08:29 1 2006-02-16 02:30:53
  32098. 2218 2005-06-18 03:13:13 3577 176 2005-06-18 21:16:13 1 2006-02-16 02:30:53
  32099. 2219 2005-06-18 03:16:54 1881 393 2005-06-22 01:29:54 1 2006-02-16 02:30:53
  32100. 2220 2005-06-18 03:21:36 320 587 2005-06-21 07:45:36 2 2006-02-16 02:30:53
  32101. 2221 2005-06-18 03:24:56 3905 156 2005-06-22 08:27:56 1 2006-02-16 02:30:53
  32102. 2222 2005-06-18 03:26:23 3834 10 2005-06-26 08:50:23 2 2006-02-16 02:30:53
  32103. 2223 2005-06-18 03:27:03 4068 303 2005-06-27 09:19:03 2 2006-02-16 02:30:53
  32104. 2224 2005-06-18 03:33:58 1336 153 2005-06-18 22:10:58 1 2006-02-16 02:30:53
  32105. 2225 2005-06-18 03:35:40 2829 503 2005-06-23 03:05:40 1 2006-02-16 02:30:53
  32106. 2226 2005-06-18 03:39:56 3487 225 2005-06-24 07:26:56 2 2006-02-16 02:30:53
  32107. 2227 2005-06-18 03:43:23 3623 200 2005-06-19 05:55:23 2 2006-02-16 02:30:53
  32108. 2228 2005-06-18 03:44:50 490 383 2005-06-23 00:28:50 1 2006-02-16 02:30:53
  32109. 2229 2005-06-18 03:50:18 2840 35 2005-06-26 07:16:18 2 2006-02-16 02:30:53
  32110. 2230 2005-06-18 03:50:49 833 256 2005-06-25 01:12:49 2 2006-02-16 02:30:53
  32111. 2231 2005-06-18 03:52:14 2280 35 2005-06-23 06:52:14 1 2006-02-16 02:30:53
  32112. 2232 2005-06-18 03:54:31 2463 52 2005-06-22 07:29:31 1 2006-02-16 02:30:53
  32113. 2233 2005-06-18 03:57:36 3063 31 2005-06-21 09:42:36 2 2006-02-16 02:30:53
  32114. 2234 2005-06-18 04:01:28 234 182 2005-06-24 04:55:28 2 2006-02-16 02:30:53
  32115. 2235 2005-06-18 04:08:50 3463 21 2005-06-27 07:58:50 1 2006-02-16 02:30:53
  32116. 2236 2005-06-18 04:12:33 4001 375 2005-06-23 04:07:33 1 2006-02-16 02:30:53
  32117. 2237 2005-06-18 04:17:44 1821 205 2005-06-27 09:08:44 1 2006-02-16 02:30:53
  32118. 2238 2005-06-18 04:22:06 2859 251 2005-06-27 03:29:06 2 2006-02-16 02:30:53
  32119. 2239 2005-06-18 04:23:54 4419 437 2005-06-26 00:12:54 2 2006-02-16 02:30:53
  32120. 2240 2005-06-18 04:28:27 1409 122 2005-06-22 07:48:27 2 2006-02-16 02:30:53
  32121. 2241 2005-06-18 04:31:41 921 406 2005-06-24 22:34:41 2 2006-02-16 02:30:53
  32122. 2242 2005-06-18 04:32:28 1995 146 2005-06-24 03:26:28 2 2006-02-16 02:30:53
  32123. 2243 2005-06-18 04:33:03 1254 328 2005-06-23 04:14:03 2 2006-02-16 02:30:53
  32124. 2244 2005-06-18 04:46:33 3629 233 2005-06-20 04:28:33 1 2006-02-16 02:30:53
  32125. 2245 2005-06-18 04:52:59 1496 194 2005-06-24 05:07:59 2 2006-02-16 02:30:53
  32126. 2246 2005-06-18 04:54:29 4287 414 2005-06-22 09:14:29 1 2006-02-16 02:30:53
  32127. 2248 2005-06-18 04:59:48 1999 446 2005-06-19 08:51:48 2 2006-02-16 02:30:53
  32128. 2249 2005-06-18 05:03:08 117 285 2005-06-26 05:43:08 2 2006-02-16 02:30:53
  32129. 2250 2005-06-18 05:03:36 4042 7 2005-06-22 02:25:36 2 2006-02-16 02:30:53
  32130. 2251 2005-06-18 05:05:08 1458 143 2005-06-23 08:34:08 1 2006-02-16 02:30:53
  32131. 2252 2005-06-18 05:05:18 1987 383 2005-06-21 08:19:18 1 2006-02-16 02:30:53
  32132. 2253 2005-06-18 05:11:43 3719 122 2005-06-25 03:30:43 2 2006-02-16 02:30:53
  32133. 2254 2005-06-18 05:15:14 1084 281 2005-06-27 04:10:14 2 2006-02-16 02:30:53
  32134. 2255 2005-06-18 05:21:12 24 410 2005-06-26 09:19:12 1 2006-02-16 02:30:53
  32135. 2256 2005-06-18 05:21:56 1863 93 2005-06-27 02:06:56 2 2006-02-16 02:30:53
  32136. 2257 2005-06-18 05:29:52 2846 34 2005-06-22 00:19:52 1 2006-02-16 02:30:53
  32137. 2258 2005-06-18 05:30:36 4573 292 2005-06-24 09:09:36 1 2006-02-16 02:30:53
  32138. 2259 2005-06-18 05:37:45 4103 491 2005-06-21 01:51:45 1 2006-02-16 02:30:53
  32139. 2260 2005-06-18 05:38:36 2773 297 2005-06-20 08:08:36 1 2006-02-16 02:30:53
  32140. 2261 2005-06-18 05:46:15 1763 570 2005-06-24 05:06:15 1 2006-02-16 02:30:53
  32141. 2262 2005-06-18 05:49:46 4172 218 2005-06-20 00:25:46 2 2006-02-16 02:30:53
  32142. 2263 2005-06-18 05:57:47 3259 452 2005-06-20 06:13:47 1 2006-02-16 02:30:53
  32143. 2264 2005-06-18 05:58:45 150 240 2005-06-19 00:57:45 1 2006-02-16 02:30:53
  32144. 2265 2005-06-18 06:03:27 3069 267 2005-06-20 01:16:27 1 2006-02-16 02:30:53
  32145. 2266 2005-06-18 06:05:02 2596 452 2005-06-20 06:54:02 1 2006-02-16 02:30:53
  32146. 2267 2005-06-18 06:10:23 2086 218 2005-06-20 00:39:23 2 2006-02-16 02:30:53
  32147. 2268 2005-06-18 06:13:41 4380 21 2005-06-22 08:53:41 2 2006-02-16 02:30:53
  32148. 2269 2005-06-18 06:20:54 3088 431 2005-06-25 04:51:54 2 2006-02-16 02:30:53
  32149. 2270 2005-06-18 06:29:01 3447 588 2005-06-26 07:21:01 2 2006-02-16 02:30:53
  32150. 2271 2005-06-18 06:29:52 2416 145 2005-06-21 09:46:52 2 2006-02-16 02:30:53
  32151. 2272 2005-06-18 06:29:53 1364 599 2005-06-23 10:58:53 1 2006-02-16 02:30:53
  32152. 2273 2005-06-18 06:30:02 4456 327 2005-06-20 07:07:02 1 2006-02-16 02:30:53
  32153. 2274 2005-06-18 06:31:15 3021 347 2005-06-21 01:24:15 2 2006-02-16 02:30:53
  32154. 2275 2005-06-18 06:31:29 2805 354 2005-06-24 10:04:29 2 2006-02-16 02:30:53
  32155. 2276 2005-06-18 06:33:48 1145 594 2005-06-25 00:50:48 2 2006-02-16 02:30:53
  32156. 2277 2005-06-18 06:35:03 3770 224 2005-06-19 01:26:03 1 2006-02-16 02:30:53
  32157. 2278 2005-06-18 06:37:57 1166 450 2005-06-22 10:57:57 1 2006-02-16 02:30:53
  32158. 2279 2005-06-18 06:38:22 1953 554 2005-06-27 07:16:22 1 2006-02-16 02:30:53
  32159. 2280 2005-06-18 06:46:54 4568 548 2005-06-26 09:48:54 2 2006-02-16 02:30:53
  32160. 2281 2005-06-18 06:47:29 4212 431 2005-06-20 10:27:29 2 2006-02-16 02:30:53
  32161. 2282 2005-06-18 06:48:23 4388 113 2005-06-24 11:04:23 2 2006-02-16 02:30:53
  32162. 2283 2005-06-18 06:56:06 2056 507 2005-06-19 05:11:06 2 2006-02-16 02:30:53
  32163. 2284 2005-06-18 06:59:51 2682 228 2005-06-24 04:58:51 2 2006-02-16 02:30:53
  32164. 2285 2005-06-18 07:00:54 755 447 2005-06-25 08:58:54 2 2006-02-16 02:30:53
  32165. 2286 2005-06-18 07:02:32 618 287 2005-06-27 12:33:32 1 2006-02-16 02:30:53
  32166. 2287 2005-06-18 07:04:36 1473 317 2005-06-27 03:00:36 2 2006-02-16 02:30:53
  32167. 2288 2005-06-18 07:23:17 877 247 2005-06-26 07:44:17 2 2006-02-16 02:30:53
  32168. 2289 2005-06-18 07:29:43 2030 392 2005-06-24 11:16:43 2 2006-02-16 02:30:53
  32169. 2290 2005-06-18 07:34:37 200 513 2005-06-26 11:45:37 1 2006-02-16 02:30:53
  32170. 2291 2005-06-18 07:36:46 3949 436 2005-06-26 04:57:46 2 2006-02-16 02:30:53
  32171. 2292 2005-06-18 07:37:48 173 130 2005-06-20 02:45:48 2 2006-02-16 02:30:53
  32172. 2293 2005-06-18 07:45:03 3209 178 2005-06-24 08:12:03 1 2006-02-16 02:30:53
  32173. 2294 2005-06-18 07:46:34 2096 72 2005-06-22 12:34:34 2 2006-02-16 02:30:53
  32174. 2295 2005-06-18 07:56:18 3250 106 2005-06-21 07:10:18 1 2006-02-16 02:30:53
  32175. 2296 2005-06-18 08:10:42 4558 481 2005-06-20 12:26:42 2 2006-02-16 02:30:53
  32176. 2297 2005-06-18 08:17:41 2262 111 2005-06-26 05:08:41 2 2006-02-16 02:30:53
  32177. 2298 2005-06-18 08:18:29 1227 497 2005-06-24 11:51:29 1 2006-02-16 02:30:53
  32178. 2299 2005-06-18 08:18:52 4339 28 2005-06-26 11:48:52 1 2006-02-16 02:30:53
  32179. 2300 2005-06-18 08:22:34 1617 291 2005-06-24 04:51:34 2 2006-02-16 02:30:53
  32180. 2301 2005-06-18 08:24:03 869 273 2005-06-25 10:31:03 2 2006-02-16 02:30:53
  32181. 2302 2005-06-18 08:27:33 1852 42 2005-06-22 02:46:33 2 2006-02-16 02:30:53
  32182. 2303 2005-06-18 08:27:59 1524 329 2005-06-22 10:58:59 1 2006-02-16 02:30:53
  32183. 2304 2005-06-18 08:30:15 3543 327 2005-06-23 06:17:15 1 2006-02-16 02:30:53
  32184. 2305 2005-06-18 08:31:18 622 149 2005-06-24 06:18:18 2 2006-02-16 02:30:53
  32185. 2306 2005-06-18 08:33:23 208 477 2005-06-27 10:01:23 2 2006-02-16 02:30:53
  32186. 2307 2005-06-18 08:34:59 4576 47 2005-06-23 04:42:59 1 2006-02-16 02:30:53
  32187. 2308 2005-06-18 08:41:48 197 1 2005-06-22 03:36:48 2 2006-02-16 02:30:53
  32188. 2309 2005-06-18 08:43:24 611 576 2005-06-20 03:56:24 1 2006-02-16 02:30:53
  32189. 2310 2005-06-18 08:45:59 2590 409 2005-06-26 05:06:59 2 2006-02-16 02:30:53
  32190. 2311 2005-06-18 08:51:29 4506 236 2005-06-25 07:51:29 1 2006-02-16 02:30:53
  32191. 2312 2005-06-18 08:55:46 402 184 2005-06-24 04:34:46 2 2006-02-16 02:30:53
  32192. 2313 2005-06-18 08:56:45 3134 379 2005-06-26 10:30:45 2 2006-02-16 02:30:53
  32193. 2314 2005-06-18 09:03:19 2157 160 2005-06-19 12:14:19 1 2006-02-16 02:30:53
  32194. 2315 2005-06-18 09:03:39 2766 372 2005-06-22 11:18:39 1 2006-02-16 02:30:53
  32195. 2316 2005-06-18 09:04:59 372 289 2005-06-20 09:39:59 2 2006-02-16 02:30:53
  32196. 2317 2005-06-18 09:12:18 1602 326 2005-06-21 05:50:18 2 2006-02-16 02:30:53
  32197. 2318 2005-06-18 09:13:54 2328 383 2005-06-23 07:19:54 1 2006-02-16 02:30:53
  32198. 2319 2005-06-18 09:24:22 1521 393 2005-06-26 14:12:22 2 2006-02-16 02:30:53
  32199. 2320 2005-06-18 09:24:50 597 552 2005-06-24 07:59:50 1 2006-02-16 02:30:53
  32200. 2321 2005-06-18 09:42:42 1160 565 2005-06-25 14:28:42 1 2006-02-16 02:30:53
  32201. 2322 2005-06-18 09:44:21 1893 213 2005-06-25 09:29:21 1 2006-02-16 02:30:53
  32202. 2323 2005-06-18 09:55:02 207 54 2005-06-23 07:19:02 1 2006-02-16 02:30:53
  32203. 2324 2005-06-18 10:00:33 2987 268 2005-06-23 14:10:33 1 2006-02-16 02:30:53
  32204. 2325 2005-06-18 10:08:07 752 406 2005-06-21 15:07:07 1 2006-02-16 02:30:53
  32205. 2326 2005-06-18 10:14:22 3829 174 2005-06-24 07:01:22 2 2006-02-16 02:30:53
  32206. 2327 2005-06-18 10:16:40 1351 571 2005-06-20 15:06:40 1 2006-02-16 02:30:53
  32207. 2328 2005-06-18 10:17:21 2304 441 2005-06-21 04:18:21 1 2006-02-16 02:30:53
  32208. 2329 2005-06-18 10:22:52 4156 587 2005-06-20 12:03:52 2 2006-02-16 02:30:53
  32209. 2330 2005-06-18 10:41:19 4285 390 2005-06-25 10:48:19 1 2006-02-16 02:30:53
  32210. 2331 2005-06-18 10:50:09 1546 221 2005-06-25 14:30:09 1 2006-02-16 02:30:53
  32211. 2332 2005-06-18 10:53:51 2152 140 2005-06-24 12:06:51 2 2006-02-16 02:30:53
  32212. 2333 2005-06-18 10:55:54 2323 283 2005-06-25 07:09:54 2 2006-02-16 02:30:53
  32213. 2334 2005-06-18 10:56:24 3076 223 2005-06-22 10:38:24 2 2006-02-16 02:30:53
  32214. 2335 2005-06-18 10:59:36 3968 446 2005-06-26 06:42:36 2 2006-02-16 02:30:53
  32215. 2336 2005-06-18 11:00:05 3888 124 2005-06-25 06:02:05 2 2006-02-16 02:30:53
  32216. 2337 2005-06-18 11:15:27 4522 582 2005-06-26 06:59:27 2 2006-02-16 02:30:53
  32217. 2338 2005-06-18 11:24:54 3165 316 2005-06-19 07:34:54 1 2006-02-16 02:30:53
  32218. 2339 2005-06-18 11:29:22 313 297 2005-06-21 10:29:22 1 2006-02-16 02:30:53
  32219. 2340 2005-06-18 11:30:56 1913 157 2005-06-23 06:00:56 1 2006-02-16 02:30:53
  32220. 2341 2005-06-18 11:35:30 638 31 2005-06-27 11:56:30 2 2006-02-16 02:30:53
  32221. 2342 2005-06-18 11:42:40 2169 146 2005-06-20 14:40:40 1 2006-02-16 02:30:53
  32222. 2343 2005-06-18 11:46:26 4554 20 2005-06-22 11:37:26 2 2006-02-16 02:30:53
  32223. 2344 2005-06-18 12:01:47 2015 498 2005-06-19 11:56:47 2 2006-02-16 02:30:53
  32224. 2345 2005-06-18 12:03:23 1818 6 2005-06-22 14:25:23 2 2006-02-16 02:30:53
  32225. 2346 2005-06-18 12:08:16 2575 308 2005-06-27 15:02:16 1 2006-02-16 02:30:53
  32226. 2347 2005-06-18 12:12:29 4516 194 2005-06-23 14:03:29 1 2006-02-16 02:30:53
  32227. 2348 2005-06-18 12:15:43 3622 449 2005-06-24 14:03:43 2 2006-02-16 02:30:53
  32228. 2349 2005-06-18 12:25:14 1536 495 2005-06-19 11:24:14 2 2006-02-16 02:30:53
  32229. 2350 2005-06-18 12:25:29 1179 471 2005-06-23 11:35:29 1 2006-02-16 02:30:53
  32230. 2351 2005-06-18 12:27:57 2942 216 2005-06-23 16:14:57 1 2006-02-16 02:30:53
  32231. 2352 2005-06-18 12:40:15 2141 590 2005-06-22 07:07:15 2 2006-02-16 02:30:53
  32232. 2353 2005-06-18 12:53:25 3223 361 2005-06-19 13:53:25 1 2006-02-16 02:30:53
  32233. 2354 2005-06-18 12:54:18 2793 77 2005-06-26 07:23:18 2 2006-02-16 02:30:53
  32234. 2355 2005-06-18 12:57:06 3613 125 2005-06-26 07:32:06 1 2006-02-16 02:30:53
  32235. 2356 2005-06-18 12:59:23 2207 455 2005-06-21 10:12:23 2 2006-02-16 02:30:53
  32236. 2357 2005-06-18 12:59:41 1323 561 2005-06-26 16:40:41 1 2006-02-16 02:30:53
  32237. 2358 2005-06-18 13:00:51 1728 478 2005-06-26 12:58:51 1 2006-02-16 02:30:53
  32238. 2359 2005-06-18 13:04:42 3087 201 2005-06-25 11:52:42 1 2006-02-16 02:30:53
  32239. 2360 2005-06-18 13:11:13 37 57 2005-06-23 15:32:13 2 2006-02-16 02:30:53
  32240. 2361 2005-06-18 13:19:05 3547 546 2005-06-23 07:59:05 1 2006-02-16 02:30:53
  32241. 2362 2005-06-18 13:31:15 2815 514 2005-06-19 12:35:15 1 2006-02-16 02:30:53
  32242. 2363 2005-06-18 13:33:59 3497 1 2005-06-19 17:40:59 1 2006-02-16 02:30:53
  32243. 2364 2005-06-18 13:37:32 2856 512 2005-06-23 14:18:32 1 2006-02-16 02:30:53
  32244. 2365 2005-06-18 13:45:34 3109 493 2005-06-21 12:12:34 2 2006-02-16 02:30:53
  32245. 2366 2005-06-18 13:46:39 1413 162 2005-06-23 18:49:39 2 2006-02-16 02:30:53
  32246. 2367 2005-06-18 14:00:31 4086 566 2005-06-22 14:45:31 2 2006-02-16 02:30:53
  32247. 2368 2005-06-18 14:10:27 1058 99 2005-06-23 10:49:27 1 2006-02-16 02:30:53
  32248. 2369 2005-06-18 14:25:29 1515 44 2005-06-23 18:45:29 2 2006-02-16 02:30:53
  32249. 2370 2005-06-18 14:29:54 2656 489 2005-06-24 10:23:54 1 2006-02-16 02:30:53
  32250. 2371 2005-06-18 14:35:29 178 248 2005-06-22 09:38:29 2 2006-02-16 02:30:53
  32251. 2372 2005-06-18 14:37:37 1567 96 2005-06-21 08:40:37 2 2006-02-16 02:30:53
  32252. 2373 2005-06-18 14:37:57 2780 544 2005-06-23 19:29:57 2 2006-02-16 02:30:53
  32253. 2374 2005-06-18 14:44:06 2634 71 2005-06-22 17:14:06 1 2006-02-16 02:30:53
  32254. 2375 2005-06-18 14:47:29 2175 259 2005-06-26 13:52:29 2 2006-02-16 02:30:53
  32255. 2376 2005-06-18 14:55:30 3664 479 2005-06-25 17:40:30 1 2006-02-16 02:30:53
  32256. 2377 2005-06-18 14:56:23 3568 193 2005-06-27 12:36:23 1 2006-02-16 02:30:53
  32257. 2378 2005-06-18 14:57:49 2796 384 2005-06-26 18:23:49 2 2006-02-16 02:30:53
  32258. 2379 2005-06-18 14:59:39 2708 597 2005-06-24 13:26:39 2 2006-02-16 02:30:53
  32259. 2380 2005-06-18 15:00:04 4413 256 2005-06-24 13:29:04 2 2006-02-16 02:30:53
  32260. 2381 2005-06-18 15:00:30 1491 167 2005-06-22 11:38:30 1 2006-02-16 02:30:53
  32261. 2382 2005-06-18 15:03:52 915 568 2005-06-20 10:16:52 2 2006-02-16 02:30:53
  32262. 2383 2005-06-18 15:17:59 2459 149 2005-06-26 18:42:59 2 2006-02-16 02:30:53
  32263. 2384 2005-06-18 15:18:49 3378 132 2005-06-21 18:10:49 1 2006-02-16 02:30:53
  32264. 2385 2005-06-18 15:22:40 1641 298 2005-06-26 10:02:40 1 2006-02-16 02:30:53
  32265. 2386 2005-06-18 15:22:51 1361 293 2005-06-22 20:01:51 1 2006-02-16 02:30:53
  32266. 2387 2005-06-18 15:24:19 692 289 2005-06-25 17:41:19 2 2006-02-16 02:30:53
  32267. 2388 2005-06-18 15:26:30 2923 53 2005-06-20 20:24:30 1 2006-02-16 02:30:53
  32268. 2389 2005-06-18 15:27:47 731 382 2005-06-21 12:26:47 1 2006-02-16 02:30:53
  32269. 2390 2005-06-18 15:29:26 2748 239 2005-06-23 17:50:26 1 2006-02-16 02:30:53
  32270. 2391 2005-06-18 15:33:30 2850 491 2005-06-25 14:30:30 1 2006-02-16 02:30:53
  32271. 2392 2005-06-18 15:34:18 2213 261 2005-06-19 16:22:18 1 2006-02-16 02:30:53
  32272. 2393 2005-06-18 15:37:55 3143 21 2005-06-25 17:11:55 1 2006-02-16 02:30:53
  32273. 2394 2005-06-18 15:42:30 2669 60 2005-06-26 16:12:30 1 2006-02-16 02:30:53
  32274. 2395 2005-06-18 15:45:15 899 544 2005-06-27 19:11:15 2 2006-02-16 02:30:53
  32275. 2396 2005-06-18 15:49:48 1986 31 2005-06-27 20:31:48 2 2006-02-16 02:30:53
  32276. 2397 2005-06-18 15:51:25 2895 76 2005-06-24 15:52:25 1 2006-02-16 02:30:53
  32277. 2398 2005-06-18 15:56:53 3001 526 2005-06-27 14:25:53 2 2006-02-16 02:30:53
  32278. 2399 2005-06-18 16:06:14 2492 577 2005-06-26 16:56:14 2 2006-02-16 02:30:53
  32279. 2400 2005-06-18 16:10:46 3194 410 2005-06-25 20:34:46 1 2006-02-16 02:30:53
  32280. 2401 2005-06-18 16:22:03 85 359 2005-06-19 13:49:03 2 2006-02-16 02:30:53
  32281. 2402 2005-06-18 16:24:45 2833 360 2005-06-27 14:39:45 1 2006-02-16 02:30:53
  32282. 2403 2005-06-18 16:33:22 2697 536 2005-06-23 19:25:22 1 2006-02-16 02:30:53
  32283. 2404 2005-06-18 16:33:48 4138 456 2005-06-23 20:39:48 2 2006-02-16 02:30:53
  32284. 2405 2005-06-18 16:36:38 3604 356 2005-06-21 19:15:38 1 2006-02-16 02:30:53
  32285. 2406 2005-06-18 16:39:37 1321 497 2005-06-23 12:04:37 1 2006-02-16 02:30:53
  32286. 2407 2005-06-18 16:50:41 2547 421 2005-06-24 15:29:41 2 2006-02-16 02:30:53
  32287. 2408 2005-06-18 16:50:44 258 87 2005-06-19 20:11:44 1 2006-02-16 02:30:53
  32288. 2409 2005-06-18 16:53:33 656 84 2005-06-20 18:23:33 1 2006-02-16 02:30:53
  32289. 2410 2005-06-18 16:55:08 265 381 2005-06-20 12:40:08 2 2006-02-16 02:30:53
  32290. 2411 2005-06-18 16:55:54 3302 558 2005-06-25 12:44:54 1 2006-02-16 02:30:53
  32291. 2412 2005-06-18 16:58:58 1946 127 2005-06-27 22:57:58 1 2006-02-16 02:30:53
  32292. 2413 2005-06-18 16:59:34 1851 170 2005-06-27 16:10:34 2 2006-02-16 02:30:53
  32293. 2414 2005-06-18 17:01:55 4500 275 2005-06-20 17:42:55 1 2006-02-16 02:30:53
  32294. 2415 2005-06-18 17:02:42 3105 434 2005-06-25 13:16:42 2 2006-02-16 02:30:53
  32295. 2416 2005-06-18 17:07:34 2868 26 2005-06-24 19:16:34 1 2006-02-16 02:30:53
  32296. 2417 2005-06-18 17:12:01 1956 219 2005-06-26 13:32:01 1 2006-02-16 02:30:53
  32297. 2418 2005-06-18 17:14:42 2756 381 2005-06-26 16:33:42 1 2006-02-16 02:30:53
  32298. 2419 2005-06-18 17:21:24 1255 102 2005-06-26 18:25:24 1 2006-02-16 02:30:53
  32299. 2420 2005-06-18 17:22:28 241 502 2005-06-23 17:45:28 1 2006-02-16 02:30:53
  32300. 2421 2005-06-18 17:25:05 3524 26 2005-06-23 21:09:05 2 2006-02-16 02:30:53
  32301. 2422 2005-06-18 17:28:57 3170 527 2005-06-23 15:22:57 1 2006-02-16 02:30:53
  32302. 2423 2005-06-18 17:32:08 1744 231 2005-06-21 11:58:08 1 2006-02-16 02:30:53
  32303. 2424 2005-06-18 17:35:08 1884 233 2005-06-23 15:33:08 1 2006-02-16 02:30:53
  32304. 2425 2005-06-18 17:37:45 2630 579 2005-06-27 18:40:45 2 2006-02-16 02:30:53
  32305. 2426 2005-06-18 17:40:44 474 543 2005-06-22 14:30:44 2 2006-02-16 02:30:53
  32306. 2427 2005-06-18 17:45:00 4278 176 2005-06-27 20:07:00 2 2006-02-16 02:30:53
  32307. 2428 2005-06-18 17:47:34 3892 241 2005-06-19 14:39:34 2 2006-02-16 02:30:53
  32308. 2429 2005-06-18 17:48:28 3238 583 2005-06-27 15:52:28 1 2006-02-16 02:30:53
  32309. 2430 2005-06-18 17:51:46 1984 434 2005-06-23 19:17:46 1 2006-02-16 02:30:53
  32310. 2431 2005-06-18 17:53:03 1383 295 2005-06-25 15:08:03 2 2006-02-16 02:30:53
  32311. 2432 2005-06-18 17:59:18 4420 250 2005-06-25 15:19:18 2 2006-02-16 02:30:53
  32312. 2433 2005-06-18 18:10:17 937 356 2005-06-23 14:46:17 2 2006-02-16 02:30:53
  32313. 2434 2005-06-18 18:11:51 3739 12 2005-06-23 12:52:51 2 2006-02-16 02:30:53
  32314. 2435 2005-06-18 18:12:26 3548 173 2005-06-22 13:43:26 2 2006-02-16 02:30:53
  32315. 2436 2005-06-18 18:13:32 3328 534 2005-06-21 13:33:32 2 2006-02-16 02:30:53
  32316. 2437 2005-06-18 18:30:26 1799 454 2005-06-21 18:36:26 1 2006-02-16 02:30:53
  32317. 2438 2005-06-18 18:34:21 184 31 2005-06-19 16:50:21 1 2006-02-16 02:30:53
  32318. 2439 2005-06-18 18:35:04 909 39 2005-06-21 19:47:04 2 2006-02-16 02:30:53
  32319. 2440 2005-06-18 18:41:09 2866 380 2005-06-22 12:46:09 1 2006-02-16 02:30:53
  32320. 2441 2005-06-18 18:45:11 3148 593 2005-06-20 00:42:11 1 2006-02-16 02:30:53
  32321. 2442 2005-06-18 18:49:18 4045 364 2005-06-22 16:18:18 1 2006-02-16 02:30:53
  32322. 2443 2005-06-18 18:52:30 1622 233 2005-06-24 21:27:30 1 2006-02-16 02:30:53
  32323. 2444 2005-06-18 18:58:12 2233 576 2005-06-27 20:48:12 1 2006-02-16 02:30:53
  32324. 2445 2005-06-18 19:02:11 2887 98 2005-06-23 22:25:11 1 2006-02-16 02:30:53
  32325. 2446 2005-06-18 19:04:41 1283 466 2005-06-27 17:10:41 2 2006-02-16 02:30:53
  32326. 2447 2005-06-18 19:10:55 2353 523 2005-06-27 16:35:55 1 2006-02-16 02:30:53
  32327. 2448 2005-06-18 19:13:45 1642 308 2005-06-27 14:43:45 1 2006-02-16 02:30:53
  32328. 2449 2005-06-18 19:18:36 3630 498 2005-06-27 23:49:36 1 2006-02-16 02:30:53
  32329. 2450 2005-06-18 19:25:47 863 230 2005-06-27 15:54:47 1 2006-02-16 02:30:53
  32330. 2451 2005-06-18 19:28:02 835 24 2005-06-23 16:41:02 1 2006-02-16 02:30:53
  32331. 2452 2005-06-18 19:29:21 4318 77 2005-06-26 22:27:21 1 2006-02-16 02:30:53
  32332. 2453 2005-06-18 19:30:53 2562 588 2005-06-20 17:22:53 1 2006-02-16 02:30:53
  32333. 2454 2005-06-18 19:32:51 314 253 2005-06-24 20:03:51 2 2006-02-16 02:30:53
  32334. 2455 2005-06-18 19:33:06 870 241 2005-06-21 15:21:06 1 2006-02-16 02:30:53
  32335. 2456 2005-06-18 19:36:50 553 147 2005-06-23 22:48:50 1 2006-02-16 02:30:53
  32336. 2457 2005-06-18 19:38:20 1277 91 2005-06-26 20:48:20 1 2006-02-16 02:30:53
  32337. 2458 2005-06-18 19:39:05 599 572 2005-06-21 13:54:05 2 2006-02-16 02:30:53
  32338. 2459 2005-06-18 19:44:08 1024 185 2005-06-23 19:14:08 2 2006-02-16 02:30:53
  32339. 2460 2005-06-18 19:54:13 3933 553 2005-06-27 22:36:13 2 2006-02-16 02:30:53
  32340. 2461 2005-06-18 19:58:12 78 343 2005-06-28 01:35:12 2 2006-02-16 02:30:53
  32341. 2462 2005-06-18 20:00:15 2151 468 2005-06-21 21:54:15 2 2006-02-16 02:30:53
  32342. 2463 2005-06-18 20:01:43 1186 194 2005-06-25 15:04:43 2 2006-02-16 02:30:53
  32343. 2464 2005-06-18 20:06:05 463 380 2005-06-20 19:22:05 1 2006-02-16 02:30:53
  32344. 2465 2005-06-18 20:07:02 3783 160 2005-06-25 20:55:02 1 2006-02-16 02:30:53
  32345. 2466 2005-06-18 20:18:42 1356 427 2005-06-20 01:32:42 1 2006-02-16 02:30:53
  32346. 2467 2005-06-18 20:20:05 4387 177 2005-06-20 17:01:05 1 2006-02-16 02:30:53
  32347. 2468 2005-06-18 20:23:52 1833 382 2005-06-23 14:34:52 1 2006-02-16 02:30:53
  32348. 2469 2005-06-18 20:24:23 1993 137 2005-06-27 15:39:23 1 2006-02-16 02:30:53
  32349. 2470 2005-06-18 20:28:31 4319 40 2005-06-25 18:48:31 1 2006-02-16 02:30:53
  32350. 2471 2005-06-18 20:31:00 3399 183 2005-06-24 18:01:00 2 2006-02-16 02:30:53
  32351. 2472 2005-06-18 20:32:40 4556 70 2005-06-20 00:40:40 2 2006-02-16 02:30:53
  32352. 2473 2005-06-18 20:42:45 3876 221 2005-06-19 20:17:45 1 2006-02-16 02:30:53
  32353. 2474 2005-06-18 20:51:34 3450 151 2005-06-25 01:39:34 1 2006-02-16 02:30:53
  32354. 2475 2005-06-18 20:52:46 889 336 2005-06-21 19:40:46 2 2006-02-16 02:30:53
  32355. 2476 2005-06-18 20:57:12 3998 334 2005-06-20 15:42:12 1 2006-02-16 02:30:53
  32356. 2477 2005-06-18 20:58:46 2510 206 2005-06-22 21:49:46 1 2006-02-16 02:30:53
  32357. 2478 2005-06-18 21:01:21 2798 241 2005-06-24 00:20:21 1 2006-02-16 02:30:53
  32358. 2479 2005-06-18 21:03:08 1624 408 2005-06-22 16:49:08 1 2006-02-16 02:30:53
  32359. 2480 2005-06-18 21:04:09 4078 310 2005-06-22 16:24:09 1 2006-02-16 02:30:53
  32360. 2481 2005-06-18 21:08:30 800 322 2005-06-23 02:35:30 2 2006-02-16 02:30:53
  32361. 2482 2005-06-18 21:10:44 452 122 2005-06-19 20:39:44 1 2006-02-16 02:30:53
  32362. 2483 2005-06-18 21:22:23 4225 88 2005-06-25 01:14:23 1 2006-02-16 02:30:53
  32363. 2484 2005-06-18 21:25:23 1511 515 2005-06-24 16:03:23 2 2006-02-16 02:30:53
  32364. 2485 2005-06-18 21:26:03 1562 56 2005-06-21 22:09:03 2 2006-02-16 02:30:53
  32365. 2486 2005-06-18 21:26:56 268 15 2005-06-22 23:42:56 1 2006-02-16 02:30:53
  32366. 2487 2005-06-18 21:32:54 3683 374 2005-06-23 21:11:54 2 2006-02-16 02:30:53
  32367. 2488 2005-06-18 21:38:26 1338 403 2005-06-24 02:08:26 2 2006-02-16 02:30:53
  32368. 2489 2005-06-18 22:00:44 4012 382 2005-06-22 02:06:44 2 2006-02-16 02:30:53
  32369. 2490 2005-06-18 22:00:50 1934 402 2005-06-19 23:45:50 2 2006-02-16 02:30:53
  32370. 2491 2005-06-18 22:01:31 1779 316 2005-06-26 02:46:31 1 2006-02-16 02:30:53
  32371. 2492 2005-06-18 22:04:15 2858 237 2005-06-23 21:58:15 1 2006-02-16 02:30:53
  32372. 2493 2005-06-18 22:12:09 4121 269 2005-06-27 23:44:09 1 2006-02-16 02:30:53
  32373. 2494 2005-06-18 22:15:09 1313 434 2005-06-25 17:23:09 1 2006-02-16 02:30:53
  32374. 2495 2005-06-18 22:15:42 3826 338 2005-06-21 23:21:42 1 2006-02-16 02:30:53
  32375. 2496 2005-06-18 22:20:11 646 527 2005-06-20 03:08:11 2 2006-02-16 02:30:53
  32376. 2497 2005-06-18 22:50:40 2327 171 2005-06-26 22:39:40 1 2006-02-16 02:30:53
  32377. 2498 2005-06-18 22:56:26 2291 74 2005-06-22 20:02:26 1 2006-02-16 02:30:53
  32378. 2499 2005-06-18 23:01:36 3172 348 2005-06-20 21:50:36 2 2006-02-16 02:30:53
  32379. 2500 2005-06-18 23:07:12 4241 12 2005-06-26 17:27:12 1 2006-02-16 02:30:53
  32380. 2501 2005-06-18 23:10:11 1185 450 2005-06-24 18:40:11 2 2006-02-16 02:30:53
  32381. 2502 2005-06-18 23:12:13 2622 325 2005-06-20 04:19:13 2 2006-02-16 02:30:53
  32382. 2503 2005-06-18 23:17:19 2486 176 2005-06-23 03:57:19 2 2006-02-16 02:30:53
  32383. 2504 2005-06-18 23:19:53 1684 452 2005-06-21 04:43:53 2 2006-02-16 02:30:53
  32384. 2505 2005-06-18 23:28:27 1670 519 2005-06-26 01:36:27 1 2006-02-16 02:30:53
  32385. 2506 2005-06-18 23:29:53 2308 82 2005-06-25 18:11:53 2 2006-02-16 02:30:53
  32386. 2507 2005-06-18 23:39:22 3121 325 2005-06-21 19:23:22 1 2006-02-16 02:30:53
  32387. 2508 2005-06-18 23:43:58 4322 476 2005-06-20 19:26:58 2 2006-02-16 02:30:53
  32388. 2509 2005-06-18 23:44:08 4469 213 2005-06-20 01:36:08 2 2006-02-16 02:30:53
  32389. 2510 2005-06-18 23:44:21 3827 384 2005-06-24 00:31:21 1 2006-02-16 02:30:53
  32390. 2511 2005-06-18 23:45:30 1824 234 2005-06-24 01:21:30 2 2006-02-16 02:30:53
  32391. 2512 2005-06-18 23:48:47 4515 27 2005-06-21 04:58:47 2 2006-02-16 02:30:53
  32392. 2513 2005-06-18 23:53:15 3379 515 2005-06-24 21:16:15 2 2006-02-16 02:30:53
  32393. 2514 2005-06-18 23:56:44 2559 382 2005-06-23 21:10:44 1 2006-02-16 02:30:53
  32394. 2515 2005-06-18 23:57:31 3213 188 2005-06-22 05:31:31 2 2006-02-16 02:30:53
  32395. 2516 2005-06-19 00:03:28 2678 87 2005-06-21 00:30:28 2 2006-02-16 02:30:53
  32396. 2517 2005-06-19 00:11:26 53 74 2005-06-25 02:19:26 1 2006-02-16 02:30:53
  32397. 2518 2005-06-19 00:16:23 3503 86 2005-06-25 19:28:23 2 2006-02-16 02:30:53
  32398. 2519 2005-06-19 00:19:21 1172 128 2005-06-25 01:46:21 1 2006-02-16 02:30:53
  32399. 2520 2005-06-19 00:29:00 4181 446 2005-06-28 04:36:00 1 2006-02-16 02:30:53
  32400. 2521 2005-06-19 00:41:08 132 92 2005-06-22 00:40:08 1 2006-02-16 02:30:53
  32401. 2522 2005-06-19 00:43:42 550 579 2005-06-28 04:26:42 1 2006-02-16 02:30:53
  32402. 2523 2005-06-19 00:45:56 460 89 2005-06-21 00:54:56 2 2006-02-16 02:30:53
  32403. 2524 2005-06-19 00:48:11 441 465 2005-06-25 01:46:11 2 2006-02-16 02:30:53
  32404. 2525 2005-06-19 00:48:22 1307 365 2005-06-24 19:10:22 2 2006-02-16 02:30:53
  32405. 2526 2005-06-19 01:03:07 3309 500 2005-06-28 06:57:07 1 2006-02-16 02:30:53
  32406. 2527 2005-06-19 01:10:31 387 463 2005-06-20 05:37:31 2 2006-02-16 02:30:53
  32407. 2528 2005-06-19 01:14:12 1836 331 2005-06-26 05:08:12 2 2006-02-16 02:30:53
  32408. 2529 2005-06-19 01:18:27 2306 478 2005-06-24 00:26:27 1 2006-02-16 02:30:53
  32409. 2530 2005-06-19 01:20:00 4166 31 2005-06-23 04:10:00 1 2006-02-16 02:30:53
  32410. 2531 2005-06-19 01:20:49 768 368 2005-06-22 01:50:49 2 2006-02-16 02:30:53
  32411. 2532 2005-06-19 01:27:46 1870 26 2005-06-20 02:15:46 1 2006-02-16 02:30:53
  32412. 2533 2005-06-19 01:34:26 4564 187 2005-06-22 20:19:26 1 2006-02-16 02:30:53
  32413. 2534 2005-06-19 01:38:39 2540 517 2005-06-23 00:16:39 1 2006-02-16 02:30:53
  32414. 2535 2005-06-19 01:39:04 901 130 2005-06-28 01:33:04 2 2006-02-16 02:30:53
  32415. 2536 2005-06-19 01:41:34 4232 163 2005-06-27 03:11:34 1 2006-02-16 02:30:53
  32416. 2537 2005-06-19 01:52:21 3499 388 2005-06-26 02:09:21 1 2006-02-16 02:30:53
  32417. 2538 2005-06-19 01:56:59 1287 472 2005-06-25 00:54:59 2 2006-02-16 02:30:53
  32418. 2539 2005-06-19 01:58:39 4474 527 2005-06-19 22:17:39 2 2006-02-16 02:30:53
  32419. 2540 2005-06-19 02:04:48 4305 363 2005-06-20 22:42:48 2 2006-02-16 02:30:53
  32420. 2541 2005-06-19 02:08:10 129 360 2005-06-23 23:32:10 1 2006-02-16 02:30:53
  32421. 2542 2005-06-19 02:08:39 1446 67 2005-06-26 20:25:39 1 2006-02-16 02:30:53
  32422. 2543 2005-06-19 02:14:11 1729 58 2005-06-21 00:40:11 2 2006-02-16 02:30:53
  32423. 2544 2005-06-19 02:16:17 1465 558 2005-06-22 21:45:17 1 2006-02-16 02:30:53
  32424. 2545 2005-06-19 02:23:36 3237 413 2005-06-20 03:17:36 2 2006-02-16 02:30:53
  32425. 2546 2005-06-19 02:39:39 971 272 2005-06-23 03:56:39 2 2006-02-16 02:30:53
  32426. 2547 2005-06-19 02:44:17 4560 162 2005-06-24 08:01:17 2 2006-02-16 02:30:53
  32427. 2548 2005-06-19 02:45:35 4292 561 2005-06-22 06:52:35 2 2006-02-16 02:30:53
  32428. 2549 2005-06-19 02:46:39 3854 495 2005-06-26 22:30:39 2 2006-02-16 02:30:53
  32429. 2550 2005-06-19 02:49:55 1370 38 2005-06-24 01:37:55 1 2006-02-16 02:30:53
  32430. 2551 2005-06-19 02:51:04 2007 444 2005-06-28 05:02:04 1 2006-02-16 02:30:53
  32431. 2552 2005-06-19 03:01:29 664 389 2005-06-28 04:13:29 1 2006-02-16 02:30:53
  32432. 2553 2005-06-19 03:04:59 923 473 2005-06-26 02:36:59 2 2006-02-16 02:30:53
  32433. 2554 2005-06-19 03:05:38 3916 322 2005-06-25 23:03:38 1 2006-02-16 02:30:53
  32434. 2555 2005-06-19 03:07:02 260 191 2005-06-25 05:25:02 2 2006-02-16 02:30:53
  32435. 2556 2005-06-19 03:07:32 125 377 2005-06-23 23:09:32 1 2006-02-16 02:30:53
  32436. 2557 2005-06-19 03:08:51 4546 257 2005-06-20 07:59:51 1 2006-02-16 02:30:53
  32437. 2558 2005-06-19 03:09:16 2920 361 2005-06-24 05:29:16 1 2006-02-16 02:30:53
  32438. 2559 2005-06-19 03:09:46 4433 414 2005-06-28 07:49:46 1 2006-02-16 02:30:53
  32439. 2560 2005-06-19 03:12:42 3340 309 2005-06-28 02:28:42 1 2006-02-16 02:30:53
  32440. 2561 2005-06-19 03:14:52 4128 256 2005-06-21 02:42:52 2 2006-02-16 02:30:53
  32441. 2562 2005-06-19 03:15:05 51 265 2005-06-21 08:26:05 2 2006-02-16 02:30:53
  32442. 2563 2005-06-19 03:24:17 1935 41 2005-06-23 04:08:17 2 2006-02-16 02:30:53
  32443. 2564 2005-06-19 03:41:10 4008 408 2005-06-24 03:10:10 1 2006-02-16 02:30:53
  32444. 2565 2005-06-19 03:44:03 2347 128 2005-06-24 01:26:03 2 2006-02-16 02:30:53
  32445. 2566 2005-06-19 03:45:39 495 486 2005-06-25 08:43:39 2 2006-02-16 02:30:53
  32446. 2567 2005-06-19 04:04:46 216 496 2005-06-19 23:39:46 2 2006-02-16 02:30:53
  32447. 2568 2005-06-19 04:09:03 3032 190 2005-06-24 23:24:03 1 2006-02-16 02:30:53
  32448. 2569 2005-06-19 04:19:04 30 213 2005-06-26 04:31:04 1 2006-02-16 02:30:53
  32449. 2570 2005-06-19 04:20:13 1105 5 2005-06-25 07:00:13 1 2006-02-16 02:30:53
  32450. 2571 2005-06-19 04:20:14 1800 66 2005-06-21 07:28:14 2 2006-02-16 02:30:53
  32451. 2572 2005-06-19 04:21:26 2449 159 2005-06-23 09:22:26 2 2006-02-16 02:30:53
  32452. 2573 2005-06-19 04:23:18 3354 563 2005-06-23 06:04:18 1 2006-02-16 02:30:53
  32453. 2574 2005-06-19 04:23:52 3320 143 2005-06-20 05:24:52 1 2006-02-16 02:30:53
  32454. 2575 2005-06-19 04:32:52 354 336 2005-06-24 09:37:52 1 2006-02-16 02:30:53
  32455. 2576 2005-06-19 04:34:15 2928 559 2005-06-28 10:02:15 2 2006-02-16 02:30:53
  32456. 2577 2005-06-19 04:36:03 447 66 2005-06-28 00:38:03 2 2006-02-16 02:30:53
  32457. 2578 2005-06-19 04:40:06 1695 267 2005-06-26 09:37:06 2 2006-02-16 02:30:53
  32458. 2579 2005-06-19 04:40:44 3836 493 2005-06-22 09:22:44 1 2006-02-16 02:30:53
  32459. 2580 2005-06-19 04:44:30 2527 219 2005-06-23 04:15:30 1 2006-02-16 02:30:53
  32460. 2581 2005-06-19 04:54:13 376 456 2005-06-23 23:28:13 2 2006-02-16 02:30:53
  32461. 2582 2005-06-19 04:56:27 201 267 2005-06-26 08:56:27 2 2006-02-16 02:30:53
  32462. 2583 2005-06-19 05:01:40 3999 523 2005-06-28 00:04:40 1 2006-02-16 02:30:53
  32463. 2584 2005-06-19 05:02:36 3733 90 2005-06-28 04:52:36 2 2006-02-16 02:30:53
  32464. 2585 2005-06-19 05:05:03 91 406 2005-06-20 09:28:03 1 2006-02-16 02:30:53
  32465. 2586 2005-06-19 05:05:11 4104 537 2005-06-27 00:23:11 1 2006-02-16 02:30:53
  32466. 2587 2005-06-19 05:06:14 2188 331 2005-06-24 10:50:14 2 2006-02-16 02:30:53
  32467. 2588 2005-06-19 05:20:31 3626 143 2005-06-22 04:20:31 2 2006-02-16 02:30:53
  32468. 2589 2005-06-19 05:21:27 225 164 2005-06-21 09:55:27 2 2006-02-16 02:30:53
  32469. 2590 2005-06-19 05:31:40 3572 324 2005-06-20 07:58:40 2 2006-02-16 02:30:53
  32470. 2591 2005-06-19 05:32:22 4481 438 2005-06-25 23:42:22 1 2006-02-16 02:30:53
  32471. 2592 2005-06-19 05:36:54 282 208 2005-06-21 08:44:54 1 2006-02-16 02:30:53
  32472. 2593 2005-06-19 05:40:11 2031 556 2005-06-28 08:11:11 1 2006-02-16 02:30:53
  32473. 2594 2005-06-19 05:43:43 829 123 2005-06-25 03:41:43 2 2006-02-16 02:30:53
  32474. 2595 2005-06-19 05:43:55 3197 122 2005-06-25 10:20:55 1 2006-02-16 02:30:53
  32475. 2596 2005-06-19 05:48:26 2229 80 2005-06-24 10:16:26 1 2006-02-16 02:30:53
  32476. 2597 2005-06-19 05:53:46 2278 407 2005-06-20 05:14:46 1 2006-02-16 02:30:53
  32477. 2598 2005-06-19 05:59:57 2079 265 2005-06-24 11:44:57 2 2006-02-16 02:30:53
  32478. 2599 2005-06-19 06:06:07 461 171 2005-06-27 01:10:07 1 2006-02-16 02:30:53
  32479. 2600 2005-06-19 06:07:25 469 423 2005-06-28 03:37:25 2 2006-02-16 02:30:53
  32480. 2601 2005-06-19 06:09:44 2898 98 2005-06-20 08:03:44 1 2006-02-16 02:30:53
  32481. 2602 2005-06-19 06:10:08 4124 173 2005-06-24 00:39:08 2 2006-02-16 02:30:53
  32482. 2603 2005-06-19 06:21:25 587 222 2005-06-26 03:19:25 1 2006-02-16 02:30:53
  32483. 2604 2005-06-19 06:30:10 2889 28 2005-06-25 11:16:10 2 2006-02-16 02:30:53
  32484. 2605 2005-06-19 06:48:01 2342 38 2005-06-25 07:00:01 1 2006-02-16 02:30:53
  32485. 2606 2005-06-19 06:51:32 4133 364 2005-06-21 03:15:32 2 2006-02-16 02:30:53
  32486. 2607 2005-06-19 06:55:01 3922 340 2005-06-25 03:21:01 2 2006-02-16 02:30:53
  32487. 2608 2005-06-19 07:10:36 1618 132 2005-06-24 13:09:36 1 2006-02-16 02:30:53
  32488. 2609 2005-06-19 07:13:12 2254 383 2005-06-28 12:30:12 2 2006-02-16 02:30:53
  32489. 2610 2005-06-19 07:16:20 3845 542 2005-06-25 09:39:20 2 2006-02-16 02:30:53
  32490. 2611 2005-06-19 07:18:17 3682 301 2005-06-21 10:19:17 1 2006-02-16 02:30:53
  32491. 2612 2005-06-19 07:19:41 1691 287 2005-06-25 11:10:41 1 2006-02-16 02:30:53
  32492. 2613 2005-06-19 07:25:50 3830 179 2005-06-21 03:04:50 1 2006-02-16 02:30:53
  32493. 2614 2005-06-19 07:28:11 4147 145 2005-06-22 12:33:11 1 2006-02-16 02:30:53
  32494. 2615 2005-06-19 07:29:13 3810 578 2005-06-27 12:50:13 1 2006-02-16 02:30:53
  32495. 2616 2005-06-19 07:33:00 581 478 2005-06-28 03:05:00 1 2006-02-16 02:30:53
  32496. 2617 2005-06-19 07:48:31 204 313 2005-06-27 11:56:31 1 2006-02-16 02:30:53
  32497. 2618 2005-06-19 08:03:01 2465 310 2005-06-24 03:23:01 2 2006-02-16 02:30:53
  32498. 2619 2005-06-19 08:03:12 1848 350 2005-06-21 05:02:12 2 2006-02-16 02:30:53
  32499. 2620 2005-06-19 08:06:29 3183 94 2005-06-24 11:42:29 1 2006-02-16 02:30:53
  32500. 2621 2005-06-19 08:07:31 1746 439 2005-06-28 05:36:31 1 2006-02-16 02:30:53
  32501. 2622 2005-06-19 08:10:41 1393 573 2005-06-28 10:44:41 2 2006-02-16 02:30:53
  32502. 2623 2005-06-19 08:11:51 4477 12 2005-06-26 12:28:51 2 2006-02-16 02:30:53
  32503. 2624 2005-06-19 08:22:09 3071 32 2005-06-27 11:13:09 1 2006-02-16 02:30:53
  32504. 2625 2005-06-19 08:23:11 3946 25 2005-06-26 09:52:11 2 2006-02-16 02:30:53
  32505. 2626 2005-06-19 08:28:44 2816 450 2005-06-24 03:58:44 1 2006-02-16 02:30:53
  32506. 2627 2005-06-19 08:32:00 2779 592 2005-06-24 04:31:00 2 2006-02-16 02:30:53
  32507. 2628 2005-06-19 08:34:53 3917 3 2005-06-28 04:19:53 2 2006-02-16 02:30:53
  32508. 2629 2005-06-19 08:42:12 1810 458 2005-06-28 03:38:12 2 2006-02-16 02:30:53
  32509. 2630 2005-06-19 08:47:21 3904 236 2005-06-25 09:31:21 1 2006-02-16 02:30:53
  32510. 2631 2005-06-19 08:49:53 3471 39 2005-06-26 03:25:53 1 2006-02-16 02:30:53
  32511. 2632 2005-06-19 08:51:47 2274 574 2005-06-23 07:13:47 2 2006-02-16 02:30:53
  32512. 2633 2005-06-19 08:53:10 3462 68 2005-06-20 07:56:10 1 2006-02-16 02:30:53
  32513. 2634 2005-06-19 08:55:17 3687 318 2005-06-20 11:44:17 2 2006-02-16 02:30:53
  32514. 2635 2005-06-19 09:08:45 3332 105 2005-06-26 09:20:45 1 2006-02-16 02:30:53
  32515. 2636 2005-06-19 09:13:06 2102 253 2005-06-25 07:47:06 2 2006-02-16 02:30:53
  32516. 2637 2005-06-19 09:20:56 2736 327 2005-06-27 10:09:56 2 2006-02-16 02:30:53
  32517. 2638 2005-06-19 09:23:30 2944 295 2005-06-26 14:56:30 1 2006-02-16 02:30:53
  32518. 2639 2005-06-19 09:24:02 3971 116 2005-06-21 14:16:02 2 2006-02-16 02:30:53
  32519. 2640 2005-06-19 09:26:13 721 540 2005-06-20 14:38:13 1 2006-02-16 02:30:53
  32520. 2641 2005-06-19 09:38:33 231 374 2005-06-22 09:55:33 1 2006-02-16 02:30:53
  32521. 2642 2005-06-19 09:39:01 2065 4 2005-06-25 08:33:01 1 2006-02-16 02:30:53
  32522. 2643 2005-06-19 09:39:27 1928 318 2005-06-26 10:27:27 2 2006-02-16 02:30:53
  32523. 2644 2005-06-19 09:42:30 1923 309 2005-06-27 07:23:30 2 2006-02-16 02:30:53
  32524. 2645 2005-06-19 09:50:35 2284 181 2005-06-28 06:47:35 2 2006-02-16 02:30:53
  32525. 2646 2005-06-19 09:56:01 3511 275 2005-06-21 04:15:01 2 2006-02-16 02:30:53
  32526. 2647 2005-06-19 09:57:56 1954 54 2005-06-22 15:55:56 1 2006-02-16 02:30:53
  32527. 2648 2005-06-19 10:06:20 1620 31 2005-06-21 04:30:20 2 2006-02-16 02:30:53
  32528. 2649 2005-06-19 10:20:09 98 153 2005-06-21 10:05:09 1 2006-02-16 02:30:53
  32529. 2650 2005-06-19 10:21:45 4211 209 2005-06-21 08:01:45 1 2006-02-16 02:30:53
  32530. 2651 2005-06-19 10:22:56 2181 576 2005-06-27 13:37:56 1 2006-02-16 02:30:53
  32531. 2652 2005-06-19 10:35:26 3108 589 2005-06-28 08:03:26 1 2006-02-16 02:30:53
  32532. 2653 2005-06-19 10:36:53 3528 340 2005-06-26 15:15:53 1 2006-02-16 02:30:53
  32533. 2654 2005-06-19 10:37:54 3697 405 2005-06-27 11:44:54 2 2006-02-16 02:30:53
  32534. 2655 2005-06-19 10:38:42 1649 29 2005-06-23 14:20:42 1 2006-02-16 02:30:53
  32535. 2656 2005-06-19 10:42:33 559 280 2005-06-24 08:31:33 2 2006-02-16 02:30:53
  32536. 2657 2005-06-19 10:42:59 3595 19 2005-06-28 12:37:59 1 2006-02-16 02:30:53
  32537. 2658 2005-06-19 10:43:42 3281 156 2005-06-24 16:23:42 1 2006-02-16 02:30:53
  32538. 2659 2005-06-19 10:47:42 66 139 2005-06-23 14:03:42 1 2006-02-16 02:30:53
  32539. 2660 2005-06-19 10:50:02 4341 221 2005-06-28 12:49:02 1 2006-02-16 02:30:53
  32540. 2661 2005-06-19 10:50:52 3652 452 2005-06-25 08:44:52 2 2006-02-16 02:30:53
  32541. 2662 2005-06-19 10:53:42 3936 68 2005-06-20 11:41:42 1 2006-02-16 02:30:53
  32542. 2663 2005-06-19 10:54:00 1012 583 2005-06-20 16:48:00 1 2006-02-16 02:30:53
  32543. 2664 2005-06-19 11:11:23 3496 299 2005-06-28 08:30:23 2 2006-02-16 02:30:53
  32544. 2665 2005-06-19 11:12:35 4531 133 2005-06-26 11:55:35 2 2006-02-16 02:30:53
  32545. 2666 2005-06-19 11:17:12 1872 454 2005-06-28 12:47:12 1 2006-02-16 02:30:53
  32546. 2667 2005-06-19 11:28:46 1028 200 2005-06-27 11:48:46 2 2006-02-16 02:30:53
  32547. 2668 2005-06-19 11:28:47 3127 568 2005-06-24 10:12:47 2 2006-02-16 02:30:53
  32548. 2669 2005-06-19 11:28:52 2734 523 2005-06-20 16:43:52 1 2006-02-16 02:30:53
  32549. 2670 2005-06-19 11:30:16 3518 457 2005-06-21 17:25:16 2 2006-02-16 02:30:53
  32550. 2671 2005-06-19 11:33:11 2164 451 2005-06-26 14:30:11 2 2006-02-16 02:30:53
  32551. 2672 2005-06-19 11:42:04 1164 420 2005-06-25 09:14:04 2 2006-02-16 02:30:53
  32552. 2673 2005-06-19 11:42:20 2487 29 2005-06-23 07:16:20 1 2006-02-16 02:30:53
  32553. 2674 2005-06-19 11:47:59 3744 585 2005-06-20 08:09:59 1 2006-02-16 02:30:53
  32554. 2675 2005-06-19 11:52:15 3078 230 2005-06-23 16:45:15 1 2006-02-16 02:30:53
  32555. 2676 2005-06-19 11:54:57 3938 477 2005-06-24 15:34:57 2 2006-02-16 02:30:53
  32556. 2677 2005-06-19 12:01:59 4384 428 2005-06-21 06:15:59 2 2006-02-16 02:30:53
  32557. 2678 2005-06-19 12:12:23 4230 258 2005-06-21 16:28:23 2 2006-02-16 02:30:53
  32558. 2679 2005-06-19 12:12:30 1994 109 2005-06-27 08:27:30 1 2006-02-16 02:30:53
  32559. 2680 2005-06-19 12:13:37 865 114 2005-06-27 15:15:37 1 2006-02-16 02:30:53
  32560. 2681 2005-06-19 12:15:27 2704 196 2005-06-21 16:48:27 2 2006-02-16 02:30:53
  32561. 2682 2005-06-19 12:18:17 3609 538 2005-06-28 14:09:17 1 2006-02-16 02:30:53
  32562. 2683 2005-06-19 12:27:19 2860 241 2005-06-21 16:26:19 2 2006-02-16 02:30:53
  32563. 2684 2005-06-19 12:29:08 1225 17 2005-06-28 08:50:08 2 2006-02-16 02:30:53
  32564. 2685 2005-06-19 12:35:21 1170 283 2005-06-22 16:58:21 1 2006-02-16 02:30:53
  32565. 2686 2005-06-19 12:44:20 2686 68 2005-06-20 16:00:20 1 2006-02-16 02:30:53
  32566. 2687 2005-06-19 12:46:52 3152 254 2005-06-23 06:58:52 2 2006-02-16 02:30:53
  32567. 2688 2005-06-19 12:50:56 4281 309 2005-06-28 17:58:56 2 2006-02-16 02:30:53
  32568. 2689 2005-06-19 12:58:53 2478 567 2005-06-24 17:35:53 1 2006-02-16 02:30:53
  32569. 2690 2005-06-19 13:00:02 1381 391 2005-06-27 14:29:02 1 2006-02-16 02:30:53
  32570. 2691 2005-06-19 13:06:50 3469 242 2005-06-26 15:56:50 1 2006-02-16 02:30:53
  32571. 2692 2005-06-19 13:08:19 3162 388 2005-06-21 16:45:19 1 2006-02-16 02:30:53
  32572. 2693 2005-06-19 13:11:47 2570 107 2005-06-27 11:17:47 1 2006-02-16 02:30:53
  32573. 2694 2005-06-19 13:17:21 380 368 2005-06-24 15:09:21 1 2006-02-16 02:30:53
  32574. 2695 2005-06-19 13:25:53 190 208 2005-06-24 17:12:53 2 2006-02-16 02:30:53
  32575. 2696 2005-06-19 13:28:42 2110 597 2005-06-28 14:06:42 2 2006-02-16 02:30:53
  32576. 2697 2005-06-19 13:29:08 2271 448 2005-06-23 13:21:08 1 2006-02-16 02:30:53
  32577. 2698 2005-06-19 13:29:11 3900 420 2005-06-20 07:31:11 2 2006-02-16 02:30:53
  32578. 2699 2005-06-19 13:29:28 72 267 2005-06-24 11:15:28 2 2006-02-16 02:30:53
  32579. 2700 2005-06-19 13:31:52 928 180 2005-06-27 19:30:52 1 2006-02-16 02:30:53
  32580. 2701 2005-06-19 13:33:06 1623 29 2005-06-28 15:11:06 2 2006-02-16 02:30:53
  32581. 2702 2005-06-19 13:35:56 1736 329 2005-06-20 14:07:56 2 2006-02-16 02:30:53
  32582. 2703 2005-06-19 13:36:06 4080 319 2005-06-28 08:26:06 2 2006-02-16 02:30:53
  32583. 2704 2005-06-19 13:50:10 2026 246 2005-06-26 18:25:10 2 2006-02-16 02:30:53
  32584. 2705 2005-06-19 13:54:30 1191 562 2005-06-20 12:31:30 1 2006-02-16 02:30:53
  32585. 2706 2005-06-19 13:56:51 373 559 2005-06-21 17:23:51 2 2006-02-16 02:30:53
  32586. 2707 2005-06-19 13:57:08 4486 589 2005-06-27 11:09:08 2 2006-02-16 02:30:53
  32587. 2708 2005-06-19 13:59:05 2659 541 2005-06-24 10:02:05 2 2006-02-16 02:30:53
  32588. 2709 2005-06-19 14:00:26 2877 7 2005-06-23 14:56:26 2 2006-02-16 02:30:53
  32589. 2710 2005-06-19 14:03:56 2965 446 2005-06-21 16:15:56 1 2006-02-16 02:30:53
  32590. 2711 2005-06-19 14:12:22 3944 313 2005-06-21 09:29:22 1 2006-02-16 02:30:53
  32591. 2712 2005-06-19 14:20:13 3132 411 2005-06-22 19:08:13 1 2006-02-16 02:30:53
  32592. 2713 2005-06-19 14:23:09 3979 378 2005-06-20 17:55:09 1 2006-02-16 02:30:53
  32593. 2714 2005-06-19 14:26:09 2853 81 2005-06-23 17:24:09 2 2006-02-16 02:30:53
  32594. 2715 2005-06-19 14:29:35 2082 404 2005-06-26 08:44:35 2 2006-02-16 02:30:53
  32595. 2716 2005-06-19 14:40:17 944 252 2005-06-27 17:45:17 2 2006-02-16 02:30:53
  32596. 2717 2005-06-19 14:46:10 140 200 2005-06-22 20:17:10 1 2006-02-16 02:30:53
  32597. 2718 2005-06-19 14:49:42 4443 139 2005-06-26 19:37:42 1 2006-02-16 02:30:53
  32598. 2719 2005-06-19 14:50:19 1200 336 2005-06-20 14:33:19 2 2006-02-16 02:30:53
  32599. 2720 2005-06-19 14:51:55 3597 504 2005-06-27 13:06:55 1 2006-02-16 02:30:53
  32600. 2721 2005-06-19 14:53:24 3786 358 2005-06-21 18:22:24 2 2006-02-16 02:30:53
  32601. 2722 2005-06-19 14:55:17 952 45 2005-06-25 13:11:17 2 2006-02-16 02:30:53
  32602. 2723 2005-06-19 14:55:23 4317 277 2005-06-20 14:28:23 1 2006-02-16 02:30:53
  32603. 2724 2005-06-19 14:57:54 3879 103 2005-06-22 16:31:54 2 2006-02-16 02:30:53
  32604. 2725 2005-06-19 15:01:23 63 246 2005-06-22 09:08:23 1 2006-02-16 02:30:53
  32605. 2726 2005-06-19 15:02:20 2970 420 2005-06-21 15:38:20 1 2006-02-16 02:30:53
  32606. 2727 2005-06-19 15:02:39 3261 129 2005-06-28 17:49:39 1 2006-02-16 02:30:53
  32607. 2728 2005-06-19 15:04:04 775 408 2005-06-22 12:22:04 2 2006-02-16 02:30:53
  32608. 2729 2005-06-19 15:06:15 4449 510 2005-06-27 17:58:15 2 2006-02-16 02:30:53
  32609. 2730 2005-06-19 15:10:09 1264 30 2005-06-28 13:05:09 1 2006-02-16 02:30:53
  32610. 2731 2005-06-19 15:14:55 4218 138 2005-06-27 14:30:55 2 2006-02-16 02:30:53
  32611. 2732 2005-06-19 15:19:39 610 386 2005-06-25 19:39:39 2 2006-02-16 02:30:53
  32612. 2733 2005-06-19 15:21:53 1535 188 2005-06-23 11:58:53 2 2006-02-16 02:30:53
  32613. 2734 2005-06-19 15:36:27 794 204 2005-06-20 13:44:27 2 2006-02-16 02:30:53
  32614. 2735 2005-06-19 15:42:07 4550 29 2005-06-22 17:28:07 1 2006-02-16 02:30:53
  32615. 2736 2005-06-19 15:43:20 4510 359 2005-06-21 13:03:20 1 2006-02-16 02:30:53
  32616. 2737 2005-06-19 15:48:33 3131 513 2005-06-26 18:44:33 2 2006-02-16 02:30:53
  32617. 2738 2005-06-19 15:56:30 350 75 2005-06-20 16:14:30 2 2006-02-16 02:30:53
  32618. 2739 2005-06-19 15:58:38 213 212 2005-06-27 15:01:38 2 2006-02-16 02:30:53
  32619. 2740 2005-06-19 15:59:04 1534 92 2005-06-28 12:18:04 2 2006-02-16 02:30:53
  32620. 2741 2005-06-19 16:05:41 1662 36 2005-06-20 20:48:41 1 2006-02-16 02:30:53
  32621. 2742 2005-06-19 16:05:47 4154 187 2005-06-26 21:34:47 1 2006-02-16 02:30:53
  32622. 2743 2005-06-19 16:15:56 2611 35 2005-06-23 12:30:56 1 2006-02-16 02:30:53
  32623. 2744 2005-06-19 16:20:40 4511 368 2005-06-22 11:44:40 2 2006-02-16 02:30:53
  32624. 2745 2005-06-19 16:21:19 1253 26 2005-06-21 22:07:19 2 2006-02-16 02:30:53
  32625. 2746 2005-06-19 16:21:40 933 562 2005-06-28 11:56:40 2 2006-02-16 02:30:53
  32626. 2747 2005-06-19 16:22:07 1374 422 2005-06-24 19:28:07 1 2006-02-16 02:30:53
  32627. 2748 2005-06-19 16:22:26 511 473 2005-06-21 21:55:26 1 2006-02-16 02:30:53
  32628. 2749 2005-06-19 16:27:35 1540 358 2005-06-25 21:06:35 2 2006-02-16 02:30:53
  32629. 2750 2005-06-19 16:37:24 3775 197 2005-06-20 13:55:24 2 2006-02-16 02:30:53
  32630. 2751 2005-06-19 16:39:23 1291 148 2005-06-25 13:57:23 1 2006-02-16 02:30:53
  32631. 2752 2005-06-19 16:44:18 386 149 2005-06-22 12:40:18 2 2006-02-16 02:30:53
  32632. 2753 2005-06-19 16:44:35 2408 23 2005-06-24 13:45:35 1 2006-02-16 02:30:53
  32633. 2754 2005-06-19 16:55:59 1761 267 2005-06-26 18:11:59 1 2006-02-16 02:30:53
  32634. 2755 2005-06-19 16:56:31 946 506 2005-06-27 12:02:31 2 2006-02-16 02:30:53
  32635. 2756 2005-06-19 16:57:42 3264 144 2005-06-26 15:30:42 2 2006-02-16 02:30:53
  32636. 2757 2005-06-19 17:01:14 3814 243 2005-06-28 11:38:14 1 2006-02-16 02:30:53
  32637. 2758 2005-06-19 17:04:35 3558 423 2005-06-26 14:45:35 2 2006-02-16 02:30:53
  32638. 2759 2005-06-19 17:10:24 687 351 2005-06-24 21:56:24 2 2006-02-16 02:30:53
  32639. 2760 2005-06-19 17:16:33 2602 192 2005-06-26 14:58:33 1 2006-02-16 02:30:53
  32640. 2761 2005-06-19 17:22:17 2134 431 2005-06-20 20:20:17 2 2006-02-16 02:30:53
  32641. 2762 2005-06-19 17:22:31 3431 457 2005-06-25 22:43:31 2 2006-02-16 02:30:53
  32642. 2763 2005-06-19 17:23:34 3096 276 2005-06-21 21:37:34 2 2006-02-16 02:30:53
  32643. 2764 2005-06-19 17:27:25 1718 479 2005-06-28 17:18:25 2 2006-02-16 02:30:53
  32644. 2765 2005-06-19 17:34:39 1017 478 2005-06-27 23:26:39 1 2006-02-16 02:30:53
  32645. 2766 2005-06-19 17:45:15 3421 345 2005-06-23 20:11:15 2 2006-02-16 02:30:53
  32646. 2767 2005-06-19 17:46:35 4052 596 2005-06-24 22:42:35 1 2006-02-16 02:30:53
  32647. 2768 2005-06-19 17:46:52 3018 129 2005-06-25 21:49:52 1 2006-02-16 02:30:53
  32648. 2769 2005-06-19 17:52:14 1222 354 2005-06-26 20:30:14 2 2006-02-16 02:30:53
  32649. 2770 2005-06-19 17:54:22 3042 533 2005-06-26 23:09:22 2 2006-02-16 02:30:53
  32650. 2771 2005-06-19 17:54:48 40 262 2005-06-27 17:14:48 1 2006-02-16 02:30:53
  32651. 2772 2005-06-19 17:59:27 1221 520 2005-06-23 17:52:27 1 2006-02-16 02:30:53
  32652. 2773 2005-06-19 18:04:18 4155 505 2005-06-28 23:52:18 1 2006-02-16 02:30:53
  32653. 2774 2005-06-19 18:05:11 2809 299 2005-06-21 16:21:11 2 2006-02-16 02:30:53
  32654. 2775 2005-06-19 18:14:20 672 590 2005-06-26 19:52:20 1 2006-02-16 02:30:53
  32655. 2776 2005-06-19 18:16:24 1726 551 2005-06-26 14:43:24 2 2006-02-16 02:30:53
  32656. 2777 2005-06-19 18:16:26 4092 230 2005-06-20 13:43:26 2 2006-02-16 02:30:53
  32657. 2778 2005-06-19 18:18:12 3357 422 2005-06-28 21:43:12 1 2006-02-16 02:30:53
  32658. 2779 2005-06-19 18:19:07 1020 376 2005-06-23 18:25:07 2 2006-02-16 02:30:53
  32659. 2780 2005-06-19 18:19:33 1513 360 2005-06-28 22:29:33 1 2006-02-16 02:30:53
  32660. 2781 2005-06-19 18:24:42 1230 197 2005-06-27 17:02:42 2 2006-02-16 02:30:53
  32661. 2782 2005-06-19 18:25:07 3644 156 2005-06-22 14:10:07 1 2006-02-16 02:30:53
  32662. 2783 2005-06-19 18:29:10 2778 113 2005-06-21 22:09:10 1 2006-02-16 02:30:53
  32663. 2784 2005-06-19 18:40:29 2305 289 2005-06-28 15:27:29 1 2006-02-16 02:30:53
  32664. 2785 2005-06-19 18:43:57 826 137 2005-06-24 15:36:57 2 2006-02-16 02:30:53
  32665. 2786 2005-06-19 18:46:43 2255 594 2005-06-22 16:52:43 1 2006-02-16 02:30:53
  32666. 2787 2005-06-19 18:47:00 3371 307 2005-06-22 20:22:00 2 2006-02-16 02:30:53
  32667. 2788 2005-06-19 18:48:11 1457 171 2005-06-21 13:32:11 1 2006-02-16 02:30:53
  32668. 2789 2005-06-19 18:48:21 2398 514 2005-06-21 21:50:21 1 2006-02-16 02:30:53
  32669. 2790 2005-06-19 18:49:45 202 97 2005-06-21 00:13:45 1 2006-02-16 02:30:53
  32670. 2791 2005-06-19 18:51:27 2174 299 2005-06-22 19:35:27 2 2006-02-16 02:30:53
  32671. 2792 2005-06-19 18:52:25 3057 437 2005-06-23 17:39:25 1 2006-02-16 02:30:53
  32672. 2793 2005-06-19 18:52:37 732 419 2005-06-25 19:45:37 2 2006-02-16 02:30:53
  32673. 2794 2005-06-19 18:53:05 1957 85 2005-06-22 13:15:05 1 2006-02-16 02:30:53
  32674. 2795 2005-06-19 18:58:53 3694 129 2005-06-28 18:56:53 1 2006-02-16 02:30:53
  32675. 2796 2005-06-19 19:00:37 2337 209 2005-06-25 17:18:37 2 2006-02-16 02:30:53
  32676. 2797 2005-06-19 19:04:32 3222 486 2005-06-20 22:43:32 1 2006-02-16 02:30:53
  32677. 2798 2005-06-19 19:07:48 1343 180 2005-06-23 00:09:48 2 2006-02-16 02:30:53
  32678. 2799 2005-06-19 19:15:21 4579 576 2005-06-21 21:35:21 1 2006-02-16 02:30:53
  32679. 2800 2005-06-19 19:15:56 183 146 2005-06-23 00:15:56 1 2006-02-16 02:30:53
  32680. 2801 2005-06-19 19:18:09 4572 29 2005-06-20 20:11:09 2 2006-02-16 02:30:53
  32681. 2802 2005-06-19 19:18:17 4067 489 2005-06-21 17:58:17 2 2006-02-16 02:30:53
  32682. 2803 2005-06-19 19:18:27 103 120 2005-06-27 21:48:27 1 2006-02-16 02:30:53
  32683. 2804 2005-06-19 19:24:54 88 426 2005-06-25 01:19:54 2 2006-02-16 02:30:53
  32684. 2805 2005-06-19 19:29:17 2153 80 2005-06-27 23:14:17 2 2006-02-16 02:30:53
  32685. 2806 2005-06-19 19:30:48 2114 510 2005-06-20 19:42:48 2 2006-02-16 02:30:53
  32686. 2807 2005-06-19 19:32:53 2825 194 2005-06-25 00:30:53 2 2006-02-16 02:30:53
  32687. 2808 2005-06-19 19:34:45 65 325 2005-06-27 14:49:45 1 2006-02-16 02:30:53
  32688. 2809 2005-06-19 19:40:27 1786 44 2005-06-27 15:28:27 2 2006-02-16 02:30:53
  32689. 2810 2005-06-19 19:44:12 2558 67 2005-06-20 19:41:12 2 2006-02-16 02:30:53
  32690. 2811 2005-06-19 19:53:30 3890 457 2005-06-22 23:21:30 2 2006-02-16 02:30:53
  32691. 2812 2005-06-19 19:58:16 3016 211 2005-06-26 15:26:16 1 2006-02-16 02:30:53
  32692. 2813 2005-06-19 20:01:47 3420 284 2005-06-27 01:51:47 1 2006-02-16 02:30:53
  32693. 2814 2005-06-19 20:01:59 1783 10 2005-06-26 01:28:59 2 2006-02-16 02:30:53
  32694. 2815 2005-06-19 20:03:29 3046 27 2005-06-25 22:50:29 2 2006-02-16 02:30:53
  32695. 2816 2005-06-19 20:04:23 2180 94 2005-06-20 21:09:23 2 2006-02-16 02:30:53
  32696. 2817 2005-06-19 20:05:22 3476 510 2005-06-24 23:29:22 1 2006-02-16 02:30:53
  32697. 2818 2005-06-19 20:05:52 2376 497 2005-06-22 01:01:52 2 2006-02-16 02:30:53
  32698. 2819 2005-06-19 20:13:33 4100 82 2005-06-26 16:44:33 1 2006-02-16 02:30:53
  32699. 2820 2005-06-19 20:20:33 851 316 2005-06-26 20:32:33 1 2006-02-16 02:30:53
  32700. 2821 2005-06-19 20:26:52 2551 532 2005-06-27 23:48:52 1 2006-02-16 02:30:53
  32701. 2822 2005-06-19 20:29:24 3599 48 2005-06-23 02:21:24 1 2006-02-16 02:30:53
  32702. 2823 2005-06-19 20:30:21 3566 260 2005-06-26 17:58:21 1 2006-02-16 02:30:53
  32703. 2824 2005-06-19 20:31:45 2878 506 2005-06-29 00:40:45 2 2006-02-16 02:30:53
  32704. 2825 2005-06-19 20:32:19 2601 418 2005-06-22 22:32:19 1 2006-02-16 02:30:53
  32705. 2826 2005-06-19 20:41:35 2980 125 2005-06-25 17:23:35 1 2006-02-16 02:30:53
  32706. 2827 2005-06-19 20:50:01 2745 23 2005-06-20 18:54:01 2 2006-02-16 02:30:53
  32707. 2828 2005-06-19 20:51:33 3230 526 2005-06-25 17:38:33 1 2006-02-16 02:30:53
  32708. 2829 2005-06-19 21:11:30 2047 341 2005-06-24 18:10:30 1 2006-02-16 02:30:53
  32709. 2830 2005-06-19 21:14:33 2080 21 2005-06-21 17:46:33 1 2006-02-16 02:30:53
  32710. 2831 2005-06-19 21:17:06 4089 468 2005-06-22 16:56:06 2 2006-02-16 02:30:53
  32711. 2832 2005-06-19 21:21:53 828 593 2005-06-28 23:00:53 1 2006-02-16 02:30:53
  32712. 2833 2005-06-19 21:34:54 1976 232 2005-06-28 16:21:54 1 2006-02-16 02:30:53
  32713. 2834 2005-06-19 21:41:46 2876 122 2005-06-24 20:47:46 1 2006-02-16 02:30:53
  32714. 2835 2005-06-19 21:44:11 4411 89 2005-06-26 16:46:11 2 2006-02-16 02:30:53
  32715. 2836 2005-06-19 21:58:21 1453 306 2005-06-27 00:41:21 2 2006-02-16 02:30:53
  32716. 2837 2005-06-19 22:03:50 417 371 2005-06-20 21:24:50 1 2006-02-16 02:30:53
  32717. 2838 2005-06-19 22:06:06 143 292 2005-06-25 22:30:06 1 2006-02-16 02:30:53
  32718. 2839 2005-06-19 22:07:24 3856 256 2005-06-23 16:37:24 2 2006-02-16 02:30:53
  32719. 2840 2005-06-19 22:17:44 1102 236 2005-06-26 00:36:44 2 2006-02-16 02:30:53
  32720. 2841 2005-06-19 22:21:06 614 193 2005-06-28 00:56:06 1 2006-02-16 02:30:53
  32721. 2842 2005-06-19 22:34:20 4183 217 2005-06-22 03:46:20 2 2006-02-16 02:30:53
  32722. 2843 2005-06-19 22:36:39 1520 148 2005-06-26 22:33:39 2 2006-02-16 02:30:53
  32723. 2844 2005-06-19 22:40:12 4452 178 2005-06-24 03:58:12 2 2006-02-16 02:30:53
  32724. 2845 2005-06-19 22:46:37 3948 583 2005-06-23 03:31:37 1 2006-02-16 02:30:53
  32725. 2846 2005-06-19 22:52:14 651 193 2005-06-22 17:12:14 1 2006-02-16 02:30:53
  32726. 2847 2005-06-19 22:54:01 1247 148 2005-06-27 23:05:01 2 2006-02-16 02:30:53
  32727. 2848 2005-06-19 22:55:37 3449 19 2005-06-25 23:10:37 1 2006-02-16 02:30:53
  32728. 2849 2005-06-19 23:06:00 3628 283 2005-06-25 18:36:00 1 2006-02-16 02:30:53
  32729. 2850 2005-06-19 23:06:28 206 262 2005-06-28 03:30:28 2 2006-02-16 02:30:53
  32730. 2851 2005-06-19 23:07:03 2168 361 2005-06-22 17:26:03 1 2006-02-16 02:30:53
  32731. 2852 2005-06-19 23:08:50 2695 453 2005-06-26 04:00:50 1 2006-02-16 02:30:53
  32732. 2853 2005-06-19 23:09:41 2578 453 2005-06-28 00:51:41 2 2006-02-16 02:30:53
  32733. 2854 2005-06-19 23:11:48 4453 81 2005-06-23 19:37:48 2 2006-02-16 02:30:53
  32734. 2855 2005-06-19 23:11:49 3495 483 2005-06-26 21:52:49 1 2006-02-16 02:30:53
  32735. 2856 2005-06-19 23:13:04 1859 210 2005-06-23 22:47:04 1 2006-02-16 02:30:53
  32736. 2857 2005-06-19 23:15:15 2886 364 2005-06-25 04:24:15 2 2006-02-16 02:30:53
  32737. 2858 2005-06-19 23:17:11 2628 268 2005-06-21 19:07:11 1 2006-02-16 02:30:53
  32738. 2859 2005-06-19 23:18:42 126 147 2005-06-20 22:38:42 1 2006-02-16 02:30:53
  32739. 2860 2005-06-19 23:20:40 3045 107 2005-06-21 04:59:40 1 2006-02-16 02:30:53
  32740. 2861 2005-06-19 23:21:34 1489 116 2005-06-26 17:32:34 1 2006-02-16 02:30:53
  32741. 2862 2005-06-19 23:47:24 4260 52 2005-06-23 03:39:24 2 2006-02-16 02:30:53
  32742. 2863 2005-06-19 23:58:38 2410 228 2005-06-23 23:27:38 2 2006-02-16 02:30:53
  32743. 2864 2005-06-20 00:00:52 1056 493 2005-06-26 04:21:52 2 2006-02-16 02:30:53
  32744. 2865 2005-06-20 00:00:55 1569 10 2005-06-21 02:20:55 1 2006-02-16 02:30:53
  32745. 2866 2005-06-20 00:01:36 2718 44 2005-06-20 21:39:36 1 2006-02-16 02:30:53
  32746. 2867 2005-06-20 00:08:38 95 483 2005-06-23 19:35:38 1 2006-02-16 02:30:53
  32747. 2868 2005-06-20 00:08:58 1213 214 2005-06-25 21:23:58 2 2006-02-16 02:30:53
  32748. 2869 2005-06-20 00:09:25 1331 155 2005-06-24 04:40:25 2 2006-02-16 02:30:53
  32749. 2870 2005-06-20 00:17:46 214 467 2005-06-28 20:21:46 1 2006-02-16 02:30:53
  32750. 2871 2005-06-20 00:27:49 1731 443 2005-06-29 01:36:49 1 2006-02-16 02:30:53
  32751. 2872 2005-06-20 00:38:21 3779 240 2005-06-26 19:56:21 1 2006-02-16 02:30:53
  32752. 2873 2005-06-20 00:41:25 3321 160 2005-06-25 02:06:25 1 2006-02-16 02:30:53
  32753. 2874 2005-06-20 00:42:26 331 166 2005-06-28 01:37:26 2 2006-02-16 02:30:53
  32754. 2875 2005-06-20 00:47:18 3012 186 2005-06-25 18:54:18 2 2006-02-16 02:30:53
  32755. 2876 2005-06-20 01:06:34 3117 39 2005-06-23 04:55:34 1 2006-02-16 02:30:53
  32756. 2877 2005-06-20 01:07:16 485 267 2005-06-24 01:05:16 1 2006-02-16 02:30:53
  32757. 2878 2005-06-20 01:09:14 4120 88 2005-06-21 21:40:14 2 2006-02-16 02:30:53
  32758. 2879 2005-06-20 01:24:10 1920 583 2005-06-28 20:12:10 2 2006-02-16 02:30:53
  32759. 2880 2005-06-20 01:24:54 1700 193 2005-06-23 02:42:54 2 2006-02-16 02:30:53
  32760. 2881 2005-06-20 01:26:18 1391 307 2005-06-26 23:42:18 1 2006-02-16 02:30:53
  32761. 2882 2005-06-20 01:26:26 205 152 2005-06-21 19:33:26 1 2006-02-16 02:30:53
  32762. 2883 2005-06-20 01:29:10 585 320 2005-06-28 06:12:10 1 2006-02-16 02:30:53
  32763. 2884 2005-06-20 01:31:16 3384 319 2005-06-21 04:03:16 2 2006-02-16 02:30:53
  32764. 2885 2005-06-20 01:33:42 2701 330 2005-06-22 22:23:42 1 2006-02-16 02:30:53
  32765. 2886 2005-06-20 01:38:39 1755 154 2005-06-23 04:28:39 2 2006-02-16 02:30:53
  32766. 2887 2005-06-20 01:39:43 1073 453 2005-06-25 05:22:43 2 2006-02-16 02:30:53
  32767. 2888 2005-06-20 01:50:56 468 7 2005-06-22 05:05:56 2 2006-02-16 02:30:53
  32768. 2889 2005-06-20 01:54:08 151 213 2005-06-23 06:33:08 1 2006-02-16 02:30:53
  32769. 2890 2005-06-20 02:00:45 3437 392 2005-06-27 21:12:45 1 2006-02-16 02:30:53
  32770. 2891 2005-06-20 02:02:05 343 32 2005-06-25 02:45:05 1 2006-02-16 02:30:53
  32771. 2892 2005-06-20 02:06:39 2993 430 2005-06-21 02:50:39 2 2006-02-16 02:30:53
  32772. 2893 2005-06-20 02:22:08 397 153 2005-06-26 21:01:08 2 2006-02-16 02:30:53
  32773. 2894 2005-06-20 02:22:42 4316 76 2005-06-22 00:38:42 1 2006-02-16 02:30:53
  32774. 2895 2005-06-20 02:26:31 4445 141 2005-06-27 23:42:31 2 2006-02-16 02:30:53
  32775. 2896 2005-06-20 02:33:42 1086 40 2005-06-26 05:29:42 2 2006-02-16 02:30:53
  32776. 2897 2005-06-20 02:34:23 3464 107 2005-06-25 05:29:23 1 2006-02-16 02:30:53
  32777. 2898 2005-06-20 02:38:06 3106 178 2005-06-29 08:18:06 2 2006-02-16 02:30:53
  32778. 2899 2005-06-20 02:39:21 1919 459 2005-06-23 06:47:21 1 2006-02-16 02:30:53
  32779. 2900 2005-06-20 02:40:04 3407 294 2005-06-27 20:47:04 2 2006-02-16 02:30:53
  32780. 2901 2005-06-20 02:41:28 667 25 2005-06-23 04:43:28 2 2006-02-16 02:30:53
  32781. 2902 2005-06-20 02:45:35 2787 304 2005-06-26 07:51:35 1 2006-02-16 02:30:53
  32782. 2903 2005-06-20 02:49:01 3580 53 2005-06-25 05:03:01 2 2006-02-16 02:30:53
  32783. 2904 2005-06-20 02:54:06 2195 55 2005-06-21 06:57:06 2 2006-02-16 02:30:53
  32784. 2905 2005-06-20 02:56:16 3898 189 2005-06-24 23:51:16 2 2006-02-16 02:30:53
  32785. 2906 2005-06-20 03:04:56 1087 58 2005-06-23 05:57:56 2 2006-02-16 02:30:53
  32786. 2907 2005-06-20 03:15:09 2516 208 2005-06-20 21:56:09 2 2006-02-16 02:30:53
  32787. 2908 2005-06-20 03:16:52 517 91 2005-06-22 08:46:52 1 2006-02-16 02:30:53
  32788. 2909 2005-06-20 03:19:10 1701 451 2005-06-25 06:06:10 2 2006-02-16 02:30:53
  32789. 2910 2005-06-20 03:31:18 630 57 2005-06-28 00:35:18 1 2006-02-16 02:30:53
  32790. 2911 2005-06-20 03:32:37 3645 502 2005-06-22 22:06:37 1 2006-02-16 02:30:53
  32791. 2912 2005-06-20 03:32:45 1076 196 2005-06-21 23:32:45 1 2006-02-16 02:30:53
  32792. 2913 2005-06-20 03:42:27 3456 402 2005-06-23 04:47:27 1 2006-02-16 02:30:53
  32793. 2914 2005-06-20 03:43:18 2419 342 2005-06-25 03:44:18 2 2006-02-16 02:30:53
  32794. 2915 2005-06-20 03:57:17 1293 262 2005-06-24 05:59:17 2 2006-02-16 02:30:53
  32795. 2916 2005-06-20 04:01:04 3086 590 2005-06-27 22:40:04 2 2006-02-16 02:30:53
  32796. 2917 2005-06-20 04:08:35 647 451 2005-06-24 01:17:35 1 2006-02-16 02:30:53
  32797. 2918 2005-06-20 04:09:04 1985 215 2005-06-21 10:07:04 1 2006-02-16 02:30:53
  32798. 2919 2005-06-20 04:10:16 2835 509 2005-06-27 06:34:16 1 2006-02-16 02:30:53
  32799. 2920 2005-06-20 04:12:46 487 588 2005-06-26 23:34:46 2 2006-02-16 02:30:53
  32800. 2921 2005-06-20 04:13:04 1785 59 2005-06-28 01:28:04 1 2006-02-16 02:30:53
  32801. 2922 2005-06-20 04:13:47 1671 176 2005-06-22 04:38:47 2 2006-02-16 02:30:53
  32802. 2923 2005-06-20 04:16:07 109 29 2005-06-21 05:04:07 1 2006-02-16 02:30:53
  32803. 2924 2005-06-20 04:20:14 580 132 2005-06-21 01:13:14 1 2006-02-16 02:30:53
  32804. 2925 2005-06-20 04:23:49 804 301 2005-06-22 04:37:49 2 2006-02-16 02:30:53
  32805. 2926 2005-06-20 04:37:45 1055 379 2005-06-26 02:17:45 1 2006-02-16 02:30:53
  32806. 2927 2005-06-20 04:41:41 393 403 2005-06-23 01:59:41 1 2006-02-16 02:30:53
  32807. 2928 2005-06-20 04:43:45 1265 104 2005-06-21 06:58:45 2 2006-02-16 02:30:53
  32808. 2929 2005-06-20 04:47:39 3389 333 2005-06-25 23:16:39 2 2006-02-16 02:30:53
  32809. 2930 2005-06-20 04:50:29 3615 585 2005-06-28 06:00:29 2 2006-02-16 02:30:53
  32810. 2931 2005-06-20 04:50:45 3122 258 2005-06-29 09:18:45 1 2006-02-16 02:30:53
  32811. 2932 2005-06-20 04:51:19 4418 526 2005-06-29 08:31:19 1 2006-02-16 02:30:53
  32812. 2933 2005-06-20 04:52:23 4483 323 2005-06-26 07:12:23 2 2006-02-16 02:30:53
  32813. 2934 2005-06-20 05:05:53 697 228 2005-06-22 02:44:53 1 2006-02-16 02:30:53
  32814. 2935 2005-06-20 05:07:24 2735 384 2005-06-28 09:17:24 2 2006-02-16 02:30:53
  32815. 2936 2005-06-20 05:09:27 2675 330 2005-06-26 10:16:27 2 2006-02-16 02:30:53
  32816. 2937 2005-06-20 05:15:37 1998 15 2005-06-27 02:45:37 1 2006-02-16 02:30:53
  32817. 2938 2005-06-20 05:17:22 1795 504 2005-06-26 09:38:22 1 2006-02-16 02:30:53
  32818. 2939 2005-06-20 05:18:16 2638 203 2005-06-26 06:56:16 1 2006-02-16 02:30:53
  32819. 2940 2005-06-20 05:20:01 2504 73 2005-06-28 06:11:01 2 2006-02-16 02:30:53
  32820. 2941 2005-06-20 05:22:18 3632 135 2005-06-26 07:40:18 2 2006-02-16 02:30:53
  32821. 2942 2005-06-20 05:27:31 999 242 2005-06-29 00:35:31 1 2006-02-16 02:30:53
  32822. 2943 2005-06-20 05:43:05 2591 418 2005-06-25 04:31:05 1 2006-02-16 02:30:53
  32823. 2944 2005-06-20 05:43:42 1550 474 2005-06-29 09:40:42 2 2006-02-16 02:30:53
  32824. 2945 2005-06-20 05:49:27 4193 153 2005-06-26 09:48:27 1 2006-02-16 02:30:53
  32825. 2946 2005-06-20 05:50:40 3737 213 2005-06-21 00:42:40 2 2006-02-16 02:30:53
  32826. 2947 2005-06-20 06:00:21 4302 151 2005-06-23 10:04:21 2 2006-02-16 02:30:53
  32827. 2948 2005-06-20 06:02:35 4254 289 2005-06-29 09:12:35 2 2006-02-16 02:30:53
  32828. 2949 2005-06-20 06:05:53 375 78 2005-06-29 03:19:53 2 2006-02-16 02:30:53
  32829. 2950 2005-06-20 06:08:36 1438 561 2005-06-27 07:45:36 2 2006-02-16 02:30:53
  32830. 2951 2005-06-20 06:23:01 2903 404 2005-06-24 00:26:01 2 2006-02-16 02:30:53
  32831. 2952 2005-06-20 06:26:57 3759 13 2005-06-22 11:51:57 1 2006-02-16 02:30:53
  32832. 2953 2005-06-20 06:39:11 1829 540 2005-06-26 06:19:11 1 2006-02-16 02:30:53
  32833. 2954 2005-06-20 06:45:00 377 336 2005-06-23 11:43:00 1 2006-02-16 02:30:53
  32834. 2955 2005-06-20 06:46:35 2312 244 2005-06-25 05:34:35 2 2006-02-16 02:30:53
  32835. 2956 2005-06-20 06:47:23 2684 533 2005-06-22 07:24:23 2 2006-02-16 02:30:53
  32836. 2957 2005-06-20 06:53:47 4034 542 2005-06-29 09:21:47 2 2006-02-16 02:30:53
  32837. 2958 2005-06-20 06:56:20 1380 260 2005-06-29 02:33:20 2 2006-02-16 02:30:53
  32838. 2959 2005-06-20 07:07:54 4185 372 2005-06-27 03:31:54 1 2006-02-16 02:30:53
  32839. 2960 2005-06-20 07:10:09 3970 16 2005-06-26 08:14:09 2 2006-02-16 02:30:53
  32840. 2961 2005-06-20 07:29:15 4539 399 2005-06-24 08:05:15 1 2006-02-16 02:30:53
  32841. 2962 2005-06-20 07:31:55 2978 364 2005-06-26 04:43:55 1 2006-02-16 02:30:53
  32842. 2963 2005-06-20 07:33:09 1444 24 2005-06-28 09:23:09 1 2006-02-16 02:30:53
  32843. 2964 2005-06-20 07:33:29 1201 590 2005-06-29 12:48:29 1 2006-02-16 02:30:53
  32844. 2965 2005-06-20 07:33:38 27 46 2005-06-29 11:45:38 1 2006-02-16 02:30:53
  32845. 2966 2005-06-20 07:39:33 3483 511 2005-06-29 07:48:33 1 2006-02-16 02:30:53
  32846. 2967 2005-06-20 07:40:35 4243 311 2005-06-29 05:50:35 2 2006-02-16 02:30:53
  32847. 2968 2005-06-20 07:41:47 4415 252 2005-06-23 04:27:47 1 2006-02-16 02:30:53
  32848. 2969 2005-06-20 07:44:27 1748 418 2005-06-22 06:12:27 2 2006-02-16 02:30:53
  32849. 2970 2005-06-20 07:51:51 1167 449 2005-06-28 10:14:51 2 2006-02-16 02:30:53
  32850. 2971 2005-06-20 07:56:00 1585 410 2005-06-27 11:38:00 2 2006-02-16 02:30:53
  32851. 2972 2005-06-20 07:57:54 2232 531 2005-06-21 12:48:54 1 2006-02-16 02:30:53
  32852. 2973 2005-06-20 07:59:27 2626 96 2005-06-24 12:31:27 1 2006-02-16 02:30:53
  32853. 2974 2005-06-20 08:00:24 2322 472 2005-06-25 05:10:24 2 2006-02-16 02:30:53
  32854. 2975 2005-06-20 08:06:18 4534 46 2005-06-21 08:01:18 1 2006-02-16 02:30:53
  32855. 2976 2005-06-20 08:09:11 4210 55 2005-06-21 10:45:11 1 2006-02-16 02:30:53
  32856. 2977 2005-06-20 08:15:27 2645 571 2005-06-29 04:30:27 2 2006-02-16 02:30:53
  32857. 2978 2005-06-20 08:25:16 4364 548 2005-06-23 05:42:16 1 2006-02-16 02:30:53
  32858. 2979 2005-06-20 08:31:05 3961 589 2005-06-27 12:25:05 1 2006-02-16 02:30:53
  32859. 2980 2005-06-20 08:35:03 310 343 2005-06-29 07:57:03 2 2006-02-16 02:30:53
  32860. 2981 2005-06-20 08:35:17 522 387 2005-06-28 09:14:17 1 2006-02-16 02:30:53
  32861. 2982 2005-06-20 08:38:29 2574 130 2005-06-28 13:21:29 1 2006-02-16 02:30:53
  32862. 2983 2005-06-20 08:41:42 1349 322 2005-06-29 04:02:42 2 2006-02-16 02:30:53
  32863. 2984 2005-06-20 08:43:44 1819 435 2005-06-22 03:08:44 2 2006-02-16 02:30:53
  32864. 2985 2005-06-20 08:45:08 122 154 2005-06-22 04:26:08 2 2006-02-16 02:30:53
  32865. 2986 2005-06-20 08:50:28 478 556 2005-06-26 05:24:28 2 2006-02-16 02:30:53
  32866. 2987 2005-06-20 08:55:50 1531 349 2005-06-28 13:02:50 2 2006-02-16 02:30:53
  32867. 2988 2005-06-20 08:59:08 3160 557 2005-06-28 04:31:08 2 2006-02-16 02:30:53
  32868. 2989 2005-06-20 08:59:37 1586 56 2005-06-22 03:27:37 2 2006-02-16 02:30:53
  32869. 2990 2005-06-20 09:02:51 4559 18 2005-06-29 13:19:51 2 2006-02-16 02:30:53
  32870. 2991 2005-06-20 09:10:43 4308 472 2005-06-23 13:04:43 1 2006-02-16 02:30:53
  32871. 2992 2005-06-20 09:11:51 3347 439 2005-06-24 05:59:51 1 2006-02-16 02:30:53
  32872. 2993 2005-06-20 09:12:12 1527 40 2005-06-22 13:36:12 2 2006-02-16 02:30:53
  32873. 2994 2005-06-20 09:17:05 1290 163 2005-06-29 04:41:05 1 2006-02-16 02:30:53
  32874. 2995 2005-06-20 09:18:22 4544 573 2005-06-26 14:31:22 1 2006-02-16 02:30:53
  32875. 2996 2005-06-20 09:20:29 4064 500 2005-06-27 09:18:29 1 2006-02-16 02:30:53
  32876. 2997 2005-06-20 09:23:45 1449 519 2005-06-29 08:15:45 1 2006-02-16 02:30:53
  32877. 2998 2005-06-20 09:30:22 1288 380 2005-06-24 06:31:22 2 2006-02-16 02:30:53
  32878. 2999 2005-06-20 09:30:34 735 295 2005-06-26 05:51:34 2 2006-02-16 02:30:53
  32879. 3000 2005-06-20 09:32:33 549 50 2005-06-22 07:45:33 1 2006-02-16 02:30:53
  32880. 3001 2005-06-20 09:50:16 2941 393 2005-06-28 05:13:16 2 2006-02-16 02:30:53
  32881. 3002 2005-06-20 09:56:12 2749 266 2005-06-24 12:15:12 2 2006-02-16 02:30:53
  32882. 3003 2005-06-20 10:00:51 616 38 2005-06-22 06:28:51 2 2006-02-16 02:30:53
  32883. 3004 2005-06-20 10:04:36 2836 113 2005-06-23 07:38:36 2 2006-02-16 02:30:53
  32884. 3005 2005-06-20 10:10:29 286 598 2005-06-28 15:48:29 2 2006-02-16 02:30:53
  32885. 3006 2005-06-20 10:10:29 1677 133 2005-06-22 07:26:29 2 2006-02-16 02:30:53
  32886. 3007 2005-06-20 10:11:53 1950 7 2005-06-25 04:51:53 2 2006-02-16 02:30:53
  32887. 3008 2005-06-20 10:23:25 3383 202 2005-06-26 11:00:25 2 2006-02-16 02:30:53
  32888. 3009 2005-06-20 10:24:44 2721 280 2005-06-23 13:39:44 1 2006-02-16 02:30:53
  32889. 3010 2005-06-20 10:29:59 1298 567 2005-06-27 06:52:59 1 2006-02-16 02:30:53
  32890. 3011 2005-06-20 10:39:10 4376 147 2005-06-28 07:02:10 2 2006-02-16 02:30:53
  32891. 3012 2005-06-20 10:43:13 1392 206 2005-06-28 10:07:13 2 2006-02-16 02:30:53
  32892. 3013 2005-06-20 10:45:09 4146 290 2005-06-26 04:55:09 1 2006-02-16 02:30:53
  32893. 3014 2005-06-20 10:45:20 2179 434 2005-06-23 06:29:20 1 2006-02-16 02:30:53
  32894. 3015 2005-06-20 10:48:56 1311 23 2005-06-26 11:30:56 2 2006-02-16 02:30:53
  32895. 3016 2005-06-20 10:55:08 3514 558 2005-06-24 14:05:08 1 2006-02-16 02:30:53
  32896. 3017 2005-06-20 11:08:56 2513 151 2005-06-28 16:26:56 1 2006-02-16 02:30:53
  32897. 3018 2005-06-20 11:10:35 4150 112 2005-06-25 07:17:35 2 2006-02-16 02:30:53
  32898. 3019 2005-06-20 11:11:52 491 144 2005-06-27 08:30:52 2 2006-02-16 02:30:53
  32899. 3020 2005-06-20 11:12:04 4363 74 2005-06-27 07:31:04 2 2006-02-16 02:30:53
  32900. 3021 2005-06-20 11:13:01 120 62 2005-06-28 16:15:01 2 2006-02-16 02:30:53
  32901. 3022 2005-06-20 11:17:20 3745 466 2005-06-26 13:15:20 2 2006-02-16 02:30:53
  32902. 3023 2005-06-20 11:18:11 4304 106 2005-06-21 12:43:11 1 2006-02-16 02:30:53
  32903. 3024 2005-06-20 11:29:17 1966 328 2005-06-27 12:51:17 2 2006-02-16 02:30:53
  32904. 3025 2005-06-20 11:46:48 1309 293 2005-06-22 08:43:48 1 2006-02-16 02:30:53
  32905. 3026 2005-06-20 11:48:00 4032 347 2005-06-21 12:51:00 2 2006-02-16 02:30:53
  32906. 3027 2005-06-20 11:50:30 4028 397 2005-06-25 15:58:30 2 2006-02-16 02:30:53
  32907. 3028 2005-06-20 11:50:52 886 264 2005-06-21 11:05:52 2 2006-02-16 02:30:53
  32908. 3029 2005-06-20 11:51:30 327 317 2005-06-25 16:42:30 1 2006-02-16 02:30:53
  32909. 3030 2005-06-20 11:51:59 1543 395 2005-06-24 10:51:59 1 2006-02-16 02:30:53
  32910. 3031 2005-06-20 11:52:49 1184 491 2005-06-22 07:00:49 1 2006-02-16 02:30:53
  32911. 3032 2005-06-20 11:58:30 3734 172 2005-06-24 09:49:30 1 2006-02-16 02:30:53
  32912. 3033 2005-06-20 12:02:05 4422 107 2005-06-26 15:58:05 1 2006-02-16 02:30:53
  32913. 3034 2005-06-20 12:15:50 2755 296 2005-06-24 06:21:50 2 2006-02-16 02:30:53
  32914. 3035 2005-06-20 12:17:03 1223 62 2005-06-26 17:42:03 2 2006-02-16 02:30:53
  32915. 3036 2005-06-20 12:18:31 4463 399 2005-06-29 09:52:31 1 2006-02-16 02:30:53
  32916. 3037 2005-06-20 12:28:03 2033 434 2005-06-21 08:21:03 1 2006-02-16 02:30:53
  32917. 3038 2005-06-20 12:28:59 2919 27 2005-06-25 07:48:59 1 2006-02-16 02:30:53
  32918. 3039 2005-06-20 12:32:30 4098 186 2005-06-21 07:38:30 1 2006-02-16 02:30:53
  32919. 3040 2005-06-20 12:34:13 2568 162 2005-06-21 12:33:13 1 2006-02-16 02:30:53
  32920. 3041 2005-06-20 12:35:44 2676 459 2005-06-23 18:28:44 2 2006-02-16 02:30:53
  32921. 3042 2005-06-20 12:38:27 3103 291 2005-06-26 11:18:27 1 2006-02-16 02:30:53
  32922. 3043 2005-06-20 12:38:35 633 599 2005-06-29 14:16:35 2 2006-02-16 02:30:53
  32923. 3044 2005-06-20 12:38:49 3216 424 2005-06-25 07:49:49 1 2006-02-16 02:30:53
  32924. 3045 2005-06-20 12:42:00 3065 459 2005-06-23 10:49:00 2 2006-02-16 02:30:53
  32925. 3046 2005-06-20 12:42:59 471 559 2005-06-26 17:40:59 2 2006-02-16 02:30:53
  32926. 3047 2005-06-20 12:45:33 624 13 2005-06-29 13:09:33 2 2006-02-16 02:30:53
  32927. 3048 2005-06-20 12:49:55 4389 482 2005-06-26 11:06:55 1 2006-02-16 02:30:53
  32928. 3049 2005-06-20 12:51:01 518 403 2005-06-29 10:53:01 1 2006-02-16 02:30:53
  32929. 3050 2005-06-20 13:03:03 2397 557 2005-06-29 07:22:03 1 2006-02-16 02:30:53
  32930. 3051 2005-06-20 13:06:52 1408 65 2005-06-25 13:03:52 2 2006-02-16 02:30:53
  32931. 3052 2005-06-20 13:09:19 2359 329 2005-06-29 11:55:19 2 2006-02-16 02:30:53
  32932. 3053 2005-06-20 13:10:30 818 329 2005-06-25 17:22:30 2 2006-02-16 02:30:53
  32933. 3054 2005-06-20 13:16:41 2817 322 2005-06-28 13:45:41 2 2006-02-16 02:30:53
  32934. 3055 2005-06-20 13:19:58 1510 23 2005-06-27 14:54:58 1 2006-02-16 02:30:53
  32935. 3056 2005-06-20 13:20:58 2010 95 2005-06-26 08:35:58 2 2006-02-16 02:30:53
  32936. 3057 2005-06-20 13:22:48 1101 307 2005-06-26 17:22:48 2 2006-02-16 02:30:53
  32937. 3058 2005-06-20 13:28:35 938 137 2005-06-28 13:57:35 2 2006-02-16 02:30:53
  32938. 3059 2005-06-20 13:38:41 2911 266 2005-06-21 10:13:41 2 2006-02-16 02:30:53
  32939. 3060 2005-06-20 13:47:20 2075 446 2005-06-25 16:00:20 2 2006-02-16 02:30:53
  32940. 3061 2005-06-20 13:48:21 4202 330 2005-06-22 17:36:21 2 2006-02-16 02:30:53
  32941. 3062 2005-06-20 13:50:00 591 75 2005-06-27 08:18:00 1 2006-02-16 02:30:53
  32942. 3063 2005-06-20 13:52:03 3954 515 2005-06-28 13:36:03 2 2006-02-16 02:30:53
  32943. 3064 2005-06-20 13:53:13 2624 276 2005-06-25 16:33:13 2 2006-02-16 02:30:53
  32944. 3065 2005-06-20 13:53:53 1687 227 2005-06-24 11:31:53 1 2006-02-16 02:30:53
  32945. 3066 2005-06-20 13:55:41 1116 268 2005-06-26 09:38:41 2 2006-02-16 02:30:53
  32946. 3067 2005-06-20 13:59:21 3094 349 2005-06-28 19:09:21 2 2006-02-16 02:30:53
  32947. 3068 2005-06-20 14:02:22 1958 516 2005-06-22 12:52:22 2 2006-02-16 02:30:53
  32948. 3069 2005-06-20 14:13:00 1952 237 2005-06-28 10:57:00 1 2006-02-16 02:30:53
  32949. 3070 2005-06-20 14:15:39 3860 543 2005-06-25 12:52:39 2 2006-02-16 02:30:53
  32950. 3071 2005-06-20 14:20:42 1198 582 2005-06-24 19:01:42 1 2006-02-16 02:30:53
  32951. 3072 2005-06-20 14:21:31 4131 423 2005-06-27 18:46:31 2 2006-02-16 02:30:53
  32952. 3073 2005-06-20 14:33:26 3164 471 2005-06-26 08:42:26 2 2006-02-16 02:30:53
  32953. 3074 2005-06-20 14:41:41 1441 299 2005-06-21 15:56:41 1 2006-02-16 02:30:53
  32954. 3075 2005-06-20 14:52:19 4346 161 2005-06-28 18:48:19 2 2006-02-16 02:30:53
  32955. 3076 2005-06-20 15:01:19 1344 109 2005-06-28 16:53:19 2 2006-02-16 02:30:53
  32956. 3077 2005-06-20 15:05:18 1675 303 2005-06-26 20:52:18 2 2006-02-16 02:30:53
  32957. 3078 2005-06-20 15:09:48 3642 367 2005-06-24 16:54:48 1 2006-02-16 02:30:53
  32958. 3079 2005-06-20 15:13:40 2135 350 2005-06-21 12:03:40 1 2006-02-16 02:30:53
  32959. 3080 2005-06-20 15:22:32 118 377 2005-06-24 11:08:32 1 2006-02-16 02:30:53
  32960. 3081 2005-06-20 15:29:13 2071 342 2005-06-24 21:00:13 2 2006-02-16 02:30:53
  32961. 3082 2005-06-20 15:32:11 4431 164 2005-06-28 13:08:11 1 2006-02-16 02:30:53
  32962. 3083 2005-06-20 15:33:47 2896 257 2005-06-26 16:14:47 2 2006-02-16 02:30:53
  32963. 3084 2005-06-20 15:35:24 3578 514 2005-06-23 19:11:24 1 2006-02-16 02:30:53
  32964. 3085 2005-06-20 15:42:33 4282 166 2005-06-21 16:51:33 2 2006-02-16 02:30:53
  32965. 3086 2005-06-20 15:42:40 4437 377 2005-06-25 19:21:40 1 2006-02-16 02:30:53
  32966. 3087 2005-06-20 15:53:59 1305 111 2005-06-27 10:54:59 2 2006-02-16 02:30:53
  32967. 3088 2005-06-20 15:56:05 3049 384 2005-06-29 13:02:05 1 2006-02-16 02:30:53
  32968. 3089 2005-06-20 15:57:01 539 151 2005-06-25 13:15:01 2 2006-02-16 02:30:53
  32969. 3090 2005-06-20 16:00:19 3301 267 2005-06-23 14:55:19 1 2006-02-16 02:30:53
  32970. 3091 2005-06-20 16:02:59 854 383 2005-06-22 21:30:59 2 2006-02-16 02:30:53
  32971. 3092 2005-06-20 16:04:42 4344 347 2005-06-27 19:54:42 1 2006-02-16 02:30:53
  32972. 3093 2005-06-20 16:06:14 2534 556 2005-06-22 13:22:14 2 2006-02-16 02:30:53
  32973. 3094 2005-06-20 16:06:51 2048 114 2005-06-24 13:23:51 1 2006-02-16 02:30:53
  32974. 3095 2005-06-20 16:16:53 3937 298 2005-06-22 10:35:53 2 2006-02-16 02:30:53
  32975. 3096 2005-06-20 16:17:56 3851 79 2005-06-24 10:17:56 2 2006-02-16 02:30:53
  32976. 3097 2005-06-20 16:26:14 4337 280 2005-06-23 14:46:14 1 2006-02-16 02:30:53
  32977. 3098 2005-06-20 16:37:01 3409 498 2005-06-22 22:24:01 1 2006-02-16 02:30:53
  32978. 3099 2005-06-20 16:44:33 3756 380 2005-06-27 12:17:33 2 2006-02-16 02:30:53
  32979. 3100 2005-06-20 16:47:57 2428 487 2005-06-26 16:59:57 1 2006-02-16 02:30:53
  32980. 3101 2005-06-20 16:48:58 1738 384 2005-06-27 18:13:58 2 2006-02-16 02:30:53
  32981. 3102 2005-06-20 16:55:55 1144 522 2005-06-29 13:49:55 1 2006-02-16 02:30:53
  32982. 3103 2005-06-20 16:58:19 1877 553 2005-06-25 21:18:19 1 2006-02-16 02:30:53
  32983. 3104 2005-06-20 17:06:46 1490 196 2005-06-28 13:18:46 2 2006-02-16 02:30:53
  32984. 3105 2005-06-20 17:11:46 130 385 2005-06-21 11:48:46 2 2006-02-16 02:30:53
  32985. 3106 2005-06-20 17:18:06 2637 201 2005-06-24 14:50:06 2 2006-02-16 02:30:53
  32986. 3107 2005-06-20 17:26:05 4527 303 2005-06-25 12:36:05 1 2006-02-16 02:30:53
  32987. 3108 2005-06-20 17:28:43 2218 189 2005-06-27 21:23:43 1 2006-02-16 02:30:53
  32988. 3109 2005-06-20 17:33:55 977 93 2005-06-22 23:09:55 1 2006-02-16 02:30:53
  32989. 3110 2005-06-20 17:40:12 2008 333 2005-06-24 17:09:12 1 2006-02-16 02:30:53
  32990. 3111 2005-06-20 17:46:47 4494 579 2005-06-29 19:45:47 1 2006-02-16 02:30:53
  32991. 3112 2005-06-20 17:53:30 3725 35 2005-06-26 16:03:30 1 2006-02-16 02:30:53
  32992. 3113 2005-06-20 17:56:40 3620 517 2005-06-23 14:45:40 1 2006-02-16 02:30:53
  32993. 3114 2005-06-20 17:57:47 2388 8 2005-06-21 19:18:47 2 2006-02-16 02:30:53
  32994. 3115 2005-06-20 17:59:05 2193 457 2005-06-26 13:28:05 1 2006-02-16 02:30:53
  32995. 3116 2005-06-20 18:04:55 276 108 2005-06-21 12:12:55 2 2006-02-16 02:30:53
  32996. 3117 2005-06-20 18:05:15 2184 31 2005-06-26 17:28:15 1 2006-02-16 02:30:53
  32997. 3118 2005-06-20 18:05:57 1258 125 2005-06-23 23:01:57 1 2006-02-16 02:30:53
  32998. 3119 2005-06-20 18:11:44 683 296 2005-06-27 16:14:44 2 2006-02-16 02:30:53
  32999. 3120 2005-06-20 18:19:29 2530 107 2005-06-23 23:40:29 1 2006-02-16 02:30:53
  33000. 3121 2005-06-20 18:23:30 797 132 2005-06-21 20:36:30 1 2006-02-16 02:30:53
  33001. 3122 2005-06-20 18:25:57 2720 87 2005-06-29 16:08:57 1 2006-02-16 02:30:53
  33002. 3123 2005-06-20 18:26:14 1656 289 2005-06-29 17:17:14 1 2006-02-16 02:30:53
  33003. 3124 2005-06-20 18:28:19 3342 113 2005-06-28 21:08:19 1 2006-02-16 02:30:53
  33004. 3125 2005-06-20 18:31:58 3293 382 2005-06-21 15:03:58 1 2006-02-16 02:30:53
  33005. 3126 2005-06-20 18:38:22 1183 5 2005-06-26 00:00:22 1 2006-02-16 02:30:53
  33006. 3127 2005-06-20 18:39:43 1292 461 2005-06-28 17:55:43 1 2006-02-16 02:30:53
  33007. 3128 2005-06-20 18:41:47 189 543 2005-06-24 20:54:47 2 2006-02-16 02:30:53
  33008. 3129 2005-06-20 18:57:48 1789 495 2005-06-28 13:45:48 1 2006-02-16 02:30:53
  33009. 3130 2005-06-20 19:03:22 2569 341 2005-06-29 18:05:22 2 2006-02-16 02:30:53
  33010. 3131 2005-06-20 19:08:00 3678 146 2005-06-24 20:59:00 2 2006-02-16 02:30:53
  33011. 3132 2005-06-20 19:09:46 711 90 2005-06-24 19:42:46 1 2006-02-16 02:30:53
  33012. 3133 2005-06-20 19:18:32 4529 120 2005-06-26 17:54:32 2 2006-02-16 02:30:53
  33013. 3134 2005-06-20 19:29:09 1389 537 2005-06-29 19:31:09 2 2006-02-16 02:30:53
  33014. 3135 2005-06-20 19:33:52 1122 12 2005-06-29 18:20:52 1 2006-02-16 02:30:53
  33015. 3136 2005-06-20 19:39:08 3349 377 2005-06-22 23:35:08 2 2006-02-16 02:30:53
  33016. 3137 2005-06-20 19:41:28 786 505 2005-06-28 00:32:28 1 2006-02-16 02:30:53
  33017. 3138 2005-06-20 19:43:45 2265 570 2005-06-26 20:41:45 1 2006-02-16 02:30:53
  33018. 3139 2005-06-20 19:44:45 3474 354 2005-06-23 16:24:45 1 2006-02-16 02:30:53
  33019. 3140 2005-06-20 19:47:12 2936 53 2005-06-24 23:24:12 1 2006-02-16 02:30:53
  33020. 3141 2005-06-20 19:55:47 1806 398 2005-06-30 00:31:47 1 2006-02-16 02:30:53
  33021. 3142 2005-06-20 19:59:28 3926 9 2005-06-28 19:51:28 2 2006-02-16 02:30:53
  33022. 3143 2005-06-20 20:01:52 1355 215 2005-06-26 19:26:52 2 2006-02-16 02:30:53
  33023. 3144 2005-06-20 20:14:20 1300 114 2005-06-30 01:46:20 1 2006-02-16 02:30:53
  33024. 3145 2005-06-20 20:21:17 2211 144 2005-06-22 14:44:17 1 2006-02-16 02:30:53
  33025. 3146 2005-06-20 20:21:48 2249 339 2005-06-29 22:57:48 2 2006-02-16 02:30:53
  33026. 3147 2005-06-20 20:25:17 615 390 2005-06-28 20:22:17 2 2006-02-16 02:30:53
  33027. 3148 2005-06-20 20:27:18 4490 202 2005-06-24 20:30:18 2 2006-02-16 02:30:53
  33028. 3149 2005-06-20 20:34:55 3295 55 2005-06-21 18:51:55 1 2006-02-16 02:30:53
  33029. 3150 2005-06-20 20:35:28 94 34 2005-06-26 01:01:28 1 2006-02-16 02:30:53
  33030. 3151 2005-06-20 20:36:53 2976 77 2005-06-25 18:56:53 1 2006-02-16 02:30:53
  33031. 3152 2005-06-20 20:42:41 1022 246 2005-06-28 21:12:41 1 2006-02-16 02:30:53
  33032. 3153 2005-06-20 20:44:15 659 430 2005-06-23 16:04:15 1 2006-02-16 02:30:53
  33033. 3154 2005-06-20 20:44:40 3195 550 2005-06-23 19:10:40 1 2006-02-16 02:30:53
  33034. 3155 2005-06-20 21:02:38 458 450 2005-06-27 19:34:38 1 2006-02-16 02:30:53
  33035. 3156 2005-06-20 21:03:46 2217 365 2005-06-21 23:32:46 2 2006-02-16 02:30:53
  33036. 3157 2005-06-20 21:07:54 1899 245 2005-06-23 16:01:54 1 2006-02-16 02:30:53
  33037. 3158 2005-06-20 21:08:19 3461 592 2005-06-29 18:59:19 1 2006-02-16 02:30:53
  33038. 3159 2005-06-20 21:11:50 33 388 2005-06-29 19:35:50 2 2006-02-16 02:30:53
  33039. 3160 2005-06-20 21:20:51 4333 561 2005-06-29 18:06:51 2 2006-02-16 02:30:53
  33040. 3161 2005-06-20 21:21:01 1326 373 2005-06-21 18:22:01 2 2006-02-16 02:30:53
  33041. 3162 2005-06-20 21:21:15 3220 113 2005-06-29 18:42:15 1 2006-02-16 02:30:53
  33042. 3163 2005-06-20 21:22:13 2632 391 2005-06-26 15:22:13 2 2006-02-16 02:30:53
  33043. 3164 2005-06-20 21:29:00 155 270 2005-06-27 15:50:00 1 2006-02-16 02:30:53
  33044. 3165 2005-06-20 21:29:17 796 85 2005-06-22 18:03:17 1 2006-02-16 02:30:53
  33045. 3166 2005-06-20 21:32:32 1850 424 2005-06-27 20:29:32 1 2006-02-16 02:30:53
  33046. 3167 2005-06-20 21:42:29 353 464 2005-06-22 00:36:29 2 2006-02-16 02:30:53
  33047. 3168 2005-06-20 21:46:01 2407 446 2005-06-22 20:40:01 1 2006-02-16 02:30:53
  33048. 3169 2005-06-20 21:55:54 2437 50 2005-06-25 19:45:54 1 2006-02-16 02:30:53
  33049. 3170 2005-06-20 22:02:54 1306 421 2005-06-29 00:41:54 2 2006-02-16 02:30:53
  33050. 3171 2005-06-20 22:15:47 2838 140 2005-06-24 18:14:47 1 2006-02-16 02:30:53
  33051. 3172 2005-06-20 22:19:25 1758 31 2005-06-24 17:18:25 2 2006-02-16 02:30:53
  33052. 3173 2005-06-20 22:21:10 4306 33 2005-06-27 19:41:10 2 2006-02-16 02:30:53
  33053. 3174 2005-06-20 22:24:00 3331 107 2005-06-22 21:22:00 2 2006-02-16 02:30:53
  33054. 3175 2005-06-20 22:30:23 4093 249 2005-06-30 03:28:23 2 2006-02-16 02:30:53
  33055. 3176 2005-06-20 22:31:54 1982 371 2005-06-25 02:58:54 1 2006-02-16 02:30:53
  33056. 3177 2005-06-20 22:32:44 2546 300 2005-06-22 23:01:44 1 2006-02-16 02:30:53
  33057. 3178 2005-06-20 22:35:12 3517 79 2005-06-23 19:39:12 1 2006-02-16 02:30:53
  33058. 3179 2005-06-20 22:37:59 2214 163 2005-06-26 22:26:59 2 2006-02-16 02:30:53
  33059. 3180 2005-06-20 22:48:44 3997 162 2005-06-21 21:25:44 1 2006-02-16 02:30:53
  33060. 3181 2005-06-20 22:51:02 3473 238 2005-06-27 21:21:02 1 2006-02-16 02:30:53
  33061. 3182 2005-06-20 22:52:18 4017 15 2005-06-21 21:00:18 2 2006-02-16 02:30:53
  33062. 3183 2005-06-20 22:55:55 4397 129 2005-06-23 17:22:55 1 2006-02-16 02:30:53
  33063. 3184 2005-06-20 22:57:44 3179 457 2005-06-29 20:57:44 1 2006-02-16 02:30:53
  33064. 3185 2005-06-20 22:58:01 601 234 2005-06-27 00:26:01 1 2006-02-16 02:30:53
  33065. 3186 2005-06-20 23:04:20 3198 406 2005-06-29 02:56:20 2 2006-02-16 02:30:53
  33066. 3187 2005-06-20 23:06:07 4357 150 2005-06-27 01:14:07 2 2006-02-16 02:30:53
  33067. 3188 2005-06-20 23:10:27 2471 522 2005-06-25 19:37:27 2 2006-02-16 02:30:53
  33068. 3189 2005-06-20 23:19:33 1502 538 2005-06-24 17:46:33 1 2006-02-16 02:30:53
  33069. 3190 2005-06-20 23:27:15 351 200 2005-06-28 01:22:15 2 2006-02-16 02:30:53
  33070. 3191 2005-06-20 23:46:39 4358 522 2005-06-25 03:21:39 2 2006-02-16 02:30:53
  33071. 3192 2005-06-20 23:49:12 3713 11 2005-06-24 03:00:12 1 2006-02-16 02:30:53
  33072. 3193 2005-06-20 23:52:30 3176 260 2005-06-22 21:21:30 1 2006-02-16 02:30:53
  33073. 3194 2005-06-20 23:59:57 1835 432 2005-06-24 19:21:57 1 2006-02-16 02:30:53
  33074. 3195 2005-06-21 00:02:10 2383 165 2005-06-21 23:11:10 2 2006-02-16 02:30:53
  33075. 3196 2005-06-21 00:02:28 1575 52 2005-06-22 23:08:28 1 2006-02-16 02:30:53
  33076. 3197 2005-06-21 00:07:23 1811 362 2005-06-23 00:53:23 2 2006-02-16 02:30:53
  33077. 3198 2005-06-21 00:08:54 1626 295 2005-06-29 02:11:54 2 2006-02-16 02:30:53
  33078. 3199 2005-06-21 00:12:40 3824 234 2005-06-27 23:26:40 1 2006-02-16 02:30:53
  33079. 3200 2005-06-21 00:22:47 4117 221 2005-06-27 05:52:47 2 2006-02-16 02:30:53
  33080. 3201 2005-06-21 00:30:26 6 597 2005-06-28 03:42:26 1 2006-02-16 02:30:53
  33081. 3202 2005-06-21 00:33:47 2725 273 2005-06-24 04:05:47 2 2006-02-16 02:30:53
  33082. 3203 2005-06-21 00:34:56 442 158 2005-06-29 23:30:56 1 2006-02-16 02:30:53
  33083. 3204 2005-06-21 00:37:50 2848 336 2005-06-22 23:46:50 1 2006-02-16 02:30:53
  33084. 3205 2005-06-21 00:38:47 2964 31 2005-06-21 22:49:47 1 2006-02-16 02:30:53
  33085. 3206 2005-06-21 00:39:39 2196 350 2005-06-22 05:12:39 1 2006-02-16 02:30:53
  33086. 3207 2005-06-21 00:43:16 4020 86 2005-06-24 22:13:16 1 2006-02-16 02:30:53
  33087. 3208 2005-06-21 00:50:03 3169 229 2005-06-24 06:15:03 2 2006-02-16 02:30:53
  33088. 3209 2005-06-21 00:51:06 287 307 2005-06-22 21:49:06 2 2006-02-16 02:30:53
  33089. 3210 2005-06-21 01:00:25 467 75 2005-06-23 06:10:25 2 2006-02-16 02:30:53
  33090. 3211 2005-06-21 01:01:29 1150 415 2005-06-23 04:05:29 1 2006-02-16 02:30:53
  33091. 3212 2005-06-21 01:04:35 4178 21 2005-06-30 00:10:35 2 2006-02-16 02:30:53
  33092. 3213 2005-06-21 01:05:19 3832 534 2005-06-27 21:55:19 2 2006-02-16 02:30:53
  33093. 3214 2005-06-21 01:08:26 776 142 2005-06-23 03:24:26 2 2006-02-16 02:30:53
  33094. 3215 2005-06-21 01:11:32 4140 279 2005-06-26 19:42:32 1 2006-02-16 02:30:53
  33095. 3216 2005-06-21 01:19:37 719 534 2005-06-29 06:45:37 2 2006-02-16 02:30:53
  33096. 3217 2005-06-21 01:28:12 1027 463 2005-06-25 02:51:12 2 2006-02-16 02:30:53
  33097. 3218 2005-06-21 01:38:09 1828 117 2005-06-23 02:00:09 1 2006-02-16 02:30:53
  33098. 3219 2005-06-21 01:43:26 3024 129 2005-06-28 23:50:26 2 2006-02-16 02:30:53
  33099. 3220 2005-06-21 01:46:25 1880 574 2005-06-26 07:44:25 2 2006-02-16 02:30:53
  33100. 3221 2005-06-21 01:49:47 245 454 2005-06-25 06:31:47 1 2006-02-16 02:30:53
  33101. 3222 2005-06-21 01:50:29 4023 501 2005-06-27 00:52:29 2 2006-02-16 02:30:53
  33102. 3223 2005-06-21 02:06:45 1033 299 2005-06-22 07:16:45 2 2006-02-16 02:30:53
  33103. 3224 2005-06-21 02:11:36 3318 173 2005-06-23 21:17:36 1 2006-02-16 02:30:53
  33104. 3225 2005-06-21 02:16:55 1003 448 2005-06-27 05:39:55 2 2006-02-16 02:30:53
  33105. 3226 2005-06-21 02:18:14 4079 576 2005-06-26 22:32:14 2 2006-02-16 02:30:53
  33106. 3227 2005-06-21 02:18:25 1156 568 2005-06-27 00:59:25 1 2006-02-16 02:30:53
  33107. 3228 2005-06-21 02:20:24 2489 535 2005-06-29 00:50:24 2 2006-02-16 02:30:53
  33108. 3229 2005-06-21 02:20:41 2301 81 2005-06-26 00:39:41 1 2006-02-16 02:30:53
  33109. 3230 2005-06-21 02:23:16 215 83 2005-06-22 01:37:16 2 2006-02-16 02:30:53
  33110. 3231 2005-06-21 02:25:00 237 28 2005-06-23 05:46:00 2 2006-02-16 02:30:53
  33111. 3232 2005-06-21 02:30:37 1972 555 2005-06-29 03:10:37 1 2006-02-16 02:30:53
  33112. 3233 2005-06-21 02:39:31 3542 353 2005-06-28 05:23:31 2 2006-02-16 02:30:53
  33113. 3234 2005-06-21 02:39:44 3252 459 2005-06-29 07:27:44 1 2006-02-16 02:30:53
  33114. 3235 2005-06-21 02:46:17 212 49 2005-06-22 20:58:17 1 2006-02-16 02:30:53
  33115. 3236 2005-06-21 02:47:43 1492 550 2005-06-29 08:04:43 2 2006-02-16 02:30:53
  33116. 3237 2005-06-21 02:47:56 4399 466 2005-06-27 03:16:56 2 2006-02-16 02:30:53
  33117. 3238 2005-06-21 02:48:21 2732 77 2005-06-23 04:43:21 1 2006-02-16 02:30:53
  33118. 3239 2005-06-21 02:48:40 3402 328 2005-06-22 02:49:40 2 2006-02-16 02:30:53
  33119. 3240 2005-06-21 02:53:17 2938 405 2005-06-30 03:25:17 2 2006-02-16 02:30:53
  33120. 3241 2005-06-21 02:54:32 1442 499 2005-06-26 21:56:32 2 2006-02-16 02:30:53
  33121. 3242 2005-06-21 02:56:24 1421 562 2005-06-29 21:41:24 2 2006-02-16 02:30:53
  33122. 3243 2005-06-21 03:00:11 2556 426 2005-06-25 21:53:11 1 2006-02-16 02:30:53
  33123. 3244 2005-06-21 03:01:10 291 53 2005-06-24 06:59:10 2 2006-02-16 02:30:53
  33124. 3245 2005-06-21 03:06:11 2057 358 2005-06-25 08:06:11 2 2006-02-16 02:30:53
  33125. 3246 2005-06-21 03:10:01 4432 41 2005-06-28 00:46:01 1 2006-02-16 02:30:53
  33126. 3247 2005-06-21 03:12:15 1406 277 2005-06-27 00:44:15 1 2006-02-16 02:30:53
  33127. 3248 2005-06-21 03:12:21 3656 78 2005-06-28 03:54:21 2 2006-02-16 02:30:53
  33128. 3249 2005-06-21 03:13:19 703 410 2005-06-29 04:04:19 2 2006-02-16 02:30:53
  33129. 3250 2005-06-21 03:16:36 736 467 2005-06-29 00:53:36 2 2006-02-16 02:30:53
  33130. 3251 2005-06-21 03:20:37 1414 317 2005-06-23 04:54:37 2 2006-02-16 02:30:53
  33131. 3252 2005-06-21 03:25:26 2009 213 2005-06-24 00:38:26 2 2006-02-16 02:30:53
  33132. 3253 2005-06-21 03:25:37 1906 405 2005-06-27 02:46:37 2 2006-02-16 02:30:53
  33133. 3254 2005-06-21 03:27:10 3893 472 2005-06-22 22:01:10 2 2006-02-16 02:30:53
  33134. 3255 2005-06-21 03:39:52 2564 482 2005-06-24 04:02:52 1 2006-02-16 02:30:53
  33135. 3256 2005-06-21 03:45:42 1235 319 2005-06-30 02:51:42 2 2006-02-16 02:30:53
  33136. 3257 2005-06-21 03:47:19 3975 263 2005-06-28 01:24:19 2 2006-02-16 02:30:53
  33137. 3258 2005-06-21 03:53:58 4417 241 2005-06-22 22:49:58 2 2006-02-16 02:30:53
  33138. 3259 2005-06-21 03:57:15 2751 478 2005-06-24 03:32:15 1 2006-02-16 02:30:53
  33139. 3260 2005-06-21 03:59:13 3627 380 2005-06-23 03:29:13 1 2006-02-16 02:30:53
  33140. 3261 2005-06-21 04:07:41 2029 169 2005-06-24 06:25:41 2 2006-02-16 02:30:53
  33141. 3262 2005-06-21 04:08:43 3773 9 2005-06-28 02:55:43 1 2006-02-16 02:30:53
  33142. 3263 2005-06-21 04:15:52 3491 118 2005-06-24 02:19:52 2 2006-02-16 02:30:53
  33143. 3264 2005-06-21 04:19:03 1666 340 2005-06-23 01:29:03 1 2006-02-16 02:30:53
  33144. 3265 2005-06-21 04:23:13 3637 437 2005-06-28 03:37:13 1 2006-02-16 02:30:53
  33145. 3266 2005-06-21 04:49:07 2533 175 2005-06-26 05:19:07 2 2006-02-16 02:30:53
  33146. 3267 2005-06-21 04:55:21 1118 134 2005-06-29 23:46:21 1 2006-02-16 02:30:53
  33147. 3268 2005-06-21 04:55:49 4366 329 2005-06-30 00:23:49 2 2006-02-16 02:30:53
  33148. 3269 2005-06-21 05:06:30 3828 17 2005-06-27 09:26:30 2 2006-02-16 02:30:53
  33149. 3270 2005-06-21 05:07:31 1578 86 2005-06-22 07:45:31 2 2006-02-16 02:30:53
  33150. 3271 2005-06-21 05:16:10 4191 196 2005-06-27 10:46:10 1 2006-02-16 02:30:53
  33151. 3272 2005-06-21 05:18:27 1090 550 2005-06-30 02:51:27 1 2006-02-16 02:30:53
  33152. 3273 2005-06-21 05:24:17 3538 104 2005-06-23 01:21:17 2 2006-02-16 02:30:53
  33153. 3274 2005-06-21 05:30:36 2156 277 2005-06-24 05:12:36 1 2006-02-16 02:30:53
  33154. 3275 2005-06-21 05:33:04 2320 368 2005-06-30 00:37:04 2 2006-02-16 02:30:53
  33155. 3276 2005-06-21 05:35:52 1890 425 2005-06-29 03:26:52 2 2006-02-16 02:30:53
  33156. 3277 2005-06-21 05:36:37 1330 229 2005-06-29 10:54:37 1 2006-02-16 02:30:53
  33157. 3278 2005-06-21 05:41:30 2832 554 2005-06-22 03:43:30 1 2006-02-16 02:30:53
  33158. 3279 2005-06-21 06:05:53 1672 462 2005-06-25 09:40:53 1 2006-02-16 02:30:53
  33159. 3280 2005-06-21 06:08:12 661 229 2005-06-24 09:34:12 1 2006-02-16 02:30:53
  33160. 3281 2005-06-21 06:08:47 4006 363 2005-06-24 11:22:47 1 2006-02-16 02:30:53
  33161. 3282 2005-06-21 06:18:42 1676 224 2005-06-28 09:18:42 1 2006-02-16 02:30:53
  33162. 3283 2005-06-21 06:19:07 3988 372 2005-06-26 10:59:07 2 2006-02-16 02:30:53
  33163. 3284 2005-06-21 06:24:45 4566 1 2005-06-28 03:28:45 1 2006-02-16 02:30:53
  33164. 3285 2005-06-21 06:30:13 948 481 2005-06-23 10:31:13 2 2006-02-16 02:30:53
  33165. 3286 2005-06-21 06:31:29 742 577 2005-06-25 00:46:29 2 2006-02-16 02:30:53
  33166. 3287 2005-06-21 06:32:39 4406 62 2005-06-24 09:29:39 2 2006-02-16 02:30:53
  33167. 3288 2005-06-21 06:36:59 1961 299 2005-06-30 06:50:59 1 2006-02-16 02:30:53
  33168. 3289 2005-06-21 06:41:48 2248 115 2005-06-30 00:54:48 1 2006-02-16 02:30:53
  33169. 3290 2005-06-21 06:45:34 2727 293 2005-06-28 09:44:34 1 2006-02-16 02:30:53
  33170. 3291 2005-06-21 06:55:36 3866 274 2005-06-29 03:41:36 1 2006-02-16 02:30:53
  33171. 3292 2005-06-21 06:59:11 3288 412 2005-06-23 07:11:11 1 2006-02-16 02:30:53
  33172. 3293 2005-06-21 06:59:33 4407 481 2005-06-25 06:54:33 2 2006-02-16 02:30:53
  33173. 3294 2005-06-21 07:03:23 2390 439 2005-06-30 02:22:23 2 2006-02-16 02:30:53
  33174. 3295 2005-06-21 07:04:17 1703 573 2005-06-29 01:52:17 1 2006-02-16 02:30:53
  33175. 3296 2005-06-21 07:04:53 2453 284 2005-06-25 08:36:53 1 2006-02-16 02:30:53
  33176. 3297 2005-06-21 07:08:19 3969 193 2005-06-28 11:53:19 2 2006-02-16 02:30:53
  33177. 3298 2005-06-21 07:09:44 444 492 2005-06-30 11:26:44 2 2006-02-16 02:30:53
  33178. 3299 2005-06-21 07:23:34 3427 199 2005-06-27 04:02:34 1 2006-02-16 02:30:53
  33179. 3300 2005-06-21 07:25:01 2505 565 2005-06-25 01:47:01 1 2006-02-16 02:30:53
  33180. 3301 2005-06-21 07:32:25 503 444 2005-06-28 06:26:25 2 2006-02-16 02:30:53
  33181. 3302 2005-06-21 07:33:40 562 594 2005-06-29 06:02:40 1 2006-02-16 02:30:53
  33182. 3303 2005-06-21 07:34:14 1565 361 2005-06-26 13:18:14 2 2006-02-16 02:30:53
  33183. 3304 2005-06-21 07:43:40 2154 431 2005-06-27 08:06:40 2 2006-02-16 02:30:53
  33184. 3305 2005-06-21 07:46:57 2811 578 2005-06-27 06:16:57 1 2006-02-16 02:30:53
  33185. 3306 2005-06-21 07:46:58 1669 406 2005-06-26 11:22:58 2 2006-02-16 02:30:53
  33186. 3307 2005-06-21 07:52:30 462 85 2005-06-25 02:36:30 2 2006-02-16 02:30:53
  33187. 3308 2005-06-21 07:58:36 3129 96 2005-06-23 05:23:36 2 2006-02-16 02:30:53
  33188. 3309 2005-06-21 08:00:49 248 463 2005-06-29 04:11:49 2 2006-02-16 02:30:53
  33189. 3310 2005-06-21 08:04:51 1717 395 2005-06-22 04:20:51 2 2006-02-16 02:30:53
  33190. 3311 2005-06-21 08:05:27 3438 518 2005-06-22 06:51:27 2 2006-02-16 02:30:53
  33191. 3312 2005-06-21 08:05:32 1008 554 2005-06-27 03:34:32 2 2006-02-16 02:30:53
  33192. 3313 2005-06-21 08:11:18 4267 213 2005-06-23 04:28:18 2 2006-02-16 02:30:53
  33193. 3314 2005-06-21 08:17:00 4332 185 2005-06-22 06:00:00 2 2006-02-16 02:30:53
  33194. 3315 2005-06-21 08:17:04 4108 438 2005-06-24 11:04:04 1 2006-02-16 02:30:53
  33195. 3316 2005-06-21 08:20:18 3271 451 2005-06-28 07:44:18 1 2006-02-16 02:30:53
  33196. 3317 2005-06-21 08:22:32 4095 584 2005-06-26 14:18:32 2 2006-02-16 02:30:53
  33197. 3318 2005-06-21 08:23:05 1111 414 2005-06-27 14:07:05 2 2006-02-16 02:30:53
  33198. 3319 2005-06-21 08:25:46 2482 461 2005-06-27 03:54:46 2 2006-02-16 02:30:53
  33199. 3320 2005-06-21 08:29:41 860 47 2005-06-29 13:54:41 2 2006-02-16 02:30:53
  33200. 3321 2005-06-21 08:33:26 1750 144 2005-06-24 10:09:26 2 2006-02-16 02:30:53
  33201. 3322 2005-06-21 08:42:37 4324 458 2005-06-22 13:17:37 1 2006-02-16 02:30:53
  33202. 3323 2005-06-21 08:45:33 2252 272 2005-06-28 08:17:33 2 2006-02-16 02:30:53
  33203. 3324 2005-06-21 08:49:16 2830 29 2005-06-22 12:31:16 1 2006-02-16 02:30:53
  33204. 3325 2005-06-21 08:51:44 1720 185 2005-06-27 06:16:44 1 2006-02-16 02:30:53
  33205. 3326 2005-06-21 09:04:50 1025 347 2005-06-30 12:10:50 2 2006-02-16 02:30:53
  33206. 3327 2005-06-21 09:04:50 3083 62 2005-06-30 05:45:50 1 2006-02-16 02:30:53
  33207. 3328 2005-06-21 09:08:44 2462 292 2005-06-30 12:28:44 1 2006-02-16 02:30:53
  33208. 3329 2005-06-21 09:20:31 3506 335 2005-06-22 10:00:31 2 2006-02-16 02:30:53
  33209. 3330 2005-06-21 09:22:37 299 294 2005-06-23 07:16:37 2 2006-02-16 02:30:53
  33210. 3331 2005-06-21 09:37:53 2913 352 2005-06-26 04:01:53 2 2006-02-16 02:30:53
  33211. 3332 2005-06-21 09:55:12 1975 82 2005-06-25 08:32:12 2 2006-02-16 02:30:53
  33212. 3333 2005-06-21 10:01:36 3688 111 2005-06-25 10:27:36 2 2006-02-16 02:30:53
  33213. 3334 2005-06-21 10:04:33 2491 66 2005-06-29 06:09:33 2 2006-02-16 02:30:53
  33214. 3335 2005-06-21 10:09:08 3033 339 2005-06-27 11:33:08 1 2006-02-16 02:30:53
  33215. 3336 2005-06-21 10:14:27 2122 173 2005-06-22 09:29:27 1 2006-02-16 02:30:53
  33216. 3337 2005-06-21 10:24:35 1176 318 2005-06-22 13:51:35 1 2006-02-16 02:30:53
  33217. 3338 2005-06-21 10:27:31 2097 171 2005-06-30 14:15:31 2 2006-02-16 02:30:53
  33218. 3339 2005-06-21 10:37:11 312 526 2005-06-30 05:04:11 2 2006-02-16 02:30:53
  33219. 3340 2005-06-21 10:37:23 2962 540 2005-06-26 07:21:23 2 2006-02-16 02:30:53
  33220. 3341 2005-06-21 10:37:25 2189 591 2005-06-26 15:38:25 1 2006-02-16 02:30:53
  33221. 3342 2005-06-21 10:46:36 2884 196 2005-06-23 09:46:36 2 2006-02-16 02:30:53
  33222. 3343 2005-06-21 10:56:59 2038 466 2005-06-25 16:41:59 1 2006-02-16 02:30:53
  33223. 3344 2005-06-21 10:57:27 4401 277 2005-06-28 10:53:27 1 2006-02-16 02:30:53
  33224. 3345 2005-06-21 11:05:07 4442 71 2005-06-26 15:14:07 2 2006-02-16 02:30:53
  33225. 3346 2005-06-21 11:06:53 4393 189 2005-06-22 15:19:53 2 2006-02-16 02:30:53
  33226. 3347 2005-06-21 11:08:32 4330 448 2005-06-28 09:59:32 1 2006-02-16 02:30:53
  33227. 3348 2005-06-21 11:16:42 2945 16 2005-06-27 13:50:42 2 2006-02-16 02:30:53
  33228. 3349 2005-06-21 11:17:35 3885 336 2005-06-22 12:51:35 2 2006-02-16 02:30:53
  33229. 3350 2005-06-21 11:21:38 3221 20 2005-06-28 15:37:38 2 2006-02-16 02:30:53
  33230. 3351 2005-06-21 11:21:39 1591 386 2005-06-23 07:23:39 2 2006-02-16 02:30:53
  33231. 3352 2005-06-21 11:26:29 578 510 2005-06-28 07:26:29 1 2006-02-16 02:30:53
  33232. 3353 2005-06-21 11:29:23 3984 236 2005-06-27 15:06:23 1 2006-02-16 02:30:53
  33233. 3354 2005-06-21 11:29:49 1083 529 2005-06-25 07:39:49 2 2006-02-16 02:30:53
  33234. 3355 2005-06-21 11:30:47 1960 275 2005-06-23 06:04:47 1 2006-02-16 02:30:53
  33235. 3356 2005-06-21 11:38:45 4532 403 2005-06-26 17:18:45 1 2006-02-16 02:30:53
  33236. 3357 2005-06-21 11:55:42 2528 57 2005-06-22 07:19:42 2 2006-02-16 02:30:53
  33237. 3358 2005-06-21 11:56:40 1772 69 2005-06-26 08:28:40 2 2006-02-16 02:30:53
  33238. 3359 2005-06-21 12:08:18 3825 67 2005-06-25 16:35:18 2 2006-02-16 02:30:53
  33239. 3360 2005-06-21 12:12:41 2792 498 2005-06-26 06:32:41 1 2006-02-16 02:30:53
  33240. 3361 2005-06-21 12:14:23 2671 268 2005-06-26 10:01:23 2 2006-02-16 02:30:53
  33241. 3362 2005-06-21 12:19:54 1284 454 2005-06-23 06:59:54 2 2006-02-16 02:30:53
  33242. 3363 2005-06-21 12:25:07 538 261 2005-06-27 11:52:07 2 2006-02-16 02:30:53
  33243. 3364 2005-06-21 12:37:46 2329 201 2005-06-28 07:18:46 2 2006-02-16 02:30:53
  33244. 3365 2005-06-21 12:55:48 657 133 2005-06-23 13:38:48 2 2006-02-16 02:30:53
  33245. 3366 2005-06-21 13:03:37 2584 511 2005-06-26 16:29:37 1 2006-02-16 02:30:53
  33246. 3367 2005-06-21 13:08:21 2442 80 2005-06-26 08:43:21 2 2006-02-16 02:30:53
  33247. 3368 2005-06-21 13:18:38 548 438 2005-06-23 11:13:38 1 2006-02-16 02:30:53
  33248. 3369 2005-06-21 13:20:31 303 431 2005-06-30 13:45:31 2 2006-02-16 02:30:53
  33249. 3370 2005-06-21 13:27:01 1573 559 2005-06-25 09:27:01 1 2006-02-16 02:30:53
  33250. 3371 2005-06-21 13:27:22 2526 595 2005-06-29 14:04:22 2 2006-02-16 02:30:53
  33251. 3372 2005-06-21 13:34:19 4169 346 2005-06-27 08:41:19 2 2006-02-16 02:30:53
  33252. 3373 2005-06-21 13:35:32 2219 316 2005-06-30 12:03:32 1 2006-02-16 02:30:53
  33253. 3374 2005-06-21 13:36:30 1067 279 2005-06-23 15:10:30 2 2006-02-16 02:30:53
  33254. 3375 2005-06-21 13:37:18 912 279 2005-06-22 11:26:18 2 2006-02-16 02:30:53
  33255. 3376 2005-06-21 13:43:02 3055 318 2005-06-28 18:07:02 1 2006-02-16 02:30:53
  33256. 3377 2005-06-21 13:51:12 1845 428 2005-06-22 18:16:12 1 2006-02-16 02:30:53
  33257. 3378 2005-06-21 13:51:28 35 387 2005-06-25 09:21:28 1 2006-02-16 02:30:53
  33258. 3379 2005-06-21 13:54:58 2022 566 2005-06-23 13:43:58 2 2006-02-16 02:30:53
  33259. 3380 2005-06-21 13:58:46 3212 483 2005-06-30 09:29:46 1 2006-02-16 02:30:53
  33260. 3381 2005-06-21 14:02:59 1373 183 2005-06-29 18:11:59 2 2006-02-16 02:30:53
  33261. 3382 2005-06-21 14:05:23 131 341 2005-06-29 19:13:23 2 2006-02-16 02:30:53
  33262. 3383 2005-06-21 14:07:19 2968 239 2005-06-29 17:00:19 2 2006-02-16 02:30:53
  33263. 3384 2005-06-21 14:07:35 409 91 2005-06-26 16:34:35 1 2006-02-16 02:30:53
  33264. 3385 2005-06-21 14:16:48 2810 514 2005-06-24 10:32:48 2 2006-02-16 02:30:53
  33265. 3386 2005-06-21 14:21:06 1224 190 2005-06-24 08:32:06 2 2006-02-16 02:30:53
  33266. 3387 2005-06-21 14:21:49 2709 305 2005-06-24 16:46:49 2 2006-02-16 02:30:53
  33267. 3388 2005-06-21 14:34:51 556 119 2005-06-28 18:19:51 1 2006-02-16 02:30:53
  33268. 3389 2005-06-21 14:37:55 727 395 2005-06-28 18:13:55 1 2006-02-16 02:30:53
  33269. 3390 2005-06-21 15:10:50 2034 151 2005-06-26 12:38:50 1 2006-02-16 02:30:53
  33270. 3391 2005-06-21 15:11:02 26 45 2005-06-25 14:12:02 1 2006-02-16 02:30:53
  33271. 3392 2005-06-21 15:12:44 3343 38 2005-06-29 18:19:44 1 2006-02-16 02:30:53
  33272. 3393 2005-06-21 15:14:27 1631 362 2005-06-25 19:54:27 2 2006-02-16 02:30:53
  33273. 3394 2005-06-21 15:17:39 3393 295 2005-06-30 13:55:39 2 2006-02-16 02:30:53
  33274. 3395 2005-06-21 15:19:19 3764 66 2005-06-29 14:23:19 2 2006-02-16 02:30:53
  33275. 3396 2005-06-21 15:23:08 2744 371 2005-06-23 10:25:08 1 2006-02-16 02:30:53
  33276. 3397 2005-06-21 15:30:11 602 552 2005-06-22 21:12:11 1 2006-02-16 02:30:53
  33277. 3398 2005-06-21 15:34:38 221 599 2005-06-29 11:23:38 1 2006-02-16 02:30:53
  33278. 3399 2005-06-21 15:47:48 619 98 2005-06-26 13:46:48 1 2006-02-16 02:30:53
  33279. 3400 2005-06-21 15:50:30 1697 298 2005-06-25 18:07:30 1 2006-02-16 02:30:53
  33280. 3401 2005-06-21 15:52:43 3423 577 2005-06-30 21:09:43 2 2006-02-16 02:30:53
  33281. 3402 2005-06-21 15:54:37 596 187 2005-06-30 13:43:37 1 2006-02-16 02:30:53
  33282. 3403 2005-06-21 15:55:06 1741 264 2005-06-27 12:34:06 1 2006-02-16 02:30:53
  33283. 3404 2005-06-21 15:57:52 2005 424 2005-06-24 20:58:52 2 2006-02-16 02:30:53
  33284. 3405 2005-06-21 15:58:25 2344 155 2005-06-23 10:58:25 1 2006-02-16 02:30:53
  33285. 3406 2005-06-21 16:00:18 2049 203 2005-06-23 18:25:18 1 2006-02-16 02:30:53
  33286. 3407 2005-06-21 16:14:02 3919 343 2005-06-24 15:38:02 2 2006-02-16 02:30:53
  33287. 3408 2005-06-21 16:15:11 3453 282 2005-06-27 14:55:11 1 2006-02-16 02:30:53
  33288. 3409 2005-06-21 16:17:38 3374 429 2005-06-22 14:16:38 1 2006-02-16 02:30:53
  33289. 3410 2005-06-21 16:20:47 1197 321 2005-06-24 19:09:47 2 2006-02-16 02:30:53
  33290. 3411 2005-06-21 16:31:27 4250 12 2005-06-28 12:27:27 2 2006-02-16 02:30:53
  33291. 3412 2005-06-21 16:44:31 3036 501 2005-06-28 16:15:31 2 2006-02-16 02:30:53
  33292. 3413 2005-06-21 16:57:07 666 322 2005-06-30 12:03:07 2 2006-02-16 02:30:53
  33293. 3414 2005-06-21 16:58:50 2929 226 2005-06-24 17:26:50 1 2006-02-16 02:30:53
  33294. 3415 2005-06-21 16:59:49 3540 444 2005-06-27 17:19:49 1 2006-02-16 02:30:53
  33295. 3416 2005-06-21 17:05:29 1215 76 2005-06-23 17:58:29 2 2006-02-16 02:30:53
  33296. 3417 2005-06-21 17:06:20 874 282 2005-06-23 17:00:20 2 2006-02-16 02:30:53
  33297. 3418 2005-06-21 17:06:38 4115 85 2005-06-25 19:43:38 1 2006-02-16 02:30:53
  33298. 3419 2005-06-21 17:18:01 4022 22 2005-06-22 15:08:01 1 2006-02-16 02:30:53
  33299. 3420 2005-06-21 17:22:36 2523 27 2005-06-28 12:34:36 1 2006-02-16 02:30:53
  33300. 3421 2005-06-21 17:22:58 3930 346 2005-06-24 18:57:58 1 2006-02-16 02:30:53
  33301. 3422 2005-06-21 17:24:40 2724 251 2005-06-29 13:59:40 2 2006-02-16 02:30:53
  33302. 3423 2005-06-21 17:38:02 3612 19 2005-06-23 19:47:02 1 2006-02-16 02:30:53
  33303. 3424 2005-06-21 17:42:51 1279 583 2005-06-24 23:22:51 2 2006-02-16 02:30:53
  33304. 3425 2005-06-21 18:07:07 4548 381 2005-06-27 22:59:07 2 2006-02-16 02:30:53
  33305. 3426 2005-06-21 18:12:10 3019 95 2005-06-23 18:22:10 1 2006-02-16 02:30:53
  33306. 3427 2005-06-21 18:31:09 560 561 2005-06-22 14:18:09 2 2006-02-16 02:30:53
  33307. 3428 2005-06-21 18:39:34 1959 40 2005-06-22 18:23:34 2 2006-02-16 02:30:53
  33308. 3429 2005-06-21 18:46:05 456 599 2005-06-30 17:28:05 1 2006-02-16 02:30:53
  33309. 3430 2005-06-21 18:46:08 1613 503 2005-06-22 13:49:08 2 2006-02-16 02:30:53
  33310. 3431 2005-06-21 18:46:48 133 516 2005-06-26 23:08:48 1 2006-02-16 02:30:53
  33311. 3432 2005-06-21 19:02:03 1814 216 2005-06-25 00:57:03 2 2006-02-16 02:30:53
  33312. 3433 2005-06-21 19:07:19 1077 228 2005-06-29 18:01:19 2 2006-02-16 02:30:53
  33313. 3434 2005-06-21 19:08:28 2295 141 2005-06-23 14:25:28 1 2006-02-16 02:30:53
  33314. 3435 2005-06-21 19:14:58 451 591 2005-06-24 19:58:58 1 2006-02-16 02:30:53
  33315. 3436 2005-06-21 19:16:09 2740 137 2005-06-30 13:58:09 2 2006-02-16 02:30:53
  33316. 3437 2005-06-21 19:20:17 1798 211 2005-07-01 01:09:17 2 2006-02-16 02:30:53
  33317. 3438 2005-06-21 19:31:40 1757 556 2005-06-30 19:08:40 1 2006-02-16 02:30:53
  33318. 3439 2005-06-21 19:36:15 1529 46 2005-06-23 14:54:15 2 2006-02-16 02:30:53
  33319. 3440 2005-06-21 19:58:18 853 491 2005-06-27 22:08:18 1 2006-02-16 02:30:53
  33320. 3441 2005-06-21 20:00:12 2863 326 2005-06-24 00:24:12 2 2006-02-16 02:30:53
  33321. 3442 2005-06-21 20:06:51 1896 255 2005-06-25 17:35:51 2 2006-02-16 02:30:53
  33322. 3443 2005-06-21 20:19:00 1639 377 2005-06-30 15:39:00 1 2006-02-16 02:30:53
  33323. 3444 2005-06-21 20:39:39 493 45 2005-06-25 23:44:39 2 2006-02-16 02:30:53
  33324. 3445 2005-06-21 20:40:28 2381 74 2005-06-29 00:47:28 2 2006-02-16 02:30:53
  33325. 3446 2005-06-21 20:45:51 1817 174 2005-06-26 17:02:51 1 2006-02-16 02:30:53
  33326. 3447 2005-06-21 20:53:31 1146 25 2005-06-24 02:20:31 2 2006-02-16 02:30:53
  33327. 3448 2005-06-21 20:59:20 592 476 2005-06-24 15:40:20 1 2006-02-16 02:30:53
  33328. 3449 2005-06-21 21:01:27 210 181 2005-06-27 21:20:27 1 2006-02-16 02:30:53
  33329. 3450 2005-06-21 21:01:57 2268 126 2005-06-25 23:57:57 1 2006-02-16 02:30:53
  33330. 3451 2005-06-21 21:10:39 3489 558 2005-06-30 19:03:39 2 2006-02-16 02:30:53
  33331. 3452 2005-06-21 21:11:27 2646 293 2005-06-24 16:31:27 1 2006-02-16 02:30:53
  33332. 3453 2005-06-21 21:12:11 842 278 2005-06-23 17:39:11 2 2006-02-16 02:30:53
  33333. 3454 2005-06-21 21:12:13 3009 524 2005-06-25 23:23:13 1 2006-02-16 02:30:53
  33334. 3455 2005-06-21 21:17:51 4403 340 2005-06-23 17:22:51 1 2006-02-16 02:30:53
  33335. 3456 2005-06-21 21:19:47 1119 150 2005-06-28 18:18:47 2 2006-02-16 02:30:53
  33336. 3457 2005-06-21 21:42:33 883 312 2005-06-30 19:54:33 2 2006-02-16 02:30:53
  33337. 3458 2005-06-21 21:42:49 2136 338 2005-06-29 01:26:49 1 2006-02-16 02:30:53
  33338. 3459 2005-06-21 21:45:47 3080 97 2005-06-25 00:46:47 1 2006-02-16 02:30:53
  33339. 3460 2005-06-21 21:46:56 1765 236 2005-06-29 20:08:56 1 2006-02-16 02:30:53
  33340. 3461 2005-06-21 21:49:18 1715 23 2005-06-26 19:51:18 1 2006-02-16 02:30:53
  33341. 3462 2005-06-21 21:52:52 547 568 2005-06-28 21:41:52 1 2006-02-16 02:30:53
  33342. 3463 2005-06-21 22:00:00 3436 96 2005-06-22 19:22:00 2 2006-02-16 02:30:53
  33343. 3464 2005-06-21 22:08:58 2698 251 2005-06-26 16:23:58 2 2006-02-16 02:30:53
  33344. 3465 2005-06-21 22:10:01 1488 510 2005-06-30 21:35:01 1 2006-02-16 02:30:53
  33345. 3466 2005-06-21 22:13:33 371 226 2005-06-25 21:01:33 2 2006-02-16 02:30:53
  33346. 3467 2005-06-21 22:19:25 729 543 2005-06-27 00:03:25 2 2006-02-16 02:30:53
  33347. 3468 2005-06-21 22:43:45 2899 100 2005-06-30 01:49:45 1 2006-02-16 02:30:53
  33348. 3469 2005-06-21 22:48:59 4087 181 2005-06-28 19:32:59 1 2006-02-16 02:30:53
  33349. 3470 2005-07-05 22:49:24 883 565 2005-07-07 19:36:24 1 2006-02-16 02:30:53
  33350. 3471 2005-07-05 22:51:44 1724 242 2005-07-13 01:38:44 2 2006-02-16 02:30:53
  33351. 3472 2005-07-05 22:56:33 841 37 2005-07-13 17:18:33 2 2006-02-16 02:30:53
  33352. 3473 2005-07-05 22:57:34 2735 60 2005-07-12 23:53:34 1 2006-02-16 02:30:53
  33353. 3474 2005-07-05 22:59:53 97 594 2005-07-08 20:32:53 1 2006-02-16 02:30:53
  33354. 3475 2005-07-05 23:01:21 2189 8 2005-07-13 23:07:21 2 2006-02-16 02:30:53
  33355. 3476 2005-07-05 23:02:37 3011 490 2005-07-10 22:17:37 2 2006-02-16 02:30:53
  33356. 3477 2005-07-05 23:05:17 4289 476 2005-07-15 02:20:17 2 2006-02-16 02:30:53
  33357. 3478 2005-07-05 23:05:44 2528 322 2005-07-07 00:14:44 2 2006-02-16 02:30:53
  33358. 3479 2005-07-05 23:08:53 2277 298 2005-07-11 21:42:53 1 2006-02-16 02:30:53
  33359. 3480 2005-07-05 23:11:43 1488 382 2005-07-12 02:01:43 2 2006-02-16 02:30:53
  33360. 3481 2005-07-05 23:13:07 3575 138 2005-07-07 20:36:07 2 2006-02-16 02:30:53
  33361. 3482 2005-07-05 23:13:22 1291 520 2005-07-12 19:02:22 2 2006-02-16 02:30:53
  33362. 3483 2005-07-05 23:13:51 79 536 2005-07-13 18:31:51 1 2006-02-16 02:30:53
  33363. 3484 2005-07-05 23:23:11 1934 114 2005-07-11 00:27:11 2 2006-02-16 02:30:53
  33364. 3485 2005-07-05 23:25:54 117 111 2005-07-09 17:38:54 1 2006-02-16 02:30:53
  33365. 3486 2005-07-05 23:29:55 4067 296 2005-07-13 19:54:55 1 2006-02-16 02:30:53
  33366. 3487 2005-07-05 23:30:36 1575 586 2005-07-11 04:00:36 1 2006-02-16 02:30:53
  33367. 3488 2005-07-05 23:32:49 898 349 2005-07-15 02:01:49 2 2006-02-16 02:30:53
  33368. 3489 2005-07-05 23:33:40 2936 397 2005-07-15 02:15:40 2 2006-02-16 02:30:53
  33369. 3490 2005-07-05 23:37:13 3041 369 2005-07-12 22:07:13 1 2006-02-16 02:30:53
  33370. 3491 2005-07-05 23:41:08 1835 421 2005-07-13 21:53:08 1 2006-02-16 02:30:53
  33371. 3492 2005-07-05 23:44:37 980 142 2005-07-14 03:54:37 1 2006-02-16 02:30:53
  33372. 3493 2005-07-05 23:46:19 473 169 2005-07-15 02:31:19 1 2006-02-16 02:30:53
  33373. 3494 2005-07-05 23:47:30 3149 348 2005-07-11 18:10:30 1 2006-02-16 02:30:53
  33374. 3495 2005-07-05 23:50:04 2306 553 2005-07-10 01:06:04 1 2006-02-16 02:30:53
  33375. 3496 2005-07-05 23:59:15 2430 295 2005-07-09 19:39:15 2 2006-02-16 02:30:53
  33376. 3497 2005-07-06 00:00:03 1970 299 2005-07-09 01:27:03 1 2006-02-16 02:30:53
  33377. 3498 2005-07-06 00:02:08 1869 444 2005-07-10 00:19:08 1 2006-02-16 02:30:53
  33378. 3499 2005-07-06 00:04:20 1850 520 2005-07-14 21:12:20 2 2006-02-16 02:30:53
  33379. 3500 2005-07-06 00:11:13 2447 32 2005-07-13 19:01:13 2 2006-02-16 02:30:53
  33380. 3501 2005-07-06 00:11:28 2219 270 2005-07-10 20:32:28 2 2006-02-16 02:30:53
  33381. 3502 2005-07-06 00:15:06 1026 126 2005-07-13 01:35:06 1 2006-02-16 02:30:53
  33382. 3503 2005-07-06 00:17:24 2944 449 2005-07-08 03:47:24 1 2006-02-16 02:30:53
  33383. 3504 2005-07-06 00:18:29 268 209 2005-07-10 00:24:29 2 2006-02-16 02:30:53
  33384. 3505 2005-07-06 00:19:32 2630 331 2005-07-14 20:14:32 2 2006-02-16 02:30:53
  33385. 3506 2005-07-06 00:22:29 19 459 2005-07-07 22:15:29 1 2006-02-16 02:30:53
  33386. 3507 2005-07-06 00:23:43 166 480 2005-07-15 04:19:43 1 2006-02-16 02:30:53
  33387. 3508 2005-07-06 00:24:25 2381 34 2005-07-10 05:38:25 2 2006-02-16 02:30:53
  33388. 3509 2005-07-06 00:24:57 4394 182 2005-07-09 18:48:57 2 2006-02-16 02:30:53
  33389. 3510 2005-07-06 00:27:41 2250 443 2005-07-14 23:20:41 2 2006-02-16 02:30:53
  33390. 3511 2005-07-06 00:42:01 2128 494 2005-07-09 23:08:01 1 2006-02-16 02:30:53
  33391. 3512 2005-07-06 00:43:06 371 291 2005-07-12 06:18:06 2 2006-02-16 02:30:53
  33392. 3513 2005-07-06 00:45:57 4225 223 2005-07-11 19:04:57 2 2006-02-16 02:30:53
  33393. 3514 2005-07-06 00:46:54 4546 536 2005-07-09 05:47:54 1 2006-02-16 02:30:53
  33394. 3515 2005-07-06 00:48:55 3220 131 2005-07-09 00:15:55 1 2006-02-16 02:30:53
  33395. 3516 2005-07-06 00:50:30 385 338 2005-07-09 19:12:30 2 2006-02-16 02:30:53
  33396. 3517 2005-07-06 00:52:35 2762 314 2005-07-08 20:10:35 2 2006-02-16 02:30:53
  33397. 3518 2005-07-06 00:56:03 2502 167 2005-07-14 02:27:03 1 2006-02-16 02:30:53
  33398. 3519 2005-07-06 00:57:29 4314 320 2005-07-10 21:12:29 2 2006-02-16 02:30:53
  33399. 3520 2005-07-06 00:58:27 2872 102 2005-07-14 05:56:27 1 2006-02-16 02:30:53
  33400. 3521 2005-07-06 01:00:11 1440 262 2005-07-11 19:15:11 2 2006-02-16 02:30:53
  33401. 3522 2005-07-06 01:00:21 4522 469 2005-07-11 01:18:21 1 2006-02-16 02:30:53
  33402. 3523 2005-07-06 01:01:38 2171 549 2005-07-10 20:24:38 2 2006-02-16 02:30:53
  33403. 3524 2005-07-06 01:01:51 1626 88 2005-07-11 19:52:51 2 2006-02-16 02:30:53
  33404. 3525 2005-07-06 01:02:39 208 51 2005-07-14 02:27:39 1 2006-02-16 02:30:53
  33405. 3526 2005-07-06 01:03:29 3871 469 2005-07-15 01:22:29 2 2006-02-16 02:30:53
  33406. 3527 2005-07-06 01:11:08 4537 389 2005-07-08 01:21:08 1 2006-02-16 02:30:53
  33407. 3528 2005-07-06 01:13:27 1954 201 2005-07-06 23:45:27 2 2006-02-16 02:30:53
  33408. 3529 2005-07-06 01:15:26 4316 350 2005-07-07 04:28:26 1 2006-02-16 02:30:53
  33409. 3530 2005-07-06 01:22:45 4542 168 2005-07-10 03:23:45 1 2006-02-16 02:30:53
  33410. 3531 2005-07-06 01:24:08 1890 165 2005-07-11 22:00:08 2 2006-02-16 02:30:53
  33411. 3532 2005-07-06 01:24:38 2635 274 2005-07-11 06:42:38 2 2006-02-16 02:30:53
  33412. 3533 2005-07-06 01:26:44 2028 206 2005-07-14 21:37:44 1 2006-02-16 02:30:53
  33413. 3534 2005-07-06 01:32:27 2055 283 2005-07-08 23:14:27 1 2006-02-16 02:30:53
  33414. 3535 2005-07-06 01:32:46 4214 65 2005-07-11 03:15:46 1 2006-02-16 02:30:53
  33415. 3536 2005-07-06 01:36:11 2328 339 2005-07-12 20:00:11 2 2006-02-16 02:30:53
  33416. 3537 2005-07-06 01:36:53 4220 479 2005-07-13 07:01:53 2 2006-02-16 02:30:53
  33417. 3538 2005-07-06 01:37:07 4361 228 2005-07-11 06:02:07 2 2006-02-16 02:30:53
  33418. 3539 2005-07-06 01:39:08 4081 444 2005-07-07 05:38:08 1 2006-02-16 02:30:53
  33419. 3540 2005-07-06 01:47:20 1295 97 2005-07-08 23:48:20 2 2006-02-16 02:30:53
  33420. 3541 2005-07-06 01:50:11 1204 501 2005-07-12 03:24:11 1 2006-02-16 02:30:53
  33421. 3542 2005-07-06 01:51:42 4391 593 2005-07-11 03:29:42 1 2006-02-16 02:30:53
  33422. 3543 2005-07-06 02:01:08 3997 394 2005-07-07 03:14:08 1 2006-02-16 02:30:53
  33423. 3544 2005-07-06 02:06:32 3098 115 2005-07-09 04:35:32 2 2006-02-16 02:30:53
  33424. 3545 2005-07-06 02:16:17 3924 442 2005-07-11 00:54:17 1 2006-02-16 02:30:53
  33425. 3546 2005-07-06 02:17:54 959 594 2005-07-07 00:19:54 1 2006-02-16 02:30:53
  33426. 3547 2005-07-06 02:18:06 2730 239 2005-07-08 05:24:06 1 2006-02-16 02:30:53
  33427. 3548 2005-07-06 02:23:39 4498 16 2005-07-08 07:53:39 2 2006-02-16 02:30:53
  33428. 3549 2005-07-06 02:24:55 3921 19 2005-07-06 21:40:55 2 2006-02-16 02:30:53
  33429. 3550 2005-07-06 02:29:21 2417 15 2005-07-13 05:26:21 2 2006-02-16 02:30:53
  33430. 3551 2005-07-06 02:33:48 3602 111 2005-07-13 04:38:48 1 2006-02-16 02:30:53
  33431. 3552 2005-07-06 02:34:09 1099 239 2005-07-12 05:31:09 1 2006-02-16 02:30:53
  33432. 3553 2005-07-06 02:35:41 4510 422 2005-07-08 06:38:41 2 2006-02-16 02:30:53
  33433. 3554 2005-07-06 02:37:10 793 538 2005-07-09 01:58:10 1 2006-02-16 02:30:53
  33434. 3555 2005-07-06 02:45:35 869 537 2005-07-10 07:17:35 1 2006-02-16 02:30:53
  33435. 3556 2005-07-06 02:46:13 3142 273 2005-07-06 22:08:13 1 2006-02-16 02:30:53
  33436. 3557 2005-07-06 02:48:39 3832 292 2005-07-08 22:52:39 2 2006-02-16 02:30:53
  33437. 3558 2005-07-06 02:49:06 1742 575 2005-07-15 01:38:06 2 2006-02-16 02:30:53
  33438. 3559 2005-07-06 02:49:42 2211 483 2005-07-12 04:44:42 1 2006-02-16 02:30:53
  33439. 3560 2005-07-06 02:51:37 888 592 2005-07-10 01:35:37 2 2006-02-16 02:30:53
  33440. 3561 2005-07-06 02:54:33 213 231 2005-07-14 07:44:33 2 2006-02-16 02:30:53
  33441. 3562 2005-07-06 02:54:36 1660 587 2005-07-11 05:48:36 1 2006-02-16 02:30:53
  33442. 3563 2005-07-06 02:57:01 4261 210 2005-07-14 02:25:01 2 2006-02-16 02:30:53
  33443. 3564 2005-07-06 03:02:13 1096 402 2005-07-13 01:41:13 2 2006-02-16 02:30:53
  33444. 3565 2005-07-06 03:02:58 599 97 2005-07-13 21:31:58 2 2006-02-16 02:30:53
  33445. 3566 2005-07-06 03:08:51 2774 392 2005-07-12 05:04:51 1 2006-02-16 02:30:53
  33446. 3567 2005-07-06 03:09:36 27 355 2005-07-12 02:15:36 1 2006-02-16 02:30:53
  33447. 3568 2005-07-06 03:11:57 2084 283 2005-07-15 03:14:57 1 2006-02-16 02:30:53
  33448. 3569 2005-07-06 03:17:23 1929 496 2005-07-14 03:58:23 1 2006-02-16 02:30:53
  33449. 3570 2005-07-06 03:23:43 1300 450 2005-07-14 07:28:43 2 2006-02-16 02:30:53
  33450. 3571 2005-07-06 03:32:31 4166 580 2005-07-11 06:15:31 1 2006-02-16 02:30:53
  33451. 3572 2005-07-06 03:33:23 1915 284 2005-07-08 07:54:23 1 2006-02-16 02:30:53
  33452. 3573 2005-07-06 03:33:48 146 66 2005-07-07 22:39:48 1 2006-02-16 02:30:53
  33453. 3574 2005-07-06 03:36:01 2799 225 2005-07-10 01:29:01 2 2006-02-16 02:30:53
  33454. 3575 2005-07-06 03:36:19 3234 49 2005-07-08 06:21:19 1 2006-02-16 02:30:53
  33455. 3576 2005-07-06 03:40:01 324 227 2005-07-15 07:22:01 1 2006-02-16 02:30:53
  33456. 3577 2005-07-06 03:40:36 4390 152 2005-07-10 05:54:36 2 2006-02-16 02:30:53
  33457. 3578 2005-07-06 03:47:05 2954 263 2005-07-08 02:26:05 1 2006-02-16 02:30:53
  33458. 3579 2005-07-06 03:47:47 3309 485 2005-07-08 02:16:47 2 2006-02-16 02:30:53
  33459. 3580 2005-07-06 03:48:44 3837 200 2005-07-13 01:15:44 2 2006-02-16 02:30:53
  33460. 3581 2005-07-06 03:57:35 4520 235 2005-07-07 08:07:35 2 2006-02-16 02:30:53
  33461. 3582 2005-07-06 04:10:35 1866 297 2005-07-11 01:29:35 2 2006-02-16 02:30:53
  33462. 3583 2005-07-06 04:10:43 204 574 2005-07-14 22:17:43 2 2006-02-16 02:30:53
  33463. 3584 2005-07-06 04:16:43 367 207 2005-07-13 07:08:43 1 2006-02-16 02:30:53
  33464. 3585 2005-07-06 04:22:36 2726 266 2005-07-09 06:16:36 2 2006-02-16 02:30:53
  33465. 3586 2005-07-06 04:24:42 616 493 2005-07-09 02:37:42 1 2006-02-16 02:30:53
  33466. 3587 2005-07-06 04:27:52 462 110 2005-07-13 08:19:52 1 2006-02-16 02:30:53
  33467. 3588 2005-07-06 04:29:13 3154 289 2005-07-07 23:49:13 1 2006-02-16 02:30:53
  33468. 3589 2005-07-06 04:30:18 3740 137 2005-07-10 09:18:18 1 2006-02-16 02:30:53
  33469. 3590 2005-07-06 04:35:12 1510 283 2005-07-10 05:14:12 2 2006-02-16 02:30:53
  33470. 3591 2005-07-06 04:37:10 1241 53 2005-07-09 23:32:10 1 2006-02-16 02:30:53
  33471. 3592 2005-07-06 04:38:50 1272 286 2005-07-15 06:36:50 2 2006-02-16 02:30:53
  33472. 3593 2005-07-06 04:39:52 619 78 2005-07-11 23:20:52 2 2006-02-16 02:30:53
  33473. 3594 2005-07-06 04:42:47 4566 522 2005-07-10 00:49:47 1 2006-02-16 02:30:53
  33474. 3595 2005-07-06 04:59:49 1431 92 2005-07-15 06:26:49 2 2006-02-16 02:30:53
  33475. 3596 2005-07-06 05:03:11 594 419 2005-07-07 05:30:11 2 2006-02-16 02:30:53
  33476. 3597 2005-07-06 05:03:59 4080 35 2005-07-13 06:49:59 2 2006-02-16 02:30:53
  33477. 3598 2005-07-06 05:11:04 1317 68 2005-07-09 02:03:04 2 2006-02-16 02:30:53
  33478. 3599 2005-07-06 05:16:36 3262 577 2005-07-13 07:14:36 2 2006-02-16 02:30:53
  33479. 3600 2005-07-06 05:19:42 2748 511 2005-07-11 00:34:42 2 2006-02-16 02:30:53
  33480. 3601 2005-07-06 05:20:25 2806 205 2005-07-15 03:13:25 1 2006-02-16 02:30:53
  33481. 3602 2005-07-06 05:23:10 2192 100 2005-07-15 03:22:10 2 2006-02-16 02:30:53
  33482. 3603 2005-07-06 05:25:03 2442 330 2005-07-12 08:14:03 1 2006-02-16 02:30:53
  33483. 3604 2005-07-06 05:25:22 1380 242 2005-07-07 23:52:22 1 2006-02-16 02:30:53
  33484. 3605 2005-07-06 05:27:15 384 347 2005-07-10 00:05:15 2 2006-02-16 02:30:53
  33485. 3606 2005-07-06 05:28:02 1737 166 2005-07-10 04:51:02 1 2006-02-16 02:30:53
  33486. 3607 2005-07-06 05:30:09 542 335 2005-07-08 01:36:09 2 2006-02-16 02:30:53
  33487. 3608 2005-07-06 05:35:39 3095 368 2005-07-10 07:46:39 2 2006-02-16 02:30:53
  33488. 3609 2005-07-06 05:36:22 1064 373 2005-07-10 05:55:22 1 2006-02-16 02:30:53
  33489. 3610 2005-07-06 05:36:59 1509 348 2005-07-13 07:07:59 1 2006-02-16 02:30:53
  33490. 3611 2005-07-06 05:37:18 4502 86 2005-07-10 05:14:18 1 2006-02-16 02:30:53
  33491. 3612 2005-07-06 05:37:26 2465 402 2005-07-14 01:51:26 1 2006-02-16 02:30:53
  33492. 3613 2005-07-06 05:45:53 3776 331 2005-07-07 10:02:53 1 2006-02-16 02:30:53
  33493. 3614 2005-07-06 05:46:05 853 502 2005-07-11 01:24:05 2 2006-02-16 02:30:53
  33494. 3615 2005-07-06 05:47:47 711 49 2005-07-11 05:01:47 1 2006-02-16 02:30:53
  33495. 3616 2005-07-06 05:52:13 557 571 2005-07-10 10:24:13 1 2006-02-16 02:30:53
  33496. 3617 2005-07-06 05:58:06 1337 125 2005-07-13 02:10:06 1 2006-02-16 02:30:53
  33497. 3618 2005-07-06 05:58:45 330 264 2005-07-15 09:13:45 2 2006-02-16 02:30:53
  33498. 3619 2005-07-06 05:59:44 3350 526 2005-07-11 08:58:44 2 2006-02-16 02:30:53
  33499. 3620 2005-07-06 06:01:50 1661 88 2005-07-08 05:04:50 1 2006-02-16 02:30:53
  33500. 3621 2005-07-06 06:03:55 3132 171 2005-07-11 09:25:55 2 2006-02-16 02:30:53
  33501. 3622 2005-07-06 06:05:04 3489 454 2005-07-12 03:14:04 2 2006-02-16 02:30:53
  33502. 3623 2005-07-06 06:05:23 430 80 2005-07-07 05:59:23 1 2006-02-16 02:30:53
  33503. 3624 2005-07-06 06:06:27 1778 115 2005-07-13 08:30:27 2 2006-02-16 02:30:53
  33504. 3625 2005-07-06 06:12:52 1133 175 2005-07-12 07:37:52 1 2006-02-16 02:30:53
  33505. 3626 2005-07-06 06:15:35 1599 337 2005-07-10 10:18:35 2 2006-02-16 02:30:53
  33506. 3627 2005-07-06 06:19:25 1087 322 2005-07-11 05:53:25 1 2006-02-16 02:30:53
  33507. 3628 2005-07-06 06:19:43 3509 588 2005-07-07 02:23:43 1 2006-02-16 02:30:53
  33508. 3629 2005-07-06 06:23:22 4019 441 2005-07-08 09:32:22 2 2006-02-16 02:30:53
  33509. 3630 2005-07-06 06:27:15 2448 102 2005-07-12 10:36:15 1 2006-02-16 02:30:53
  33510. 3631 2005-07-06 06:36:53 4068 47 2005-07-07 10:32:53 1 2006-02-16 02:30:53
  33511. 3632 2005-07-06 06:38:21 2583 366 2005-07-11 03:19:21 1 2006-02-16 02:30:53
  33512. 3633 2005-07-06 06:43:26 2978 95 2005-07-10 04:54:26 1 2006-02-16 02:30:53
  33513. 3634 2005-07-06 06:51:14 3688 245 2005-07-10 02:30:14 1 2006-02-16 02:30:53
  33514. 3635 2005-07-06 06:55:36 421 250 2005-07-09 07:57:36 2 2006-02-16 02:30:53
  33515. 3636 2005-07-06 07:03:52 3379 591 2005-07-08 03:14:52 2 2006-02-16 02:30:53
  33516. 3637 2005-07-06 07:06:31 3823 380 2005-07-10 02:11:31 2 2006-02-16 02:30:53
  33517. 3638 2005-07-06 07:08:17 190 452 2005-07-13 12:30:17 1 2006-02-16 02:30:53
  33518. 3639 2005-07-06 07:09:17 2812 7 2005-07-15 05:12:17 2 2006-02-16 02:30:53
  33519. 3640 2005-07-06 07:12:26 3432 271 2005-07-10 04:54:26 2 2006-02-16 02:30:53
  33520. 3641 2005-07-06 07:17:09 3834 79 2005-07-11 07:25:09 1 2006-02-16 02:30:53
  33521. 3642 2005-07-06 07:18:20 4204 166 2005-07-09 01:37:20 1 2006-02-16 02:30:53
  33522. 3643 2005-07-06 07:20:08 845 176 2005-07-11 07:01:08 1 2006-02-16 02:30:53
  33523. 3644 2005-07-06 07:20:11 4309 403 2005-07-11 10:26:11 2 2006-02-16 02:30:53
  33524. 3645 2005-07-06 07:22:09 3390 236 2005-07-10 11:45:09 1 2006-02-16 02:30:53
  33525. 3646 2005-07-06 07:28:59 3591 322 2005-07-11 05:19:59 1 2006-02-16 02:30:53
  33526. 3647 2005-07-06 07:29:17 3762 145 2005-07-13 08:32:17 1 2006-02-16 02:30:53
  33527. 3648 2005-07-06 07:30:41 2810 598 2005-07-10 06:00:41 2 2006-02-16 02:30:53
  33528. 3649 2005-07-06 07:32:42 3564 24 2005-07-12 09:37:42 1 2006-02-16 02:30:53
  33529. 3650 2005-07-06 07:34:15 3606 482 2005-07-08 01:50:15 2 2006-02-16 02:30:53
  33530. 3651 2005-07-06 07:40:31 3323 170 2005-07-08 03:39:31 2 2006-02-16 02:30:53
  33531. 3652 2005-07-06 07:44:30 1231 518 2005-07-08 04:41:30 1 2006-02-16 02:30:53
  33532. 3653 2005-07-06 07:45:13 2513 148 2005-07-10 11:51:13 2 2006-02-16 02:30:53
  33533. 3654 2005-07-06 07:45:31 1621 528 2005-07-12 09:59:31 2 2006-02-16 02:30:53
  33534. 3655 2005-07-06 07:52:54 1540 493 2005-07-15 10:49:54 2 2006-02-16 02:30:53
  33535. 3656 2005-07-06 07:55:22 4544 314 2005-07-13 10:36:22 2 2006-02-16 02:30:53
  33536. 3657 2005-07-06 07:55:30 4134 113 2005-07-11 07:18:30 1 2006-02-16 02:30:53
  33537. 3658 2005-07-06 08:01:08 3453 253 2005-07-15 06:36:08 1 2006-02-16 02:30:53
  33538. 3659 2005-07-06 08:03:14 2271 330 2005-07-12 09:50:14 1 2006-02-16 02:30:53
  33539. 3660 2005-07-06 08:07:29 1129 507 2005-07-14 08:46:29 1 2006-02-16 02:30:53
  33540. 3661 2005-07-06 08:10:02 2600 442 2005-07-10 10:17:02 1 2006-02-16 02:30:53
  33541. 3662 2005-07-06 08:11:48 3827 334 2005-07-09 12:25:48 2 2006-02-16 02:30:53
  33542. 3663 2005-07-06 08:15:47 2646 566 2005-07-07 08:57:47 1 2006-02-16 02:30:53
  33543. 3664 2005-07-06 08:15:57 3366 528 2005-07-08 06:11:57 1 2006-02-16 02:30:53
  33544. 3665 2005-07-06 08:23:08 922 102 2005-07-13 13:38:08 2 2006-02-16 02:30:53
  33545. 3666 2005-07-06 08:27:43 4212 347 2005-07-09 07:37:43 2 2006-02-16 02:30:53
  33546. 3667 2005-07-06 08:36:34 447 373 2005-07-15 04:25:34 2 2006-02-16 02:30:53
  33547. 3668 2005-07-06 08:36:48 269 514 2005-07-10 11:31:48 1 2006-02-16 02:30:53
  33548. 3669 2005-07-06 08:38:29 1299 530 2005-07-10 05:28:29 1 2006-02-16 02:30:53
  33549. 3670 2005-07-06 08:56:43 4271 268 2005-07-11 09:11:43 1 2006-02-16 02:30:53
  33550. 3671 2005-07-06 09:01:29 2821 179 2005-07-15 08:08:29 1 2006-02-16 02:30:53
  33551. 3672 2005-07-06 09:01:56 3883 283 2005-07-11 14:18:56 1 2006-02-16 02:30:53
  33552. 3673 2005-07-06 09:02:09 1837 88 2005-07-15 06:45:09 2 2006-02-16 02:30:53
  33553. 3674 2005-07-06 09:03:13 3686 559 2005-07-13 08:43:13 1 2006-02-16 02:30:53
  33554. 3675 2005-07-06 09:09:19 3662 282 2005-07-12 08:51:19 1 2006-02-16 02:30:53
  33555. 3676 2005-07-06 09:10:37 1967 137 2005-07-14 08:24:37 1 2006-02-16 02:30:53
  33556. 3677 2005-07-06 09:11:58 600 5 2005-07-08 10:50:58 2 2006-02-16 02:30:53
  33557. 3678 2005-07-06 09:15:15 3861 364 2005-07-10 05:01:15 1 2006-02-16 02:30:53
  33558. 3679 2005-07-06 09:15:57 2186 547 2005-07-08 03:20:57 1 2006-02-16 02:30:53
  33559. 3680 2005-07-06 09:16:10 2427 82 2005-07-08 07:52:10 2 2006-02-16 02:30:53
  33560. 3681 2005-07-06 09:19:30 3325 294 2005-07-11 09:40:30 1 2006-02-16 02:30:53
  33561. 3682 2005-07-06 09:22:48 2597 98 2005-07-14 11:17:48 2 2006-02-16 02:30:53
  33562. 3683 2005-07-06 09:25:56 3020 43 2005-07-14 12:10:56 1 2006-02-16 02:30:53
  33563. 3684 2005-07-06 09:29:22 3261 395 2005-07-12 08:19:22 1 2006-02-16 02:30:53
  33564. 3685 2005-07-06 09:30:45 2015 58 2005-07-11 15:16:45 2 2006-02-16 02:30:53
  33565. 3686 2005-07-06 09:37:50 376 548 2005-07-09 10:15:50 2 2006-02-16 02:30:53
  33566. 3687 2005-07-06 09:38:33 2040 207 2005-07-14 07:50:33 1 2006-02-16 02:30:53
  33567. 3688 2005-07-06 09:41:53 1102 380 2005-07-14 10:30:53 2 2006-02-16 02:30:53
  33568. 3689 2005-07-06 09:43:01 3168 129 2005-07-11 09:57:01 1 2006-02-16 02:30:53
  33569. 3690 2005-07-06 09:46:03 4405 435 2005-07-07 12:12:03 1 2006-02-16 02:30:53
  33570. 3691 2005-07-06 09:46:12 1937 478 2005-07-07 14:08:12 1 2006-02-16 02:30:53
  33571. 3692 2005-07-06 09:54:12 1237 286 2005-07-11 09:42:12 2 2006-02-16 02:30:53
  33572. 3693 2005-07-06 09:56:09 2989 545 2005-07-15 06:50:09 2 2006-02-16 02:30:53
  33573. 3694 2005-07-06 10:01:23 3848 419 2005-07-08 11:44:23 2 2006-02-16 02:30:53
  33574. 3695 2005-07-06 10:02:08 2823 441 2005-07-09 15:43:08 1 2006-02-16 02:30:53
  33575. 3696 2005-07-06 10:04:55 3244 497 2005-07-11 15:58:55 2 2006-02-16 02:30:53
  33576. 3697 2005-07-06 10:07:22 1223 182 2005-07-13 14:04:22 2 2006-02-16 02:30:53
  33577. 3698 2005-07-06 10:09:20 1263 461 2005-07-08 15:49:20 1 2006-02-16 02:30:53
  33578. 3699 2005-07-06 10:11:25 418 262 2005-07-14 05:18:25 1 2006-02-16 02:30:53
  33579. 3700 2005-07-06 10:12:19 343 72 2005-07-07 14:21:19 2 2006-02-16 02:30:53
  33580. 3701 2005-07-06 10:12:45 3679 31 2005-07-09 08:52:45 1 2006-02-16 02:30:53
  33581. 3702 2005-07-06 10:13:56 2204 428 2005-07-10 08:12:56 1 2006-02-16 02:30:53
  33582. 3703 2005-07-06 10:15:26 4276 421 2005-07-13 13:00:26 1 2006-02-16 02:30:53
  33583. 3704 2005-07-06 10:16:45 2687 323 2005-07-13 12:44:45 2 2006-02-16 02:30:53
  33584. 3705 2005-07-06 10:17:59 65 223 2005-07-10 15:31:59 1 2006-02-16 02:30:53
  33585. 3706 2005-07-06 10:18:01 681 132 2005-07-09 09:07:01 2 2006-02-16 02:30:53
  33586. 3707 2005-07-06 10:21:49 1080 14 2005-07-12 05:14:49 2 2006-02-16 02:30:53
  33587. 3708 2005-07-06 10:23:27 2105 201 2005-07-14 09:26:27 1 2006-02-16 02:30:53
  33588. 3709 2005-07-06 10:26:56 4033 187 2005-07-15 13:51:56 2 2006-02-16 02:30:53
  33589. 3710 2005-07-06 10:28:53 2596 228 2005-07-15 06:17:53 2 2006-02-16 02:30:53
  33590. 3711 2005-07-06 10:46:15 1914 75 2005-07-07 09:25:15 2 2006-02-16 02:30:53
  33591. 3712 2005-07-06 10:47:35 3741 504 2005-07-15 09:39:35 1 2006-02-16 02:30:53
  33592. 3713 2005-07-06 10:49:30 1823 504 2005-07-13 10:44:30 1 2006-02-16 02:30:53
  33593. 3714 2005-07-06 10:51:28 1985 276 2005-07-09 13:57:28 2 2006-02-16 02:30:53
  33594. 3715 2005-07-06 10:51:48 4456 228 2005-07-11 06:08:48 1 2006-02-16 02:30:53
  33595. 3716 2005-07-06 10:52:32 3271 92 2005-07-14 08:45:32 2 2006-02-16 02:30:53
  33596. 3717 2005-07-06 10:53:34 1677 173 2005-07-07 13:43:34 2 2006-02-16 02:30:53
  33597. 3718 2005-07-06 10:57:56 2624 56 2005-07-12 12:54:56 1 2006-02-16 02:30:53
  33598. 3719 2005-07-06 11:05:55 3573 376 2005-07-11 08:10:55 2 2006-02-16 02:30:53
  33599. 3720 2005-07-06 11:06:57 2958 96 2005-07-09 14:16:57 1 2006-02-16 02:30:53
  33600. 3721 2005-07-06 11:10:09 2654 226 2005-07-11 07:45:09 2 2006-02-16 02:30:53
  33601. 3722 2005-07-06 11:10:27 604 83 2005-07-13 12:56:27 2 2006-02-16 02:30:53
  33602. 3723 2005-07-06 11:12:02 4554 501 2005-07-14 16:45:02 2 2006-02-16 02:30:53
  33603. 3724 2005-07-06 11:12:48 3622 468 2005-07-14 14:41:48 1 2006-02-16 02:30:53
  33604. 3725 2005-07-06 11:15:04 2789 126 2005-07-09 06:39:04 1 2006-02-16 02:30:53
  33605. 3726 2005-07-06 11:15:49 742 363 2005-07-11 05:54:49 2 2006-02-16 02:30:53
  33606. 3727 2005-07-06 11:16:43 2886 57 2005-07-07 15:39:43 1 2006-02-16 02:30:53
  33607. 3728 2005-07-06 11:29:00 1798 298 2005-07-11 06:28:00 1 2006-02-16 02:30:53
  33608. 3729 2005-07-06 11:30:29 3156 90 2005-07-12 07:18:29 1 2006-02-16 02:30:53
  33609. 3730 2005-07-06 11:31:24 1665 355 2005-07-15 06:53:24 1 2006-02-16 02:30:53
  33610. 3731 2005-07-06 11:33:36 4133 558 2005-07-15 12:23:36 2 2006-02-16 02:30:53
  33611. 3732 2005-07-06 11:33:37 106 318 2005-07-08 08:31:37 1 2006-02-16 02:30:53
  33612. 3733 2005-07-06 11:33:55 3242 586 2005-07-09 10:08:55 2 2006-02-16 02:30:53
  33613. 3734 2005-07-06 11:40:27 4569 37 2005-07-14 12:08:27 1 2006-02-16 02:30:53
  33614. 3735 2005-07-06 11:42:04 2262 534 2005-07-12 14:33:04 2 2006-02-16 02:30:53
  33615. 3736 2005-07-06 11:43:44 1515 23 2005-07-13 07:55:44 2 2006-02-16 02:30:53
  33616. 3737 2005-07-06 11:45:53 123 403 2005-07-13 15:27:53 1 2006-02-16 02:30:53
  33617. 3738 2005-07-06 11:50:57 578 546 2005-07-09 08:07:57 1 2006-02-16 02:30:53
  33618. 3739 2005-07-06 11:54:18 4333 157 2005-07-09 10:48:18 1 2006-02-16 02:30:53
  33619. 3740 2005-07-06 11:55:35 1829 277 2005-07-14 09:44:35 2 2006-02-16 02:30:53
  33620. 3741 2005-07-06 12:00:18 1449 584 2005-07-12 09:02:18 2 2006-02-16 02:30:53
  33621. 3742 2005-07-06 12:01:38 2873 96 2005-07-15 10:46:38 1 2006-02-16 02:30:53
  33622. 3743 2005-07-06 12:03:54 1012 456 2005-07-13 10:56:54 2 2006-02-16 02:30:53
  33623. 3744 2005-07-06 12:10:02 3343 510 2005-07-08 11:49:02 2 2006-02-16 02:30:53
  33624. 3745 2005-07-06 12:10:32 1518 171 2005-07-12 15:20:32 1 2006-02-16 02:30:53
  33625. 3746 2005-07-06 12:10:51 3387 424 2005-07-07 11:36:51 2 2006-02-16 02:30:53
  33626. 3747 2005-07-06 12:11:14 1093 437 2005-07-09 17:14:14 2 2006-02-16 02:30:53
  33627. 3748 2005-07-06 12:11:22 2920 79 2005-07-12 07:22:22 1 2006-02-16 02:30:53
  33628. 3749 2005-07-06 12:18:03 1531 170 2005-07-11 07:25:03 1 2006-02-16 02:30:53
  33629. 3750 2005-07-06 12:19:28 2422 103 2005-07-14 13:16:28 2 2006-02-16 02:30:53
  33630. 3751 2005-07-06 12:23:41 3652 128 2005-07-10 06:58:41 1 2006-02-16 02:30:53
  33631. 3752 2005-07-06 12:30:12 4561 235 2005-07-13 12:13:12 1 2006-02-16 02:30:53
  33632. 3753 2005-07-06 12:34:06 774 358 2005-07-07 14:19:06 2 2006-02-16 02:30:53
  33633. 3754 2005-07-06 12:35:44 4042 83 2005-07-08 16:28:44 1 2006-02-16 02:30:53
  33634. 3755 2005-07-06 12:37:16 3147 402 2005-07-13 07:22:16 1 2006-02-16 02:30:53
  33635. 3756 2005-07-06 12:40:38 30 320 2005-07-11 09:29:38 1 2006-02-16 02:30:53
  33636. 3757 2005-07-06 12:42:26 2816 66 2005-07-11 10:30:26 1 2006-02-16 02:30:53
  33637. 3758 2005-07-06 12:43:11 2498 48 2005-07-14 12:52:11 2 2006-02-16 02:30:53
  33638. 3759 2005-07-06 12:46:38 4165 378 2005-07-10 11:31:38 1 2006-02-16 02:30:53
  33639. 3760 2005-07-06 12:49:28 1306 330 2005-07-09 16:29:28 1 2006-02-16 02:30:53
  33640. 3761 2005-07-06 12:52:44 4304 464 2005-07-08 17:22:44 1 2006-02-16 02:30:53
  33641. 3762 2005-07-06 12:52:49 1941 413 2005-07-12 11:41:49 1 2006-02-16 02:30:53
  33642. 3763 2005-07-06 12:56:31 1573 189 2005-07-09 14:49:31 1 2006-02-16 02:30:53
  33643. 3764 2005-07-06 13:01:03 3115 470 2005-07-13 15:26:03 1 2006-02-16 02:30:53
  33644. 3765 2005-07-06 13:01:47 1805 547 2005-07-09 07:10:47 1 2006-02-16 02:30:53
  33645. 3766 2005-07-06 13:04:35 4504 312 2005-07-07 15:46:35 1 2006-02-16 02:30:53
  33646. 3767 2005-07-06 13:07:27 923 582 2005-07-08 18:48:27 1 2006-02-16 02:30:53
  33647. 3768 2005-07-06 13:07:30 3995 573 2005-07-09 16:26:30 2 2006-02-16 02:30:53
  33648. 3769 2005-07-06 13:11:33 467 567 2005-07-14 17:54:33 2 2006-02-16 02:30:53
  33649. 3770 2005-07-06 13:14:28 3836 198 2005-07-13 09:23:28 1 2006-02-16 02:30:53
  33650. 3771 2005-07-06 13:19:34 1373 56 2005-07-10 10:27:34 2 2006-02-16 02:30:53
  33651. 3772 2005-07-06 13:22:53 434 338 2005-07-10 11:54:53 2 2006-02-16 02:30:53
  33652. 3773 2005-07-06 13:23:34 2034 263 2005-07-08 17:23:34 2 2006-02-16 02:30:53
  33653. 3774 2005-07-06 13:25:07 4044 439 2005-07-15 12:56:07 2 2006-02-16 02:30:53
  33654. 3775 2005-07-06 13:27:33 3696 300 2005-07-09 10:27:33 1 2006-02-16 02:30:53
  33655. 3776 2005-07-06 13:31:37 4387 278 2005-07-10 10:53:37 2 2006-02-16 02:30:53
  33656. 3777 2005-07-06 13:36:48 2470 548 2005-07-11 14:26:48 1 2006-02-16 02:30:53
  33657. 3778 2005-07-06 13:44:48 2181 122 2005-07-13 09:31:48 2 2006-02-16 02:30:53
  33658. 3779 2005-07-06 13:46:36 634 583 2005-07-10 15:49:36 2 2006-02-16 02:30:53
  33659. 3780 2005-07-06 13:52:02 1209 99 2005-07-15 08:41:02 2 2006-02-16 02:30:53
  33660. 3781 2005-07-06 13:53:41 3894 23 2005-07-15 10:03:41 1 2006-02-16 02:30:53
  33661. 3782 2005-07-06 13:57:03 3365 515 2005-07-09 11:13:03 2 2006-02-16 02:30:53
  33662. 3783 2005-07-06 13:57:31 2345 386 2005-07-14 10:44:31 2 2006-02-16 02:30:53
  33663. 3784 2005-07-06 13:57:56 2287 165 2005-07-14 17:24:56 2 2006-02-16 02:30:53
  33664. 3785 2005-07-06 14:00:13 3279 577 2005-07-14 10:13:13 2 2006-02-16 02:30:53
  33665. 3786 2005-07-06 14:00:41 4508 152 2005-07-13 16:49:41 1 2006-02-16 02:30:53
  33666. 3787 2005-07-06 14:02:01 288 474 2005-07-09 19:09:01 2 2006-02-16 02:30:53
  33667. 3788 2005-07-06 14:02:02 1363 379 2005-07-10 18:24:02 1 2006-02-16 02:30:53
  33668. 3789 2005-07-06 14:02:26 3560 595 2005-07-14 18:13:26 1 2006-02-16 02:30:53
  33669. 3790 2005-07-06 14:13:45 1711 10 2005-07-14 13:35:45 1 2006-02-16 02:30:53
  33670. 3791 2005-07-06 14:24:56 3426 452 2005-07-14 11:06:56 2 2006-02-16 02:30:53
  33671. 3792 2005-07-06 14:26:38 2651 312 2005-07-11 16:34:38 1 2006-02-16 02:30:53
  33672. 3793 2005-07-06 14:32:44 4558 553 2005-07-08 13:55:44 1 2006-02-16 02:30:53
  33673. 3794 2005-07-06 14:35:26 584 499 2005-07-11 14:40:26 2 2006-02-16 02:30:53
  33674. 3795 2005-07-06 14:37:41 240 153 2005-07-11 20:27:41 2 2006-02-16 02:30:53
  33675. 3796 2005-07-06 14:45:22 1649 228 2005-07-07 11:01:22 2 2006-02-16 02:30:53
  33676. 3797 2005-07-06 14:54:52 1047 374 2005-07-10 09:50:52 2 2006-02-16 02:30:53
  33677. 3798 2005-07-06 14:57:53 1942 479 2005-07-07 10:48:53 2 2006-02-16 02:30:53
  33678. 3799 2005-07-06 15:00:14 4532 251 2005-07-10 15:39:14 1 2006-02-16 02:30:53
  33679. 3800 2005-07-06 15:01:27 4004 100 2005-07-15 11:12:27 2 2006-02-16 02:30:53
  33680. 3801 2005-07-06 15:05:50 4209 68 2005-07-12 12:56:50 1 2006-02-16 02:30:53
  33681. 3802 2005-07-06 15:06:09 1017 91 2005-07-08 09:33:09 2 2006-02-16 02:30:53
  33682. 3803 2005-07-06 15:06:55 2062 494 2005-07-08 18:53:55 1 2006-02-16 02:30:53
  33683. 3804 2005-07-06 15:08:08 537 126 2005-07-15 14:01:08 2 2006-02-16 02:30:53
  33684. 3805 2005-07-06 15:08:42 1716 418 2005-07-07 14:34:42 1 2006-02-16 02:30:53
  33685. 3806 2005-07-06 15:09:41 3555 154 2005-07-14 09:14:41 2 2006-02-16 02:30:53
  33686. 3807 2005-07-06 15:11:44 39 425 2005-07-10 09:20:44 1 2006-02-16 02:30:53
  33687. 3808 2005-07-06 15:15:35 4339 314 2005-07-07 16:10:35 1 2006-02-16 02:30:53
  33688. 3809 2005-07-06 15:16:37 2932 358 2005-07-09 14:45:37 1 2006-02-16 02:30:53
  33689. 3810 2005-07-06 15:18:44 342 296 2005-07-12 09:52:44 2 2006-02-16 02:30:53
  33690. 3811 2005-07-06 15:20:37 695 208 2005-07-08 16:26:37 2 2006-02-16 02:30:53
  33691. 3812 2005-07-06 15:22:19 4490 381 2005-07-08 13:04:19 1 2006-02-16 02:30:53
  33692. 3813 2005-07-06 15:23:34 4100 189 2005-07-08 19:03:34 1 2006-02-16 02:30:53
  33693. 3814 2005-07-06 15:23:56 3826 306 2005-07-13 20:51:56 2 2006-02-16 02:30:53
  33694. 3815 2005-07-06 15:26:36 4038 472 2005-07-11 17:07:36 2 2006-02-16 02:30:53
  33695. 3816 2005-07-06 15:27:04 2941 489 2005-07-14 13:12:04 1 2006-02-16 02:30:53
  33696. 3817 2005-07-06 15:31:45 2933 267 2005-07-11 17:11:45 1 2006-02-16 02:30:53
  33697. 3818 2005-07-06 15:33:31 653 97 2005-07-11 16:35:31 1 2006-02-16 02:30:53
  33698. 3819 2005-07-06 15:35:06 1814 74 2005-07-14 19:08:06 1 2006-02-16 02:30:53
  33699. 3820 2005-07-06 15:35:26 4192 460 2005-07-11 12:22:26 2 2006-02-16 02:30:53
  33700. 3821 2005-07-06 15:36:20 4385 354 2005-07-11 20:04:20 1 2006-02-16 02:30:53
  33701. 3822 2005-07-06 15:41:15 1314 241 2005-07-07 16:41:15 1 2006-02-16 02:30:53
  33702. 3823 2005-07-06 15:41:27 124 265 2005-07-09 09:48:27 1 2006-02-16 02:30:53
  33703. 3824 2005-07-06 15:43:15 3107 107 2005-07-13 16:05:15 2 2006-02-16 02:30:53
  33704. 3825 2005-07-06 15:50:03 630 132 2005-07-09 19:20:03 1 2006-02-16 02:30:53
  33705. 3826 2005-07-06 15:51:58 73 451 2005-07-13 12:35:58 1 2006-02-16 02:30:53
  33706. 3827 2005-07-06 15:52:03 2072 41 2005-07-08 21:43:03 2 2006-02-16 02:30:53
  33707. 3828 2005-07-06 15:57:30 4493 498 2005-07-10 12:17:30 2 2006-02-16 02:30:53
  33708. 3829 2005-07-06 15:59:40 4126 356 2005-07-11 10:29:40 1 2006-02-16 02:30:53
  33709. 3830 2005-07-06 16:01:16 553 310 2005-07-15 19:35:16 2 2006-02-16 02:30:53
  33710. 3831 2005-07-06 16:06:35 1338 206 2005-07-08 15:14:35 2 2006-02-16 02:30:53
  33711. 3832 2005-07-06 16:12:23 4499 233 2005-07-12 21:29:23 1 2006-02-16 02:30:53
  33712. 3833 2005-07-06 16:18:28 3232 416 2005-07-14 20:09:28 2 2006-02-16 02:30:53
  33713. 3834 2005-07-06 16:19:56 3001 366 2005-07-13 11:38:56 2 2006-02-16 02:30:53
  33714. 3835 2005-07-06 16:22:45 935 486 2005-07-11 17:04:45 2 2006-02-16 02:30:53
  33715. 3836 2005-07-06 16:26:04 1148 351 2005-07-10 15:08:04 1 2006-02-16 02:30:53
  33716. 3837 2005-07-06 16:27:43 3166 309 2005-07-07 18:02:43 1 2006-02-16 02:30:53
  33717. 3838 2005-07-06 16:29:43 3404 565 2005-07-11 20:50:43 1 2006-02-16 02:30:53
  33718. 3839 2005-07-06 16:30:30 3230 231 2005-07-11 19:00:30 1 2006-02-16 02:30:53
  33719. 3840 2005-07-06 16:30:59 4384 468 2005-07-15 22:08:59 2 2006-02-16 02:30:53
  33720. 3841 2005-07-06 16:34:00 4228 470 2005-07-08 15:12:00 2 2006-02-16 02:30:53
  33721. 3842 2005-07-06 16:34:32 3119 583 2005-07-08 11:55:32 2 2006-02-16 02:30:53
  33722. 3843 2005-07-06 16:35:40 3844 62 2005-07-07 18:29:40 1 2006-02-16 02:30:53
  33723. 3844 2005-07-06 16:37:58 2814 179 2005-07-09 19:54:58 2 2006-02-16 02:30:53
  33724. 3845 2005-07-06 16:38:14 4495 28 2005-07-09 14:59:14 2 2006-02-16 02:30:53
  33725. 3846 2005-07-06 16:43:10 2829 88 2005-07-14 11:09:10 2 2006-02-16 02:30:53
  33726. 3847 2005-07-06 16:44:41 782 206 2005-07-07 21:54:41 2 2006-02-16 02:30:53
  33727. 3848 2005-07-06 16:47:32 2906 188 2005-07-14 15:00:32 1 2006-02-16 02:30:53
  33728. 3849 2005-07-06 16:49:43 3660 60 2005-07-12 17:20:43 1 2006-02-16 02:30:53
  33729. 3850 2005-07-06 16:51:21 1700 103 2005-07-12 13:58:21 1 2006-02-16 02:30:53
  33730. 3851 2005-07-06 16:54:12 493 436 2005-07-11 22:49:12 1 2006-02-16 02:30:53
  33731. 3852 2005-07-06 16:57:49 3329 511 2005-07-11 17:11:49 1 2006-02-16 02:30:53
  33732. 3853 2005-07-06 16:59:20 1411 537 2005-07-07 12:30:20 2 2006-02-16 02:30:53
  33733. 3854 2005-07-06 17:02:33 2054 243 2005-07-12 17:32:33 2 2006-02-16 02:30:53
  33734. 3855 2005-07-06 17:03:48 2931 46 2005-07-12 14:32:48 1 2006-02-16 02:30:53
  33735. 3856 2005-07-06 17:04:46 3083 498 2005-07-14 19:23:46 2 2006-02-16 02:30:53
  33736. 3857 2005-07-06 17:07:54 1135 236 2005-07-07 13:28:54 1 2006-02-16 02:30:53
  33737. 3858 2005-07-06 17:17:57 829 377 2005-07-10 23:10:57 2 2006-02-16 02:30:53
  33738. 3859 2005-07-06 17:18:15 2548 553 2005-07-09 16:48:15 1 2006-02-16 02:30:53
  33739. 3860 2005-07-06 17:20:24 144 514 2005-07-09 22:33:24 1 2006-02-16 02:30:53
  33740. 3861 2005-07-06 17:24:49 4506 202 2005-07-15 22:19:49 2 2006-02-16 02:30:53
  33741. 3862 2005-07-06 17:35:22 471 181 2005-07-15 17:13:22 1 2006-02-16 02:30:53
  33742. 3863 2005-07-06 17:40:18 363 481 2005-07-07 17:58:18 2 2006-02-16 02:30:53
  33743. 3864 2005-07-06 17:41:42 2811 68 2005-07-08 14:17:42 1 2006-02-16 02:30:53
  33744. 3865 2005-07-06 17:46:57 3579 357 2005-07-12 12:20:57 1 2006-02-16 02:30:53
  33745. 3866 2005-07-06 17:47:20 194 409 2005-07-15 18:12:20 1 2006-02-16 02:30:53
  33746. 3867 2005-07-06 17:52:19 3620 580 2005-07-13 21:48:19 1 2006-02-16 02:30:53
  33747. 3868 2005-07-06 17:54:13 1606 416 2005-07-10 14:51:13 1 2006-02-16 02:30:53
  33748. 3869 2005-07-06 17:56:46 2540 183 2005-07-10 20:44:46 1 2006-02-16 02:30:53
  33749. 3870 2005-07-06 17:57:54 3357 12 2005-07-13 12:30:54 1 2006-02-16 02:30:53
  33750. 3871 2005-07-06 17:58:51 3114 331 2005-07-15 22:18:51 2 2006-02-16 02:30:53
  33751. 3872 2005-07-06 18:00:19 1785 513 2005-07-07 17:26:19 1 2006-02-16 02:30:53
  33752. 3873 2005-07-06 18:03:16 4148 394 2005-07-15 23:58:16 2 2006-02-16 02:30:53
  33753. 3874 2005-07-06 18:06:12 1870 137 2005-07-12 16:55:12 1 2006-02-16 02:30:53
  33754. 3875 2005-07-06 18:15:39 712 108 2005-07-11 17:34:39 1 2006-02-16 02:30:53
  33755. 3876 2005-07-06 18:21:13 4039 295 2005-07-14 16:57:13 2 2006-02-16 02:30:53
  33756. 3877 2005-07-06 18:22:10 2796 576 2005-07-07 23:38:10 1 2006-02-16 02:30:53
  33757. 3878 2005-07-06 18:27:09 4022 385 2005-07-15 20:13:09 2 2006-02-16 02:30:53
  33758. 3879 2005-07-06 18:31:20 1376 81 2005-07-09 19:03:20 2 2006-02-16 02:30:53
  33759. 3880 2005-07-06 18:32:49 42 507 2005-07-07 20:46:49 2 2006-02-16 02:30:53
  33760. 3881 2005-07-06 18:35:37 143 456 2005-07-10 00:06:37 2 2006-02-16 02:30:53
  33761. 3882 2005-07-06 18:38:21 788 254 2005-07-09 14:55:21 1 2006-02-16 02:30:53
  33762. 3883 2005-07-06 18:39:38 3238 69 2005-07-14 15:59:38 2 2006-02-16 02:30:53
  33763. 3884 2005-07-06 18:41:33 1806 210 2005-07-07 22:06:33 1 2006-02-16 02:30:53
  33764. 3885 2005-07-06 18:43:43 1820 282 2005-07-12 19:48:43 2 2006-02-16 02:30:53
  33765. 3886 2005-07-06 18:44:24 2368 326 2005-07-08 15:11:24 1 2006-02-16 02:30:53
  33766. 3887 2005-07-06 18:46:34 1695 530 2005-07-07 13:15:34 1 2006-02-16 02:30:53
  33767. 3888 2005-07-06 18:54:20 1945 412 2005-07-12 17:13:20 2 2006-02-16 02:30:53
  33768. 3889 2005-07-06 18:56:25 2005 576 2005-07-08 21:22:25 2 2006-02-16 02:30:53
  33769. 3890 2005-07-06 18:58:15 2570 553 2005-07-10 18:51:15 1 2006-02-16 02:30:53
  33770. 3891 2005-07-06 18:58:25 3216 553 2005-07-09 23:20:25 2 2006-02-16 02:30:53
  33771. 3892 2005-07-06 18:58:58 778 549 2005-07-10 19:29:58 1 2006-02-16 02:30:53
  33772. 3893 2005-07-06 18:59:31 1281 350 2005-07-12 19:21:31 1 2006-02-16 02:30:53
  33773. 3894 2005-07-06 19:01:39 2087 149 2005-07-12 21:35:39 2 2006-02-16 02:30:53
  33774. 3895 2005-07-06 19:04:24 145 584 2005-07-15 17:48:24 2 2006-02-16 02:30:53
  33775. 3896 2005-07-06 19:09:15 1755 309 2005-07-16 00:52:15 2 2006-02-16 02:30:53
  33776. 3897 2005-07-06 19:11:43 14 277 2005-07-11 21:50:43 2 2006-02-16 02:30:53
  33777. 3898 2005-07-06 19:12:37 3858 53 2005-07-11 15:50:37 1 2006-02-16 02:30:53
  33778. 3899 2005-07-06 19:12:40 4020 485 2005-07-13 23:41:40 1 2006-02-16 02:30:53
  33779. 3900 2005-07-06 19:21:28 1497 129 2005-07-15 21:06:28 2 2006-02-16 02:30:53
  33780. 3901 2005-07-06 19:24:55 3367 321 2005-07-14 20:30:55 2 2006-02-16 02:30:53
  33781. 3902 2005-07-06 19:25:18 2868 192 2005-07-10 17:42:18 2 2006-02-16 02:30:53
  33782. 3903 2005-07-06 19:27:32 3614 369 2005-07-08 23:27:32 1 2006-02-16 02:30:53
  33783. 3904 2005-07-06 19:30:57 3600 485 2005-07-11 18:47:57 2 2006-02-16 02:30:53
  33784. 3905 2005-07-06 19:33:34 3817 526 2005-07-15 17:55:34 1 2006-02-16 02:30:53
  33785. 3906 2005-07-06 19:35:55 1383 293 2005-07-15 22:35:55 1 2006-02-16 02:30:53
  33786. 3907 2005-07-06 19:39:14 2507 452 2005-07-11 17:45:14 1 2006-02-16 02:30:53
  33787. 3908 2005-07-06 19:47:26 3980 116 2005-07-13 19:59:26 1 2006-02-16 02:30:53
  33788. 3909 2005-07-06 19:54:41 3423 396 2005-07-15 18:11:41 2 2006-02-16 02:30:53
  33789. 3910 2005-07-06 20:05:18 2085 248 2005-07-10 18:51:18 1 2006-02-16 02:30:53
  33790. 3911 2005-07-06 20:09:11 4548 34 2005-07-08 23:53:11 1 2006-02-16 02:30:53
  33791. 3912 2005-07-06 20:10:03 2449 154 2005-07-08 18:39:03 2 2006-02-16 02:30:53
  33792. 3913 2005-07-06 20:11:00 752 494 2005-07-08 14:42:00 1 2006-02-16 02:30:53
  33793. 3914 2005-07-06 20:11:10 4092 159 2005-07-14 14:42:10 2 2006-02-16 02:30:53
  33794. 3915 2005-07-06 20:16:46 125 163 2005-07-10 17:24:46 1 2006-02-16 02:30:53
  33795. 3916 2005-07-06 20:18:50 3198 46 2005-07-12 21:56:50 1 2006-02-16 02:30:53
  33796. 3917 2005-07-06 20:19:29 2747 471 2005-07-11 00:49:29 1 2006-02-16 02:30:53
  33797. 3918 2005-07-06 20:26:15 1111 435 2005-07-15 20:32:15 1 2006-02-16 02:30:53
  33798. 3919 2005-07-06 20:26:21 2695 147 2005-07-15 00:13:21 1 2006-02-16 02:30:53
  33799. 3920 2005-07-06 20:26:40 1551 321 2005-07-15 15:00:40 2 2006-02-16 02:30:53
  33800. 3921 2005-07-06 20:29:48 949 531 2005-07-14 01:44:48 1 2006-02-16 02:30:53
  33801. 3922 2005-07-06 20:32:27 2878 470 2005-07-14 19:00:27 1 2006-02-16 02:30:53
  33802. 3923 2005-07-06 20:34:10 2039 63 2005-07-13 19:20:10 1 2006-02-16 02:30:53
  33803. 3924 2005-07-06 20:38:02 187 114 2005-07-11 23:35:02 2 2006-02-16 02:30:53
  33804. 3925 2005-07-06 20:41:44 2653 428 2005-07-15 21:05:44 2 2006-02-16 02:30:53
  33805. 3926 2005-07-06 20:42:35 4241 500 2005-07-09 16:30:35 2 2006-02-16 02:30:53
  33806. 3927 2005-07-06 20:48:14 2194 404 2005-07-10 15:37:14 1 2006-02-16 02:30:53
  33807. 3928 2005-07-06 20:52:09 1960 411 2005-07-08 18:51:09 1 2006-02-16 02:30:53
  33808. 3929 2005-07-06 20:52:39 1235 453 2005-07-12 00:27:39 2 2006-02-16 02:30:53
  33809. 3930 2005-07-06 20:54:07 165 573 2005-07-10 18:31:07 1 2006-02-16 02:30:53
  33810. 3931 2005-07-06 21:03:46 182 176 2005-07-16 01:32:46 1 2006-02-16 02:30:53
  33811. 3932 2005-07-06 21:06:17 4396 490 2005-07-07 19:25:17 2 2006-02-16 02:30:53
  33812. 3933 2005-07-06 21:06:37 1202 229 2005-07-08 20:23:37 1 2006-02-16 02:30:53
  33813. 3934 2005-07-06 21:07:23 3187 576 2005-07-10 18:20:23 2 2006-02-16 02:30:53
  33814. 3935 2005-07-06 21:08:29 3402 503 2005-07-15 23:28:29 2 2006-02-16 02:30:53
  33815. 3936 2005-07-06 21:15:03 4258 129 2005-07-08 17:45:03 2 2006-02-16 02:30:53
  33816. 3937 2005-07-06 21:15:38 2091 211 2005-07-15 00:01:38 2 2006-02-16 02:30:53
  33817. 3938 2005-07-06 21:15:45 1991 341 2005-07-13 20:02:45 2 2006-02-16 02:30:53
  33818. 3939 2005-07-06 21:16:32 3627 149 2005-07-11 03:12:32 2 2006-02-16 02:30:53
  33819. 3940 2005-07-06 21:16:59 1502 116 2005-07-07 19:17:59 2 2006-02-16 02:30:53
  33820. 3941 2005-07-06 21:20:37 382 560 2005-07-09 01:35:37 2 2006-02-16 02:30:53
  33821. 3942 2005-07-06 21:21:34 677 553 2005-07-15 02:34:34 1 2006-02-16 02:30:53
  33822. 3943 2005-07-06 21:22:17 1816 566 2005-07-07 21:26:17 1 2006-02-16 02:30:53
  33823. 3944 2005-07-06 21:34:11 4213 436 2005-07-08 23:46:11 2 2006-02-16 02:30:53
  33824. 3945 2005-07-06 21:35:00 754 86 2005-07-08 00:31:00 2 2006-02-16 02:30:53
  33825. 3946 2005-07-06 21:39:24 294 13 2005-07-11 16:10:24 1 2006-02-16 02:30:53
  33826. 3947 2005-07-06 21:42:21 4188 324 2005-07-08 19:37:21 1 2006-02-16 02:30:53
  33827. 3948 2005-07-06 21:45:53 2254 161 2005-07-08 19:24:53 2 2006-02-16 02:30:53
  33828. 3949 2005-07-06 21:46:36 1765 153 2005-07-11 03:18:36 1 2006-02-16 02:30:53
  33829. 3950 2005-07-06 21:48:44 4153 598 2005-07-14 02:25:44 1 2006-02-16 02:30:53
  33830. 3951 2005-07-06 21:50:41 2288 250 2005-07-12 02:09:41 2 2006-02-16 02:30:53
  33831. 3952 2005-07-06 21:51:31 1719 417 2005-07-13 15:54:31 1 2006-02-16 02:30:53
  33832. 3953 2005-07-06 21:54:55 3879 385 2005-07-09 18:52:55 1 2006-02-16 02:30:53
  33833. 3954 2005-07-06 21:57:44 4250 558 2005-07-08 02:37:44 2 2006-02-16 02:30:53
  33834. 3955 2005-07-06 21:58:08 2523 247 2005-07-08 03:43:08 1 2006-02-16 02:30:53
  33835. 3956 2005-07-06 22:01:51 15 147 2005-07-12 21:35:51 2 2006-02-16 02:30:53
  33836. 3957 2005-07-06 22:05:47 443 414 2005-07-16 01:08:47 1 2006-02-16 02:30:53
  33837. 3958 2005-07-06 22:07:33 4117 288 2005-07-10 19:31:33 2 2006-02-16 02:30:53
  33838. 3959 2005-07-06 22:07:58 40 448 2005-07-13 02:30:58 1 2006-02-16 02:30:53
  33839. 3960 2005-07-06 22:08:53 2090 594 2005-07-07 23:21:53 2 2006-02-16 02:30:53
  33840. 3961 2005-07-06 22:11:43 4320 364 2005-07-09 03:14:43 1 2006-02-16 02:30:53
  33841. 3962 2005-07-06 22:13:45 379 307 2005-07-15 00:22:45 2 2006-02-16 02:30:53
  33842. 3963 2005-07-06 22:19:17 3912 111 2005-07-15 01:22:17 2 2006-02-16 02:30:53
  33843. 3964 2005-07-06 22:23:02 1853 30 2005-07-07 22:21:02 1 2006-02-16 02:30:53
  33844. 3965 2005-07-06 22:36:20 2863 243 2005-07-09 17:45:20 1 2006-02-16 02:30:53
  33845. 3966 2005-07-06 22:38:49 556 495 2005-07-07 23:33:49 1 2006-02-16 02:30:53
  33846. 3967 2005-07-06 22:45:10 2510 31 2005-07-09 23:54:10 2 2006-02-16 02:30:53
  33847. 3968 2005-07-06 22:47:09 558 235 2005-07-12 21:01:09 1 2006-02-16 02:30:53
  33848. 3969 2005-07-06 22:47:59 383 587 2005-07-08 02:11:59 1 2006-02-16 02:30:53
  33849. 3970 2005-07-06 22:48:17 701 381 2005-07-15 19:07:17 1 2006-02-16 02:30:53
  33850. 3971 2005-07-06 22:50:40 4415 473 2005-07-08 01:02:40 1 2006-02-16 02:30:53
  33851. 3972 2005-07-06 22:53:57 1895 598 2005-07-11 01:32:57 1 2006-02-16 02:30:53
  33852. 3973 2005-07-06 22:58:31 2625 592 2005-07-16 03:27:31 2 2006-02-16 02:30:53
  33853. 3974 2005-07-06 22:59:16 4282 318 2005-07-11 22:30:16 1 2006-02-16 02:30:53
  33854. 3975 2005-07-06 23:00:09 4343 545 2005-07-10 01:39:09 2 2006-02-16 02:30:53
  33855. 3976 2005-07-06 23:00:20 2424 329 2005-07-07 21:51:20 2 2006-02-16 02:30:53
  33856. 3977 2005-07-06 23:00:49 1284 449 2005-07-15 00:41:49 1 2006-02-16 02:30:53
  33857. 3978 2005-07-06 23:04:33 4341 343 2005-07-10 17:45:33 2 2006-02-16 02:30:53
  33858. 3979 2005-07-06 23:04:35 794 550 2005-07-13 01:38:35 2 2006-02-16 02:30:53
  33859. 3980 2005-07-06 23:11:11 1845 475 2005-07-14 18:22:11 1 2006-02-16 02:30:53
  33860. 3981 2005-07-06 23:12:12 842 375 2005-07-13 01:47:12 2 2006-02-16 02:30:53
  33861. 3982 2005-07-06 23:14:16 4327 64 2005-07-08 21:21:16 2 2006-02-16 02:30:53
  33862. 3983 2005-07-06 23:14:21 1261 6 2005-07-12 17:55:21 2 2006-02-16 02:30:53
  33863. 3984 2005-07-06 23:22:36 2205 570 2005-07-08 21:40:36 2 2006-02-16 02:30:53
  33864. 3985 2005-07-06 23:24:03 2096 307 2005-07-10 00:20:03 2 2006-02-16 02:30:53
  33865. 3986 2005-07-06 23:25:13 3737 122 2005-07-09 21:26:13 2 2006-02-16 02:30:53
  33866. 3987 2005-07-06 23:28:24 3104 270 2005-07-15 00:52:24 1 2006-02-16 02:30:53
  33867. 3988 2005-07-06 23:30:42 2981 421 2005-07-13 03:06:42 2 2006-02-16 02:30:53
  33868. 3989 2005-07-06 23:30:54 2366 213 2005-07-12 01:28:54 1 2006-02-16 02:30:53
  33869. 3990 2005-07-06 23:32:44 2009 558 2005-07-14 01:35:44 2 2006-02-16 02:30:53
  33870. 3991 2005-07-06 23:33:41 587 583 2005-07-16 01:31:41 1 2006-02-16 02:30:53
  33871. 3992 2005-07-06 23:36:56 3219 448 2005-07-15 03:13:56 1 2006-02-16 02:30:53
  33872. 3993 2005-07-06 23:37:06 1061 525 2005-07-14 19:31:06 1 2006-02-16 02:30:53
  33873. 3994 2005-07-06 23:39:01 902 487 2005-07-14 00:33:01 1 2006-02-16 02:30:53
  33874. 3995 2005-07-06 23:43:03 3990 128 2005-07-13 04:13:03 2 2006-02-16 02:30:53
  33875. 3996 2005-07-06 23:46:43 2857 551 2005-07-14 22:34:43 2 2006-02-16 02:30:53
  33876. 3997 2005-07-06 23:46:52 3895 52 2005-07-14 05:39:52 2 2006-02-16 02:30:53
  33877. 3998 2005-07-06 23:49:20 1245 566 2005-07-12 20:39:20 1 2006-02-16 02:30:53
  33878. 3999 2005-07-06 23:50:54 707 390 2005-07-09 22:09:54 1 2006-02-16 02:30:53
  33879. 4000 2005-07-06 23:58:37 2122 95 2005-07-08 21:43:37 1 2006-02-16 02:30:53
  33880. 4001 2005-07-07 00:07:00 864 120 2005-07-13 21:27:00 2 2006-02-16 02:30:53
  33881. 4002 2005-07-07 00:08:18 2790 308 2005-07-14 01:29:18 2 2006-02-16 02:30:53
  33882. 4003 2005-07-07 00:09:02 4054 8 2005-07-08 04:27:02 1 2006-02-16 02:30:53
  33883. 4004 2005-07-07 00:20:51 667 574 2005-07-11 18:55:51 2 2006-02-16 02:30:53
  33884. 4005 2005-07-07 00:22:26 3677 190 2005-07-15 04:34:26 2 2006-02-16 02:30:53
  33885. 4006 2005-07-07 00:25:29 397 473 2005-07-08 05:30:29 2 2006-02-16 02:30:53
  33886. 4007 2005-07-07 00:26:05 2071 285 2005-07-15 19:53:05 1 2006-02-16 02:30:53
  33887. 4008 2005-07-07 00:26:43 1107 505 2005-07-16 03:58:43 2 2006-02-16 02:30:53
  33888. 4009 2005-07-07 00:28:55 3607 394 2005-07-10 00:37:55 1 2006-02-16 02:30:53
  33889. 4010 2005-07-07 00:47:00 4509 476 2005-07-12 06:23:00 2 2006-02-16 02:30:53
  33890. 4011 2005-07-07 00:48:25 2052 20 2005-07-13 06:30:25 2 2006-02-16 02:30:53
  33891. 4012 2005-07-07 00:56:09 1400 104 2005-07-10 21:49:09 1 2006-02-16 02:30:53
  33892. 4013 2005-07-07 00:58:00 2344 475 2005-07-15 19:42:00 2 2006-02-16 02:30:53
  33893. 4014 2005-07-07 00:58:54 583 510 2005-07-12 02:40:54 1 2006-02-16 02:30:53
  33894. 4015 2005-07-07 00:59:46 3032 233 2005-07-14 03:16:46 2 2006-02-16 02:30:53
  33895. 4016 2005-07-07 01:05:50 3318 335 2005-07-09 05:59:50 1 2006-02-16 02:30:53
  33896. 4017 2005-07-07 01:08:18 3117 595 2005-07-09 01:47:18 2 2006-02-16 02:30:53
  33897. 4018 2005-07-07 01:10:33 906 207 2005-07-12 20:54:33 2 2006-02-16 02:30:53
  33898. 4019 2005-07-07 01:27:44 3200 294 2005-07-10 21:30:44 1 2006-02-16 02:30:53
  33899. 4020 2005-07-07 01:42:22 3760 471 2005-07-10 00:53:22 1 2006-02-16 02:30:53
  33900. 4021 2005-07-07 01:46:44 1676 315 2005-07-12 00:16:44 2 2006-02-16 02:30:53
  33901. 4022 2005-07-07 01:50:06 3914 390 2005-07-09 21:47:06 2 2006-02-16 02:30:53
  33902. 4023 2005-07-07 01:55:25 274 573 2005-07-08 02:43:25 2 2006-02-16 02:30:53
  33903. 4024 2005-07-07 02:11:23 3976 448 2005-07-11 02:00:23 1 2006-02-16 02:30:53
  33904. 4025 2005-07-07 02:13:24 3908 114 2005-07-08 00:47:24 1 2006-02-16 02:30:53
  33905. 4026 2005-07-07 02:15:48 4142 251 2005-07-14 04:15:48 2 2006-02-16 02:30:53
  33906. 4027 2005-07-07 02:19:01 56 116 2005-07-10 01:12:01 1 2006-02-16 02:30:53
  33907. 4028 2005-07-07 02:19:14 1651 344 2005-07-15 08:09:14 2 2006-02-16 02:30:53
  33908. 4029 2005-07-07 02:19:44 4075 518 2005-07-15 02:30:44 2 2006-02-16 02:30:53
  33909. 4030 2005-07-07 02:25:42 1734 300 2005-07-08 22:53:42 2 2006-02-16 02:30:53
  33910. 4031 2005-07-07 02:32:07 3094 143 2005-07-14 06:01:07 2 2006-02-16 02:30:53
  33911. 4032 2005-07-07 02:34:13 2628 335 2005-07-14 22:43:13 1 2006-02-16 02:30:53
  33912. 4033 2005-07-07 02:35:46 203 453 2005-07-16 01:12:46 1 2006-02-16 02:30:53
  33913. 4034 2005-07-07 02:36:33 1666 354 2005-07-09 08:32:33 2 2006-02-16 02:30:53
  33914. 4035 2005-07-07 02:45:02 3611 539 2005-07-14 01:41:02 1 2006-02-16 02:30:53
  33915. 4036 2005-07-07 02:48:00 500 397 2005-07-07 22:46:00 1 2006-02-16 02:30:53
  33916. 4037 2005-07-07 02:52:52 3903 594 2005-07-16 00:09:52 1 2006-02-16 02:30:53
  33917. 4038 2005-07-07 02:52:53 1264 27 2005-07-11 22:32:53 2 2006-02-16 02:30:53
  33918. 4039 2005-07-07 02:57:59 4050 290 2005-07-12 03:44:59 2 2006-02-16 02:30:53
  33919. 4040 2005-07-07 03:02:40 3046 103 2005-07-16 06:05:40 2 2006-02-16 02:30:53
  33920. 4041 2005-07-07 03:03:33 2217 445 2005-07-09 07:57:33 2 2006-02-16 02:30:53
  33921. 4042 2005-07-07 03:06:40 50 10 2005-07-10 02:37:40 1 2006-02-16 02:30:53
  33922. 4043 2005-07-07 03:09:50 3427 204 2005-07-10 07:49:50 2 2006-02-16 02:30:53
  33923. 4044 2005-07-07 03:22:23 3263 94 2005-07-13 03:23:23 1 2006-02-16 02:30:53
  33924. 4045 2005-07-07 03:26:14 1422 529 2005-07-11 06:52:14 1 2006-02-16 02:30:53
  33925. 4046 2005-07-07 03:27:59 3518 491 2005-07-14 01:14:59 1 2006-02-16 02:30:53
  33926. 4047 2005-07-07 03:28:49 3475 364 2005-07-09 02:42:49 2 2006-02-16 02:30:53
  33927. 4048 2005-07-07 03:30:52 659 474 2005-07-14 05:05:52 2 2006-02-16 02:30:53
  33928. 4049 2005-07-07 03:34:53 4172 79 2005-07-15 04:10:53 2 2006-02-16 02:30:53
  33929. 4050 2005-07-07 03:35:33 104 528 2005-07-15 03:11:33 1 2006-02-16 02:30:53
  33930. 4051 2005-07-07 03:37:28 2715 331 2005-07-09 01:40:28 1 2006-02-16 02:30:53
  33931. 4052 2005-07-07 03:38:22 206 442 2005-07-13 02:56:22 2 2006-02-16 02:30:53
  33932. 4053 2005-07-07 03:39:22 2889 377 2005-07-09 22:32:22 1 2006-02-16 02:30:53
  33933. 4054 2005-07-07 03:42:07 3885 260 2005-07-10 03:22:07 1 2006-02-16 02:30:53
  33934. 4055 2005-07-07 03:49:13 2561 513 2005-07-11 03:15:13 2 2006-02-16 02:30:53
  33935. 4056 2005-07-07 03:57:36 4211 360 2005-07-09 08:53:36 2 2006-02-16 02:30:53
  33936. 4057 2005-07-07 04:00:20 2838 141 2005-07-12 08:14:20 1 2006-02-16 02:30:53
  33937. 4058 2005-07-07 04:02:50 3877 442 2005-07-10 04:30:50 2 2006-02-16 02:30:53
  33938. 4059 2005-07-07 04:04:26 292 401 2005-07-10 22:35:26 1 2006-02-16 02:30:53
  33939. 4060 2005-07-07 04:10:13 2697 211 2005-07-13 07:44:13 1 2006-02-16 02:30:53
  33940. 4061 2005-07-07 04:13:35 62 70 2005-07-10 23:58:35 2 2006-02-16 02:30:53
  33941. 4062 2005-07-07 04:22:27 1323 410 2005-07-09 03:27:27 1 2006-02-16 02:30:53
  33942. 4063 2005-07-07 04:23:57 1452 331 2005-07-14 23:35:57 2 2006-02-16 02:30:53
  33943. 4064 2005-07-07 04:29:20 1402 47 2005-07-14 05:48:20 2 2006-02-16 02:30:53
  33944. 4065 2005-07-07 04:32:28 1339 26 2005-07-12 08:30:28 1 2006-02-16 02:30:53
  33945. 4066 2005-07-07 04:34:09 1975 368 2005-07-10 23:54:09 1 2006-02-16 02:30:53
  33946. 4067 2005-07-07 04:34:23 2945 469 2005-07-16 04:04:23 1 2006-02-16 02:30:53
  33947. 4068 2005-07-07 04:34:38 4152 206 2005-07-11 09:16:38 2 2006-02-16 02:30:53
  33948. 4069 2005-07-07 04:35:06 3361 570 2005-07-10 23:59:06 2 2006-02-16 02:30:53
  33949. 4070 2005-07-07 04:37:09 2926 496 2005-07-08 04:19:09 2 2006-02-16 02:30:53
  33950. 4071 2005-07-07 04:37:26 2883 209 2005-07-13 06:45:26 2 2006-02-16 02:30:53
  33951. 4072 2005-07-07 04:48:02 3130 310 2005-07-12 10:32:02 2 2006-02-16 02:30:53
  33952. 4073 2005-07-07 04:49:13 647 290 2005-07-10 03:20:13 2 2006-02-16 02:30:53
  33953. 4074 2005-07-07 04:49:49 2347 412 2005-07-12 04:51:49 2 2006-02-16 02:30:53
  33954. 4075 2005-07-07 04:51:44 1989 593 2005-07-09 03:07:44 2 2006-02-16 02:30:53
  33955. 4076 2005-07-07 04:52:15 3148 329 2005-07-13 23:22:15 1 2006-02-16 02:30:53
  33956. 4077 2005-07-07 04:53:40 2445 377 2005-07-09 09:56:40 2 2006-02-16 02:30:53
  33957. 4078 2005-07-07 05:05:05 1671 522 2005-07-10 05:39:05 1 2006-02-16 02:30:53
  33958. 4079 2005-07-07 05:06:27 2202 84 2005-07-16 08:46:27 1 2006-02-16 02:30:53
  33959. 4080 2005-07-07 05:09:54 1364 148 2005-07-11 23:58:54 1 2006-02-16 02:30:53
  33960. 4081 2005-07-07 05:10:08 1138 284 2005-07-12 00:47:08 1 2006-02-16 02:30:53
  33961. 4082 2005-07-07 05:11:53 2904 108 2005-07-12 00:55:53 1 2006-02-16 02:30:53
  33962. 4083 2005-07-07 05:13:15 3454 490 2005-07-08 09:11:15 1 2006-02-16 02:30:53
  33963. 4084 2005-07-07 05:16:00 2588 441 2005-07-15 09:23:00 1 2006-02-16 02:30:53
  33964. 4085 2005-07-07 05:25:39 1683 573 2005-07-12 04:30:39 1 2006-02-16 02:30:53
  33965. 4086 2005-07-07 05:26:06 253 494 2005-07-12 00:45:06 2 2006-02-16 02:30:53
  33966. 4087 2005-07-07 05:30:56 3066 433 2005-07-16 10:20:56 1 2006-02-16 02:30:53
  33967. 4088 2005-07-07 05:31:55 234 66 2005-07-15 07:35:55 1 2006-02-16 02:30:53
  33968. 4089 2005-07-07 05:45:59 3431 102 2005-07-16 07:34:59 2 2006-02-16 02:30:53
  33969. 4090 2005-07-07 05:47:33 3096 67 2005-07-08 04:25:33 2 2006-02-16 02:30:53
  33970. 4091 2005-07-07 05:53:38 3928 337 2005-07-14 03:12:38 2 2006-02-16 02:30:53
  33971. 4092 2005-07-07 05:54:18 1721 246 2005-07-16 09:14:18 1 2006-02-16 02:30:53
  33972. 4093 2005-07-07 05:54:50 1534 337 2005-07-12 00:34:50 1 2006-02-16 02:30:53
  33973. 4094 2005-07-07 06:00:21 2412 517 2005-07-10 03:24:21 2 2006-02-16 02:30:53
  33974. 4095 2005-07-07 06:01:48 2900 33 2005-07-15 02:52:48 2 2006-02-16 02:30:53
  33975. 4096 2005-07-07 06:09:11 3911 403 2005-07-08 09:17:11 2 2006-02-16 02:30:53
  33976. 4097 2005-07-07 06:10:55 2454 56 2005-07-11 02:45:55 1 2006-02-16 02:30:53
  33977. 4098 2005-07-07 06:14:51 2865 35 2005-07-14 06:51:51 2 2006-02-16 02:30:53
  33978. 4099 2005-07-07 06:20:33 1930 76 2005-07-16 08:39:33 1 2006-02-16 02:30:53
  33979. 4100 2005-07-07 06:20:52 2346 332 2005-07-15 05:58:52 2 2006-02-16 02:30:53
  33980. 4101 2005-07-07 06:25:11 2891 588 2005-07-12 07:44:11 2 2006-02-16 02:30:53
  33981. 4102 2005-07-07 06:25:19 3998 135 2005-07-11 00:50:19 2 2006-02-16 02:30:53
  33982. 4103 2005-07-07 06:25:28 3632 91 2005-07-12 11:18:28 1 2006-02-16 02:30:53
  33983. 4104 2005-07-07 06:25:41 1066 338 2005-07-13 04:18:41 2 2006-02-16 02:30:53
  33984. 4105 2005-07-07 06:31:00 439 423 2005-07-09 03:52:00 1 2006-02-16 02:30:53
  33985. 4106 2005-07-07 06:33:35 4083 563 2005-07-13 04:03:35 1 2006-02-16 02:30:53
  33986. 4107 2005-07-07 06:36:32 4232 206 2005-07-14 03:36:32 1 2006-02-16 02:30:53
  33987. 4108 2005-07-07 06:38:31 4535 66 2005-07-08 10:44:31 1 2006-02-16 02:30:53
  33988. 4109 2005-07-07 06:39:43 532 517 2005-07-10 06:30:43 1 2006-02-16 02:30:53
  33989. 4110 2005-07-07 06:44:27 226 486 2005-07-12 05:43:27 2 2006-02-16 02:30:53
  33990. 4111 2005-07-07 06:47:56 1009 515 2005-07-13 02:13:56 1 2006-02-16 02:30:53
  33991. 4112 2005-07-07 06:49:09 3284 533 2005-07-16 06:53:09 2 2006-02-16 02:30:53
  33992. 4113 2005-07-07 06:49:52 915 170 2005-07-12 04:00:52 1 2006-02-16 02:30:53
  33993. 4114 2005-07-07 06:51:12 4109 426 2005-07-15 01:36:12 1 2006-02-16 02:30:53
  33994. 4115 2005-07-07 06:52:23 102 371 2005-07-14 06:12:23 2 2006-02-16 02:30:53
  33995. 4116 2005-07-07 06:56:13 666 352 2005-07-11 11:13:13 2 2006-02-16 02:30:53
  33996. 4117 2005-07-07 06:58:14 780 158 2005-07-16 05:28:14 1 2006-02-16 02:30:53
  33997. 4118 2005-07-07 07:03:30 355 224 2005-07-08 09:20:30 1 2006-02-16 02:30:53
  33998. 4119 2005-07-07 07:06:03 2078 319 2005-07-13 01:56:03 2 2006-02-16 02:30:53
  33999. 4120 2005-07-07 07:07:03 987 559 2005-07-16 04:07:03 1 2006-02-16 02:30:53
  34000. 4121 2005-07-07 07:13:50 2429 176 2005-07-13 04:32:50 2 2006-02-16 02:30:53
  34001. 4122 2005-07-07 07:15:35 273 31 2005-07-14 12:10:35 1 2006-02-16 02:30:53
  34002. 4123 2005-07-07 07:16:19 2707 469 2005-07-10 05:23:19 1 2006-02-16 02:30:53
  34003. 4124 2005-07-07 07:19:54 2856 330 2005-07-11 05:54:54 1 2006-02-16 02:30:53
  34004. 4125 2005-07-07 07:20:29 4131 269 2005-07-15 06:41:29 2 2006-02-16 02:30:53
  34005. 4126 2005-07-07 07:24:11 3018 163 2005-07-15 07:31:11 1 2006-02-16 02:30:53
  34006. 4127 2005-07-07 07:26:19 1774 15 2005-07-14 07:50:19 2 2006-02-16 02:30:53
  34007. 4128 2005-07-07 07:35:25 3563 492 2005-07-14 08:13:25 1 2006-02-16 02:30:53
  34008. 4129 2005-07-07 07:37:03 1413 592 2005-07-14 13:31:03 1 2006-02-16 02:30:53
  34009. 4130 2005-07-07 07:51:53 4170 256 2005-07-11 12:41:53 2 2006-02-16 02:30:53
  34010. 4131 2005-07-07 07:53:18 2621 58 2005-07-08 04:48:18 1 2006-02-16 02:30:53
  34011. 4132 2005-07-07 08:06:07 993 154 2005-07-10 14:04:07 1 2006-02-16 02:30:53
  34012. 4133 2005-07-07 08:12:26 3672 488 2005-07-16 03:43:26 1 2006-02-16 02:30:53
  34013. 4134 2005-07-07 08:14:24 2917 183 2005-07-09 10:42:24 1 2006-02-16 02:30:53
  34014. 4135 2005-07-07 08:15:03 3384 36 2005-07-11 10:56:03 1 2006-02-16 02:30:53
  34015. 4136 2005-07-07 08:15:52 3461 203 2005-07-10 04:22:52 2 2006-02-16 02:30:53
  34016. 4137 2005-07-07 08:17:06 2065 485 2005-07-11 10:52:06 2 2006-02-16 02:30:53
  34017. 4138 2005-07-07 08:17:13 1588 317 2005-07-14 05:18:13 2 2006-02-16 02:30:53
  34018. 4139 2005-07-07 08:17:35 2094 509 2005-07-14 14:01:35 2 2006-02-16 02:30:53
  34019. 4140 2005-07-07 08:19:10 1897 190 2005-07-14 07:27:10 2 2006-02-16 02:30:53
  34020. 4141 2005-07-07 08:19:20 1904 456 2005-07-11 06:54:20 1 2006-02-16 02:30:53
  34021. 4142 2005-07-07 08:19:45 4045 492 2005-07-08 13:55:45 1 2006-02-16 02:30:53
  34022. 4143 2005-07-07 08:22:07 597 238 2005-07-13 11:42:07 1 2006-02-16 02:30:53
  34023. 4144 2005-07-07 08:25:44 550 431 2005-07-16 13:10:44 2 2006-02-16 02:30:53
  34024. 4145 2005-07-07 08:26:39 3050 592 2005-07-16 12:54:39 2 2006-02-16 02:30:53
  34025. 4146 2005-07-07 08:30:16 176 411 2005-07-12 07:52:16 1 2006-02-16 02:30:53
  34026. 4147 2005-07-07 08:32:12 2776 274 2005-07-12 10:10:12 2 2006-02-16 02:30:53
  34027. 4148 2005-07-07 08:36:58 260 59 2005-07-09 05:51:58 1 2006-02-16 02:30:53
  34028. 4149 2005-07-07 08:40:17 3028 50 2005-07-10 02:58:17 2 2006-02-16 02:30:53
  34029. 4150 2005-07-07 08:43:22 4424 188 2005-07-08 05:21:22 2 2006-02-16 02:30:53
  34030. 4151 2005-07-07 08:49:02 4564 428 2005-07-11 05:19:02 1 2006-02-16 02:30:53
  34031. 4152 2005-07-07 08:50:33 1761 89 2005-07-14 10:56:33 2 2006-02-16 02:30:53
  34032. 4153 2005-07-07 08:53:08 2185 299 2005-07-11 05:09:08 2 2006-02-16 02:30:53
  34033. 4154 2005-07-07 08:58:23 191 594 2005-07-14 03:16:23 2 2006-02-16 02:30:53
  34034. 4155 2005-07-07 09:00:49 212 548 2005-07-13 10:59:49 2 2006-02-16 02:30:53
  34035. 4156 2005-07-07 09:03:51 1259 585 2005-07-12 09:46:51 2 2006-02-16 02:30:53
  34036. 4157 2005-07-07 09:04:26 304 183 2005-07-08 09:55:26 1 2006-02-16 02:30:53
  34037. 4158 2005-07-07 09:05:42 291 433 2005-07-09 04:28:42 1 2006-02-16 02:30:53
  34038. 4159 2005-07-07 09:10:57 3625 62 2005-07-09 10:19:57 2 2006-02-16 02:30:53
  34039. 4160 2005-07-07 09:13:17 1909 326 2005-07-15 11:50:17 2 2006-02-16 02:30:53
  34040. 4161 2005-07-07 09:15:11 4021 216 2005-07-15 06:59:11 1 2006-02-16 02:30:53
  34041. 4162 2005-07-07 09:17:26 745 571 2005-07-15 10:15:26 2 2006-02-16 02:30:53
  34042. 4163 2005-07-07 09:19:28 3176 376 2005-07-10 06:47:28 2 2006-02-16 02:30:53
  34043. 4164 2005-07-07 09:20:11 3133 295 2005-07-14 09:35:11 1 2006-02-16 02:30:53
  34044. 4165 2005-07-07 09:23:27 3845 66 2005-07-15 06:00:27 1 2006-02-16 02:30:53
  34045. 4166 2005-07-07 09:33:30 3267 376 2005-07-16 06:06:30 1 2006-02-16 02:30:53
  34046. 4167 2005-07-07 09:37:08 3771 175 2005-07-16 06:16:08 2 2006-02-16 02:30:53
  34047. 4168 2005-07-07 09:37:24 1872 132 2005-07-09 14:32:24 2 2006-02-16 02:30:53
  34048. 4169 2005-07-07 09:39:18 3360 580 2005-07-11 13:43:18 1 2006-02-16 02:30:53
  34049. 4170 2005-07-07 09:44:36 2665 99 2005-07-13 14:10:36 1 2006-02-16 02:30:53
  34050. 4171 2005-07-07 09:49:04 4199 476 2005-07-14 03:58:04 2 2006-02-16 02:30:53
  34051. 4172 2005-07-07 09:49:09 1158 309 2005-07-11 15:14:09 2 2006-02-16 02:30:53
  34052. 4173 2005-07-07 09:57:26 4272 320 2005-07-10 04:05:26 1 2006-02-16 02:30:53
  34053. 4174 2005-07-07 09:59:49 3814 182 2005-07-11 13:34:49 1 2006-02-16 02:30:53
  34054. 4175 2005-07-07 10:02:03 1979 8 2005-07-10 06:09:03 2 2006-02-16 02:30:53
  34055. 4176 2005-07-07 10:03:34 2745 420 2005-07-16 08:43:34 1 2006-02-16 02:30:53
  34056. 4177 2005-07-07 10:12:36 4106 317 2005-07-15 15:48:36 2 2006-02-16 02:30:53
  34057. 4178 2005-07-07 10:14:31 2898 513 2005-07-12 09:38:31 2 2006-02-16 02:30:53
  34058. 4179 2005-07-07 10:17:15 559 75 2005-07-10 05:12:15 2 2006-02-16 02:30:53
  34059. 4180 2005-07-07 10:23:25 1704 3 2005-07-10 13:18:25 1 2006-02-16 02:30:53
  34060. 4181 2005-07-07 10:27:54 3725 598 2005-07-13 06:09:54 1 2006-02-16 02:30:53
  34061. 4182 2005-07-07 10:28:00 3080 256 2005-07-08 12:50:00 1 2006-02-16 02:30:53
  34062. 4183 2005-07-07 10:28:33 3342 479 2005-07-15 12:29:33 1 2006-02-16 02:30:53
  34063. 4184 2005-07-07 10:30:08 1022 468 2005-07-14 12:56:08 1 2006-02-16 02:30:53
  34064. 4185 2005-07-07 10:31:05 2425 395 2005-07-13 05:30:05 2 2006-02-16 02:30:53
  34065. 4186 2005-07-07 10:32:25 3910 185 2005-07-15 06:22:25 1 2006-02-16 02:30:53
  34066. 4187 2005-07-07 10:41:31 2 161 2005-07-11 06:25:31 1 2006-02-16 02:30:53
  34067. 4188 2005-07-07 10:45:29 3243 391 2005-07-16 09:39:29 1 2006-02-16 02:30:53
  34068. 4189 2005-07-07 10:51:07 1492 386 2005-07-14 14:46:07 2 2006-02-16 02:30:53
  34069. 4190 2005-07-07 10:52:39 826 349 2005-07-11 13:19:39 1 2006-02-16 02:30:53
  34070. 4191 2005-07-07 10:56:14 2475 390 2005-07-11 09:56:14 1 2006-02-16 02:30:53
  34071. 4192 2005-07-07 10:57:06 624 558 2005-07-13 16:30:06 1 2006-02-16 02:30:53
  34072. 4193 2005-07-07 10:57:21 3791 445 2005-07-09 07:33:21 2 2006-02-16 02:30:53
  34073. 4194 2005-07-07 10:59:39 1753 153 2005-07-15 09:34:39 1 2006-02-16 02:30:53
  34074. 4195 2005-07-07 11:00:02 450 455 2005-07-14 16:54:02 1 2006-02-16 02:30:53
  34075. 4196 2005-07-07 11:06:33 3407 564 2005-07-14 13:46:33 1 2006-02-16 02:30:53
  34076. 4197 2005-07-07 11:07:52 2515 324 2005-07-10 10:19:52 1 2006-02-16 02:30:53
  34077. 4198 2005-07-07 11:08:11 333 247 2005-07-16 15:29:11 1 2006-02-16 02:30:53
  34078. 4199 2005-07-07 11:13:07 2120 259 2005-07-11 07:17:07 1 2006-02-16 02:30:53
  34079. 4200 2005-07-07 11:15:11 1097 292 2005-07-11 11:46:11 2 2006-02-16 02:30:53
  34080. 4201 2005-07-07 11:19:51 3682 145 2005-07-16 08:48:51 1 2006-02-16 02:30:53
  34081. 4202 2005-07-07 11:23:48 2274 38 2005-07-16 16:32:48 1 2006-02-16 02:30:53
  34082. 4203 2005-07-07 11:24:14 2743 189 2005-07-11 16:26:14 1 2006-02-16 02:30:53
  34083. 4204 2005-07-07 11:24:18 1513 569 2005-07-15 12:42:18 1 2006-02-16 02:30:53
  34084. 4205 2005-07-07 11:25:39 3922 486 2005-07-11 06:12:39 1 2006-02-16 02:30:53
  34085. 4206 2005-07-07 11:32:16 1557 448 2005-07-14 13:07:16 2 2006-02-16 02:30:53
  34086. 4207 2005-07-07 11:32:45 1119 588 2005-07-14 05:49:45 2 2006-02-16 02:30:53
  34087. 4208 2005-07-07 11:34:22 3617 441 2005-07-09 08:25:22 1 2006-02-16 02:30:53
  34088. 4209 2005-07-07 11:35:08 2010 100 2005-07-10 10:58:08 1 2006-02-16 02:30:53
  34089. 4210 2005-07-07 11:36:20 1972 581 2005-07-16 12:38:20 1 2006-02-16 02:30:53
  34090. 4211 2005-07-07 11:50:41 2001 214 2005-07-09 13:58:41 2 2006-02-16 02:30:53
  34091. 4212 2005-07-07 11:53:14 1825 574 2005-07-09 07:12:14 1 2006-02-16 02:30:53
  34092. 4213 2005-07-07 11:53:49 705 103 2005-07-13 07:51:49 1 2006-02-16 02:30:53
  34093. 4214 2005-07-07 11:54:33 2534 484 2005-07-08 10:49:33 2 2006-02-16 02:30:53
  34094. 4215 2005-07-07 12:00:52 1239 22 2005-07-11 15:14:52 2 2006-02-16 02:30:53
  34095. 4216 2005-07-07 12:01:34 1216 467 2005-07-08 09:59:34 1 2006-02-16 02:30:53
  34096. 4217 2005-07-07 12:08:59 3186 228 2005-07-11 15:07:59 2 2006-02-16 02:30:53
  34097. 4218 2005-07-07 12:10:24 152 497 2005-07-15 16:09:24 1 2006-02-16 02:30:53
  34098. 4219 2005-07-07 12:11:22 2800 16 2005-07-11 11:05:22 1 2006-02-16 02:30:53
  34099. 4220 2005-07-07 12:12:36 821 513 2005-07-10 13:37:36 1 2006-02-16 02:30:53
  34100. 4221 2005-07-07 12:18:57 4567 143 2005-07-12 09:47:57 2 2006-02-16 02:30:53
  34101. 4222 2005-07-07 12:20:21 2053 467 2005-07-11 11:09:21 2 2006-02-16 02:30:53
  34102. 4223 2005-07-07 12:23:54 2407 405 2005-07-10 14:46:54 2 2006-02-16 02:30:53
  34103. 4224 2005-07-07 12:24:21 3659 419 2005-07-10 11:48:21 1 2006-02-16 02:30:53
  34104. 4225 2005-07-07 12:24:37 1766 377 2005-07-12 06:47:37 2 2006-02-16 02:30:53
  34105. 4226 2005-07-07 12:37:56 1692 57 2005-07-09 08:48:56 2 2006-02-16 02:30:53
  34106. 4227 2005-07-07 12:41:36 4186 78 2005-07-15 12:33:36 1 2006-02-16 02:30:53
  34107. 4228 2005-07-07 12:42:02 1020 38 2005-07-12 10:52:02 1 2006-02-16 02:30:53
  34108. 4229 2005-07-07 12:43:23 953 106 2005-07-13 15:00:23 2 2006-02-16 02:30:53
  34109. 4230 2005-07-07 12:46:47 353 205 2005-07-15 06:52:47 1 2006-02-16 02:30:53
  34110. 4231 2005-07-07 12:48:19 3522 194 2005-07-13 18:45:19 1 2006-02-16 02:30:53
  34111. 4232 2005-07-07 12:49:12 3841 347 2005-07-15 16:45:12 1 2006-02-16 02:30:53
  34112. 4233 2005-07-07 13:00:20 1849 488 2005-07-13 16:37:20 1 2006-02-16 02:30:53
  34113. 4234 2005-07-07 13:01:35 1179 195 2005-07-15 13:05:35 1 2006-02-16 02:30:53
  34114. 4235 2005-07-07 13:05:52 3525 86 2005-07-10 12:17:52 2 2006-02-16 02:30:53
  34115. 4236 2005-07-07 13:12:07 642 213 2005-07-08 15:00:07 2 2006-02-16 02:30:53
  34116. 4237 2005-07-07 13:16:55 3773 477 2005-07-15 16:33:55 1 2006-02-16 02:30:53
  34117. 4238 2005-07-07 13:22:20 3024 7 2005-07-10 07:44:20 2 2006-02-16 02:30:53
  34118. 4239 2005-07-07 13:23:17 3866 122 2005-07-13 17:49:17 1 2006-02-16 02:30:53
  34119. 4240 2005-07-07 13:33:12 1024 65 2005-07-13 12:28:12 1 2006-02-16 02:30:53
  34120. 4241 2005-07-07 13:39:00 4154 595 2005-07-12 17:49:00 2 2006-02-16 02:30:53
  34121. 4242 2005-07-07 13:39:01 3626 286 2005-07-12 18:29:01 1 2006-02-16 02:30:53
  34122. 4243 2005-07-07 13:39:58 4559 339 2005-07-12 19:27:58 1 2006-02-16 02:30:53
  34123. 4244 2005-07-07 13:41:58 592 581 2005-07-09 15:32:58 2 2006-02-16 02:30:53
  34124. 4245 2005-07-07 13:48:33 3743 91 2005-07-10 09:54:33 1 2006-02-16 02:30:53
  34125. 4246 2005-07-07 13:49:03 1141 411 2005-07-09 13:01:03 1 2006-02-16 02:30:53
  34126. 4247 2005-07-07 13:51:54 808 539 2005-07-10 09:43:54 2 2006-02-16 02:30:53
  34127. 4248 2005-07-07 13:59:20 773 161 2005-07-14 15:18:20 2 2006-02-16 02:30:53
  34128. 4249 2005-07-07 14:05:17 4185 111 2005-07-10 09:21:17 2 2006-02-16 02:30:53
  34129. 4250 2005-07-07 14:08:11 2556 423 2005-07-13 08:09:11 2 2006-02-16 02:30:53
  34130. 4251 2005-07-07 14:11:55 3541 367 2005-07-16 14:01:55 2 2006-02-16 02:30:53
  34131. 4252 2005-07-07 14:13:05 474 154 2005-07-09 14:17:05 1 2006-02-16 02:30:53
  34132. 4253 2005-07-07 14:13:13 3355 157 2005-07-16 18:55:13 2 2006-02-16 02:30:53
  34133. 4254 2005-07-07 14:13:52 3957 529 2005-07-12 10:39:52 2 2006-02-16 02:30:53
  34134. 4255 2005-07-07 14:14:13 749 10 2005-07-12 18:32:13 1 2006-02-16 02:30:53
  34135. 4256 2005-07-07 14:14:36 1386 129 2005-07-10 09:41:36 1 2006-02-16 02:30:53
  34136. 4257 2005-07-07 14:18:41 3927 553 2005-07-08 14:58:41 1 2006-02-16 02:30:53
  34137. 4258 2005-07-07 14:20:59 1562 492 2005-07-16 10:03:59 1 2006-02-16 02:30:53
  34138. 4259 2005-07-07 14:22:18 4378 467 2005-07-11 19:38:18 1 2006-02-16 02:30:53
  34139. 4260 2005-07-07 14:22:45 4575 305 2005-07-08 15:10:45 2 2006-02-16 02:30:53
  34140. 4261 2005-07-07 14:23:56 1405 496 2005-07-13 15:26:56 1 2006-02-16 02:30:53
  34141. 4262 2005-07-07 14:24:30 3122 29 2005-07-14 13:12:30 1 2006-02-16 02:30:53
  34142. 4263 2005-07-07 14:24:44 2975 16 2005-07-13 18:22:44 1 2006-02-16 02:30:53
  34143. 4264 2005-07-07 14:25:28 3499 406 2005-07-08 08:49:28 2 2006-02-16 02:30:53
  34144. 4265 2005-07-07 14:27:51 1685 69 2005-07-12 19:55:51 2 2006-02-16 02:30:53
  34145. 4266 2005-07-07 14:34:50 1578 509 2005-07-08 09:23:50 2 2006-02-16 02:30:53
  34146. 4267 2005-07-07 14:35:30 136 410 2005-07-11 10:41:30 1 2006-02-16 02:30:53
  34147. 4268 2005-07-07 14:36:05 432 80 2005-07-16 14:36:05 1 2006-02-16 02:30:53
  34148. 4269 2005-07-07 14:38:33 415 496 2005-07-09 10:27:33 1 2006-02-16 02:30:53
  34149. 4270 2005-07-07 14:38:41 183 210 2005-07-10 19:07:41 2 2006-02-16 02:30:53
  34150. 4271 2005-07-07 14:38:52 533 150 2005-07-15 12:05:52 1 2006-02-16 02:30:53
  34151. 4272 2005-07-07 14:39:20 488 120 2005-07-13 08:57:20 2 2006-02-16 02:30:53
  34152. 4273 2005-07-07 14:40:22 4163 159 2005-07-13 09:58:22 2 2006-02-16 02:30:53
  34153. 4274 2005-07-07 14:42:04 787 26 2005-07-13 20:23:04 1 2006-02-16 02:30:53
  34154. 4275 2005-07-07 14:43:51 1167 393 2005-07-15 18:04:51 2 2006-02-16 02:30:53
  34155. 4276 2005-07-07 14:50:59 221 366 2005-07-09 15:42:59 2 2006-02-16 02:30:53
  34156. 4277 2005-07-07 14:52:12 1983 106 2005-07-09 13:10:12 1 2006-02-16 02:30:53
  34157. 4278 2005-07-07 14:53:24 3693 6 2005-07-13 14:21:24 2 2006-02-16 02:30:53
  34158. 4279 2005-07-07 15:01:53 581 335 2005-07-08 09:43:53 1 2006-02-16 02:30:53
  34159. 4280 2005-07-07 15:09:31 1115 593 2005-07-13 14:47:31 1 2006-02-16 02:30:53
  34160. 4281 2005-07-07 15:17:50 1182 321 2005-07-08 11:42:50 2 2006-02-16 02:30:53
  34161. 4282 2005-07-07 15:26:31 3134 25 2005-07-11 14:27:31 1 2006-02-16 02:30:53
  34162. 4283 2005-07-07 15:29:35 2807 477 2005-07-11 17:12:35 1 2006-02-16 02:30:53
  34163. 4284 2005-07-07 15:31:57 1313 521 2005-07-09 10:20:57 2 2006-02-16 02:30:53
  34164. 4285 2005-07-07 15:34:35 511 308 2005-07-15 09:43:35 2 2006-02-16 02:30:53
  34165. 4286 2005-07-07 15:36:44 4496 111 2005-07-11 13:04:44 2 2006-02-16 02:30:53
  34166. 4287 2005-07-07 15:37:31 3558 94 2005-07-16 19:59:31 2 2006-02-16 02:30:53
  34167. 4288 2005-07-07 15:38:25 1508 64 2005-07-13 16:23:25 2 2006-02-16 02:30:53
  34168. 4289 2005-07-07 15:45:58 3172 231 2005-07-09 11:11:58 2 2006-02-16 02:30:53
  34169. 4290 2005-07-07 15:47:10 4174 277 2005-07-15 15:03:10 1 2006-02-16 02:30:53
  34170. 4291 2005-07-07 15:47:47 2074 298 2005-07-10 11:45:47 1 2006-02-16 02:30:53
  34171. 4292 2005-07-07 15:48:38 3084 401 2005-07-15 17:53:38 1 2006-02-16 02:30:53
  34172. 4293 2005-07-07 15:53:47 984 221 2005-07-10 18:11:47 1 2006-02-16 02:30:53
  34173. 4294 2005-07-07 15:56:23 2845 41 2005-07-15 14:50:23 2 2006-02-16 02:30:53
  34174. 4295 2005-07-07 16:08:51 2490 319 2005-07-13 13:06:51 2 2006-02-16 02:30:53
  34175. 4296 2005-07-07 16:16:03 977 407 2005-07-08 20:16:03 2 2006-02-16 02:30:53
  34176. 4297 2005-07-07 16:24:09 882 141 2005-07-13 15:08:09 2 2006-02-16 02:30:53
  34177. 4298 2005-07-07 16:27:25 1055 560 2005-07-12 18:20:25 1 2006-02-16 02:30:53
  34178. 4299 2005-07-07 16:33:48 870 80 2005-07-16 11:48:48 1 2006-02-16 02:30:53
  34179. 4300 2005-07-07 16:36:16 1189 38 2005-07-10 13:59:16 2 2006-02-16 02:30:53
  34180. 4301 2005-07-07 16:37:23 1630 440 2005-07-11 18:05:23 2 2006-02-16 02:30:53
  34181. 4302 2005-07-07 16:47:53 3669 332 2005-07-16 22:22:53 2 2006-02-16 02:30:53
  34182. 4303 2005-07-07 16:57:32 818 108 2005-07-14 17:42:32 2 2006-02-16 02:30:53
  34183. 4304 2005-07-07 17:01:19 3382 165 2005-07-12 22:47:19 2 2006-02-16 02:30:53
  34184. 4305 2005-07-07 17:07:11 3926 240 2005-07-08 16:15:11 2 2006-02-16 02:30:53
  34185. 4306 2005-07-07 17:12:32 1219 210 2005-07-16 11:24:32 2 2006-02-16 02:30:53
  34186. 4307 2005-07-07 17:20:39 2827 394 2005-07-16 14:42:39 1 2006-02-16 02:30:53
  34187. 4308 2005-07-07 17:29:16 1482 168 2005-07-11 21:47:16 1 2006-02-16 02:30:53
  34188. 4309 2005-07-07 17:29:41 3549 209 2005-07-14 22:22:41 2 2006-02-16 02:30:53
  34189. 4310 2005-07-07 17:30:56 3842 390 2005-07-12 13:19:56 2 2006-02-16 02:30:53
  34190. 4311 2005-07-07 17:31:14 2985 498 2005-07-11 19:21:14 2 2006-02-16 02:30:53
  34191. 4312 2005-07-07 17:34:59 3870 97 2005-07-09 17:45:59 2 2006-02-16 02:30:53
  34192. 4313 2005-07-07 17:36:56 91 29 2005-07-13 12:00:56 1 2006-02-16 02:30:53
  34193. 4314 2005-07-07 17:38:31 539 184 2005-07-09 20:24:31 1 2006-02-16 02:30:53
  34194. 4315 2005-07-07 17:40:26 1472 195 2005-07-09 22:58:26 2 2006-02-16 02:30:53
  34195. 4316 2005-07-07 17:44:22 517 301 2005-07-14 15:12:22 2 2006-02-16 02:30:53
  34196. 4317 2005-07-07 17:44:49 2234 110 2005-07-08 21:48:49 2 2006-02-16 02:30:53
  34197. 4318 2005-07-07 17:47:50 1607 321 2005-07-14 12:15:50 2 2006-02-16 02:30:53
  34198. 4319 2005-07-07 17:50:27 3389 25 2005-07-10 13:53:27 2 2006-02-16 02:30:53
  34199. 4320 2005-07-07 17:51:59 3437 376 2005-07-13 18:39:59 1 2006-02-16 02:30:53
  34200. 4321 2005-07-07 17:52:38 612 91 2005-07-11 23:37:38 1 2006-02-16 02:30:53
  34201. 4322 2005-07-07 17:54:37 1522 568 2005-07-14 13:56:37 1 2006-02-16 02:30:53
  34202. 4323 2005-07-07 17:55:53 1287 336 2005-07-13 16:43:53 2 2006-02-16 02:30:53
  34203. 4324 2005-07-07 17:57:56 952 226 2005-07-13 22:34:56 1 2006-02-16 02:30:53
  34204. 4325 2005-07-07 17:59:24 3728 373 2005-07-16 17:10:24 2 2006-02-16 02:30:53
  34205. 4326 2005-07-07 18:01:22 4037 331 2005-07-16 15:45:22 1 2006-02-16 02:30:53
  34206. 4327 2005-07-07 18:01:39 860 73 2005-07-12 22:40:39 1 2006-02-16 02:30:53
  34207. 4328 2005-07-07 18:03:17 2174 264 2005-07-14 16:14:17 1 2006-02-16 02:30:53
  34208. 4329 2005-07-07 18:04:16 638 504 2005-07-15 17:58:16 2 2006-02-16 02:30:53
  34209. 4330 2005-07-07 18:09:41 2408 408 2005-07-14 22:05:41 1 2006-02-16 02:30:53
  34210. 4331 2005-07-07 18:22:30 419 535 2005-07-13 18:20:30 1 2006-02-16 02:30:53
  34211. 4332 2005-07-07 18:25:26 1714 137 2005-07-16 15:05:26 1 2006-02-16 02:30:53
  34212. 4333 2005-07-07 18:31:50 76 113 2005-07-08 21:26:50 1 2006-02-16 02:30:53
  34213. 4334 2005-07-07 18:32:04 3021 210 2005-07-08 16:19:04 1 2006-02-16 02:30:53
  34214. 4335 2005-07-07 18:33:57 1332 375 2005-07-11 13:23:57 1 2006-02-16 02:30:53
  34215. 4336 2005-07-07 18:34:36 482 532 2005-07-10 17:58:36 2 2006-02-16 02:30:53
  34216. 4337 2005-07-07 18:36:37 2313 464 2005-07-14 14:59:37 2 2006-02-16 02:30:53
  34217. 4338 2005-07-07 18:39:56 3152 581 2005-07-12 21:03:56 1 2006-02-16 02:30:53
  34218. 4339 2005-07-07 18:41:42 3215 130 2005-07-08 13:00:42 1 2006-02-16 02:30:53
  34219. 4340 2005-07-07 18:41:46 3919 227 2005-07-16 21:27:46 1 2006-02-16 02:30:53
  34220. 4341 2005-07-07 18:44:23 4523 124 2005-07-15 18:13:23 1 2006-02-16 02:30:53
  34221. 4342 2005-07-07 18:47:03 1355 120 2005-07-09 21:59:03 2 2006-02-16 02:30:53
  34222. 4343 2005-07-07 18:48:54 1926 293 2005-07-12 15:19:54 1 2006-02-16 02:30:53
  34223. 4344 2005-07-07 18:50:47 1185 99 2005-07-12 16:38:47 2 2006-02-16 02:30:53
  34224. 4345 2005-07-07 18:52:57 2235 225 2005-07-15 21:24:57 2 2006-02-16 02:30:53
  34225. 4346 2005-07-07 18:58:45 1906 520 2005-07-10 16:37:45 1 2006-02-16 02:30:53
  34226. 4347 2005-07-07 18:58:57 1964 344 2005-07-14 16:35:57 2 2006-02-16 02:30:53
  34227. 4348 2005-07-07 19:02:05 1948 452 2005-07-09 20:51:05 2 2006-02-16 02:30:53
  34228. 4349 2005-07-07 19:02:37 3430 182 2005-07-09 17:25:37 2 2006-02-16 02:30:53
  34229. 4350 2005-07-07 19:02:41 2223 299 2005-07-09 15:27:41 1 2006-02-16 02:30:53
  34230. 4351 2005-07-07 19:04:24 3567 382 2005-07-14 00:03:24 2 2006-02-16 02:30:53
  34231. 4352 2005-07-07 19:15:58 2636 249 2005-07-16 20:22:58 2 2006-02-16 02:30:53
  34232. 4353 2005-07-07 19:19:05 368 452 2005-07-13 13:40:05 1 2006-02-16 02:30:53
  34233. 4354 2005-07-07 19:21:02 4423 208 2005-07-15 17:03:02 2 2006-02-16 02:30:53
  34234. 4355 2005-07-07 19:21:19 4557 438 2005-07-09 00:55:19 2 2006-02-16 02:30:53
  34235. 4356 2005-07-07 19:21:22 1907 318 2005-07-16 15:57:22 1 2006-02-16 02:30:53
  34236. 4357 2005-07-07 19:24:39 3413 103 2005-07-12 00:11:39 1 2006-02-16 02:30:53
  34237. 4358 2005-07-07 19:27:04 3136 446 2005-07-14 23:46:04 1 2006-02-16 02:30:53
  34238. 4359 2005-07-07 19:30:20 3222 282 2005-07-09 13:34:20 1 2006-02-16 02:30:53
  34239. 4360 2005-07-07 19:31:12 1811 92 2005-07-10 23:11:12 2 2006-02-16 02:30:53
  34240. 4361 2005-07-07 19:33:23 116 425 2005-07-12 22:36:23 1 2006-02-16 02:30:53
  34241. 4362 2005-07-07 19:35:30 3759 425 2005-07-14 14:59:30 1 2006-02-16 02:30:53
  34242. 4363 2005-07-07 19:43:28 3202 168 2005-07-13 00:15:28 2 2006-02-16 02:30:53
  34243. 4364 2005-07-07 19:46:51 10 145 2005-07-08 21:55:51 1 2006-02-16 02:30:53
  34244. 4365 2005-07-07 19:47:46 3207 442 2005-07-08 23:21:46 2 2006-02-16 02:30:53
  34245. 4366 2005-07-07 19:48:36 2961 524 2005-07-14 01:14:36 1 2006-02-16 02:30:53
  34246. 4367 2005-07-07 19:52:01 4529 48 2005-07-13 19:41:01 2 2006-02-16 02:30:53
  34247. 4368 2005-07-07 19:55:19 736 324 2005-07-09 00:11:19 1 2006-02-16 02:30:53
  34248. 4369 2005-07-07 20:01:38 3552 517 2005-07-13 01:19:38 2 2006-02-16 02:30:53
  34249. 4370 2005-07-07 20:05:36 1591 559 2005-07-16 23:58:36 1 2006-02-16 02:30:53
  34250. 4371 2005-07-07 20:06:45 2533 90 2005-07-08 18:50:45 1 2006-02-16 02:30:53
  34251. 4372 2005-07-07 20:09:01 2207 252 2005-07-09 18:24:01 1 2006-02-16 02:30:53
  34252. 4373 2005-07-07 20:10:59 3593 470 2005-07-12 21:30:59 2 2006-02-16 02:30:53
  34253. 4374 2005-07-07 20:13:58 4377 517 2005-07-11 18:11:58 2 2006-02-16 02:30:53
  34254. 4375 2005-07-07 20:20:29 3035 560 2005-07-16 19:29:29 2 2006-02-16 02:30:53
  34255. 4376 2005-07-07 20:24:33 1344 151 2005-07-11 18:32:33 1 2006-02-16 02:30:53
  34256. 4377 2005-07-07 20:28:57 3294 205 2005-07-16 02:13:57 2 2006-02-16 02:30:53
  34257. 4378 2005-07-07 20:29:08 1244 24 2005-07-12 19:17:08 2 2006-02-16 02:30:53
  34258. 4379 2005-07-07 20:32:30 2773 316 2005-07-11 20:40:30 2 2006-02-16 02:30:53
  34259. 4380 2005-07-07 20:35:00 3164 353 2005-07-14 17:06:00 1 2006-02-16 02:30:53
  34260. 4381 2005-07-07 20:37:53 3727 486 2005-07-10 16:54:53 1 2006-02-16 02:30:53
  34261. 4382 2005-07-07 20:41:03 657 26 2005-07-14 15:15:03 1 2006-02-16 02:30:53
  34262. 4383 2005-07-07 20:45:51 2649 591 2005-07-17 00:52:51 2 2006-02-16 02:30:53
  34263. 4384 2005-07-07 20:46:45 1178 59 2005-07-16 21:54:45 1 2006-02-16 02:30:53
  34264. 4385 2005-07-07 20:48:38 849 564 2005-07-11 17:03:38 2 2006-02-16 02:30:53
  34265. 4386 2005-07-07 20:55:19 499 314 2005-07-10 21:51:19 1 2006-02-16 02:30:53
  34266. 4387 2005-07-07 20:56:47 591 335 2005-07-16 00:51:47 1 2006-02-16 02:30:53
  34267. 4388 2005-07-07 20:58:03 3150 210 2005-07-16 20:05:03 2 2006-02-16 02:30:53
  34268. 4389 2005-07-07 20:58:58 1672 166 2005-07-13 19:57:58 2 2006-02-16 02:30:53
  34269. 4390 2005-07-07 20:59:06 6 44 2005-07-09 00:04:06 2 2006-02-16 02:30:53
  34270. 4391 2005-07-07 21:09:38 2135 42 2005-07-09 17:35:38 1 2006-02-16 02:30:53
  34271. 4392 2005-07-07 21:11:02 4236 491 2005-07-13 21:52:02 1 2006-02-16 02:30:53
  34272. 4393 2005-07-07 21:12:36 4034 395 2005-07-09 22:41:36 2 2006-02-16 02:30:53
  34273. 4394 2005-07-07 21:12:45 563 156 2005-07-16 18:24:45 2 2006-02-16 02:30:53
  34274. 4395 2005-07-07 21:13:22 360 544 2005-07-08 22:59:22 2 2006-02-16 02:30:53
  34275. 4396 2005-07-07 21:14:19 750 275 2005-07-10 19:22:19 1 2006-02-16 02:30:53
  34276. 4397 2005-07-07 21:14:54 3085 494 2005-07-13 19:24:54 2 2006-02-16 02:30:53
  34277. 4398 2005-07-07 21:18:44 3628 426 2005-07-10 22:45:44 1 2006-02-16 02:30:53
  34278. 4399 2005-07-07 21:20:28 4515 402 2005-07-12 20:57:28 2 2006-02-16 02:30:53
  34279. 4400 2005-07-07 21:22:26 49 370 2005-07-16 00:59:26 2 2006-02-16 02:30:53
  34280. 4401 2005-07-07 21:26:27 2725 405 2005-07-12 17:18:27 2 2006-02-16 02:30:53
  34281. 4402 2005-07-07 21:28:46 1198 26 2005-07-08 17:04:46 1 2006-02-16 02:30:53
  34282. 4403 2005-07-07 21:29:40 3973 447 2005-07-09 17:58:40 1 2006-02-16 02:30:53
  34283. 4404 2005-07-07 21:31:53 944 25 2005-07-13 19:00:53 1 2006-02-16 02:30:53
  34284. 4405 2005-07-07 21:33:16 2102 145 2005-07-15 00:33:16 2 2006-02-16 02:30:53
  34285. 4406 2005-07-07 21:35:16 438 448 2005-07-15 16:13:16 2 2006-02-16 02:30:53
  34286. 4407 2005-07-07 21:39:45 267 20 2005-07-11 23:40:45 1 2006-02-16 02:30:53
  34287. 4408 2005-07-07 21:41:06 2482 258 2005-07-11 00:32:06 1 2006-02-16 02:30:53
  34288. 4409 2005-07-07 21:47:29 3153 8 2005-07-11 20:14:29 2 2006-02-16 02:30:53
  34289. 4410 2005-07-07 21:48:16 2754 584 2005-07-09 03:15:16 1 2006-02-16 02:30:53
  34290. 4411 2005-07-07 21:54:58 320 224 2005-07-14 16:14:58 2 2006-02-16 02:30:53
  34291. 4412 2005-07-07 21:56:53 1181 282 2005-07-11 19:28:53 1 2006-02-16 02:30:53
  34292. 4413 2005-07-07 22:00:04 1062 565 2005-07-10 18:20:04 2 2006-02-16 02:30:53
  34293. 4414 2005-07-07 22:00:21 991 434 2005-07-12 02:51:21 1 2006-02-16 02:30:53
  34294. 4415 2005-07-07 22:01:43 1403 329 2005-07-13 03:09:43 2 2006-02-16 02:30:53
  34295. 4416 2005-07-07 22:04:36 1247 290 2005-07-09 02:44:36 2 2006-02-16 02:30:53
  34296. 4417 2005-07-07 22:05:05 743 452 2005-07-09 16:16:05 2 2006-02-16 02:30:53
  34297. 4418 2005-07-07 22:05:30 4368 417 2005-07-11 18:42:30 1 2006-02-16 02:30:53
  34298. 4419 2005-07-07 22:06:24 783 39 2005-07-15 23:59:24 1 2006-02-16 02:30:53
  34299. 4420 2005-07-07 22:07:31 4427 346 2005-07-12 19:14:31 2 2006-02-16 02:30:53
  34300. 4421 2005-07-07 22:07:55 4103 417 2005-07-16 20:21:55 1 2006-02-16 02:30:53
  34301. 4422 2005-07-07 22:09:45 1741 345 2005-07-10 01:43:45 1 2006-02-16 02:30:53
  34302. 4423 2005-07-07 22:11:28 2721 526 2005-07-14 18:49:28 2 2006-02-16 02:30:53
  34303. 4424 2005-07-07 22:14:43 662 384 2005-07-11 01:17:43 1 2006-02-16 02:30:53
  34304. 4425 2005-07-07 22:22:44 877 345 2005-07-08 22:23:44 2 2006-02-16 02:30:53
  34305. 4426 2005-07-07 22:28:32 364 242 2005-07-16 02:04:32 1 2006-02-16 02:30:53
  34306. 4427 2005-07-07 22:28:51 1021 69 2005-07-11 21:37:51 2 2006-02-16 02:30:53
  34307. 4428 2005-07-07 22:29:40 2575 181 2005-07-11 02:46:40 2 2006-02-16 02:30:53
  34308. 4429 2005-07-07 22:32:47 2949 187 2005-07-15 03:10:47 2 2006-02-16 02:30:53
  34309. 4430 2005-07-07 22:35:24 3436 278 2005-07-14 23:49:24 1 2006-02-16 02:30:53
  34310. 4431 2005-07-07 22:39:02 936 26 2005-07-16 19:24:02 1 2006-02-16 02:30:53
  34311. 4432 2005-07-07 22:40:02 2779 295 2005-07-15 01:46:02 1 2006-02-16 02:30:53
  34312. 4433 2005-07-07 22:45:41 88 449 2005-07-16 23:30:41 2 2006-02-16 02:30:53
  34313. 4434 2005-07-07 22:48:34 1801 32 2005-07-09 18:55:34 1 2006-02-16 02:30:53
  34314. 4435 2005-07-07 22:51:04 3815 157 2005-07-14 23:15:04 2 2006-02-16 02:30:53
  34315. 4436 2005-07-07 22:52:04 4326 563 2005-07-10 04:51:04 1 2006-02-16 02:30:53
  34316. 4437 2005-07-07 22:55:41 3578 414 2005-07-13 19:40:41 1 2006-02-16 02:30:53
  34317. 4438 2005-07-07 22:56:17 4371 104 2005-07-16 17:28:17 1 2006-02-16 02:30:53
  34318. 4439 2005-07-07 22:57:30 2393 521 2005-07-10 18:28:30 1 2006-02-16 02:30:53
  34319. 4440 2005-07-07 23:00:58 1236 507 2005-07-08 21:31:58 2 2006-02-16 02:30:53
  34320. 4441 2005-07-07 23:04:23 3680 211 2005-07-13 19:07:23 1 2006-02-16 02:30:53
  34321. 4442 2005-07-07 23:05:30 461 123 2005-07-13 22:20:30 2 2006-02-16 02:30:53
  34322. 4443 2005-07-07 23:05:53 72 389 2005-07-16 01:46:53 1 2006-02-16 02:30:53
  34323. 4444 2005-07-07 23:07:44 764 529 2005-07-14 02:51:44 2 2006-02-16 02:30:53
  34324. 4445 2005-07-07 23:08:22 3328 327 2005-07-16 03:49:22 1 2006-02-16 02:30:53
  34325. 4446 2005-07-07 23:12:16 2629 438 2005-07-13 19:42:16 1 2006-02-16 02:30:53
  34326. 4447 2005-07-07 23:15:28 404 549 2005-07-14 22:53:28 2 2006-02-16 02:30:53
  34327. 4448 2005-07-07 23:17:12 2768 536 2005-07-13 18:26:12 1 2006-02-16 02:30:53
  34328. 4449 2005-07-07 23:18:58 2813 354 2005-07-15 20:40:58 2 2006-02-16 02:30:53
  34329. 4450 2005-07-07 23:20:05 1252 345 2005-07-13 19:50:05 2 2006-02-16 02:30:53
  34330. 4451 2005-07-07 23:29:54 179 85 2005-07-10 23:29:54 2 2006-02-16 02:30:53
  34331. 4452 2005-07-07 23:31:54 2414 460 2005-07-14 04:05:54 1 2006-02-16 02:30:53
  34332. 4453 2005-07-07 23:32:39 89 560 2005-07-12 01:38:39 2 2006-02-16 02:30:53
  34333. 4454 2005-07-07 23:37:00 1395 9 2005-07-11 02:30:00 1 2006-02-16 02:30:53
  34334. 4455 2005-07-07 23:43:46 1396 507 2005-07-08 21:34:46 2 2006-02-16 02:30:53
  34335. 4456 2005-07-07 23:45:21 3395 421 2005-07-13 23:03:21 2 2006-02-16 02:30:53
  34336. 4457 2005-07-07 23:45:38 407 567 2005-07-09 20:02:38 1 2006-02-16 02:30:53
  34337. 4458 2005-07-07 23:47:47 1307 229 2005-07-09 19:17:47 2 2006-02-16 02:30:53
  34338. 4459 2005-07-07 23:48:52 3987 227 2005-07-13 19:37:52 2 2006-02-16 02:30:53
  34339. 4460 2005-07-07 23:50:14 4121 592 2005-07-09 21:55:14 1 2006-02-16 02:30:53
  34340. 4461 2005-07-07 23:59:43 3656 286 2005-07-16 19:44:43 2 2006-02-16 02:30:53
  34341. 4462 2005-07-08 00:02:49 4120 257 2005-07-15 20:48:49 2 2006-02-16 02:30:53
  34342. 4463 2005-07-08 00:04:59 4356 422 2005-07-16 01:19:59 1 2006-02-16 02:30:53
  34343. 4464 2005-07-08 00:07:18 4484 583 2005-07-08 22:14:18 2 2006-02-16 02:30:53
  34344. 4465 2005-07-08 00:07:45 2877 329 2005-07-13 18:08:45 2 2006-02-16 02:30:53
  34345. 4466 2005-07-08 00:12:53 3320 304 2005-07-17 03:49:53 2 2006-02-16 02:30:53
  34346. 4467 2005-07-08 00:13:52 4466 339 2005-07-09 00:52:52 1 2006-02-16 02:30:53
  34347. 4468 2005-07-08 00:17:59 3302 170 2005-07-12 05:51:59 2 2006-02-16 02:30:53
  34348. 4469 2005-07-08 00:18:32 2173 192 2005-07-12 21:17:32 2 2006-02-16 02:30:53
  34349. 4470 2005-07-08 00:20:57 3605 145 2005-07-10 02:31:57 1 2006-02-16 02:30:53
  34350. 4471 2005-07-08 00:21:29 263 30 2005-07-11 18:48:29 2 2006-02-16 02:30:53
  34351. 4472 2005-07-08 00:22:06 2089 343 2005-07-16 20:16:06 1 2006-02-16 02:30:53
  34352. 4473 2005-07-08 00:22:10 1387 481 2005-07-09 21:11:10 1 2006-02-16 02:30:53
  34353. 4474 2005-07-08 00:26:56 4474 137 2005-07-12 23:07:56 1 2006-02-16 02:30:53
  34354. 4475 2005-07-08 00:27:30 3466 340 2005-07-09 05:39:30 1 2006-02-16 02:30:53
  34355. 4476 2005-07-08 00:34:25 395 279 2005-07-08 22:55:25 1 2006-02-16 02:30:53
  34356. 4477 2005-07-08 00:38:24 1602 552 2005-07-13 05:14:24 1 2006-02-16 02:30:53
  34357. 4478 2005-07-08 00:39:08 1764 357 2005-07-11 21:57:08 2 2006-02-16 02:30:53
  34358. 4479 2005-07-08 00:52:35 3516 211 2005-07-09 20:19:35 2 2006-02-16 02:30:53
  34359. 4480 2005-07-08 00:56:30 4457 296 2005-07-10 20:52:30 2 2006-02-16 02:30:53
  34360. 4481 2005-07-08 00:58:15 1669 474 2005-07-11 23:22:15 2 2006-02-16 02:30:53
  34361. 4482 2005-07-08 01:01:18 3500 511 2005-07-11 01:18:18 1 2006-02-16 02:30:53
  34362. 4483 2005-07-08 01:03:12 1222 425 2005-07-17 00:20:12 1 2006-02-16 02:30:53
  34363. 4484 2005-07-08 01:05:57 2867 306 2005-07-16 00:41:57 2 2006-02-16 02:30:53
  34364. 4485 2005-07-08 01:07:54 2614 130 2005-07-16 03:19:54 2 2006-02-16 02:30:53
  34365. 4486 2005-07-08 01:09:09 837 197 2005-07-16 23:40:09 1 2006-02-16 02:30:53
  34366. 4487 2005-07-08 01:20:22 2220 360 2005-07-16 21:23:22 2 2006-02-16 02:30:53
  34367. 4488 2005-07-08 01:22:23 2108 89 2005-07-13 21:17:23 1 2006-02-16 02:30:53
  34368. 4489 2005-07-08 01:23:58 4306 259 2005-07-09 01:35:58 2 2006-02-16 02:30:53
  34369. 4490 2005-07-08 01:26:32 2690 161 2005-07-09 01:13:32 1 2006-02-16 02:30:53
  34370. 4491 2005-07-08 01:30:46 1168 413 2005-07-11 03:12:46 1 2006-02-16 02:30:53
  34371. 4492 2005-07-08 01:32:04 1152 247 2005-07-10 22:11:04 1 2006-02-16 02:30:53
  34372. 4493 2005-07-08 01:40:24 1369 167 2005-07-09 02:17:24 2 2006-02-16 02:30:53
  34373. 4494 2005-07-08 01:42:45 1655 349 2005-07-16 22:29:45 2 2006-02-16 02:30:53
  34374. 4495 2005-07-08 01:43:46 3515 404 2005-07-10 07:38:46 1 2006-02-16 02:30:53
  34375. 4496 2005-07-08 01:44:19 150 578 2005-07-08 20:34:19 2 2006-02-16 02:30:53
  34376. 4497 2005-07-08 01:51:32 1995 142 2005-07-15 22:56:32 1 2006-02-16 02:30:53
  34377. 4498 2005-07-08 02:07:50 4299 43 2005-07-12 23:54:50 2 2006-02-16 02:30:53
  34378. 4499 2005-07-08 02:08:48 851 199 2005-07-10 07:06:48 2 2006-02-16 02:30:53
  34379. 4500 2005-07-08 02:10:01 398 462 2005-07-15 05:49:01 2 2006-02-16 02:30:53
  34380. 4501 2005-07-08 02:12:00 1412 262 2005-07-10 02:16:00 2 2006-02-16 02:30:53
  34381. 4502 2005-07-08 02:12:04 225 470 2005-07-15 02:19:04 2 2006-02-16 02:30:53
  34382. 4503 2005-07-08 02:17:12 1503 8 2005-07-13 08:12:12 1 2006-02-16 02:30:53
  34383. 4504 2005-07-08 02:19:27 361 422 2005-07-12 21:15:27 1 2006-02-16 02:30:53
  34384. 4505 2005-07-08 02:20:04 1864 481 2005-07-14 20:28:04 2 2006-02-16 02:30:53
  34385. 4506 2005-07-08 02:22:18 1484 133 2005-07-13 04:54:18 2 2006-02-16 02:30:53
  34386. 4507 2005-07-08 02:22:45 819 505 2005-07-14 20:53:45 1 2006-02-16 02:30:53
  34387. 4508 2005-07-08 02:28:41 3996 97 2005-07-16 23:59:41 1 2006-02-16 02:30:53
  34388. 4509 2005-07-08 02:32:38 1760 230 2005-07-14 01:05:38 2 2006-02-16 02:30:53
  34389. 4510 2005-07-08 02:34:51 1085 27 2005-07-17 06:03:51 2 2006-02-16 02:30:53
  34390. 4511 2005-07-08 02:36:21 4438 75 2005-07-15 06:01:21 1 2006-02-16 02:30:53
  34391. 4512 2005-07-08 02:38:56 1569 424 2005-07-10 20:46:56 1 2006-02-16 02:30:53
  34392. 4513 2005-07-08 02:39:59 3704 182 2005-07-14 07:48:59 2 2006-02-16 02:30:53
  34393. 4514 2005-07-08 02:41:25 1938 576 2005-07-15 06:17:25 1 2006-02-16 02:30:53
  34394. 4515 2005-07-08 02:42:03 1998 229 2005-07-10 07:22:03 2 2006-02-16 02:30:53
  34395. 4516 2005-07-08 02:43:41 2314 497 2005-07-14 02:20:41 1 2006-02-16 02:30:53
  34396. 4517 2005-07-08 02:45:19 453 16 2005-07-12 03:04:19 2 2006-02-16 02:30:53
  34397. 4518 2005-07-08 02:48:36 697 592 2005-07-13 04:53:36 2 2006-02-16 02:30:53
  34398. 4519 2005-07-08 02:51:23 4425 459 2005-07-12 06:52:23 2 2006-02-16 02:30:53
  34399. 4520 2005-07-08 02:53:46 3505 104 2005-07-08 22:27:46 2 2006-02-16 02:30:53
  34400. 4521 2005-07-08 02:57:56 2652 327 2005-07-11 22:49:56 2 2006-02-16 02:30:53
  34401. 4522 2005-07-08 03:03:12 4114 307 2005-07-10 04:49:12 1 2006-02-16 02:30:53
  34402. 4523 2005-07-08 03:06:59 2785 347 2005-07-17 04:44:59 1 2006-02-16 02:30:53
  34403. 4524 2005-07-08 03:10:48 2218 185 2005-07-09 07:49:48 2 2006-02-16 02:30:53
  34404. 4525 2005-07-08 03:15:00 3631 458 2005-07-11 04:53:00 1 2006-02-16 02:30:53
  34405. 4526 2005-07-08 03:17:05 1443 1 2005-07-14 01:19:05 2 2006-02-16 02:30:53
  34406. 4527 2005-07-08 03:20:10 2263 468 2005-07-15 02:21:10 1 2006-02-16 02:30:53
  34407. 4528 2005-07-08 03:24:54 3209 439 2005-07-09 03:50:54 2 2006-02-16 02:30:53
  34408. 4529 2005-07-08 03:26:20 1361 104 2005-07-16 05:04:20 1 2006-02-16 02:30:53
  34409. 4530 2005-07-08 03:27:05 3775 79 2005-07-11 07:44:05 1 2006-02-16 02:30:53
  34410. 4531 2005-07-08 03:27:59 3108 142 2005-07-10 22:48:59 1 2006-02-16 02:30:53
  34411. 4532 2005-07-08 03:30:39 4012 481 2005-07-11 21:49:39 1 2006-02-16 02:30:53
  34412. 4533 2005-07-08 03:32:01 1105 474 2005-07-10 21:57:01 1 2006-02-16 02:30:53
  34413. 4534 2005-07-08 03:36:55 2518 132 2005-07-16 00:49:55 2 2006-02-16 02:30:53
  34414. 4535 2005-07-08 03:40:46 561 29 2005-07-13 06:53:46 2 2006-02-16 02:30:53
  34415. 4536 2005-07-08 03:43:22 220 26 2005-07-15 08:44:22 1 2006-02-16 02:30:53
  34416. 4537 2005-07-08 03:48:40 1305 448 2005-07-13 22:54:40 2 2006-02-16 02:30:53
  34417. 4538 2005-07-08 03:56:29 3638 451 2005-07-15 08:24:29 1 2006-02-16 02:30:53
  34418. 4539 2005-07-08 04:01:02 2450 264 2005-07-14 22:32:02 1 2006-02-16 02:30:53
  34419. 4540 2005-07-08 04:03:28 4160 309 2005-07-13 03:31:28 2 2006-02-16 02:30:53
  34420. 4541 2005-07-08 04:04:19 1976 248 2005-07-13 07:27:19 2 2006-02-16 02:30:53
  34421. 4542 2005-07-08 04:06:30 4169 293 2005-07-16 06:54:30 2 2006-02-16 02:30:53
  34422. 4543 2005-07-08 04:06:55 913 41 2005-07-12 23:17:55 2 2006-02-16 02:30:53
  34423. 4544 2005-07-08 04:11:04 4471 351 2005-07-09 22:48:04 1 2006-02-16 02:30:53
  34424. 4545 2005-07-08 04:17:47 3658 271 2005-07-13 07:19:47 1 2006-02-16 02:30:53
  34425. 4546 2005-07-08 04:18:36 4507 393 2005-07-17 08:23:36 1 2006-02-16 02:30:53
  34426. 4547 2005-07-08 04:20:19 3386 255 2005-07-09 00:28:19 2 2006-02-16 02:30:53
  34427. 4548 2005-07-08 04:21:54 765 164 2005-07-14 23:16:54 2 2006-02-16 02:30:53
  34428. 4549 2005-07-08 04:25:03 2797 98 2005-07-10 09:01:03 2 2006-02-16 02:30:53
  34429. 4550 2005-07-08 04:34:00 615 409 2005-07-14 23:45:00 2 2006-02-16 02:30:53
  34430. 4551 2005-07-08 04:36:21 1160 494 2005-07-17 10:23:21 2 2006-02-16 02:30:53
  34431. 4552 2005-07-08 04:36:35 2549 313 2005-07-14 05:48:35 2 2006-02-16 02:30:53
  34432. 4553 2005-07-08 04:43:41 2114 529 2005-07-09 23:55:41 1 2006-02-16 02:30:53
  34433. 4554 2005-07-08 04:48:03 3878 376 2005-07-16 04:34:03 1 2006-02-16 02:30:53
  34434. 4555 2005-07-08 04:48:36 1757 68 2005-07-17 07:57:36 1 2006-02-16 02:30:53
  34435. 4556 2005-07-08 04:48:41 4099 348 2005-07-16 08:51:41 2 2006-02-16 02:30:53
  34436. 4557 2005-07-08 04:49:15 1191 132 2005-07-14 00:00:15 2 2006-02-16 02:30:53
  34437. 4558 2005-07-08 04:55:26 828 448 2005-07-09 10:53:26 2 2006-02-16 02:30:53
  34438. 4559 2005-07-08 04:56:49 1911 424 2005-07-12 08:56:49 2 2006-02-16 02:30:53
  34439. 4560 2005-07-08 04:58:48 303 36 2005-07-10 04:27:48 1 2006-02-16 02:30:53
  34440. 4561 2005-07-08 05:02:43 1643 500 2005-07-11 04:56:43 1 2006-02-16 02:30:53
  34441. 4562 2005-07-08 05:08:32 963 454 2005-07-12 08:16:32 2 2006-02-16 02:30:53
  34442. 4563 2005-07-08 05:08:55 287 522 2005-07-16 05:44:55 2 2006-02-16 02:30:53
  34443. 4564 2005-07-08 05:09:38 2494 519 2005-07-11 05:37:38 2 2006-02-16 02:30:53
  34444. 4565 2005-07-08 05:12:28 3755 563 2005-07-17 03:38:28 2 2006-02-16 02:30:53
  34445. 4566 2005-07-08 05:18:50 4302 133 2005-07-15 01:53:50 1 2006-02-16 02:30:53
  34446. 4567 2005-07-08 05:20:04 4073 202 2005-07-10 01:35:04 1 2006-02-16 02:30:53
  34447. 4568 2005-07-08 05:23:59 2626 122 2005-07-09 06:07:59 1 2006-02-16 02:30:53
  34448. 4569 2005-07-08 05:30:51 2925 366 2005-07-14 04:14:51 2 2006-02-16 02:30:53
  34449. 4570 2005-07-08 05:33:59 2612 503 2005-07-14 09:27:59 1 2006-02-16 02:30:53
  34450. 4571 2005-07-08 05:34:41 2416 86 2005-07-17 02:15:41 1 2006-02-16 02:30:53
  34451. 4572 2005-07-08 05:36:59 1324 323 2005-07-12 04:46:59 2 2006-02-16 02:30:53
  34452. 4573 2005-07-08 05:38:46 2478 400 2005-07-15 07:07:46 1 2006-02-16 02:30:53
  34453. 4574 2005-07-08 05:39:42 536 257 2005-07-08 23:44:42 2 2006-02-16 02:30:53
  34454. 4575 2005-07-08 05:49:14 231 41 2005-07-11 04:08:14 2 2006-02-16 02:30:53
  34455. 4576 2005-07-08 05:51:19 1920 567 2005-07-10 11:36:19 1 2006-02-16 02:30:53
  34456. 4577 2005-07-08 05:59:00 1688 442 2005-07-16 06:23:00 2 2006-02-16 02:30:53
  34457. 4578 2005-07-08 06:00:17 1533 497 2005-07-10 06:58:17 2 2006-02-16 02:30:53
  34458. 4579 2005-07-08 06:01:56 4290 585 2005-07-13 11:24:56 1 2006-02-16 02:30:53
  34459. 4580 2005-07-08 06:04:23 3512 199 2005-07-15 05:42:23 2 2006-02-16 02:30:53
  34460. 4581 2005-07-08 06:05:06 887 591 2005-07-16 00:54:06 1 2006-02-16 02:30:53
  34461. 4582 2005-07-08 06:09:09 688 274 2005-07-14 02:23:09 1 2006-02-16 02:30:53
  34462. 4583 2005-07-08 06:09:44 4151 365 2005-07-12 03:44:44 1 2006-02-16 02:30:53
  34463. 4584 2005-07-08 06:11:02 2322 368 2005-07-11 05:14:02 1 2006-02-16 02:30:53
  34464. 4585 2005-07-08 06:11:58 1622 143 2005-07-17 01:58:58 1 2006-02-16 02:30:53
  34465. 4586 2005-07-08 06:12:33 1374 461 2005-07-13 11:06:33 2 2006-02-16 02:30:53
  34466. 4587 2005-07-08 06:16:26 3502 63 2005-07-13 00:59:26 1 2006-02-16 02:30:53
  34467. 4588 2005-07-08 06:18:01 3629 198 2005-07-10 08:59:01 1 2006-02-16 02:30:53
  34468. 4589 2005-07-08 06:26:04 1192 99 2005-07-09 10:31:04 2 2006-02-16 02:30:53
  34469. 4590 2005-07-08 06:27:48 4233 580 2005-07-14 07:46:48 1 2006-02-16 02:30:53
  34470. 4591 2005-07-08 06:29:43 2276 182 2005-07-17 07:20:43 1 2006-02-16 02:30:53
  34471. 4592 2005-07-08 06:31:28 2141 235 2005-07-10 06:08:28 2 2006-02-16 02:30:53
  34472. 4593 2005-07-08 06:38:12 2897 528 2005-07-16 10:48:12 2 2006-02-16 02:30:53
  34473. 4594 2005-07-08 06:40:06 26 506 2005-07-16 05:51:06 2 2006-02-16 02:30:53
  34474. 4595 2005-07-08 06:40:25 760 336 2005-07-14 08:54:25 1 2006-02-16 02:30:53
  34475. 4596 2005-07-08 06:41:25 2280 306 2005-07-14 01:36:25 1 2006-02-16 02:30:53
  34476. 4597 2005-07-08 06:43:42 3767 545 2005-07-13 01:32:42 1 2006-02-16 02:30:53
  34477. 4598 2005-07-08 06:46:26 258 82 2005-07-16 01:21:26 1 2006-02-16 02:30:53
  34478. 4599 2005-07-08 06:48:26 2098 356 2005-07-11 07:06:26 1 2006-02-16 02:30:53
  34479. 4600 2005-07-08 06:48:37 1526 457 2005-07-15 10:11:37 1 2006-02-16 02:30:53
  34480. 4601 2005-07-08 06:49:10 3184 572 2005-07-09 07:43:10 1 2006-02-16 02:30:53
  34481. 4602 2005-07-08 06:52:40 3616 129 2005-07-10 06:30:40 1 2006-02-16 02:30:53
  34482. 4603 2005-07-08 06:57:07 755 334 2005-07-17 04:32:07 1 2006-02-16 02:30:53
  34483. 4604 2005-07-08 06:58:43 4230 402 2005-07-14 06:41:43 1 2006-02-16 02:30:53
  34484. 4605 2005-07-08 07:00:14 1139 523 2005-07-16 08:38:14 1 2006-02-16 02:30:53
  34485. 4606 2005-07-08 07:05:50 1946 502 2005-07-16 09:11:50 2 2006-02-16 02:30:53
  34486. 4607 2005-07-08 07:15:14 1193 281 2005-07-11 01:32:14 1 2006-02-16 02:30:53
  34487. 4608 2005-07-08 07:19:11 758 11 2005-07-11 01:37:11 1 2006-02-16 02:30:53
  34488. 4609 2005-07-08 07:22:29 3711 573 2005-07-10 08:06:29 1 2006-02-16 02:30:53
  34489. 4610 2005-07-08 07:28:05 1279 265 2005-07-14 02:10:05 1 2006-02-16 02:30:53
  34490. 4611 2005-07-08 07:33:56 3486 1 2005-07-12 13:25:56 2 2006-02-16 02:30:53
  34491. 4612 2005-07-08 07:40:44 82 371 2005-07-12 03:48:44 1 2006-02-16 02:30:53
  34492. 4613 2005-07-08 07:44:49 476 581 2005-07-09 04:47:49 1 2006-02-16 02:30:53
  34493. 4614 2005-07-08 07:45:17 2579 71 2005-07-12 02:10:17 2 2006-02-16 02:30:53
  34494. 4615 2005-07-08 07:46:53 1200 404 2005-07-16 12:43:53 2 2006-02-16 02:30:53
  34495. 4616 2005-07-08 07:48:12 2580 280 2005-07-10 08:13:12 2 2006-02-16 02:30:53
  34496. 4617 2005-07-08 07:55:08 3784 475 2005-07-17 02:49:08 2 2006-02-16 02:30:53
  34497. 4618 2005-07-08 08:00:20 3691 179 2005-07-14 05:59:20 1 2006-02-16 02:30:53
  34498. 4619 2005-07-08 08:01:09 2127 579 2005-07-16 05:52:09 2 2006-02-16 02:30:53
  34499. 4620 2005-07-08 08:01:44 3467 210 2005-07-16 07:43:44 2 2006-02-16 02:30:53
  34500. 4621 2005-07-08 08:02:18 1594 297 2005-07-12 08:53:18 2 2006-02-16 02:30:53
  34501. 4622 2005-07-08 08:02:42 2710 289 2005-07-10 07:46:42 2 2006-02-16 02:30:53
  34502. 4623 2005-07-08 08:03:22 4171 593 2005-07-12 09:11:22 2 2006-02-16 02:30:53
  34503. 4624 2005-07-08 08:12:17 1548 341 2005-07-15 12:24:17 2 2006-02-16 02:30:53
  34504. 4625 2005-07-08 08:14:26 318 473 2005-07-09 03:45:26 1 2006-02-16 02:30:53
  34505. 4626 2005-07-08 08:18:21 37 268 2005-07-10 11:36:21 1 2006-02-16 02:30:53
  34506. 4627 2005-07-08 08:24:39 2383 78 2005-07-13 11:04:39 2 2006-02-16 02:30:53
  34507. 4628 2005-07-08 08:25:52 1888 540 2005-07-10 11:22:52 1 2006-02-16 02:30:53
  34508. 4629 2005-07-08 08:31:26 228 563 2005-07-17 12:07:26 1 2006-02-16 02:30:53
  34509. 4630 2005-07-08 08:33:38 3446 319 2005-07-09 13:09:38 2 2006-02-16 02:30:53
  34510. 4631 2005-07-08 08:38:22 470 59 2005-07-11 03:33:22 2 2006-02-16 02:30:53
  34511. 4632 2005-07-08 08:38:57 4330 393 2005-07-15 09:33:57 1 2006-02-16 02:30:53
  34512. 4633 2005-07-08 08:39:39 3178 348 2005-07-15 10:23:39 1 2006-02-16 02:30:53
  34513. 4634 2005-07-08 08:40:02 811 275 2005-07-12 04:45:02 2 2006-02-16 02:30:53
  34514. 4635 2005-07-08 08:42:40 2434 65 2005-07-14 10:31:40 1 2006-02-16 02:30:53
  34515. 4636 2005-07-08 08:44:32 1858 228 2005-07-10 08:59:32 2 2006-02-16 02:30:53
  34516. 4637 2005-07-08 08:49:54 1917 263 2005-07-11 13:12:54 2 2006-02-16 02:30:53
  34517. 4638 2005-07-08 08:57:20 2240 305 2005-07-10 05:08:20 2 2006-02-16 02:30:53
  34518. 4639 2005-07-08 08:57:21 2459 75 2005-07-14 11:22:21 2 2006-02-16 02:30:53
  34519. 4640 2005-07-08 08:59:34 1147 506 2005-07-15 03:31:34 1 2006-02-16 02:30:53
  34520. 4641 2005-07-08 09:09:46 2436 26 2005-07-17 03:54:46 2 2006-02-16 02:30:53
  34521. 4642 2005-07-08 09:13:28 1962 30 2005-07-10 06:17:28 2 2006-02-16 02:30:53
  34522. 4643 2005-07-08 09:13:56 239 436 2005-07-10 12:09:56 2 2006-02-16 02:30:53
  34523. 4644 2005-07-08 09:14:29 3239 38 2005-07-10 07:20:29 2 2006-02-16 02:30:53
  34524. 4645 2005-07-08 09:20:09 687 400 2005-07-09 06:07:09 2 2006-02-16 02:30:53
  34525. 4646 2005-07-08 09:23:26 618 362 2005-07-16 04:03:26 1 2006-02-16 02:30:53
  34526. 4647 2005-07-08 09:27:36 674 312 2005-07-16 14:56:36 2 2006-02-16 02:30:53
  34527. 4648 2005-07-08 09:31:27 3490 444 2005-07-13 03:55:27 2 2006-02-16 02:30:53
  34528. 4649 2005-07-08 09:32:05 1116 221 2005-07-15 08:37:05 2 2006-02-16 02:30:53
  34529. 4650 2005-07-08 09:32:08 2850 108 2005-07-15 15:20:08 1 2006-02-16 02:30:53
  34530. 4651 2005-07-08 09:39:39 4064 557 2005-07-09 12:14:39 2 2006-02-16 02:30:53
  34531. 4652 2005-07-08 09:47:51 4198 127 2005-07-16 04:09:51 2 2006-02-16 02:30:53
  34532. 4653 2005-07-08 09:48:01 2511 404 2005-07-17 05:18:01 1 2006-02-16 02:30:53
  34533. 4654 2005-07-08 09:48:03 4210 434 2005-07-17 13:17:03 1 2006-02-16 02:30:53
  34534. 4655 2005-07-08 09:49:22 4078 213 2005-07-15 13:08:22 1 2006-02-16 02:30:53
  34535. 4656 2005-07-08 09:50:10 839 141 2005-07-13 15:00:10 1 2006-02-16 02:30:53
  34536. 4657 2005-07-08 09:51:02 1002 54 2005-07-09 09:29:02 2 2006-02-16 02:30:53
  34537. 4658 2005-07-08 09:51:11 3131 166 2005-07-10 12:30:11 2 2006-02-16 02:30:53
  34538. 4659 2005-07-08 09:53:28 4389 425 2005-07-14 14:56:28 2 2006-02-16 02:30:53
  34539. 4660 2005-07-08 09:54:47 1208 139 2005-07-11 15:19:47 2 2006-02-16 02:30:53
  34540. 4661 2005-07-08 09:55:06 2641 518 2005-07-11 08:26:06 1 2006-02-16 02:30:53
  34541. 4662 2005-07-08 09:58:54 1370 553 2005-07-10 12:51:54 1 2006-02-16 02:30:53
  34542. 4663 2005-07-08 09:59:18 2959 139 2005-07-10 11:25:18 1 2006-02-16 02:30:53
  34543. 4664 2005-07-08 10:01:28 1318 546 2005-07-12 10:37:28 2 2006-02-16 02:30:53
  34544. 4665 2005-07-08 10:04:24 575 106 2005-07-14 15:13:24 1 2006-02-16 02:30:53
  34545. 4666 2005-07-08 10:05:02 4576 120 2005-07-16 07:28:02 1 2006-02-16 02:30:53
  34546. 4667 2005-07-08 10:06:26 3348 485 2005-07-14 04:48:26 1 2006-02-16 02:30:53
  34547. 4668 2005-07-08 10:11:45 3971 481 2005-07-17 13:01:45 2 2006-02-16 02:30:53
  34548. 4669 2005-07-08 10:13:08 3494 581 2005-07-16 07:52:08 1 2006-02-16 02:30:53
  34549. 4670 2005-07-08 10:14:18 3317 153 2005-07-16 15:10:18 2 2006-02-16 02:30:53
  34550. 4671 2005-07-08 10:15:32 2139 55 2005-07-14 08:19:32 2 2006-02-16 02:30:53
  34551. 4672 2005-07-08 10:15:38 1922 18 2005-07-16 05:06:38 1 2006-02-16 02:30:53
  34552. 4673 2005-07-08 10:16:00 2792 91 2005-07-17 10:03:00 2 2006-02-16 02:30:53
  34553. 4674 2005-07-08 10:19:28 1617 329 2005-07-12 12:54:28 2 2006-02-16 02:30:53
  34554. 4675 2005-07-08 10:24:22 1309 380 2005-07-14 11:09:22 1 2006-02-16 02:30:53
  34555. 4676 2005-07-08 10:26:02 2590 302 2005-07-10 13:38:02 2 2006-02-16 02:30:53
  34556. 4677 2005-07-08 10:30:36 1226 258 2005-07-14 12:40:36 1 2006-02-16 02:30:53
  34557. 4678 2005-07-08 10:30:40 241 219 2005-07-13 11:08:40 1 2006-02-16 02:30:53
  34558. 4679 2005-07-08 10:33:14 3610 423 2005-07-15 14:30:14 2 2006-02-16 02:30:53
  34559. 4680 2005-07-08 10:35:28 4043 227 2005-07-14 08:42:28 1 2006-02-16 02:30:53
  34560. 4681 2005-07-08 10:36:03 1025 133 2005-07-16 09:21:03 2 2006-02-16 02:30:53
  34561. 4682 2005-07-08 10:38:27 873 263 2005-07-11 06:29:27 2 2006-02-16 02:30:53
  34562. 4683 2005-07-08 10:38:28 3464 283 2005-07-09 12:07:28 1 2006-02-16 02:30:53
  34563. 4684 2005-07-08 10:41:06 503 585 2005-07-17 10:35:06 1 2006-02-16 02:30:53
  34564. 4685 2005-07-08 10:45:13 602 590 2005-07-12 08:29:13 1 2006-02-16 02:30:53
  34565. 4686 2005-07-08 10:53:39 1398 234 2005-07-10 05:34:39 2 2006-02-16 02:30:53
  34566. 4687 2005-07-08 10:54:19 1156 169 2005-07-10 08:00:19 2 2006-02-16 02:30:53
  34567. 4688 2005-07-08 11:03:29 3574 80 2005-07-17 15:41:29 2 2006-02-16 02:30:53
  34568. 4689 2005-07-08 11:03:47 2519 364 2005-07-16 06:07:47 2 2006-02-16 02:30:53
  34569. 4690 2005-07-08 11:04:02 3304 64 2005-07-15 10:27:02 2 2006-02-16 02:30:53
  34570. 4691 2005-07-08 11:04:53 596 126 2005-07-09 07:48:53 1 2006-02-16 02:30:53
  34571. 4692 2005-07-08 11:07:06 1490 288 2005-07-09 14:08:06 1 2006-02-16 02:30:53
  34572. 4693 2005-07-08 11:07:36 1694 221 2005-07-14 08:40:36 1 2006-02-16 02:30:53
  34573. 4694 2005-07-08 11:07:37 3637 229 2005-07-12 06:53:37 2 2006-02-16 02:30:53
  34574. 4695 2005-07-08 11:07:59 805 39 2005-07-17 16:35:59 1 2006-02-16 02:30:53
  34575. 4696 2005-07-08 11:12:27 1358 424 2005-07-14 05:41:27 1 2006-02-16 02:30:53
  34576. 4697 2005-07-08 11:19:14 4143 224 2005-07-12 07:14:14 2 2006-02-16 02:30:53
  34577. 4698 2005-07-08 11:19:31 3963 570 2005-07-13 13:45:31 2 2006-02-16 02:30:53
  34578. 4699 2005-07-08 11:36:56 2462 348 2005-07-14 11:35:56 2 2006-02-16 02:30:53
  34579. 4700 2005-07-08 11:37:21 3889 317 2005-07-12 15:41:21 1 2006-02-16 02:30:53
  34580. 4701 2005-07-08 11:38:48 3012 522 2005-07-13 15:59:48 2 2006-02-16 02:30:53
  34581. 4702 2005-07-08 11:41:36 2593 56 2005-07-10 06:55:36 1 2006-02-16 02:30:53
  34582. 4703 2005-07-08 11:44:56 2859 544 2005-07-13 09:17:56 1 2006-02-16 02:30:53
  34583. 4704 2005-07-08 11:45:35 2291 28 2005-07-10 09:46:35 1 2006-02-16 02:30:53
  34584. 4705 2005-07-08 11:50:38 3709 85 2005-07-12 15:58:38 2 2006-02-16 02:30:53
  34585. 4706 2005-07-08 11:51:41 2512 380 2005-07-17 12:58:41 1 2006-02-16 02:30:53
  34586. 4707 2005-07-08 11:57:28 52 286 2005-07-10 17:47:28 1 2006-02-16 02:30:53
  34587. 4708 2005-07-08 11:59:19 3249 212 2005-07-17 07:11:19 2 2006-02-16 02:30:53
  34588. 4709 2005-07-08 12:04:34 3964 124 2005-07-15 06:48:34 1 2006-02-16 02:30:53
  34589. 4710 2005-07-08 12:04:53 248 590 2005-07-13 11:28:53 2 2006-02-16 02:30:53
  34590. 4711 2005-07-08 12:06:58 2327 563 2005-07-12 08:37:58 1 2006-02-16 02:30:53
  34591. 4712 2005-07-08 12:10:50 2371 39 2005-07-17 14:54:50 2 2006-02-16 02:30:53
  34592. 4713 2005-07-08 12:12:33 1399 207 2005-07-16 17:13:33 1 2006-02-16 02:30:53
  34593. 4714 2005-07-08 12:12:48 1932 385 2005-07-17 08:43:48 2 2006-02-16 02:30:53
  34594. 4715 2005-07-08 12:15:37 4010 276 2005-07-10 10:37:37 2 2006-02-16 02:30:53
  34595. 4716 2005-07-08 12:18:51 1923 391 2005-07-11 11:06:51 2 2006-02-16 02:30:53
  34596. 4717 2005-07-08 12:22:43 1491 453 2005-07-11 10:24:43 2 2006-02-16 02:30:53
  34597. 4718 2005-07-08 12:32:08 1653 535 2005-07-17 17:34:08 2 2006-02-16 02:30:53
  34598. 4719 2005-07-08 12:33:00 1315 556 2005-07-15 12:30:00 1 2006-02-16 02:30:53
  34599. 4720 2005-07-08 12:34:34 2669 452 2005-07-09 10:28:34 1 2006-02-16 02:30:53
  34600. 4721 2005-07-08 12:39:31 3105 234 2005-07-15 18:07:31 1 2006-02-16 02:30:53
  34601. 4722 2005-07-08 12:42:27 3738 590 2005-07-09 09:14:27 2 2006-02-16 02:30:53
  34602. 4723 2005-07-08 12:44:59 965 44 2005-07-17 07:22:59 2 2006-02-16 02:30:53
  34603. 4724 2005-07-08 12:46:30 3375 18 2005-07-14 12:39:30 1 2006-02-16 02:30:53
  34604. 4725 2005-07-08 12:47:11 2058 3 2005-07-15 09:08:11 2 2006-02-16 02:30:53
  34605. 4726 2005-07-08 12:50:54 4369 144 2005-07-17 07:09:54 2 2006-02-16 02:30:53
  34606. 4727 2005-07-08 12:54:15 1251 39 2005-07-17 14:32:15 2 2006-02-16 02:30:53
  34607. 4728 2005-07-08 12:59:01 3687 462 2005-07-13 13:00:01 1 2006-02-16 02:30:53
  34608. 4729 2005-07-08 12:59:40 1429 205 2005-07-10 13:35:40 2 2006-02-16 02:30:53
  34609. 4730 2005-07-08 12:59:49 1619 126 2005-07-14 16:15:49 2 2006-02-16 02:30:53
  34610. 4731 2005-07-08 13:08:18 4124 241 2005-07-09 13:16:18 2 2006-02-16 02:30:53
  34611. 4732 2005-07-08 13:09:45 308 562 2005-07-14 10:10:45 1 2006-02-16 02:30:53
  34612. 4733 2005-07-08 13:12:07 2230 93 2005-07-13 07:34:07 1 2006-02-16 02:30:53
  34613. 4734 2005-07-08 13:12:12 1928 546 2005-07-10 09:01:12 2 2006-02-16 02:30:53
  34614. 4735 2005-07-08 13:12:27 4324 381 2005-07-13 10:06:27 2 2006-02-16 02:30:53
  34615. 4736 2005-07-08 13:22:55 3009 79 2005-07-17 07:27:55 1 2006-02-16 02:30:53
  34616. 4737 2005-07-08 13:23:53 4286 116 2005-07-12 18:49:53 1 2006-02-16 02:30:53
  34617. 4738 2005-07-08 13:24:58 2021 31 2005-07-17 17:44:58 2 2006-02-16 02:30:53
  34618. 4739 2005-07-08 13:25:57 140 197 2005-07-11 17:36:57 1 2006-02-16 02:30:53
  34619. 4740 2005-07-08 13:30:35 2559 379 2005-07-14 18:43:35 1 2006-02-16 02:30:53
  34620. 4741 2005-07-08 13:31:23 516 260 2005-07-17 12:02:23 2 2006-02-16 02:30:53
  34621. 4742 2005-07-08 13:35:23 3022 340 2005-07-11 10:24:23 2 2006-02-16 02:30:53
  34622. 4743 2005-07-08 13:42:36 80 535 2005-07-11 18:54:36 2 2006-02-16 02:30:53
  34623. 4744 2005-07-08 13:43:57 2948 507 2005-07-12 09:21:57 2 2006-02-16 02:30:53
  34624. 4745 2005-07-08 13:45:09 1351 354 2005-07-12 18:54:09 1 2006-02-16 02:30:53
  34625. 4746 2005-07-08 13:47:55 173 148 2005-07-11 09:06:55 2 2006-02-16 02:30:53
  34626. 4747 2005-07-08 13:53:01 3942 383 2005-07-12 17:10:01 2 2006-02-16 02:30:53
  34627. 4748 2005-07-08 13:59:38 4279 9 2005-07-15 16:51:38 1 2006-02-16 02:30:53
  34628. 4749 2005-07-08 14:05:58 1190 236 2005-07-10 18:35:58 2 2006-02-16 02:30:53
  34629. 4750 2005-07-08 14:07:03 3383 198 2005-07-13 18:05:03 1 2006-02-16 02:30:53
  34630. 4751 2005-07-08 14:07:52 3469 436 2005-07-13 10:37:52 2 2006-02-16 02:30:53
  34631. 4752 2005-07-08 14:15:20 3250 512 2005-07-12 13:22:20 1 2006-02-16 02:30:53
  34632. 4753 2005-07-08 14:18:41 1642 391 2005-07-09 10:00:41 2 2006-02-16 02:30:53
  34633. 4754 2005-07-08 14:20:01 3177 108 2005-07-11 11:50:01 1 2006-02-16 02:30:53
  34634. 4755 2005-07-08 14:23:41 661 378 2005-07-10 19:35:41 1 2006-02-16 02:30:53
  34635. 4756 2005-07-08 14:24:00 3068 351 2005-07-12 16:16:00 1 2006-02-16 02:30:53
  34636. 4757 2005-07-08 14:36:51 1278 504 2005-07-12 15:28:51 1 2006-02-16 02:30:53
  34637. 4758 2005-07-08 14:38:02 3698 288 2005-07-13 12:09:02 2 2006-02-16 02:30:53
  34638. 4759 2005-07-08 14:39:22 3999 284 2005-07-17 15:02:22 2 2006-02-16 02:30:53
  34639. 4760 2005-07-08 14:48:07 3718 177 2005-07-10 12:41:07 2 2006-02-16 02:30:53
  34640. 4761 2005-07-08 14:51:45 3556 351 2005-07-14 20:28:45 1 2006-02-16 02:30:53
  34641. 4762 2005-07-08 14:54:42 390 36 2005-07-12 18:08:42 1 2006-02-16 02:30:53
  34642. 4763 2005-07-08 14:57:32 899 465 2005-07-15 10:00:32 2 2006-02-16 02:30:53
  34643. 4764 2005-07-08 15:01:25 1188 89 2005-07-17 15:16:25 1 2006-02-16 02:30:53
  34644. 4765 2005-07-08 15:08:45 469 437 2005-07-13 10:44:45 1 2006-02-16 02:30:53
  34645. 4766 2005-07-08 15:16:04 1057 149 2005-07-15 11:04:04 2 2006-02-16 02:30:53
  34646. 4767 2005-07-08 15:18:53 3744 350 2005-07-13 15:48:53 1 2006-02-16 02:30:53
  34647. 4768 2005-07-08 15:28:20 2787 482 2005-07-09 11:46:20 1 2006-02-16 02:30:53
  34648. 4769 2005-07-08 15:29:16 3462 501 2005-07-09 18:42:16 2 2006-02-16 02:30:53
  34649. 4770 2005-07-08 15:29:46 2406 573 2005-07-14 13:31:46 1 2006-02-16 02:30:53
  34650. 4771 2005-07-08 15:33:32 1060 32 2005-07-10 12:38:32 1 2006-02-16 02:30:53
  34651. 4772 2005-07-08 15:41:11 2156 486 2005-07-17 15:25:11 1 2006-02-16 02:30:53
  34652. 4773 2005-07-08 15:41:39 3025 519 2005-07-13 18:16:39 1 2006-02-16 02:30:53
  34653. 4774 2005-07-08 15:42:28 673 489 2005-07-16 18:29:28 2 2006-02-16 02:30:53
  34654. 4775 2005-07-08 15:44:05 4277 595 2005-07-11 20:39:05 2 2006-02-16 02:30:53
  34655. 4776 2005-07-08 15:44:20 2598 563 2005-07-17 10:50:20 2 2006-02-16 02:30:53
  34656. 4777 2005-07-08 15:48:34 449 102 2005-07-16 15:25:34 1 2006-02-16 02:30:53
  34657. 4778 2005-07-08 15:51:51 611 78 2005-07-12 16:58:51 2 2006-02-16 02:30:53
  34658. 4779 2005-07-08 15:53:41 1321 338 2005-07-15 20:30:41 1 2006-02-16 02:30:53
  34659. 4780 2005-07-08 16:06:51 2740 115 2005-07-13 18:34:51 1 2006-02-16 02:30:53
  34660. 4781 2005-07-08 16:06:55 1818 593 2005-07-16 11:22:55 2 2006-02-16 02:30:53
  34661. 4782 2005-07-08 16:08:51 445 436 2005-07-17 17:56:51 1 2006-02-16 02:30:53
  34662. 4783 2005-07-08 16:09:24 3952 214 2005-07-16 21:53:24 2 2006-02-16 02:30:53
  34663. 4784 2005-07-08 16:09:56 549 182 2005-07-09 20:35:56 1 2006-02-16 02:30:53
  34664. 4785 2005-07-08 16:10:19 58 474 2005-07-11 18:52:19 1 2006-02-16 02:30:53
  34665. 4786 2005-07-08 16:13:05 2724 294 2005-07-16 15:29:05 1 2006-02-16 02:30:53
  34666. 4787 2005-07-08 16:16:04 3929 7 2005-07-14 18:02:04 2 2006-02-16 02:30:53
  34667. 4788 2005-07-08 16:17:35 691 533 2005-07-11 11:56:35 2 2006-02-16 02:30:53
  34668. 4789 2005-07-08 16:22:01 20 73 2005-07-15 18:29:01 2 2006-02-16 02:30:53
  34669. 4790 2005-07-08 16:25:27 100 500 2005-07-11 11:35:27 1 2006-02-16 02:30:53
  34670. 4791 2005-07-08 16:27:24 2505 393 2005-07-14 21:50:24 2 2006-02-16 02:30:53
  34671. 4792 2005-07-08 16:29:38 2132 147 2005-07-10 16:31:38 2 2006-02-16 02:30:53
  34672. 4793 2005-07-08 16:30:01 3090 427 2005-07-15 17:56:01 1 2006-02-16 02:30:53
  34673. 4794 2005-07-08 16:30:11 2497 451 2005-07-17 12:41:11 2 2006-02-16 02:30:53
  34674. 4795 2005-07-08 16:32:54 3409 497 2005-07-09 14:15:54 1 2006-02-16 02:30:53
  34675. 4796 2005-07-08 16:35:44 2484 9 2005-07-13 11:08:44 2 2006-02-16 02:30:53
  34676. 4797 2005-07-08 16:39:05 1389 265 2005-07-09 11:41:05 1 2006-02-16 02:30:53
  34677. 4798 2005-07-08 16:45:16 3874 212 2005-07-16 13:45:16 2 2006-02-16 02:30:53
  34678. 4799 2005-07-08 16:49:27 4112 512 2005-07-12 19:58:27 2 2006-02-16 02:30:53
  34679. 4800 2005-07-08 16:51:08 1940 99 2005-07-13 14:16:08 2 2006-02-16 02:30:53
  34680. 4801 2005-07-08 16:51:36 761 431 2005-07-13 17:23:36 1 2006-02-16 02:30:53
  34681. 4802 2005-07-08 16:55:17 22 562 2005-07-15 19:34:17 1 2006-02-16 02:30:53
  34682. 4803 2005-07-08 16:56:34 1786 174 2005-07-14 20:16:34 1 2006-02-16 02:30:53
  34683. 4804 2005-07-08 16:57:30 3756 269 2005-07-10 18:25:30 1 2006-02-16 02:30:53
  34684. 4805 2005-07-08 16:59:12 377 453 2005-07-09 15:02:12 1 2006-02-16 02:30:53
  34685. 4806 2005-07-08 17:01:02 214 506 2005-07-15 21:41:02 1 2006-02-16 02:30:53
  34686. 4807 2005-07-08 17:01:48 4511 348 2005-07-16 22:33:48 2 2006-02-16 02:30:53
  34687. 4808 2005-07-08 17:02:49 2544 563 2005-07-12 22:49:49 2 2006-02-16 02:30:53
  34688. 4809 2005-07-08 17:03:22 4251 474 2005-07-17 22:39:22 1 2006-02-16 02:30:53
  34689. 4810 2005-07-08 17:04:06 4056 209 2005-07-09 13:41:06 1 2006-02-16 02:30:53
  34690. 4811 2005-07-08 17:04:24 4032 127 2005-07-12 16:41:24 2 2006-02-16 02:30:53
  34691. 4812 2005-07-08 17:07:11 3281 304 2005-07-17 21:03:11 2 2006-02-16 02:30:53
  34692. 4813 2005-07-08 17:09:56 2752 439 2005-07-09 22:29:56 1 2006-02-16 02:30:53
  34693. 4814 2005-07-08 17:11:09 3497 244 2005-07-17 12:43:09 2 2006-02-16 02:30:53
  34694. 4815 2005-07-08 17:12:51 840 581 2005-07-17 13:14:51 1 2006-02-16 02:30:53
  34695. 4816 2005-07-08 17:14:14 2700 207 2005-07-11 15:03:14 1 2006-02-16 02:30:53
  34696. 4817 2005-07-08 17:17:31 1608 145 2005-07-09 22:32:31 2 2006-02-16 02:30:53
  34697. 4818 2005-07-08 17:18:22 115 144 2005-07-14 14:40:22 1 2006-02-16 02:30:53
  34698. 4819 2005-07-08 17:19:15 1342 64 2005-07-16 14:32:15 1 2006-02-16 02:30:53
  34699. 4820 2005-07-08 17:25:23 2672 172 2005-07-17 20:32:23 2 2006-02-16 02:30:53
  34700. 4821 2005-07-08 17:28:08 1690 172 2005-07-11 17:44:08 1 2006-02-16 02:30:53
  34701. 4822 2005-07-08 17:28:47 3970 185 2005-07-14 13:06:47 1 2006-02-16 02:30:53
  34702. 4823 2005-07-08 17:28:54 155 206 2005-07-11 23:10:54 1 2006-02-16 02:30:53
  34703. 4824 2005-07-08 17:37:39 1855 225 2005-07-16 18:27:39 1 2006-02-16 02:30:53
  34704. 4825 2005-07-08 17:43:01 2419 563 2005-07-11 20:58:01 1 2006-02-16 02:30:53
  34705. 4826 2005-07-08 17:44:25 911 180 2005-07-16 20:14:25 2 2006-02-16 02:30:53
  34706. 4827 2005-07-08 17:46:30 4455 110 2005-07-11 14:12:30 2 2006-02-16 02:30:53
  34707. 4828 2005-07-08 17:52:29 1100 92 2005-07-11 14:35:29 1 2006-02-16 02:30:53
  34708. 4829 2005-07-08 17:54:18 2661 133 2005-07-11 23:41:18 1 2006-02-16 02:30:53
  34709. 4830 2005-07-08 17:56:23 1150 359 2005-07-17 21:40:23 2 2006-02-16 02:30:53
  34710. 4831 2005-07-08 18:00:14 2739 243 2005-07-12 15:54:14 2 2006-02-16 02:30:53
  34711. 4832 2005-07-08 18:07:05 1838 509 2005-07-10 19:37:05 2 2006-02-16 02:30:53
  34712. 4833 2005-07-08 18:07:35 2921 581 2005-07-13 15:29:35 2 2006-02-16 02:30:53
  34713. 4834 2005-07-08 18:07:45 1288 301 2005-07-14 15:27:45 1 2006-02-16 02:30:53
  34714. 4835 2005-07-08 18:08:13 2499 95 2005-07-17 16:51:13 2 2006-02-16 02:30:53
  34715. 4836 2005-07-08 18:09:08 2756 311 2005-07-15 20:19:08 1 2006-02-16 02:30:53
  34716. 4837 2005-07-08 18:09:12 1944 149 2005-07-11 16:40:12 1 2006-02-16 02:30:53
  34717. 4838 2005-07-08 18:11:00 3733 84 2005-07-17 12:57:00 2 2006-02-16 02:30:53
  34718. 4839 2005-07-08 18:13:10 1810 556 2005-07-15 12:49:10 1 2006-02-16 02:30:53
  34719. 4840 2005-07-08 18:18:16 1670 119 2005-07-16 14:59:16 1 2006-02-16 02:30:53
  34720. 4841 2005-07-08 18:18:23 518 248 2005-07-11 16:51:23 2 2006-02-16 02:30:53
  34721. 4842 2005-07-08 18:21:30 1438 160 2005-07-10 22:25:30 2 2006-02-16 02:30:53
  34722. 4843 2005-07-08 18:27:28 3640 45 2005-07-15 00:26:28 2 2006-02-16 02:30:53
  34723. 4844 2005-07-08 18:28:13 4057 237 2005-07-09 21:17:13 2 2006-02-16 02:30:53
  34724. 4845 2005-07-08 18:28:20 2337 553 2005-07-09 14:38:20 2 2006-02-16 02:30:53
  34725. 4846 2005-07-08 18:29:05 417 556 2005-07-10 22:33:05 2 2006-02-16 02:30:53
  34726. 4847 2005-07-08 18:29:13 3397 544 2005-07-15 18:12:13 2 2006-02-16 02:30:53
  34727. 4848 2005-07-08 18:30:16 2962 251 2005-07-12 19:53:16 2 2006-02-16 02:30:53
  34728. 4849 2005-07-08 18:34:34 4323 146 2005-07-14 20:27:34 2 2006-02-16 02:30:53
  34729. 4850 2005-07-08 18:39:31 3039 154 2005-07-13 00:18:31 2 2006-02-16 02:30:53
  34730. 4851 2005-07-08 18:40:05 134 557 2005-07-12 21:46:05 1 2006-02-16 02:30:53
  34731. 4852 2005-07-08 18:43:15 3545 418 2005-07-15 18:48:15 2 2006-02-16 02:30:53
  34732. 4853 2005-07-08 18:43:18 1454 23 2005-07-12 14:28:18 2 2006-02-16 02:30:53
  34733. 4854 2005-07-08 18:44:44 3644 487 2005-07-13 13:37:44 1 2006-02-16 02:30:53
  34734. 4855 2005-07-08 18:45:50 1146 337 2005-07-11 18:23:50 2 2006-02-16 02:30:53
  34735. 4856 2005-07-08 18:47:38 2441 7 2005-07-13 15:02:38 2 2006-02-16 02:30:53
  34736. 4857 2005-07-08 18:52:07 2069 211 2005-07-11 22:06:07 1 2006-02-16 02:30:53
  34737. 4858 2005-07-08 18:53:24 3424 447 2005-07-17 20:32:24 2 2006-02-16 02:30:53
  34738. 4859 2005-07-08 18:54:04 1939 369 2005-07-13 13:04:04 1 2006-02-16 02:30:53
  34739. 4860 2005-07-08 18:54:07 428 123 2005-07-17 15:09:07 2 2006-02-16 02:30:53
  34740. 4861 2005-07-08 18:57:30 2984 455 2005-07-16 15:12:30 2 2006-02-16 02:30:53
  34741. 4862 2005-07-08 19:02:46 293 291 2005-07-17 20:17:46 1 2006-02-16 02:30:53
  34742. 4863 2005-07-08 19:03:15 1 431 2005-07-11 21:29:15 2 2006-02-16 02:30:53
  34743. 4864 2005-07-08 19:05:34 2974 281 2005-07-17 15:05:34 2 2006-02-16 02:30:53
  34744. 4865 2005-07-08 19:09:04 1614 418 2005-07-13 21:25:04 2 2006-02-16 02:30:53
  34745. 4866 2005-07-08 19:09:59 4036 278 2005-07-15 00:51:59 2 2006-02-16 02:30:53
  34746. 4867 2005-07-08 19:10:52 4090 593 2005-07-09 21:43:52 2 2006-02-16 02:30:53
  34747. 4868 2005-07-08 19:13:50 1157 307 2005-07-14 20:59:50 2 2006-02-16 02:30:53
  34748. 4869 2005-07-08 19:14:05 2860 376 2005-07-15 22:27:05 1 2006-02-16 02:30:53
  34749. 4870 2005-07-08 19:14:45 3089 260 2005-07-12 18:58:45 2 2006-02-16 02:30:53
  34750. 4871 2005-07-08 19:19:52 2509 210 2005-07-13 20:27:52 2 2006-02-16 02:30:53
  34751. 4872 2005-07-08 19:23:16 1836 103 2005-07-10 14:17:16 2 2006-02-16 02:30:53
  34752. 4873 2005-07-08 19:23:32 4500 473 2005-07-11 15:24:32 1 2006-02-16 02:30:53
  34753. 4874 2005-07-08 19:23:38 2386 223 2005-07-13 14:39:38 2 2006-02-16 02:30:53
  34754. 4875 2005-07-08 19:24:17 843 555 2005-07-11 19:15:17 2 2006-02-16 02:30:53
  34755. 4876 2005-07-08 19:27:50 1959 283 2005-07-14 15:42:50 1 2006-02-16 02:30:53
  34756. 4877 2005-07-08 19:31:02 1846 287 2005-07-15 19:05:02 1 2006-02-16 02:30:53
  34757. 4878 2005-07-08 19:33:49 4009 172 2005-07-17 17:47:49 1 2006-02-16 02:30:53
  34758. 4879 2005-07-08 19:34:55 1406 196 2005-07-09 15:53:55 1 2006-02-16 02:30:53
  34759. 4880 2005-07-08 19:36:17 4178 269 2005-07-13 00:01:17 1 2006-02-16 02:30:53
  34760. 4881 2005-07-08 19:40:34 4346 349 2005-07-09 17:08:34 2 2006-02-16 02:30:53
  34761. 4882 2005-07-08 19:42:03 4540 184 2005-07-16 22:24:03 1 2006-02-16 02:30:53
  34762. 4883 2005-07-08 19:46:58 1366 563 2005-07-10 15:48:58 1 2006-02-16 02:30:53
  34763. 4884 2005-07-08 19:49:17 3543 425 2005-07-15 23:14:17 2 2006-02-16 02:30:53
  34764. 4885 2005-07-08 19:51:17 442 233 2005-07-12 16:02:17 2 2006-02-16 02:30:53
  34765. 4886 2005-07-08 19:53:22 3393 474 2005-07-09 17:05:22 1 2006-02-16 02:30:53
  34766. 4887 2005-07-08 19:59:14 3613 543 2005-07-15 22:53:14 1 2006-02-16 02:30:53
  34767. 4888 2005-07-08 20:04:27 1220 527 2005-07-10 14:53:27 2 2006-02-16 02:30:53
  34768. 4889 2005-07-08 20:04:43 4463 5 2005-07-13 17:57:43 2 2006-02-16 02:30:53
  34769. 4890 2005-07-08 20:05:38 3576 574 2005-07-14 14:55:38 2 2006-02-16 02:30:53
  34770. 4891 2005-07-08 20:06:19 1787 59 2005-07-16 18:52:19 1 2006-02-16 02:30:53
  34771. 4892 2005-07-08 20:06:25 3566 193 2005-07-14 20:04:25 1 2006-02-16 02:30:53
  34772. 4893 2005-07-08 20:19:55 2060 210 2005-07-15 21:28:55 2 2006-02-16 02:30:53
  34773. 4894 2005-07-08 20:21:31 1028 286 2005-07-11 01:59:31 1 2006-02-16 02:30:53
  34774. 4895 2005-07-08 20:22:05 2620 242 2005-07-12 20:49:05 1 2006-02-16 02:30:53
  34775. 4896 2005-07-08 20:23:15 3006 129 2005-07-10 15:38:15 1 2006-02-16 02:30:53
  34776. 4897 2005-07-08 20:25:11 2950 258 2005-07-09 17:16:11 1 2006-02-16 02:30:53
  34777. 4898 2005-07-08 20:31:43 3212 218 2005-07-15 15:58:43 2 2006-02-16 02:30:53
  34778. 4899 2005-07-08 20:37:11 414 32 2005-07-10 21:53:11 1 2006-02-16 02:30:53
  34779. 4900 2005-07-08 20:38:06 3487 426 2005-07-09 22:45:06 2 2006-02-16 02:30:53
  34780. 4901 2005-07-08 20:44:51 2187 507 2005-07-10 01:04:51 1 2006-02-16 02:30:53
  34781. 4902 2005-07-08 20:49:30 2238 554 2005-07-13 16:54:30 2 2006-02-16 02:30:53
  34782. 4903 2005-07-08 20:50:05 1769 132 2005-07-13 15:27:05 1 2006-02-16 02:30:53
  34783. 4904 2005-07-08 20:53:27 2051 173 2005-07-18 01:16:27 1 2006-02-16 02:30:53
  34784. 4905 2005-07-08 20:56:00 4101 246 2005-07-12 00:19:00 2 2006-02-16 02:30:53
  34785. 4906 2005-07-08 20:59:13 1527 490 2005-07-15 01:12:13 2 2006-02-16 02:30:53
  34786. 4907 2005-07-08 21:01:41 1206 209 2005-07-13 02:23:41 2 2006-02-16 02:30:53
  34787. 4908 2005-07-08 21:05:44 1963 160 2005-07-17 21:33:44 2 2006-02-16 02:30:53
  34788. 4909 2005-07-08 21:07:24 1451 228 2005-07-10 22:34:24 1 2006-02-16 02:30:53
  34789. 4910 2005-07-08 21:13:56 3675 219 2005-07-18 02:39:56 2 2006-02-16 02:30:53
  34790. 4911 2005-07-08 21:20:26 4479 66 2005-07-15 03:11:26 1 2006-02-16 02:30:53
  34791. 4912 2005-07-08 21:26:11 2012 275 2005-07-18 02:19:11 1 2006-02-16 02:30:53
  34792. 4913 2005-07-08 21:27:48 982 368 2005-07-18 02:51:48 1 2006-02-16 02:30:53
  34793. 4914 2005-07-08 21:30:53 298 535 2005-07-17 01:29:53 1 2006-02-16 02:30:53
  34794. 4915 2005-07-08 21:31:22 2772 178 2005-07-13 16:45:22 2 2006-02-16 02:30:53
  34795. 4916 2005-07-08 21:32:17 2680 212 2005-07-14 20:55:17 2 2006-02-16 02:30:53
  34796. 4917 2005-07-08 21:32:30 3231 104 2005-07-09 15:34:30 1 2006-02-16 02:30:53
  34797. 4918 2005-07-08 21:37:31 3819 220 2005-07-11 20:16:31 2 2006-02-16 02:30:53
  34798. 4919 2005-07-08 21:41:54 2106 157 2005-07-11 23:14:54 1 2006-02-16 02:30:53
  34799. 4920 2005-07-08 21:42:10 4285 239 2005-07-15 03:08:10 1 2006-02-16 02:30:53
  34800. 4921 2005-07-08 21:43:21 425 109 2005-07-10 16:06:21 2 2006-02-16 02:30:53
  34801. 4922 2005-07-08 21:44:00 2928 577 2005-07-10 02:58:00 2 2006-02-16 02:30:53
  34802. 4923 2005-07-08 21:44:39 932 18 2005-07-17 15:50:39 2 2006-02-16 02:30:53
  34803. 4924 2005-07-08 21:55:25 4344 180 2005-07-16 16:52:25 1 2006-02-16 02:30:53
  34804. 4925 2005-07-08 21:56:00 2169 68 2005-07-14 17:17:00 2 2006-02-16 02:30:53
  34805. 4926 2005-07-08 22:01:48 4155 415 2005-07-18 03:27:48 1 2006-02-16 02:30:53
  34806. 4927 2005-07-08 22:05:35 2566 136 2005-07-14 23:22:35 2 2006-02-16 02:30:53
  34807. 4928 2005-07-08 22:05:41 4363 77 2005-07-09 23:09:41 2 2006-02-16 02:30:53
  34808. 4929 2005-07-08 22:06:18 734 297 2005-07-17 18:17:18 2 2006-02-16 02:30:53
  34809. 4930 2005-07-08 22:15:48 2057 451 2005-07-15 21:02:48 2 2006-02-16 02:30:53
  34810. 4931 2005-07-08 22:16:18 2750 284 2005-07-17 03:42:18 1 2006-02-16 02:30:53
  34811. 4932 2005-07-08 22:17:40 4237 558 2005-07-15 22:13:40 2 2006-02-16 02:30:53
  34812. 4933 2005-07-08 22:18:29 322 579 2005-07-13 03:47:29 2 2006-02-16 02:30:53
  34813. 4934 2005-07-08 22:18:42 1744 517 2005-07-10 20:44:42 2 2006-02-16 02:30:53
  34814. 4935 2005-07-08 22:20:56 2708 230 2005-07-12 01:01:56 2 2006-02-16 02:30:53
  34815. 4936 2005-07-08 22:24:50 2033 298 2005-07-15 03:14:50 2 2006-02-16 02:30:53
  34816. 4937 2005-07-08 22:29:59 33 273 2005-07-15 21:51:59 2 2006-02-16 02:30:53
  34817. 4938 2005-07-08 22:32:53 2164 418 2005-07-14 16:48:53 2 2006-02-16 02:30:53
  34818. 4939 2005-07-08 22:35:30 3201 425 2005-07-17 22:05:30 1 2006-02-16 02:30:53
  34819. 4940 2005-07-08 22:36:06 971 215 2005-07-15 04:28:06 1 2006-02-16 02:30:53
  34820. 4941 2005-07-08 22:39:10 3816 553 2005-07-15 17:49:10 2 2006-02-16 02:30:53
  34821. 4942 2005-07-08 22:42:47 4467 120 2005-07-15 04:36:47 2 2006-02-16 02:30:53
  34822. 4943 2005-07-08 22:43:05 2732 11 2005-07-15 18:17:05 2 2006-02-16 02:30:53
  34823. 4944 2005-07-08 22:44:28 3648 293 2005-07-17 21:51:28 2 2006-02-16 02:30:53
  34824. 4945 2005-07-08 22:45:02 2079 165 2005-07-11 23:59:02 2 2006-02-16 02:30:53
  34825. 4946 2005-07-08 22:46:23 272 440 2005-07-16 17:19:23 1 2006-02-16 02:30:53
  34826. 4947 2005-07-08 22:49:37 3905 388 2005-07-17 21:03:37 1 2006-02-16 02:30:53
  34827. 4948 2005-07-08 22:54:21 2972 518 2005-07-17 03:52:21 2 2006-02-16 02:30:53
  34828. 4949 2005-07-08 22:57:10 1184 567 2005-07-11 01:26:10 2 2006-02-16 02:30:53
  34829. 4950 2005-07-08 22:58:07 3291 148 2005-07-09 20:41:07 2 2006-02-16 02:30:53
  34830. 4951 2005-07-08 22:58:21 2766 28 2005-07-16 18:58:21 1 2006-02-16 02:30:53
  34831. 4952 2005-07-08 23:00:07 459 14 2005-07-09 21:47:07 1 2006-02-16 02:30:53
  34832. 4953 2005-07-08 23:09:48 2460 168 2005-07-11 02:08:48 2 2006-02-16 02:30:53
  34833. 4954 2005-07-08 23:14:16 627 99 2005-07-14 23:23:16 2 2006-02-16 02:30:53
  34834. 4955 2005-07-08 23:16:21 1103 225 2005-07-14 02:09:21 2 2006-02-16 02:30:53
  34835. 4956 2005-07-08 23:17:10 1512 477 2005-07-18 00:14:10 1 2006-02-16 02:30:53
  34836. 4957 2005-07-08 23:18:48 4082 399 2005-07-09 23:13:48 1 2006-02-16 02:30:53
  34837. 4958 2005-07-08 23:19:52 2354 346 2005-07-17 20:31:52 1 2006-02-16 02:30:53
  34838. 4959 2005-07-08 23:22:23 3898 236 2005-07-10 03:17:23 2 2006-02-16 02:30:53
  34839. 4960 2005-07-08 23:27:16 2176 434 2005-07-18 02:01:16 1 2006-02-16 02:30:53
  34840. 4961 2005-07-08 23:35:53 3668 96 2005-07-14 22:46:53 2 2006-02-16 02:30:53
  34841. 4962 2005-07-08 23:36:13 4399 532 2005-07-15 03:39:13 1 2006-02-16 02:30:53
  34842. 4963 2005-07-08 23:38:40 737 404 2005-07-12 05:33:40 2 2006-02-16 02:30:53
  34843. 4964 2005-07-08 23:46:38 1033 455 2005-07-09 22:19:38 2 2006-02-16 02:30:53
  34844. 4965 2005-07-08 23:46:57 535 432 2005-07-15 18:47:57 1 2006-02-16 02:30:53
  34845. 4966 2005-07-08 23:47:25 4360 118 2005-07-14 03:35:25 1 2006-02-16 02:30:53
  34846. 4967 2005-07-08 23:48:03 108 339 2005-07-15 23:51:03 2 2006-02-16 02:30:53
  34847. 4968 2005-07-08 23:49:19 3204 390 2005-07-14 02:46:19 1 2006-02-16 02:30:53
  34848. 4969 2005-07-08 23:51:26 4563 231 2005-07-12 03:21:26 2 2006-02-16 02:30:53
  34849. 4970 2005-07-08 23:54:29 2983 100 2005-07-16 22:47:29 1 2006-02-16 02:30:53
  34850. 4971 2005-07-08 23:54:49 460 64 2005-07-16 00:15:49 1 2006-02-16 02:30:53
  34851. 4972 2005-07-08 23:56:09 2451 498 2005-07-16 19:15:09 1 2006-02-16 02:30:53
  34852. 4973 2005-07-08 23:58:18 391 432 2005-07-14 21:42:18 1 2006-02-16 02:30:53
  34853. 4974 2005-07-09 00:00:36 1071 152 2005-07-13 21:03:36 1 2006-02-16 02:30:53
  34854. 4975 2005-07-09 00:02:46 3730 101 2005-07-14 18:05:46 2 2006-02-16 02:30:53
  34855. 4976 2005-07-09 00:03:30 617 199 2005-07-10 19:05:30 1 2006-02-16 02:30:53
  34856. 4977 2005-07-09 00:15:50 3310 584 2005-07-10 00:34:50 2 2006-02-16 02:30:53
  34857. 4978 2005-07-09 00:22:02 2578 279 2005-07-18 04:37:02 1 2006-02-16 02:30:53
  34858. 4979 2005-07-09 00:24:34 3447 204 2005-07-12 20:04:34 1 2006-02-16 02:30:53
  34859. 4980 2005-07-09 00:26:59 2638 100 2005-07-14 19:42:59 1 2006-02-16 02:30:53
  34860. 4981 2005-07-09 00:29:29 3363 399 2005-07-16 19:06:29 2 2006-02-16 02:30:53
  34861. 4982 2005-07-09 00:30:52 249 162 2005-07-15 23:50:52 1 2006-02-16 02:30:53
  34862. 4983 2005-07-09 00:34:16 1469 81 2005-07-17 03:21:16 2 2006-02-16 02:30:53
  34863. 4984 2005-07-09 00:35:31 1303 214 2005-07-17 03:44:31 1 2006-02-16 02:30:53
  34864. 4985 2005-07-09 00:36:02 2146 208 2005-07-14 04:06:02 2 2006-02-16 02:30:53
  34865. 4986 2005-07-09 00:44:33 3517 589 2005-07-09 19:45:33 2 2006-02-16 02:30:53
  34866. 4987 2005-07-09 00:45:41 996 277 2005-07-14 03:32:41 2 2006-02-16 02:30:53
  34867. 4988 2005-07-09 00:46:14 2718 433 2005-07-16 01:45:14 2 2006-02-16 02:30:53
  34868. 4989 2005-07-09 00:46:56 3326 210 2005-07-17 06:24:56 1 2006-02-16 02:30:53
  34869. 4990 2005-07-09 00:48:49 3305 35 2005-07-10 06:36:49 2 2006-02-16 02:30:53
  34870. 4991 2005-07-09 00:49:03 1856 540 2005-07-13 05:02:03 1 2006-02-16 02:30:53
  34871. 4992 2005-07-09 00:49:37 2081 315 2005-07-16 02:05:37 1 2006-02-16 02:30:53
  34872. 4993 2005-07-09 00:49:47 1740 517 2005-07-11 21:19:47 1 2006-02-16 02:30:53
  34873. 4994 2005-07-09 00:54:13 2546 246 2005-07-09 21:02:13 1 2006-02-16 02:30:53
  34874. 4995 2005-07-09 00:57:46 2063 247 2005-07-13 03:32:46 1 2006-02-16 02:30:53
  34875. 4996 2005-07-09 00:59:46 4440 129 2005-07-16 01:30:46 2 2006-02-16 02:30:53
  34876. 4997 2005-07-09 01:06:03 186 102 2005-07-18 04:21:03 2 2006-02-16 02:30:53
  34877. 4998 2005-07-09 01:07:21 202 534 2005-07-10 05:48:21 2 2006-02-16 02:30:53
  34878. 4999 2005-07-09 01:12:57 1797 196 2005-07-17 00:12:57 1 2006-02-16 02:30:53
  34879. 5000 2005-07-09 01:16:13 668 146 2005-07-14 21:55:13 1 2006-02-16 02:30:53
  34880. 5001 2005-07-09 01:17:04 2025 40 2005-07-16 03:25:04 2 2006-02-16 02:30:53
  34881. 5002 2005-07-09 01:17:08 2388 430 2005-07-15 21:53:08 1 2006-02-16 02:30:53
  34882. 5003 2005-07-09 01:19:03 3438 569 2005-07-10 04:28:03 2 2006-02-16 02:30:53
  34883. 5004 2005-07-09 01:20:50 2637 382 2005-07-09 19:56:50 1 2006-02-16 02:30:53
  34884. 5005 2005-07-09 01:21:44 3034 451 2005-07-14 20:27:44 1 2006-02-16 02:30:53
  34885. 5006 2005-07-09 01:24:07 1277 486 2005-07-18 03:56:07 1 2006-02-16 02:30:53
  34886. 5007 2005-07-09 01:26:22 3079 207 2005-07-12 20:48:22 1 2006-02-16 02:30:53
  34887. 5008 2005-07-09 01:31:42 824 509 2005-07-11 22:34:42 2 2006-02-16 02:30:53
  34888. 5009 2005-07-09 01:32:17 1539 102 2005-07-18 03:39:17 2 2006-02-16 02:30:53
  34889. 5010 2005-07-09 01:33:23 1999 574 2005-07-14 04:00:23 2 2006-02-16 02:30:53
  34890. 5011 2005-07-09 01:44:40 463 249 2005-07-11 00:58:40 2 2006-02-16 02:30:53
  34891. 5012 2005-07-09 01:45:04 1456 251 2005-07-12 02:13:04 1 2006-02-16 02:30:53
  34892. 5013 2005-07-09 01:46:45 3000 35 2005-07-16 06:57:45 1 2006-02-16 02:30:53
  34893. 5014 2005-07-09 01:51:49 4095 334 2005-07-10 04:48:49 1 2006-02-16 02:30:53
  34894. 5015 2005-07-09 01:54:24 1564 178 2005-07-12 20:07:24 1 2006-02-16 02:30:53
  34895. 5016 2005-07-09 01:57:57 1871 5 2005-07-09 22:07:57 1 2006-02-16 02:30:53
  34896. 5017 2005-07-09 02:00:16 3745 241 2005-07-14 06:28:16 1 2006-02-16 02:30:53
  34897. 5018 2005-07-09 02:01:05 2317 541 2005-07-10 04:09:05 1 2006-02-16 02:30:53
  34898. 5019 2005-07-09 02:04:32 3534 295 2005-07-15 07:01:32 2 2006-02-16 02:30:53
  34899. 5020 2005-07-09 02:07:56 4113 565 2005-07-09 23:59:56 1 2006-02-16 02:30:53
  34900. 5021 2005-07-09 02:09:41 3445 73 2005-07-13 05:47:41 1 2006-02-16 02:30:53
  34901. 5022 2005-07-09 02:10:54 928 499 2005-07-17 08:07:54 2 2006-02-16 02:30:53
  34902. 5023 2005-07-09 02:23:16 3206 358 2005-07-15 20:37:16 1 2006-02-16 02:30:53
  34903. 5024 2005-07-09 02:25:12 2987 335 2005-07-12 03:15:12 1 2006-02-16 02:30:53
  34904. 5025 2005-07-09 02:28:24 153 91 2005-07-12 04:43:24 2 2006-02-16 02:30:53
  34905. 5026 2005-07-09 02:32:34 989 463 2005-07-13 04:39:34 2 2006-02-16 02:30:53
  34906. 5027 2005-07-09 02:32:37 2179 109 2005-07-16 23:13:37 1 2006-02-16 02:30:53
  34907. 5028 2005-07-09 02:34:45 4531 30 2005-07-14 20:45:45 2 2006-02-16 02:30:53
  34908. 5029 2005-07-09 02:35:32 3938 265 2005-07-17 22:46:32 1 2006-02-16 02:30:53
  34909. 5030 2005-07-09 02:35:43 25 497 2005-07-17 02:05:43 1 2006-02-16 02:30:53
  34910. 5031 2005-07-09 02:36:37 4224 312 2005-07-14 03:09:37 2 2006-02-16 02:30:53
  34911. 5032 2005-07-09 02:39:47 2257 333 2005-07-10 07:45:47 1 2006-02-16 02:30:53
  34912. 5033 2005-07-09 02:42:01 2841 299 2005-07-14 00:29:01 1 2006-02-16 02:30:53
  34913. 5034 2005-07-09 02:48:15 340 148 2005-07-11 23:13:15 2 2006-02-16 02:30:53
  34914. 5035 2005-07-09 02:51:34 3699 99 2005-07-16 21:38:34 1 2006-02-16 02:30:53
  34915. 5036 2005-07-09 02:58:41 75 573 2005-07-17 04:09:41 1 2006-02-16 02:30:53
  34916. 5037 2005-07-09 02:59:10 435 524 2005-07-15 07:54:10 2 2006-02-16 02:30:53
  34917. 5038 2005-07-09 03:12:52 3086 10 2005-07-17 22:27:52 2 2006-02-16 02:30:53
  34918. 5039 2005-07-09 03:14:45 2020 268 2005-07-16 06:57:45 2 2006-02-16 02:30:53
  34919. 5040 2005-07-09 03:16:34 2479 405 2005-07-17 01:13:34 2 2006-02-16 02:30:53
  34920. 5041 2005-07-09 03:18:51 2711 305 2005-07-13 03:08:51 1 2006-02-16 02:30:53
  34921. 5042 2005-07-09 03:20:30 3609 254 2005-07-15 07:22:30 1 2006-02-16 02:30:53
  34922. 5043 2005-07-09 03:25:18 2979 369 2005-07-13 00:57:18 2 2006-02-16 02:30:53
  34923. 5044 2005-07-09 03:30:25 1625 147 2005-07-11 02:32:25 2 2006-02-16 02:30:53
  34924. 5045 2005-07-09 03:33:32 1041 230 2005-07-18 06:15:32 1 2006-02-16 02:30:53
  34925. 5046 2005-07-09 03:34:57 1639 227 2005-07-17 22:36:57 2 2006-02-16 02:30:53
  34926. 5047 2005-07-09 03:44:15 230 272 2005-07-15 09:07:15 2 2006-02-16 02:30:53
  34927. 5048 2005-07-09 03:46:33 1271 466 2005-07-15 01:14:33 1 2006-02-16 02:30:53
  34928. 5049 2005-07-09 03:54:12 3336 144 2005-07-11 22:39:12 2 2006-02-16 02:30:53
  34929. 5050 2005-07-09 03:54:38 3876 337 2005-07-10 02:23:38 2 2006-02-16 02:30:53
  34930. 5051 2005-07-09 03:57:53 4091 85 2005-07-16 08:22:53 2 2006-02-16 02:30:53
  34931. 5052 2005-07-09 03:59:43 1884 305 2005-07-12 05:48:43 1 2006-02-16 02:30:53
  34932. 5053 2005-07-09 03:59:46 570 295 2005-07-09 23:53:46 2 2006-02-16 02:30:53
  34933. 5054 2005-07-09 04:01:02 4001 135 2005-07-18 05:16:02 2 2006-02-16 02:30:53
  34934. 5055 2005-07-09 04:05:28 751 54 2005-07-14 04:26:28 2 2006-02-16 02:30:53
  34935. 5056 2005-07-09 04:13:45 2599 526 2005-07-10 06:17:45 2 2006-02-16 02:30:53
  34936. 5057 2005-07-09 04:20:29 1076 178 2005-07-14 23:59:29 1 2006-02-16 02:30:53
  34937. 5058 2005-07-09 04:20:35 917 221 2005-07-18 08:09:35 2 2006-02-16 02:30:53
  34938. 5059 2005-07-09 04:28:01 3951 396 2005-07-15 22:57:01 1 2006-02-16 02:30:53
  34939. 5060 2005-07-09 04:28:03 4317 57 2005-07-12 07:41:03 2 2006-02-16 02:30:53
  34940. 5061 2005-07-09 04:30:50 3893 230 2005-07-12 03:24:50 1 2006-02-16 02:30:53
  34941. 5062 2005-07-09 04:36:49 2190 141 2005-07-10 06:26:49 1 2006-02-16 02:30:53
  34942. 5063 2005-07-09 04:37:31 1027 133 2005-07-13 09:56:31 2 2006-02-16 02:30:53
  34943. 5064 2005-07-09 04:38:51 373 512 2005-07-18 00:33:51 2 2006-02-16 02:30:53
  34944. 5065 2005-07-09 04:42:00 1788 599 2005-07-12 08:55:00 1 2006-02-16 02:30:53
  34945. 5066 2005-07-09 04:48:50 1702 169 2005-07-12 22:54:50 2 2006-02-16 02:30:53
  34946. 5067 2005-07-09 04:52:35 1480 225 2005-07-11 23:33:35 2 2006-02-16 02:30:53
  34947. 5068 2005-07-09 04:53:18 2937 10 2005-07-13 09:21:18 1 2006-02-16 02:30:53
  34948. 5069 2005-07-09 04:56:30 4417 183 2005-07-13 23:53:30 2 2006-02-16 02:30:53
  34949. 5070 2005-07-09 04:58:26 2305 407 2005-07-09 23:00:26 2 2006-02-16 02:30:53
  34950. 5071 2005-07-09 05:00:39 4358 12 2005-07-09 23:08:39 1 2006-02-16 02:30:53
  34951. 5072 2005-07-09 05:01:58 94 254 2005-07-18 08:17:58 2 2006-02-16 02:30:53
  34952. 5073 2005-07-09 05:02:35 546 408 2005-07-15 01:22:35 2 2006-02-16 02:30:53
  34953. 5074 2005-07-09 05:06:24 1379 12 2005-07-12 04:37:24 1 2006-02-16 02:30:53
  34954. 5075 2005-07-09 05:12:07 903 170 2005-07-12 08:29:07 1 2006-02-16 02:30:53
  34955. 5076 2005-07-09 05:13:22 4388 574 2005-07-16 09:11:22 1 2006-02-16 02:30:53
  34956. 5077 2005-07-09 05:18:01 686 574 2005-07-17 10:39:01 2 2006-02-16 02:30:53
  34957. 5078 2005-07-09 05:20:24 1994 78 2005-07-13 06:41:24 2 2006-02-16 02:30:53
  34958. 5079 2005-07-09 05:20:40 3948 566 2005-07-17 00:06:40 1 2006-02-16 02:30:53
  34959. 5080 2005-07-09 05:23:55 635 254 2005-07-11 05:56:55 2 2006-02-16 02:30:53
  34960. 5081 2005-07-09 05:25:20 1953 420 2005-07-13 23:45:20 1 2006-02-16 02:30:53
  34961. 5082 2005-07-09 05:28:38 1584 470 2005-07-10 02:46:38 2 2006-02-16 02:30:53
  34962. 5083 2005-07-09 05:30:32 148 494 2005-07-11 02:20:32 1 2006-02-16 02:30:53
  34963. 5084 2005-07-09 05:33:27 3113 87 2005-07-17 08:54:27 2 2006-02-16 02:30:53
  34964. 5085 2005-07-09 05:36:49 4164 437 2005-07-13 09:26:49 1 2006-02-16 02:30:53
  34965. 5086 2005-07-09 05:40:04 3072 539 2005-07-16 07:51:04 1 2006-02-16 02:30:53
  34966. 5087 2005-07-09 05:44:28 3716 395 2005-07-10 02:25:28 2 2006-02-16 02:30:53
  34967. 5088 2005-07-09 05:45:16 3324 454 2005-07-15 00:41:16 2 2006-02-16 02:30:53
  34968. 5089 2005-07-09 05:45:40 451 289 2005-07-15 05:31:40 1 2006-02-16 02:30:53
  34969. 5090 2005-07-09 05:48:22 1728 296 2005-07-11 06:50:22 2 2006-02-16 02:30:53
  34970. 5091 2005-07-09 05:52:54 4572 149 2005-07-10 02:49:54 1 2006-02-16 02:30:53
  34971. 5092 2005-07-09 05:57:39 3256 139 2005-07-12 00:45:39 2 2006-02-16 02:30:53
  34972. 5093 2005-07-09 05:59:12 2734 597 2005-07-10 11:45:12 2 2006-02-16 02:30:53
  34973. 5094 2005-07-09 05:59:47 4451 178 2005-07-18 05:34:47 2 2006-02-16 02:30:53
  34974. 5095 2005-07-09 06:08:22 2788 292 2005-07-11 10:52:22 1 2006-02-16 02:30:53
  34975. 5096 2005-07-09 06:08:23 490 231 2005-07-14 11:36:23 1 2006-02-16 02:30:53
  34976. 5097 2005-07-09 06:09:51 3252 343 2005-07-10 03:55:51 2 2006-02-16 02:30:53
  34977. 5098 2005-07-09 06:13:54 1772 406 2005-07-10 04:27:54 1 2006-02-16 02:30:53
  34978. 5099 2005-07-09 06:14:30 768 393 2005-07-12 08:23:30 2 2006-02-16 02:30:53
  34979. 5100 2005-07-09 06:16:03 3193 101 2005-07-10 10:21:03 1 2006-02-16 02:30:53
  34980. 5101 2005-07-09 06:21:29 2737 154 2005-07-11 02:58:29 1 2006-02-16 02:30:53
  34981. 5102 2005-07-09 06:25:48 242 316 2005-07-16 11:32:48 2 2006-02-16 02:30:53
  34982. 5103 2005-07-09 06:34:40 2390 397 2005-07-10 03:44:40 2 2006-02-16 02:30:53
  34983. 5104 2005-07-09 06:37:07 2109 14 2005-07-14 12:32:07 1 2006-02-16 02:30:53
  34984. 5105 2005-07-09 06:38:59 2555 290 2005-07-17 03:06:59 2 2006-02-16 02:30:53
  34985. 5106 2005-07-09 06:40:24 110 137 2005-07-13 10:28:24 1 2006-02-16 02:30:53
  34986. 5107 2005-07-09 06:42:32 1697 21 2005-07-10 08:21:32 2 2006-02-16 02:30:53
  34987. 5108 2005-07-09 06:44:30 4229 30 2005-07-17 04:24:30 1 2006-02-16 02:30:53
  34988. 5109 2005-07-09 06:48:49 2373 102 2005-07-14 01:17:49 1 2006-02-16 02:30:53
  34989. 5110 2005-07-09 06:57:25 195 200 2005-07-12 05:39:25 2 2006-02-16 02:30:53
  34990. 5111 2005-07-09 07:02:19 2875 12 2005-07-10 06:27:19 2 2006-02-16 02:30:53
  34991. 5112 2005-07-09 07:04:04 3529 285 2005-07-13 08:42:04 1 2006-02-16 02:30:53
  34992. 5113 2005-07-09 07:06:18 3618 282 2005-07-13 07:10:18 2 2006-02-16 02:30:53
  34993. 5114 2005-07-09 07:07:05 3734 64 2005-07-15 03:06:05 1 2006-02-16 02:30:53
  34994. 5115 2005-07-09 07:07:18 2296 212 2005-07-16 03:28:18 2 2006-02-16 02:30:53
  34995. 5116 2005-07-09 07:10:12 2491 332 2005-07-14 09:16:12 2 2006-02-16 02:30:53
  34996. 5117 2005-07-09 07:11:22 2284 208 2005-07-15 08:44:22 1 2006-02-16 02:30:53
  34997. 5118 2005-07-09 07:13:52 957 5 2005-07-18 05:18:52 2 2006-02-16 02:30:53
  34998. 5119 2005-07-09 07:14:18 2996 301 2005-07-18 04:07:18 1 2006-02-16 02:30:53
  34999. 5120 2005-07-09 07:14:23 4431 373 2005-07-14 04:00:23 2 2006-02-16 02:30:53
  35000. 5121 2005-07-09 07:18:31 3321 526 2005-07-15 01:48:31 1 2006-02-16 02:30:53
  35001. 5122 2005-07-09 07:19:35 1423 261 2005-07-16 03:04:35 2 2006-02-16 02:30:53
  35002. 5123 2005-07-09 07:20:30 4278 219 2005-07-14 05:24:30 1 2006-02-16 02:30:53
  35003. 5124 2005-07-09 07:25:19 1857 565 2005-07-15 01:51:19 1 2006-02-16 02:30:53
  35004. 5125 2005-07-09 07:25:28 990 263 2005-07-12 12:34:28 1 2006-02-16 02:30:53
  35005. 5126 2005-07-09 07:25:35 3312 315 2005-07-18 05:05:35 1 2006-02-16 02:30:53
  35006. 5127 2005-07-09 07:25:47 3649 129 2005-07-13 11:44:47 2 2006-02-16 02:30:53
  35007. 5128 2005-07-09 07:25:54 3757 155 2005-07-16 04:04:54 2 2006-02-16 02:30:53
  35008. 5129 2005-07-09 07:28:33 4516 441 2005-07-14 05:12:33 2 2006-02-16 02:30:53
  35009. 5130 2005-07-09 07:29:45 3264 93 2005-07-13 05:56:45 1 2006-02-16 02:30:53
  35010. 5131 2005-07-09 07:35:03 3179 167 2005-07-10 06:05:03 1 2006-02-16 02:30:53
  35011. 5132 2005-07-09 07:40:32 4158 101 2005-07-16 02:16:32 2 2006-02-16 02:30:53
  35012. 5133 2005-07-09 07:43:22 3403 469 2005-07-12 04:52:22 1 2006-02-16 02:30:53
  35013. 5134 2005-07-09 07:53:12 149 491 2005-07-16 05:30:12 1 2006-02-16 02:30:53
  35014. 5135 2005-07-09 07:53:22 3005 538 2005-07-16 04:50:22 2 2006-02-16 02:30:53
  35015. 5136 2005-07-09 07:55:01 3498 395 2005-07-11 05:26:01 2 2006-02-16 02:30:53
  35016. 5137 2005-07-09 08:00:34 409 126 2005-07-12 05:34:34 1 2006-02-16 02:30:53
  35017. 5138 2005-07-09 08:00:46 1283 548 2005-07-12 09:31:46 2 2006-02-16 02:30:53
  35018. 5139 2005-07-09 08:01:51 51 539 2005-07-18 09:16:51 2 2006-02-16 02:30:53
  35019. 5140 2005-07-09 08:04:59 947 303 2005-07-11 08:28:59 2 2006-02-16 02:30:53
  35020. 5141 2005-07-09 08:05:14 590 488 2005-07-18 04:36:14 1 2006-02-16 02:30:53
  35021. 5142 2005-07-09 08:05:23 369 56 2005-07-13 12:37:23 2 2006-02-16 02:30:53
  35022. 5143 2005-07-09 08:07:07 3803 196 2005-07-18 10:17:07 1 2006-02-16 02:30:53
  35023. 5144 2005-07-09 08:09:53 3530 89 2005-07-18 07:11:53 2 2006-02-16 02:30:53
  35024. 5145 2005-07-09 08:13:25 2397 204 2005-07-10 03:56:25 2 2006-02-16 02:30:53
  35025. 5146 2005-07-09 08:14:58 776 194 2005-07-11 07:04:58 1 2006-02-16 02:30:53
  35026. 5147 2005-07-09 08:17:41 2270 326 2005-07-18 09:45:41 2 2006-02-16 02:30:53
  35027. 5148 2005-07-09 08:22:46 456 48 2005-07-18 04:36:46 1 2006-02-16 02:30:53
  35028. 5149 2005-07-09 08:28:23 1500 330 2005-07-16 06:19:23 2 2006-02-16 02:30:53
  35029. 5150 2005-07-09 08:28:40 1961 410 2005-07-16 04:47:40 1 2006-02-16 02:30:53
  35030. 5151 2005-07-09 08:31:03 224 228 2005-07-10 08:18:03 2 2006-02-16 02:30:53
  35031. 5152 2005-07-09 08:34:44 4005 331 2005-07-10 05:26:44 1 2006-02-16 02:30:53
  35032. 5153 2005-07-09 08:35:05 2826 504 2005-07-18 14:21:05 1 2006-02-16 02:30:53
  35033. 5154 2005-07-09 08:46:18 3785 361 2005-07-14 03:19:18 1 2006-02-16 02:30:53
  35034. 5155 2005-07-09 08:46:54 988 523 2005-07-14 04:13:54 1 2006-02-16 02:30:53
  35035. 5156 2005-07-09 08:51:42 416 5 2005-07-15 03:59:42 2 2006-02-16 02:30:53
  35036. 5157 2005-07-09 08:52:12 637 463 2005-07-12 04:32:12 2 2006-02-16 02:30:53
  35037. 5158 2005-07-09 08:53:09 2825 272 2005-07-10 11:05:09 1 2006-02-16 02:30:53
  35038. 5159 2005-07-09 08:55:52 3479 213 2005-07-10 04:32:52 1 2006-02-16 02:30:53
  35039. 5160 2005-07-09 08:57:07 1925 467 2005-07-18 06:01:07 1 2006-02-16 02:30:53
  35040. 5161 2005-07-09 08:57:56 2617 284 2005-07-18 07:41:56 2 2006-02-16 02:30:53
  35041. 5162 2005-07-09 09:00:11 2765 43 2005-07-17 07:26:11 1 2006-02-16 02:30:53
  35042. 5163 2005-07-09 09:00:28 1486 103 2005-07-17 08:07:28 2 2006-02-16 02:30:53
  35043. 5164 2005-07-09 09:03:14 1170 511 2005-07-14 04:20:14 1 2006-02-16 02:30:53
  35044. 5165 2005-07-09 09:08:53 280 590 2005-07-14 06:01:53 1 2006-02-16 02:30:53
  35045. 5166 2005-07-09 09:15:48 2771 298 2005-07-16 06:04:48 1 2006-02-16 02:30:53
  35046. 5167 2005-07-09 09:18:43 2485 437 2005-07-14 12:59:43 2 2006-02-16 02:30:53
  35047. 5168 2005-07-09 09:20:01 4096 420 2005-07-11 14:42:01 1 2006-02-16 02:30:53
  35048. 5169 2005-07-09 09:22:25 2608 116 2005-07-10 03:48:25 1 2006-02-16 02:30:53
  35049. 5170 2005-07-09 09:24:19 66 209 2005-07-18 04:02:19 1 2006-02-16 02:30:53
  35050. 5171 2005-07-09 09:26:55 2099 371 2005-07-10 10:34:55 1 2006-02-16 02:30:53
  35051. 5172 2005-07-09 09:31:27 4046 214 2005-07-13 04:03:27 1 2006-02-16 02:30:53
  35052. 5173 2005-07-09 09:31:44 2848 490 2005-07-15 04:20:44 2 2006-02-16 02:30:53
  35053. 5174 2005-07-09 09:31:59 3621 47 2005-07-15 03:49:59 1 2006-02-16 02:30:53
  35054. 5175 2005-07-09 09:34:28 1003 409 2005-07-15 15:19:28 2 2006-02-16 02:30:53
  35055. 5176 2005-07-09 09:39:31 328 119 2005-07-17 11:56:31 2 2006-02-16 02:30:53
  35056. 5177 2005-07-09 09:43:21 1675 452 2005-07-13 07:29:21 1 2006-02-16 02:30:53
  35057. 5178 2005-07-09 09:59:52 1750 167 2005-07-18 13:01:52 2 2006-02-16 02:30:53
  35058. 5179 2005-07-09 10:00:44 2995 256 2005-07-11 06:52:44 1 2006-02-16 02:30:53
  35059. 5180 2005-07-09 10:06:53 3684 494 2005-07-12 15:25:53 1 2006-02-16 02:30:53
  35060. 5181 2005-07-09 10:07:27 2569 45 2005-07-17 10:18:27 2 2006-02-16 02:30:53
  35061. 5182 2005-07-09 10:08:10 725 197 2005-07-16 14:36:10 2 2006-02-16 02:30:53
  35062. 5183 2005-07-09 10:13:45 2866 394 2005-07-16 15:55:45 2 2006-02-16 02:30:53
  35063. 5184 2005-07-09 10:14:34 1101 166 2005-07-14 16:05:34 2 2006-02-16 02:30:53
  35064. 5185 2005-07-09 10:14:39 357 53 2005-07-10 13:31:39 1 2006-02-16 02:30:53
  35065. 5186 2005-07-09 10:18:40 2415 276 2005-07-13 05:05:40 2 2006-02-16 02:30:53
  35066. 5187 2005-07-09 10:19:51 2631 91 2005-07-14 10:35:51 1 2006-02-16 02:30:53
  35067. 5188 2005-07-09 10:22:31 3265 34 2005-07-13 04:41:31 1 2006-02-16 02:30:53
  35068. 5189 2005-07-09 10:23:21 2539 113 2005-07-14 08:06:21 1 2006-02-16 02:30:53
  35069. 5190 2005-07-09 10:25:24 2213 532 2005-07-18 04:33:24 1 2006-02-16 02:30:53
  35070. 5191 2005-07-09 10:26:48 2131 167 2005-07-10 15:52:48 2 2006-02-16 02:30:53
  35071. 5192 2005-07-09 10:27:09 1225 410 2005-07-10 12:04:09 1 2006-02-16 02:30:53
  35072. 5193 2005-07-09 10:28:18 2166 485 2005-07-12 12:18:18 1 2006-02-16 02:30:53
  35073. 5194 2005-07-09 10:31:34 3809 202 2005-07-15 08:50:34 2 2006-02-16 02:30:53
  35074. 5195 2005-07-09 10:39:31 3399 59 2005-07-18 13:54:31 1 2006-02-16 02:30:53
  35075. 5196 2005-07-09 10:43:34 2278 536 2005-07-13 12:10:34 2 2006-02-16 02:30:53
  35076. 5197 2005-07-09 10:43:54 1571 541 2005-07-16 10:19:54 1 2006-02-16 02:30:53
  35077. 5198 2005-07-09 10:49:10 218 101 2005-07-13 04:52:10 1 2006-02-16 02:30:53
  35078. 5199 2005-07-09 10:50:56 349 42 2005-07-10 06:43:56 1 2006-02-16 02:30:53
  35079. 5200 2005-07-09 10:52:09 4528 125 2005-07-13 15:12:09 1 2006-02-16 02:30:53
  35080. 5201 2005-07-09 10:52:53 2453 551 2005-07-16 12:41:53 2 2006-02-16 02:30:53
  35081. 5202 2005-07-09 10:53:48 3417 321 2005-07-15 13:31:48 1 2006-02-16 02:30:53
  35082. 5203 2005-07-09 10:53:59 3661 588 2005-07-15 09:45:59 2 2006-02-16 02:30:53
  35083. 5204 2005-07-09 10:54:14 1791 432 2005-07-12 14:29:14 2 2006-02-16 02:30:53
  35084. 5205 2005-07-09 10:56:37 161 79 2005-07-13 05:45:37 1 2006-02-16 02:30:53
  35085. 5206 2005-07-09 11:11:01 692 517 2005-07-17 07:23:01 2 2006-02-16 02:30:53
  35086. 5207 2005-07-09 11:15:44 3496 59 2005-07-17 06:00:44 1 2006-02-16 02:30:53
  35087. 5208 2005-07-09 11:16:56 1881 560 2005-07-10 07:21:56 2 2006-02-16 02:30:53
  35088. 5209 2005-07-09 11:22:39 4441 222 2005-07-17 09:31:39 1 2006-02-16 02:30:53
  35089. 5210 2005-07-09 11:24:19 4514 355 2005-07-11 06:27:19 1 2006-02-16 02:30:53
  35090. 5211 2005-07-09 11:26:50 2216 241 2005-07-16 15:30:50 1 2006-02-16 02:30:53
  35091. 5212 2005-07-09 11:37:47 3240 400 2005-07-15 14:42:47 1 2006-02-16 02:30:53
  35092. 5213 2005-07-09 11:39:43 3708 552 2005-07-18 16:20:43 2 2006-02-16 02:30:53
  35093. 5214 2005-07-09 11:43:08 1657 290 2005-07-17 08:58:08 2 2006-02-16 02:30:53
  35094. 5215 2005-07-09 11:47:58 3888 528 2005-07-18 09:58:58 1 2006-02-16 02:30:53
  35095. 5216 2005-07-09 11:54:58 1644 515 2005-07-12 09:46:58 2 2006-02-16 02:30:53
  35096. 5217 2005-07-09 11:56:50 4150 430 2005-07-17 07:10:50 1 2006-02-16 02:30:53
  35097. 5218 2005-07-09 11:57:12 1121 83 2005-07-13 06:34:12 2 2006-02-16 02:30:53
  35098. 5219 2005-07-09 11:57:55 3933 209 2005-07-15 09:43:55 2 2006-02-16 02:30:53
  35099. 5220 2005-07-09 11:59:04 2577 435 2005-07-15 06:20:04 1 2006-02-16 02:30:53
  35100. 5221 2005-07-09 12:02:23 2339 84 2005-07-16 15:43:23 1 2006-02-16 02:30:53
  35101. 5222 2005-07-09 12:05:45 2508 400 2005-07-13 12:11:45 1 2006-02-16 02:30:53
  35102. 5223 2005-07-09 12:06:03 2335 72 2005-07-17 15:50:03 1 2006-02-16 02:30:53
  35103. 5224 2005-07-09 12:07:27 279 311 2005-07-17 08:59:27 1 2006-02-16 02:30:53
  35104. 5225 2005-07-09 12:10:16 703 445 2005-07-12 09:55:16 2 2006-02-16 02:30:53
  35105. 5226 2005-07-09 12:10:44 3128 218 2005-07-11 17:32:44 2 2006-02-16 02:30:53
  35106. 5227 2005-07-09 12:16:39 1862 362 2005-07-18 15:38:39 2 2006-02-16 02:30:53
  35107. 5228 2005-07-09 12:26:01 622 195 2005-07-14 13:31:01 2 2006-02-16 02:30:53
  35108. 5229 2005-07-09 12:30:18 4472 372 2005-07-14 15:31:18 2 2006-02-16 02:30:53
  35109. 5230 2005-07-09 12:30:23 3707 51 2005-07-13 08:41:23 1 2006-02-16 02:30:53
  35110. 5231 2005-07-09 12:35:02 1275 405 2005-07-10 09:22:02 1 2006-02-16 02:30:53
  35111. 5232 2005-07-09 12:35:08 3353 175 2005-07-14 14:55:08 1 2006-02-16 02:30:53
  35112. 5233 2005-07-09 12:44:26 1401 131 2005-07-15 12:31:26 1 2006-02-16 02:30:53
  35113. 5234 2005-07-09 12:44:47 4182 398 2005-07-17 10:02:47 1 2006-02-16 02:30:53
  35114. 5235 2005-07-09 12:54:25 1044 122 2005-07-18 16:28:25 1 2006-02-16 02:30:53
  35115. 5236 2005-07-09 12:56:29 1215 519 2005-07-13 08:26:29 1 2006-02-16 02:30:53
  35116. 5237 2005-07-09 12:56:58 2341 84 2005-07-11 15:41:58 1 2006-02-16 02:30:53
  35117. 5238 2005-07-09 13:11:14 3297 100 2005-07-10 07:27:14 2 2006-02-16 02:30:53
  35118. 5239 2005-07-09 13:12:35 380 497 2005-07-10 13:37:35 1 2006-02-16 02:30:53
  35119. 5240 2005-07-09 13:14:48 1378 350 2005-07-10 18:47:48 2 2006-02-16 02:30:53
  35120. 5241 2005-07-09 13:19:14 4079 314 2005-07-11 14:32:14 1 2006-02-16 02:30:53
  35121. 5242 2005-07-09 13:20:25 848 12 2005-07-18 07:38:25 1 2006-02-16 02:30:53
  35122. 5243 2005-07-09 13:22:08 122 587 2005-07-16 09:25:08 1 2006-02-16 02:30:53
  35123. 5244 2005-07-09 13:24:07 3726 1 2005-07-14 14:01:07 2 2006-02-16 02:30:53
  35124. 5245 2005-07-09 13:24:14 3547 115 2005-07-12 11:16:14 1 2006-02-16 02:30:53
  35125. 5246 2005-07-09 13:25:18 3548 276 2005-07-13 18:38:18 1 2006-02-16 02:30:53
  35126. 5247 2005-07-09 13:26:28 1186 298 2005-07-12 14:00:28 2 2006-02-16 02:30:53
  35127. 5248 2005-07-09 13:29:44 246 279 2005-07-12 18:12:44 1 2006-02-16 02:30:53
  35128. 5249 2005-07-09 13:33:53 1950 389 2005-07-11 12:55:53 2 2006-02-16 02:30:53
  35129. 5250 2005-07-09 13:35:32 2162 384 2005-07-13 12:19:32 1 2006-02-16 02:30:53
  35130. 5251 2005-07-09 13:36:10 478 474 2005-07-15 11:40:10 1 2006-02-16 02:30:53
  35131. 5252 2005-07-09 13:40:44 2581 335 2005-07-14 09:41:44 1 2006-02-16 02:30:53
  35132. 5253 2005-07-09 13:41:17 2241 532 2005-07-17 17:09:17 1 2006-02-16 02:30:53
  35133. 5254 2005-07-09 13:50:11 654 263 2005-07-13 09:07:11 1 2006-02-16 02:30:53
  35134. 5255 2005-07-09 13:51:08 4418 313 2005-07-17 13:58:08 2 2006-02-16 02:30:53
  35135. 5256 2005-07-09 13:55:45 4226 273 2005-07-15 17:02:45 1 2006-02-16 02:30:53
  35136. 5257 2005-07-09 13:56:43 286 292 2005-07-10 14:26:43 2 2006-02-16 02:30:53
  35137. 5258 2005-07-09 13:56:56 3125 207 2005-07-11 16:01:56 2 2006-02-16 02:30:53
  35138. 5259 2005-07-09 14:02:50 1310 207 2005-07-11 19:13:50 2 2006-02-16 02:30:53
  35139. 5260 2005-07-09 14:05:45 3143 75 2005-07-14 08:41:45 2 2006-02-16 02:30:53
  35140. 5261 2005-07-09 14:06:56 2899 105 2005-07-11 14:21:56 2 2006-02-16 02:30:53
  35141. 5262 2005-07-09 14:08:01 1092 240 2005-07-12 16:48:01 1 2006-02-16 02:30:53
  35142. 5263 2005-07-09 14:10:36 119 406 2005-07-12 15:07:36 1 2006-02-16 02:30:53
  35143. 5264 2005-07-09 14:11:28 3307 545 2005-07-12 18:24:28 2 2006-02-16 02:30:53
  35144. 5265 2005-07-09 14:15:01 4482 139 2005-07-18 14:43:01 2 2006-02-16 02:30:53
  35145. 5266 2005-07-09 14:17:40 2409 222 2005-07-16 10:42:40 1 2006-02-16 02:30:53
  35146. 5267 2005-07-09 14:21:10 2242 233 2005-07-15 12:02:10 1 2006-02-16 02:30:53
  35147. 5268 2005-07-09 14:22:43 1083 119 2005-07-12 08:27:43 1 2006-02-16 02:30:53
  35148. 5269 2005-07-09 14:23:05 3886 230 2005-07-17 14:03:05 1 2006-02-16 02:30:53
  35149. 5270 2005-07-09 14:23:46 1523 128 2005-07-13 15:04:46 1 2006-02-16 02:30:53
  35150. 5271 2005-07-09 14:25:01 2691 522 2005-07-16 17:28:01 1 2006-02-16 02:30:53
  35151. 5272 2005-07-09 14:26:01 1547 90 2005-07-12 20:20:01 1 2006-02-16 02:30:53
  35152. 5273 2005-07-09 14:31:24 4570 38 2005-07-14 13:27:24 2 2006-02-16 02:30:53
  35153. 5274 2005-07-09 14:34:09 4579 108 2005-07-14 13:02:09 1 2006-02-16 02:30:53
  35154. 5275 2005-07-09 14:34:18 729 249 2005-07-13 12:56:18 2 2006-02-16 02:30:53
  35155. 5276 2005-07-09 14:35:13 2524 521 2005-07-12 14:24:13 2 2006-02-16 02:30:53
  35156. 5277 2005-07-09 14:40:42 2026 332 2005-07-16 14:18:42 2 2006-02-16 02:30:53
  35157. 5278 2005-07-09 14:44:23 2573 532 2005-07-15 10:48:23 1 2006-02-16 02:30:53
  35158. 5279 2005-07-09 14:46:36 709 64 2005-07-17 10:04:36 2 2006-02-16 02:30:53
  35159. 5280 2005-07-09 14:55:07 1177 351 2005-07-12 10:05:07 2 2006-02-16 02:30:53
  35160. 5281 2005-07-09 14:55:07 1966 71 2005-07-13 15:24:07 2 2006-02-16 02:30:53
  35161. 5282 2005-07-09 15:01:23 4386 226 2005-07-13 11:06:23 2 2006-02-16 02:30:53
  35162. 5283 2005-07-09 15:07:17 644 295 2005-07-17 09:52:17 2 2006-02-16 02:30:53
  35163. 5284 2005-07-09 15:08:21 1036 585 2005-07-16 09:53:21 2 2006-02-16 02:30:53
  35164. 5285 2005-07-09 15:10:44 676 468 2005-07-16 13:02:44 2 2006-02-16 02:30:53
  35165. 5286 2005-07-09 15:11:41 483 498 2005-07-10 19:19:41 2 2006-02-16 02:30:53
  35166. 5287 2005-07-09 15:11:54 3110 523 2005-07-16 16:05:54 2 2006-02-16 02:30:53
  35167. 5288 2005-07-09 15:13:07 850 120 2005-07-16 12:39:07 1 2006-02-16 02:30:53
  35168. 5289 2005-07-09 15:14:08 4336 30 2005-07-12 12:51:08 2 2006-02-16 02:30:53
  35169. 5290 2005-07-09 15:14:47 277 50 2005-07-11 20:30:47 2 2006-02-16 02:30:53
  35170. 5291 2005-07-09 15:15:02 1367 194 2005-07-15 10:22:02 2 2006-02-16 02:30:53
  35171. 5292 2005-07-09 15:16:54 3195 62 2005-07-11 15:21:54 1 2006-02-16 02:30:53
  35172. 5293 2005-07-09 15:17:23 2880 542 2005-07-11 11:23:23 2 2006-02-16 02:30:53
  35173. 5294 2005-07-09 15:23:42 3237 22 2005-07-15 15:28:42 2 2006-02-16 02:30:53
  35174. 5295 2005-07-09 15:25:06 4460 86 2005-07-10 12:40:06 1 2006-02-16 02:30:53
  35175. 5296 2005-07-09 15:26:27 495 109 2005-07-15 10:03:27 2 2006-02-16 02:30:53
  35176. 5297 2005-07-09 15:32:29 3434 202 2005-07-14 14:58:29 1 2006-02-16 02:30:53
  35177. 5298 2005-07-09 15:36:17 3491 149 2005-07-18 19:07:17 2 2006-02-16 02:30:53
  35178. 5299 2005-07-09 15:38:09 4416 469 2005-07-15 16:39:09 2 2006-02-16 02:30:53
  35179. 5300 2005-07-09 15:40:46 2520 8 2005-07-15 13:46:46 1 2006-02-16 02:30:53
  35180. 5301 2005-07-09 15:42:10 245 459 2005-07-16 21:27:10 2 2006-02-16 02:30:53
  35181. 5302 2005-07-09 15:42:36 4270 72 2005-07-10 21:04:36 2 2006-02-16 02:30:53
  35182. 5303 2005-07-09 15:44:09 3572 350 2005-07-15 18:09:09 2 2006-02-16 02:30:53
  35183. 5304 2005-07-09 15:48:06 4411 51 2005-07-14 19:29:06 1 2006-02-16 02:30:53
  35184. 5305 2005-07-09 15:55:36 625 309 2005-07-18 15:59:36 1 2006-02-16 02:30:53
  35185. 5306 2005-07-09 15:56:45 2221 409 2005-07-15 19:02:45 2 2006-02-16 02:30:53
  35186. 5307 2005-07-09 15:57:15 2847 32 2005-07-17 13:42:15 2 2006-02-16 02:30:53
  35187. 5308 2005-07-09 15:58:38 1684 52 2005-07-15 13:55:38 2 2006-02-16 02:30:53
  35188. 5309 2005-07-09 16:00:16 4026 338 2005-07-17 17:56:16 1 2006-02-16 02:30:53
  35189. 5310 2005-07-09 16:00:34 1565 24 2005-07-12 12:45:34 2 2006-02-16 02:30:53
  35190. 5311 2005-07-09 16:02:54 986 107 2005-07-18 10:44:54 1 2006-02-16 02:30:53
  35191. 5312 2005-07-09 16:03:09 2123 258 2005-07-13 16:41:09 2 2006-02-16 02:30:53
  35192. 5313 2005-07-09 16:04:45 1885 52 2005-07-17 18:53:45 2 2006-02-16 02:30:53
  35193. 5314 2005-07-09 16:05:28 3770 372 2005-07-10 18:18:28 1 2006-02-16 02:30:53
  35194. 5315 2005-07-09 16:09:19 585 134 2005-07-14 21:10:19 1 2006-02-16 02:30:53
  35195. 5316 2005-07-09 16:09:42 3856 438 2005-07-11 15:20:42 1 2006-02-16 02:30:53
  35196. 5317 2005-07-09 16:10:25 2693 14 2005-07-18 17:10:25 2 2006-02-16 02:30:53
  35197. 5318 2005-07-09 16:11:33 1738 472 2005-07-14 12:49:33 2 2006-02-16 02:30:53
  35198. 5319 2005-07-09 16:17:44 1899 282 2005-07-18 16:35:44 1 2006-02-16 02:30:53
  35199. 5320 2005-07-09 16:23:32 3140 228 2005-07-18 18:16:32 1 2006-02-16 02:30:53
  35200. 5321 2005-07-09 16:26:33 3347 245 2005-07-15 15:05:33 2 2006-02-16 02:30:53
  35201. 5322 2005-07-09 16:28:13 4420 432 2005-07-18 14:53:13 1 2006-02-16 02:30:53
  35202. 5323 2005-07-09 16:34:07 1302 35 2005-07-13 21:37:07 1 2006-02-16 02:30:53
  35203. 5324 2005-07-09 16:34:18 4024 113 2005-07-15 12:35:18 2 2006-02-16 02:30:53
  35204. 5325 2005-07-09 16:35:47 2703 492 2005-07-10 11:52:47 1 2006-02-16 02:30:53
  35205. 5326 2005-07-09 16:38:01 797 1 2005-07-13 18:02:01 1 2006-02-16 02:30:53
  35206. 5327 2005-07-09 16:39:49 3657 547 2005-07-12 18:47:49 2 2006-02-16 02:30:53
  35207. 5328 2005-07-09 16:48:29 2444 247 2005-07-17 20:20:29 2 2006-02-16 02:30:53
  35208. 5329 2005-07-09 16:49:46 1628 402 2005-07-16 19:05:46 1 2006-02-16 02:30:53
  35209. 5330 2005-07-09 16:53:57 3812 410 2005-07-18 19:54:57 1 2006-02-16 02:30:53
  35210. 5331 2005-07-09 16:54:06 4181 447 2005-07-10 19:04:06 1 2006-02-16 02:30:53
  35211. 5332 2005-07-09 16:59:23 3269 568 2005-07-10 16:01:23 2 2006-02-16 02:30:53
  35212. 5333 2005-07-09 16:59:38 2142 419 2005-07-16 17:23:38 2 2006-02-16 02:30:53
  35213. 5334 2005-07-09 17:00:13 3852 482 2005-07-11 15:50:13 1 2006-02-16 02:30:53
  35214. 5335 2005-07-09 17:00:49 2353 588 2005-07-12 12:21:49 2 2006-02-16 02:30:53
  35215. 5336 2005-07-09 17:01:08 4144 410 2005-07-11 19:22:08 2 2006-02-16 02:30:53
  35216. 5337 2005-07-09 17:03:50 4168 343 2005-07-16 22:25:50 2 2006-02-16 02:30:53
  35217. 5338 2005-07-09 17:07:07 3449 191 2005-07-14 11:15:07 1 2006-02-16 02:30:53
  35218. 5339 2005-07-09 17:09:17 698 380 2005-07-10 21:07:17 2 2006-02-16 02:30:53
  35219. 5340 2005-07-09 17:11:35 650 267 2005-07-17 17:59:35 2 2006-02-16 02:30:53
  35220. 5341 2005-07-09 17:13:23 2522 8 2005-07-14 18:11:23 2 2006-02-16 02:30:53
  35221. 5342 2005-07-09 17:20:03 3828 289 2005-07-18 12:44:03 2 2006-02-16 02:30:53
  35222. 5343 2005-07-09 17:23:43 92 485 2005-07-18 22:14:43 1 2006-02-16 02:30:53
  35223. 5344 2005-07-09 17:27:05 159 197 2005-07-10 15:51:05 2 2006-02-16 02:30:53
  35224. 5345 2005-07-09 17:28:18 3055 348 2005-07-11 14:30:18 2 2006-02-16 02:30:53
  35225. 5346 2005-07-09 17:29:01 2488 287 2005-07-14 12:47:01 2 2006-02-16 02:30:53
  35226. 5347 2005-07-09 17:31:32 1293 246 2005-07-10 21:06:32 2 2006-02-16 02:30:53
  35227. 5348 2005-07-09 17:34:11 3495 597 2005-07-15 18:32:11 2 2006-02-16 02:30:53
  35228. 5349 2005-07-09 17:35:35 3139 161 2005-07-18 14:05:35 1 2006-02-16 02:30:53
  35229. 5350 2005-07-09 17:39:30 724 129 2005-07-11 16:43:30 2 2006-02-16 02:30:53
  35230. 5351 2005-07-09 17:40:52 3722 112 2005-07-14 16:55:52 2 2006-02-16 02:30:53
  35231. 5352 2005-07-09 17:54:58 908 372 2005-07-15 16:20:58 1 2006-02-16 02:30:53
  35232. 5353 2005-07-09 18:04:29 2994 196 2005-07-15 17:46:29 2 2006-02-16 02:30:53
  35233. 5354 2005-07-09 18:04:33 951 354 2005-07-15 18:19:33 1 2006-02-16 02:30:53
  35234. 5355 2005-07-09 18:07:17 2458 100 2005-07-16 20:33:17 2 2006-02-16 02:30:53
  35235. 5356 2005-07-09 18:08:28 2905 188 2005-07-14 14:11:28 2 2006-02-16 02:30:53
  35236. 5357 2005-07-09 18:08:59 1988 411 2005-07-16 17:28:59 2 2006-02-16 02:30:53
  35237. 5358 2005-07-09 18:09:21 3764 71 2005-07-14 23:59:21 2 2006-02-16 02:30:53
  35238. 5359 2005-07-09 18:10:52 4392 453 2005-07-18 13:34:52 2 2006-02-16 02:30:53
  35239. 5360 2005-07-09 18:14:03 679 562 2005-07-10 15:17:03 2 2006-02-16 02:30:53
  35240. 5361 2005-07-09 18:15:32 2045 279 2005-07-17 23:32:32 2 2006-02-16 02:30:53
  35241. 5362 2005-07-09 18:16:08 24 266 2005-07-18 18:27:08 1 2006-02-16 02:30:53
  35242. 5363 2005-07-09 18:18:49 2180 425 2005-07-14 22:16:49 1 2006-02-16 02:30:53
  35243. 5364 2005-07-09 18:24:48 2746 366 2005-07-10 12:30:48 1 2006-02-16 02:30:53
  35244. 5365 2005-07-09 18:27:00 4469 527 2005-07-11 14:18:00 1 2006-02-16 02:30:53
  35245. 5366 2005-07-09 18:28:37 886 187 2005-07-13 20:45:37 1 2006-02-16 02:30:53
  35246. 5367 2005-07-09 18:39:15 1446 485 2005-07-16 14:19:15 2 2006-02-16 02:30:53
  35247. 5368 2005-07-09 18:41:59 4429 502 2005-07-16 00:32:59 2 2006-02-16 02:30:53
  35248. 5369 2005-07-09 18:42:16 1550 538 2005-07-12 18:16:16 2 2006-02-16 02:30:53
  35249. 5370 2005-07-09 18:43:19 2193 248 2005-07-15 19:59:19 1 2006-02-16 02:30:53
  35250. 5371 2005-07-09 18:47:48 789 425 2005-07-14 14:39:48 2 2006-02-16 02:30:53
  35251. 5372 2005-07-09 18:48:39 3551 148 2005-07-11 17:40:39 1 2006-02-16 02:30:53
  35252. 5373 2005-07-09 18:48:57 950 428 2005-07-10 16:34:57 1 2006-02-16 02:30:53
  35253. 5374 2005-07-09 18:52:08 946 144 2005-07-16 16:34:08 1 2006-02-16 02:30:53
  35254. 5375 2005-07-09 18:52:55 1407 558 2005-07-16 15:32:55 2 2006-02-16 02:30:53
  35255. 5376 2005-07-09 18:54:08 1730 104 2005-07-17 22:01:08 1 2006-02-16 02:30:53
  35256. 5377 2005-07-09 19:04:30 3118 578 2005-07-11 14:42:30 1 2006-02-16 02:30:53
  35257. 5378 2005-07-09 19:05:56 1570 138 2005-07-10 18:03:56 2 2006-02-16 02:30:53
  35258. 5379 2005-07-09 19:08:03 2110 475 2005-07-10 17:58:03 1 2006-02-16 02:30:53
  35259. 5380 2005-07-09 19:08:44 3047 166 2005-07-11 20:09:44 1 2006-02-16 02:30:53
  35260. 5381 2005-07-09 19:11:11 3033 332 2005-07-13 17:10:11 2 2006-02-16 02:30:53
  35261. 5382 2005-07-09 19:12:57 78 586 2005-07-14 15:44:57 1 2006-02-16 02:30:53
  35262. 5383 2005-07-09 19:14:32 573 14 2005-07-11 19:57:32 1 2006-02-16 02:30:53
  35263. 5384 2005-07-09 19:17:46 1729 180 2005-07-12 13:50:46 1 2006-02-16 02:30:53
  35264. 5385 2005-07-09 19:18:11 4291 112 2005-07-16 18:50:11 2 2006-02-16 02:30:53
  35265. 5386 2005-07-09 19:19:09 721 594 2005-07-13 00:13:09 2 2006-02-16 02:30:53
  35266. 5387 2005-07-09 19:25:14 4452 244 2005-07-11 21:00:14 1 2006-02-16 02:30:53
  35267. 5388 2005-07-09 19:25:25 1546 332 2005-07-14 19:51:25 2 2006-02-16 02:30:53
  35268. 5389 2005-07-09 19:25:45 3882 484 2005-07-17 13:31:45 1 2006-02-16 02:30:53
  35269. 5390 2005-07-09 19:26:22 715 139 2005-07-14 22:46:22 1 2006-02-16 02:30:53
  35270. 5391 2005-07-09 19:28:34 402 132 2005-07-18 01:07:34 1 2006-02-16 02:30:53
  35271. 5392 2005-07-09 19:32:30 2552 499 2005-07-16 15:01:30 1 2006-02-16 02:30:53
  35272. 5393 2005-07-09 19:35:12 1417 446 2005-07-11 14:00:12 1 2006-02-16 02:30:53
  35273. 5394 2005-07-09 19:36:15 1828 83 2005-07-18 18:10:15 2 2006-02-16 02:30:53
  35274. 5395 2005-07-09 19:42:37 4428 131 2005-07-10 15:39:37 1 2006-02-16 02:30:53
  35275. 5396 2005-07-09 19:42:52 3795 559 2005-07-15 21:45:52 1 2006-02-16 02:30:53
  35276. 5397 2005-07-09 19:43:51 4376 191 2005-07-17 00:11:51 1 2006-02-16 02:30:53
  35277. 5398 2005-07-09 19:44:58 4352 199 2005-07-17 00:56:58 1 2006-02-16 02:30:53
  35278. 5399 2005-07-09 19:52:44 261 67 2005-07-10 18:31:44 2 2006-02-16 02:30:53
  35279. 5400 2005-07-09 19:56:40 3435 192 2005-07-14 20:43:40 2 2006-02-16 02:30:53
  35280. 5401 2005-07-09 19:59:10 431 43 2005-07-11 23:21:10 2 2006-02-16 02:30:53
  35281. 5402 2005-07-09 20:01:58 4450 379 2005-07-10 14:07:58 1 2006-02-16 02:30:53
  35282. 5403 2005-07-09 20:07:09 3991 36 2005-07-12 18:33:09 1 2006-02-16 02:30:53
  35283. 5404 2005-07-09 20:10:43 3685 236 2005-07-13 15:16:43 1 2006-02-16 02:30:53
  35284. 5405 2005-07-09 20:11:49 799 45 2005-07-18 18:37:49 2 2006-02-16 02:30:53
  35285. 5406 2005-07-09 20:13:23 1322 563 2005-07-11 22:05:23 2 2006-02-16 02:30:53
  35286. 5407 2005-07-09 20:16:07 3641 475 2005-07-14 21:41:07 2 2006-02-16 02:30:53
  35287. 5408 2005-07-09 20:16:51 3162 144 2005-07-18 22:19:51 1 2006-02-16 02:30:53
  35288. 5409 2005-07-09 20:17:19 3538 446 2005-07-13 23:30:19 1 2006-02-16 02:30:53
  35289. 5410 2005-07-09 20:21:10 2261 281 2005-07-18 21:43:10 2 2006-02-16 02:30:53
  35290. 5411 2005-07-09 20:23:38 4292 304 2005-07-16 01:17:38 2 2006-02-16 02:30:53
  35291. 5412 2005-07-09 20:23:52 3174 458 2005-07-18 18:40:52 1 2006-02-16 02:30:53
  35292. 5413 2005-07-09 20:28:42 2056 167 2005-07-10 19:23:42 2 2006-02-16 02:30:53
  35293. 5414 2005-07-09 20:29:36 1201 174 2005-07-13 01:55:36 2 2006-02-16 02:30:53
  35294. 5415 2005-07-09 20:30:03 4413 475 2005-07-18 00:20:03 1 2006-02-16 02:30:53
  35295. 5416 2005-07-09 20:33:50 568 219 2005-07-14 01:50:50 2 2006-02-16 02:30:53
  35296. 5417 2005-07-09 20:34:09 3569 265 2005-07-14 00:36:09 2 2006-02-16 02:30:53
  35297. 5418 2005-07-09 20:41:35 55 114 2005-07-14 00:15:35 1 2006-02-16 02:30:53
  35298. 5419 2005-07-09 20:47:36 1516 226 2005-07-12 01:36:36 1 2006-02-16 02:30:53
  35299. 5420 2005-07-09 20:48:42 1739 80 2005-07-15 21:35:42 2 2006-02-16 02:30:53
  35300. 5421 2005-07-09 20:49:12 2437 33 2005-07-10 16:30:12 1 2006-02-16 02:30:53
  35301. 5422 2005-07-09 20:55:47 436 409 2005-07-15 15:15:47 2 2006-02-16 02:30:53
  35302. 5423 2005-07-09 20:56:48 1952 440 2005-07-17 14:58:48 2 2006-02-16 02:30:53
  35303. 5424 2005-07-09 20:59:09 3694 72 2005-07-12 00:05:09 2 2006-02-16 02:30:53
  35304. 5425 2005-07-09 21:02:26 531 37 2005-07-16 23:38:26 2 2006-02-16 02:30:53
  35305. 5426 2005-07-09 21:04:47 251 438 2005-07-17 00:55:47 1 2006-02-16 02:30:53
  35306. 5427 2005-07-09 21:12:26 3197 499 2005-07-14 01:02:26 1 2006-02-16 02:30:53
  35307. 5428 2005-07-09 21:12:50 3109 346 2005-07-14 16:25:50 2 2006-02-16 02:30:53
  35308. 5429 2005-07-09 21:14:03 2467 105 2005-07-18 01:33:03 1 2006-02-16 02:30:53
  35309. 5430 2005-07-09 21:19:54 1441 173 2005-07-15 22:53:54 1 2006-02-16 02:30:53
  35310. 5431 2005-07-09 21:21:11 2780 213 2005-07-10 21:16:11 1 2006-02-16 02:30:53
  35311. 5432 2005-07-09 21:21:25 1958 64 2005-07-14 21:34:25 2 2006-02-16 02:30:53
  35312. 5433 2005-07-09 21:22:00 2679 349 2005-07-10 21:18:00 2 2006-02-16 02:30:53
  35313. 5434 2005-07-09 21:25:20 3790 334 2005-07-15 03:12:20 2 2006-02-16 02:30:53
  35314. 5435 2005-07-09 21:28:07 2884 273 2005-07-18 21:16:07 2 2006-02-16 02:30:53
  35315. 5436 2005-07-09 21:31:11 2364 89 2005-07-13 16:59:11 2 2006-02-16 02:30:53
  35316. 5437 2005-07-09 21:32:29 3532 26 2005-07-15 00:27:29 2 2006-02-16 02:30:53
  35317. 5438 2005-07-09 21:34:32 487 241 2005-07-16 02:21:32 2 2006-02-16 02:30:53
  35318. 5439 2005-07-09 21:39:35 1993 58 2005-07-13 17:45:35 2 2006-02-16 02:30:53
  35319. 5440 2005-07-09 21:45:17 138 332 2005-07-11 22:43:17 2 2006-02-16 02:30:53
  35320. 5441 2005-07-09 21:52:05 3913 7 2005-07-17 02:54:05 1 2006-02-16 02:30:53
  35321. 5442 2005-07-09 21:55:19 3093 29 2005-07-19 01:18:19 2 2006-02-16 02:30:53
  35322. 5443 2005-07-09 21:56:09 2951 137 2005-07-16 00:33:09 2 2006-02-16 02:30:53
  35323. 5444 2005-07-09 21:58:57 2968 10 2005-07-11 03:09:57 2 2006-02-16 02:30:53
  35324. 5445 2005-07-09 21:59:41 565 578 2005-07-15 00:40:41 1 2006-02-16 02:30:53
  35325. 5446 2005-07-09 21:59:55 2769 454 2005-07-11 01:45:55 2 2006-02-16 02:30:53
  35326. 5447 2005-07-09 22:09:28 2530 473 2005-07-18 20:03:28 2 2006-02-16 02:30:53
  35327. 5448 2005-07-09 22:11:14 646 463 2005-07-15 21:08:14 2 2006-02-16 02:30:53
  35328. 5449 2005-07-09 22:12:01 921 261 2005-07-18 01:18:01 2 2006-02-16 02:30:53
  35329. 5450 2005-07-09 22:13:25 2356 328 2005-07-13 23:28:25 1 2006-02-16 02:30:53
  35330. 5451 2005-07-09 22:22:10 3484 39 2005-07-11 02:43:10 1 2006-02-16 02:30:53
  35331. 5452 2005-07-09 22:23:21 2036 80 2005-07-17 00:20:21 1 2006-02-16 02:30:53
  35332. 5453 2005-07-09 22:24:11 1780 106 2005-07-19 04:08:11 1 2006-02-16 02:30:53
  35333. 5454 2005-07-09 22:24:25 3049 97 2005-07-11 01:52:25 1 2006-02-16 02:30:53
  35334. 5455 2005-07-09 22:28:45 1955 464 2005-07-18 02:50:45 2 2006-02-16 02:30:53
  35335. 5456 2005-07-09 22:31:45 3003 360 2005-07-12 03:53:45 1 2006-02-16 02:30:53
  35336. 5457 2005-07-09 22:33:14 4179 433 2005-07-12 02:30:14 1 2006-02-16 02:30:53
  35337. 5458 2005-07-09 22:35:49 2203 521 2005-07-16 22:55:49 1 2006-02-16 02:30:53
  35338. 5459 2005-07-09 22:43:56 1847 168 2005-07-12 18:05:56 1 2006-02-16 02:30:53
  35339. 5460 2005-07-09 22:46:14 2410 38 2005-07-12 21:26:14 2 2006-02-16 02:30:53
  35340. 5461 2005-07-09 22:48:04 53 244 2005-07-10 17:56:04 2 2006-02-16 02:30:53
  35341. 5462 2005-07-09 22:56:53 871 583 2005-07-11 21:50:53 2 2006-02-16 02:30:53
  35342. 5463 2005-07-09 22:57:02 601 374 2005-07-11 03:10:02 1 2006-02-16 02:30:53
  35343. 5464 2005-07-09 22:58:14 3692 434 2005-07-15 02:48:14 1 2006-02-16 02:30:53
  35344. 5465 2005-07-09 23:01:13 723 503 2005-07-13 01:03:13 1 2006-02-16 02:30:53
  35345. 5466 2005-07-09 23:03:21 2302 482 2005-07-10 20:11:21 2 2006-02-16 02:30:53
  35346. 5467 2005-07-09 23:05:47 374 543 2005-07-16 17:06:47 2 2006-02-16 02:30:53
  35347. 5468 2005-07-09 23:06:09 2196 81 2005-07-13 00:48:09 1 2006-02-16 02:30:53
  35348. 5469 2005-07-09 23:08:07 2201 475 2005-07-13 19:13:07 1 2006-02-16 02:30:53
  35349. 5470 2005-07-09 23:10:49 3254 325 2005-07-18 04:30:49 1 2006-02-16 02:30:53
  35350. 5471 2005-07-09 23:11:52 4086 347 2005-07-13 02:08:52 2 2006-02-16 02:30:53
  35351. 5472 2005-07-09 23:16:40 865 165 2005-07-10 18:43:40 2 2006-02-16 02:30:53
  35352. 5473 2005-07-09 23:19:11 4283 51 2005-07-19 02:30:11 2 2006-02-16 02:30:53
  35353. 5474 2005-07-09 23:23:57 3608 375 2005-07-15 03:11:57 1 2006-02-16 02:30:53
  35354. 5475 2005-07-09 23:31:38 726 219 2005-07-12 03:51:38 1 2006-02-16 02:30:53
  35355. 5476 2005-07-09 23:37:09 1199 427 2005-07-15 23:57:09 1 2006-02-16 02:30:53
  35356. 5477 2005-07-09 23:43:49 994 542 2005-07-15 05:03:49 2 2006-02-16 02:30:53
  35357. 5478 2005-07-09 23:45:15 3213 583 2005-07-15 22:48:15 1 2006-02-16 02:30:53
  35358. 5479 2005-07-09 23:47:33 216 250 2005-07-13 01:09:33 1 2006-02-16 02:30:53
  35359. 5480 2005-07-09 23:49:07 847 452 2005-07-12 00:15:07 1 2006-02-16 02:30:53
  35360. 5481 2005-07-09 23:51:57 562 479 2005-07-11 05:28:57 2 2006-02-16 02:30:53
  35361. 5482 2005-07-09 23:53:04 2136 460 2005-07-15 04:59:04 1 2006-02-16 02:30:53
  35362. 5483 2005-07-09 23:54:09 4362 89 2005-07-17 23:36:09 1 2006-02-16 02:30:53
  35363. 5484 2005-07-09 23:54:37 3248 495 2005-07-15 02:05:37 1 2006-02-16 02:30:53
  35364. 5485 2005-07-09 23:55:25 3930 173 2005-07-14 04:08:25 1 2006-02-16 02:30:53
  35365. 5486 2005-07-09 23:57:44 2864 538 2005-07-14 00:23:44 1 2006-02-16 02:30:53
  35366. 5487 2005-07-10 00:01:50 1144 341 2005-07-10 20:43:50 1 2006-02-16 02:30:53
  35367. 5488 2005-07-10 00:02:06 4262 173 2005-07-15 01:45:06 2 2006-02-16 02:30:53
  35368. 5489 2005-07-10 00:07:03 2319 490 2005-07-15 19:52:03 1 2006-02-16 02:30:53
  35369. 5490 2005-07-10 00:09:11 3044 367 2005-07-14 21:23:11 1 2006-02-16 02:30:53
  35370. 5491 2005-07-10 00:09:45 2007 49 2005-07-11 02:25:45 1 2006-02-16 02:30:53
  35371. 5492 2005-07-10 00:11:09 4524 558 2005-07-14 01:27:09 1 2006-02-16 02:30:53
  35372. 5493 2005-07-10 00:11:44 2037 539 2005-07-15 19:24:44 2 2006-02-16 02:30:53
  35373. 5494 2005-07-10 00:15:00 3087 139 2005-07-17 01:12:00 2 2006-02-16 02:30:53
  35374. 5495 2005-07-10 00:16:54 2199 257 2005-07-19 01:22:54 2 2006-02-16 02:30:53
  35375. 5496 2005-07-10 00:20:23 3182 369 2005-07-18 21:10:23 2 2006-02-16 02:30:53
  35376. 5497 2005-07-10 00:23:23 4473 92 2005-07-16 03:54:23 1 2006-02-16 02:30:53
  35377. 5498 2005-07-10 00:27:21 63 302 2005-07-13 20:11:21 2 2006-02-16 02:30:53
  35378. 5499 2005-07-10 00:27:45 1525 127 2005-07-17 06:11:45 1 2006-02-16 02:30:53
  35379. 5500 2005-07-10 00:28:17 3380 457 2005-07-15 19:09:17 1 2006-02-16 02:30:53
  35380. 5501 2005-07-10 00:33:48 3979 372 2005-07-17 02:58:48 1 2006-02-16 02:30:53
  35381. 5502 2005-07-10 00:34:15 3712 243 2005-07-11 21:44:15 1 2006-02-16 02:30:53
  35382. 5503 2005-07-10 00:35:37 3892 262 2005-07-12 20:29:37 1 2006-02-16 02:30:53
  35383. 5504 2005-07-10 00:36:38 3053 455 2005-07-16 19:36:38 1 2006-02-16 02:30:53
  35384. 5505 2005-07-10 00:38:48 896 253 2005-07-12 03:12:48 2 2006-02-16 02:30:53
  35385. 5506 2005-07-10 00:45:48 2432 117 2005-07-18 20:35:48 2 2006-02-16 02:30:53
  35386. 5507 2005-07-10 00:49:04 716 399 2005-07-15 22:06:04 2 2006-02-16 02:30:53
  35387. 5508 2005-07-10 00:50:01 2977 345 2005-07-16 19:07:01 1 2006-02-16 02:30:53
  35388. 5509 2005-07-10 00:54:46 1142 102 2005-07-16 05:10:46 1 2006-02-16 02:30:53
  35389. 5510 2005-07-10 00:58:37 1298 67 2005-07-17 22:02:37 2 2006-02-16 02:30:53
  35390. 5511 2005-07-10 01:00:00 3678 301 2005-07-12 20:44:00 1 2006-02-16 02:30:53
  35391. 5512 2005-07-10 01:05:38 4470 405 2005-07-17 20:47:38 1 2006-02-16 02:30:53
  35392. 5513 2005-07-10 01:05:41 2558 356 2005-07-11 02:05:41 2 2006-02-16 02:30:53
  35393. 5514 2005-07-10 01:09:42 1824 522 2005-07-17 05:47:42 1 2006-02-16 02:30:53
  35394. 5515 2005-07-10 01:12:44 3772 39 2005-07-13 00:39:44 1 2006-02-16 02:30:53
  35395. 5516 2005-07-10 01:13:52 1902 581 2005-07-15 22:56:52 1 2006-02-16 02:30:53
  35396. 5517 2005-07-10 01:15:00 3689 42 2005-07-19 01:59:00 1 2006-02-16 02:30:53
  35397. 5518 2005-07-10 01:15:11 3340 451 2005-07-18 19:28:11 2 2006-02-16 02:30:53
  35398. 5519 2005-07-10 01:18:32 1312 85 2005-07-11 20:39:32 1 2006-02-16 02:30:53
  35399. 5520 2005-07-10 01:30:41 2527 501 2005-07-15 21:37:41 2 2006-02-16 02:30:53
  35400. 5521 2005-07-10 01:31:22 1956 182 2005-07-17 05:42:22 2 2006-02-16 02:30:53
  35401. 5522 2005-07-10 01:46:29 2622 573 2005-07-18 00:41:29 2 2006-02-16 02:30:53
  35402. 5523 2005-07-10 01:47:55 2233 125 2005-07-18 22:25:55 1 2006-02-16 02:30:53
  35403. 5524 2005-07-10 01:49:24 3596 386 2005-07-14 22:55:24 1 2006-02-16 02:30:53
  35404. 5525 2005-07-10 02:03:08 3141 241 2005-07-18 07:32:08 1 2006-02-16 02:30:53
  35405. 5526 2005-07-10 02:04:03 3909 144 2005-07-16 22:15:03 2 2006-02-16 02:30:53
  35406. 5527 2005-07-10 02:06:01 4462 554 2005-07-15 00:55:01 2 2006-02-16 02:30:53
  35407. 5528 2005-07-10 02:09:21 680 551 2005-07-17 06:22:21 2 2006-02-16 02:30:53
  35408. 5529 2005-07-10 02:11:13 1652 590 2005-07-15 06:56:13 2 2006-02-16 02:30:53
  35409. 5530 2005-07-10 02:13:49 2701 74 2005-07-18 08:01:49 2 2006-02-16 02:30:53
  35410. 5531 2005-07-10 02:13:59 2992 173 2005-07-15 00:01:59 2 2006-02-16 02:30:53
  35411. 5532 2005-07-10 02:17:31 983 522 2005-07-16 02:57:31 2 2006-02-16 02:30:53
  35412. 5533 2005-07-10 02:19:28 2567 270 2005-07-11 01:37:28 1 2006-02-16 02:30:53
  35413. 5534 2005-07-10 02:26:49 3251 156 2005-07-11 07:13:49 1 2006-02-16 02:30:53
  35414. 5535 2005-07-10 02:27:42 1623 394 2005-07-12 21:13:42 1 2006-02-16 02:30:53
  35415. 5536 2005-07-10 02:29:42 1919 195 2005-07-13 04:06:42 2 2006-02-16 02:30:53
  35416. 5537 2005-07-10 02:35:41 1781 254 2005-07-13 07:11:41 2 2006-02-16 02:30:53
  35417. 5538 2005-07-10 02:39:40 2119 367 2005-07-12 01:39:40 2 2006-02-16 02:30:53
  35418. 5539 2005-07-10 02:42:58 3217 90 2005-07-16 02:27:58 2 2006-02-16 02:30:53
  35419. 5540 2005-07-10 02:44:21 132 250 2005-07-11 07:13:21 1 2006-02-16 02:30:53
  35420. 5541 2005-07-10 02:44:27 1211 135 2005-07-13 04:13:27 2 2006-02-16 02:30:53
  35421. 5542 2005-07-10 02:45:53 1713 105 2005-07-15 23:23:53 2 2006-02-16 02:30:53
  35422. 5543 2005-07-10 02:48:03 1496 71 2005-07-17 05:49:03 2 2006-02-16 02:30:53
  35423. 5544 2005-07-10 02:48:07 1014 316 2005-07-17 01:08:07 1 2006-02-16 02:30:53
  35424. 5545 2005-07-10 02:50:29 118 236 2005-07-16 02:11:29 1 2006-02-16 02:30:53
  35425. 5546 2005-07-10 02:50:37 2918 515 2005-07-16 08:22:37 1 2006-02-16 02:30:53
  35426. 5547 2005-07-10 02:52:47 1432 519 2005-07-16 02:10:47 1 2006-02-16 02:30:53
  35427. 5548 2005-07-10 02:56:45 2973 317 2005-07-13 01:33:45 2 2006-02-16 02:30:53
  35428. 5549 2005-07-10 02:58:29 2685 163 2005-07-17 05:24:29 2 2006-02-16 02:30:53
  35429. 5550 2005-07-10 02:58:35 1905 254 2005-07-16 02:38:35 2 2006-02-16 02:30:53
  35430. 5551 2005-07-10 03:01:09 4238 44 2005-07-18 02:04:09 2 2006-02-16 02:30:53
  35431. 5552 2005-07-10 03:01:19 2879 27 2005-07-13 06:53:19 2 2006-02-16 02:30:53
  35432. 5553 2005-07-10 03:03:35 1686 6 2005-07-14 07:49:35 2 2006-02-16 02:30:53
  35433. 5554 2005-07-10 03:03:38 4084 252 2005-07-17 00:00:38 2 2006-02-16 02:30:53
  35434. 5555 2005-07-10 03:08:55 2551 79 2005-07-11 01:36:55 2 2006-02-16 02:30:53
  35435. 5556 2005-07-10 03:10:17 4483 354 2005-07-14 02:47:17 1 2006-02-16 02:30:53
  35436. 5557 2005-07-10 03:10:21 1433 346 2005-07-11 21:34:21 1 2006-02-16 02:30:53
  35437. 5558 2005-07-10 03:12:08 1123 96 2005-07-14 03:09:08 2 2006-02-16 02:30:53
  35438. 5559 2005-07-10 03:13:07 4122 496 2005-07-18 08:33:07 1 2006-02-16 02:30:53
  35439. 5560 2005-07-10 03:13:24 720 231 2005-07-19 06:03:24 2 2006-02-16 02:30:53
  35440. 5561 2005-07-10 03:15:24 1048 369 2005-07-15 06:46:24 1 2006-02-16 02:30:53
  35441. 5562 2005-07-10 03:17:42 3604 300 2005-07-12 03:26:42 1 2006-02-16 02:30:53
  35442. 5563 2005-07-10 03:21:02 2258 362 2005-07-14 07:40:02 1 2006-02-16 02:30:53
  35443. 5564 2005-07-10 03:23:05 196 355 2005-07-16 07:46:05 2 2006-02-16 02:30:53
  35444. 5565 2005-07-10 03:29:48 3368 14 2005-07-17 04:43:48 1 2006-02-16 02:30:53
  35445. 5566 2005-07-10 03:30:17 1343 124 2005-07-13 06:32:17 1 2006-02-16 02:30:53
  35446. 5567 2005-07-10 03:36:46 1616 147 2005-07-15 23:22:46 2 2006-02-16 02:30:53
  35447. 5568 2005-07-10 03:36:56 1130 424 2005-07-11 08:35:56 2 2006-02-16 02:30:53
  35448. 5569 2005-07-10 03:38:32 2835 69 2005-07-16 00:02:32 2 2006-02-16 02:30:53
  35449. 5570 2005-07-10 03:46:47 2013 374 2005-07-17 09:28:47 1 2006-02-16 02:30:53
  35450. 5571 2005-07-10 03:48:20 1084 76 2005-07-11 02:09:20 2 2006-02-16 02:30:53
  35451. 5572 2005-07-10 03:49:00 2709 458 2005-07-14 01:25:00 1 2006-02-16 02:30:53
  35452. 5573 2005-07-10 03:50:47 2957 170 2005-07-17 06:40:47 2 2006-02-16 02:30:53
  35453. 5574 2005-07-10 03:54:38 2307 163 2005-07-19 07:20:38 2 2006-02-16 02:30:53
  35454. 5575 2005-07-10 03:55:50 2316 107 2005-07-12 08:40:50 1 2006-02-16 02:30:53
  35455. 5576 2005-07-10 03:57:05 1453 217 2005-07-13 02:16:05 2 2006-02-16 02:30:53
  35456. 5577 2005-07-10 03:58:40 3779 266 2005-07-14 03:36:40 1 2006-02-16 02:30:53
  35457. 5578 2005-07-10 04:00:31 4543 378 2005-07-16 08:06:31 2 2006-02-16 02:30:53
  35458. 5579 2005-07-10 04:04:29 945 203 2005-07-14 04:31:29 1 2006-02-16 02:30:53
  35459. 5580 2005-07-10 04:05:49 2753 521 2005-07-18 22:36:49 2 2006-02-16 02:30:53
  35460. 5581 2005-07-10 04:06:06 3450 306 2005-07-15 08:31:06 2 2006-02-16 02:30:53
  35461. 5582 2005-07-10 04:08:25 3341 305 2005-07-13 06:04:25 1 2006-02-16 02:30:53
  35462. 5583 2005-07-10 04:08:48 1242 391 2005-07-19 07:59:48 1 2006-02-16 02:30:53
  35463. 5584 2005-07-10 04:15:25 2606 289 2005-07-16 22:54:25 2 2006-02-16 02:30:53
  35464. 5585 2005-07-10 04:15:43 3524 63 2005-07-15 08:24:43 1 2006-02-16 02:30:53
  35465. 5586 2005-07-10 04:17:06 2965 427 2005-07-18 07:11:06 1 2006-02-16 02:30:53
  35466. 5587 2005-07-10 04:17:25 4485 531 2005-07-15 01:41:25 1 2006-02-16 02:30:53
  35467. 5588 2005-07-10 04:21:10 1166 535 2005-07-16 02:58:10 2 2006-02-16 02:30:53
  35468. 5589 2005-07-10 04:22:58 3673 296 2005-07-10 23:13:58 1 2006-02-16 02:30:53
  35469. 5590 2005-07-10 04:23:11 4442 407 2005-07-19 09:03:11 1 2006-02-16 02:30:53
  35470. 5591 2005-07-10 04:25:03 378 374 2005-07-16 04:21:03 1 2006-02-16 02:30:53
  35471. 5592 2005-07-10 04:26:13 2471 222 2005-07-19 02:32:13 2 2006-02-16 02:30:53
  35472. 5593 2005-07-10 04:33:13 702 287 2005-07-17 08:44:13 2 2006-02-16 02:30:53
  35473. 5594 2005-07-10 04:33:36 61 440 2005-07-12 08:13:36 2 2006-02-16 02:30:53
  35474. 5595 2005-07-10 04:33:45 264 572 2005-07-16 04:04:45 1 2006-02-16 02:30:53
  35475. 5596 2005-07-10 04:43:14 1662 240 2005-07-11 22:58:14 2 2006-02-16 02:30:53
  35476. 5597 2005-07-10 04:47:57 4264 576 2005-07-17 01:54:57 2 2006-02-16 02:30:53
  35477. 5598 2005-07-10 04:48:29 3412 397 2005-07-18 10:33:29 2 2006-02-16 02:30:53
  35478. 5599 2005-07-10 04:52:04 3054 391 2005-07-13 05:19:04 1 2006-02-16 02:30:53
  35479. 5600 2005-07-10 04:55:45 3713 138 2005-07-18 03:10:45 2 2006-02-16 02:30:53
  35480. 5601 2005-07-10 04:56:55 3062 511 2005-07-11 00:14:55 1 2006-02-16 02:30:53
  35481. 5602 2005-07-10 05:02:22 3544 253 2005-07-14 23:40:22 2 2006-02-16 02:30:53
  35482. 5603 2005-07-10 05:04:54 1308 74 2005-07-12 01:54:54 2 2006-02-16 02:30:53
  35483. 5604 2005-07-10 05:05:00 3702 78 2005-07-12 08:04:00 1 2006-02-16 02:30:53
  35484. 5605 2005-07-10 05:06:45 2964 273 2005-07-15 02:51:45 2 2006-02-16 02:30:53
  35485. 5606 2005-07-10 05:07:55 2896 51 2005-07-15 00:14:55 2 2006-02-16 02:30:53
  35486. 5607 2005-07-10 05:08:10 4257 52 2005-07-15 00:40:10 2 2006-02-16 02:30:53
  35487. 5608 2005-07-10 05:08:26 3854 384 2005-07-10 23:24:26 1 2006-02-16 02:30:53
  35488. 5609 2005-07-10 05:09:46 1553 492 2005-07-12 10:38:46 1 2006-02-16 02:30:53
  35489. 5610 2005-07-10 05:09:52 481 131 2005-07-13 07:08:52 2 2006-02-16 02:30:53
  35490. 5611 2005-07-10 05:13:43 2832 424 2005-07-16 05:56:43 1 2006-02-16 02:30:53
  35491. 5612 2005-07-10 05:15:12 2363 472 2005-07-17 09:50:12 2 2006-02-16 02:30:53
  35492. 5613 2005-07-10 05:15:43 4517 220 2005-07-13 05:17:43 2 2006-02-16 02:30:53
  35493. 5614 2005-07-10 05:16:56 133 371 2005-07-13 02:03:56 1 2006-02-16 02:30:53
  35494. 5615 2005-07-10 05:18:51 1521 173 2005-07-17 11:05:51 2 2006-02-16 02:30:53
  35495. 5616 2005-07-10 05:21:11 4014 238 2005-07-18 08:42:11 2 2006-02-16 02:30:53
  35496. 5617 2005-07-10 05:28:50 2324 342 2005-07-12 00:02:50 2 2006-02-16 02:30:53
  35497. 5618 2005-07-10 05:28:58 757 316 2005-07-18 01:38:58 1 2006-02-16 02:30:53
  35498. 5619 2005-07-10 05:29:33 113 204 2005-07-15 00:40:33 1 2006-02-16 02:30:53
  35499. 5620 2005-07-10 05:30:52 2980 92 2005-07-16 04:13:52 1 2006-02-16 02:30:53
  35500. 5621 2005-07-10 05:34:10 552 310 2005-07-14 02:49:10 1 2006-02-16 02:30:53
  35501. 5622 2005-07-10 05:39:37 1783 568 2005-07-15 00:48:37 2 2006-02-16 02:30:53
  35502. 5623 2005-07-10 05:41:38 4464 229 2005-07-14 01:01:38 2 2006-02-16 02:30:53
  35503. 5624 2005-07-10 05:43:16 1015 114 2005-07-12 05:33:16 1 2006-02-16 02:30:53
  35504. 5625 2005-07-10 05:44:02 1751 114 2005-07-12 00:03:02 2 2006-02-16 02:30:53
  35505. 5626 2005-07-10 05:49:35 3029 389 2005-07-15 08:05:35 1 2006-02-16 02:30:53
  35506. 5627 2005-07-10 05:51:12 244 136 2005-07-17 09:56:12 2 2006-02-16 02:30:53
  35507. 5628 2005-07-10 05:56:40 4040 87 2005-07-17 11:13:40 1 2006-02-16 02:30:53
  35508. 5629 2005-07-10 06:02:25 400 546 2005-07-16 07:33:25 1 2006-02-16 02:30:53
  35509. 5630 2005-07-10 06:08:14 1151 537 2005-07-14 03:37:14 2 2006-02-16 02:30:53
  35510. 5631 2005-07-10 06:15:45 2095 595 2005-07-17 09:53:45 2 2006-02-16 02:30:53
  35511. 5632 2005-07-10 06:17:06 2632 404 2005-07-17 02:32:06 2 2006-02-16 02:30:53
  35512. 5633 2005-07-10 06:22:24 1056 480 2005-07-11 05:59:24 2 2006-02-16 02:30:53
  35513. 5634 2005-07-10 06:25:48 323 487 2005-07-17 09:07:48 2 2006-02-16 02:30:53
  35514. 5635 2005-07-10 06:28:39 1457 222 2005-07-17 08:35:39 2 2006-02-16 02:30:53
  35515. 5636 2005-07-10 06:31:24 4116 2 2005-07-13 02:36:24 1 2006-02-16 02:30:53
  35516. 5637 2005-07-10 06:31:37 4436 45 2005-07-17 01:16:37 1 2006-02-16 02:30:53
  35517. 5638 2005-07-10 06:32:49 1528 570 2005-07-13 04:32:49 2 2006-02-16 02:30:53
  35518. 5639 2005-07-10 06:33:39 2452 249 2005-07-19 07:47:39 1 2006-02-16 02:30:53
  35519. 5640 2005-07-10 06:38:00 2706 574 2005-07-18 08:56:00 2 2006-02-16 02:30:53
  35520. 5641 2005-07-10 06:43:43 3568 50 2005-07-15 06:33:43 1 2006-02-16 02:30:53
  35521. 5642 2005-07-10 06:46:08 3630 299 2005-07-13 10:03:08 1 2006-02-16 02:30:53
  35522. 5643 2005-07-10 06:49:00 796 34 2005-07-14 01:53:00 1 2006-02-16 02:30:53
  35523. 5644 2005-07-10 06:57:44 4069 476 2005-07-15 03:52:44 2 2006-02-16 02:30:53
  35524. 5645 2005-07-10 06:58:21 1586 333 2005-07-18 04:19:21 2 2006-02-16 02:30:53
  35525. 5646 2005-07-10 07:08:09 1471 166 2005-07-14 03:48:09 2 2006-02-16 02:30:53
  35526. 5647 2005-07-10 07:08:40 1466 128 2005-07-13 05:19:40 2 2006-02-16 02:30:53
  35527. 5648 2005-07-10 07:09:21 4359 24 2005-07-16 07:23:21 2 2006-02-16 02:30:53
  35528. 5649 2005-07-10 07:15:07 1349 336 2005-07-12 11:57:07 2 2006-02-16 02:30:53
  35529. 5650 2005-07-10 07:17:01 2793 461 2005-07-15 11:59:01 1 2006-02-16 02:30:53
  35530. 5651 2005-07-10 07:17:13 301 239 2005-07-15 12:13:13 2 2006-02-16 02:30:53
  35531. 5652 2005-07-10 07:18:58 927 42 2005-07-19 07:52:58 1 2006-02-16 02:30:53
  35532. 5653 2005-07-10 07:21:27 919 28 2005-07-16 01:58:27 1 2006-02-16 02:30:53
  35533. 5654 2005-07-10 07:24:46 3419 490 2005-07-14 07:39:46 2 2006-02-16 02:30:53
  35534. 5655 2005-07-10 07:31:06 3470 113 2005-07-17 08:22:06 1 2006-02-16 02:30:53
  35535. 5656 2005-07-10 07:31:07 4138 159 2005-07-15 04:44:07 1 2006-02-16 02:30:53
  35536. 5657 2005-07-10 07:33:43 4342 508 2005-07-18 01:55:43 2 2006-02-16 02:30:53
  35537. 5658 2005-07-10 07:34:08 4402 165 2005-07-19 04:21:08 2 2006-02-16 02:30:53
  35538. 5659 2005-07-10 07:45:40 4265 9 2005-07-15 05:20:40 1 2006-02-16 02:30:53
  35539. 5660 2005-07-10 07:46:12 1404 171 2005-07-17 07:48:12 1 2006-02-16 02:30:53
  35540. 5661 2005-07-10 07:53:51 1878 108 2005-07-14 12:57:51 2 2006-02-16 02:30:53
  35541. 5662 2005-07-10 07:59:24 219 502 2005-07-14 13:06:24 1 2006-02-16 02:30:53
  35542. 5663 2005-07-10 08:01:33 3078 530 2005-07-15 03:36:33 2 2006-02-16 02:30:53
  35543. 5664 2005-07-10 08:04:41 2375 469 2005-07-17 10:29:41 1 2006-02-16 02:30:53
  35544. 5665 2005-07-10 08:10:08 1175 415 2005-07-11 05:22:08 2 2006-02-16 02:30:53
  35545. 5666 2005-07-10 08:10:29 2225 242 2005-07-17 04:54:29 2 2006-02-16 02:30:53
  35546. 5667 2005-07-10 08:11:03 683 336 2005-07-15 08:23:03 2 2006-02-16 02:30:53
  35547. 5668 2005-07-10 08:11:05 309 211 2005-07-16 13:15:05 1 2006-02-16 02:30:53
  35548. 5669 2005-07-10 08:12:53 1173 323 2005-07-11 05:48:53 2 2006-02-16 02:30:53
  35549. 5670 2005-07-10 08:14:52 610 121 2005-07-14 04:13:52 2 2006-02-16 02:30:53
  35550. 5671 2005-07-10 08:18:22 1304 268 2005-07-11 07:03:22 2 2006-02-16 02:30:53
  35551. 5672 2005-07-10 08:19:38 2326 158 2005-07-16 06:28:38 2 2006-02-16 02:30:53
  35552. 5673 2005-07-10 08:21:54 4018 117 2005-07-11 05:54:54 2 2006-02-16 02:30:53
  35553. 5674 2005-07-10 08:26:26 548 258 2005-07-16 02:43:26 1 2006-02-16 02:30:53
  35554. 5675 2005-07-10 08:31:06 2134 376 2005-07-17 11:48:06 1 2006-02-16 02:30:53
  35555. 5676 2005-07-10 08:38:32 3595 153 2005-07-13 10:11:32 1 2006-02-16 02:30:53
  35556. 5677 2005-07-10 08:41:28 2647 105 2005-07-12 09:05:28 2 2006-02-16 02:30:53
  35557. 5678 2005-07-10 08:42:42 4366 96 2005-07-19 03:48:42 1 2006-02-16 02:30:53
  35558. 5679 2005-07-10 08:44:02 389 138 2005-07-14 05:30:02 1 2006-02-16 02:30:53
  35559. 5680 2005-07-10 08:47:36 3503 199 2005-07-17 06:10:36 1 2006-02-16 02:30:53
  35560. 5681 2005-07-10 08:48:39 4176 50 2005-07-18 07:17:39 1 2006-02-16 02:30:53
  35561. 5682 2005-07-10 08:51:39 17 302 2005-07-12 14:44:39 2 2006-02-16 02:30:53
  35562. 5683 2005-07-10 08:52:13 4433 285 2005-07-19 10:25:13 1 2006-02-16 02:30:53
  35563. 5684 2005-07-10 08:59:03 99 132 2005-07-15 07:21:03 1 2006-02-16 02:30:53
  35564. 5685 2005-07-10 09:01:38 1462 170 2005-07-17 10:58:38 1 2006-02-16 02:30:53
  35565. 5686 2005-07-10 09:06:03 717 521 2005-07-11 10:59:03 2 2006-02-16 02:30:53
  35566. 5687 2005-07-10 09:07:19 2170 363 2005-07-16 11:17:19 2 2006-02-16 02:30:53
  35567. 5688 2005-07-10 09:16:08 3036 598 2005-07-15 09:44:08 1 2006-02-16 02:30:53
  35568. 5689 2005-07-10 09:24:17 1731 381 2005-07-15 05:36:17 1 2006-02-16 02:30:53
  35569. 5690 2005-07-10 09:26:49 1326 362 2005-07-19 07:17:49 2 2006-02-16 02:30:53
  35570. 5691 2005-07-10 09:29:49 3526 466 2005-07-16 13:37:49 1 2006-02-16 02:30:53
  35571. 5692 2005-07-10 09:32:22 59 244 2005-07-15 15:20:22 2 2006-02-16 02:30:53
  35572. 5693 2005-07-10 09:35:43 2167 208 2005-07-12 08:05:43 2 2006-02-16 02:30:53
  35573. 5694 2005-07-10 09:40:38 3476 57 2005-07-14 09:16:38 1 2006-02-16 02:30:53
  35574. 5695 2005-07-10 09:43:40 440 459 2005-07-13 15:04:40 2 2006-02-16 02:30:53
  35575. 5696 2005-07-10 09:44:32 128 96 2005-07-12 13:38:32 2 2006-02-16 02:30:53
  35576. 5697 2005-07-10 09:44:44 934 515 2005-07-12 12:13:44 2 2006-02-16 02:30:53
  35577. 5698 2005-07-10 09:47:00 639 46 2005-07-16 06:26:00 1 2006-02-16 02:30:53
  35578. 5699 2005-07-10 09:48:04 958 211 2005-07-17 09:07:04 1 2006-02-16 02:30:53
  35579. 5700 2005-07-10 09:49:42 3961 87 2005-07-19 04:20:42 1 2006-02-16 02:30:53
  35580. 5701 2005-07-10 09:56:24 2395 91 2005-07-16 15:11:24 2 2006-02-16 02:30:53
  35581. 5702 2005-07-10 10:00:01 3349 324 2005-07-11 15:29:01 1 2006-02-16 02:30:53
  35582. 5703 2005-07-10 10:04:15 1585 132 2005-07-16 07:43:15 1 2006-02-16 02:30:53
  35583. 5704 2005-07-10 10:06:29 2104 591 2005-07-17 10:48:29 1 2006-02-16 02:30:53
  35584. 5705 2005-07-10 10:09:17 4030 300 2005-07-19 07:24:17 2 2006-02-16 02:30:53
  35585. 5706 2005-07-10 10:21:46 3701 255 2005-07-16 04:37:46 2 2006-02-16 02:30:53
  35586. 5707 2005-07-10 10:26:14 708 581 2005-07-18 06:19:14 1 2006-02-16 02:30:53
  35587. 5708 2005-07-10 10:29:19 571 484 2005-07-18 06:50:19 1 2006-02-16 02:30:53
  35588. 5709 2005-07-10 10:31:52 732 302 2005-07-12 10:47:52 1 2006-02-16 02:30:53
  35589. 5710 2005-07-10 10:32:52 2843 265 2005-07-18 06:28:52 1 2006-02-16 02:30:53
  35590. 5711 2005-07-10 10:37:20 3988 481 2005-07-13 11:20:20 1 2006-02-16 02:30:53
  35591. 5712 2005-07-10 10:40:32 3480 304 2005-07-12 11:45:32 1 2006-02-16 02:30:53
  35592. 5713 2005-07-10 10:46:15 1213 572 2005-07-19 14:34:15 1 2006-02-16 02:30:53
  35593. 5714 2005-07-10 10:46:57 3706 17 2005-07-18 14:07:57 1 2006-02-16 02:30:53
  35594. 5715 2005-07-10 10:48:03 1638 132 2005-07-18 11:27:03 1 2006-02-16 02:30:53
  35595. 5716 2005-07-10 10:59:23 3416 102 2005-07-16 12:25:23 2 2006-02-16 02:30:53
  35596. 5717 2005-07-10 11:02:03 529 15 2005-07-13 13:00:03 1 2006-02-16 02:30:53
  35597. 5718 2005-07-10 11:03:20 3719 20 2005-07-19 15:38:20 2 2006-02-16 02:30:53
  35598. 5719 2005-07-10 11:07:40 2100 94 2005-07-15 14:14:40 2 2006-02-16 02:30:53
  35599. 5720 2005-07-10 11:09:12 576 339 2005-07-16 07:31:12 1 2006-02-16 02:30:53
  35600. 5721 2005-07-10 11:09:35 2348 5 2005-07-17 16:41:35 2 2006-02-16 02:30:53
  35601. 5722 2005-07-10 11:10:04 2890 556 2005-07-12 16:31:04 2 2006-02-16 02:30:53
  35602. 5723 2005-07-10 11:14:48 605 33 2005-07-11 15:46:48 2 2006-02-16 02:30:53
  35603. 5724 2005-07-10 11:18:12 3597 289 2005-07-16 14:53:12 2 2006-02-16 02:30:53
  35604. 5725 2005-07-10 11:21:21 4293 426 2005-07-14 05:34:21 2 2006-02-16 02:30:53
  35605. 5726 2005-07-10 11:22:08 3582 131 2005-07-13 05:55:08 1 2006-02-16 02:30:53
  35606. 5727 2005-07-10 11:25:28 3338 550 2005-07-11 11:03:28 2 2006-02-16 02:30:53
  35607. 5728 2005-07-10 11:26:14 636 335 2005-07-15 12:55:14 1 2006-02-16 02:30:53
  35608. 5729 2005-07-10 11:27:25 4137 188 2005-07-15 06:13:25 2 2006-02-16 02:30:53
  35609. 5730 2005-07-10 11:28:32 1903 301 2005-07-11 11:45:32 2 2006-02-16 02:30:53
  35610. 5731 2005-07-10 11:31:52 2960 440 2005-07-14 11:44:52 1 2006-02-16 02:30:53
  35611. 5732 2005-07-10 11:36:32 2833 597 2005-07-12 13:09:32 2 2006-02-16 02:30:53
  35612. 5733 2005-07-10 11:37:24 3806 415 2005-07-11 12:34:24 2 2006-02-16 02:30:53
  35613. 5734 2005-07-10 11:37:28 399 447 2005-07-16 11:10:28 1 2006-02-16 02:30:53
  35614. 5735 2005-07-10 11:39:15 3259 65 2005-07-19 09:52:15 1 2006-02-16 02:30:53
  35615. 5736 2005-07-10 11:45:48 1172 27 2005-07-13 16:40:48 1 2006-02-16 02:30:53
  35616. 5737 2005-07-10 11:50:04 1118 218 2005-07-13 10:37:04 1 2006-02-16 02:30:53
  35617. 5738 2005-07-10 11:50:51 200 187 2005-07-19 17:46:51 1 2006-02-16 02:30:53
  35618. 5739 2005-07-10 11:51:50 163 219 2005-07-19 17:40:50 1 2006-02-16 02:30:53
  35619. 5740 2005-07-10 11:51:58 2147 325 2005-07-12 07:53:58 2 2006-02-16 02:30:53
  35620. 5741 2005-07-10 11:55:40 2041 513 2005-07-16 15:02:40 2 2006-02-16 02:30:53
  35621. 5742 2005-07-10 11:56:18 3975 596 2005-07-19 06:59:18 2 2006-02-16 02:30:53
  35622. 5743 2005-07-10 11:57:38 593 297 2005-07-19 15:38:38 2 2006-02-16 02:30:53
  35623. 5744 2005-07-10 12:08:33 1372 437 2005-07-14 12:34:33 2 2006-02-16 02:30:53
  35624. 5745 2005-07-10 12:10:11 41 305 2005-07-19 06:56:11 1 2006-02-16 02:30:53
  35625. 5746 2005-07-10 12:15:12 3071 82 2005-07-16 07:02:12 1 2006-02-16 02:30:53
  35626. 5747 2005-07-10 12:15:33 4562 583 2005-07-18 10:11:33 1 2006-02-16 02:30:53
  35627. 5748 2005-07-10 12:19:59 1618 99 2005-07-12 12:59:59 1 2006-02-16 02:30:53
  35628. 5749 2005-07-10 12:20:36 1768 304 2005-07-19 10:39:36 1 2006-02-16 02:30:53
  35629. 5750 2005-07-10 12:20:41 3855 330 2005-07-17 08:25:41 2 2006-02-16 02:30:53
  35630. 5751 2005-07-10 12:25:11 387 479 2005-07-11 15:23:11 1 2006-02-16 02:30:53
  35631. 5752 2005-07-10 12:27:38 4444 86 2005-07-18 09:22:38 2 2006-02-16 02:30:53
  35632. 5753 2005-07-10 12:29:43 3639 444 2005-07-17 12:50:43 2 2006-02-16 02:30:53
  35633. 5754 2005-07-10 12:32:43 162 291 2005-07-12 13:11:43 2 2006-02-16 02:30:53
  35634. 5755 2005-07-10 12:38:56 2760 2 2005-07-19 17:02:56 1 2006-02-16 02:30:53
  35635. 5756 2005-07-10 12:39:28 130 183 2005-07-11 14:08:28 2 2006-02-16 02:30:53
  35636. 5757 2005-07-10 12:40:17 1827 101 2005-07-12 14:02:17 1 2006-02-16 02:30:53
  35637. 5758 2005-07-10 12:42:43 502 363 2005-07-16 10:18:43 2 2006-02-16 02:30:53
  35638. 5759 2005-07-10 12:43:22 816 591 2005-07-16 16:42:22 1 2006-02-16 02:30:53
  35639. 5760 2005-07-10 12:44:48 1050 154 2005-07-14 12:25:48 1 2006-02-16 02:30:53
  35640. 5761 2005-07-10 12:45:36 1763 287 2005-07-13 10:05:36 2 2006-02-16 02:30:53
  35641. 5762 2005-07-10 12:48:01 1815 217 2005-07-18 16:43:01 1 2006-02-16 02:30:53
  35642. 5763 2005-07-10 12:58:12 753 397 2005-07-14 08:52:12 1 2006-02-16 02:30:53
  35643. 5764 2005-07-10 12:58:16 1556 245 2005-07-19 07:28:16 1 2006-02-16 02:30:53
  35644. 5765 2005-07-10 13:03:02 2619 293 2005-07-16 09:31:02 1 2006-02-16 02:30:53
  35645. 5766 2005-07-10 13:07:31 7 406 2005-07-16 13:03:31 1 2006-02-16 02:30:53
  35646. 5767 2005-07-10 13:13:18 2871 32 2005-07-17 14:41:18 2 2006-02-16 02:30:53
  35647. 5768 2005-07-10 13:15:26 345 196 2005-07-15 09:42:26 1 2006-02-16 02:30:53
  35648. 5769 2005-07-10 13:17:58 4052 141 2005-07-11 11:32:58 1 2006-02-16 02:30:53
  35649. 5770 2005-07-10 13:21:28 914 71 2005-07-11 08:59:28 2 2006-02-16 02:30:53
  35650. 5771 2005-07-10 13:26:45 3275 153 2005-07-14 15:43:45 1 2006-02-16 02:30:53
  35651. 5772 2005-07-10 13:27:40 3635 21 2005-07-17 08:24:40 1 2006-02-16 02:30:53
  35652. 5773 2005-07-10 13:31:09 3277 180 2005-07-15 08:21:09 2 2006-02-16 02:30:53
  35653. 5774 2005-07-10 13:31:56 326 113 2005-07-18 07:32:56 1 2006-02-16 02:30:53
  35654. 5775 2005-07-10 13:34:26 2175 325 2005-07-15 10:01:26 1 2006-02-16 02:30:53
  35655. 5776 2005-07-10 13:35:22 3592 568 2005-07-12 17:58:22 1 2006-02-16 02:30:53
  35656. 5777 2005-07-10 13:38:41 3959 40 2005-07-17 15:48:41 2 2006-02-16 02:30:53
  35657. 5778 2005-07-10 13:41:37 4435 324 2005-07-14 16:26:37 1 2006-02-16 02:30:53
  35658. 5779 2005-07-10 13:45:54 3266 244 2005-07-15 18:13:54 1 2006-02-16 02:30:53
  35659. 5780 2005-07-10 13:46:23 168 516 2005-07-14 17:19:23 2 2006-02-16 02:30:53
  35660. 5781 2005-07-10 13:49:30 3191 167 2005-07-11 12:11:30 2 2006-02-16 02:30:53
  35661. 5782 2005-07-10 13:52:56 2514 440 2005-07-15 09:32:56 2 2006-02-16 02:30:53
  35662. 5783 2005-07-10 13:55:33 3331 385 2005-07-16 12:13:33 1 2006-02-16 02:30:53
  35663. 5784 2005-07-10 14:03:28 2323 422 2005-07-16 16:22:28 1 2006-02-16 02:30:53
  35664. 5785 2005-07-10 14:06:03 142 211 2005-07-17 17:59:03 2 2006-02-16 02:30:53
  35665. 5786 2005-07-10 14:06:44 2290 350 2005-07-14 19:55:44 2 2006-02-16 02:30:53
  35666. 5787 2005-07-10 14:08:49 1075 44 2005-07-19 18:29:49 1 2006-02-16 02:30:53
  35667. 5788 2005-07-10 14:10:22 1707 63 2005-07-14 19:46:22 2 2006-02-16 02:30:53
  35668. 5789 2005-07-10 14:11:26 2601 571 2005-07-18 16:19:26 1 2006-02-16 02:30:53
  35669. 5790 2005-07-10 14:15:21 1696 235 2005-07-14 08:53:21 2 2006-02-16 02:30:53
  35670. 5791 2005-07-10 14:16:22 2795 319 2005-07-19 13:38:22 2 2006-02-16 02:30:53
  35671. 5792 2005-07-10 14:22:19 4234 92 2005-07-19 09:08:19 1 2006-02-16 02:30:53
  35672. 5793 2005-07-10 14:33:00 2927 268 2005-07-13 19:27:00 1 2006-02-16 02:30:53
  35673. 5794 2005-07-10 14:34:53 1164 198 2005-07-17 11:50:53 2 2006-02-16 02:30:53
  35674. 5795 2005-07-10 14:36:29 3958 304 2005-07-14 13:26:29 1 2006-02-16 02:30:53
  35675. 5796 2005-07-10 14:42:54 1631 286 2005-07-17 08:47:54 2 2006-02-16 02:30:53
  35676. 5797 2005-07-10 14:43:52 1880 384 2005-07-13 16:12:52 2 2006-02-16 02:30:53
  35677. 5798 2005-07-10 14:45:09 331 107 2005-07-16 13:43:09 1 2006-02-16 02:30:53
  35678. 5799 2005-07-10 14:53:35 3045 520 2005-07-14 16:18:35 2 2006-02-16 02:30:53
  35679. 5800 2005-07-10 14:58:36 2466 411 2005-07-11 19:50:36 2 2006-02-16 02:30:53
  35680. 5801 2005-07-10 14:59:05 3511 439 2005-07-14 17:55:05 2 2006-02-16 02:30:53
  35681. 5802 2005-07-10 15:02:17 2295 520 2005-07-19 15:43:17 2 2006-02-16 02:30:53
  35682. 5803 2005-07-10 15:05:42 1982 244 2005-07-15 10:19:42 1 2006-02-16 02:30:53
  35683. 5804 2005-07-10 15:06:31 2168 137 2005-07-14 11:00:31 1 2006-02-16 02:30:53
  35684. 5805 2005-07-10 15:08:41 3553 532 2005-07-19 16:35:41 2 2006-02-16 02:30:53
  35685. 5806 2005-07-10 15:11:54 29 108 2005-07-15 11:51:54 2 2006-02-16 02:30:53
  35686. 5807 2005-07-10 15:16:30 2092 301 2005-07-11 14:02:30 2 2006-02-16 02:30:53
  35687. 5808 2005-07-10 15:17:33 2310 170 2005-07-14 12:14:33 2 2006-02-16 02:30:53
  35688. 5809 2005-07-10 15:19:30 1748 461 2005-07-13 12:31:30 2 2006-02-16 02:30:53
  35689. 5810 2005-07-10 15:22:04 1426 482 2005-07-18 21:05:04 2 2006-02-16 02:30:53
  35690. 5811 2005-07-10 15:27:04 4007 441 2005-07-12 17:20:04 1 2006-02-16 02:30:53
  35691. 5812 2005-07-10 15:27:56 1681 581 2005-07-18 15:37:56 2 2006-02-16 02:30:53
  35692. 5813 2005-07-10 15:34:37 942 512 2005-07-17 16:14:37 2 2006-02-16 02:30:53
  35693. 5814 2005-07-10 15:46:50 2537 71 2005-07-13 15:28:50 2 2006-02-16 02:30:53
  35694. 5815 2005-07-10 15:48:19 2934 22 2005-07-13 12:09:19 1 2006-02-16 02:30:53
  35695. 5816 2005-07-10 15:48:47 1746 382 2005-07-13 11:51:47 2 2006-02-16 02:30:53
  35696. 5817 2005-07-10 15:49:12 2993 28 2005-07-18 19:30:12 2 2006-02-16 02:30:53
  35697. 5818 2005-07-10 15:51:12 3940 334 2005-07-14 14:10:12 2 2006-02-16 02:30:53
  35698. 5819 2005-07-10 15:56:20 3439 347 2005-07-12 19:59:20 2 2006-02-16 02:30:53
  35699. 5820 2005-07-10 16:04:59 1511 485 2005-07-16 12:10:59 1 2006-02-16 02:30:53
  35700. 5821 2005-07-10 16:07:16 147 302 2005-07-14 19:48:16 1 2006-02-16 02:30:53
  35701. 5822 2005-07-10 16:10:39 1385 38 2005-07-13 19:05:39 2 2006-02-16 02:30:53
  35702. 5823 2005-07-10 16:19:52 1879 483 2005-07-11 12:33:52 2 2006-02-16 02:30:53
  35703. 5824 2005-07-10 16:19:53 1980 449 2005-07-12 11:17:53 2 2006-02-16 02:30:53
  35704. 5825 2005-07-10 16:20:30 3843 444 2005-07-11 18:58:30 1 2006-02-16 02:30:53
  35705. 5826 2005-07-10 16:21:02 4104 254 2005-07-17 21:08:02 1 2006-02-16 02:30:53
  35706. 5827 2005-07-10 16:22:20 1296 290 2005-07-15 21:13:20 2 2006-02-16 02:30:53
  35707. 5828 2005-07-10 16:27:25 2999 156 2005-07-11 18:42:25 1 2006-02-16 02:30:53
  35708. 5829 2005-07-10 16:29:41 3405 118 2005-07-14 22:03:41 1 2006-02-16 02:30:53
  35709. 5830 2005-07-10 16:34:00 2358 59 2005-07-18 16:42:00 1 2006-02-16 02:30:53
  35710. 5831 2005-07-10 16:34:02 830 43 2005-07-11 14:27:02 2 2006-02-16 02:30:53
  35711. 5832 2005-07-10 16:34:48 2387 63 2005-07-17 17:25:48 1 2006-02-16 02:30:53
  35712. 5833 2005-07-10 16:39:24 3829 187 2005-07-17 12:52:24 1 2006-02-16 02:30:53
  35713. 5834 2005-07-10 16:44:12 85 360 2005-07-14 11:34:12 2 2006-02-16 02:30:53
  35714. 5835 2005-07-10 16:44:58 800 11 2005-07-17 16:03:58 2 2006-02-16 02:30:53
  35715. 5836 2005-07-10 16:49:02 1842 310 2005-07-11 22:35:02 2 2006-02-16 02:30:53
  35716. 5837 2005-07-10 16:57:50 1648 478 2005-07-18 14:07:50 2 2006-02-16 02:30:53
  35717. 5838 2005-07-10 17:04:56 1627 202 2005-07-11 15:15:56 1 2006-02-16 02:30:53
  35718. 5839 2005-07-10 17:08:30 252 367 2005-07-13 21:21:30 2 2006-02-16 02:30:53
  35719. 5840 2005-07-10 17:09:09 1073 72 2005-07-15 22:52:09 1 2006-02-16 02:30:53
  35720. 5841 2005-07-10 17:11:31 1230 525 2005-07-18 15:50:31 2 2006-02-16 02:30:53
  35721. 5842 2005-07-10 17:11:37 139 247 2005-07-14 21:43:37 1 2006-02-16 02:30:53
  35722. 5843 2005-07-10 17:14:27 1615 599 2005-07-15 21:18:27 2 2006-02-16 02:30:53
  35723. 5844 2005-07-10 17:14:43 609 147 2005-07-12 19:27:43 1 2006-02-16 02:30:53
  35724. 5845 2005-07-10 17:23:14 2882 334 2005-07-12 16:29:14 2 2006-02-16 02:30:53
  35725. 5846 2005-07-10 17:25:24 938 233 2005-07-12 13:41:24 2 2006-02-16 02:30:53
  35726. 5847 2005-07-10 17:27:42 4403 220 2005-07-12 14:51:42 2 2006-02-16 02:30:53
  35727. 5848 2005-07-10 17:28:14 4549 409 2005-07-14 11:54:14 1 2006-02-16 02:30:53
  35728. 5849 2005-07-10 17:32:33 1632 44 2005-07-19 22:39:33 1 2006-02-16 02:30:53
  35729. 5850 2005-07-10 17:36:27 4015 531 2005-07-15 16:44:27 2 2006-02-16 02:30:53
  35730. 5851 2005-07-10 17:40:47 3944 510 2005-07-11 19:24:47 2 2006-02-16 02:30:53
  35731. 5852 2005-07-10 17:43:30 3890 484 2005-07-15 15:05:30 2 2006-02-16 02:30:53
  35732. 5853 2005-07-10 17:45:13 3026 520 2005-07-17 21:37:13 1 2006-02-16 02:30:53
  35733. 5854 2005-07-10 17:47:34 997 547 2005-07-13 20:14:34 2 2006-02-16 02:30:53
  35734. 5855 2005-07-10 17:54:06 2457 166 2005-07-18 15:41:06 2 2006-02-16 02:30:53
  35735. 5856 2005-07-10 17:57:32 497 314 2005-07-11 13:57:32 1 2006-02-16 02:30:53
  35736. 5857 2005-07-10 17:59:29 1265 29 2005-07-18 18:13:29 1 2006-02-16 02:30:53
  35737. 5858 2005-07-10 18:00:07 2913 257 2005-07-11 20:01:07 2 2006-02-16 02:30:53
  35738. 5859 2005-07-10 18:02:02 131 220 2005-07-11 23:24:02 1 2006-02-16 02:30:53
  35739. 5860 2005-07-10 18:08:49 3897 180 2005-07-16 16:43:49 2 2006-02-16 02:30:53
  35740. 5861 2005-07-10 18:14:22 3881 277 2005-07-14 15:32:22 1 2006-02-16 02:30:53
  35741. 5862 2005-07-10 18:20:48 2075 157 2005-07-17 00:09:48 1 2006-02-16 02:30:53
  35742. 5863 2005-07-10 18:25:23 2557 419 2005-07-15 23:49:23 1 2006-02-16 02:30:53
  35743. 5864 2005-07-10 18:29:57 4380 437 2005-07-19 14:27:57 2 2006-02-16 02:30:53
  35744. 5865 2005-07-10 18:31:05 1382 126 2005-07-12 18:29:05 2 2006-02-16 02:30:53
  35745. 5866 2005-07-10 18:35:14 457 484 2005-07-19 19:41:14 2 2006-02-16 02:30:53
  35746. 5867 2005-07-10 18:39:01 730 321 2005-07-19 21:56:01 2 2006-02-16 02:30:53
  35747. 5868 2005-07-10 18:39:16 452 429 2005-07-15 21:19:16 1 2006-02-16 02:30:53
  35748. 5869 2005-07-10 18:40:09 2157 40 2005-07-17 18:42:09 1 2006-02-16 02:30:53
  35749. 5870 2005-07-10 18:40:25 1524 438 2005-07-12 15:39:25 2 2006-02-16 02:30:53
  35750. 5871 2005-07-10 18:46:08 3288 307 2005-07-16 17:32:08 1 2006-02-16 02:30:53
  35751. 5872 2005-07-10 18:54:05 270 364 2005-07-19 15:41:05 1 2006-02-16 02:30:53
  35752. 5873 2005-07-10 19:02:10 3151 354 2005-07-14 19:13:10 2 2006-02-16 02:30:53
  35753. 5874 2005-07-10 19:02:51 2255 131 2005-07-16 13:14:51 1 2006-02-16 02:30:53
  35754. 5875 2005-07-10 19:06:47 964 575 2005-07-18 17:33:47 2 2006-02-16 02:30:53
  35755. 5876 2005-07-10 19:07:15 4445 578 2005-07-14 17:29:15 2 2006-02-16 02:30:53
  35756. 5877 2005-07-10 19:08:51 1520 537 2005-07-19 19:48:51 1 2006-02-16 02:30:53
  35757. 5878 2005-07-10 19:09:57 3805 271 2005-07-16 17:22:57 1 2006-02-16 02:30:53
  35758. 5879 2005-07-10 19:12:47 3851 430 2005-07-16 16:32:47 1 2006-02-16 02:30:53
  35759. 5880 2005-07-10 19:14:58 359 482 2005-07-17 01:13:58 1 2006-02-16 02:30:53
  35760. 5881 2005-07-10 19:19:43 236 25 2005-07-12 20:11:43 1 2006-02-16 02:30:53
  35761. 5882 2005-07-10 19:20:34 2830 319 2005-07-11 18:39:34 2 2006-02-16 02:30:53
  35762. 5883 2005-07-10 19:25:21 2820 17 2005-07-16 20:50:21 2 2006-02-16 02:30:53
  35763. 5884 2005-07-10 19:31:38 916 498 2005-07-11 20:30:38 1 2006-02-16 02:30:53
  35764. 5885 2005-07-10 19:33:50 3129 331 2005-07-17 00:26:50 2 2006-02-16 02:30:53
  35765. 5886 2005-07-10 19:36:25 907 215 2005-07-11 22:24:25 2 2006-02-16 02:30:53
  35766. 5887 2005-07-10 19:45:47 2602 532 2005-07-15 22:15:47 1 2006-02-16 02:30:53
  35767. 5888 2005-07-10 19:52:17 1620 268 2005-07-18 20:32:17 2 2006-02-16 02:30:53
  35768. 5889 2005-07-10 19:54:41 1706 491 2005-07-12 20:08:41 2 2006-02-16 02:30:53
  35769. 5890 2005-07-10 20:00:25 1463 535 2005-07-18 17:57:25 2 2006-02-16 02:30:53
  35770. 5891 2005-07-10 20:01:17 4355 184 2005-07-12 00:15:17 1 2006-02-16 02:30:53
  35771. 5892 2005-07-10 20:02:42 4322 333 2005-07-11 20:02:42 1 2006-02-16 02:30:53
  35772. 5893 2005-07-10 20:05:30 1689 439 2005-07-14 23:05:30 1 2006-02-16 02:30:53
  35773. 5894 2005-07-10 20:09:34 2264 194 2005-07-17 15:39:34 1 2006-02-16 02:30:53
  35774. 5895 2005-07-10 20:13:19 2272 164 2005-07-17 17:51:19 1 2006-02-16 02:30:53
  35775. 5896 2005-07-10 20:15:56 731 357 2005-07-12 00:39:56 1 2006-02-16 02:30:53
  35776. 5897 2005-07-10 20:16:14 740 413 2005-07-19 15:49:14 2 2006-02-16 02:30:53
  35777. 5898 2005-07-10 20:18:09 3257 538 2005-07-16 14:44:09 1 2006-02-16 02:30:53
  35778. 5899 2005-07-10 20:21:52 1391 388 2005-07-13 00:46:52 1 2006-02-16 02:30:53
  35779. 5900 2005-07-10 20:21:54 1081 419 2005-07-17 00:26:54 1 2006-02-16 02:30:53
  35780. 5901 2005-07-10 20:22:12 86 165 2005-07-19 16:43:12 2 2006-02-16 02:30:53
  35781. 5902 2005-07-10 20:31:24 2727 228 2005-07-11 20:50:24 1 2006-02-16 02:30:53
  35782. 5903 2005-07-10 20:39:04 1388 573 2005-07-11 17:41:04 1 2006-02-16 02:30:53
  35783. 5904 2005-07-10 20:39:44 350 531 2005-07-13 17:57:44 2 2006-02-16 02:30:53
  35784. 5905 2005-07-10 20:41:09 3891 10 2005-07-19 14:49:09 1 2006-02-16 02:30:53
  35785. 5906 2005-07-10 20:41:41 514 323 2005-07-14 00:12:41 2 2006-02-16 02:30:53
  35786. 5907 2005-07-10 20:41:41 4432 168 2005-07-15 21:18:41 2 2006-02-16 02:30:53
  35787. 5908 2005-07-10 20:44:14 810 156 2005-07-13 15:05:14 2 2006-02-16 02:30:53
  35788. 5909 2005-07-10 20:46:13 2333 44 2005-07-14 18:01:13 2 2006-02-16 02:30:53
  35789. 5910 2005-07-10 20:51:34 1039 464 2005-07-19 14:54:34 1 2006-02-16 02:30:53
  35790. 5911 2005-07-10 20:51:42 4140 420 2005-07-14 21:58:42 2 2006-02-16 02:30:53
  35791. 5912 2005-07-10 20:58:22 1187 351 2005-07-17 01:15:22 2 2006-02-16 02:30:53
  35792. 5913 2005-07-10 20:58:55 2767 277 2005-07-13 15:18:55 1 2006-02-16 02:30:53
  35793. 5914 2005-07-10 21:01:12 2639 372 2005-07-16 18:27:12 2 2006-02-16 02:30:53
  35794. 5915 2005-07-10 21:12:16 2464 66 2005-07-15 16:59:16 2 2006-02-16 02:30:53
  35795. 5916 2005-07-10 21:26:31 2267 35 2005-07-19 20:23:31 1 2006-02-16 02:30:53
  35796. 5917 2005-07-10 21:30:22 2910 74 2005-07-12 18:54:22 2 2006-02-16 02:30:53
  35797. 5918 2005-07-10 21:32:06 120 34 2005-07-19 21:35:06 1 2006-02-16 02:30:53
  35798. 5919 2005-07-10 21:32:14 164 92 2005-07-12 16:47:14 1 2006-02-16 02:30:53
  35799. 5920 2005-07-10 21:33:58 1893 221 2005-07-17 19:41:58 2 2006-02-16 02:30:53
  35800. 5921 2005-07-10 21:35:12 3920 7 2005-07-18 19:59:12 1 2006-02-16 02:30:53
  35801. 5922 2005-07-10 21:36:53 1392 271 2005-07-16 02:51:53 1 2006-02-16 02:30:53
  35802. 5923 2005-07-10 21:40:06 1817 401 2005-07-13 00:01:06 1 2006-02-16 02:30:53
  35803. 5924 2005-07-10 21:41:23 629 191 2005-07-16 21:33:23 1 2006-02-16 02:30:53
  35804. 5925 2005-07-10 21:41:27 3724 503 2005-07-18 18:35:27 2 2006-02-16 02:30:53
  35805. 5926 2005-07-10 21:53:42 2840 282 2005-07-20 01:04:42 1 2006-02-16 02:30:53
  35806. 5927 2005-07-10 21:57:14 807 70 2005-07-16 19:32:14 1 2006-02-16 02:30:53
  35807. 5928 2005-07-10 21:58:30 4132 50 2005-07-15 19:41:30 1 2006-02-16 02:30:53
  35808. 5929 2005-07-10 21:59:29 4303 54 2005-07-14 20:20:29 2 2006-02-16 02:30:53
  35809. 5930 2005-07-10 21:59:32 2338 254 2005-07-11 18:40:32 2 2006-02-16 02:30:53
  35810. 5931 2005-07-10 22:04:19 2259 341 2005-07-13 00:45:19 2 2006-02-16 02:30:53
  35811. 5932 2005-07-10 22:05:15 2269 523 2005-07-12 17:04:15 2 2006-02-16 02:30:53
  35812. 5933 2005-07-10 22:06:48 4372 419 2005-07-12 23:58:48 2 2006-02-16 02:30:53
  35813. 5934 2005-07-10 22:07:59 3825 576 2005-07-15 21:07:59 2 2006-02-16 02:30:53
  35814. 5935 2005-07-10 22:11:04 3371 258 2005-07-19 18:12:04 2 2006-02-16 02:30:53
  35815. 5936 2005-07-10 22:14:30 1951 522 2005-07-15 01:32:30 1 2006-02-16 02:30:53
  35816. 5937 2005-07-10 22:16:08 1579 580 2005-07-16 03:08:08 2 2006-02-16 02:30:53
  35817. 5938 2005-07-10 22:17:42 2834 236 2005-07-16 22:38:42 2 2006-02-16 02:30:53
  35818. 5939 2005-07-10 22:30:05 4491 207 2005-07-14 00:02:05 2 2006-02-16 02:30:53
  35819. 5940 2005-07-10 22:31:01 3295 292 2005-07-14 00:52:01 1 2006-02-16 02:30:53
  35820. 5941 2005-07-10 22:40:47 492 43 2005-07-17 00:19:47 2 2006-02-16 02:30:53
  35821. 5942 2005-07-10 22:47:17 2861 317 2005-07-17 01:54:17 2 2006-02-16 02:30:53
  35822. 5943 2005-07-10 22:48:13 3019 255 2005-07-16 01:33:13 1 2006-02-16 02:30:53
  35823. 5944 2005-07-10 22:51:44 3904 432 2005-07-18 17:54:44 2 2006-02-16 02:30:53
  35824. 5945 2005-07-10 22:52:42 427 374 2005-07-11 21:52:42 1 2006-02-16 02:30:53
  35825. 5946 2005-07-10 22:57:29 1629 308 2005-07-12 00:08:29 1 2006-02-16 02:30:53
  35826. 5947 2005-07-10 23:07:42 327 331 2005-07-18 23:13:42 1 2006-02-16 02:30:53
  35827. 5948 2005-07-10 23:12:08 3260 57 2005-07-18 19:06:08 2 2006-02-16 02:30:53
  35828. 5949 2005-07-10 23:13:00 4397 496 2005-07-14 01:10:00 2 2006-02-16 02:30:53
  35829. 5950 2005-07-10 23:13:45 4319 585 2005-07-13 02:35:45 1 2006-02-16 02:30:53
  35830. 5951 2005-07-10 23:14:29 2501 589 2005-07-13 01:01:29 1 2006-02-16 02:30:53
  35831. 5952 2005-07-10 23:18:20 3406 595 2005-07-16 17:42:20 1 2006-02-16 02:30:53
  35832. 5953 2005-07-10 23:21:35 992 386 2005-07-14 20:48:35 2 2006-02-16 02:30:53
  35833. 5954 2005-07-10 23:22:01 2627 32 2005-07-14 04:42:01 2 2006-02-16 02:30:53
  35834. 5955 2005-07-10 23:22:10 834 409 2005-07-17 17:55:10 2 2006-02-16 02:30:53
  35835. 5956 2005-07-10 23:23:08 2536 499 2005-07-13 17:36:08 1 2006-02-16 02:30:53
  35836. 5957 2005-07-10 23:24:02 2517 210 2005-07-12 20:28:02 1 2006-02-16 02:30:53
  35837. 5958 2005-07-10 23:31:51 3468 430 2005-07-19 00:36:51 2 2006-02-16 02:30:53
  35838. 5959 2005-07-10 23:35:36 3169 436 2005-07-13 02:19:36 1 2006-02-16 02:30:53
  35839. 5960 2005-07-10 23:38:34 3884 239 2005-07-11 19:21:34 1 2006-02-16 02:30:53
  35840. 5961 2005-07-10 23:43:23 3537 21 2005-07-15 05:21:23 2 2006-02-16 02:30:53
  35841. 5962 2005-07-10 23:45:22 1292 507 2005-07-13 03:49:22 2 2006-02-16 02:30:53
  35842. 5963 2005-07-10 23:47:08 4434 35 2005-07-12 04:27:08 1 2006-02-16 02:30:53
  35843. 5964 2005-07-10 23:47:18 3981 456 2005-07-12 03:55:18 2 2006-02-16 02:30:53
  35844. 5965 2005-07-10 23:51:52 4476 348 2005-07-11 23:29:52 1 2006-02-16 02:30:53
  35845. 5966 2005-07-10 23:59:27 2076 384 2005-07-14 23:38:27 2 2006-02-16 02:30:53
  35846. 5967 2005-07-11 00:02:19 2125 215 2005-07-18 23:08:19 1 2006-02-16 02:30:53
  35847. 5968 2005-07-11 00:03:11 3273 554 2005-07-19 18:46:11 1 2006-02-16 02:30:53
  35848. 5969 2005-07-11 00:03:22 4177 433 2005-07-18 01:28:22 2 2006-02-16 02:30:53
  35849. 5970 2005-07-11 00:04:50 1514 94 2005-07-19 03:36:50 1 2006-02-16 02:30:53
  35850. 5971 2005-07-11 00:05:58 2191 84 2005-07-19 04:50:58 2 2006-02-16 02:30:53
  35851. 5972 2005-07-11 00:08:54 4577 30 2005-07-17 21:01:54 1 2006-02-16 02:30:53
  35852. 5973 2005-07-11 00:09:17 1194 165 2005-07-14 19:18:17 1 2006-02-16 02:30:53
  35853. 5974 2005-07-11 00:10:37 3984 517 2005-07-18 18:48:37 2 2006-02-16 02:30:53
  35854. 5975 2005-07-11 00:14:19 2997 15 2005-07-16 04:21:19 1 2006-02-16 02:30:53
  35855. 5976 2005-07-11 00:16:35 1693 505 2005-07-20 01:30:35 2 2006-02-16 02:30:53
  35856. 5977 2005-07-11 00:16:38 4011 484 2005-07-19 21:00:38 1 2006-02-16 02:30:53
  35857. 5978 2005-07-11 00:16:54 1720 508 2005-07-19 18:55:54 1 2006-02-16 02:30:53
  35858. 5979 2005-07-11 00:17:09 1736 251 2005-07-14 00:38:09 1 2006-02-16 02:30:53
  35859. 5980 2005-07-11 00:18:21 1777 309 2005-07-14 21:26:21 1 2006-02-16 02:30:53
  35860. 5981 2005-07-11 00:19:04 2151 241 2005-07-13 19:10:04 1 2006-02-16 02:30:53
  35861. 5982 2005-07-11 00:24:44 2329 403 2005-07-14 04:42:44 2 2006-02-16 02:30:53
  35862. 5983 2005-07-11 00:34:11 351 127 2005-07-15 05:37:11 1 2006-02-16 02:30:53
  35863. 5984 2005-07-11 00:44:36 2801 178 2005-07-15 00:04:36 1 2006-02-16 02:30:53
  35864. 5985 2005-07-11 00:51:58 1108 506 2005-07-14 22:02:58 2 2006-02-16 02:30:53
  35865. 5986 2005-07-11 00:54:56 1624 171 2005-07-13 22:52:56 2 2006-02-16 02:30:53
  35866. 5987 2005-07-11 00:55:31 1000 447 2005-07-16 06:28:31 2 2006-02-16 02:30:53
  35867. 5988 2005-07-11 00:55:38 151 158 2005-07-13 21:36:38 2 2006-02-16 02:30:53
  35868. 5989 2005-07-11 00:57:53 696 283 2005-07-15 02:24:53 1 2006-02-16 02:30:53
  35869. 5990 2005-07-11 01:03:14 1561 432 2005-07-15 19:32:14 1 2006-02-16 02:30:53
  35870. 5991 2005-07-11 01:03:38 3623 590 2005-07-12 22:32:38 2 2006-02-16 02:30:53
  35871. 5992 2005-07-11 01:06:21 4216 54 2005-07-13 19:15:21 2 2006-02-16 02:30:53
  35872. 5993 2005-07-11 01:06:41 3588 529 2005-07-14 19:19:41 1 2006-02-16 02:30:53
  35873. 5994 2005-07-11 01:14:10 4287 295 2005-07-12 00:42:10 2 2006-02-16 02:30:53
  35874. 5995 2005-07-11 01:15:39 4357 360 2005-07-20 05:01:39 2 2006-02-16 02:30:53
  35875. 5996 2005-07-11 01:18:33 4263 223 2005-07-17 04:18:33 1 2006-02-16 02:30:53
  35876. 5997 2005-07-11 01:19:50 3542 128 2005-07-16 06:29:50 1 2006-02-16 02:30:53
  35877. 5998 2005-07-11 01:20:46 1458 250 2005-07-15 21:41:46 1 2006-02-16 02:30:53
  35878. 5999 2005-07-11 01:21:22 211 450 2005-07-19 01:35:22 1 2006-02-16 02:30:53
  35879. 6000 2005-07-11 01:23:06 1986 371 2005-07-12 04:39:06 2 2006-02-16 02:30:53
  35880. 6001 2005-07-11 01:24:44 1779 45 2005-07-11 22:55:44 1 2006-02-16 02:30:53
  35881. 6002 2005-07-11 01:27:49 4422 45 2005-07-12 06:02:49 1 2006-02-16 02:30:53
  35882. 6003 2005-07-11 01:28:33 296 527 2005-07-17 21:24:33 1 2006-02-16 02:30:53
  35883. 6004 2005-07-11 01:34:25 1756 204 2005-07-18 00:48:25 2 2006-02-16 02:30:53
  35884. 6005 2005-07-11 01:36:42 809 78 2005-07-14 04:47:42 2 2006-02-16 02:30:53
  35885. 6006 2005-07-11 01:38:42 4201 399 2005-07-17 05:18:42 2 2006-02-16 02:30:53
  35886. 6007 2005-07-11 01:43:06 4393 289 2005-07-17 04:46:06 1 2006-02-16 02:30:53
  35887. 6008 2005-07-11 01:51:29 1227 216 2005-07-18 01:39:29 1 2006-02-16 02:30:53
  35888. 6009 2005-07-11 01:51:58 494 470 2005-07-18 07:12:58 2 2006-02-16 02:30:53
  35889. 6010 2005-07-11 01:52:28 771 285 2005-07-13 03:13:28 1 2006-02-16 02:30:53
  35890. 6011 2005-07-11 01:54:48 3899 527 2005-07-18 07:17:48 2 2006-02-16 02:30:53
  35891. 6012 2005-07-11 02:00:12 2609 258 2005-07-17 02:49:12 2 2006-02-16 02:30:53
  35892. 6013 2005-07-11 02:02:03 3774 543 2005-07-14 02:07:03 1 2006-02-16 02:30:53
  35893. 6014 2005-07-11 02:02:55 3748 397 2005-07-12 23:49:55 1 2006-02-16 02:30:53
  35894. 6015 2005-07-11 02:04:12 295 596 2005-07-13 02:43:12 2 2006-02-16 02:30:53
  35895. 6016 2005-07-11 02:04:45 651 296 2005-07-17 22:22:45 1 2006-02-16 02:30:53
  35896. 6017 2005-07-11 02:05:32 4088 596 2005-07-14 22:50:32 1 2006-02-16 02:30:53
  35897. 6018 2005-07-11 02:06:36 4555 500 2005-07-12 02:16:36 2 2006-02-16 02:30:53
  35898. 6019 2005-07-11 02:08:29 3483 9 2005-07-13 02:19:29 2 2006-02-16 02:30:53
  35899. 6020 2005-07-11 02:08:55 1974 71 2005-07-16 22:07:55 1 2006-02-16 02:30:53
  35900. 6021 2005-07-11 02:10:18 3949 173 2005-07-13 05:19:18 1 2006-02-16 02:30:53
  35901. 6022 2005-07-11 02:15:53 2435 469 2005-07-13 03:40:53 2 2006-02-16 02:30:53
  35902. 6023 2005-07-11 02:15:57 3794 456 2005-07-15 21:30:57 2 2006-02-16 02:30:53
  35903. 6024 2005-07-11 02:16:47 2923 271 2005-07-12 05:54:47 1 2006-02-16 02:30:53
  35904. 6025 2005-07-11 02:18:13 3306 113 2005-07-11 23:30:13 1 2006-02-16 02:30:53
  35905. 6026 2005-07-11 02:21:43 3936 409 2005-07-13 03:49:43 1 2006-02-16 02:30:53
  35906. 6027 2005-07-11 02:26:29 4536 513 2005-07-18 23:05:29 1 2006-02-16 02:30:53
  35907. 6028 2005-07-11 02:31:44 784 450 2005-07-14 03:18:44 1 2006-02-16 02:30:53
  35908. 6029 2005-07-11 02:36:46 2030 520 2005-07-14 20:51:46 2 2006-02-16 02:30:53
  35909. 6030 2005-07-11 02:37:51 95 36 2005-07-16 22:34:51 2 2006-02-16 02:30:53
  35910. 6031 2005-07-11 02:42:14 1530 224 2005-07-14 03:24:14 2 2006-02-16 02:30:53
  35911. 6032 2005-07-11 02:49:01 3792 28 2005-07-18 05:05:01 2 2006-02-16 02:30:53
  35912. 6033 2005-07-11 02:59:34 2819 322 2005-07-16 03:48:34 2 2006-02-16 02:30:53
  35913. 6034 2005-07-11 03:00:50 1735 324 2005-07-16 06:19:50 1 2006-02-16 02:30:53
  35914. 6035 2005-07-11 03:01:45 3474 176 2005-07-14 01:04:45 2 2006-02-16 02:30:53
  35915. 6036 2005-07-11 03:02:28 2553 297 2005-07-15 22:12:28 2 2006-02-16 02:30:53
  35916. 6037 2005-07-11 03:06:54 1886 386 2005-07-12 22:46:54 2 2006-02-16 02:30:53
  35917. 6038 2005-07-11 03:10:37 1555 243 2005-07-19 05:14:37 2 2006-02-16 02:30:53
  35918. 6039 2005-07-11 03:12:19 1776 137 2005-07-19 05:46:19 1 2006-02-16 02:30:53
  35919. 6040 2005-07-11 03:14:26 2161 511 2005-07-14 01:12:26 2 2006-02-16 02:30:53
  35920. 6041 2005-07-11 03:14:58 2815 551 2005-07-13 00:48:58 2 2006-02-16 02:30:53
  35921. 6042 2005-07-11 03:17:04 2153 5 2005-07-19 07:08:04 1 2006-02-16 02:30:53
  35922. 6043 2005-07-11 03:18:10 3303 430 2005-07-12 05:50:10 1 2006-02-16 02:30:53
  35923. 6044 2005-07-11 03:18:39 1270 481 2005-07-13 06:58:39 2 2006-02-16 02:30:53
  35924. 6045 2005-07-11 03:21:05 2003 39 2005-07-17 23:10:05 1 2006-02-16 02:30:53
  35925. 6046 2005-07-11 03:21:49 1935 569 2005-07-19 23:58:49 1 2006-02-16 02:30:53
  35926. 6047 2005-07-11 03:27:01 4147 235 2005-07-16 06:42:01 2 2006-02-16 02:30:53
  35927. 6048 2005-07-11 03:32:23 975 154 2005-07-14 07:39:23 1 2006-02-16 02:30:53
  35928. 6049 2005-07-11 03:32:32 2582 236 2005-07-15 06:57:32 2 2006-02-16 02:30:53
  35929. 6050 2005-07-11 03:34:29 825 527 2005-07-15 02:55:29 1 2006-02-16 02:30:53
  35930. 6051 2005-07-11 03:46:41 2675 435 2005-07-11 22:36:41 2 2006-02-16 02:30:53
  35931. 6052 2005-07-11 03:51:27 881 75 2005-07-16 02:55:27 2 2006-02-16 02:30:53
  35932. 6053 2005-07-11 03:51:59 2836 237 2005-07-19 09:13:59 2 2006-02-16 02:30:53
  35933. 6054 2005-07-11 03:58:39 1176 354 2005-07-13 23:08:39 1 2006-02-16 02:30:53
  35934. 6055 2005-07-11 03:59:08 595 125 2005-07-18 05:35:08 2 2006-02-16 02:30:53
  35935. 6056 2005-07-11 04:01:27 3069 145 2005-07-12 04:14:27 1 2006-02-16 02:30:53
  35936. 6057 2005-07-11 04:03:40 1340 187 2005-07-17 01:34:40 2 2006-02-16 02:30:53
  35937. 6058 2005-07-11 04:03:51 3761 498 2005-07-14 03:52:51 1 2006-02-16 02:30:53
  35938. 6059 2005-07-11 04:03:54 1437 394 2005-07-18 01:35:54 1 2006-02-16 02:30:53
  35939. 6060 2005-07-11 04:06:17 3146 342 2005-07-12 03:05:17 1 2006-02-16 02:30:53
  35940. 6061 2005-07-11 04:06:25 1859 392 2005-07-11 23:11:25 1 2006-02-16 02:30:53
  35941. 6062 2005-07-11 04:11:58 3301 408 2005-07-15 05:00:58 1 2006-02-16 02:30:53
  35942. 6063 2005-07-11 04:16:51 1715 519 2005-07-13 08:35:51 2 2006-02-16 02:30:53
  35943. 6064 2005-07-11 04:23:18 265 297 2005-07-19 02:21:18 1 2006-02-16 02:30:53
  35944. 6065 2005-07-11 04:25:51 1007 562 2005-07-17 08:19:51 1 2006-02-16 02:30:53
  35945. 6066 2005-07-11 04:32:42 1877 155 2005-07-15 03:56:42 2 2006-02-16 02:30:53
  35946. 6067 2005-07-11 04:34:49 2097 186 2005-07-16 09:33:49 1 2006-02-16 02:30:53
  35947. 6068 2005-07-11 04:41:09 2331 265 2005-07-14 04:45:09 1 2006-02-16 02:30:53
  35948. 6069 2005-07-11 04:44:59 256 553 2005-07-13 01:00:59 1 2006-02-16 02:30:53
  35949. 6070 2005-07-11 04:47:42 1679 267 2005-07-13 01:49:42 2 2006-02-16 02:30:53
  35950. 6071 2005-07-11 04:50:03 889 179 2005-07-19 23:52:03 1 2006-02-16 02:30:53
  35951. 6072 2005-07-11 04:52:40 1790 339 2005-07-18 01:02:40 1 2006-02-16 02:30:53
  35952. 6073 2005-07-11 04:54:31 4243 466 2005-07-20 07:23:31 1 2006-02-16 02:30:53
  35953. 6074 2005-07-11 04:59:56 2876 259 2005-07-13 23:31:56 1 2006-02-16 02:30:53
  35954. 6075 2005-07-11 05:03:03 2160 283 2005-07-12 01:28:03 1 2006-02-16 02:30:53
  35955. 6076 2005-07-11 05:05:30 1792 143 2005-07-18 04:22:30 1 2006-02-16 02:30:53
  35956. 6077 2005-07-11 05:06:08 2154 542 2005-07-16 10:29:08 1 2006-02-16 02:30:53
  35957. 6078 2005-07-11 05:06:52 3985 91 2005-07-17 06:13:52 2 2006-02-16 02:30:53
  35958. 6079 2005-07-11 05:07:14 1494 119 2005-07-17 08:45:14 1 2006-02-16 02:30:53
  35959. 6080 2005-07-11 05:08:11 2682 115 2005-07-16 09:54:11 2 2006-02-16 02:30:53
  35960. 6081 2005-07-11 05:11:09 2286 72 2005-07-13 05:33:09 2 2006-02-16 02:30:53
  35961. 6082 2005-07-11 05:12:41 1091 82 2005-07-16 03:40:41 2 2006-02-16 02:30:53
  35962. 6083 2005-07-11 05:12:49 3183 285 2005-07-15 00:46:49 2 2006-02-16 02:30:53
  35963. 6084 2005-07-11 05:16:20 1334 479 2005-07-19 01:38:20 2 2006-02-16 02:30:53
  35964. 6085 2005-07-11 05:24:36 312 155 2005-07-16 03:49:36 2 2006-02-16 02:30:53
  35965. 6086 2005-07-11 05:29:03 1505 420 2005-07-16 01:17:03 1 2006-02-16 02:30:53
  35966. 6087 2005-07-11 05:29:22 198 155 2005-07-12 23:33:22 2 2006-02-16 02:30:53
  35967. 6088 2005-07-11 05:40:35 3796 498 2005-07-17 07:14:35 2 2006-02-16 02:30:53
  35968. 6089 2005-07-11 05:45:59 3298 580 2005-07-17 11:04:59 2 2006-02-16 02:30:53
  35969. 6090 2005-07-11 05:47:08 71 241 2005-07-20 07:52:08 2 2006-02-16 02:30:53
  35970. 6091 2005-07-11 05:49:18 580 383 2005-07-15 07:26:18 1 2006-02-16 02:30:53
  35971. 6092 2005-07-11 05:51:31 2129 75 2005-07-17 03:42:31 1 2006-02-16 02:30:53
  35972. 6093 2005-07-11 05:52:50 1868 117 2005-07-20 11:45:50 1 2006-02-16 02:30:53
  35973. 6094 2005-07-11 05:54:42 2684 285 2005-07-18 08:19:42 2 2006-02-16 02:30:53
  35974. 6095 2005-07-11 06:06:41 727 501 2005-07-19 06:14:41 1 2006-02-16 02:30:53
  35975. 6096 2005-07-11 06:18:04 2720 420 2005-07-14 01:15:04 1 2006-02-16 02:30:53
  35976. 6097 2005-07-11 06:21:43 297 416 2005-07-16 10:04:43 1 2006-02-16 02:30:53
  35977. 6098 2005-07-11 06:23:28 3016 525 2005-07-17 04:05:28 1 2006-02-16 02:30:53
  35978. 6099 2005-07-11 06:24:44 3865 469 2005-07-15 08:03:44 2 2006-02-16 02:30:53
  35979. 6100 2005-07-11 06:40:31 3485 16 2005-07-14 10:59:31 2 2006-02-16 02:30:53
  35980. 6101 2005-07-11 06:50:33 2618 508 2005-07-18 01:52:33 2 2006-02-16 02:30:53
  35981. 6102 2005-07-11 06:53:09 4305 146 2005-07-17 07:05:09 1 2006-02-16 02:30:53
  35982. 6103 2005-07-11 06:59:55 262 540 2005-07-16 09:30:55 1 2006-02-16 02:30:53
  35983. 6104 2005-07-11 07:01:35 3531 389 2005-07-17 02:29:35 1 2006-02-16 02:30:53
  35984. 6105 2005-07-11 07:03:19 3501 595 2005-07-19 06:46:19 1 2006-02-16 02:30:53
  35985. 6106 2005-07-11 07:05:06 2714 185 2005-07-20 09:27:06 1 2006-02-16 02:30:53
  35986. 6107 2005-07-11 07:07:09 3798 304 2005-07-14 07:32:09 2 2006-02-16 02:30:53
  35987. 6108 2005-07-11 07:19:24 4296 572 2005-07-13 12:38:24 2 2006-02-16 02:30:53
  35988. 6109 2005-07-11 07:20:57 3603 163 2005-07-13 07:29:57 2 2006-02-16 02:30:53
  35989. 6110 2005-07-11 07:23:47 541 405 2005-07-20 03:17:47 2 2006-02-16 02:30:53
  35990. 6111 2005-07-11 07:26:57 3504 300 2005-07-13 10:43:57 2 2006-02-16 02:30:53
  35991. 6112 2005-07-11 07:28:05 1311 366 2005-07-18 07:29:05 1 2006-02-16 02:30:53
  35992. 6113 2005-07-11 07:31:08 4437 115 2005-07-20 11:01:08 2 2006-02-16 02:30:53
  35993. 6114 2005-07-11 07:33:48 479 404 2005-07-18 06:13:48 2 2006-02-16 02:30:53
  35994. 6115 2005-07-11 07:36:50 3415 27 2005-07-13 11:30:50 1 2006-02-16 02:30:53
  35995. 6116 2005-07-11 07:37:38 247 381 2005-07-14 11:53:38 2 2006-02-16 02:30:53
  35996. 6117 2005-07-11 07:39:38 2613 135 2005-07-18 12:07:38 2 2006-02-16 02:30:53
  35997. 6118 2005-07-11 07:43:08 3013 13 2005-07-20 03:17:08 1 2006-02-16 02:30:53
  35998. 6119 2005-07-11 07:44:46 4281 472 2005-07-20 04:41:46 2 2006-02-16 02:30:53
  35999. 6120 2005-07-11 07:49:53 3299 268 2005-07-19 04:56:53 2 2006-02-16 02:30:53
  36000. 6121 2005-07-11 07:55:27 1613 347 2005-07-16 03:43:27 2 2006-02-16 02:30:53
  36001. 6122 2005-07-11 07:58:07 2212 32 2005-07-16 09:52:07 1 2006-02-16 02:30:53
  36002. 6123 2005-07-11 08:02:27 1354 200 2005-07-15 08:58:27 2 2006-02-16 02:30:53
  36003. 6124 2005-07-11 08:02:32 2022 368 2005-07-12 05:58:32 2 2006-02-16 02:30:53
  36004. 6125 2005-07-11 08:03:35 2439 307 2005-07-18 12:46:35 1 2006-02-16 02:30:53
  36005. 6126 2005-07-11 08:06:56 1069 230 2005-07-16 11:42:56 1 2006-02-16 02:30:53
  36006. 6127 2005-07-11 08:06:59 285 355 2005-07-12 09:01:59 1 2006-02-16 02:30:53
  36007. 6128 2005-07-11 08:15:08 2050 18 2005-07-13 03:36:08 1 2006-02-16 02:30:53
  36008. 6129 2005-07-11 08:15:09 3875 222 2005-07-18 13:00:09 1 2006-02-16 02:30:53
  36009. 6130 2005-07-11 08:19:56 2547 538 2005-07-16 12:02:56 2 2006-02-16 02:30:53
  36010. 6131 2005-07-11 08:22:05 3313 107 2005-07-14 07:40:05 1 2006-02-16 02:30:53
  36011. 6132 2005-07-11 08:24:44 3229 319 2005-07-13 06:41:44 1 2006-02-16 02:30:53
  36012. 6133 2005-07-11 08:25:22 1992 107 2005-07-13 13:17:22 1 2006-02-16 02:30:53
  36013. 6134 2005-07-11 08:28:19 3225 305 2005-07-18 09:20:19 2 2006-02-16 02:30:53
  36014. 6135 2005-07-11 08:32:23 833 325 2005-07-17 08:43:23 1 2006-02-16 02:30:53
  36015. 6136 2005-07-11 08:34:09 205 346 2005-07-14 06:11:09 1 2006-02-16 02:30:53
  36016. 6137 2005-07-11 08:34:20 2029 67 2005-07-13 03:31:20 2 2006-02-16 02:30:53
  36017. 6138 2005-07-11 08:36:04 1808 438 2005-07-13 10:30:04 2 2006-02-16 02:30:53
  36018. 6139 2005-07-11 08:39:33 3065 206 2005-07-17 08:00:33 2 2006-02-16 02:30:53
  36019. 6140 2005-07-11 08:40:47 2749 363 2005-07-14 07:26:47 1 2006-02-16 02:30:53
  36020. 6141 2005-07-11 08:52:16 2279 228 2005-07-17 03:00:16 1 2006-02-16 02:30:53
  36021. 6142 2005-07-11 08:54:09 1722 136 2005-07-18 05:23:09 2 2006-02-16 02:30:53
  36022. 6143 2005-07-11 09:02:37 1030 169 2005-07-19 05:57:37 2 2006-02-16 02:30:53
  36023. 6144 2005-07-11 09:02:53 1077 554 2005-07-15 10:58:53 2 2006-02-16 02:30:53
  36024. 6145 2005-07-11 09:07:01 1359 540 2005-07-19 08:21:01 1 2006-02-16 02:30:53
  36025. 6146 2005-07-11 09:09:59 3374 11 2005-07-20 11:42:59 2 2006-02-16 02:30:53
  36026. 6147 2005-07-11 09:13:08 910 35 2005-07-17 03:48:08 1 2006-02-16 02:30:53
  36027. 6148 2005-07-11 09:14:22 4318 410 2005-07-12 08:01:22 1 2006-02-16 02:30:53
  36028. 6149 2005-07-11 09:19:31 4337 26 2005-07-17 14:45:31 2 2006-02-16 02:30:53
  36029. 6150 2005-07-11 09:23:56 1110 418 2005-07-15 10:56:56 2 2006-02-16 02:30:53
  36030. 6151 2005-07-11 09:25:17 352 476 2005-07-12 05:11:17 1 2006-02-16 02:30:53
  36031. 6152 2005-07-11 09:25:52 560 361 2005-07-17 07:40:52 2 2006-02-16 02:30:53
  36032. 6153 2005-07-11 09:31:04 105 47 2005-07-19 03:41:04 1 2006-02-16 02:30:53
  36033. 6154 2005-07-11 09:32:19 2717 368 2005-07-16 15:10:19 1 2006-02-16 02:30:53
  36034. 6155 2005-07-11 09:45:31 785 229 2005-07-18 08:09:31 1 2006-02-16 02:30:53
  36035. 6156 2005-07-11 09:45:48 302 297 2005-07-15 04:51:48 1 2006-02-16 02:30:53
  36036. 6157 2005-07-11 09:48:16 4481 133 2005-07-16 05:00:16 2 2006-02-16 02:30:53
  36037. 6158 2005-07-11 09:50:24 3954 92 2005-07-13 04:49:24 2 2006-02-16 02:30:53
  36038. 6159 2005-07-11 09:55:34 126 225 2005-07-13 10:01:34 2 2006-02-16 02:30:53
  36039. 6160 2005-07-11 10:08:13 2716 110 2005-07-14 08:18:13 1 2006-02-16 02:30:53
  36040. 6161 2005-07-11 10:11:54 3681 524 2005-07-15 12:12:54 2 2006-02-16 02:30:53
  36041. 6162 2005-07-11 10:12:30 786 79 2005-07-19 06:02:30 2 2006-02-16 02:30:53
  36042. 6163 2005-07-11 10:13:46 1330 1 2005-07-19 13:15:46 2 2006-02-16 02:30:53
  36043. 6164 2005-07-11 10:16:23 2755 47 2005-07-14 11:21:23 1 2006-02-16 02:30:53
  36044. 6165 2005-07-11 10:17:29 3540 9 2005-07-17 07:27:29 1 2006-02-16 02:30:53
  36045. 6166 2005-07-11 10:19:05 967 503 2005-07-12 14:30:05 1 2006-02-16 02:30:53
  36046. 6167 2005-07-11 10:21:21 3255 200 2005-07-14 15:38:21 1 2006-02-16 02:30:53
  36047. 6168 2005-07-11 10:21:38 284 77 2005-07-14 09:55:38 2 2006-02-16 02:30:53
  36048. 6169 2005-07-11 10:25:56 2781 148 2005-07-19 07:18:56 2 2006-02-16 02:30:53
  36049. 6170 2005-07-11 10:29:21 278 580 2005-07-16 05:13:21 2 2006-02-16 02:30:53
  36050. 6171 2005-07-11 10:29:35 448 491 2005-07-16 12:01:35 1 2006-02-16 02:30:53
  36051. 6172 2005-07-11 10:32:09 3514 219 2005-07-14 16:23:09 1 2006-02-16 02:30:53
  36052. 6173 2005-07-11 10:33:11 4252 419 2005-07-15 10:57:11 1 2006-02-16 02:30:53
  36053. 6174 2005-07-11 10:36:28 3123 7 2005-07-18 16:19:28 2 2006-02-16 02:30:53
  36054. 6175 2005-07-11 10:44:37 3037 195 2005-07-15 08:13:37 1 2006-02-16 02:30:53
  36055. 6176 2005-07-11 10:48:21 2969 279 2005-07-12 15:54:21 2 2006-02-16 02:30:53
  36056. 6177 2005-07-11 10:53:49 313 589 2005-07-17 14:54:49 1 2006-02-16 02:30:53
  36057. 6178 2005-07-11 10:59:09 2777 91 2005-07-16 11:19:09 2 2006-02-16 02:30:53
  36058. 6179 2005-07-11 10:59:59 3665 42 2005-07-17 06:02:59 1 2006-02-16 02:30:53
  36059. 6180 2005-07-11 11:06:50 4401 351 2005-07-19 09:03:50 2 2006-02-16 02:30:53
  36060. 6181 2005-07-11 11:10:11 4398 200 2005-07-15 09:33:11 1 2006-02-16 02:30:53
  36061. 6182 2005-07-11 11:11:38 2562 540 2005-07-17 08:33:38 2 2006-02-16 02:30:53
  36062. 6183 2005-07-11 11:14:35 856 402 2005-07-16 15:35:35 1 2006-02-16 02:30:53
  36063. 6184 2005-07-11 11:19:21 1131 146 2005-07-19 07:35:21 1 2006-02-16 02:30:53
  36064. 6185 2005-07-11 11:25:09 4331 294 2005-07-18 12:09:09 2 2006-02-16 02:30:53
  36065. 6186 2005-07-11 11:26:41 2086 128 2005-07-17 12:02:41 2 2006-02-16 02:30:53
  36066. 6187 2005-07-11 11:28:51 3344 500 2005-07-12 15:44:51 1 2006-02-16 02:30:53
  36067. 6188 2005-07-11 11:31:47 189 114 2005-07-15 09:28:47 1 2006-02-16 02:30:53
  36068. 6189 2005-07-11 11:36:03 3800 552 2005-07-20 15:33:03 2 2006-02-16 02:30:53
  36069. 6190 2005-07-11 11:36:18 2564 321 2005-07-19 17:05:18 2 2006-02-16 02:30:53
  36070. 6191 2005-07-11 11:37:52 3448 480 2005-07-17 12:45:52 1 2006-02-16 02:30:53
  36071. 6192 2005-07-11 11:44:41 4573 314 2005-07-19 10:12:41 1 2006-02-16 02:30:53
  36072. 6193 2005-07-11 11:46:57 465 189 2005-07-19 14:11:57 2 2006-02-16 02:30:53
  36073. 6194 2005-07-11 11:51:00 1049 83 2005-07-15 12:34:00 2 2006-02-16 02:30:53
  36074. 6195 2005-07-11 12:00:32 4193 319 2005-07-16 15:00:32 2 2006-02-16 02:30:53
  36075. 6196 2005-07-11 12:05:46 995 429 2005-07-18 08:27:46 2 2006-02-16 02:30:53
  36076. 6197 2005-07-11 12:09:51 4156 596 2005-07-12 06:15:51 1 2006-02-16 02:30:53
  36077. 6198 2005-07-11 12:12:17 3345 470 2005-07-18 07:40:17 2 2006-02-16 02:30:53
  36078. 6199 2005-07-11 12:16:03 4329 80 2005-07-18 15:33:03 2 2006-02-16 02:30:53
  36079. 6200 2005-07-11 12:16:42 3258 137 2005-07-17 09:27:42 2 2006-02-16 02:30:53
  36080. 6201 2005-07-11 12:18:07 4530 559 2005-07-12 12:11:07 2 2006-02-16 02:30:53
  36081. 6202 2005-07-11 12:24:25 1424 373 2005-07-18 08:13:25 1 2006-02-16 02:30:53
  36082. 6203 2005-07-11 12:28:57 1001 408 2005-07-15 14:10:57 1 2006-02-16 02:30:53
  36083. 6204 2005-07-11 12:29:22 2572 362 2005-07-13 10:41:22 2 2006-02-16 02:30:53
  36084. 6205 2005-07-11 12:31:24 3442 303 2005-07-13 11:31:24 2 2006-02-16 02:30:53
  36085. 6206 2005-07-11 12:32:14 1368 459 2005-07-15 15:01:14 2 2006-02-16 02:30:53
  36086. 6207 2005-07-11 12:34:24 3226 143 2005-07-14 10:15:24 2 2006-02-16 02:30:53
  36087. 6208 2005-07-11 12:34:56 672 31 2005-07-19 15:17:56 1 2006-02-16 02:30:53
  36088. 6209 2005-07-11 12:36:05 3091 219 2005-07-17 14:48:05 2 2006-02-16 02:30:53
  36089. 6210 2005-07-11 12:36:43 931 209 2005-07-17 17:45:43 2 2006-02-16 02:30:53
  36090. 6211 2005-07-11 12:39:01 2699 6 2005-07-20 15:59:01 2 2006-02-16 02:30:53
  36091. 6212 2005-07-11 12:40:48 3962 337 2005-07-15 17:49:48 2 2006-02-16 02:30:53
  36092. 6213 2005-07-11 12:43:07 485 23 2005-07-16 07:23:07 2 2006-02-16 02:30:53
  36093. 6214 2005-07-11 12:49:48 1258 49 2005-07-18 07:41:48 2 2006-02-16 02:30:53
  36094. 6215 2005-07-11 12:52:36 316 390 2005-07-12 08:33:36 1 2006-02-16 02:30:53
  36095. 6216 2005-07-11 12:57:05 3571 387 2005-07-13 12:31:05 1 2006-02-16 02:30:53
  36096. 6217 2005-07-11 13:13:45 1090 177 2005-07-19 16:37:45 2 2006-02-16 02:30:53
  36097. 6218 2005-07-11 13:14:58 815 410 2005-07-16 08:13:58 2 2006-02-16 02:30:53
  36098. 6219 2005-07-11 13:18:37 38 303 2005-07-13 13:18:37 2 2006-02-16 02:30:53
  36099. 6220 2005-07-11 13:22:06 1717 421 2005-07-12 17:46:06 2 2006-02-16 02:30:53
  36100. 6221 2005-07-11 13:24:27 1699 393 2005-07-15 17:51:27 1 2006-02-16 02:30:53
  36101. 6222 2005-07-11 13:25:49 2066 386 2005-07-13 14:32:49 1 2006-02-16 02:30:53
  36102. 6223 2005-07-11 13:27:09 3754 192 2005-07-12 14:02:09 1 2006-02-16 02:30:53
  36103. 6224 2005-07-11 13:42:18 3274 475 2005-07-16 09:28:18 1 2006-02-16 02:30:53
  36104. 6225 2005-07-11 13:45:14 2483 204 2005-07-14 10:23:14 1 2006-02-16 02:30:53
  36105. 6226 2005-07-11 13:48:11 2758 134 2005-07-15 17:18:11 2 2006-02-16 02:30:53
  36106. 6227 2005-07-11 13:56:46 1654 210 2005-07-18 12:53:46 1 2006-02-16 02:30:53
  36107. 6228 2005-07-11 13:58:36 2281 367 2005-07-17 19:03:36 2 2006-02-16 02:30:53
  36108. 6229 2005-07-11 13:59:50 3137 399 2005-07-20 09:26:50 1 2006-02-16 02:30:53
  36109. 6230 2005-07-11 14:02:19 2260 490 2005-07-17 08:11:19 2 2006-02-16 02:30:53
  36110. 6231 2005-07-11 14:02:36 2526 122 2005-07-13 19:04:36 2 2006-02-16 02:30:53
  36111. 6232 2005-07-11 14:08:27 2492 590 2005-07-20 19:34:27 2 2006-02-16 02:30:53
  36112. 6233 2005-07-11 14:10:47 3731 378 2005-07-15 15:13:47 2 2006-02-16 02:30:53
  36113. 6234 2005-07-11 14:16:10 2911 232 2005-07-19 19:55:10 1 2006-02-16 02:30:53
  36114. 6235 2005-07-11 14:17:51 2659 379 2005-07-17 11:14:51 2 2006-02-16 02:30:53
  36115. 6236 2005-07-11 14:18:17 3813 338 2005-07-14 08:47:17 2 2006-02-16 02:30:53
  36116. 6237 2005-07-11 14:19:12 2215 166 2005-07-15 15:05:12 1 2006-02-16 02:30:53
  36117. 6238 2005-07-11 14:20:18 3749 23 2005-07-14 18:34:18 1 2006-02-16 02:30:53
  36118. 6239 2005-07-11 14:20:48 4107 132 2005-07-17 13:41:48 2 2006-02-16 02:30:53
  36119. 6240 2005-07-11 14:32:41 640 524 2005-07-20 18:38:41 1 2006-02-16 02:30:53
  36120. 6241 2005-07-11 14:40:48 4449 74 2005-07-18 09:51:48 1 2006-02-16 02:30:53
  36121. 6242 2005-07-11 14:45:04 670 245 2005-07-12 18:34:04 2 2006-02-16 02:30:53
  36122. 6243 2005-07-11 14:53:25 3456 26 2005-07-15 09:26:25 2 2006-02-16 02:30:53
  36123. 6244 2005-07-11 14:53:38 1558 383 2005-07-12 16:42:38 1 2006-02-16 02:30:53
  36124. 6245 2005-07-11 14:56:57 512 241 2005-07-16 14:35:57 1 2006-02-16 02:30:53
  36125. 6246 2005-07-11 14:57:51 2376 172 2005-07-19 19:10:51 2 2006-02-16 02:30:53
  36126. 6247 2005-07-11 15:00:05 2504 589 2005-07-18 13:47:05 1 2006-02-16 02:30:53
  36127. 6248 2005-07-11 15:01:54 2686 6 2005-07-19 16:58:54 1 2006-02-16 02:30:53
  36128. 6249 2005-07-11 15:02:02 4334 30 2005-07-14 11:37:02 2 2006-02-16 02:30:53
  36129. 6250 2005-07-11 15:02:04 4087 458 2005-07-17 10:54:04 1 2006-02-16 02:30:53
  36130. 6251 2005-07-11 15:06:20 3956 230 2005-07-18 20:11:20 2 2006-02-16 02:30:53
  36131. 6252 2005-07-11 15:06:29 1294 295 2005-07-16 14:07:29 1 2006-02-16 02:30:53
  36132. 6253 2005-07-11 15:07:19 1425 570 2005-07-13 11:00:19 1 2006-02-16 02:30:53
  36133. 6254 2005-07-11 15:10:18 2038 20 2005-07-17 14:20:18 2 2006-02-16 02:30:53
  36134. 6255 2005-07-11 15:11:33 1459 319 2005-07-15 19:55:33 2 2006-02-16 02:30:53
  36135. 6256 2005-07-11 15:19:22 480 307 2005-07-13 12:43:22 1 2006-02-16 02:30:53
  36136. 6257 2005-07-11 15:23:46 3253 492 2005-07-14 17:26:46 2 2006-02-16 02:30:53
  36137. 6258 2005-07-11 15:24:32 632 417 2005-07-18 18:29:32 1 2006-02-16 02:30:53
  36138. 6259 2005-07-11 15:25:52 3007 84 2005-07-13 11:54:52 2 2006-02-16 02:30:53
  36139. 6260 2005-07-11 15:26:29 4308 454 2005-07-13 17:37:29 2 2006-02-16 02:30:53
  36140. 6261 2005-07-11 15:28:34 694 386 2005-07-14 17:54:34 1 2006-02-16 02:30:53
  36141. 6262 2005-07-11 15:33:24 4136 355 2005-07-17 12:40:24 1 2006-02-16 02:30:53
  36142. 6263 2005-07-11 15:33:50 2391 336 2005-07-17 12:49:50 2 2006-02-16 02:30:53
  36143. 6264 2005-07-11 15:42:35 4246 565 2005-07-12 11:29:35 2 2006-02-16 02:30:53
  36144. 6265 2005-07-11 15:43:51 3931 477 2005-07-12 12:51:51 2 2006-02-16 02:30:53
  36145. 6266 2005-07-11 15:45:39 941 397 2005-07-15 18:29:39 1 2006-02-16 02:30:53
  36146. 6267 2005-07-11 15:53:00 2152 20 2005-07-17 18:09:00 2 2006-02-16 02:30:53
  36147. 6268 2005-07-11 15:55:34 1154 125 2005-07-19 17:25:34 1 2006-02-16 02:30:53
  36148. 6269 2005-07-11 15:58:43 3915 167 2005-07-13 13:25:43 1 2006-02-16 02:30:53
  36149. 6270 2005-07-11 15:59:10 2308 292 2005-07-18 10:29:10 2 2006-02-16 02:30:53
  36150. 6271 2005-07-11 16:01:35 1246 467 2005-07-20 12:07:35 2 2006-02-16 02:30:53
  36151. 6272 2005-07-11 16:03:49 3103 240 2005-07-15 19:54:49 1 2006-02-16 02:30:53
  36152. 6273 2005-07-11 16:08:41 2403 152 2005-07-14 16:41:41 2 2006-02-16 02:30:53
  36153. 6274 2005-07-11 16:09:42 2998 472 2005-07-19 20:46:42 1 2006-02-16 02:30:53
  36154. 6275 2005-07-11 16:12:11 3599 333 2005-07-17 20:19:11 2 2006-02-16 02:30:53
  36155. 6276 2005-07-11 16:15:50 1826 284 2005-07-19 20:50:50 2 2006-02-16 02:30:53
  36156. 6277 2005-07-11 16:19:01 4023 92 2005-07-18 21:00:01 2 2006-02-16 02:30:53
  36157. 6278 2005-07-11 16:20:02 2232 558 2005-07-19 19:29:02 2 2006-02-16 02:30:53
  36158. 6279 2005-07-11 16:26:07 1254 49 2005-07-17 21:05:07 2 2006-02-16 02:30:53
  36159. 6280 2005-07-11 16:36:17 4055 33 2005-07-13 14:04:17 2 2006-02-16 02:30:53
  36160. 6281 2005-07-11 16:38:16 835 236 2005-07-13 10:57:16 2 2006-02-16 02:30:53
  36161. 6282 2005-07-11 16:46:22 4453 60 2005-07-15 13:19:22 1 2006-02-16 02:30:53
  36162. 6283 2005-07-11 16:47:32 3319 402 2005-07-17 21:46:32 1 2006-02-16 02:30:53
  36163. 6284 2005-07-11 16:51:39 2938 177 2005-07-15 19:59:39 1 2006-02-16 02:30:53
  36164. 6285 2005-07-11 16:52:07 2140 444 2005-07-13 21:33:07 2 2006-02-16 02:30:53
  36165. 6286 2005-07-11 16:55:35 1070 140 2005-07-13 22:51:35 1 2006-02-16 02:30:53
  36166. 6287 2005-07-11 17:00:04 35 93 2005-07-12 13:16:04 1 2006-02-16 02:30:53
  36167. 6288 2005-07-11 17:01:52 3235 357 2005-07-19 15:11:52 1 2006-02-16 02:30:53
  36168. 6289 2005-07-11 17:06:39 3185 99 2005-07-12 15:54:39 2 2006-02-16 02:30:53
  36169. 6290 2005-07-11 17:12:42 2634 66 2005-07-19 21:53:42 2 2006-02-16 02:30:53
  36170. 6291 2005-07-11 17:16:40 3126 262 2005-07-13 18:24:40 2 2006-02-16 02:30:53
  36171. 6292 2005-07-11 17:23:33 4375 505 2005-07-12 16:27:33 2 2006-02-16 02:30:53
  36172. 6293 2005-07-11 17:24:57 4260 471 2005-07-13 18:45:57 2 2006-02-16 02:30:53
  36173. 6294 2005-07-11 17:25:55 1732 463 2005-07-15 17:48:55 1 2006-02-16 02:30:53
  36174. 6295 2005-07-11 17:30:58 1393 7 2005-07-15 15:50:58 1 2006-02-16 02:30:53
  36175. 6296 2005-07-11 17:34:04 4202 484 2005-07-17 21:12:04 1 2006-02-16 02:30:53
  36176. 6297 2005-07-11 17:37:22 2738 69 2005-07-19 13:54:22 2 2006-02-16 02:30:53
  36177. 6298 2005-07-11 17:42:33 3906 256 2005-07-13 18:14:33 2 2006-02-16 02:30:53
  36178. 6299 2005-07-11 17:45:08 4125 324 2005-07-13 16:36:08 2 2006-02-16 02:30:53
  36179. 6300 2005-07-11 17:50:09 1269 283 2005-07-18 13:11:09 1 2006-02-16 02:30:53
  36180. 6301 2005-07-11 17:54:09 3528 275 2005-07-18 20:42:09 2 2006-02-16 02:30:53
  36181. 6302 2005-07-11 17:55:38 3221 391 2005-07-17 22:11:38 1 2006-02-16 02:30:53
  36182. 6303 2005-07-11 17:55:43 846 236 2005-07-13 12:50:43 1 2006-02-16 02:30:53
  36183. 6304 2005-07-11 18:02:16 4183 579 2005-07-14 14:01:16 1 2006-02-16 02:30:53
  36184. 6305 2005-07-11 18:02:25 1544 337 2005-07-20 13:29:25 1 2006-02-16 02:30:53
  36185. 6306 2005-07-11 18:04:26 486 208 2005-07-20 14:22:26 2 2006-02-16 02:30:53
  36186. 6307 2005-07-11 18:04:29 4029 345 2005-07-17 23:40:29 2 2006-02-16 02:30:53
  36187. 6308 2005-07-11 18:08:41 3155 472 2005-07-19 15:48:41 2 2006-02-16 02:30:53
  36188. 6309 2005-07-11 18:13:24 1054 232 2005-07-13 23:11:24 1 2006-02-16 02:30:53
  36189. 6310 2005-07-11 18:14:05 3064 537 2005-07-16 15:39:05 2 2006-02-16 02:30:53
  36190. 6311 2005-07-11 18:18:52 1789 373 2005-07-16 17:52:52 2 2006-02-16 02:30:53
  36191. 6312 2005-07-11 18:19:02 2188 417 2005-07-18 00:00:02 1 2006-02-16 02:30:53
  36192. 6313 2005-07-11 18:29:52 2976 283 2005-07-14 21:34:52 1 2006-02-16 02:30:53
  36193. 6314 2005-07-11 18:32:44 4128 55 2005-07-17 23:58:44 1 2006-02-16 02:30:53
  36194. 6315 2005-07-11 18:42:49 608 374 2005-07-12 23:19:49 2 2006-02-16 02:30:53
  36195. 6316 2005-07-11 18:44:52 1910 526 2005-07-19 23:35:52 2 2006-02-16 02:30:53
  36196. 6317 2005-07-11 18:47:41 4206 225 2005-07-14 18:18:41 1 2006-02-16 02:30:53
  36197. 6318 2005-07-11 18:48:22 2048 425 2005-07-12 13:39:22 1 2006-02-16 02:30:53
  36198. 6319 2005-07-11 18:50:45 3739 233 2005-07-12 15:26:45 1 2006-02-16 02:30:53
  36199. 6320 2005-07-11 18:50:55 441 511 2005-07-13 22:46:55 2 2006-02-16 02:30:53
  36200. 6321 2005-07-11 18:51:02 2655 388 2005-07-14 20:57:02 2 2006-02-16 02:30:53
  36201. 6322 2005-07-11 18:58:20 4115 403 2005-07-14 16:41:20 2 2006-02-16 02:30:53
  36202. 6323 2005-07-11 19:02:19 1352 346 2005-07-14 15:54:19 1 2006-02-16 02:30:53
  36203. 6324 2005-07-11 19:02:34 655 386 2005-07-17 15:57:34 1 2006-02-16 02:30:53
  36204. 6325 2005-07-11 19:06:01 4556 542 2005-07-18 18:25:01 2 2006-02-16 02:30:53
  36205. 6326 2005-07-11 19:06:55 2137 563 2005-07-12 20:41:55 1 2006-02-16 02:30:53
  36206. 6327 2005-07-11 19:07:29 909 146 2005-07-15 16:09:29 1 2006-02-16 02:30:53
  36207. 6328 2005-07-11 19:09:33 999 260 2005-07-12 20:16:33 2 2006-02-16 02:30:53
  36208. 6329 2005-07-11 19:10:38 2763 352 2005-07-19 14:46:38 2 2006-02-16 02:30:53
  36209. 6330 2005-07-11 19:15:42 3917 119 2005-07-17 19:10:42 1 2006-02-16 02:30:53
  36210. 6331 2005-07-11 19:17:21 1356 295 2005-07-18 18:35:21 2 2006-02-16 02:30:53
  36211. 6332 2005-07-11 19:19:06 1733 538 2005-07-13 13:51:06 2 2006-02-16 02:30:53
  36212. 6333 2005-07-11 19:20:16 2610 285 2005-07-17 15:33:16 1 2006-02-16 02:30:53
  36213. 6334 2005-07-11 19:20:44 948 168 2005-07-19 18:49:44 2 2006-02-16 02:30:53
  36214. 6335 2005-07-11 19:25:15 2757 396 2005-07-16 17:02:15 1 2006-02-16 02:30:53
  36215. 6336 2005-07-11 19:30:13 1229 471 2005-07-20 21:27:13 2 2006-02-16 02:30:53
  36216. 6337 2005-07-11 19:30:47 3967 47 2005-07-19 20:27:47 2 2006-02-16 02:30:53
  36217. 6338 2005-07-11 19:39:41 1691 54 2005-07-18 01:13:41 2 2006-02-16 02:30:53
  36218. 6339 2005-07-11 19:45:32 2401 145 2005-07-18 22:34:32 2 2006-02-16 02:30:53
  36219. 6340 2005-07-11 19:46:05 2374 264 2005-07-20 16:51:05 2 2006-02-16 02:30:53
  36220. 6341 2005-07-11 19:48:02 3580 448 2005-07-15 01:31:02 1 2006-02-16 02:30:53
  36221. 6342 2005-07-11 19:48:24 1851 403 2005-07-13 14:09:24 2 2006-02-16 02:30:53
  36222. 6343 2005-07-11 19:51:35 513 147 2005-07-12 19:13:35 1 2006-02-16 02:30:53
  36223. 6344 2005-07-11 20:04:43 3074 78 2005-07-18 14:35:43 2 2006-02-16 02:30:53
  36224. 6345 2005-07-11 20:05:18 4332 532 2005-07-20 17:28:18 1 2006-02-16 02:30:53
  36225. 6346 2005-07-11 20:08:34 4066 445 2005-07-16 16:35:34 2 2006-02-16 02:30:53
  36226. 6347 2005-07-11 20:18:53 3160 178 2005-07-16 20:45:53 1 2006-02-16 02:30:53
  36227. 6348 2005-07-11 20:21:18 21 66 2005-07-19 15:56:18 2 2006-02-16 02:30:53
  36228. 6349 2005-07-11 20:25:05 1581 216 2005-07-21 00:35:05 2 2006-02-16 02:30:53
  36229. 6350 2005-07-11 20:30:15 2853 225 2005-07-16 21:30:15 1 2006-02-16 02:30:53
  36230. 6351 2005-07-11 20:31:44 1852 507 2005-07-18 17:16:44 2 2006-02-16 02:30:53
  36231. 6352 2005-07-11 20:34:13 1143 235 2005-07-13 19:49:13 1 2006-02-16 02:30:53
  36232. 6353 2005-07-11 20:48:56 699 130 2005-07-21 00:11:56 1 2006-02-16 02:30:53
  36233. 6354 2005-07-11 20:54:27 3203 176 2005-07-18 23:46:27 2 2006-02-16 02:30:53
  36234. 6355 2005-07-11 20:56:29 2472 482 2005-07-20 01:50:29 2 2006-02-16 02:30:53
  36235. 6356 2005-07-11 20:57:48 2645 149 2005-07-12 22:40:48 2 2006-02-16 02:30:53
  36236. 6357 2005-07-11 20:58:51 658 252 2005-07-12 15:06:51 1 2006-02-16 02:30:53
  36237. 6358 2005-07-11 21:03:12 4527 567 2005-07-15 20:06:12 2 2006-02-16 02:30:53
  36238. 6359 2005-07-11 21:06:17 1656 30 2005-07-16 02:51:17 2 2006-02-16 02:30:53
  36239. 6360 2005-07-11 21:07:40 3075 338 2005-07-16 15:11:40 1 2006-02-16 02:30:53
  36240. 6361 2005-07-11 21:09:14 2903 561 2005-07-14 18:26:14 2 2006-02-16 02:30:53
  36241. 6362 2005-07-11 21:09:31 4259 358 2005-07-13 23:08:31 1 2006-02-16 02:30:53
  36242. 6363 2005-07-11 21:13:19 4167 344 2005-07-20 15:44:19 1 2006-02-16 02:30:53
  36243. 6364 2005-07-11 21:14:48 4146 160 2005-07-20 23:20:48 2 2006-02-16 02:30:53
  36244. 6365 2005-07-11 21:17:40 4550 566 2005-07-14 20:53:40 1 2006-02-16 02:30:53
  36245. 6366 2005-07-11 21:18:16 3989 366 2005-07-17 00:21:16 1 2006-02-16 02:30:53
  36246. 6367 2005-07-11 21:18:29 1465 357 2005-07-15 01:05:29 1 2006-02-16 02:30:53
  36247. 6368 2005-07-11 21:19:01 3666 588 2005-07-13 17:56:01 2 2006-02-16 02:30:53
  36248. 6369 2005-07-11 21:23:36 1086 252 2005-07-13 22:23:36 2 2006-02-16 02:30:53
  36249. 6370 2005-07-11 21:28:32 1410 99 2005-07-20 02:51:32 2 2006-02-16 02:30:53
  36250. 6371 2005-07-11 21:31:51 4297 265 2005-07-16 23:10:51 1 2006-02-16 02:30:53
  36251. 6372 2005-07-11 21:35:06 741 64 2005-07-15 02:30:06 2 2006-02-16 02:30:53
  36252. 6373 2005-07-11 21:35:20 1042 115 2005-07-13 23:22:20 2 2006-02-16 02:30:53
  36253. 6374 2005-07-11 21:36:10 266 244 2005-07-17 15:50:10 2 2006-02-16 02:30:53
  36254. 6375 2005-07-11 21:39:46 1936 8 2005-07-18 02:12:46 2 2006-02-16 02:30:53
  36255. 6376 2005-07-11 21:40:23 1834 263 2005-07-13 23:16:23 1 2006-02-16 02:30:53
  36256. 6377 2005-07-11 21:41:16 4017 118 2005-07-15 20:05:16 1 2006-02-16 02:30:53
  36257. 6378 2005-07-11 21:45:23 3170 145 2005-07-14 16:56:23 1 2006-02-16 02:30:53
  36258. 6379 2005-07-11 21:51:25 522 287 2005-07-17 03:38:25 2 2006-02-16 02:30:53
  36259. 6380 2005-07-11 21:55:40 3378 172 2005-07-17 20:42:40 1 2006-02-16 02:30:53
  36260. 6381 2005-07-11 21:58:48 2584 340 2005-07-16 16:18:48 1 2006-02-16 02:30:53
  36261. 6382 2005-07-11 21:58:53 3223 336 2005-07-17 21:18:53 2 2006-02-16 02:30:53
  36262. 6383 2005-07-11 22:06:53 4275 486 2005-07-17 16:09:53 1 2006-02-16 02:30:53
  36263. 6384 2005-07-11 22:07:26 491 313 2005-07-16 22:39:26 1 2006-02-16 02:30:53
  36264. 6385 2005-07-11 22:07:32 1830 69 2005-07-20 16:57:32 1 2006-02-16 02:30:53
  36265. 6386 2005-07-11 22:14:57 633 593 2005-07-15 16:41:57 2 2006-02-16 02:30:53
  36266. 6387 2005-07-11 22:15:56 1726 384 2005-07-14 20:20:56 2 2006-02-16 02:30:53
  36267. 6388 2005-07-11 22:17:16 3506 525 2005-07-19 23:50:16 2 2006-02-16 02:30:53
  36268. 6389 2005-07-11 22:18:20 2268 274 2005-07-16 16:57:20 2 2006-02-16 02:30:53
  36269. 6390 2005-07-11 22:19:23 3057 77 2005-07-15 20:10:23 2 2006-02-16 02:30:53
  36270. 6391 2005-07-11 22:23:09 1745 264 2005-07-15 23:02:09 1 2006-02-16 02:30:53
  36271. 6392 2005-07-11 22:25:19 4406 468 2005-07-16 04:24:19 1 2006-02-16 02:30:53
  36272. 6393 2005-07-11 22:28:12 3802 164 2005-07-14 18:03:12 1 2006-02-16 02:30:53
  36273. 6394 2005-07-11 22:29:15 2574 52 2005-07-20 02:19:15 2 2006-02-16 02:30:53
  36274. 6395 2005-07-11 22:29:29 3058 264 2005-07-18 00:50:29 1 2006-02-16 02:30:53
  36275. 6396 2005-07-11 22:31:08 2394 507 2005-07-19 17:19:08 2 2006-02-16 02:30:53
  36276. 6397 2005-07-11 22:34:02 2423 287 2005-07-13 23:01:02 1 2006-02-16 02:30:53
  36277. 6398 2005-07-11 22:34:49 1409 296 2005-07-17 17:58:49 2 2006-02-16 02:30:53
  36278. 6399 2005-07-11 22:39:05 2031 288 2005-07-16 01:12:05 1 2006-02-16 02:30:53
  36279. 6400 2005-07-11 22:43:44 3289 536 2005-07-19 03:58:44 2 2006-02-16 02:30:53
  36280. 6401 2005-07-11 22:44:34 1427 35 2005-07-12 22:18:34 2 2006-02-16 02:30:53
  36281. 6402 2005-07-11 22:46:10 2576 66 2005-07-16 04:02:10 1 2006-02-16 02:30:53
  36282. 6403 2005-07-11 22:46:25 1019 238 2005-07-13 22:15:25 1 2006-02-16 02:30:53
  36283. 6404 2005-07-11 22:49:50 1183 526 2005-07-14 18:29:50 2 2006-02-16 02:30:53
  36284. 6405 2005-07-11 22:53:12 3983 357 2005-07-18 23:02:12 2 2006-02-16 02:30:53
  36285. 6406 2005-07-11 22:55:27 4439 392 2005-07-20 04:50:27 2 2006-02-16 02:30:53
  36286. 6407 2005-07-11 23:02:19 775 140 2005-07-21 00:30:19 1 2006-02-16 02:30:53
  36287. 6408 2005-07-11 23:03:02 2008 350 2005-07-19 23:09:02 2 2006-02-16 02:30:53
  36288. 6409 2005-07-11 23:05:49 3859 537 2005-07-13 00:13:49 2 2006-02-16 02:30:53
  36289. 6410 2005-07-11 23:08:06 1127 560 2005-07-19 19:57:06 2 2006-02-16 02:30:53
  36290. 6411 2005-07-11 23:10:50 4347 124 2005-07-19 17:15:50 1 2006-02-16 02:30:53
  36291. 6412 2005-07-11 23:19:21 3797 220 2005-07-16 19:48:21 1 2006-02-16 02:30:53
  36292. 6413 2005-07-11 23:26:11 4446 251 2005-07-17 21:58:11 2 2006-02-16 02:30:53
  36293. 6414 2005-07-11 23:26:13 814 502 2005-07-18 17:29:13 1 2006-02-16 02:30:53
  36294. 6415 2005-07-11 23:27:52 4175 84 2005-07-19 22:29:52 2 2006-02-16 02:30:53
  36295. 6416 2005-07-11 23:29:14 1063 158 2005-07-13 20:20:14 1 2006-02-16 02:30:53
  36296. 6417 2005-07-11 23:35:11 3042 80 2005-07-18 20:00:11 2 2006-02-16 02:30:53
  36297. 6418 2005-07-11 23:36:27 3101 185 2005-07-16 18:42:27 1 2006-02-16 02:30:53
  36298. 6419 2005-07-11 23:36:38 3683 311 2005-07-13 03:23:38 1 2006-02-16 02:30:53
  36299. 6420 2005-07-11 23:38:49 4443 206 2005-07-17 17:46:49 2 2006-02-16 02:30:53
  36300. 6421 2005-07-11 23:45:25 4477 479 2005-07-15 20:45:25 2 2006-02-16 02:30:53
  36301. 6422 2005-07-11 23:46:19 762 257 2005-07-20 22:12:19 1 2006-02-16 02:30:53
  36302. 6423 2005-07-11 23:47:31 892 427 2005-07-19 18:16:31 1 2006-02-16 02:30:53
  36303. 6424 2005-07-11 23:49:37 3040 359 2005-07-21 00:53:37 1 2006-02-16 02:30:53
  36304. 6425 2005-07-11 23:54:52 2487 339 2005-07-13 18:37:52 1 2006-02-16 02:30:53
  36305. 6426 2005-07-11 23:56:38 498 495 2005-07-21 05:22:38 1 2006-02-16 02:30:53
  36306. 6427 2005-07-11 23:57:34 1043 122 2005-07-14 18:05:34 2 2006-02-16 02:30:53
  36307. 6428 2005-07-12 00:01:51 4365 187 2005-07-20 22:02:51 2 2006-02-16 02:30:53
  36308. 6429 2005-07-12 00:02:50 141 342 2005-07-21 02:08:50 1 2006-02-16 02:30:53
  36309. 6430 2005-07-12 00:03:34 178 390 2005-07-15 03:11:34 1 2006-02-16 02:30:53
  36310. 6431 2005-07-12 00:03:57 3471 458 2005-07-20 03:47:57 1 2006-02-16 02:30:53
  36311. 6432 2005-07-12 00:09:41 970 293 2005-07-20 20:06:41 1 2006-02-16 02:30:53
  36312. 6433 2005-07-12 00:12:02 1357 101 2005-07-21 04:25:02 2 2006-02-16 02:30:53
  36313. 6434 2005-07-12 00:14:25 1478 102 2005-07-20 19:54:25 2 2006-02-16 02:30:53
  36314. 6435 2005-07-12 00:16:19 1957 561 2005-07-17 19:15:19 1 2006-02-16 02:30:53
  36315. 6436 2005-07-12 00:18:42 3758 122 2005-07-13 03:57:42 2 2006-02-16 02:30:53
  36316. 6437 2005-07-12 00:20:29 4539 355 2005-07-12 22:26:29 1 2006-02-16 02:30:53
  36317. 6438 2005-07-12 00:23:01 412 211 2005-07-17 22:45:01 1 2006-02-16 02:30:53
  36318. 6439 2005-07-12 00:23:48 3463 406 2005-07-13 00:54:48 2 2006-02-16 02:30:53
  36319. 6440 2005-07-12 00:25:04 2148 269 2005-07-13 04:52:04 2 2006-02-16 02:30:53
  36320. 6441 2005-07-12 00:27:08 2489 505 2005-07-14 03:12:08 1 2006-02-16 02:30:53
  36321. 6442 2005-07-12 00:29:45 1273 360 2005-07-15 19:37:45 2 2006-02-16 02:30:53
  36322. 6443 2005-07-12 00:35:51 895 155 2005-07-16 04:50:51 1 2006-02-16 02:30:53
  36323. 6444 2005-07-12 00:36:02 2214 168 2005-07-18 05:53:02 1 2006-02-16 02:30:53
  36324. 6445 2005-07-12 00:37:02 582 385 2005-07-17 22:05:02 2 2006-02-16 02:30:53
  36325. 6446 2005-07-12 00:44:08 3634 473 2005-07-14 20:39:08 2 2006-02-16 02:30:53
  36326. 6447 2005-07-12 00:45:17 3945 482 2005-07-18 05:56:17 2 2006-02-16 02:30:53
  36327. 6448 2005-07-12 00:45:59 2663 160 2005-07-17 00:34:59 1 2006-02-16 02:30:53
  36328. 6449 2005-07-12 00:48:58 4395 117 2005-07-21 02:57:58 1 2006-02-16 02:30:53
  36329. 6450 2005-07-12 00:49:05 2413 32 2005-07-13 01:54:05 2 2006-02-16 02:30:53
  36330. 6451 2005-07-12 00:52:19 1008 381 2005-07-16 21:30:19 2 2006-02-16 02:30:53
  36331. 6452 2005-07-12 00:57:31 109 388 2005-07-14 20:41:31 1 2006-02-16 02:30:53
  36332. 6453 2005-07-12 00:59:53 2506 169 2005-07-14 19:17:53 2 2006-02-16 02:30:53
  36333. 6454 2005-07-12 01:00:12 4028 446 2005-07-16 22:12:12 1 2006-02-16 02:30:53
  36334. 6455 2005-07-12 01:01:58 4267 277 2005-07-16 02:42:58 2 2006-02-16 02:30:53
  36335. 6456 2005-07-12 01:05:11 259 387 2005-07-20 23:26:11 2 2006-02-16 02:30:53
  36336. 6457 2005-07-12 01:06:35 2970 64 2005-07-14 03:27:35 1 2006-02-16 02:30:53
  36337. 6458 2005-07-12 01:08:52 2809 138 2005-07-16 20:22:52 1 2006-02-16 02:30:53
  36338. 6459 2005-07-12 01:12:03 4025 557 2005-07-15 23:48:03 1 2006-02-16 02:30:53
  36339. 6460 2005-07-12 01:13:44 2402 371 2005-07-17 04:51:44 2 2006-02-16 02:30:53
  36340. 6461 2005-07-12 01:14:03 1799 135 2005-07-19 21:12:03 1 2006-02-16 02:30:53
  36341. 6462 2005-07-12 01:15:24 4534 414 2005-07-19 05:11:24 2 2006-02-16 02:30:53
  36342. 6463 2005-07-12 01:16:11 2930 391 2005-07-13 01:37:11 1 2006-02-16 02:30:53
  36343. 6464 2005-07-12 01:16:40 3100 303 2005-07-20 00:53:40 1 2006-02-16 02:30:53
  36344. 6465 2005-07-12 01:17:11 2047 207 2005-07-20 00:29:11 2 2006-02-16 02:30:53
  36345. 6466 2005-07-12 01:21:03 3369 235 2005-07-14 04:05:03 1 2006-02-16 02:30:53
  36346. 6467 2005-07-12 01:22:03 2067 457 2005-07-20 04:37:03 2 2006-02-16 02:30:53
  36347. 6468 2005-07-12 01:27:09 4560 541 2005-07-20 00:37:09 2 2006-02-16 02:30:53
  36348. 6469 2005-07-12 01:29:27 3830 147 2005-07-16 20:22:27 2 2006-02-16 02:30:53
  36349. 6470 2005-07-12 01:29:41 1680 240 2005-07-15 21:33:41 2 2006-02-16 02:30:53
  36350. 6471 2005-07-12 01:31:06 2253 397 2005-07-13 05:26:06 1 2006-02-16 02:30:53
  36351. 6472 2005-07-12 01:33:25 3780 183 2005-07-15 20:26:25 1 2006-02-16 02:30:53
  36352. 6473 2005-07-12 01:35:40 527 594 2005-07-20 20:11:40 1 2006-02-16 02:30:53
  36353. 6474 2005-07-12 01:36:46 310 43 2005-07-16 07:24:46 2 2006-02-16 02:30:53
  36354. 6475 2005-07-12 01:36:57 2035 74 2005-07-17 21:22:57 1 2006-02-16 02:30:53
  36355. 6476 2005-07-12 01:37:48 978 28 2005-07-12 20:21:48 2 2006-02-16 02:30:53
  36356. 6477 2005-07-12 01:38:42 804 181 2005-07-17 05:19:42 2 2006-02-16 02:30:53
  36357. 6478 2005-07-12 01:41:44 2589 483 2005-07-15 20:48:44 1 2006-02-16 02:30:53
  36358. 6479 2005-07-12 01:49:00 2587 558 2005-07-21 04:26:00 1 2006-02-16 02:30:53
  36359. 6480 2005-07-12 01:49:29 3076 309 2005-07-17 01:00:29 1 2006-02-16 02:30:53
  36360. 6481 2005-07-12 01:50:15 2392 128 2005-07-20 03:03:15 1 2006-02-16 02:30:53
  36361. 6482 2005-07-12 01:50:21 4135 57 2005-07-14 06:49:21 2 2006-02-16 02:30:53
  36362. 6483 2005-07-12 01:59:20 1053 263 2005-07-12 22:22:20 2 2006-02-16 02:30:53
  36363. 6484 2005-07-12 02:04:10 4093 556 2005-07-17 23:18:10 2 2006-02-16 02:30:53
  36364. 6485 2005-07-12 02:07:59 1224 319 2005-07-19 22:56:59 1 2006-02-16 02:30:53
  36365. 6486 2005-07-12 02:09:36 4008 75 2005-07-14 03:04:36 2 2006-02-16 02:30:53
  36366. 6487 2005-07-12 02:17:00 4000 277 2005-07-19 00:57:00 2 2006-02-16 02:30:53
  36367. 6488 2005-07-12 02:20:09 3974 169 2005-07-20 00:53:09 2 2006-02-16 02:30:53
  36368. 6489 2005-07-12 02:22:46 1821 268 2005-07-17 06:16:46 2 2006-02-16 02:30:53
  36369. 6490 2005-07-12 02:28:03 2249 548 2005-07-19 03:06:03 2 2006-02-16 02:30:53
  36370. 6491 2005-07-12 02:28:31 2803 415 2005-07-21 00:38:31 1 2006-02-16 02:30:53
  36371. 6492 2005-07-12 02:28:40 466 590 2005-07-17 05:58:40 2 2006-02-16 02:30:53
  36372. 6493 2005-07-12 02:40:41 16 184 2005-07-16 04:56:41 1 2006-02-16 02:30:53
  36373. 6494 2005-07-12 02:42:51 1124 57 2005-07-20 06:57:51 1 2006-02-16 02:30:53
  36374. 6495 2005-07-12 02:57:02 2440 19 2005-07-14 08:35:02 1 2006-02-16 02:30:53
  36375. 6496 2005-07-12 02:57:39 3550 139 2005-07-20 01:43:39 1 2006-02-16 02:30:53
  36376. 6497 2005-07-12 03:04:29 933 222 2005-07-17 21:36:29 2 2006-02-16 02:30:53
  36377. 6498 2005-07-12 03:05:38 243 48 2005-07-19 07:12:38 1 2006-02-16 02:30:53
  36378. 6499 2005-07-12 03:11:18 3165 474 2005-07-21 07:50:18 2 2006-02-16 02:30:53
  36379. 6500 2005-07-12 03:11:23 4521 577 2005-07-13 00:51:23 2 2006-02-16 02:30:53
  36380. 6501 2005-07-12 03:11:55 2851 219 2005-07-16 02:08:55 2 2006-02-16 02:30:53
  36381. 6502 2005-07-12 03:15:45 1641 40 2005-07-17 08:47:45 2 2006-02-16 02:30:53
  36382. 6503 2005-07-12 03:18:07 1319 120 2005-07-15 00:05:07 1 2006-02-16 02:30:53
  36383. 6504 2005-07-12 03:19:14 3786 535 2005-07-17 01:13:14 2 2006-02-16 02:30:53
  36384. 6505 2005-07-12 03:27:37 3986 415 2005-07-17 22:42:37 2 2006-02-16 02:30:53
  36385. 6506 2005-07-12 03:28:22 386 423 2005-07-17 22:43:22 1 2006-02-16 02:30:53
  36386. 6507 2005-07-12 03:33:12 2463 118 2005-07-20 03:56:12 1 2006-02-16 02:30:53
  36387. 6508 2005-07-12 03:34:50 1474 597 2005-07-17 02:57:50 2 2006-02-16 02:30:53
  36388. 6509 2005-07-12 03:35:01 2468 427 2005-07-13 06:50:01 2 2006-02-16 02:30:53
  36389. 6510 2005-07-12 03:35:39 905 446 2005-07-21 01:41:39 1 2006-02-16 02:30:53
  36390. 6511 2005-07-12 03:39:29 1350 322 2005-07-17 01:01:29 2 2006-02-16 02:30:53
  36391. 6512 2005-07-12 03:42:49 1703 68 2005-07-13 05:01:49 2 2006-02-16 02:30:53
  36392. 6513 2005-07-12 03:44:43 2671 393 2005-07-13 05:54:43 1 2006-02-16 02:30:53
  36393. 6514 2005-07-12 03:47:44 3562 73 2005-07-20 00:11:44 1 2006-02-16 02:30:53
  36394. 6515 2005-07-12 03:50:32 706 261 2005-07-15 03:54:32 2 2006-02-16 02:30:53
  36395. 6516 2005-07-12 03:51:54 863 291 2005-07-14 03:41:54 2 2006-02-16 02:30:53
  36396. 6517 2005-07-12 03:52:39 185 387 2005-07-20 08:00:39 1 2006-02-16 02:30:53
  36397. 6518 2005-07-12 03:59:42 2698 288 2005-07-19 22:21:42 2 2006-02-16 02:30:53
  36398. 6519 2005-07-12 04:00:36 4149 598 2005-07-19 01:15:36 1 2006-02-16 02:30:53
  36399. 6520 2005-07-12 04:05:16 1535 270 2005-07-15 08:26:16 1 2006-02-16 02:30:53
  36400. 6521 2005-07-12 04:06:11 3293 49 2005-07-21 05:50:11 1 2006-02-16 02:30:53
  36401. 6522 2005-07-12 04:11:58 3916 142 2005-07-15 08:32:58 1 2006-02-16 02:30:53
  36402. 6523 2005-07-12 04:14:19 1848 574 2005-07-17 00:38:19 1 2006-02-16 02:30:53
  36403. 6524 2005-07-12 04:14:35 1467 376 2005-07-17 03:59:35 2 2006-02-16 02:30:53
  36404. 6525 2005-07-12 04:17:15 1408 103 2005-07-18 23:11:15 1 2006-02-16 02:30:53
  36405. 6526 2005-07-12 04:21:20 1718 225 2005-07-18 23:45:20 2 2006-02-16 02:30:53
  36406. 6527 2005-07-12 04:23:06 538 65 2005-07-17 00:20:06 1 2006-02-16 02:30:53
  36407. 6528 2005-07-12 04:29:44 3824 598 2005-07-18 02:39:44 2 2006-02-16 02:30:53
  36408. 6529 2005-07-12 04:31:04 1058 503 2005-07-17 07:09:04 2 2006-02-16 02:30:53
  36409. 6530 2005-07-12 04:33:19 3410 75 2005-07-15 08:26:19 1 2006-02-16 02:30:53
  36410. 6531 2005-07-12 04:35:24 4231 510 2005-07-16 05:37:24 2 2006-02-16 02:30:53
  36411. 6532 2005-07-12 04:38:32 2361 225 2005-07-13 03:54:32 1 2006-02-16 02:30:53
  36412. 6533 2005-07-12 04:39:38 3853 366 2005-07-18 05:29:38 1 2006-02-16 02:30:53
  36413. 6534 2005-07-12 04:39:43 2359 577 2005-07-16 06:33:43 1 2006-02-16 02:30:53
  36414. 6535 2005-07-12 04:43:43 1921 446 2005-07-17 04:52:43 1 2006-02-16 02:30:53
  36415. 6536 2005-07-12 04:44:25 3521 289 2005-07-18 01:52:25 2 2006-02-16 02:30:53
  36416. 6537 2005-07-12 04:46:30 3381 207 2005-07-19 03:04:30 2 2006-02-16 02:30:53
  36417. 6538 2005-07-12 04:50:26 1987 529 2005-07-20 23:44:26 2 2006-02-16 02:30:53
  36418. 6539 2005-07-12 04:50:49 2275 259 2005-07-19 03:23:49 1 2006-02-16 02:30:53
  36419. 6540 2005-07-12 04:51:13 937 156 2005-07-21 03:38:13 1 2006-02-16 02:30:53
  36420. 6541 2005-07-12 04:53:41 1795 529 2005-07-17 23:17:41 2 2006-02-16 02:30:53
  36421. 6542 2005-07-12 04:53:49 2421 359 2005-07-13 01:48:49 1 2006-02-16 02:30:53
  36422. 6543 2005-07-12 04:54:32 2568 264 2005-07-15 09:50:32 2 2006-02-16 02:30:53
  36423. 6544 2005-07-12 04:56:15 1218 97 2005-07-17 08:28:15 1 2006-02-16 02:30:53
  36424. 6545 2005-07-12 04:56:30 4447 376 2005-07-20 05:41:30 1 2006-02-16 02:30:53
  36425. 6546 2005-07-12 04:57:17 393 105 2005-07-17 09:29:17 2 2006-02-16 02:30:53
  36426. 6547 2005-07-12 04:57:46 2656 262 2005-07-18 08:36:46 2 2006-02-16 02:30:53
  36427. 6548 2005-07-12 05:00:46 2480 488 2005-07-19 04:40:46 2 2006-02-16 02:30:53
  36428. 6549 2005-07-12 05:02:01 2688 493 2005-07-20 06:19:01 2 2006-02-16 02:30:53
  36429. 6550 2005-07-12 05:03:14 2184 112 2005-07-19 04:06:14 1 2006-02-16 02:30:53
  36430. 6551 2005-07-12 05:03:43 282 567 2005-07-13 10:44:43 1 2006-02-16 02:30:53
  36431. 6552 2005-07-12 05:05:06 766 493 2005-07-13 05:12:06 2 2006-02-16 02:30:53
  36432. 6553 2005-07-12 05:06:39 1137 265 2005-07-21 10:37:39 1 2006-02-16 02:30:53
  36433. 6554 2005-07-12 05:07:26 2741 178 2005-07-21 06:06:26 2 2006-02-16 02:30:53
  36434. 6555 2005-07-12 05:08:16 1282 188 2005-07-14 04:09:16 1 2006-02-16 02:30:53
  36435. 6556 2005-07-12 05:10:16 3901 570 2005-07-13 04:16:16 2 2006-02-16 02:30:53
  36436. 6557 2005-07-12 05:12:03 1442 116 2005-07-20 06:49:03 1 2006-02-16 02:30:53
  36437. 6558 2005-07-12 05:16:07 2195 164 2005-07-13 05:32:07 2 2006-02-16 02:30:53
  36438. 6559 2005-07-12 05:20:35 458 353 2005-07-16 08:44:35 2 2006-02-16 02:30:53
  36439. 6560 2005-07-12 05:22:06 433 54 2005-07-15 00:04:06 2 2006-02-16 02:30:53
  36440. 6561 2005-07-12 05:24:02 4568 528 2005-07-16 03:43:02 2 2006-02-16 02:30:53
  36441. 6562 2005-07-12 05:26:26 3969 27 2005-07-16 05:10:26 2 2006-02-16 02:30:53
  36442. 6563 2005-07-12 05:34:09 87 438 2005-07-21 07:37:09 1 2006-02-16 02:30:53
  36443. 6564 2005-07-12 05:34:44 2320 210 2005-07-18 06:12:44 2 2006-02-16 02:30:53
  36444. 6565 2005-07-12 05:39:50 2751 35 2005-07-13 01:07:50 2 2006-02-16 02:30:53
  36445. 6566 2005-07-12 05:42:53 1822 178 2005-07-19 01:23:53 2 2006-02-16 02:30:53
  36446. 6567 2005-07-12 05:43:09 1336 198 2005-07-19 08:18:09 2 2006-02-16 02:30:53
  36447. 6568 2005-07-12 05:45:47 4203 13 2005-07-15 05:18:47 2 2006-02-16 02:30:53
  36448. 6569 2005-07-12 05:47:40 759 183 2005-07-20 06:23:40 2 2006-02-16 02:30:53
  36449. 6570 2005-07-12 05:50:31 2082 217 2005-07-13 09:58:31 1 2006-02-16 02:30:53
  36450. 6571 2005-07-12 05:51:47 3700 140 2005-07-15 11:31:47 1 2006-02-16 02:30:53
  36451. 6572 2005-07-12 05:56:38 3121 35 2005-07-16 10:41:38 1 2006-02-16 02:30:53
  36452. 6573 2005-07-12 06:03:40 3308 239 2005-07-13 11:49:40 2 2006-02-16 02:30:53
  36453. 6574 2005-07-12 06:04:22 621 115 2005-07-18 03:19:22 2 2006-02-16 02:30:53
  36454. 6575 2005-07-12 06:12:53 1414 598 2005-07-18 07:55:53 2 2006-02-16 02:30:53
  36455. 6576 2005-07-12 06:13:41 339 362 2005-07-16 03:22:41 1 2006-02-16 02:30:53
  36456. 6577 2005-07-12 06:15:05 4191 439 2005-07-15 06:23:05 1 2006-02-16 02:30:53
  36457. 6578 2005-07-12 06:15:41 2304 229 2005-07-15 10:43:41 1 2006-02-16 02:30:53
  36458. 6580 2005-07-12 06:26:10 1543 31 2005-07-13 06:44:10 1 2006-02-16 02:30:53
  36459. 6581 2005-07-12 06:26:49 2121 468 2005-07-14 05:07:49 2 2006-02-16 02:30:53
  36460. 6582 2005-07-12 06:28:12 2077 420 2005-07-19 06:19:12 1 2006-02-16 02:30:53
  36461. 6583 2005-07-12 06:42:31 2343 462 2005-07-15 07:51:31 1 2006-02-16 02:30:53
  36462. 6584 2005-07-12 06:43:36 1800 472 2005-07-16 12:18:36 2 2006-02-16 02:30:53
  36463. 6585 2005-07-12 06:50:52 2064 136 2005-07-21 06:51:52 1 2006-02-16 02:30:53
  36464. 6586 2005-07-12 06:56:24 3860 93 2005-07-17 09:36:24 1 2006-02-16 02:30:53
  36465. 6587 2005-07-12 06:56:26 238 419 2005-07-20 05:53:26 2 2006-02-16 02:30:53
  36466. 6588 2005-07-12 06:57:40 1257 420 2005-07-16 04:27:40 1 2006-02-16 02:30:53
  36467. 6589 2005-07-12 07:06:29 1595 424 2005-07-14 12:06:29 2 2006-02-16 02:30:53
  36468. 6590 2005-07-12 07:08:21 1067 442 2005-07-18 06:16:21 2 2006-02-16 02:30:53
  36469. 6591 2005-07-12 07:13:46 2846 509 2005-07-16 05:15:46 2 2006-02-16 02:30:53
  36470. 6592 2005-07-12 07:19:35 3481 273 2005-07-19 07:15:35 1 2006-02-16 02:30:53
  36471. 6593 2005-07-12 07:21:17 3441 356 2005-07-14 02:35:17 2 2006-02-16 02:30:53
  36472. 6594 2005-07-12 07:25:43 4458 517 2005-07-13 07:59:43 1 2006-02-16 02:30:53
  36473. 6595 2005-07-12 07:25:48 1286 458 2005-07-20 02:24:48 2 2006-02-16 02:30:53
  36474. 6596 2005-07-12 07:32:59 890 409 2005-07-13 02:47:59 1 2006-02-16 02:30:53
  36475. 6597 2005-07-12 07:37:02 979 479 2005-07-16 10:24:02 2 2006-02-16 02:30:53
  36476. 6598 2005-07-12 07:38:25 2049 532 2005-07-19 07:58:25 1 2006-02-16 02:30:53
  36477. 6599 2005-07-12 07:41:14 4348 519 2005-07-21 02:45:14 2 2006-02-16 02:30:53
  36478. 6600 2005-07-12 07:41:48 3315 389 2005-07-18 12:36:48 2 2006-02-16 02:30:53
  36479. 6601 2005-07-12 07:44:49 1640 464 2005-07-20 03:22:49 2 2006-02-16 02:30:53
  36480. 6602 2005-07-12 07:50:24 2382 214 2005-07-20 03:25:24 2 2006-02-16 02:30:53
  36481. 6603 2005-07-12 07:52:55 3583 425 2005-07-16 13:19:55 2 2006-02-16 02:30:53
  36482. 6604 2005-07-12 07:57:45 822 365 2005-07-16 05:41:45 2 2006-02-16 02:30:53
  36483. 6605 2005-07-12 08:01:07 2892 547 2005-07-19 03:12:07 1 2006-02-16 02:30:53
  36484. 6606 2005-07-12 08:03:40 2805 178 2005-07-13 09:05:40 1 2006-02-16 02:30:53
  36485. 6607 2005-07-12 08:08:50 337 562 2005-07-20 09:17:50 1 2006-02-16 02:30:53
  36486. 6608 2005-07-12 08:16:50 3577 244 2005-07-18 07:08:50 2 2006-02-16 02:30:53
  36487. 6609 2005-07-12 08:19:41 3332 133 2005-07-19 08:19:41 2 2006-02-16 02:30:53
  36488. 6610 2005-07-12 08:20:02 645 353 2005-07-21 09:16:02 2 2006-02-16 02:30:53
  36489. 6611 2005-07-12 08:20:23 1604 286 2005-07-16 07:19:23 1 2006-02-16 02:30:53
  36490. 6612 2005-07-12 08:28:33 235 152 2005-07-17 06:25:33 1 2006-02-16 02:30:53
  36491. 6613 2005-07-12 08:30:07 3421 460 2005-07-14 10:25:07 2 2006-02-16 02:30:53
  36492. 6614 2005-07-12 08:33:49 3004 144 2005-07-18 07:28:49 2 2006-02-16 02:30:53
  36493. 6615 2005-07-12 08:36:22 23 438 2005-07-20 09:03:22 1 2006-02-16 02:30:53
  36494. 6616 2005-07-12 08:37:30 1833 179 2005-07-20 10:33:30 1 2006-02-16 02:30:53
  36495. 6617 2005-07-12 08:39:56 2292 248 2005-07-14 09:32:56 2 2006-02-16 02:30:53
  36496. 6618 2005-07-12 08:41:42 4266 327 2005-07-14 05:34:42 1 2006-02-16 02:30:53
  36497. 6619 2005-07-12 08:50:48 4062 305 2005-07-14 11:54:48 1 2006-02-16 02:30:53
  36498. 6620 2005-07-12 08:51:03 2362 337 2005-07-16 03:59:03 2 2006-02-16 02:30:53
  36499. 6621 2005-07-12 08:57:30 2229 561 2005-07-14 09:47:30 1 2006-02-16 02:30:53
  36500. 6622 2005-07-12 09:04:11 4350 325 2005-07-13 04:27:11 1 2006-02-16 02:30:53
  36501. 6623 2005-07-12 09:05:34 4412 302 2005-07-19 13:54:34 2 2006-02-16 02:30:53
  36502. 6624 2005-07-12 09:05:50 3946 335 2005-07-18 13:59:50 2 2006-02-16 02:30:53
  36503. 6625 2005-07-12 09:06:40 735 443 2005-07-21 04:57:40 2 2006-02-16 02:30:53
  36504. 6626 2005-07-12 09:16:24 2418 269 2005-07-17 04:06:24 2 2006-02-16 02:30:53
  36505. 6627 2005-07-12 09:16:46 626 565 2005-07-17 10:58:46 1 2006-02-16 02:30:53
  36506. 6628 2005-07-12 09:18:08 2894 211 2005-07-21 04:27:08 2 2006-02-16 02:30:53
  36507. 6629 2005-07-12 09:18:35 2855 582 2005-07-20 11:34:35 2 2006-02-16 02:30:53
  36508. 6630 2005-07-12 09:30:05 1843 462 2005-07-14 08:29:05 2 2006-02-16 02:30:53
  36509. 6631 2005-07-12 09:31:43 2340 204 2005-07-15 05:00:43 2 2006-02-16 02:30:53
  36510. 6632 2005-07-12 09:33:10 2929 442 2005-07-15 11:36:10 1 2006-02-16 02:30:53
  36511. 6633 2005-07-12 09:35:42 2908 150 2005-07-13 12:56:42 2 2006-02-16 02:30:53
  36512. 6634 2005-07-12 09:37:18 2943 50 2005-07-13 09:28:18 1 2006-02-16 02:30:53
  36513. 6635 2005-07-12 09:47:58 515 273 2005-07-16 15:43:58 1 2006-02-16 02:30:53
  36514. 6636 2005-07-12 09:49:46 3270 441 2005-07-14 12:15:46 1 2006-02-16 02:30:53
  36515. 6637 2005-07-12 09:57:39 2852 164 2005-07-19 08:40:39 1 2006-02-16 02:30:53
  36516. 6638 2005-07-12 09:58:02 207 87 2005-07-13 09:40:02 1 2006-02-16 02:30:53
  36517. 6639 2005-07-12 10:00:44 3385 587 2005-07-19 04:56:44 1 2006-02-16 02:30:53
  36518. 6640 2005-07-12 10:27:19 2794 148 2005-07-21 06:28:19 2 2006-02-16 02:30:53
  36519. 6641 2005-07-12 10:33:14 2165 334 2005-07-20 08:24:14 2 2006-02-16 02:30:53
  36520. 6642 2005-07-12 10:37:52 201 441 2005-07-13 15:13:52 1 2006-02-16 02:30:53
  36521. 6643 2005-07-12 10:39:22 174 88 2005-07-18 13:52:22 1 2006-02-16 02:30:53
  36522. 6644 2005-07-12 10:39:39 2667 285 2005-07-14 11:50:39 1 2006-02-16 02:30:53
  36523. 6645 2005-07-12 10:39:55 2858 73 2005-07-17 07:41:55 1 2006-02-16 02:30:53
  36524. 6646 2005-07-12 10:41:34 4061 508 2005-07-15 05:31:34 1 2006-02-16 02:30:53
  36525. 6647 2005-07-12 10:43:53 1841 8 2005-07-14 05:37:53 1 2006-02-16 02:30:53
  36526. 6648 2005-07-12 10:46:30 718 356 2005-07-14 16:15:30 1 2006-02-16 02:30:53
  36527. 6649 2005-07-12 10:51:09 70 57 2005-07-14 16:05:09 2 2006-02-16 02:30:53
  36528. 6650 2005-07-12 10:57:10 1589 526 2005-07-14 07:24:10 1 2006-02-16 02:30:53
  36529. 6651 2005-07-12 10:57:28 98 447 2005-07-15 06:06:28 2 2006-02-16 02:30:53
  36530. 6652 2005-07-12 10:59:38 2200 518 2005-07-13 13:52:38 1 2006-02-16 02:30:53
  36531. 6653 2005-07-12 11:06:17 614 25 2005-07-19 16:52:17 2 2006-02-16 02:30:53
  36532. 6654 2005-07-12 11:06:28 2870 458 2005-07-20 10:27:28 1 2006-02-16 02:30:53
  36533. 6655 2005-07-12 11:08:32 3937 100 2005-07-15 15:17:32 1 2006-02-16 02:30:53
  36534. 6656 2005-07-12 11:09:47 2282 330 2005-07-14 05:50:47 1 2006-02-16 02:30:53
  36535. 6657 2005-07-12 11:11:36 3697 553 2005-07-16 15:56:36 1 2006-02-16 02:30:53
  36536. 6658 2005-07-12 11:13:21 172 27 2005-07-17 09:10:21 2 2006-02-16 02:30:53
  36537. 6659 2005-07-12 11:18:05 2285 134 2005-07-16 16:45:05 2 2006-02-16 02:30:53
  36538. 6660 2005-07-12 11:20:12 446 598 2005-07-20 12:58:12 2 2006-02-16 02:30:53
  36539. 6661 2005-07-12 11:20:39 2367 315 2005-07-16 08:17:39 2 2006-02-16 02:30:53
  36540. 6662 2005-07-12 11:21:06 1464 99 2005-07-13 13:00:06 1 2006-02-16 02:30:53
  36541. 6663 2005-07-12 11:27:35 4364 5 2005-07-21 16:35:35 1 2006-02-16 02:30:53
  36542. 6664 2005-07-12 11:28:22 4578 351 2005-07-15 09:30:22 1 2006-02-16 02:30:53
  36543. 6665 2005-07-12 11:29:14 2912 587 2005-07-19 11:26:14 2 2006-02-16 02:30:53
  36544. 6666 2005-07-12 11:32:15 3194 314 2005-07-14 16:09:15 2 2006-02-16 02:30:53
  36545. 6667 2005-07-12 11:36:22 215 50 2005-07-19 12:53:22 1 2006-02-16 02:30:53
  36546. 6668 2005-07-12 11:37:45 1498 199 2005-07-14 13:28:45 2 2006-02-16 02:30:53
  36547. 6669 2005-07-12 11:39:55 1420 355 2005-07-20 05:56:55 1 2006-02-16 02:30:53
  36548. 6670 2005-07-12 11:44:33 3106 249 2005-07-19 07:54:33 2 2006-02-16 02:30:53
  36549. 6671 2005-07-12 11:48:48 955 526 2005-07-19 16:55:48 2 2006-02-16 02:30:53
  36550. 6672 2005-07-12 11:49:16 375 439 2005-07-13 07:03:16 2 2006-02-16 02:30:53
  36551. 6673 2005-07-12 11:50:56 1997 322 2005-07-13 14:27:56 1 2006-02-16 02:30:53
  36552. 6674 2005-07-12 11:51:54 2385 399 2005-07-13 16:57:54 1 2006-02-16 02:30:53
  36553. 6675 2005-07-12 11:53:06 2124 523 2005-07-13 06:09:06 1 2006-02-16 02:30:53
  36554. 6676 2005-07-12 11:53:40 2294 571 2005-07-19 09:15:40 1 2006-02-16 02:30:53
  36555. 6677 2005-07-12 11:58:14 2389 516 2005-07-21 06:05:14 2 2006-02-16 02:30:53
  36556. 6678 2005-07-12 11:58:36 3473 330 2005-07-15 17:50:36 2 2006-02-16 02:30:53
  36557. 6679 2005-07-12 12:01:07 3664 586 2005-07-14 11:36:07 1 2006-02-16 02:30:53
  36558. 6680 2005-07-12 12:01:56 2887 43 2005-07-16 17:32:56 1 2006-02-16 02:30:53
  36559. 6681 2005-07-12 12:04:12 854 368 2005-07-19 11:01:12 2 2006-02-16 02:30:53
  36560. 6682 2005-07-12 12:12:43 1984 339 2005-07-21 10:49:43 2 2006-02-16 02:30:53
  36561. 6683 2005-07-12 12:14:05 3433 244 2005-07-17 14:02:05 2 2006-02-16 02:30:53
  36562. 6684 2005-07-12 12:14:42 2817 583 2005-07-21 11:07:42 2 2006-02-16 02:30:53
  36563. 6685 2005-07-12 12:16:28 1434 5 2005-07-19 17:03:28 1 2006-02-16 02:30:53
  36564. 6686 2005-07-12 12:18:38 3804 6 2005-07-13 17:56:38 2 2006-02-16 02:30:53
  36565. 6687 2005-07-12 12:19:23 2736 128 2005-07-19 17:12:23 1 2006-02-16 02:30:53
  36566. 6688 2005-07-12 12:22:12 2377 246 2005-07-14 14:05:12 1 2006-02-16 02:30:53
  36567. 6689 2005-07-12 12:22:13 1568 525 2005-07-16 07:44:13 1 2006-02-16 02:30:53
  36568. 6690 2005-07-12 12:23:02 4254 447 2005-07-16 15:39:02 2 2006-02-16 02:30:53
  36569. 6691 2005-07-12 12:26:38 403 192 2005-07-18 13:26:38 2 2006-02-16 02:30:53
  36570. 6692 2005-07-12 12:35:39 2837 372 2005-07-20 11:20:39 2 2006-02-16 02:30:53
  36571. 6693 2005-07-12 12:37:00 2014 573 2005-07-20 09:36:00 1 2006-02-16 02:30:53
  36572. 6694 2005-07-12 12:39:23 586 204 2005-07-19 14:47:23 1 2006-02-16 02:30:53
  36573. 6695 2005-07-12 12:39:39 3088 550 2005-07-17 13:36:39 2 2006-02-16 02:30:53
  36574. 6696 2005-07-12 12:44:04 299 273 2005-07-16 14:17:04 1 2006-02-16 02:30:53
  36575. 6697 2005-07-12 12:44:57 210 103 2005-07-19 13:02:57 1 2006-02-16 02:30:53
  36576. 6698 2005-07-12 12:45:00 4419 64 2005-07-16 11:16:00 2 2006-02-16 02:30:53
  36577. 6699 2005-07-12 12:45:21 3411 565 2005-07-15 12:59:21 1 2006-02-16 02:30:53
  36578. 6700 2005-07-12 12:47:22 3063 184 2005-07-21 16:04:22 1 2006-02-16 02:30:53
  36579. 6701 2005-07-12 12:47:59 3428 454 2005-07-13 10:28:59 1 2006-02-16 02:30:53
  36580. 6702 2005-07-12 12:48:03 233 164 2005-07-13 11:55:03 1 2006-02-16 02:30:53
  36581. 6703 2005-07-12 12:50:19 46 470 2005-07-16 13:41:19 1 2006-02-16 02:30:53
  36582. 6704 2005-07-12 12:50:24 1590 595 2005-07-20 16:41:24 2 2006-02-16 02:30:53
  36583. 6705 2005-07-12 12:53:11 4268 363 2005-07-13 07:17:11 1 2006-02-16 02:30:53
  36584. 6706 2005-07-12 12:59:16 4552 267 2005-07-19 10:37:16 1 2006-02-16 02:30:53
  36585. 6707 2005-07-12 13:07:55 406 80 2005-07-16 16:26:55 2 2006-02-16 02:30:53
  36586. 6708 2005-07-12 13:10:55 372 82 2005-07-21 07:36:55 1 2006-02-16 02:30:53
  36587. 6709 2005-07-12 13:20:41 4049 322 2005-07-16 10:37:41 2 2006-02-16 02:30:53
  36588. 6710 2005-07-12 13:23:09 806 462 2005-07-20 10:10:09 2 2006-02-16 02:30:53
  36589. 6711 2005-07-12 13:23:40 2247 257 2005-07-20 11:45:40 2 2006-02-16 02:30:53
  36590. 6712 2005-07-12 13:24:47 4581 226 2005-07-20 09:35:47 2 2006-02-16 02:30:53
  36591. 6713 2005-07-12 13:27:36 4218 557 2005-07-16 11:14:36 1 2006-02-16 02:30:53
  36592. 6714 2005-07-12 13:29:06 1947 370 2005-07-18 16:02:06 2 2006-02-16 02:30:53
  36593. 6715 2005-07-12 13:32:28 643 386 2005-07-15 17:01:28 2 2006-02-16 02:30:53
  36594. 6716 2005-07-12 13:34:58 2783 367 2005-07-19 15:09:58 1 2006-02-16 02:30:53
  36595. 6717 2005-07-12 13:35:02 523 273 2005-07-20 15:03:02 1 2006-02-16 02:30:53
  36596. 6718 2005-07-12 13:38:06 2283 541 2005-07-18 09:05:06 1 2006-02-16 02:30:53
  36597. 6719 2005-07-12 13:40:37 739 330 2005-07-15 15:23:37 2 2006-02-16 02:30:53
  36598. 6720 2005-07-12 13:41:16 2704 151 2005-07-13 14:41:16 2 2006-02-16 02:30:53
  36599. 6721 2005-07-12 13:42:58 2798 462 2005-07-19 16:39:58 2 2006-02-16 02:30:53
  36600. 6722 2005-07-12 13:44:03 3124 211 2005-07-19 12:43:03 2 2006-02-16 02:30:53
  36601. 6723 2005-07-12 13:44:57 2678 499 2005-07-14 15:57:57 2 2006-02-16 02:30:53
  36602. 6724 2005-07-12 13:45:15 2486 262 2005-07-19 19:18:15 1 2006-02-16 02:30:53
  36603. 6725 2005-07-12 13:47:17 831 213 2005-07-17 13:31:17 1 2006-02-16 02:30:53
  36604. 6726 2005-07-12 13:48:14 4494 97 2005-07-16 11:11:14 1 2006-02-16 02:30:53
  36605. 6727 2005-07-12 13:54:25 3793 407 2005-07-14 17:29:25 1 2006-02-16 02:30:53
  36606. 6728 2005-07-12 13:56:48 2113 414 2005-07-15 18:49:48 1 2006-02-16 02:30:53
  36607. 6729 2005-07-12 13:58:23 2495 455 2005-07-19 09:34:23 2 2006-02-16 02:30:53
  36608. 6730 2005-07-12 13:58:25 1552 532 2005-07-20 13:01:25 1 2006-02-16 02:30:53
  36609. 6731 2005-07-12 13:58:27 844 593 2005-07-15 10:04:27 2 2006-02-16 02:30:53
  36610. 6732 2005-07-12 13:58:51 1913 299 2005-07-17 17:42:51 1 2006-02-16 02:30:53
  36611. 6733 2005-07-12 14:04:01 1476 585 2005-07-21 18:57:01 2 2006-02-16 02:30:53
  36612. 6734 2005-07-12 14:04:24 2248 446 2005-07-21 19:47:24 1 2006-02-16 02:30:53
  36613. 6735 2005-07-12 14:08:20 276 428 2005-07-18 09:41:20 2 2006-02-16 02:30:53
  36614. 6736 2005-07-12 14:16:50 530 342 2005-07-15 16:26:50 1 2006-02-16 02:30:53
  36615. 6737 2005-07-12 14:16:52 315 304 2005-07-18 19:48:52 1 2006-02-16 02:30:53
  36616. 6738 2005-07-12 14:17:55 1197 366 2005-07-21 10:11:55 2 2006-02-16 02:30:53
  36617. 6739 2005-07-12 14:22:08 1221 71 2005-07-18 16:57:08 2 2006-02-16 02:30:53
  36618. 6740 2005-07-12 14:22:08 2431 139 2005-07-14 14:35:08 1 2006-02-16 02:30:53
  36619. 6741 2005-07-12 14:24:16 237 359 2005-07-15 08:31:16 1 2006-02-16 02:30:53
  36620. 6742 2005-07-12 14:25:31 4242 558 2005-07-17 08:50:31 2 2006-02-16 02:30:53
  36621. 6743 2005-07-12 14:29:25 158 261 2005-07-13 13:13:25 1 2006-02-16 02:30:53
  36622. 6744 2005-07-12 14:30:28 2565 64 2005-07-14 16:20:28 1 2006-02-16 02:30:53
  36623. 6745 2005-07-12 14:30:51 1331 524 2005-07-13 13:42:51 2 2006-02-16 02:30:53
  36624. 6746 2005-07-12 14:33:01 3127 537 2005-07-17 19:52:01 2 2006-02-16 02:30:53
  36625. 6747 2005-07-12 14:33:21 3651 126 2005-07-13 09:59:21 2 2006-02-16 02:30:53
  36626. 6748 2005-07-12 14:39:27 3655 540 2005-07-18 13:40:27 2 2006-02-16 02:30:53
  36627. 6749 2005-07-12 14:43:05 2895 334 2005-07-21 15:13:05 2 2006-02-16 02:30:53
  36628. 6750 2005-07-12 14:49:39 3838 459 2005-07-18 18:43:39 2 2006-02-16 02:30:53
  36629. 6751 2005-07-12 14:50:34 1749 312 2005-07-15 19:39:34 2 2006-02-16 02:30:53
  36630. 6752 2005-07-12 14:53:15 3392 453 2005-07-20 09:23:15 1 2006-02-16 02:30:53
  36631. 6753 2005-07-12 14:55:42 2591 147 2005-07-18 19:16:42 1 2006-02-16 02:30:53
  36632. 6754 2005-07-12 14:59:24 1460 114 2005-07-14 11:04:24 2 2006-02-16 02:30:53
  36633. 6755 2005-07-12 15:07:49 2542 126 2005-07-21 18:43:49 2 2006-02-16 02:30:53
  36634. 6756 2005-07-12 15:08:28 1174 531 2005-07-13 14:25:28 2 2006-02-16 02:30:53
  36635. 6757 2005-07-12 15:09:48 547 558 2005-07-17 15:04:48 2 2006-02-16 02:30:53
  36636. 6758 2005-07-12 15:13:49 4098 546 2005-07-20 09:31:49 2 2006-02-16 02:30:53
  36637. 6759 2005-07-12 15:14:48 3624 49 2005-07-15 11:29:48 1 2006-02-16 02:30:53
  36638. 6760 2005-07-12 15:16:00 501 502 2005-07-20 13:20:00 2 2006-02-16 02:30:53
  36639. 6761 2005-07-12 15:17:42 3645 7 2005-07-18 17:59:42 2 2006-02-16 02:30:53
  36640. 6762 2005-07-12 15:25:33 3857 262 2005-07-21 18:57:33 1 2006-02-16 02:30:53
  36641. 6763 2005-07-12 15:26:34 3364 314 2005-07-18 16:38:34 2 2006-02-16 02:30:53
  36642. 6764 2005-07-12 15:29:27 4407 396 2005-07-21 20:00:27 2 2006-02-16 02:30:53
  36643. 6765 2005-07-12 15:30:47 2571 433 2005-07-19 14:19:47 2 2006-02-16 02:30:53
  36644. 6766 2005-07-12 15:32:01 3615 171 2005-07-18 14:03:01 2 2006-02-16 02:30:53
  36645. 6767 2005-07-12 15:46:55 1819 208 2005-07-17 17:36:55 2 2006-02-16 02:30:53
  36646. 6768 2005-07-12 15:47:51 3418 151 2005-07-19 21:17:51 2 2006-02-16 02:30:53
  36647. 6769 2005-07-12 15:48:54 1687 63 2005-07-21 14:39:54 2 2006-02-16 02:30:53
  36648. 6770 2005-07-12 15:49:40 2080 360 2005-07-20 10:14:40 2 2006-02-16 02:30:53
  36649. 6771 2005-07-12 15:54:40 1113 396 2005-07-17 15:56:40 2 2006-02-16 02:30:53
  36650. 6772 2005-07-12 15:55:35 3810 89 2005-07-18 10:47:35 1 2006-02-16 02:30:53
  36651. 6773 2005-07-12 15:55:39 3346 12 2005-07-18 17:52:39 2 2006-02-16 02:30:53
  36652. 6774 2005-07-12 15:56:08 868 171 2005-07-13 18:42:08 1 2006-02-16 02:30:53
  36653. 6775 2005-07-12 16:01:44 2909 383 2005-07-19 14:11:44 1 2006-02-16 02:30:53
  36654. 6776 2005-07-12 16:02:09 2398 348 2005-07-20 16:31:09 1 2006-02-16 02:30:53
  36655. 6777 2005-07-12 16:04:40 4089 351 2005-07-20 15:05:40 2 2006-02-16 02:30:53
  36656. 6778 2005-07-12 16:06:00 4503 381 2005-07-14 21:57:00 2 2006-02-16 02:30:53
  36657. 6779 2005-07-12 16:10:50 4468 404 2005-07-17 14:51:50 2 2006-02-16 02:30:53
  36658. 6780 2005-07-12 16:18:12 1255 121 2005-07-13 17:56:12 2 2006-02-16 02:30:53
  36659. 6781 2005-07-12 16:21:47 3783 533 2005-07-15 19:52:47 1 2006-02-16 02:30:53
  36660. 6782 2005-07-12 16:23:25 2742 199 2005-07-20 18:46:25 2 2006-02-16 02:30:53
  36661. 6783 2005-07-12 16:27:56 3633 506 2005-07-13 12:11:56 2 2006-02-16 02:30:53
  36662. 6784 2005-07-12 16:28:49 197 578 2005-07-15 17:27:49 1 2006-02-16 02:30:53
  36663. 6785 2005-07-12 16:30:57 4448 69 2005-07-18 20:46:57 1 2006-02-16 02:30:53
  36664. 6786 2005-07-12 16:32:33 2011 546 2005-07-16 12:42:33 2 2006-02-16 02:30:53
  36665. 6787 2005-07-12 16:33:28 1481 342 2005-07-18 21:48:28 2 2006-02-16 02:30:53
  36666. 6788 2005-07-12 16:33:44 1162 460 2005-07-20 15:38:44 2 2006-02-16 02:30:53
  36667. 6789 2005-07-12 16:34:40 1973 76 2005-07-14 17:02:40 2 2006-02-16 02:30:53
  36668. 6790 2005-07-12 16:34:59 4486 400 2005-07-17 21:43:59 2 2006-02-16 02:30:53
  36669. 6791 2005-07-12 16:35:07 1495 144 2005-07-20 15:32:07 2 2006-02-16 02:30:53
  36670. 6792 2005-07-12 16:37:28 510 571 2005-07-20 11:20:28 2 2006-02-16 02:30:53
  36671. 6793 2005-07-12 16:37:55 103 148 2005-07-21 16:04:55 2 2006-02-16 02:30:53
  36672. 6794 2005-07-12 16:38:23 813 233 2005-07-20 17:36:23 2 2006-02-16 02:30:53
  36673. 6795 2005-07-12 16:41:00 1489 245 2005-07-21 20:52:00 1 2006-02-16 02:30:53
  36674. 6796 2005-07-12 16:44:16 227 291 2005-07-16 14:48:16 2 2006-02-16 02:30:53
  36675. 6797 2005-07-12 16:47:06 1536 469 2005-07-14 14:38:06 2 2006-02-16 02:30:53
  36676. 6798 2005-07-12 16:49:11 275 115 2005-07-19 12:11:11 2 2006-02-16 02:30:53
  36677. 6799 2005-07-12 16:52:13 2778 42 2005-07-14 15:11:13 2 2006-02-16 02:30:53
  36678. 6800 2005-07-12 17:03:56 3742 599 2005-07-21 20:32:56 2 2006-02-16 02:30:53
  36679. 6801 2005-07-12 17:09:08 872 500 2005-07-21 22:25:08 1 2006-02-16 02:30:53
  36680. 6802 2005-07-12 17:14:17 2942 298 2005-07-17 11:54:17 2 2006-02-16 02:30:53
  36681. 6803 2005-07-12 17:21:49 2676 490 2005-07-14 18:01:49 2 2006-02-16 02:30:53
  36682. 6804 2005-07-12 17:22:06 1554 269 2005-07-21 11:37:06 1 2006-02-16 02:30:53
  36683. 6805 2005-07-12 17:23:01 1758 262 2005-07-21 19:38:01 2 2006-02-16 02:30:53
  36684. 6806 2005-07-12 17:31:43 656 179 2005-07-17 14:36:43 1 2006-02-16 02:30:53
  36685. 6807 2005-07-12 17:33:53 669 376 2005-07-18 16:28:53 2 2006-02-16 02:30:53
  36686. 6808 2005-07-12 17:36:42 362 263 2005-07-18 23:33:42 2 2006-02-16 02:30:53
  36687. 6809 2005-07-12 17:51:54 3455 168 2005-07-17 15:10:54 1 2006-02-16 02:30:53
  36688. 6810 2005-07-12 17:54:19 2802 485 2005-07-20 16:58:19 2 2006-02-16 02:30:53
  36689. 6811 2005-07-12 17:54:33 1572 107 2005-07-20 17:39:33 1 2006-02-16 02:30:53
  36690. 6812 2005-07-12 18:03:25 2227 553 2005-07-20 18:33:25 2 2006-02-16 02:30:53
  36691. 6813 2005-07-12 18:03:50 135 54 2005-07-16 16:30:50 1 2006-02-16 02:30:53
  36692. 6814 2005-07-12 18:11:58 1863 579 2005-07-18 20:37:58 2 2006-02-16 02:30:53
  36693. 6815 2005-07-12 18:14:10 3236 468 2005-07-17 14:16:10 1 2006-02-16 02:30:53
  36694. 6816 2005-07-12 18:18:50 2963 290 2005-07-18 21:09:50 2 2006-02-16 02:30:53
  36695. 6817 2005-07-12 18:19:57 184 135 2005-07-19 22:53:57 1 2006-02-16 02:30:53
  36696. 6818 2005-07-12 18:20:54 1013 153 2005-07-21 00:03:54 2 2006-02-16 02:30:53
  36697. 6819 2005-07-12 18:21:01 1253 198 2005-07-13 21:14:01 1 2006-02-16 02:30:53
  36698. 6820 2005-07-12 18:21:30 223 243 2005-07-14 15:14:30 1 2006-02-16 02:30:53
  36699. 6821 2005-07-12 18:22:10 623 363 2005-07-14 13:25:10 2 2006-02-16 02:30:53
  36700. 6822 2005-07-12 18:23:39 1592 300 2005-07-19 21:06:39 1 2006-02-16 02:30:53
  36701. 6823 2005-07-12 18:24:31 795 557 2005-07-17 23:13:31 1 2006-02-16 02:30:53
  36702. 6824 2005-07-12 18:26:46 858 579 2005-07-21 15:23:46 1 2006-02-16 02:30:53
  36703. 6825 2005-07-12 18:28:12 2342 281 2005-07-15 19:24:12 1 2006-02-16 02:30:53
  36704. 6826 2005-07-12 18:32:02 1708 408 2005-07-16 23:21:02 1 2006-02-16 02:30:53
  36705. 6827 2005-07-12 18:33:45 1529 283 2005-07-13 19:09:45 1 2006-02-16 02:30:53
  36706. 6828 2005-07-12 18:38:51 874 502 2005-07-14 20:10:51 1 2006-02-16 02:30:53
  36707. 6829 2005-07-12 18:38:59 4184 361 2005-07-16 23:25:59 1 2006-02-16 02:30:53
  36708. 6830 2005-07-12 18:42:55 1943 578 2005-07-17 17:58:55 1 2006-02-16 02:30:53
  36709. 6831 2005-07-12 18:44:04 924 163 2005-07-16 21:39:04 2 2006-02-16 02:30:53
  36710. 6832 2005-07-12 18:51:41 444 220 2005-07-20 13:29:41 2 2006-02-16 02:30:53
  36711. 6833 2005-07-12 18:53:34 912 301 2005-07-19 22:21:34 2 2006-02-16 02:30:53
  36712. 6834 2005-07-12 18:53:37 897 533 2005-07-19 13:42:37 1 2006-02-16 02:30:53
  36713. 6835 2005-07-12 18:58:03 1444 367 2005-07-18 00:41:03 1 2006-02-16 02:30:53
  36714. 6836 2005-07-12 18:58:05 2744 113 2005-07-15 17:45:05 1 2006-02-16 02:30:53
  36715. 6837 2005-07-12 18:59:45 1203 533 2005-07-21 22:47:45 2 2006-02-16 02:30:53
  36716. 6838 2005-07-12 19:01:30 3492 354 2005-07-17 23:42:30 1 2006-02-16 02:30:53
  36717. 6839 2005-07-12 19:03:19 3900 357 2005-07-15 23:48:19 1 2006-02-16 02:30:53
  36718. 6840 2005-07-12 19:03:22 1381 323 2005-07-21 18:34:22 2 2006-02-16 02:30:53
  36719. 6841 2005-07-12 19:04:24 2265 108 2005-07-14 23:58:24 1 2006-02-16 02:30:53
  36720. 6842 2005-07-12 19:07:55 3376 366 2005-07-19 22:47:55 1 2006-02-16 02:30:53
  36721. 6843 2005-07-12 19:14:05 746 561 2005-07-20 23:15:05 1 2006-02-16 02:30:53
  36722. 6844 2005-07-12 19:14:53 3211 482 2005-07-18 16:07:53 2 2006-02-16 02:30:53
  36723. 6845 2005-07-12 19:20:41 3833 414 2005-07-14 15:27:41 1 2006-02-16 02:30:53
  36724. 6846 2005-07-12 19:20:45 1214 18 2005-07-17 00:06:45 1 2006-02-16 02:30:53
  36725. 6847 2005-07-12 19:22:37 346 63 2005-07-21 18:53:37 2 2006-02-16 02:30:53
  36726. 6848 2005-07-12 19:24:07 1782 433 2005-07-14 17:03:07 1 2006-02-16 02:30:53
  36727. 6849 2005-07-12 19:29:19 4307 479 2005-07-19 22:03:19 1 2006-02-16 02:30:53
  36728. 6850 2005-07-12 19:30:42 1145 433 2005-07-17 21:26:42 2 2006-02-16 02:30:53
  36729. 6851 2005-07-12 19:32:14 664 280 2005-07-17 21:03:14 1 2006-02-16 02:30:53
  36730. 6852 2005-07-12 19:33:49 2182 75 2005-07-13 20:01:49 2 2006-02-16 02:30:53
  36731. 6853 2005-07-12 19:38:11 4006 299 2005-07-20 00:14:11 1 2006-02-16 02:30:53
  36732. 6854 2005-07-12 19:38:57 3173 151 2005-07-16 16:28:57 1 2006-02-16 02:30:53
  36733. 6855 2005-07-12 19:46:29 2657 24 2005-07-15 16:56:29 2 2006-02-16 02:30:53
  36734. 6856 2005-07-12 19:50:16 4338 275 2005-07-14 22:25:16 1 2006-02-16 02:30:53
  36735. 6857 2005-07-12 19:53:30 424 196 2005-07-13 15:22:30 1 2006-02-16 02:30:53
  36736. 6858 2005-07-12 19:53:51 1095 516 2005-07-19 14:12:51 1 2006-02-16 02:30:53
  36737. 6859 2005-07-12 19:53:57 4108 321 2005-07-17 19:48:57 2 2006-02-16 02:30:53
  36738. 6860 2005-07-12 19:54:17 2907 91 2005-07-18 13:59:17 1 2006-02-16 02:30:53
  36739. 6861 2005-07-12 19:56:52 354 83 2005-07-13 16:02:52 1 2006-02-16 02:30:53
  36740. 6862 2005-07-12 19:58:09 3477 231 2005-07-18 15:48:09 2 2006-02-16 02:30:53
  36741. 6863 2005-07-12 19:58:34 229 484 2005-07-21 16:57:34 1 2006-02-16 02:30:53
  36742. 6864 2005-07-12 19:59:25 2252 38 2005-07-19 15:52:25 2 2006-02-16 02:30:53
  36743. 6865 2005-07-12 20:02:40 1428 175 2005-07-20 00:39:40 2 2006-02-16 02:30:53
  36744. 6866 2005-07-12 20:03:44 2481 312 2005-07-15 01:55:44 1 2006-02-16 02:30:53
  36745. 6867 2005-07-12 20:06:47 3354 190 2005-07-19 16:59:47 1 2006-02-16 02:30:53
  36746. 6868 2005-07-12 20:10:17 719 306 2005-07-15 22:34:17 2 2006-02-16 02:30:53
  36747. 6869 2005-07-12 20:12:06 3546 278 2005-07-13 18:37:06 1 2006-02-16 02:30:53
  36748. 6870 2005-07-12 20:13:45 3102 13 2005-07-16 22:09:45 2 2006-02-16 02:30:53
  36749. 6871 2005-07-12 20:13:49 3612 204 2005-07-14 20:11:49 2 2006-02-16 02:30:53
  36750. 6872 2005-07-12 20:15:04 3246 86 2005-07-18 18:19:04 1 2006-02-16 02:30:53
  36751. 6873 2005-07-12 20:20:50 802 161 2005-07-17 01:51:50 1 2006-02-16 02:30:53
  36752. 6874 2005-07-12 20:20:53 4478 539 2005-07-19 19:41:53 1 2006-02-16 02:30:53
  36753. 6875 2005-07-12 20:23:05 3420 172 2005-07-19 00:09:05 2 2006-02-16 02:30:53
  36754. 6876 2005-07-12 20:32:50 34 531 2005-07-16 21:12:50 1 2006-02-16 02:30:53
  36755. 6877 2005-07-12 20:32:58 3968 231 2005-07-18 18:01:58 1 2006-02-16 02:30:53
  36756. 6878 2005-07-12 20:37:13 2428 363 2005-07-19 20:13:13 2 2006-02-16 02:30:53
  36757. 6879 2005-07-12 20:37:37 1901 416 2005-07-20 15:40:37 2 2006-02-16 02:30:53
  36758. 6880 2005-07-12 20:41:35 1473 229 2005-07-17 02:22:35 1 2006-02-16 02:30:53
  36759. 6881 2005-07-12 20:46:35 2496 346 2005-07-21 00:26:35 2 2006-02-16 02:30:53
  36760. 6882 2005-07-12 20:50:39 2469 166 2005-07-14 21:01:39 1 2006-02-16 02:30:53
  36761. 6883 2005-07-12 20:50:48 468 596 2005-07-19 16:00:48 2 2006-02-16 02:30:53
  36762. 6884 2005-07-12 20:52:41 3642 17 2005-07-20 23:13:41 1 2006-02-16 02:30:53
  36763. 6885 2005-07-12 20:56:04 3972 159 2005-07-15 19:21:04 2 2006-02-16 02:30:53
  36764. 6886 2005-07-12 20:58:04 4533 429 2005-07-18 16:56:04 2 2006-02-16 02:30:53
  36765. 6887 2005-07-12 21:00:23 4487 542 2005-07-21 17:46:23 1 2006-02-16 02:30:53
  36766. 6888 2005-07-12 21:01:11 1896 490 2005-07-17 21:49:11 2 2006-02-16 02:30:53
  36767. 6889 2005-07-12 21:01:22 2919 198 2005-07-20 20:16:22 2 2006-02-16 02:30:53
  36768. 6890 2005-07-12 21:03:03 2538 473 2005-07-14 00:47:03 1 2006-02-16 02:30:53
  36769. 6891 2005-07-12 21:07:35 3189 507 2005-07-14 16:59:35 2 2006-02-16 02:30:53
  36770. 6892 2005-07-12 21:10:04 1567 138 2005-07-13 23:03:04 2 2006-02-16 02:30:53
  36771. 6893 2005-07-12 21:20:11 2611 377 2005-07-21 18:55:11 2 2006-02-16 02:30:53
  36772. 6894 2005-07-12 21:20:50 1347 315 2005-07-20 23:42:50 2 2006-02-16 02:30:53
  36773. 6895 2005-07-12 21:23:59 2935 599 2005-07-19 20:47:59 2 2006-02-16 02:30:53
  36774. 6896 2005-07-12 21:25:37 1266 111 2005-07-20 23:51:37 1 2006-02-16 02:30:53
  36775. 6897 2005-07-12 21:30:41 170 13 2005-07-15 03:19:41 1 2006-02-16 02:30:53
  36776. 6898 2005-07-12 21:39:04 1725 557 2005-07-15 20:30:04 1 2006-02-16 02:30:53
  36777. 6899 2005-07-12 21:44:16 3565 483 2005-07-21 22:21:16 2 2006-02-16 02:30:53
  36778. 6900 2005-07-12 21:45:25 129 292 2005-07-19 21:19:25 1 2006-02-16 02:30:53
  36779. 6901 2005-07-12 21:46:33 4574 158 2005-07-16 21:36:33 1 2006-02-16 02:30:53
  36780. 6902 2005-07-12 21:57:16 314 485 2005-07-14 20:56:16 1 2006-02-16 02:30:53
  36781. 6903 2005-07-12 21:58:15 3690 517 2005-07-14 01:38:15 2 2006-02-16 02:30:53
  36782. 6904 2005-07-12 22:02:09 2312 465 2005-07-17 16:42:09 1 2006-02-16 02:30:53
  36783. 6905 2005-07-12 22:02:18 763 25 2005-07-18 23:30:18 1 2006-02-16 02:30:53
  36784. 6906 2005-07-12 22:03:02 1435 335 2005-07-15 00:35:02 1 2006-02-16 02:30:53
  36785. 6907 2005-07-12 22:03:49 2516 575 2005-07-18 19:18:49 1 2006-02-16 02:30:53
  36786. 6908 2005-07-12 22:08:46 3161 529 2005-07-21 00:21:46 2 2006-02-16 02:30:53
  36787. 6909 2005-07-12 22:09:30 769 174 2005-07-17 02:05:30 2 2006-02-16 02:30:53
  36788. 6910 2005-07-12 22:11:21 1290 546 2005-07-21 02:35:21 1 2006-02-16 02:30:53
  36789. 6911 2005-07-12 22:14:34 901 361 2005-07-18 20:17:34 1 2006-02-16 02:30:53
  36790. 6912 2005-07-12 22:17:16 1701 471 2005-07-19 18:18:16 1 2006-02-16 02:30:53
  36791. 6913 2005-07-12 22:18:12 569 443 2005-07-14 23:03:12 2 2006-02-16 02:30:53
  36792. 6914 2005-07-12 22:26:56 496 361 2005-07-17 20:03:56 1 2006-02-16 02:30:53
  36793. 6915 2005-07-12 22:28:09 1243 559 2005-07-14 00:53:09 1 2006-02-16 02:30:53
  36794. 6916 2005-07-12 22:29:18 3311 88 2005-07-19 16:46:18 1 2006-02-16 02:30:53
  36795. 6917 2005-07-12 22:30:15 3048 23 2005-07-20 03:20:15 1 2006-02-16 02:30:53
  36796. 6918 2005-07-12 22:30:29 4085 140 2005-07-19 22:51:29 1 2006-02-16 02:30:53
  36797. 6919 2005-07-12 22:32:17 1122 540 2005-07-18 20:09:17 1 2006-02-16 02:30:53
  36798. 6920 2005-07-12 22:32:58 2301 109 2005-07-19 20:29:58 2 2006-02-16 02:30:53
  36799. 6921 2005-07-12 22:39:03 3322 265 2005-07-21 18:54:03 2 2006-02-16 02:30:53
  36800. 6922 2005-07-12 22:39:48 1114 371 2005-07-14 18:35:48 1 2006-02-16 02:30:53
  36801. 6923 2005-07-12 22:40:48 2642 490 2005-07-19 23:07:48 2 2006-02-16 02:30:53
  36802. 6924 2005-07-26 22:51:53 1257 502 2005-08-03 19:04:53 2 2006-02-16 02:30:53
  36803. 6925 2005-07-26 22:52:32 2919 42 2005-07-29 21:22:32 1 2006-02-16 02:30:53
  36804. 6926 2005-07-26 22:52:45 1276 354 2005-07-28 18:32:45 1 2006-02-16 02:30:53
  36805. 6927 2005-07-26 22:56:00 4511 470 2005-08-05 03:16:00 2 2006-02-16 02:30:53
  36806. 6928 2005-07-26 22:56:21 3605 487 2005-07-30 04:46:21 1 2006-02-16 02:30:53
  36807. 6929 2005-07-26 22:59:19 3339 508 2005-08-03 22:40:19 1 2006-02-16 02:30:53
  36808. 6930 2005-07-26 23:00:01 2989 393 2005-08-04 01:57:01 2 2006-02-16 02:30:53
  36809. 6931 2005-07-26 23:02:57 2794 333 2005-07-28 04:48:57 2 2006-02-16 02:30:53
  36810. 6932 2005-07-26 23:08:04 4517 463 2005-08-05 01:35:04 1 2006-02-16 02:30:53
  36811. 6933 2005-07-26 23:09:23 1334 385 2005-07-31 20:50:23 1 2006-02-16 02:30:53
  36812. 6934 2005-07-26 23:11:03 455 107 2005-08-04 19:18:03 1 2006-02-16 02:30:53
  36813. 6935 2005-07-26 23:13:10 2771 435 2005-07-27 18:09:10 1 2006-02-16 02:30:53
  36814. 6936 2005-07-26 23:13:34 60 538 2005-07-30 19:14:34 1 2006-02-16 02:30:53
  36815. 6937 2005-07-26 23:15:50 1768 592 2005-07-27 19:14:50 1 2006-02-16 02:30:53
  36816. 6938 2005-07-26 23:16:04 2058 427 2005-08-05 00:59:04 2 2006-02-16 02:30:53
  36817. 6939 2005-07-26 23:17:51 278 354 2005-08-03 21:12:51 2 2006-02-16 02:30:53
  36818. 6940 2005-07-26 23:18:35 3876 149 2005-08-05 01:44:35 2 2006-02-16 02:30:53
  36819. 6941 2005-07-26 23:18:49 1575 441 2005-07-31 00:23:49 2 2006-02-16 02:30:53
  36820. 6942 2005-07-26 23:27:40 1203 470 2005-07-31 03:17:40 2 2006-02-16 02:30:53
  36821. 6943 2005-07-26 23:28:13 2436 21 2005-07-30 02:22:13 2 2006-02-16 02:30:53
  36822. 6944 2005-07-26 23:34:02 1168 373 2005-08-05 01:27:02 1 2006-02-16 02:30:53
  36823. 6945 2005-07-26 23:35:29 1627 560 2005-07-28 00:12:29 1 2006-02-16 02:30:53
  36824. 6946 2005-07-26 23:40:07 1854 181 2005-08-04 01:18:07 2 2006-02-16 02:30:53
  36825. 6947 2005-07-26 23:42:03 760 200 2005-08-02 05:06:03 2 2006-02-16 02:30:53
  36826. 6948 2005-07-26 23:43:49 3088 228 2005-07-27 21:24:49 2 2006-02-16 02:30:53
  36827. 6949 2005-07-26 23:44:12 1594 103 2005-07-30 05:39:12 2 2006-02-16 02:30:53
  36828. 6950 2005-07-26 23:45:33 197 503 2005-07-31 04:40:33 2 2006-02-16 02:30:53
  36829. 6951 2005-07-26 23:47:31 3348 98 2005-07-31 22:17:31 1 2006-02-16 02:30:53
  36830. 6952 2005-07-26 23:51:27 4288 290 2005-07-30 02:45:27 2 2006-02-16 02:30:53
  36831. 6953 2005-07-26 23:52:47 2910 306 2005-07-30 23:07:47 1 2006-02-16 02:30:53
  36832. 6954 2005-07-26 23:55:13 1112 584 2005-07-28 19:01:13 2 2006-02-16 02:30:53
  36833. 6955 2005-07-26 23:55:48 1104 469 2005-08-02 03:25:48 2 2006-02-16 02:30:53
  36834. 6956 2005-07-26 23:55:57 2499 240 2005-08-03 21:41:57 1 2006-02-16 02:30:53
  36835. 6957 2005-07-27 00:00:00 2231 518 2005-07-29 19:32:00 2 2006-02-16 02:30:53
  36836. 6958 2005-07-27 00:02:41 657 333 2005-07-28 00:53:41 2 2006-02-16 02:30:53
  36837. 6959 2005-07-27 00:07:51 1618 452 2005-07-27 20:45:51 2 2006-02-16 02:30:53
  36838. 6960 2005-07-27 00:08:33 192 421 2005-08-03 20:58:33 2 2006-02-16 02:30:53
  36839. 6961 2005-07-27 00:10:49 2205 38 2005-07-30 00:26:49 2 2006-02-16 02:30:53
  36840. 6962 2005-07-27 00:10:58 4500 245 2005-07-30 02:11:58 2 2006-02-16 02:30:53
  36841. 6963 2005-07-27 00:13:02 4284 489 2005-08-03 18:13:02 1 2006-02-16 02:30:53
  36842. 6964 2005-07-27 00:15:04 1537 404 2005-07-31 00:04:04 2 2006-02-16 02:30:53
  36843. 6965 2005-07-27 00:15:18 74 185 2005-07-28 04:30:18 2 2006-02-16 02:30:53
  36844. 6966 2005-07-27 00:15:35 1577 45 2005-08-05 03:04:35 2 2006-02-16 02:30:53
  36845. 6967 2005-07-27 00:16:31 1145 296 2005-08-03 22:19:31 1 2006-02-16 02:30:53
  36846. 6968 2005-07-27 00:16:45 1662 370 2005-07-30 23:16:45 2 2006-02-16 02:30:53
  36847. 6969 2005-07-27 00:23:54 2650 579 2005-08-03 04:34:54 1 2006-02-16 02:30:53
  36848. 6970 2005-07-27 00:26:14 17 418 2005-08-03 20:00:14 2 2006-02-16 02:30:53
  36849. 6971 2005-07-27 00:26:17 3493 366 2005-08-01 03:59:17 2 2006-02-16 02:30:53
  36850. 6972 2005-07-27 00:31:25 1716 434 2005-07-28 22:15:25 2 2006-02-16 02:30:53
  36851. 6973 2005-07-27 00:32:04 4572 564 2005-07-29 01:05:04 2 2006-02-16 02:30:53
  36852. 6974 2005-07-27 00:39:16 2924 122 2005-08-04 01:59:16 2 2006-02-16 02:30:53
  36853. 6975 2005-07-27 00:39:54 3328 527 2005-08-02 19:49:54 1 2006-02-16 02:30:53
  36854. 6976 2005-07-27 00:40:01 3096 41 2005-07-31 22:30:01 2 2006-02-16 02:30:53
  36855. 6977 2005-07-27 00:40:50 3545 429 2005-08-02 19:08:50 2 2006-02-16 02:30:53
  36856. 6978 2005-07-27 00:47:40 3645 132 2005-07-31 04:32:40 2 2006-02-16 02:30:53
  36857. 6979 2005-07-27 00:49:53 1001 141 2005-07-31 03:59:53 2 2006-02-16 02:30:53
  36858. 6980 2005-07-27 00:50:30 1127 164 2005-08-03 23:35:30 1 2006-02-16 02:30:53
  36859. 6981 2005-07-27 00:51:38 154 362 2005-07-28 01:06:38 2 2006-02-16 02:30:53
  36860. 6982 2005-07-27 00:53:41 3843 284 2005-07-31 06:19:41 2 2006-02-16 02:30:53
  36861. 6983 2005-07-27 00:55:03 1758 443 2005-08-01 21:19:03 2 2006-02-16 02:30:53
  36862. 6984 2005-07-27 00:56:30 2407 297 2005-08-02 01:14:30 2 2006-02-16 02:30:53
  36863. 6985 2005-07-27 00:57:42 1834 448 2005-07-31 00:53:42 1 2006-02-16 02:30:53
  36864. 6986 2005-07-27 00:59:05 2104 262 2005-07-29 00:31:05 1 2006-02-16 02:30:53
  36865. 6987 2005-07-27 00:59:50 3134 334 2005-07-28 01:47:50 1 2006-02-16 02:30:53
  36866. 6988 2005-07-27 01:00:08 756 316 2005-07-31 04:35:08 2 2006-02-16 02:30:53
  36867. 6989 2005-07-27 01:00:34 4036 120 2005-07-30 23:53:34 1 2006-02-16 02:30:53
  36868. 6990 2005-07-27 01:02:46 4065 146 2005-07-31 00:22:46 1 2006-02-16 02:30:53
  36869. 6991 2005-07-27 01:03:06 319 307 2005-08-05 04:18:06 2 2006-02-16 02:30:53
  36870. 6992 2005-07-27 01:04:45 3411 106 2005-07-28 02:34:45 2 2006-02-16 02:30:53
  36871. 6993 2005-07-27 01:05:24 3114 154 2005-07-30 06:23:24 2 2006-02-16 02:30:53
  36872. 6994 2005-07-27 01:08:26 4316 400 2005-08-04 22:58:26 2 2006-02-16 02:30:53
  36873. 6995 2005-07-27 01:12:13 1630 66 2005-07-29 21:26:13 1 2006-02-16 02:30:53
  36874. 6996 2005-07-27 01:13:45 3237 236 2005-07-28 20:43:45 1 2006-02-16 02:30:53
  36875. 6997 2005-07-27 01:14:02 2130 342 2005-07-29 01:12:02 2 2006-02-16 02:30:53
  36876. 6998 2005-07-27 01:16:29 788 300 2005-07-30 05:50:29 2 2006-02-16 02:30:53
  36877. 6999 2005-07-27 01:21:19 12 224 2005-07-29 20:33:19 2 2006-02-16 02:30:53
  36878. 7000 2005-07-27 01:23:24 2024 31 2005-08-03 02:10:24 2 2006-02-16 02:30:53
  36879. 7001 2005-07-27 01:25:34 1460 240 2005-07-31 23:30:34 2 2006-02-16 02:30:53
  36880. 7002 2005-07-27 01:26:14 4157 349 2005-08-01 20:10:14 1 2006-02-16 02:30:53
  36881. 7003 2005-07-27 01:32:06 636 161 2005-07-30 21:33:06 2 2006-02-16 02:30:53
  36882. 7004 2005-07-27 01:36:05 4416 314 2005-08-03 23:46:05 1 2006-02-16 02:30:53
  36883. 7005 2005-07-27 01:38:36 2438 446 2005-08-02 05:56:36 2 2006-02-16 02:30:53
  36884. 7006 2005-07-27 01:42:20 3522 264 2005-08-03 03:19:20 1 2006-02-16 02:30:53
  36885. 7007 2005-07-27 01:43:39 4186 257 2005-07-31 21:04:39 1 2006-02-16 02:30:53
  36886. 7008 2005-07-27 01:44:03 3659 12 2005-07-28 21:19:03 2 2006-02-16 02:30:53
  36887. 7009 2005-07-27 01:45:44 1585 414 2005-07-28 05:50:44 1 2006-02-16 02:30:53
  36888. 7010 2005-07-27 01:56:01 3016 590 2005-07-30 04:40:01 1 2006-02-16 02:30:53
  36889. 7011 2005-07-27 01:58:34 4082 254 2005-07-28 06:11:34 1 2006-02-16 02:30:53
  36890. 7012 2005-07-27 02:01:03 779 239 2005-08-05 07:34:03 2 2006-02-16 02:30:53
  36891. 7013 2005-07-27 02:03:21 3919 463 2005-07-31 22:12:21 1 2006-02-16 02:30:53
  36892. 7014 2005-07-27 02:14:40 714 524 2005-08-03 00:32:40 2 2006-02-16 02:30:53
  36893. 7015 2005-07-27 02:15:01 376 34 2005-07-28 07:46:01 2 2006-02-16 02:30:53
  36894. 7016 2005-07-27 02:15:16 1425 423 2005-08-01 23:08:16 2 2006-02-16 02:30:53
  36895. 7017 2005-07-27 02:16:03 753 176 2005-07-31 07:49:03 1 2006-02-16 02:30:53
  36896. 7018 2005-07-27 02:20:22 1078 451 2005-08-02 05:04:22 2 2006-02-16 02:30:53
  36897. 7019 2005-07-27 02:20:26 3837 491 2005-08-02 22:48:26 1 2006-02-16 02:30:53
  36898. 7020 2005-07-27 02:24:27 3965 506 2005-07-29 01:27:27 2 2006-02-16 02:30:53
  36899. 7021 2005-07-27 02:26:38 2690 380 2005-08-05 01:18:38 1 2006-02-16 02:30:53
  36900. 7022 2005-07-27 02:31:15 1711 243 2005-07-29 02:52:15 1 2006-02-16 02:30:53
  36901. 7023 2005-07-27 02:32:44 4196 303 2005-08-03 04:06:44 1 2006-02-16 02:30:53
  36902. 7024 2005-07-27 02:36:40 3113 252 2005-07-28 06:58:40 1 2006-02-16 02:30:53
  36903. 7025 2005-07-27 02:40:29 3530 176 2005-07-29 23:02:29 2 2006-02-16 02:30:53
  36904. 7026 2005-07-27 02:48:58 3456 493 2005-07-29 03:41:58 2 2006-02-16 02:30:53
  36905. 7027 2005-07-27 02:50:15 3280 61 2005-08-04 02:58:15 1 2006-02-16 02:30:53
  36906. 7028 2005-07-27 02:54:25 834 179 2005-08-02 06:16:25 2 2006-02-16 02:30:53
  36907. 7029 2005-07-27 02:57:43 2862 389 2005-07-30 08:24:43 1 2006-02-16 02:30:53
  36908. 7030 2005-07-27 03:01:40 1277 550 2005-07-31 07:01:40 1 2006-02-16 02:30:53
  36909. 7031 2005-07-27 03:02:07 1435 530 2005-08-02 07:14:07 1 2006-02-16 02:30:53
  36910. 7032 2005-07-27 03:03:09 3397 269 2005-07-28 22:57:09 1 2006-02-16 02:30:53
  36911. 7033 2005-07-27 03:03:25 2803 352 2005-07-28 01:57:25 2 2006-02-16 02:30:53
  36912. 7034 2005-07-27 03:03:37 1712 281 2005-07-28 23:18:37 1 2006-02-16 02:30:53
  36913. 7035 2005-07-27 03:06:09 2439 90 2005-08-02 21:59:09 2 2006-02-16 02:30:53
  36914. 7036 2005-07-27 03:06:12 2569 70 2005-07-28 23:26:12 2 2006-02-16 02:30:53
  36915. 7037 2005-07-27 03:06:44 3155 171 2005-08-02 04:51:44 2 2006-02-16 02:30:53
  36916. 7038 2005-07-27 03:07:29 1909 518 2005-07-31 04:55:29 2 2006-02-16 02:30:53
  36917. 7039 2005-07-27 03:11:48 1906 99 2005-08-01 23:55:48 1 2006-02-16 02:30:53
  36918. 7040 2005-07-27 03:17:19 470 524 2005-07-29 07:03:19 2 2006-02-16 02:30:53
  36919. 7041 2005-07-27 03:18:32 4212 379 2005-07-30 06:40:32 2 2006-02-16 02:30:53
  36920. 7042 2005-07-27 03:20:18 399 188 2005-08-01 02:23:18 1 2006-02-16 02:30:53
  36921. 7043 2005-07-27 03:24:23 3422 493 2005-08-05 02:55:23 2 2006-02-16 02:30:53
  36922. 7044 2005-07-27 03:27:29 88 147 2005-08-01 07:00:29 2 2006-02-16 02:30:53
  36923. 7045 2005-07-27 03:27:35 1788 64 2005-08-01 06:31:35 2 2006-02-16 02:30:53
  36924. 7046 2005-07-27 03:27:56 3740 349 2005-07-30 00:54:56 2 2006-02-16 02:30:53
  36925. 7047 2005-07-27 03:31:11 2866 236 2005-08-03 23:40:11 1 2006-02-16 02:30:53
  36926. 7048 2005-07-27 03:31:48 3707 581 2005-08-05 07:30:48 2 2006-02-16 02:30:53
  36927. 7049 2005-07-27 03:32:41 3043 332 2005-08-04 08:32:41 2 2006-02-16 02:30:53
  36928. 7050 2005-07-27 03:33:17 1135 55 2005-08-02 03:12:17 1 2006-02-16 02:30:53
  36929. 7051 2005-07-27 03:34:37 1310 184 2005-07-31 03:48:37 2 2006-02-16 02:30:53
  36930. 7052 2005-07-27 03:36:38 3798 75 2005-08-03 21:51:38 1 2006-02-16 02:30:53
  36931. 7053 2005-07-27 03:38:54 149 408 2005-07-31 01:13:54 1 2006-02-16 02:30:53
  36932. 7054 2005-07-27 03:43:28 2661 179 2005-08-04 09:15:28 1 2006-02-16 02:30:53
  36933. 7055 2005-07-27 03:45:42 4305 154 2005-07-30 05:11:42 1 2006-02-16 02:30:53
  36934. 7056 2005-07-27 03:46:27 805 233 2005-08-05 07:46:27 1 2006-02-16 02:30:53
  36935. 7057 2005-07-27 03:50:03 1196 320 2005-08-04 04:36:03 1 2006-02-16 02:30:53
  36936. 7058 2005-07-27 03:50:46 716 90 2005-08-04 07:40:46 2 2006-02-16 02:30:53
  36937. 7059 2005-07-27 03:51:02 129 578 2005-08-02 22:04:02 1 2006-02-16 02:30:53
  36938. 7060 2005-07-27 03:51:04 3912 479 2005-08-03 07:53:04 1 2006-02-16 02:30:53
  36939. 7061 2005-07-27 03:51:10 880 145 2005-07-31 05:36:10 1 2006-02-16 02:30:53
  36940. 7062 2005-07-27 03:52:01 226 469 2005-08-03 08:26:01 1 2006-02-16 02:30:53
  36941. 7063 2005-07-27 03:52:27 2125 58 2005-08-04 07:53:27 1 2006-02-16 02:30:53
  36942. 7064 2005-07-27 03:53:29 4204 320 2005-08-03 06:32:29 1 2006-02-16 02:30:53
  36943. 7065 2005-07-27 03:53:43 3570 536 2005-07-30 23:41:43 2 2006-02-16 02:30:53
  36944. 7066 2005-07-27 03:53:52 1862 185 2005-08-05 03:32:52 1 2006-02-16 02:30:53
  36945. 7067 2005-07-27 03:55:10 870 60 2005-08-01 02:56:10 1 2006-02-16 02:30:53
  36946. 7068 2005-07-27 03:57:50 4465 568 2005-07-30 04:27:50 1 2006-02-16 02:30:53
  36947. 7069 2005-07-27 03:59:35 2073 343 2005-08-05 03:33:35 1 2006-02-16 02:30:53
  36948. 7070 2005-07-27 04:01:08 4182 280 2005-07-30 08:10:08 2 2006-02-16 02:30:53
  36949. 7071 2005-07-27 04:01:15 4361 61 2005-08-03 05:18:15 2 2006-02-16 02:30:53
  36950. 7072 2005-07-27 04:02:33 3899 260 2005-07-28 09:26:33 2 2006-02-16 02:30:53
  36951. 7073 2005-07-27 04:03:26 3859 92 2005-08-03 05:50:26 1 2006-02-16 02:30:53
  36952. 7074 2005-07-27 04:06:24 1390 165 2005-07-28 02:04:24 1 2006-02-16 02:30:53
  36953. 7075 2005-07-27 04:11:40 4414 530 2005-08-03 08:16:40 2 2006-02-16 02:30:53
  36954. 7076 2005-07-27 04:12:14 2821 333 2005-08-05 00:44:14 1 2006-02-16 02:30:53
  36955. 7077 2005-07-27 04:13:02 3186 155 2005-07-31 23:15:02 1 2006-02-16 02:30:53
  36956. 7078 2005-07-27 04:16:37 4518 545 2005-08-05 02:34:37 1 2006-02-16 02:30:53
  36957. 7079 2005-07-27 04:21:58 4356 356 2005-08-04 08:08:58 1 2006-02-16 02:30:53
  36958. 7080 2005-07-27 04:25:25 710 466 2005-08-04 04:22:25 2 2006-02-16 02:30:53
  36959. 7081 2005-07-27 04:25:59 462 420 2005-08-01 00:14:59 1 2006-02-16 02:30:53
  36960. 7082 2005-07-27 04:27:32 2032 64 2005-07-30 06:06:32 2 2006-02-16 02:30:53
  36961. 7083 2005-07-27 04:28:39 2663 575 2005-07-30 04:35:39 2 2006-02-16 02:30:53
  36962. 7084 2005-07-27 04:34:07 785 32 2005-08-05 00:21:07 2 2006-02-16 02:30:53
  36963. 7085 2005-07-27 04:35:44 2603 223 2005-08-05 07:10:44 2 2006-02-16 02:30:53
  36964. 7086 2005-07-27 04:39:46 2938 595 2005-08-05 00:32:46 2 2006-02-16 02:30:53
  36965. 7087 2005-07-27 04:42:08 1159 22 2005-08-02 00:53:08 1 2006-02-16 02:30:53
  36966. 7088 2005-07-27 04:42:28 373 88 2005-08-04 07:09:28 2 2006-02-16 02:30:53
  36967. 7089 2005-07-27 04:43:42 1380 446 2005-07-30 10:04:42 1 2006-02-16 02:30:53
  36968. 7090 2005-07-27 04:43:53 3495 218 2005-07-29 07:33:53 2 2006-02-16 02:30:53
  36969. 7091 2005-07-27 04:44:10 2593 322 2005-07-31 07:14:10 1 2006-02-16 02:30:53
  36970. 7092 2005-07-27 04:46:00 1433 345 2005-08-03 07:22:00 2 2006-02-16 02:30:53
  36971. 7093 2005-07-27 04:47:00 3065 574 2005-07-31 10:15:00 1 2006-02-16 02:30:53
  36972. 7094 2005-07-27 04:47:33 867 373 2005-07-31 04:07:33 2 2006-02-16 02:30:53
  36973. 7095 2005-07-27 04:51:15 1008 551 2005-08-05 10:25:15 2 2006-02-16 02:30:53
  36974. 7096 2005-07-27 04:54:42 2575 3 2005-08-03 01:42:42 2 2006-02-16 02:30:53
  36975. 7097 2005-07-27 04:56:09 258 487 2005-07-31 05:47:09 1 2006-02-16 02:30:53
  36976. 7098 2005-07-27 05:01:08 2555 359 2005-08-02 07:49:08 2 2006-02-16 02:30:53
  36977. 7099 2005-07-27 05:03:44 3136 6 2005-07-29 00:12:44 2 2006-02-16 02:30:53
  36978. 7100 2005-07-27 05:05:01 4224 413 2005-07-28 23:12:01 2 2006-02-16 02:30:53
  36979. 7101 2005-07-27 05:06:34 2006 221 2005-07-29 06:12:34 1 2006-02-16 02:30:53
  36980. 7102 2005-07-27 05:07:21 1081 411 2005-08-01 09:41:21 2 2006-02-16 02:30:53
  36981. 7103 2005-07-27 05:08:59 1697 403 2005-07-29 03:42:59 2 2006-02-16 02:30:53
  36982. 7104 2005-07-27 05:15:25 118 217 2005-08-01 05:36:25 2 2006-02-16 02:30:53
  36983. 7105 2005-07-27 05:15:37 864 15 2005-07-28 05:49:37 2 2006-02-16 02:30:53
  36984. 7106 2005-07-27 05:21:24 1415 201 2005-08-02 01:58:24 2 2006-02-16 02:30:53
  36985. 7107 2005-07-27 05:22:04 1883 104 2005-08-02 06:38:04 1 2006-02-16 02:30:53
  36986. 7108 2005-07-27 05:28:32 2720 355 2005-07-31 07:52:32 1 2006-02-16 02:30:53
  36987. 7109 2005-07-27 05:28:57 1658 406 2005-08-04 10:41:57 2 2006-02-16 02:30:53
  36988. 7110 2005-07-27 05:30:48 3289 157 2005-07-28 01:43:48 1 2006-02-16 02:30:53
  36989. 7111 2005-07-27 05:38:16 1252 473 2005-07-29 04:28:16 2 2006-02-16 02:30:53
  36990. 7112 2005-07-27 05:38:42 4056 101 2005-08-03 05:35:42 1 2006-02-16 02:30:53
  36991. 7113 2005-07-27 05:41:20 1963 534 2005-07-30 04:50:20 1 2006-02-16 02:30:53
  36992. 7114 2005-07-27 05:42:13 3892 121 2005-07-29 01:59:13 1 2006-02-16 02:30:53
  36993. 7115 2005-07-27 05:42:58 3620 359 2005-08-02 05:35:58 2 2006-02-16 02:30:53
  36994. 7116 2005-07-27 05:46:43 1755 209 2005-08-05 05:54:43 1 2006-02-16 02:30:53
  36995. 7117 2005-07-27 05:48:36 2772 326 2005-08-01 00:33:36 1 2006-02-16 02:30:53
  36996. 7118 2005-07-27 05:53:50 582 591 2005-08-05 04:19:50 2 2006-02-16 02:30:53
  36997. 7119 2005-07-27 05:55:32 1732 102 2005-07-29 03:19:32 1 2006-02-16 02:30:53
  36998. 7120 2005-07-27 05:56:39 416 98 2005-08-04 10:57:39 1 2006-02-16 02:30:53
  36999. 7121 2005-07-27 05:58:32 1264 252 2005-07-29 06:14:32 1 2006-02-16 02:30:53
  37000. 7122 2005-07-27 06:03:18 1699 172 2005-08-04 10:43:18 2 2006-02-16 02:30:53
  37001. 7123 2005-07-27 06:08:48 134 232 2005-08-04 05:26:48 1 2006-02-16 02:30:53
  37002. 7124 2005-07-27 06:09:30 3449 34 2005-08-02 09:31:30 1 2006-02-16 02:30:53
  37003. 7125 2005-07-27 06:11:00 801 460 2005-08-04 09:41:00 2 2006-02-16 02:30:53
  37004. 7126 2005-07-27 06:13:13 3240 582 2005-07-28 08:22:13 2 2006-02-16 02:30:53
  37005. 7127 2005-07-27 06:13:48 273 486 2005-08-01 02:50:48 2 2006-02-16 02:30:53
  37006. 7128 2005-07-27 06:14:36 143 529 2005-08-02 05:18:36 1 2006-02-16 02:30:53
  37007. 7129 2005-07-27 06:18:01 1930 221 2005-07-28 02:38:01 1 2006-02-16 02:30:53
  37008. 7130 2005-07-27 06:23:36 420 81 2005-07-28 10:23:36 1 2006-02-16 02:30:53
  37009. 7131 2005-07-27 06:25:06 2832 585 2005-07-31 09:07:06 1 2006-02-16 02:30:53
  37010. 7132 2005-07-27 06:28:34 3201 227 2005-08-05 06:02:34 2 2006-02-16 02:30:53
  37011. 7133 2005-07-27 06:29:23 2995 496 2005-07-29 03:20:23 2 2006-02-16 02:30:53
  37012. 7134 2005-07-27 06:33:06 1058 574 2005-07-28 06:15:06 1 2006-02-16 02:30:53
  37013. 7135 2005-07-27 06:34:32 2959 172 2005-07-28 03:01:32 1 2006-02-16 02:30:53
  37014. 7136 2005-07-27 06:38:25 1929 6 2005-08-03 05:13:25 1 2006-02-16 02:30:53
  37015. 7137 2005-07-27 06:40:41 3957 483 2005-07-29 09:05:41 2 2006-02-16 02:30:53
  37016. 7138 2005-07-27 06:47:13 1418 31 2005-08-03 01:12:13 2 2006-02-16 02:30:53
  37017. 7139 2005-07-27 06:52:21 846 575 2005-07-30 01:45:21 1 2006-02-16 02:30:53
  37018. 7140 2005-07-27 06:54:12 2028 35 2005-08-03 10:36:12 2 2006-02-16 02:30:53
  37019. 7141 2005-07-27 06:55:27 3579 423 2005-08-01 11:10:27 1 2006-02-16 02:30:53
  37020. 7142 2005-07-27 06:55:39 1743 396 2005-07-28 01:41:39 2 2006-02-16 02:30:53
  37021. 7143 2005-07-27 06:56:31 2877 91 2005-07-31 04:38:31 2 2006-02-16 02:30:53
  37022. 7144 2005-07-27 07:00:37 4506 485 2005-08-01 06:57:37 1 2006-02-16 02:30:53
  37023. 7145 2005-07-27 07:01:00 3653 109 2005-07-31 02:31:00 1 2006-02-16 02:30:53
  37024. 7146 2005-07-27 07:02:30 2245 323 2005-08-05 10:29:30 1 2006-02-16 02:30:53
  37025. 7147 2005-07-27 07:02:34 990 192 2005-08-01 02:16:34 1 2006-02-16 02:30:53
  37026. 7148 2005-07-27 07:04:09 1783 354 2005-08-03 10:20:09 2 2006-02-16 02:30:53
  37027. 7149 2005-07-27 07:10:40 3902 242 2005-08-03 07:37:40 2 2006-02-16 02:30:53
  37028. 7150 2005-07-27 07:11:14 457 191 2005-08-05 06:55:14 2 2006-02-16 02:30:53
  37029. 7151 2005-07-27 07:14:31 1259 289 2005-08-01 01:35:31 2 2006-02-16 02:30:53
  37030. 7152 2005-07-27 07:15:01 2338 370 2005-08-05 04:50:01 1 2006-02-16 02:30:53
  37031. 7153 2005-07-27 07:15:38 2657 41 2005-07-28 09:56:38 1 2006-02-16 02:30:53
  37032. 7154 2005-07-27 07:16:17 2019 518 2005-07-28 04:04:17 2 2006-02-16 02:30:53
  37033. 7155 2005-07-27 07:18:46 171 23 2005-08-04 10:28:46 1 2006-02-16 02:30:53
  37034. 7156 2005-07-27 07:19:34 34 154 2005-07-31 04:31:34 1 2006-02-16 02:30:53
  37035. 7157 2005-07-27 07:20:28 1353 423 2005-08-02 07:19:28 1 2006-02-16 02:30:53
  37036. 7158 2005-07-27 07:23:58 2432 38 2005-08-03 06:00:58 2 2006-02-16 02:30:53
  37037. 7159 2005-07-27 07:24:00 1220 158 2005-08-05 11:13:00 1 2006-02-16 02:30:53
  37038. 7160 2005-07-27 07:26:06 3905 71 2005-07-31 04:54:06 2 2006-02-16 02:30:53
  37039. 7161 2005-07-27 07:26:32 378 572 2005-08-03 01:26:32 2 2006-02-16 02:30:53
  37040. 7162 2005-07-27 07:32:45 2251 289 2005-07-30 03:48:45 1 2006-02-16 02:30:53
  37041. 7163 2005-07-27 07:36:11 3666 38 2005-08-04 06:03:11 2 2006-02-16 02:30:53
  37042. 7164 2005-07-27 07:36:34 527 284 2005-08-04 05:05:34 2 2006-02-16 02:30:53
  37043. 7165 2005-07-27 07:36:46 497 243 2005-07-30 09:22:46 2 2006-02-16 02:30:53
  37044. 7166 2005-07-27 07:36:56 1375 562 2005-08-02 03:46:56 1 2006-02-16 02:30:53
  37045. 7167 2005-07-27 07:37:26 238 380 2005-08-03 06:39:26 1 2006-02-16 02:30:53
  37046. 7168 2005-07-27 07:51:11 6 252 2005-08-01 04:08:11 2 2006-02-16 02:30:53
  37047. 7169 2005-07-27 07:51:39 735 559 2005-08-01 06:42:39 1 2006-02-16 02:30:53
  37048. 7170 2005-07-27 07:58:26 370 140 2005-07-28 02:30:26 1 2006-02-16 02:30:53
  37049. 7171 2005-07-27 07:58:35 4381 406 2005-08-03 07:45:35 1 2006-02-16 02:30:53
  37050. 7172 2005-07-27 07:59:16 2405 362 2005-08-01 04:46:16 1 2006-02-16 02:30:53
  37051. 7173 2005-07-27 07:59:24 177 592 2005-07-28 02:23:24 2 2006-02-16 02:30:53
  37052. 7174 2005-07-27 08:00:36 46 570 2005-08-01 03:11:36 1 2006-02-16 02:30:53
  37053. 7175 2005-07-27 08:03:22 568 190 2005-08-01 02:47:22 2 2006-02-16 02:30:53
  37054. 7176 2005-07-27 08:04:28 227 257 2005-07-29 14:00:28 2 2006-02-16 02:30:53
  37055. 7177 2005-07-27 08:07:39 3818 133 2005-07-30 03:17:39 2 2006-02-16 02:30:53
  37056. 7178 2005-07-27 08:09:25 1899 31 2005-07-29 13:00:25 2 2006-02-16 02:30:53
  37057. 7179 2005-07-27 08:10:29 2365 537 2005-07-28 12:24:29 2 2006-02-16 02:30:53
  37058. 7180 2005-07-27 08:14:34 460 215 2005-07-31 05:24:34 1 2006-02-16 02:30:53
  37059. 7181 2005-07-27 08:14:34 2788 130 2005-07-28 03:09:34 1 2006-02-16 02:30:53
  37060. 7182 2005-07-27 08:15:38 3209 97 2005-08-03 12:48:38 2 2006-02-16 02:30:53
  37061. 7183 2005-07-27 08:18:38 3384 302 2005-08-01 03:24:38 1 2006-02-16 02:30:53
  37062. 7184 2005-07-27 08:22:26 2324 457 2005-08-02 09:34:26 2 2006-02-16 02:30:53
  37063. 7185 2005-07-27 08:23:54 2340 121 2005-07-30 09:50:54 1 2006-02-16 02:30:53
  37064. 7186 2005-07-27 08:26:12 4005 584 2005-07-28 12:21:12 1 2006-02-16 02:30:53
  37065. 7187 2005-07-27 08:27:58 2733 169 2005-08-05 09:05:58 1 2006-02-16 02:30:53
  37066. 7188 2005-07-27 08:32:08 2199 259 2005-07-28 08:02:08 1 2006-02-16 02:30:53
  37067. 7189 2005-07-27 08:35:02 4419 151 2005-07-30 14:00:02 2 2006-02-16 02:30:53
  37068. 7190 2005-07-27 08:36:01 1330 372 2005-07-30 08:32:01 2 2006-02-16 02:30:53
  37069. 7191 2005-07-27 08:36:15 4292 495 2005-08-03 08:54:15 1 2006-02-16 02:30:53
  37070. 7192 2005-07-27 08:36:55 4329 532 2005-07-30 11:58:55 2 2006-02-16 02:30:53
  37071. 7193 2005-07-27 08:37:00 1801 237 2005-07-30 12:51:00 2 2006-02-16 02:30:53
  37072. 7194 2005-07-27 08:39:58 254 172 2005-08-01 03:12:58 1 2006-02-16 02:30:53
  37073. 7195 2005-07-27 08:47:01 721 157 2005-07-30 08:40:01 2 2006-02-16 02:30:53
  37074. 7196 2005-07-27 08:49:08 2998 118 2005-07-29 03:54:08 1 2006-02-16 02:30:53
  37075. 7197 2005-07-27 08:49:32 2109 577 2005-07-31 13:50:32 1 2006-02-16 02:30:53
  37076. 7198 2005-07-27 08:50:07 4283 520 2005-08-04 09:46:07 2 2006-02-16 02:30:53
  37077. 7199 2005-07-27 08:53:23 3685 292 2005-08-03 10:01:23 1 2006-02-16 02:30:53
  37078. 7200 2005-07-27 08:57:38 4406 78 2005-08-02 12:29:38 2 2006-02-16 02:30:53
  37079. 7201 2005-07-27 08:57:40 482 598 2005-08-04 09:55:40 2 2006-02-16 02:30:53
  37080. 7202 2005-07-27 09:00:20 109 560 2005-08-04 03:09:20 1 2006-02-16 02:30:53
  37081. 7203 2005-07-27 09:01:23 1685 492 2005-08-04 14:14:23 1 2006-02-16 02:30:53
  37082. 7204 2005-07-27 09:02:31 2512 531 2005-08-03 08:56:31 2 2006-02-16 02:30:53
  37083. 7205 2005-07-27 09:06:13 2828 36 2005-08-05 07:11:13 1 2006-02-16 02:30:53
  37084. 7206 2005-07-27 09:07:05 3752 373 2005-07-31 03:13:05 2 2006-02-16 02:30:53
  37085. 7207 2005-07-27 09:13:26 336 51 2005-08-01 10:24:26 1 2006-02-16 02:30:53
  37086. 7208 2005-07-27 09:16:28 1523 138 2005-07-28 09:40:28 1 2006-02-16 02:30:53
  37087. 7209 2005-07-27 09:16:53 3766 49 2005-07-30 08:09:53 2 2006-02-16 02:30:53
  37088. 7210 2005-07-27 09:19:05 1984 176 2005-07-28 04:35:05 1 2006-02-16 02:30:53
  37089. 7211 2005-07-27 09:20:00 4445 285 2005-08-02 14:53:00 1 2006-02-16 02:30:53
  37090. 7212 2005-07-27 09:21:22 2905 591 2005-08-01 04:47:22 2 2006-02-16 02:30:53
  37091. 7213 2005-07-27 09:22:29 2836 502 2005-08-03 13:53:29 2 2006-02-16 02:30:53
  37092. 7214 2005-07-27 09:23:33 802 309 2005-08-03 13:14:33 2 2006-02-16 02:30:53
  37093. 7215 2005-07-27 09:24:00 2713 473 2005-08-05 07:37:00 2 2006-02-16 02:30:53
  37094. 7216 2005-07-27 09:27:45 1812 292 2005-08-03 13:08:45 1 2006-02-16 02:30:53
  37095. 7217 2005-07-27 09:31:44 2646 20 2005-07-29 10:48:44 1 2006-02-16 02:30:53
  37096. 7218 2005-07-27 09:34:24 2458 530 2005-08-01 07:00:24 1 2006-02-16 02:30:53
  37097. 7219 2005-07-27 09:35:36 4046 512 2005-07-29 04:44:36 1 2006-02-16 02:30:53
  37098. 7220 2005-07-27 09:35:54 3867 79 2005-08-04 06:00:54 2 2006-02-16 02:30:53
  37099. 7221 2005-07-27 09:37:35 3820 579 2005-07-28 11:25:35 1 2006-02-16 02:30:53
  37100. 7222 2005-07-27 09:38:43 2330 206 2005-07-28 06:25:43 1 2006-02-16 02:30:53
  37101. 7223 2005-07-27 09:42:27 2623 325 2005-08-04 04:02:27 1 2006-02-16 02:30:53
  37102. 7224 2005-07-27 09:44:26 2701 106 2005-08-05 12:46:26 2 2006-02-16 02:30:53
  37103. 7225 2005-07-27 09:47:12 632 306 2005-08-03 13:19:12 2 2006-02-16 02:30:53
  37104. 7226 2005-07-27 09:47:53 3507 370 2005-08-01 08:24:53 1 2006-02-16 02:30:53
  37105. 7227 2005-07-27 09:53:43 791 164 2005-08-05 09:36:43 2 2006-02-16 02:30:53
  37106. 7228 2005-07-27 09:55:33 1693 481 2005-07-29 04:33:33 2 2006-02-16 02:30:53
  37107. 7229 2005-07-27 10:00:54 978 182 2005-07-28 13:58:54 2 2006-02-16 02:30:53
  37108. 7230 2005-07-27 10:01:41 1152 245 2005-08-02 11:00:41 1 2006-02-16 02:30:53
  37109. 7231 2005-07-27 10:01:51 1638 86 2005-08-05 13:38:51 2 2006-02-16 02:30:53
  37110. 7232 2005-07-27 10:04:19 1147 306 2005-07-28 09:43:19 2 2006-02-16 02:30:53
  37111. 7233 2005-07-27 10:08:36 213 245 2005-07-31 16:00:36 1 2006-02-16 02:30:53
  37112. 7234 2005-07-27 10:08:45 3873 372 2005-07-31 13:58:45 1 2006-02-16 02:30:53
  37113. 7235 2005-07-27 10:09:30 1261 354 2005-08-05 11:44:30 2 2006-02-16 02:30:53
  37114. 7236 2005-07-27 10:09:39 3004 218 2005-08-03 16:05:39 1 2006-02-16 02:30:53
  37115. 7237 2005-07-27 10:12:36 1904 29 2005-07-31 08:40:36 2 2006-02-16 02:30:53
  37116. 7238 2005-07-27 10:13:41 1197 116 2005-07-29 11:07:41 1 2006-02-16 02:30:53
  37117. 7239 2005-07-27 10:20:27 1786 278 2005-07-29 10:15:27 1 2006-02-16 02:30:53
  37118. 7240 2005-07-27 10:21:15 4565 324 2005-08-03 05:04:15 1 2006-02-16 02:30:53
  37119. 7241 2005-07-27 10:25:49 2433 354 2005-07-28 05:30:49 2 2006-02-16 02:30:53
  37120. 7242 2005-07-27 10:25:51 1966 565 2005-08-04 16:02:51 2 2006-02-16 02:30:53
  37121. 7243 2005-07-27 10:26:11 1287 238 2005-07-29 11:43:11 2 2006-02-16 02:30:53
  37122. 7244 2005-07-27 10:27:33 1329 339 2005-07-30 13:09:33 1 2006-02-16 02:30:53
  37123. 7245 2005-07-27 10:29:06 260 95 2005-08-05 12:09:06 2 2006-02-16 02:30:53
  37124. 7246 2005-07-27 10:30:41 2003 333 2005-07-30 05:44:41 1 2006-02-16 02:30:53
  37125. 7247 2005-07-27 10:32:58 1445 102 2005-07-29 05:00:58 2 2006-02-16 02:30:53
  37126. 7248 2005-07-27 10:37:45 4256 456 2005-08-01 13:13:45 1 2006-02-16 02:30:53
  37127. 7249 2005-07-27 10:39:53 2441 425 2005-07-28 14:48:53 2 2006-02-16 02:30:53
  37128. 7250 2005-07-27 10:44:09 3410 589 2005-07-28 11:47:09 1 2006-02-16 02:30:53
  37129. 7251 2005-07-27 10:44:55 1737 360 2005-08-01 16:12:55 1 2006-02-16 02:30:53
  37130. 7252 2005-07-27 10:45:28 3107 549 2005-08-04 06:24:28 2 2006-02-16 02:30:53
  37131. 7253 2005-07-27 10:46:37 1950 236 2005-07-28 11:18:37 1 2006-02-16 02:30:53
  37132. 7254 2005-07-27 10:48:50 2697 286 2005-07-28 10:34:50 1 2006-02-16 02:30:53
  37133. 7255 2005-07-27 10:49:54 2101 502 2005-07-31 10:40:54 2 2006-02-16 02:30:53
  37134. 7256 2005-07-27 10:58:32 4275 363 2005-07-29 08:58:32 2 2006-02-16 02:30:53
  37135. 7257 2005-07-27 11:04:17 3302 480 2005-08-04 12:32:17 2 2006-02-16 02:30:53
  37136. 7258 2005-07-27 11:05:54 2079 494 2005-08-02 11:36:54 1 2006-02-16 02:30:53
  37137. 7259 2005-07-27 11:06:00 2345 406 2005-08-02 06:44:00 2 2006-02-16 02:30:53
  37138. 7260 2005-07-27 11:09:28 3827 434 2005-08-03 09:41:28 1 2006-02-16 02:30:53
  37139. 7261 2005-07-27 11:15:01 942 172 2005-07-28 09:42:01 2 2006-02-16 02:30:53
  37140. 7262 2005-07-27 11:15:36 4097 522 2005-07-30 10:49:36 2 2006-02-16 02:30:53
  37141. 7263 2005-07-27 11:17:22 725 324 2005-08-04 10:59:22 1 2006-02-16 02:30:53
  37142. 7264 2005-07-27 11:18:58 2391 299 2005-08-03 07:43:58 2 2006-02-16 02:30:53
  37143. 7265 2005-07-27 11:19:01 3465 290 2005-08-01 09:29:01 1 2006-02-16 02:30:53
  37144. 7266 2005-07-27 11:22:17 3379 24 2005-08-04 05:45:17 1 2006-02-16 02:30:53
  37145. 7267 2005-07-27 11:22:55 3661 122 2005-08-01 08:13:55 1 2006-02-16 02:30:53
  37146. 7268 2005-07-27 11:23:09 2740 260 2005-08-01 12:42:09 2 2006-02-16 02:30:53
  37147. 7269 2005-07-27 11:23:47 2089 209 2005-07-31 13:10:47 1 2006-02-16 02:30:53
  37148. 7270 2005-07-27 11:29:02 1888 526 2005-08-05 08:04:02 1 2006-02-16 02:30:53
  37149. 7271 2005-07-27 11:29:11 858 469 2005-08-05 15:33:11 1 2006-02-16 02:30:53
  37150. 7272 2005-07-27 11:30:20 250 364 2005-07-29 17:16:20 2 2006-02-16 02:30:53
  37151. 7273 2005-07-27 11:31:22 2465 1 2005-07-31 06:50:22 1 2006-02-16 02:30:53
  37152. 7274 2005-07-27 11:35:34 4087 180 2005-08-01 07:10:34 1 2006-02-16 02:30:53
  37153. 7275 2005-07-27 11:39:08 775 323 2005-07-30 13:37:08 2 2006-02-16 02:30:53
  37154. 7276 2005-07-27 11:41:57 1665 314 2005-08-01 10:39:57 1 2006-02-16 02:30:53
  37155. 7277 2005-07-27 11:48:37 1544 67 2005-08-03 07:20:37 1 2006-02-16 02:30:53
  37156. 7278 2005-07-27 11:50:34 531 592 2005-08-01 10:22:34 1 2006-02-16 02:30:53
  37157. 7279 2005-07-27 11:50:47 1424 12 2005-07-30 11:19:47 2 2006-02-16 02:30:53
  37158. 7280 2005-07-27 11:50:52 236 342 2005-07-30 15:53:52 2 2006-02-16 02:30:53
  37159. 7281 2005-07-27 11:59:20 1350 491 2005-08-04 12:48:20 1 2006-02-16 02:30:53
  37160. 7282 2005-07-27 12:00:19 4418 276 2005-08-04 14:48:19 2 2006-02-16 02:30:53
  37161. 7283 2005-07-27 12:02:41 3101 508 2005-08-05 07:25:41 1 2006-02-16 02:30:53
  37162. 7284 2005-07-27 12:12:04 2336 52 2005-07-31 11:17:04 2 2006-02-16 02:30:53
  37163. 7285 2005-07-27 12:14:06 2855 498 2005-08-03 14:57:06 2 2006-02-16 02:30:53
  37164. 7286 2005-07-27 12:23:49 3452 498 2005-08-04 07:57:49 1 2006-02-16 02:30:53
  37165. 7287 2005-07-27 12:24:12 926 198 2005-07-31 15:34:12 1 2006-02-16 02:30:53
  37166. 7288 2005-07-27 12:24:59 45 226 2005-08-02 15:52:59 2 2006-02-16 02:30:53
  37167. 7289 2005-07-27 12:26:51 2157 187 2005-08-02 18:20:51 2 2006-02-16 02:30:53
  37168. 7290 2005-07-27 12:28:45 3652 423 2005-08-01 16:18:45 1 2006-02-16 02:30:53
  37169. 7291 2005-07-27 12:30:47 310 263 2005-08-01 12:45:47 1 2006-02-16 02:30:53
  37170. 7292 2005-07-27 12:34:14 795 468 2005-08-01 18:16:14 2 2006-02-16 02:30:53
  37171. 7293 2005-07-27 12:37:28 3333 5 2005-07-30 15:12:28 2 2006-02-16 02:30:53
  37172. 7294 2005-07-27 12:38:14 487 313 2005-07-30 13:01:14 1 2006-02-16 02:30:53
  37173. 7295 2005-07-27 12:38:47 3396 462 2005-08-05 10:12:47 1 2006-02-16 02:30:53
  37174. 7296 2005-07-27 12:39:48 1681 400 2005-08-04 18:24:48 2 2006-02-16 02:30:53
  37175. 7297 2005-07-27 12:39:48 1855 135 2005-07-29 17:50:48 2 2006-02-16 02:30:53
  37176. 7298 2005-07-27 12:45:14 1653 121 2005-07-30 07:02:14 1 2006-02-16 02:30:53
  37177. 7299 2005-07-27 12:49:56 3002 286 2005-08-03 12:25:56 1 2006-02-16 02:30:53
  37178. 7300 2005-07-27 12:50:17 4561 272 2005-08-04 18:43:17 1 2006-02-16 02:30:53
  37179. 7301 2005-07-27 12:50:23 3367 93 2005-08-01 09:43:23 2 2006-02-16 02:30:53
  37180. 7302 2005-07-27 12:52:13 4539 477 2005-07-29 15:13:13 2 2006-02-16 02:30:53
  37181. 7303 2005-07-27 12:54:39 1398 163 2005-07-31 09:26:39 2 2006-02-16 02:30:53
  37182. 7304 2005-07-27 12:56:56 1162 74 2005-08-05 09:19:56 2 2006-02-16 02:30:53
  37183. 7305 2005-07-27 12:57:06 2464 229 2005-07-30 13:13:06 2 2006-02-16 02:30:53
  37184. 7306 2005-07-27 12:57:26 2269 207 2005-08-03 09:35:26 2 2006-02-16 02:30:53
  37185. 7307 2005-07-27 12:59:10 3882 595 2005-07-29 11:35:10 1 2006-02-16 02:30:53
  37186. 7308 2005-07-27 13:00:25 1452 229 2005-08-03 16:04:25 1 2006-02-16 02:30:53
  37187. 7309 2005-07-27 13:00:29 633 317 2005-07-29 12:15:29 2 2006-02-16 02:30:53
  37188. 7310 2005-07-27 13:00:55 3711 103 2005-07-28 17:54:55 1 2006-02-16 02:30:53
  37189. 7311 2005-07-27 13:02:54 2807 582 2005-08-04 09:52:54 1 2006-02-16 02:30:53
  37190. 7312 2005-07-27 13:03:14 228 543 2005-07-31 07:56:14 2 2006-02-16 02:30:53
  37191. 7313 2005-07-27 13:11:57 1884 396 2005-08-02 07:31:57 1 2006-02-16 02:30:53
  37192. 7314 2005-07-27 13:13:32 1376 11 2005-08-03 09:24:32 2 2006-02-16 02:30:53
  37193. 7315 2005-07-27 13:14:56 974 208 2005-08-03 08:44:56 2 2006-02-16 02:30:53
  37194. 7316 2005-07-27 13:19:03 3344 114 2005-07-28 07:43:03 2 2006-02-16 02:30:53
  37195. 7317 2005-07-27 13:19:41 1518 443 2005-07-29 16:16:41 2 2006-02-16 02:30:53
  37196. 7318 2005-07-27 13:25:31 1954 301 2005-07-31 11:44:31 2 2006-02-16 02:30:53
  37197. 7319 2005-07-27 13:31:25 2370 576 2005-08-04 07:31:25 1 2006-02-16 02:30:53
  37198. 7320 2005-07-27 13:33:35 4348 241 2005-07-31 13:22:35 2 2006-02-16 02:30:53
  37199. 7321 2005-07-27 13:33:38 3525 38 2005-08-03 07:35:38 2 2006-02-16 02:30:53
  37200. 7322 2005-07-27 13:37:26 1810 508 2005-08-03 18:00:26 2 2006-02-16 02:30:53
  37201. 7323 2005-07-27 13:39:40 3830 125 2005-07-29 08:45:40 2 2006-02-16 02:30:53
  37202. 7324 2005-07-27 13:42:39 2572 462 2005-08-04 10:33:39 2 2006-02-16 02:30:53
  37203. 7325 2005-07-27 13:46:55 1727 289 2005-07-28 14:21:55 1 2006-02-16 02:30:53
  37204. 7326 2005-07-27 13:50:40 2844 432 2005-07-30 08:16:40 1 2006-02-16 02:30:53
  37205. 7327 2005-07-27 13:53:26 4074 508 2005-08-04 17:58:26 2 2006-02-16 02:30:53
  37206. 7328 2005-07-27 13:55:18 663 26 2005-08-01 19:52:18 1 2006-02-16 02:30:53
  37207. 7329 2005-07-27 13:55:34 906 226 2005-08-04 15:15:34 1 2006-02-16 02:30:53
  37208. 7330 2005-07-27 13:56:46 3705 237 2005-08-04 07:56:46 1 2006-02-16 02:30:53
  37209. 7331 2005-07-27 13:57:50 2090 60 2005-07-31 08:59:50 1 2006-02-16 02:30:53
  37210. 7332 2005-07-27 13:58:57 1761 151 2005-08-02 12:40:57 1 2006-02-16 02:30:53
  37211. 7333 2005-07-27 13:59:11 1331 230 2005-07-30 16:04:11 1 2006-02-16 02:30:53
  37212. 7334 2005-07-27 13:59:58 3006 461 2005-07-29 11:33:58 1 2006-02-16 02:30:53
  37213. 7335 2005-07-27 14:06:50 1219 219 2005-08-05 18:27:50 2 2006-02-16 02:30:53
  37214. 7336 2005-07-27 14:11:45 2706 46 2005-07-28 11:00:45 2 2006-02-16 02:30:53
  37215. 7337 2005-07-27 14:12:04 3314 525 2005-08-03 14:57:04 2 2006-02-16 02:30:53
  37216. 7338 2005-07-27 14:13:34 107 251 2005-08-03 18:36:34 2 2006-02-16 02:30:53
  37217. 7339 2005-07-27 14:17:48 3343 316 2005-07-31 12:47:48 2 2006-02-16 02:30:53
  37218. 7340 2005-07-27 14:18:10 1344 567 2005-07-30 09:57:10 1 2006-02-16 02:30:53
  37219. 7341 2005-07-27 14:23:55 3567 498 2005-07-28 14:11:55 2 2006-02-16 02:30:53
  37220. 7342 2005-07-27 14:25:17 4083 504 2005-08-04 10:02:17 2 2006-02-16 02:30:53
  37221. 7343 2005-07-27 14:27:13 1177 526 2005-07-30 09:27:13 2 2006-02-16 02:30:53
  37222. 7344 2005-07-27 14:29:28 1714 366 2005-07-31 15:36:28 1 2006-02-16 02:30:53
  37223. 7345 2005-07-27 14:29:53 2434 572 2005-08-03 18:38:53 2 2006-02-16 02:30:53
  37224. 7346 2005-07-27 14:30:42 741 2 2005-08-02 16:48:42 1 2006-02-16 02:30:53
  37225. 7347 2005-07-27 14:31:24 3779 225 2005-07-31 16:19:24 1 2006-02-16 02:30:53
  37226. 7348 2005-07-27 14:32:32 3238 43 2005-07-28 17:05:32 1 2006-02-16 02:30:53
  37227. 7349 2005-07-27 14:33:00 861 195 2005-08-01 15:01:00 2 2006-02-16 02:30:53
  37228. 7350 2005-07-27 14:34:14 737 410 2005-08-02 19:19:14 2 2006-02-16 02:30:53
  37229. 7351 2005-07-27 14:37:36 2147 445 2005-07-30 09:58:36 2 2006-02-16 02:30:53
  37230. 7352 2005-07-27 14:38:29 35 429 2005-07-28 14:24:29 1 2006-02-16 02:30:53
  37231. 7353 2005-07-27 14:38:39 1308 357 2005-07-31 19:50:39 1 2006-02-16 02:30:53
  37232. 7354 2005-07-27 14:42:11 2395 598 2005-08-03 18:19:11 2 2006-02-16 02:30:53
  37233. 7355 2005-07-27 14:45:59 3803 115 2005-08-02 17:23:59 2 2006-02-16 02:30:53
  37234. 7356 2005-07-27 14:47:35 309 397 2005-07-28 18:10:35 2 2006-02-16 02:30:53
  37235. 7357 2005-07-27 14:48:31 1917 438 2005-08-02 18:07:31 2 2006-02-16 02:30:53
  37236. 7358 2005-07-27 14:49:44 175 245 2005-07-28 20:00:44 1 2006-02-16 02:30:53
  37237. 7359 2005-07-27 14:51:04 174 183 2005-07-31 16:03:04 2 2006-02-16 02:30:53
  37238. 7360 2005-07-27 14:52:06 1312 467 2005-08-02 12:24:06 2 2006-02-16 02:30:53
  37239. 7361 2005-07-27 14:53:55 4567 463 2005-07-31 19:48:55 2 2006-02-16 02:30:53
  37240. 7362 2005-07-27 14:58:27 1902 419 2005-08-01 11:51:27 1 2006-02-16 02:30:53
  37241. 7363 2005-07-27 14:58:29 1649 407 2005-08-05 09:02:29 1 2006-02-16 02:30:53
  37242. 7364 2005-07-27 14:58:40 3046 592 2005-08-03 09:01:40 2 2006-02-16 02:30:53
  37243. 7365 2005-07-27 15:00:20 3283 450 2005-07-30 12:58:20 1 2006-02-16 02:30:53
  37244. 7366 2005-07-27 15:01:17 461 357 2005-08-04 20:28:17 1 2006-02-16 02:30:53
  37245. 7367 2005-07-27 15:05:45 1738 383 2005-08-02 13:46:45 1 2006-02-16 02:30:53
  37246. 7368 2005-07-27 15:06:05 2265 286 2005-07-31 14:10:05 2 2006-02-16 02:30:53
  37247. 7369 2005-07-27 15:07:58 3889 139 2005-07-30 09:16:58 2 2006-02-16 02:30:53
  37248. 7370 2005-07-27 15:15:53 2022 89 2005-08-03 19:53:53 2 2006-02-16 02:30:53
  37249. 7371 2005-07-27 15:18:42 1807 577 2005-08-01 09:58:42 1 2006-02-16 02:30:53
  37250. 7372 2005-07-27 15:18:42 3202 584 2005-08-01 15:18:42 2 2006-02-16 02:30:53
  37251. 7373 2005-07-27 15:19:33 3074 488 2005-08-04 10:45:33 1 2006-02-16 02:30:53
  37252. 7374 2005-07-27 15:20:57 3184 438 2005-08-05 13:09:57 2 2006-02-16 02:30:53
  37253. 7375 2005-07-27 15:22:33 2970 381 2005-08-01 20:06:33 1 2006-02-16 02:30:53
  37254. 7376 2005-07-27 15:23:02 488 2 2005-08-04 10:35:02 2 2006-02-16 02:30:53
  37255. 7377 2005-07-27 15:31:28 1369 588 2005-08-02 19:59:28 2 2006-02-16 02:30:53
  37256. 7378 2005-07-27 15:31:33 3297 144 2005-08-03 17:15:33 2 2006-02-16 02:30:53
  37257. 7379 2005-07-27 15:36:43 424 415 2005-07-30 16:37:43 2 2006-02-16 02:30:53
  37258. 7380 2005-07-27 15:37:01 988 348 2005-08-03 19:24:01 1 2006-02-16 02:30:53
  37259. 7381 2005-07-27 15:40:26 1595 483 2005-08-02 17:26:26 2 2006-02-16 02:30:53
  37260. 7382 2005-07-27 15:43:15 356 518 2005-07-28 11:18:15 2 2006-02-16 02:30:53
  37261. 7383 2005-07-27 15:46:53 3860 50 2005-08-03 11:10:53 1 2006-02-16 02:30:53
  37262. 7384 2005-07-27 15:49:45 3573 585 2005-08-04 15:17:45 1 2006-02-16 02:30:53
  37263. 7385 2005-07-27 15:49:46 2996 56 2005-07-28 13:50:46 2 2006-02-16 02:30:53
  37264. 7386 2005-07-27 15:52:10 3569 190 2005-08-04 15:13:10 1 2006-02-16 02:30:53
  37265. 7387 2005-07-27 15:54:19 3274 233 2005-08-03 14:46:19 1 2006-02-16 02:30:53
  37266. 7388 2005-07-27 15:54:19 4559 455 2005-08-01 17:02:19 2 2006-02-16 02:30:53
  37267. 7389 2005-07-27 15:56:15 3822 156 2005-07-30 21:28:15 2 2006-02-16 02:30:53
  37268. 7390 2005-07-27 15:59:19 1723 230 2005-08-04 10:09:19 2 2006-02-16 02:30:53
  37269. 7391 2005-07-27 16:00:00 1153 531 2005-08-04 18:07:00 2 2006-02-16 02:30:53
  37270. 7392 2005-07-27 16:01:05 3159 204 2005-08-01 17:23:05 2 2006-02-16 02:30:53
  37271. 7393 2005-07-27 16:02:52 2369 181 2005-08-02 13:24:52 1 2006-02-16 02:30:53
  37272. 7394 2005-07-27 16:03:08 2399 30 2005-08-04 11:27:08 2 2006-02-16 02:30:53
  37273. 7395 2005-07-27 16:03:11 2888 411 2005-07-31 20:26:11 2 2006-02-16 02:30:53
  37274. 7396 2005-07-27 16:03:53 3346 595 2005-08-05 10:36:53 2 2006-02-16 02:30:53
  37275. 7397 2005-07-27 16:05:00 4474 245 2005-08-01 20:29:00 1 2006-02-16 02:30:53
  37276. 7398 2005-07-27 16:07:22 1572 51 2005-08-05 16:16:22 1 2006-02-16 02:30:53
  37277. 7399 2005-07-27 16:16:02 1682 526 2005-08-03 18:02:02 2 2006-02-16 02:30:53
  37278. 7400 2005-07-27 16:16:37 2874 133 2005-07-31 12:34:37 2 2006-02-16 02:30:53
  37279. 7401 2005-07-27 16:17:55 2759 583 2005-08-04 15:48:55 1 2006-02-16 02:30:53
  37280. 7402 2005-07-27 16:19:40 2707 287 2005-08-05 14:48:40 2 2006-02-16 02:30:53
  37281. 7403 2005-07-27 16:22:09 2551 163 2005-08-01 15:32:09 1 2006-02-16 02:30:53
  37282. 7404 2005-07-27 16:24:43 2359 190 2005-07-29 11:40:43 2 2006-02-16 02:30:53
  37283. 7405 2005-07-27 16:25:11 2312 42 2005-08-01 12:33:11 2 2006-02-16 02:30:53
  37284. 7406 2005-07-27 16:25:45 1412 77 2005-08-05 20:39:45 1 2006-02-16 02:30:53
  37285. 7407 2005-07-27 16:29:04 3093 410 2005-08-01 17:47:04 2 2006-02-16 02:30:53
  37286. 7408 2005-07-27 16:31:40 625 371 2005-07-31 11:56:40 2 2006-02-16 02:30:53
  37287. 7409 2005-07-27 16:38:24 2352 585 2005-07-30 18:06:24 1 2006-02-16 02:30:53
  37288. 7410 2005-07-27 16:41:59 1559 337 2005-07-29 22:11:59 1 2006-02-16 02:30:53
  37289. 7411 2005-07-27 16:42:30 515 302 2005-08-05 17:38:30 1 2006-02-16 02:30:53
  37290. 7412 2005-07-27 16:44:34 950 582 2005-08-04 15:06:34 2 2006-02-16 02:30:53
  37291. 7413 2005-07-27 16:45:40 2909 254 2005-07-31 12:02:40 1 2006-02-16 02:30:53
  37292. 7414 2005-07-27 16:46:07 3276 265 2005-08-02 20:04:07 1 2006-02-16 02:30:53
  37293. 7415 2005-07-27 16:50:59 4410 294 2005-08-02 11:21:59 1 2006-02-16 02:30:53
  37294. 7416 2005-07-27 16:55:25 653 350 2005-07-29 11:27:25 1 2006-02-16 02:30:53
  37295. 7417 2005-07-27 16:58:33 2952 214 2005-07-30 22:17:33 1 2006-02-16 02:30:53
  37296. 7418 2005-07-27 16:59:09 3029 332 2005-07-29 15:08:09 2 2006-02-16 02:30:53
  37297. 7419 2005-07-27 17:04:15 3454 352 2005-08-05 21:54:15 2 2006-02-16 02:30:53
  37298. 7420 2005-07-27 17:09:39 3505 547 2005-07-30 12:30:39 2 2006-02-16 02:30:53
  37299. 7421 2005-07-27 17:10:05 3548 70 2005-08-05 17:55:05 1 2006-02-16 02:30:53
  37300. 7422 2005-07-27 17:10:42 3954 286 2005-08-03 19:32:42 1 2006-02-16 02:30:53
  37301. 7423 2005-07-27 17:11:47 666 277 2005-07-29 12:29:47 2 2006-02-16 02:30:53
  37302. 7424 2005-07-27 17:14:19 660 558 2005-08-01 19:21:19 2 2006-02-16 02:30:53
  37303. 7425 2005-07-27 17:18:35 435 263 2005-08-02 11:18:35 1 2006-02-16 02:30:53
  37304. 7426 2005-07-27 17:19:46 4420 239 2005-07-29 21:41:46 1 2006-02-16 02:30:53
  37305. 7427 2005-07-27 17:20:16 2548 442 2005-08-03 20:38:16 2 2006-02-16 02:30:53
  37306. 7428 2005-07-27 17:21:52 243 90 2005-08-05 17:13:52 2 2006-02-16 02:30:53
  37307. 7429 2005-07-27 17:24:50 2160 515 2005-08-05 23:02:50 1 2006-02-16 02:30:53
  37308. 7430 2005-07-27 17:26:14 4205 562 2005-08-01 13:02:14 2 2006-02-16 02:30:53
  37309. 7431 2005-07-27 17:27:27 3931 589 2005-07-31 18:40:27 1 2006-02-16 02:30:53
  37310. 7432 2005-07-27 17:31:40 3169 132 2005-07-28 17:44:40 2 2006-02-16 02:30:53
  37311. 7433 2005-07-27 17:32:20 1748 282 2005-08-01 18:49:20 1 2006-02-16 02:30:53
  37312. 7434 2005-07-27 17:34:40 2927 241 2005-07-29 15:01:40 1 2006-02-16 02:30:53
  37313. 7435 2005-07-27 17:38:44 1574 380 2005-07-30 16:57:44 1 2006-02-16 02:30:53
  37314. 7436 2005-07-27 17:39:12 299 45 2005-08-01 12:40:12 2 2006-02-16 02:30:53
  37315. 7437 2005-07-27 17:39:18 2617 135 2005-07-28 18:33:18 2 2006-02-16 02:30:53
  37316. 7438 2005-07-27 17:40:40 1364 52 2005-08-05 15:25:40 1 2006-02-16 02:30:53
  37317. 7439 2005-07-27 17:42:31 4091 102 2005-08-05 16:34:31 1 2006-02-16 02:30:53
  37318. 7440 2005-07-27 17:43:27 1476 484 2005-08-03 22:12:27 1 2006-02-16 02:30:53
  37319. 7441 2005-07-27 17:46:53 4039 198 2005-07-31 23:05:53 1 2006-02-16 02:30:53
  37320. 7442 2005-07-27 17:47:00 2471 105 2005-07-28 21:37:00 1 2006-02-16 02:30:53
  37321. 7443 2005-07-27 17:47:43 703 380 2005-07-29 13:15:43 1 2006-02-16 02:30:53
  37322. 7444 2005-07-27 17:49:16 120 531 2005-07-28 15:05:16 1 2006-02-16 02:30:53
  37323. 7445 2005-07-27 17:57:15 4115 394 2005-07-31 20:24:15 1 2006-02-16 02:30:53
  37324. 7446 2005-07-27 18:00:24 2337 486 2005-07-29 13:40:24 1 2006-02-16 02:30:53
  37325. 7447 2005-07-27 18:02:08 1795 107 2005-07-29 21:15:08 1 2006-02-16 02:30:53
  37326. 7448 2005-07-27 18:06:30 3584 175 2005-07-29 15:43:30 1 2006-02-16 02:30:53
  37327. 7449 2005-07-27 18:17:41 2084 421 2005-08-01 18:52:41 1 2006-02-16 02:30:53
  37328. 7450 2005-07-27 18:18:35 3496 191 2005-08-04 15:18:35 1 2006-02-16 02:30:53
  37329. 7451 2005-07-27 18:18:41 2382 29 2005-08-03 13:55:41 2 2006-02-16 02:30:53
  37330. 7452 2005-07-27 18:26:39 3482 285 2005-08-04 17:35:39 2 2006-02-16 02:30:53
  37331. 7453 2005-07-27 18:27:13 2992 29 2005-07-29 23:52:13 1 2006-02-16 02:30:53
  37332. 7454 2005-07-27 18:27:26 3248 75 2005-07-30 23:50:26 1 2006-02-16 02:30:53
  37333. 7455 2005-07-27 18:34:41 3815 405 2005-07-31 17:32:41 1 2006-02-16 02:30:53
  37334. 7456 2005-07-27 18:34:53 1959 501 2005-07-29 17:46:53 2 2006-02-16 02:30:53
  37335. 7457 2005-07-27 18:35:17 3635 510 2005-07-30 12:41:17 2 2006-02-16 02:30:53
  37336. 7458 2005-07-27 18:36:17 2964 327 2005-07-31 22:43:17 1 2006-02-16 02:30:53
  37337. 7459 2005-07-27 18:40:20 2053 2 2005-08-02 21:07:20 2 2006-02-16 02:30:53
  37338. 7460 2005-07-27 18:41:35 919 442 2005-07-29 15:16:35 2 2006-02-16 02:30:53
  37339. 7461 2005-07-27 18:45:15 1236 476 2005-07-29 17:19:15 1 2006-02-16 02:30:53
  37340. 7462 2005-07-27 18:47:47 878 114 2005-07-29 20:46:47 2 2006-02-16 02:30:53
  37341. 7463 2005-07-27 18:48:32 3676 284 2005-07-29 23:54:32 2 2006-02-16 02:30:53
  37342. 7464 2005-07-27 18:49:42 845 31 2005-07-28 20:45:42 2 2006-02-16 02:30:53
  37343. 7465 2005-07-27 18:50:30 2357 115 2005-07-30 20:55:30 1 2006-02-16 02:30:53
  37344. 7466 2005-07-27 18:51:17 2791 53 2005-07-31 16:58:17 1 2006-02-16 02:30:53
  37345. 7467 2005-07-27 18:51:54 3869 240 2005-08-03 23:27:54 2 2006-02-16 02:30:53
  37346. 7468 2005-07-27 18:52:27 3166 113 2005-08-03 19:29:27 2 2006-02-16 02:30:53
  37347. 7469 2005-07-27 18:57:40 3723 189 2005-07-31 00:17:40 1 2006-02-16 02:30:53
  37348. 7470 2005-07-27 19:01:03 289 564 2005-08-05 19:16:03 2 2006-02-16 02:30:53
  37349. 7471 2005-07-27 19:02:19 1776 95 2005-07-30 15:12:19 1 2006-02-16 02:30:53
  37350. 7472 2005-07-27 19:04:19 1535 103 2005-08-03 00:08:19 2 2006-02-16 02:30:53
  37351. 7473 2005-07-27 19:05:40 401 341 2005-08-05 14:47:40 1 2006-02-16 02:30:53
  37352. 7474 2005-07-27 19:07:17 2971 110 2005-07-30 00:37:17 1 2006-02-16 02:30:53
  37353. 7475 2005-07-27 19:07:43 1670 255 2005-08-04 22:12:43 2 2006-02-16 02:30:53
  37354. 7476 2005-07-27 19:08:56 2288 64 2005-07-31 16:36:56 2 2006-02-16 02:30:53
  37355. 7477 2005-07-27 19:11:03 2692 355 2005-08-02 19:25:03 1 2006-02-16 02:30:53
  37356. 7478 2005-07-27 19:16:02 3791 521 2005-08-04 22:30:02 2 2006-02-16 02:30:53
  37357. 7479 2005-07-27 19:18:17 218 434 2005-07-30 18:55:17 1 2006-02-16 02:30:53
  37358. 7480 2005-07-27 19:19:53 452 344 2005-08-02 01:01:53 1 2006-02-16 02:30:53
  37359. 7481 2005-07-27 19:20:25 1804 240 2005-07-29 19:07:25 2 2006-02-16 02:30:53
  37360. 7482 2005-07-27 19:24:16 485 348 2005-08-05 18:49:16 2 2006-02-16 02:30:53
  37361. 7483 2005-07-27 19:25:00 3678 106 2005-07-29 21:19:00 2 2006-02-16 02:30:53
  37362. 7484 2005-07-27 19:28:17 2746 211 2005-07-31 20:05:17 2 2006-02-16 02:30:53
  37363. 7485 2005-07-27 19:29:09 631 362 2005-07-30 16:28:09 1 2006-02-16 02:30:53
  37364. 7486 2005-07-27 19:29:24 4362 393 2005-08-02 20:46:24 2 2006-02-16 02:30:53
  37365. 7487 2005-07-27 19:32:45 4451 58 2005-07-28 15:11:45 1 2006-02-16 02:30:53
  37366. 7488 2005-07-27 19:36:15 554 365 2005-08-05 14:14:15 1 2006-02-16 02:30:53
  37367. 7489 2005-07-27 19:39:38 3732 16 2005-07-30 23:10:38 2 2006-02-16 02:30:53
  37368. 7490 2005-07-27 19:48:12 4503 595 2005-08-04 17:15:12 1 2006-02-16 02:30:53
  37369. 7491 2005-07-27 19:53:23 4261 239 2005-07-28 23:25:23 2 2006-02-16 02:30:53
  37370. 7492 2005-07-27 19:54:18 908 155 2005-07-31 15:36:18 2 2006-02-16 02:30:53
  37371. 7493 2005-07-27 19:55:46 2868 177 2005-08-02 19:46:46 2 2006-02-16 02:30:53
  37372. 7494 2005-07-27 19:56:31 2259 60 2005-07-30 14:28:31 1 2006-02-16 02:30:53
  37373. 7495 2005-07-27 20:01:20 3446 426 2005-07-30 16:40:20 1 2006-02-16 02:30:53
  37374. 7496 2005-07-27 20:04:05 2449 257 2005-08-02 20:12:05 1 2006-02-16 02:30:53
  37375. 7497 2005-07-27 20:05:27 286 387 2005-07-30 22:47:27 1 2006-02-16 02:30:53
  37376. 7498 2005-07-27 20:09:31 1144 455 2005-07-29 23:38:31 1 2006-02-16 02:30:53
  37377. 7499 2005-07-27 20:10:28 3503 157 2005-07-30 16:24:28 1 2006-02-16 02:30:53
  37378. 7500 2005-07-27 20:16:03 609 160 2005-07-29 18:50:03 1 2006-02-16 02:30:53
  37379. 7501 2005-07-27 20:16:59 1464 587 2005-08-04 00:11:59 2 2006-02-16 02:30:53
  37380. 7502 2005-07-27 20:19:08 3229 303 2005-07-28 18:32:08 2 2006-02-16 02:30:53
  37381. 7503 2005-07-27 20:23:12 579 3 2005-08-05 18:46:12 2 2006-02-16 02:30:53
  37382. 7504 2005-07-27 20:24:31 3354 283 2005-07-30 21:25:31 2 2006-02-16 02:30:53
  37383. 7505 2005-07-27 20:28:03 1342 209 2005-08-03 17:04:03 1 2006-02-16 02:30:53
  37384. 7506 2005-07-27 20:28:34 2091 527 2005-08-05 18:14:34 1 2006-02-16 02:30:53
  37385. 7507 2005-07-27 20:31:48 3618 512 2005-08-02 17:27:48 1 2006-02-16 02:30:53
  37386. 7508 2005-07-27 20:33:08 3401 465 2005-08-01 01:29:08 1 2006-02-16 02:30:53
  37387. 7509 2005-07-27 20:37:19 4134 228 2005-08-04 19:35:19 2 2006-02-16 02:30:53
  37388. 7510 2005-07-27 20:37:57 1617 257 2005-08-01 17:14:57 2 2006-02-16 02:30:53
  37389. 7511 2005-07-27 20:38:40 4044 591 2005-08-04 22:36:40 2 2006-02-16 02:30:53
  37390. 7512 2005-07-27 20:40:40 1343 352 2005-08-05 01:44:40 1 2006-02-16 02:30:53
  37391. 7513 2005-07-27 20:51:04 939 411 2005-08-03 20:15:04 2 2006-02-16 02:30:53
  37392. 7514 2005-07-27 20:51:49 400 44 2005-07-29 18:21:49 2 2006-02-16 02:30:53
  37393. 7515 2005-07-27 20:52:37 1211 390 2005-08-02 20:17:37 2 2006-02-16 02:30:53
  37394. 7516 2005-07-27 20:55:28 2178 134 2005-07-30 00:50:28 1 2006-02-16 02:30:53
  37395. 7517 2005-07-27 20:57:07 3177 41 2005-08-04 15:08:07 1 2006-02-16 02:30:53
  37396. 7518 2005-07-27 21:01:16 2676 257 2005-08-03 15:26:16 1 2006-02-16 02:30:53
  37397. 7519 2005-07-27 21:01:41 4009 124 2005-08-05 19:15:41 1 2006-02-16 02:30:53
  37398. 7520 2005-07-27 21:02:02 3875 191 2005-07-28 18:18:02 1 2006-02-16 02:30:53
  37399. 7521 2005-07-27 21:04:42 3144 176 2005-08-03 16:06:42 1 2006-02-16 02:30:53
  37400. 7522 2005-07-27 21:11:03 2038 478 2005-08-02 16:40:03 1 2006-02-16 02:30:53
  37401. 7523 2005-07-27 21:11:23 4153 410 2005-07-28 16:37:23 1 2006-02-16 02:30:53
  37402. 7524 2005-07-27 21:11:44 4295 225 2005-08-03 02:17:44 1 2006-02-16 02:30:53
  37403. 7525 2005-07-27 21:13:28 4084 281 2005-08-04 19:44:28 2 2006-02-16 02:30:53
  37404. 7526 2005-07-27 21:13:47 696 44 2005-08-05 15:23:47 2 2006-02-16 02:30:53
  37405. 7527 2005-07-27 21:14:28 2124 426 2005-08-05 21:08:28 1 2006-02-16 02:30:53
  37406. 7528 2005-07-27 21:15:25 1218 213 2005-08-03 19:12:25 1 2006-02-16 02:30:53
  37407. 7529 2005-07-27 21:18:08 3644 145 2005-08-06 00:59:08 1 2006-02-16 02:30:53
  37408. 7530 2005-07-27 21:18:58 3810 98 2005-07-31 01:51:58 2 2006-02-16 02:30:53
  37409. 7531 2005-07-27 21:19:34 2393 221 2005-08-06 01:07:34 2 2006-02-16 02:30:53
  37410. 7532 2005-07-27 21:20:52 677 34 2005-07-30 21:38:52 1 2006-02-16 02:30:53
  37411. 7533 2005-07-27 21:24:33 1791 594 2005-08-05 16:33:33 2 2006-02-16 02:30:53
  37412. 7534 2005-07-27 21:26:17 2276 282 2005-08-05 00:23:17 2 2006-02-16 02:30:53
  37413. 7535 2005-07-27 21:32:39 772 123 2005-08-05 23:42:39 1 2006-02-16 02:30:53
  37414. 7536 2005-07-27 21:34:09 3417 307 2005-08-02 03:26:09 1 2006-02-16 02:30:53
  37415. 7537 2005-07-27 21:36:09 4456 269 2005-08-01 01:51:09 1 2006-02-16 02:30:53
  37416. 7538 2005-07-27 21:38:04 2486 361 2005-08-02 03:14:04 1 2006-02-16 02:30:53
  37417. 7539 2005-07-27 21:39:42 1849 423 2005-08-06 00:12:42 1 2006-02-16 02:30:53
  37418. 7540 2005-07-27 21:39:55 2198 207 2005-08-04 18:10:55 2 2006-02-16 02:30:53
  37419. 7541 2005-07-27 21:40:05 4100 206 2005-07-29 16:13:05 1 2006-02-16 02:30:53
  37420. 7542 2005-07-27 21:43:04 1912 110 2005-07-30 00:02:04 1 2006-02-16 02:30:53
  37421. 7543 2005-07-27 21:44:28 1289 526 2005-08-04 21:42:28 2 2006-02-16 02:30:53
  37422. 7544 2005-07-27 21:47:37 766 249 2005-08-05 02:29:37 2 2006-02-16 02:30:53
  37423. 7545 2005-07-27 21:48:03 2541 292 2005-08-01 22:23:03 2 2006-02-16 02:30:53
  37424. 7546 2005-07-27 21:50:09 3683 494 2005-08-05 03:07:09 2 2006-02-16 02:30:53
  37425. 7547 2005-07-27 21:51:48 1733 547 2005-08-06 01:05:48 2 2006-02-16 02:30:53
  37426. 7548 2005-07-27 21:53:18 2194 484 2005-08-02 17:50:18 1 2006-02-16 02:30:53
  37427. 7549 2005-07-27 21:53:21 1765 591 2005-08-05 18:53:21 1 2006-02-16 02:30:53
  37428. 7550 2005-07-27 21:55:07 4488 71 2005-07-28 23:34:07 2 2006-02-16 02:30:53
  37429. 7551 2005-07-27 21:59:15 2635 304 2005-07-31 19:54:15 2 2006-02-16 02:30:53
  37430. 7552 2005-07-27 22:03:41 2166 16 2005-07-28 22:24:41 1 2006-02-16 02:30:53
  37431. 7553 2005-07-27 22:11:36 1643 275 2005-08-03 17:52:36 1 2006-02-16 02:30:53
  37432. 7554 2005-07-27 22:12:41 1805 135 2005-08-04 01:34:41 2 2006-02-16 02:30:53
  37433. 7555 2005-07-27 22:17:05 3421 533 2005-08-02 02:50:05 2 2006-02-16 02:30:53
  37434. 7556 2005-07-27 22:17:17 794 188 2005-07-28 19:17:17 2 2006-02-16 02:30:53
  37435. 7557 2005-07-27 22:18:19 3152 131 2005-07-29 00:24:19 1 2006-02-16 02:30:53
  37436. 7558 2005-07-27 22:19:08 550 80 2005-07-30 21:31:08 1 2006-02-16 02:30:53
  37437. 7559 2005-07-27 22:20:03 661 149 2005-08-06 00:26:03 2 2006-02-16 02:30:53
  37438. 7560 2005-07-27 22:20:17 3574 562 2005-08-02 23:00:17 2 2006-02-16 02:30:53
  37439. 7561 2005-07-27 22:21:05 3433 291 2005-08-04 01:02:05 1 2006-02-16 02:30:53
  37440. 7562 2005-07-27 22:25:15 4417 366 2005-08-01 01:21:15 2 2006-02-16 02:30:53
  37441. 7563 2005-07-27 22:25:36 2709 453 2005-08-01 03:59:36 2 2006-02-16 02:30:53
  37442. 7564 2005-07-27 22:31:17 2887 291 2005-08-01 01:05:17 2 2006-02-16 02:30:53
  37443. 7565 2005-07-27 22:33:59 1028 114 2005-07-30 03:03:59 2 2006-02-16 02:30:53
  37444. 7566 2005-07-27 22:34:45 1802 144 2005-08-01 22:20:45 1 2006-02-16 02:30:53
  37445. 7567 2005-07-27 22:38:05 1066 504 2005-07-30 17:20:05 1 2006-02-16 02:30:53
  37446. 7568 2005-07-27 22:38:53 1578 296 2005-07-29 00:51:53 1 2006-02-16 02:30:53
  37447. 7569 2005-07-27 22:38:53 2315 528 2005-08-05 19:03:53 2 2006-02-16 02:30:53
  37448. 7570 2005-07-27 22:40:06 3189 110 2005-07-28 23:14:06 1 2006-02-16 02:30:53
  37449. 7571 2005-07-27 22:43:42 3850 368 2005-07-30 22:17:42 1 2006-02-16 02:30:53
  37450. 7572 2005-07-27 22:44:29 3068 532 2005-08-01 03:04:29 1 2006-02-16 02:30:53
  37451. 7573 2005-07-27 22:46:20 314 467 2005-08-04 01:55:20 1 2006-02-16 02:30:53
  37452. 7574 2005-07-27 22:53:00 298 200 2005-07-29 18:39:00 2 2006-02-16 02:30:53
  37453. 7575 2005-07-27 22:53:52 702 582 2005-07-29 02:02:52 1 2006-02-16 02:30:53
  37454. 7576 2005-07-27 22:54:35 3374 446 2005-08-03 03:53:35 2 2006-02-16 02:30:53
  37455. 7577 2005-07-27 22:56:07 2723 332 2005-08-05 21:23:07 2 2006-02-16 02:30:53
  37456. 7578 2005-07-27 22:58:17 4210 332 2005-07-29 23:14:17 1 2006-02-16 02:30:53
  37457. 7579 2005-07-27 23:06:41 501 352 2005-07-31 20:08:41 2 2006-02-16 02:30:53
  37458. 7580 2005-07-27 23:07:40 338 28 2005-08-05 02:17:40 1 2006-02-16 02:30:53
  37459. 7581 2005-07-27 23:14:35 2051 166 2005-07-29 21:30:35 1 2006-02-16 02:30:53
  37460. 7582 2005-07-27 23:15:14 3941 128 2005-07-29 03:18:14 2 2006-02-16 02:30:53
  37461. 7583 2005-07-27 23:15:22 2890 198 2005-08-04 04:39:22 2 2006-02-16 02:30:53
  37462. 7584 2005-07-27 23:15:46 4390 338 2005-08-03 02:18:46 2 2006-02-16 02:30:53
  37463. 7585 2005-07-27 23:18:22 467 440 2005-07-30 23:08:22 1 2006-02-16 02:30:53
  37464. 7586 2005-07-27 23:19:29 15 316 2005-07-29 23:04:29 1 2006-02-16 02:30:53
  37465. 7587 2005-07-27 23:23:03 655 113 2005-08-01 17:34:03 1 2006-02-16 02:30:53
  37466. 7588 2005-07-27 23:23:31 4033 360 2005-08-04 02:54:31 1 2006-02-16 02:30:53
  37467. 7589 2005-07-27 23:23:36 1569 32 2005-08-04 00:16:36 1 2006-02-16 02:30:53
  37468. 7590 2005-07-27 23:24:24 2152 73 2005-07-28 19:53:24 2 2006-02-16 02:30:53
  37469. 7591 2005-07-27 23:25:54 651 525 2005-08-02 22:54:54 1 2006-02-16 02:30:53
  37470. 7592 2005-07-27 23:26:04 4105 316 2005-07-29 23:48:04 2 2006-02-16 02:30:53
  37471. 7593 2005-07-27 23:28:47 1158 436 2005-08-02 19:51:47 1 2006-02-16 02:30:53
  37472. 7594 2005-07-27 23:30:41 3230 424 2005-08-02 04:29:41 1 2006-02-16 02:30:53
  37473. 7595 2005-07-27 23:32:23 4313 390 2005-08-03 05:28:23 1 2006-02-16 02:30:53
  37474. 7596 2005-07-27 23:33:57 2097 275 2005-08-01 20:46:57 2 2006-02-16 02:30:53
  37475. 7597 2005-07-27 23:35:49 2856 169 2005-07-30 21:38:49 1 2006-02-16 02:30:53
  37476. 7598 2005-07-27 23:36:01 4545 438 2005-07-29 23:35:01 2 2006-02-16 02:30:53
  37477. 7599 2005-07-27 23:38:46 3272 87 2005-07-28 22:52:46 1 2006-02-16 02:30:53
  37478. 7600 2005-07-27 23:41:18 3492 107 2005-08-06 04:40:18 1 2006-02-16 02:30:53
  37479. 7601 2005-07-27 23:48:15 903 228 2005-07-29 02:45:15 1 2006-02-16 02:30:53
  37480. 7602 2005-07-27 23:48:35 2516 366 2005-08-04 17:58:35 1 2006-02-16 02:30:53
  37481. 7603 2005-07-27 23:54:44 124 497 2005-07-29 01:24:44 1 2006-02-16 02:30:53
  37482. 7604 2005-07-27 23:54:52 3720 406 2005-08-05 03:04:52 2 2006-02-16 02:30:53
  37483. 7605 2005-07-27 23:57:01 1391 576 2005-08-03 04:11:01 1 2006-02-16 02:30:53
  37484. 7606 2005-07-28 00:02:15 637 201 2005-07-29 03:14:15 2 2006-02-16 02:30:53
  37485. 7607 2005-07-28 00:05:53 3914 293 2005-07-31 04:13:53 1 2006-02-16 02:30:53
  37486. 7608 2005-07-28 00:08:36 1256 167 2005-07-28 18:13:36 1 2006-02-16 02:30:53
  37487. 7609 2005-07-28 00:11:00 3655 179 2005-07-31 03:04:00 1 2006-02-16 02:30:53
  37488. 7610 2005-07-28 00:11:35 1279 450 2005-07-31 00:33:35 1 2006-02-16 02:30:53
  37489. 7611 2005-07-28 00:11:47 3347 467 2005-07-28 18:35:47 1 2006-02-16 02:30:53
  37490. 7612 2005-07-28 00:11:55 1411 563 2005-07-30 00:47:55 1 2006-02-16 02:30:53
  37491. 7613 2005-07-28 00:13:58 4253 202 2005-08-06 05:36:58 2 2006-02-16 02:30:53
  37492. 7614 2005-07-28 00:14:38 3475 440 2005-07-29 18:18:38 1 2006-02-16 02:30:53
  37493. 7615 2005-07-28 00:15:24 3884 373 2005-07-31 02:00:24 1 2006-02-16 02:30:53
  37494. 7616 2005-07-28 00:15:26 3790 9 2005-07-30 21:52:26 1 2006-02-16 02:30:53
  37495. 7617 2005-07-28 00:18:40 2904 340 2005-08-01 01:17:40 1 2006-02-16 02:30:53
  37496. 7618 2005-07-28 00:24:14 774 271 2005-08-01 04:35:14 1 2006-02-16 02:30:53
  37497. 7619 2005-07-28 00:25:41 1057 419 2005-07-30 04:35:41 2 2006-02-16 02:30:53
  37498. 7620 2005-07-28 00:27:17 931 580 2005-07-31 02:04:17 1 2006-02-16 02:30:53
  37499. 7621 2005-07-28 00:34:06 1833 88 2005-08-06 00:13:06 1 2006-02-16 02:30:53
  37500. 7622 2005-07-28 00:37:34 4014 198 2005-07-31 23:27:34 2 2006-02-16 02:30:53
  37501. 7623 2005-07-28 00:37:41 1146 459 2005-08-04 19:38:41 2 2006-02-16 02:30:53
  37502. 7624 2005-07-28 00:37:44 2756 415 2005-07-30 21:26:44 1 2006-02-16 02:30:53
  37503. 7625 2005-07-28 00:47:56 3129 382 2005-08-02 23:34:56 1 2006-02-16 02:30:53
  37504. 7626 2005-07-28 00:49:01 4200 450 2005-07-31 00:43:01 1 2006-02-16 02:30:53
  37505. 7627 2005-07-28 00:56:47 782 52 2005-08-02 04:16:47 1 2006-02-16 02:30:53
  37506. 7628 2005-07-28 00:58:04 1240 516 2005-08-03 19:16:04 1 2006-02-16 02:30:53
  37507. 7629 2005-07-28 01:00:09 2453 229 2005-07-30 06:49:09 1 2006-02-16 02:30:53
  37508. 7630 2005-07-28 01:01:03 2798 351 2005-07-31 01:08:03 2 2006-02-16 02:30:53
  37509. 7631 2005-07-28 01:01:15 2437 132 2005-08-01 06:16:15 2 2006-02-16 02:30:53
  37510. 7632 2005-07-28 01:02:40 3233 181 2005-07-30 05:31:40 2 2006-02-16 02:30:53
  37511. 7633 2005-07-28 01:03:41 4171 402 2005-08-01 23:54:41 2 2006-02-16 02:30:53
  37512. 7634 2005-07-28 01:07:01 4487 365 2005-07-31 05:00:01 1 2006-02-16 02:30:53
  37513. 7635 2005-07-28 01:08:11 55 413 2005-08-01 03:32:11 2 2006-02-16 02:30:53
  37514. 7636 2005-07-28 01:08:36 202 51 2005-08-03 21:36:36 1 2006-02-16 02:30:53
  37515. 7637 2005-07-28 01:12:25 87 91 2005-08-02 03:48:25 1 2006-02-16 02:30:53
  37516. 7638 2005-07-28 01:13:26 1890 172 2005-07-28 20:34:26 1 2006-02-16 02:30:53
  37517. 7639 2005-07-28 01:14:36 767 459 2005-07-29 00:19:36 1 2006-02-16 02:30:53
  37518. 7640 2005-07-28 01:14:49 3014 229 2005-08-03 21:50:49 1 2006-02-16 02:30:53
  37519. 7641 2005-07-28 01:15:45 1868 475 2005-08-04 23:50:45 1 2006-02-16 02:30:53
  37520. 7642 2005-07-28 01:16:51 3995 523 2005-08-02 00:45:51 2 2006-02-16 02:30:53
  37521. 7643 2005-07-28 01:19:44 4369 407 2005-08-04 21:16:44 1 2006-02-16 02:30:53
  37522. 7644 2005-07-28 01:27:33 882 173 2005-07-31 22:58:33 2 2006-02-16 02:30:53
  37523. 7645 2005-07-28 01:27:42 830 381 2005-08-03 07:16:42 2 2006-02-16 02:30:53
  37524. 7646 2005-07-28 01:31:45 1615 255 2005-07-31 07:16:45 1 2006-02-16 02:30:53
  37525. 7647 2005-07-28 01:35:17 3079 36 2005-08-01 00:14:17 1 2006-02-16 02:30:53
  37526. 7648 2005-07-28 01:35:33 797 310 2005-08-04 06:21:33 2 2006-02-16 02:30:53
  37527. 7649 2005-07-28 01:37:26 2704 318 2005-07-28 21:18:26 1 2006-02-16 02:30:53
  37528. 7650 2005-07-28 01:47:20 701 290 2005-08-05 06:00:20 2 2006-02-16 02:30:53
  37529. 7651 2005-07-28 01:48:32 2753 401 2005-08-03 03:10:32 2 2006-02-16 02:30:53
  37530. 7652 2005-07-28 01:50:29 92 5 2005-07-30 22:23:29 2 2006-02-16 02:30:53
  37531. 7653 2005-07-28 01:58:30 814 232 2005-07-28 23:32:30 2 2006-02-16 02:30:53
  37532. 7654 2005-07-28 02:00:14 1009 360 2005-07-31 20:50:14 2 2006-02-16 02:30:53
  37533. 7655 2005-07-28 02:01:11 2665 513 2005-07-30 23:12:11 2 2006-02-16 02:30:53
  37534. 7656 2005-07-28 02:07:19 178 148 2005-07-31 04:05:19 1 2006-02-16 02:30:53
  37535. 7657 2005-07-28 02:09:00 2319 518 2005-08-04 21:44:00 1 2006-02-16 02:30:53
  37536. 7658 2005-07-28 02:09:12 1798 272 2005-07-30 00:54:12 2 2006-02-16 02:30:53
  37537. 7659 2005-07-28 02:09:45 1622 584 2005-08-02 05:34:45 2 2006-02-16 02:30:53
  37538. 7660 2005-07-28 02:10:10 4385 4 2005-07-30 04:29:10 2 2006-02-16 02:30:53
  37539. 7661 2005-07-28 02:10:27 3060 256 2005-08-05 03:45:27 2 2006-02-16 02:30:53
  37540. 7662 2005-07-28 02:16:08 1017 534 2005-08-03 21:51:08 1 2006-02-16 02:30:53
  37541. 7663 2005-07-28 02:19:48 832 470 2005-07-30 21:43:48 2 2006-02-16 02:30:53
  37542. 7664 2005-07-28 02:24:23 1989 461 2005-07-29 23:01:23 1 2006-02-16 02:30:53
  37543. 7665 2005-07-28 02:28:30 1455 590 2005-07-31 20:42:30 1 2006-02-16 02:30:53
  37544. 7666 2005-07-28 02:35:12 688 196 2005-08-05 05:43:12 2 2006-02-16 02:30:53
  37545. 7667 2005-07-28 02:37:22 2415 443 2005-08-05 21:37:22 1 2006-02-16 02:30:53
  37546. 7668 2005-07-28 02:41:31 3880 508 2005-08-02 06:08:31 1 2006-02-16 02:30:53
  37547. 7669 2005-07-28 02:44:07 2624 483 2005-07-29 00:54:07 1 2006-02-16 02:30:53
  37548. 7670 2005-07-28 02:44:25 1356 252 2005-07-29 21:55:25 2 2006-02-16 02:30:53
  37549. 7671 2005-07-28 02:48:31 3464 442 2005-07-30 23:04:31 1 2006-02-16 02:30:53
  37550. 7672 2005-07-28 02:49:41 573 542 2005-08-04 02:38:41 1 2006-02-16 02:30:53
  37551. 7673 2005-07-28 02:53:53 2368 409 2005-08-06 00:07:53 1 2006-02-16 02:30:53
  37552. 7674 2005-07-28 02:54:30 682 177 2005-08-05 23:09:30 1 2006-02-16 02:30:53
  37553. 7675 2005-07-28 02:55:20 153 189 2005-07-31 05:27:20 1 2006-02-16 02:30:53
  37554. 7676 2005-07-28 02:55:27 1110 508 2005-08-01 03:50:27 2 2006-02-16 02:30:53
  37555. 7677 2005-07-28 02:56:37 4464 566 2005-07-31 02:21:37 1 2006-02-16 02:30:53
  37556. 7678 2005-07-28 02:58:16 3398 510 2005-08-06 04:22:16 1 2006-02-16 02:30:53
  37557. 7679 2005-07-28 02:58:39 1063 444 2005-08-02 04:58:39 1 2006-02-16 02:30:53
  37558. 7680 2005-07-28 02:59:08 1784 559 2005-08-03 03:37:08 2 2006-02-16 02:30:53
  37559. 7681 2005-07-28 03:07:09 1176 432 2005-07-29 08:30:09 2 2006-02-16 02:30:53
  37560. 7682 2005-07-28 03:07:29 3296 400 2005-08-04 08:48:29 2 2006-02-16 02:30:53
  37561. 7683 2005-07-28 03:11:29 1760 73 2005-08-04 00:14:29 1 2006-02-16 02:30:53
  37562. 7684 2005-07-28 03:11:54 3365 40 2005-07-31 04:40:54 2 2006-02-16 02:30:53
  37563. 7685 2005-07-28 03:13:00 2213 468 2005-08-01 00:29:00 2 2006-02-16 02:30:53
  37564. 7686 2005-07-28 03:19:23 2144 184 2005-08-04 05:17:23 2 2006-02-16 02:30:53
  37565. 7687 2005-07-28 03:20:26 689 325 2005-08-02 05:48:26 2 2006-02-16 02:30:53
  37566. 7688 2005-07-28 03:20:47 1179 491 2005-08-06 06:07:47 2 2006-02-16 02:30:53
  37567. 7689 2005-07-28 03:21:24 1803 253 2005-07-31 08:01:24 2 2006-02-16 02:30:53
  37568. 7690 2005-07-28 03:26:21 1076 150 2005-07-29 00:08:21 1 2006-02-16 02:30:53
  37569. 7691 2005-07-28 03:30:09 1579 112 2005-07-29 21:31:09 1 2006-02-16 02:30:53
  37570. 7692 2005-07-28 03:30:21 267 392 2005-07-30 22:25:21 1 2006-02-16 02:30:53
  37571. 7693 2005-07-28 03:31:22 2479 148 2005-07-31 06:42:22 2 2006-02-16 02:30:53
  37572. 7694 2005-07-28 03:39:25 2892 538 2005-07-31 05:47:25 1 2006-02-16 02:30:53
  37573. 7695 2005-07-28 03:41:13 2742 323 2005-08-06 05:06:13 2 2006-02-16 02:30:53
  37574. 7696 2005-07-28 03:41:35 3463 56 2005-08-06 05:48:35 2 2006-02-16 02:30:53
  37575. 7697 2005-07-28 03:43:45 3966 377 2005-08-03 07:55:45 2 2006-02-16 02:30:53
  37576. 7698 2005-07-28 03:44:14 3650 561 2005-08-04 03:44:14 2 2006-02-16 02:30:53
  37577. 7699 2005-07-28 03:52:21 4332 53 2005-08-01 05:00:21 2 2006-02-16 02:30:53
  37578. 7700 2005-07-28 03:54:14 3546 124 2005-08-05 06:20:14 2 2006-02-16 02:30:53
  37579. 7701 2005-07-28 03:54:28 1604 306 2005-08-01 08:39:28 2 2006-02-16 02:30:53
  37580. 7702 2005-07-28 03:56:05 253 349 2005-07-31 03:29:05 1 2006-02-16 02:30:53
  37581. 7703 2005-07-28 03:59:21 2150 3 2005-08-05 08:52:21 1 2006-02-16 02:30:53
  37582. 7704 2005-07-28 04:02:13 2342 265 2005-08-04 00:51:13 1 2006-02-16 02:30:53
  37583. 7705 2005-07-28 04:02:58 1072 22 2005-08-05 01:19:58 2 2006-02-16 02:30:53
  37584. 7706 2005-07-28 04:03:17 994 263 2005-07-29 22:16:17 2 2006-02-16 02:30:53
  37585. 7707 2005-07-28 04:07:47 2563 232 2005-07-29 02:02:47 1 2006-02-16 02:30:53
  37586. 7708 2005-07-28 04:19:15 398 363 2005-08-04 04:41:15 1 2006-02-16 02:30:53
  37587. 7709 2005-07-28 04:22:14 3800 81 2005-07-31 09:18:14 2 2006-02-16 02:30:53
  37588. 7710 2005-07-28 04:24:07 3716 77 2005-08-03 22:49:07 2 2006-02-16 02:30:53
  37589. 7711 2005-07-28 04:26:42 2695 426 2005-07-29 07:30:42 2 2006-02-16 02:30:53
  37590. 7712 2005-07-28 04:29:53 3256 361 2005-08-02 00:57:53 2 2006-02-16 02:30:53
  37591. 7713 2005-07-28 04:32:14 2018 572 2005-08-03 04:30:14 2 2006-02-16 02:30:53
  37592. 7714 2005-07-28 04:32:30 940 70 2005-08-02 07:10:30 2 2006-02-16 02:30:53
  37593. 7715 2005-07-28 04:32:38 3210 512 2005-08-05 00:37:38 2 2006-02-16 02:30:53
  37594. 7716 2005-07-28 04:33:15 1493 284 2005-08-04 00:08:15 2 2006-02-16 02:30:53
  37595. 7717 2005-07-28 04:33:54 730 459 2005-07-30 02:46:54 2 2006-02-16 02:30:53
  37596. 7718 2005-07-28 04:37:59 3587 4 2005-07-29 09:20:59 2 2006-02-16 02:30:53
  37597. 7719 2005-07-28 04:39:09 2481 286 2005-08-05 03:15:09 1 2006-02-16 02:30:53
  37598. 7720 2005-07-28 04:41:44 185 520 2005-08-04 06:51:44 2 2006-02-16 02:30:53
  37599. 7721 2005-07-28 04:42:58 2228 83 2005-07-31 07:52:58 1 2006-02-16 02:30:53
  37600. 7722 2005-07-28 04:44:58 3828 309 2005-07-30 01:29:58 1 2006-02-16 02:30:53
  37601. 7723 2005-07-28 04:45:37 3263 147 2005-07-30 09:03:37 2 2006-02-16 02:30:53
  37602. 7724 2005-07-28 04:46:30 346 3 2005-08-04 08:41:30 1 2006-02-16 02:30:53
  37603. 7725 2005-07-28 04:47:14 1922 326 2005-08-04 09:03:14 1 2006-02-16 02:30:53
  37604. 7726 2005-07-28 04:52:19 2578 219 2005-08-04 09:05:19 1 2006-02-16 02:30:53
  37605. 7727 2005-07-28 04:52:43 2274 123 2005-08-03 01:12:43 2 2006-02-16 02:30:53
  37606. 7728 2005-07-28 04:56:33 492 130 2005-07-31 07:54:33 1 2006-02-16 02:30:53
  37607. 7729 2005-07-28 04:57:57 1491 89 2005-07-30 09:38:57 1 2006-02-16 02:30:53
  37608. 7730 2005-07-28 04:59:48 3118 155 2005-08-04 04:35:48 2 2006-02-16 02:30:53
  37609. 7731 2005-07-28 05:01:18 1533 413 2005-07-29 02:22:18 1 2006-02-16 02:30:53
  37610. 7732 2005-07-28 05:03:32 3597 158 2005-07-29 10:20:32 1 2006-02-16 02:30:53
  37611. 7733 2005-07-28 05:04:47 10 82 2005-08-05 05:12:47 2 2006-02-16 02:30:53
  37612. 7734 2005-07-28 05:08:44 2726 135 2005-07-30 09:42:44 2 2006-02-16 02:30:53
  37613. 7735 2005-07-28 05:09:56 3949 372 2005-07-31 23:34:56 2 2006-02-16 02:30:53
  37614. 7736 2005-07-28 05:12:04 4466 205 2005-08-05 02:28:04 2 2006-02-16 02:30:53
  37615. 7737 2005-07-28 05:15:03 1235 494 2005-08-04 01:24:03 1 2006-02-16 02:30:53
  37616. 7738 2005-07-28 05:21:42 80 10 2005-08-03 09:46:42 2 2006-02-16 02:30:53
  37617. 7739 2005-07-28 05:21:51 1554 186 2005-07-30 02:06:51 2 2006-02-16 02:30:53
  37618. 7740 2005-07-28 05:23:36 3613 395 2005-08-01 02:20:36 2 2006-02-16 02:30:53
  37619. 7741 2005-07-28 05:25:55 3917 591 2005-08-02 02:40:55 1 2006-02-16 02:30:53
  37620. 7742 2005-07-28 05:33:16 1808 49 2005-08-06 01:04:16 2 2006-02-16 02:30:53
  37621. 7743 2005-07-28 05:36:13 2883 210 2005-08-03 11:28:13 2 2006-02-16 02:30:53
  37622. 7744 2005-07-28 05:38:20 1863 288 2005-07-31 11:00:20 1 2006-02-16 02:30:53
  37623. 7745 2005-07-28 05:46:28 1014 285 2005-08-06 07:44:28 2 2006-02-16 02:30:53
  37624. 7746 2005-07-28 05:48:56 176 299 2005-08-04 07:33:56 1 2006-02-16 02:30:53
  37625. 7747 2005-07-28 05:50:11 1775 78 2005-08-03 09:51:11 1 2006-02-16 02:30:53
  37626. 7748 2005-07-28 05:52:23 3523 415 2005-07-31 01:35:23 2 2006-02-16 02:30:53
  37627. 7749 2005-07-28 05:53:36 3585 232 2005-08-01 03:49:36 1 2006-02-16 02:30:53
  37628. 7750 2005-07-28 05:55:30 820 220 2005-08-06 04:32:30 2 2006-02-16 02:30:53
  37629. 7751 2005-07-28 05:56:13 4425 176 2005-08-05 08:08:13 1 2006-02-16 02:30:53
  37630. 7752 2005-07-28 06:01:00 2218 209 2005-08-03 06:09:00 1 2006-02-16 02:30:53
  37631. 7753 2005-07-28 06:09:19 3071 531 2005-08-06 06:17:19 1 2006-02-16 02:30:53
  37632. 7754 2005-07-28 06:10:55 1981 138 2005-07-29 02:46:55 1 2006-02-16 02:30:53
  37633. 7755 2005-07-28 06:22:18 1247 449 2005-08-06 11:38:18 2 2006-02-16 02:30:53
  37634. 7756 2005-07-28 06:22:52 1611 469 2005-08-05 11:55:52 2 2006-02-16 02:30:53
  37635. 7757 2005-07-28 06:23:00 3445 502 2005-07-30 12:02:00 1 2006-02-16 02:30:53
  37636. 7758 2005-07-28 06:23:41 4333 356 2005-08-03 06:06:41 2 2006-02-16 02:30:53
  37637. 7759 2005-07-28 06:28:45 3381 405 2005-08-03 11:38:45 1 2006-02-16 02:30:53
  37638. 7760 2005-07-28 06:29:45 409 307 2005-08-03 01:36:45 1 2006-02-16 02:30:53
  37639. 7761 2005-07-28 06:31:45 3568 112 2005-07-30 01:36:45 2 2006-02-16 02:30:53
  37640. 7762 2005-07-28 06:34:23 3234 462 2005-08-05 09:55:23 2 2006-02-16 02:30:53
  37641. 7763 2005-07-28 06:35:16 2461 116 2005-08-03 02:46:16 2 2006-02-16 02:30:53
  37642. 7764 2005-07-28 06:40:05 3537 142 2005-07-30 02:51:05 2 2006-02-16 02:30:53
  37643. 7765 2005-07-28 06:40:33 4098 294 2005-07-31 01:25:33 1 2006-02-16 02:30:53
  37644. 7766 2005-07-28 06:41:57 2774 292 2005-08-06 11:21:57 2 2006-02-16 02:30:53
  37645. 7767 2005-07-28 06:42:02 329 139 2005-08-05 11:19:02 2 2006-02-16 02:30:53
  37646. 7768 2005-07-28 06:44:03 2450 123 2005-07-29 09:46:03 1 2006-02-16 02:30:53
  37647. 7769 2005-07-28 06:45:23 3250 30 2005-07-30 12:18:23 1 2006-02-16 02:30:53
  37648. 7770 2005-07-28 06:49:35 1486 507 2005-08-06 08:16:35 1 2006-02-16 02:30:53
  37649. 7771 2005-07-28 06:52:12 1003 175 2005-07-30 12:48:12 1 2006-02-16 02:30:53
  37650. 7772 2005-07-28 06:59:09 986 552 2005-08-01 10:49:09 1 2006-02-16 02:30:53
  37651. 7773 2005-07-28 07:02:17 4143 380 2005-07-30 04:16:17 2 2006-02-16 02:30:53
  37652. 7774 2005-07-28 07:03:25 3483 259 2005-08-03 02:05:25 1 2006-02-16 02:30:53
  37653. 7775 2005-07-28 07:04:36 3795 475 2005-08-03 06:36:36 2 2006-02-16 02:30:53
  37654. 7776 2005-07-28 07:04:36 4170 385 2005-08-01 09:32:36 1 2006-02-16 02:30:53
  37655. 7777 2005-07-28 07:04:42 4422 287 2005-07-29 01:57:42 1 2006-02-16 02:30:53
  37656. 7778 2005-07-28 07:10:11 1044 248 2005-08-05 05:09:11 1 2006-02-16 02:30:53
  37657. 7779 2005-07-28 07:11:11 3663 414 2005-07-30 11:12:11 1 2006-02-16 02:30:53
  37658. 7780 2005-07-28 07:11:55 3069 236 2005-08-06 05:41:55 1 2006-02-16 02:30:53
  37659. 7781 2005-07-28 07:13:20 541 539 2005-08-06 05:43:20 2 2006-02-16 02:30:53
  37660. 7782 2005-07-28 07:13:40 3770 199 2005-08-05 06:50:40 1 2006-02-16 02:30:53
  37661. 7783 2005-07-28 07:14:43 3817 581 2005-08-01 05:03:43 2 2006-02-16 02:30:53
  37662. 7784 2005-07-28 07:15:32 3611 505 2005-08-06 05:00:32 1 2006-02-16 02:30:53
  37663. 7785 2005-07-28 07:16:11 4277 460 2005-08-02 03:43:11 1 2006-02-16 02:30:53
  37664. 7786 2005-07-28 07:18:26 2285 222 2005-07-29 03:00:26 1 2006-02-16 02:30:53
  37665. 7787 2005-07-28 07:19:02 2191 203 2005-08-06 02:38:02 2 2006-02-16 02:30:53
  37666. 7788 2005-07-28 07:21:55 95 487 2005-08-03 06:33:55 1 2006-02-16 02:30:53
  37667. 7789 2005-07-28 07:22:07 2837 426 2005-08-06 10:47:07 1 2006-02-16 02:30:53
  37668. 7790 2005-07-28 07:22:35 2327 189 2005-07-30 02:59:35 1 2006-02-16 02:30:53
  37669. 7791 2005-07-28 07:22:51 822 514 2005-07-30 03:09:51 1 2006-02-16 02:30:53
  37670. 7792 2005-07-28 07:24:02 3736 236 2005-08-04 11:13:02 1 2006-02-16 02:30:53
  37671. 7793 2005-07-28 07:26:14 24 32 2005-08-03 07:45:14 1 2006-02-16 02:30:53
  37672. 7794 2005-07-28 07:28:03 4509 510 2005-08-06 12:32:03 2 2006-02-16 02:30:53
  37673. 7795 2005-07-28 07:28:16 1278 38 2005-07-31 12:03:16 1 2006-02-16 02:30:53
  37674. 7796 2005-07-28 07:39:39 622 419 2005-08-02 05:34:39 2 2006-02-16 02:30:53
  37675. 7797 2005-07-28 07:41:07 4180 370 2005-07-31 04:13:07 1 2006-02-16 02:30:53
  37676. 7798 2005-07-28 07:41:59 3281 236 2005-07-31 12:36:59 1 2006-02-16 02:30:53
  37677. 7799 2005-07-28 07:42:09 2163 384 2005-08-02 10:02:09 2 2006-02-16 02:30:53
  37678. 7800 2005-07-28 07:50:59 3386 499 2005-07-29 07:31:59 2 2006-02-16 02:30:53
  37679. 7801 2005-07-28 07:51:56 2052 9 2005-07-30 12:18:56 1 2006-02-16 02:30:53
  37680. 7802 2005-07-28 07:51:57 1108 298 2005-07-29 09:32:57 1 2006-02-16 02:30:53
  37681. 7803 2005-07-28 07:52:13 3438 449 2005-08-03 13:35:13 1 2006-02-16 02:30:53
  37682. 7804 2005-07-28 07:56:00 592 249 2005-07-30 10:33:00 2 2006-02-16 02:30:53
  37683. 7805 2005-07-28 07:56:41 3204 366 2005-08-04 06:53:41 1 2006-02-16 02:30:53
  37684. 7806 2005-07-28 07:58:17 4317 440 2005-08-06 10:15:17 1 2006-02-16 02:30:53
  37685. 7807 2005-07-28 07:58:27 2204 504 2005-08-01 02:48:27 2 2006-02-16 02:30:53
  37686. 7808 2005-07-28 07:58:56 4052 327 2005-08-02 10:49:56 1 2006-02-16 02:30:53
  37687. 7809 2005-07-28 07:59:46 4150 94 2005-08-02 02:56:46 1 2006-02-16 02:30:53
  37688. 7810 2005-07-28 08:00:38 30 537 2005-08-02 06:14:38 2 2006-02-16 02:30:53
  37689. 7811 2005-07-28 08:06:01 3891 347 2005-07-30 10:08:01 2 2006-02-16 02:30:53
  37690. 7812 2005-07-28 08:06:52 4556 237 2005-07-31 09:57:52 2 2006-02-16 02:30:53
  37691. 7813 2005-07-28 08:08:27 4216 411 2005-07-30 03:08:27 2 2006-02-16 02:30:53
  37692. 7814 2005-07-28 08:09:48 2662 258 2005-08-01 13:14:48 2 2006-02-16 02:30:53
  37693. 7815 2005-07-28 08:14:11 3551 300 2005-07-30 02:34:11 2 2006-02-16 02:30:53
  37694. 7816 2005-07-28 08:14:12 1422 283 2005-07-30 08:00:12 2 2006-02-16 02:30:53
  37695. 7817 2005-07-28 08:20:55 600 259 2005-07-30 11:55:55 1 2006-02-16 02:30:53
  37696. 7818 2005-07-28 08:25:00 1672 301 2005-07-29 14:07:00 1 2006-02-16 02:30:53
  37697. 7819 2005-07-28 08:27:14 3182 100 2005-08-02 12:34:14 2 2006-02-16 02:30:53
  37698. 7820 2005-07-28 08:28:51 4475 459 2005-08-05 10:00:51 1 2006-02-16 02:30:53
  37699. 7821 2005-07-28 08:31:23 1184 433 2005-08-03 05:08:23 2 2006-02-16 02:30:53
  37700. 7822 2005-07-28 08:31:45 1428 156 2005-07-31 11:06:45 1 2006-02-16 02:30:53
  37701. 7823 2005-07-28 08:32:53 84 428 2005-08-06 11:59:53 1 2006-02-16 02:30:53
  37702. 7824 2005-07-28 08:34:47 2241 153 2005-08-05 09:43:47 2 2006-02-16 02:30:53
  37703. 7825 2005-07-28 08:34:57 4340 348 2005-08-06 02:45:57 1 2006-02-16 02:30:53
  37704. 7826 2005-07-28 08:35:51 1473 214 2005-08-05 07:57:51 2 2006-02-16 02:30:53
  37705. 7827 2005-07-28 08:37:22 659 422 2005-07-31 04:27:22 1 2006-02-16 02:30:53
  37706. 7828 2005-07-28 08:40:46 1710 212 2005-07-30 14:22:46 1 2006-02-16 02:30:53
  37707. 7829 2005-07-28 08:43:39 111 5 2005-08-04 14:33:39 1 2006-02-16 02:30:53
  37708. 7830 2005-07-28 08:43:49 4492 144 2005-08-04 09:30:49 2 2006-02-16 02:30:53
  37709. 7831 2005-07-28 08:44:21 4436 499 2005-07-30 03:25:21 2 2006-02-16 02:30:53
  37710. 7832 2005-07-28 08:46:11 284 92 2005-08-04 06:55:11 1 2006-02-16 02:30:53
  37711. 7833 2005-07-28 08:46:14 1166 263 2005-08-04 06:13:14 1 2006-02-16 02:30:53
  37712. 7834 2005-07-28 08:46:43 4124 278 2005-07-31 07:09:43 2 2006-02-16 02:30:53
  37713. 7835 2005-07-28 08:49:39 43 547 2005-08-02 07:16:39 2 2006-02-16 02:30:53
  37714. 7836 2005-07-28 08:55:27 1770 481 2005-08-05 09:35:27 1 2006-02-16 02:30:53
  37715. 7837 2005-07-28 08:58:32 115 374 2005-07-29 14:11:32 1 2006-02-16 02:30:53
  37716. 7838 2005-07-28 09:00:21 2222 550 2005-07-29 05:52:21 1 2006-02-16 02:30:53
  37717. 7839 2005-07-28 09:01:13 914 518 2005-08-04 11:46:13 1 2006-02-16 02:30:53
  37718. 7840 2005-07-28 09:03:02 2899 482 2005-08-06 06:15:02 1 2006-02-16 02:30:53
  37719. 7841 2005-07-28 09:04:45 1092 1 2005-07-30 12:37:45 2 2006-02-16 02:30:53
  37720. 7842 2005-07-28 09:10:06 2447 276 2005-08-04 06:52:06 2 2006-02-16 02:30:53
  37721. 7843 2005-07-28 09:10:22 3962 75 2005-08-01 11:27:22 2 2006-02-16 02:30:53
  37722. 7844 2005-07-28 09:16:19 4220 187 2005-08-05 14:06:19 2 2006-02-16 02:30:53
  37723. 7845 2005-07-28 09:18:07 38 352 2005-08-04 10:23:07 2 2006-02-16 02:30:53
  37724. 7846 2005-07-28 09:21:18 4201 309 2005-08-06 07:10:18 2 2006-02-16 02:30:53
  37725. 7847 2005-07-28 09:23:14 3602 323 2005-08-02 11:02:14 2 2006-02-16 02:30:53
  37726. 7848 2005-07-28 09:24:31 162 509 2005-08-05 05:11:31 2 2006-02-16 02:30:53
  37727. 7849 2005-07-28 09:30:02 996 423 2005-08-06 12:41:02 2 2006-02-16 02:30:53
  37728. 7850 2005-07-28 09:31:13 2913 118 2005-08-02 14:06:13 2 2006-02-16 02:30:53
  37729. 7851 2005-07-28 09:31:58 3596 253 2005-08-04 09:58:58 2 2006-02-16 02:30:53
  37730. 7852 2005-07-28 09:34:29 3462 123 2005-07-30 05:48:29 1 2006-02-16 02:30:53
  37731. 7853 2005-07-28 09:36:38 4053 318 2005-07-29 15:01:38 1 2006-02-16 02:30:53
  37732. 7854 2005-07-28 09:42:31 3531 84 2005-08-02 09:25:31 1 2006-02-16 02:30:53
  37733. 7855 2005-07-28 09:43:02 2474 288 2005-07-30 12:57:02 2 2006-02-16 02:30:53
  37734. 7856 2005-07-28 09:48:24 2376 375 2005-07-29 09:49:24 2 2006-02-16 02:30:53
  37735. 7857 2005-07-28 09:49:40 4027 500 2005-08-01 05:34:40 2 2006-02-16 02:30:53
  37736. 7858 2005-07-28 09:50:18 992 144 2005-08-05 14:33:18 1 2006-02-16 02:30:53
  37737. 7859 2005-07-28 09:57:17 3392 547 2005-08-04 06:04:17 1 2006-02-16 02:30:53
  37738. 7860 2005-07-28 09:58:02 2400 241 2005-08-05 06:04:02 1 2006-02-16 02:30:53
  37739. 7861 2005-07-28 10:02:01 1781 208 2005-08-06 13:17:01 1 2006-02-16 02:30:53
  37740. 7862 2005-07-28 10:02:25 2507 299 2005-08-05 13:10:25 1 2006-02-16 02:30:53
  37741. 7863 2005-07-28 10:05:46 1212 182 2005-07-29 14:42:46 1 2006-02-16 02:30:53
  37742. 7864 2005-07-28 10:06:10 1238 20 2005-08-04 08:38:10 1 2006-02-16 02:30:53
  37743. 7865 2005-07-28 10:07:04 2334 148 2005-08-06 08:16:04 2 2006-02-16 02:30:53
  37744. 7866 2005-07-28 10:08:01 1602 101 2005-08-04 09:29:01 2 2006-02-16 02:30:53
  37745. 7867 2005-07-28 10:08:54 713 297 2005-07-30 10:26:54 2 2006-02-16 02:30:53
  37746. 7868 2005-07-28 10:08:55 3589 43 2005-07-30 11:52:55 1 2006-02-16 02:30:53
  37747. 7869 2005-07-28 10:13:15 3005 298 2005-08-03 12:58:15 1 2006-02-16 02:30:53
  37748. 7870 2005-07-28 10:16:03 970 240 2005-07-31 16:06:03 1 2006-02-16 02:30:53
  37749. 7871 2005-07-28 10:16:37 3990 491 2005-08-05 11:24:37 2 2006-02-16 02:30:53
  37750. 7872 2005-07-28 10:18:16 826 66 2005-07-31 10:57:16 1 2006-02-16 02:30:53
  37751. 7873 2005-07-28 10:19:46 2947 82 2005-07-31 04:43:46 2 2006-02-16 02:30:53
  37752. 7874 2005-07-28 10:21:52 2981 86 2005-08-06 16:19:52 1 2006-02-16 02:30:53
  37753. 7875 2005-07-28 10:23:48 3693 504 2005-08-02 12:09:48 1 2006-02-16 02:30:53
  37754. 7876 2005-07-28 10:24:22 3563 577 2005-08-04 07:15:22 1 2006-02-16 02:30:53
  37755. 7877 2005-07-28 10:25:36 2576 65 2005-08-05 12:46:36 1 2006-02-16 02:30:53
  37756. 7878 2005-07-28 10:27:10 1564 141 2005-07-29 11:22:10 1 2006-02-16 02:30:53
  37757. 7879 2005-07-28 10:27:46 1969 125 2005-07-31 07:48:46 1 2006-02-16 02:30:53
  37758. 7880 2005-07-28 10:30:37 3670 182 2005-08-03 08:05:37 2 2006-02-16 02:30:53
  37759. 7881 2005-07-28 10:33:22 533 249 2005-08-02 12:10:22 1 2006-02-16 02:30:53
  37760. 7882 2005-07-28 10:33:42 3922 516 2005-07-29 13:49:42 1 2006-02-16 02:30:53
  37761. 7883 2005-07-28 10:37:20 447 526 2005-08-02 05:08:20 1 2006-02-16 02:30:53
  37762. 7884 2005-07-28 10:37:24 3871 502 2005-07-31 10:31:24 1 2006-02-16 02:30:53
  37763. 7885 2005-07-28 10:37:41 4294 260 2005-08-05 07:56:41 1 2006-02-16 02:30:53
  37764. 7886 2005-07-28 10:37:55 237 352 2005-08-04 13:22:55 2 2006-02-16 02:30:53
  37765. 7887 2005-07-28 10:40:12 2820 253 2005-08-02 06:09:12 1 2006-02-16 02:30:53
  37766. 7888 2005-07-28 10:40:24 545 378 2005-08-01 16:18:24 1 2006-02-16 02:30:53
  37767. 7889 2005-07-28 10:43:21 3123 416 2005-07-30 09:11:21 1 2006-02-16 02:30:53
  37768. 7890 2005-07-28 10:43:40 3443 553 2005-07-31 06:07:40 1 2006-02-16 02:30:53
  37769. 7891 2005-07-28 10:43:56 3637 560 2005-08-05 14:04:56 2 2006-02-16 02:30:53
  37770. 7892 2005-07-28 10:46:58 2717 397 2005-07-30 16:03:58 1 2006-02-16 02:30:53
  37771. 7893 2005-07-28 10:49:27 3058 479 2005-08-02 06:46:27 1 2006-02-16 02:30:53
  37772. 7894 2005-07-28 10:53:58 3532 330 2005-08-02 13:42:58 2 2006-02-16 02:30:53
  37773. 7895 2005-07-28 10:57:15 900 67 2005-08-02 15:10:15 2 2006-02-16 02:30:53
  37774. 7896 2005-07-28 11:00:58 3561 389 2005-08-04 14:30:58 2 2006-02-16 02:30:53
  37775. 7897 2005-07-28 11:01:51 1396 75 2005-07-31 13:13:51 1 2006-02-16 02:30:53
  37776. 7898 2005-07-28 11:08:22 2680 499 2005-08-03 12:28:22 1 2006-02-16 02:30:53
  37777. 7899 2005-07-28 11:10:12 4130 452 2005-08-02 13:20:12 2 2006-02-16 02:30:53
  37778. 7900 2005-07-28 11:11:33 2781 154 2005-08-05 06:29:33 2 2006-02-16 02:30:53
  37779. 7901 2005-07-28 11:12:12 4435 280 2005-08-01 08:13:12 1 2006-02-16 02:30:53
  37780. 7902 2005-07-28 11:14:19 3066 356 2005-07-30 09:01:19 2 2006-02-16 02:30:53
  37781. 7903 2005-07-28 11:20:36 2767 588 2005-07-31 09:16:36 1 2006-02-16 02:30:53
  37782. 7904 2005-07-28 11:25:39 316 477 2005-08-06 08:22:39 2 2006-02-16 02:30:53
  37783. 7905 2005-07-28 11:26:57 4287 455 2005-08-02 06:14:57 1 2006-02-16 02:30:53
  37784. 7906 2005-07-28 11:31:42 1216 85 2005-08-01 11:56:42 2 2006-02-16 02:30:53
  37785. 7907 2005-07-28 11:32:00 3252 433 2005-07-30 15:27:00 1 2006-02-16 02:30:53
  37786. 7908 2005-07-28 11:32:57 3646 360 2005-08-03 13:30:57 2 2006-02-16 02:30:53
  37787. 7909 2005-07-28 11:38:08 3355 210 2005-07-29 13:54:08 1 2006-02-16 02:30:53
  37788. 7910 2005-07-28 11:44:56 2044 480 2005-08-05 14:37:56 2 2006-02-16 02:30:53
  37789. 7911 2005-07-28 11:46:45 390 3 2005-07-29 07:19:45 1 2006-02-16 02:30:53
  37790. 7912 2005-07-28 11:46:58 745 127 2005-08-05 12:50:58 1 2006-02-16 02:30:53
  37791. 7913 2005-07-28 11:47:23 4001 459 2005-08-05 06:36:23 1 2006-02-16 02:30:53
  37792. 7914 2005-07-28 11:48:08 2796 469 2005-07-30 14:14:08 1 2006-02-16 02:30:53
  37793. 7915 2005-07-28 11:49:46 2088 186 2005-08-04 12:21:46 2 2006-02-16 02:30:53
  37794. 7916 2005-07-28 11:49:53 3877 13 2005-07-29 15:01:53 1 2006-02-16 02:30:53
  37795. 7917 2005-07-28 11:56:57 2071 416 2005-07-29 14:06:57 1 2006-02-16 02:30:53
  37796. 7918 2005-07-28 11:58:53 63 473 2005-08-04 12:08:53 2 2006-02-16 02:30:53
  37797. 7919 2005-07-28 11:59:45 2138 36 2005-08-06 11:19:45 1 2006-02-16 02:30:53
  37798. 7920 2005-07-28 12:01:19 66 48 2005-08-05 07:08:19 1 2006-02-16 02:30:53
  37799. 7921 2005-07-28 12:02:46 116 100 2005-08-01 12:08:46 2 2006-02-16 02:30:53
  37800. 7922 2005-07-28 12:05:25 817 125 2005-08-02 12:13:25 2 2006-02-16 02:30:53
  37801. 7923 2005-07-28 12:08:29 2273 458 2005-08-04 12:30:29 1 2006-02-16 02:30:53
  37802. 7924 2005-07-28 12:08:53 656 97 2005-07-30 06:45:53 2 2006-02-16 02:30:53
  37803. 7925 2005-07-28 12:10:02 1763 500 2005-08-02 15:50:02 1 2006-02-16 02:30:53
  37804. 7926 2005-07-28 12:13:02 180 78 2005-08-05 08:54:02 1 2006-02-16 02:30:53
  37805. 7927 2005-07-28 12:13:42 1263 27 2005-08-05 12:02:42 1 2006-02-16 02:30:53
  37806. 7928 2005-07-28 12:15:51 912 473 2005-08-05 06:34:51 1 2006-02-16 02:30:53
  37807. 7929 2005-07-28 12:16:40 2652 307 2005-07-31 13:09:40 2 2006-02-16 02:30:53
  37808. 7930 2005-07-28 12:21:08 4181 320 2005-07-30 11:56:08 1 2006-02-16 02:30:53
  37809. 7931 2005-07-28 12:23:41 1923 326 2005-08-06 09:49:41 2 2006-02-16 02:30:53
  37810. 7932 2005-07-28 12:24:54 3738 462 2005-07-30 11:33:54 1 2006-02-16 02:30:53
  37811. 7933 2005-07-28 12:27:27 3175 297 2005-07-29 10:34:27 2 2006-02-16 02:30:53
  37812. 7934 2005-07-28 12:33:10 2642 332 2005-08-04 07:40:10 2 2006-02-16 02:30:53
  37813. 7935 2005-07-28 12:33:17 3664 462 2005-08-04 14:40:17 2 2006-02-16 02:30:53
  37814. 7936 2005-07-28 12:33:21 563 520 2005-07-30 13:31:21 2 2006-02-16 02:30:53
  37815. 7937 2005-07-28 12:38:22 3944 323 2005-07-29 09:19:22 1 2006-02-16 02:30:53
  37816. 7938 2005-07-28 12:39:11 2579 114 2005-08-04 16:56:11 1 2006-02-16 02:30:53
  37817. 7939 2005-07-28 12:45:47 2004 37 2005-07-30 18:32:47 2 2006-02-16 02:30:53
  37818. 7940 2005-07-28 12:46:47 901 409 2005-07-29 06:46:47 2 2006-02-16 02:30:53
  37819. 7941 2005-07-28 12:47:20 439 566 2005-08-01 08:46:20 1 2006-02-16 02:30:53
  37820. 7942 2005-07-28 12:49:44 1636 56 2005-07-31 18:07:44 2 2006-02-16 02:30:53
  37821. 7943 2005-07-28 12:50:55 2914 346 2005-08-04 11:29:55 2 2006-02-16 02:30:53
  37822. 7944 2005-07-28 12:51:22 3148 504 2005-07-30 12:19:22 1 2006-02-16 02:30:53
  37823. 7945 2005-07-28 12:53:58 3326 316 2005-08-03 14:04:58 1 2006-02-16 02:30:53
  37824. 7946 2005-07-28 13:01:22 99 90 2005-08-03 15:27:22 2 2006-02-16 02:30:53
  37825. 7947 2005-07-28 13:05:50 2504 279 2005-08-02 11:16:50 2 2006-02-16 02:30:53
  37826. 7948 2005-07-28 13:06:16 215 589 2005-08-05 08:38:16 1 2006-02-16 02:30:53
  37827. 7949 2005-07-28 13:07:24 2145 487 2005-08-02 09:41:24 1 2006-02-16 02:30:53
  37828. 7950 2005-07-28 13:21:00 2286 122 2005-08-05 18:47:00 2 2006-02-16 02:30:53
  37829. 7951 2005-07-28 13:21:16 3979 237 2005-08-06 08:21:16 1 2006-02-16 02:30:53
  37830. 7952 2005-07-28 13:23:49 3313 158 2005-08-01 08:50:49 1 2006-02-16 02:30:53
  37831. 7953 2005-07-28 13:24:32 4471 319 2005-08-05 16:09:32 2 2006-02-16 02:30:53
  37832. 7954 2005-07-28 13:25:05 3735 145 2005-07-29 18:50:05 2 2006-02-16 02:30:53
  37833. 7955 2005-07-28 13:31:36 1519 522 2005-07-30 10:03:36 1 2006-02-16 02:30:53
  37834. 7956 2005-07-28 13:32:17 4335 118 2005-08-06 14:51:17 2 2006-02-16 02:30:53
  37835. 7957 2005-07-28 13:34:08 1623 78 2005-08-05 07:58:08 1 2006-02-16 02:30:53
  37836. 7958 2005-07-28 13:34:34 421 593 2005-07-29 16:03:34 1 2006-02-16 02:30:53
  37837. 7959 2005-07-28 13:43:20 1549 178 2005-08-02 12:13:20 2 2006-02-16 02:30:53
  37838. 7960 2005-07-28 13:47:08 2718 324 2005-08-03 15:17:08 1 2006-02-16 02:30:53
  37839. 7961 2005-07-28 13:47:21 3284 45 2005-08-01 09:33:21 1 2006-02-16 02:30:53
  37840. 7962 2005-07-28 13:48:09 1746 126 2005-08-03 19:21:09 1 2006-02-16 02:30:53
  37841. 7963 2005-07-28 13:48:38 921 247 2005-08-06 19:37:38 2 2006-02-16 02:30:53
  37842. 7964 2005-07-28 13:49:58 2528 574 2005-08-03 10:03:58 2 2006-02-16 02:30:53
  37843. 7965 2005-07-28 13:52:57 3671 134 2005-07-29 14:54:57 1 2006-02-16 02:30:53
  37844. 7966 2005-07-28 13:53:54 2514 91 2005-08-06 15:32:54 1 2006-02-16 02:30:53
  37845. 7967 2005-07-28 13:56:51 2040 187 2005-08-03 19:38:51 1 2006-02-16 02:30:53
  37846. 7968 2005-07-28 13:57:35 3865 597 2005-08-04 13:40:35 1 2006-02-16 02:30:53
  37847. 7969 2005-07-28 13:57:37 2224 123 2005-08-04 19:31:37 1 2006-02-16 02:30:53
  37848. 7970 2005-07-28 13:58:38 998 507 2005-08-02 12:27:38 1 2006-02-16 02:30:53
  37849. 7971 2005-07-28 14:00:47 1910 445 2005-08-02 10:01:47 1 2006-02-16 02:30:53
  37850. 7972 2005-07-28 14:07:46 2930 269 2005-08-01 11:28:46 2 2006-02-16 02:30:53
  37851. 7973 2005-07-28 14:10:06 3936 339 2005-07-29 11:26:06 2 2006-02-16 02:30:53
  37852. 7974 2005-07-28 14:11:57 2442 380 2005-08-02 19:25:57 2 2006-02-16 02:30:53
  37853. 7975 2005-07-28 14:12:47 2565 211 2005-08-05 09:18:47 1 2006-02-16 02:30:53
  37854. 7976 2005-07-28 14:13:24 2296 205 2005-08-05 09:01:24 1 2006-02-16 02:30:53
  37855. 7977 2005-07-28 14:15:54 3162 389 2005-08-01 18:58:54 2 2006-02-16 02:30:53
  37856. 7978 2005-07-28 14:16:14 508 431 2005-08-01 12:53:14 2 2006-02-16 02:30:53
  37857. 7979 2005-07-28 14:16:30 3303 94 2005-08-03 09:39:30 2 2006-02-16 02:30:53
  37858. 7980 2005-07-28 14:16:49 1019 329 2005-08-05 09:20:49 1 2006-02-16 02:30:53
  37859. 7981 2005-07-28 14:18:25 90 392 2005-08-04 15:21:25 2 2006-02-16 02:30:53
  37860. 7982 2005-07-28 14:19:59 668 71 2005-07-29 14:09:59 2 2006-02-16 02:30:53
  37861. 7983 2005-07-28 14:23:01 1836 115 2005-07-29 11:51:01 1 2006-02-16 02:30:53
  37862. 7984 2005-07-28 14:27:51 2893 208 2005-08-04 17:34:51 1 2006-02-16 02:30:53
  37863. 7985 2005-07-28 14:29:01 4022 388 2005-08-03 17:20:01 2 2006-02-16 02:30:53
  37864. 7986 2005-07-28 14:30:13 1283 395 2005-08-05 09:35:13 1 2006-02-16 02:30:53
  37865. 7987 2005-07-28 14:36:52 288 443 2005-08-05 16:49:52 2 2006-02-16 02:30:53
  37866. 7988 2005-07-28 14:37:18 2906 517 2005-08-05 10:53:18 1 2006-02-16 02:30:53
  37867. 7989 2005-07-28 14:39:05 3196 149 2005-08-05 13:58:05 2 2006-02-16 02:30:53
  37868. 7990 2005-07-28 14:43:08 188 232 2005-08-01 10:51:08 2 2006-02-16 02:30:53
  37869. 7991 2005-07-28 14:45:45 1133 59 2005-07-29 15:05:45 2 2006-02-16 02:30:53
  37870. 7992 2005-07-28 14:53:06 1851 33 2005-07-29 18:17:06 1 2006-02-16 02:30:53
  37871. 7993 2005-07-28 14:56:41 2926 353 2005-08-01 17:01:41 2 2006-02-16 02:30:53
  37872. 7994 2005-07-28 14:56:54 2431 21 2005-07-30 09:56:54 2 2006-02-16 02:30:53
  37873. 7995 2005-07-28 15:00:09 536 89 2005-08-01 12:33:09 2 2006-02-16 02:30:53
  37874. 7996 2005-07-28 15:00:49 2171 408 2005-08-04 20:58:49 2 2006-02-16 02:30:53
  37875. 7997 2005-07-28 15:02:25 1845 591 2005-08-04 14:35:25 1 2006-02-16 02:30:53
  37876. 7998 2005-07-28 15:08:48 1397 598 2005-07-31 16:14:48 2 2006-02-16 02:30:53
  37877. 7999 2005-07-28 15:10:14 2750 170 2005-08-06 17:08:14 2 2006-02-16 02:30:53
  37878. 8000 2005-07-28 15:10:25 1644 212 2005-08-06 19:15:25 1 2006-02-16 02:30:53
  37879. 8001 2005-07-28 15:10:55 2570 10 2005-08-05 18:23:55 1 2006-02-16 02:30:53
  37880. 8002 2005-07-28 15:11:00 22 449 2005-07-31 15:46:00 2 2006-02-16 02:30:53
  37881. 8003 2005-07-28 15:11:27 2775 89 2005-08-04 18:35:27 1 2006-02-16 02:30:53
  37882. 8004 2005-07-28 15:14:07 4428 393 2005-07-30 19:32:07 2 2006-02-16 02:30:53
  37883. 8005 2005-07-28 15:15:11 670 488 2005-07-29 14:54:11 1 2006-02-16 02:30:53
  37884. 8006 2005-07-28 15:15:41 3959 109 2005-08-05 19:29:41 2 2006-02-16 02:30:53
  37885. 8007 2005-07-28 15:22:27 1942 525 2005-07-30 13:06:27 2 2006-02-16 02:30:53
  37886. 8008 2005-07-28 15:25:55 2093 41 2005-08-04 13:16:55 1 2006-02-16 02:30:53
  37887. 8009 2005-07-28 15:25:58 337 372 2005-08-04 10:16:58 2 2006-02-16 02:30:53
  37888. 8010 2005-07-28 15:26:20 68 467 2005-08-04 18:39:20 2 2006-02-16 02:30:53
  37889. 8011 2005-07-28 15:26:39 4274 497 2005-07-30 13:59:39 1 2006-02-16 02:30:53
  37890. 8012 2005-07-28 15:29:00 1513 343 2005-08-05 12:28:00 2 2006-02-16 02:30:53
  37891. 8013 2005-07-28 15:30:26 2074 403 2005-08-05 16:29:26 1 2006-02-16 02:30:53
  37892. 8014 2005-07-28 15:32:07 2339 11 2005-07-31 20:52:07 1 2006-02-16 02:30:53
  37893. 8015 2005-07-28 15:33:03 1814 23 2005-07-30 15:32:03 2 2006-02-16 02:30:53
  37894. 8016 2005-07-28 15:35:41 516 391 2005-07-30 20:06:41 2 2006-02-16 02:30:53
  37895. 8017 2005-07-28 15:35:41 1764 328 2005-08-01 19:12:41 1 2006-02-16 02:30:53
  37896. 8018 2005-07-28 15:36:48 4129 377 2005-08-06 20:04:48 1 2006-02-16 02:30:53
  37897. 8019 2005-07-28 15:37:43 1844 84 2005-08-04 15:40:43 2 2006-02-16 02:30:53
  37898. 8020 2005-07-28 15:43:32 4459 498 2005-08-05 12:19:32 1 2006-02-16 02:30:53
  37899. 8021 2005-07-28 15:45:24 1920 501 2005-08-04 10:49:24 1 2006-02-16 02:30:53
  37900. 8022 2005-07-28 15:48:56 294 314 2005-08-06 13:40:56 1 2006-02-16 02:30:53
  37901. 8023 2005-07-28 15:53:29 2133 411 2005-07-31 12:26:29 1 2006-02-16 02:30:53
  37902. 8024 2005-07-28 15:55:40 1735 90 2005-08-02 09:56:40 1 2006-02-16 02:30:53
  37903. 8025 2005-07-28 16:03:27 2932 421 2005-08-03 21:58:27 2 2006-02-16 02:30:53
  37904. 8026 2005-07-28 16:05:38 4225 511 2005-07-29 21:28:38 2 2006-02-16 02:30:53
  37905. 8027 2005-07-28 16:09:57 1335 436 2005-08-05 18:17:57 1 2006-02-16 02:30:53
  37906. 8028 2005-07-28 16:11:15 2715 137 2005-08-05 15:11:15 1 2006-02-16 02:30:53
  37907. 8029 2005-07-28 16:11:21 4273 61 2005-08-05 13:52:21 1 2006-02-16 02:30:53
  37908. 8030 2005-07-28 16:12:53 2633 30 2005-07-31 17:15:53 1 2006-02-16 02:30:53
  37909. 8031 2005-07-28 16:15:49 2196 40 2005-08-02 18:27:49 2 2006-02-16 02:30:53
  37910. 8032 2005-07-28 16:17:00 431 230 2005-07-29 13:32:00 1 2006-02-16 02:30:53
  37911. 8033 2005-07-28 16:18:23 4268 1 2005-07-30 17:56:23 1 2006-02-16 02:30:53
  37912. 8034 2005-07-28 16:20:26 1997 502 2005-08-04 19:11:26 2 2006-02-16 02:30:53
  37913. 8035 2005-07-28 16:23:01 1503 14 2005-08-05 10:52:01 1 2006-02-16 02:30:53
  37914. 8036 2005-07-28 16:27:43 2741 412 2005-08-01 13:41:43 2 2006-02-16 02:30:53
  37915. 8037 2005-07-28 16:31:20 3973 409 2005-07-31 12:18:20 2 2006-02-16 02:30:53
  37916. 8038 2005-07-28 16:32:55 1225 30 2005-07-30 21:08:55 1 2006-02-16 02:30:53
  37917. 8039 2005-07-28 16:35:16 1996 203 2005-07-30 14:49:16 1 2006-02-16 02:30:53
  37918. 8040 2005-07-28 16:39:43 4543 163 2005-08-02 20:00:43 2 2006-02-16 02:30:53
  37919. 8041 2005-07-28 16:39:56 763 357 2005-07-30 18:44:56 1 2006-02-16 02:30:53
  37920. 8042 2005-07-28 16:45:11 4325 14 2005-08-04 17:16:11 2 2006-02-16 02:30:53
  37921. 8043 2005-07-28 16:45:44 208 577 2005-08-01 12:26:44 1 2006-02-16 02:30:53
  37922. 8044 2005-07-28 16:49:12 879 442 2005-08-02 22:41:12 1 2006-02-16 02:30:53
  37923. 8045 2005-07-28 16:49:38 3427 368 2005-08-03 15:42:38 1 2006-02-16 02:30:53
  37924. 8046 2005-07-28 16:49:41 2873 120 2005-07-31 21:33:41 1 2006-02-16 02:30:53
  37925. 8047 2005-07-28 16:49:43 2936 292 2005-08-03 14:48:43 2 2006-02-16 02:30:53
  37926. 8048 2005-07-28 16:50:26 2721 182 2005-08-06 19:20:26 1 2006-02-16 02:30:53
  37927. 8049 2005-07-28 16:51:58 673 42 2005-07-31 22:18:58 1 2006-02-16 02:30:53
  37928. 8050 2005-07-28 16:55:47 1864 488 2005-08-02 13:20:47 1 2006-02-16 02:30:53
  37929. 8051 2005-07-28 16:56:16 4405 192 2005-07-29 22:48:16 1 2006-02-16 02:30:53
  37930. 8052 2005-07-28 16:57:31 2460 166 2005-08-03 18:03:31 2 2006-02-16 02:30:53
  37931. 8053 2005-07-28 16:59:41 1511 526 2005-08-03 22:28:41 2 2006-02-16 02:30:53
  37932. 8054 2005-07-28 17:02:18 1062 225 2005-08-06 11:55:18 1 2006-02-16 02:30:53
  37933. 8055 2005-07-28 17:02:32 4162 304 2005-07-31 22:05:32 2 2006-02-16 02:30:53
  37934. 8056 2005-07-28 17:04:15 4018 589 2005-08-03 19:11:15 2 2006-02-16 02:30:53
  37935. 8057 2005-07-28 17:07:13 4177 483 2005-08-03 16:25:13 1 2006-02-16 02:30:53
  37936. 8058 2005-07-28 17:07:49 2148 404 2005-08-03 22:57:49 1 2006-02-16 02:30:53
  37937. 8059 2005-07-28 17:09:59 2611 372 2005-07-31 15:42:59 2 2006-02-16 02:30:53
  37938. 8060 2005-07-28 17:10:02 3765 577 2005-08-05 17:11:02 1 2006-02-16 02:30:53
  37939. 8061 2005-07-28 17:12:53 650 467 2005-08-05 13:56:53 2 2006-02-16 02:30:53
  37940. 8062 2005-07-28 17:15:06 1384 317 2005-07-30 16:56:06 2 2006-02-16 02:30:53
  37941. 8063 2005-07-28 17:15:11 935 163 2005-08-04 16:45:11 1 2006-02-16 02:30:53
  37942. 8064 2005-07-28 17:15:38 3788 488 2005-08-04 18:04:38 2 2006-02-16 02:30:53
  37943. 8065 2005-07-28 17:15:48 413 220 2005-08-04 15:49:48 2 2006-02-16 02:30:53
  37944. 8066 2005-07-28 17:20:09 3208 462 2005-07-31 18:36:09 2 2006-02-16 02:30:53
  37945. 8067 2005-07-28 17:20:17 3923 209 2005-07-29 21:55:17 1 2006-02-16 02:30:53
  37946. 8068 2005-07-28 17:22:28 209 216 2005-07-29 12:24:28 2 2006-02-16 02:30:53
  37947. 8069 2005-07-28 17:23:46 2822 178 2005-07-30 16:19:46 1 2006-02-16 02:30:53
  37948. 8070 2005-07-28 17:26:56 1606 89 2005-08-01 17:33:56 1 2006-02-16 02:30:53
  37949. 8071 2005-07-28 17:27:48 2582 131 2005-08-03 11:48:48 2 2006-02-16 02:30:53
  37950. 8072 2005-07-28 17:27:59 2347 99 2005-07-30 19:08:59 1 2006-02-16 02:30:53
  37951. 8073 2005-07-28 17:29:02 630 314 2005-08-01 22:17:02 2 2006-02-16 02:30:53
  37952. 8074 2005-07-28 17:33:39 1558 1 2005-07-29 20:17:39 1 2006-02-16 02:30:53
  37953. 8075 2005-07-28 17:37:28 2175 61 2005-07-29 11:56:28 2 2006-02-16 02:30:53
  37954. 8076 2005-07-28 17:45:58 214 17 2005-08-04 18:07:58 2 2006-02-16 02:30:53
  37955. 8077 2005-07-28 17:54:35 3253 122 2005-07-29 19:28:35 2 2006-02-16 02:30:53
  37956. 8078 2005-07-28 17:54:42 3839 407 2005-07-30 18:18:42 2 2006-02-16 02:30:53
  37957. 8079 2005-07-28 17:58:36 3564 432 2005-07-29 14:48:36 2 2006-02-16 02:30:53
  37958. 8080 2005-07-28 18:05:06 3035 406 2005-07-29 22:44:06 2 2006-02-16 02:30:53
  37959. 8081 2005-07-28 18:06:46 4404 362 2005-08-04 18:54:46 1 2006-02-16 02:30:53
  37960. 8082 2005-07-28 18:08:02 3089 423 2005-08-04 14:33:02 2 2006-02-16 02:30:53
  37961. 8083 2005-07-28 18:09:48 2187 30 2005-08-04 21:47:48 2 2006-02-16 02:30:53
  37962. 8084 2005-07-28 18:11:58 911 571 2005-08-03 23:41:58 2 2006-02-16 02:30:53
  37963. 8085 2005-07-28 18:13:15 3059 552 2005-08-04 13:45:15 2 2006-02-16 02:30:53
  37964. 8086 2005-07-28 18:17:14 1182 3 2005-07-30 18:22:14 2 2006-02-16 02:30:53
  37965. 8087 2005-07-28 18:21:16 1913 295 2005-08-03 12:38:16 2 2006-02-16 02:30:53
  37966. 8088 2005-07-28 18:23:49 2590 343 2005-08-06 23:25:49 2 2006-02-16 02:30:53
  37967. 8089 2005-07-28 18:26:47 1414 50 2005-08-03 21:28:47 1 2006-02-16 02:30:53
  37968. 8090 2005-07-28 18:27:29 1336 387 2005-08-02 14:08:29 2 2006-02-16 02:30:53
  37969. 8091 2005-07-28 18:27:29 3025 126 2005-08-01 19:45:29 2 2006-02-16 02:30:53
  37970. 8092 2005-07-28 18:28:07 2034 167 2005-07-30 19:17:07 2 2006-02-16 02:30:53
  37971. 8093 2005-07-28 18:29:16 1427 533 2005-08-05 21:49:16 1 2006-02-16 02:30:53
  37972. 8094 2005-07-28 18:30:28 4276 432 2005-08-05 17:37:28 2 2006-02-16 02:30:53
  37973. 8095 2005-07-28 18:32:40 2685 42 2005-08-06 23:45:40 1 2006-02-16 02:30:53
  37974. 8096 2005-07-28 18:32:46 502 506 2005-08-06 15:00:46 1 2006-02-16 02:30:53
  37975. 8097 2005-07-28 18:32:49 2719 436 2005-08-06 16:09:49 1 2006-02-16 02:30:53
  37976. 8098 2005-07-28 18:34:20 1757 41 2005-07-31 19:07:20 2 2006-02-16 02:30:53
  37977. 8099 2005-07-28 18:35:12 3694 36 2005-07-30 15:44:12 2 2006-02-16 02:30:53
  37978. 8100 2005-07-28 18:43:11 2859 11 2005-08-02 15:56:11 2 2006-02-16 02:30:53
  37979. 8101 2005-07-28 18:47:23 731 6 2005-07-31 16:23:23 1 2006-02-16 02:30:53
  37980. 8102 2005-07-28 18:49:43 4505 237 2005-08-03 23:04:43 2 2006-02-16 02:30:53
  37981. 8103 2005-07-28 18:50:14 4472 397 2005-08-04 16:53:14 1 2006-02-16 02:30:53
  37982. 8104 2005-07-28 18:59:36 1080 533 2005-08-03 22:05:36 2 2006-02-16 02:30:53
  37983. 8105 2005-07-28 18:59:46 1316 314 2005-07-29 22:51:46 1 2006-02-16 02:30:53
  37984. 8106 2005-07-28 19:02:46 963 137 2005-07-30 20:48:46 2 2006-02-16 02:30:53
  37985. 8107 2005-07-28 19:03:16 1318 518 2005-08-05 17:18:16 2 2006-02-16 02:30:53
  37986. 8108 2005-07-28 19:07:38 1600 295 2005-08-03 15:13:38 2 2006-02-16 02:30:53
  37987. 8109 2005-07-28 19:07:44 652 407 2005-07-31 14:59:44 1 2006-02-16 02:30:53
  37988. 8110 2005-07-28 19:07:45 1244 225 2005-08-04 22:12:45 1 2006-02-16 02:30:53
  37989. 8111 2005-07-28 19:10:03 3226 148 2005-07-29 22:25:03 1 2006-02-16 02:30:53
  37990. 8112 2005-07-28 19:11:07 2444 528 2005-08-03 18:41:07 1 2006-02-16 02:30:53
  37991. 8113 2005-07-28 19:14:00 4269 541 2005-08-06 00:05:00 2 2006-02-16 02:30:53
  37992. 8114 2005-07-28 19:14:06 815 509 2005-08-05 13:16:06 1 2006-02-16 02:30:53
  37993. 8115 2005-07-28 19:14:17 2080 106 2005-08-03 14:58:17 2 2006-02-16 02:30:53
  37994. 8116 2005-07-28 19:20:07 4497 1 2005-07-29 22:54:07 1 2006-02-16 02:30:53
  37995. 8117 2005-07-28 19:20:16 1502 300 2005-08-05 23:55:16 1 2006-02-16 02:30:53
  37996. 8118 2005-07-28 19:22:22 331 566 2005-08-01 22:13:22 1 2006-02-16 02:30:53
  37997. 8119 2005-07-28 19:23:15 1542 398 2005-08-04 15:53:15 2 2006-02-16 02:30:53
  37998. 8120 2005-07-28 19:24:24 3993 235 2005-07-31 14:31:24 2 2006-02-16 02:30:53
  37999. 8121 2005-07-28 19:25:45 2229 363 2005-08-02 13:30:45 2 2006-02-16 02:30:53
  38000. 8122 2005-07-28 19:27:37 2141 18 2005-07-29 19:48:37 2 2006-02-16 02:30:53
  38001. 8123 2005-07-28 19:28:23 2256 138 2005-08-04 19:41:23 1 2006-02-16 02:30:53
  38002. 8124 2005-07-28 19:28:58 1187 357 2005-07-31 00:45:58 1 2006-02-16 02:30:53
  38003. 8125 2005-07-28 19:31:48 4330 96 2005-07-30 01:09:48 1 2006-02-16 02:30:53
  38004. 8126 2005-07-28 19:32:41 719 537 2005-08-05 00:33:41 2 2006-02-16 02:30:53
  38005. 8127 2005-07-28 19:45:19 4265 20 2005-07-31 22:07:19 2 2006-02-16 02:30:53
  38006. 8128 2005-07-28 19:46:06 2872 71 2005-08-06 16:10:06 2 2006-02-16 02:30:53
  38007. 8129 2005-07-28 19:47:02 2546 345 2005-07-31 21:33:02 2 2006-02-16 02:30:53
  38008. 8130 2005-07-28 19:48:15 4055 499 2005-08-05 14:18:15 2 2006-02-16 02:30:53
  38009. 8131 2005-07-28 19:55:21 437 281 2005-08-02 21:52:21 2 2006-02-16 02:30:53
  38010. 8132 2005-07-28 19:57:31 1303 562 2005-08-02 22:16:31 2 2006-02-16 02:30:53
  38011. 8133 2005-07-28 20:01:06 849 461 2005-08-01 20:01:06 1 2006-02-16 02:30:53
  38012. 8134 2005-07-28 20:01:23 1695 41 2005-08-03 01:00:23 2 2006-02-16 02:30:53
  38013. 8135 2005-07-28 20:03:25 1339 164 2005-08-03 01:28:25 2 2006-02-16 02:30:53
  38014. 8136 2005-07-28 20:05:48 3434 429 2005-08-01 20:31:48 2 2006-02-16 02:30:53
  38015. 8137 2005-07-28 20:07:18 3188 312 2005-08-03 17:41:18 1 2006-02-16 02:30:53
  38016. 8138 2005-07-28 20:12:17 1258 371 2005-08-01 15:21:17 2 2006-02-16 02:30:53
  38017. 8139 2005-07-28 20:16:30 3651 177 2005-08-03 18:00:30 2 2006-02-16 02:30:53
  38018. 8140 2005-07-28 20:17:50 4270 119 2005-07-30 18:07:50 1 2006-02-16 02:30:53
  38019. 8141 2005-07-28 20:21:19 361 523 2005-07-30 19:16:19 2 2006-02-16 02:30:53
  38020. 8142 2005-07-28 20:21:54 1075 322 2005-07-31 18:39:54 2 2006-02-16 02:30:53
  38021. 8143 2005-07-28 20:23:11 3629 429 2005-08-01 18:17:11 1 2006-02-16 02:30:53
  38022. 8144 2005-07-28 20:30:55 3556 320 2005-07-31 18:10:55 2 2006-02-16 02:30:53
  38023. 8145 2005-07-28 20:34:41 937 198 2005-08-05 15:28:41 2 2006-02-16 02:30:53
  38024. 8146 2005-07-28 20:37:36 2430 476 2005-07-31 16:03:36 2 2006-02-16 02:30:53
  38025. 8147 2005-07-28 20:37:56 628 228 2005-07-30 18:26:56 1 2006-02-16 02:30:53
  38026. 8148 2005-07-28 20:39:47 537 347 2005-08-02 16:29:47 1 2006-02-16 02:30:53
  38027. 8149 2005-07-28 20:48:12 1790 591 2005-08-01 20:07:12 2 2006-02-16 02:30:53
  38028. 8150 2005-07-28 20:50:41 3489 497 2005-08-02 00:43:41 1 2006-02-16 02:30:53
  38029. 8151 2005-07-28 20:50:52 4370 495 2005-07-31 14:50:52 1 2006-02-16 02:30:53
  38030. 8152 2005-07-28 20:53:05 2557 46 2005-08-06 20:03:05 2 2006-02-16 02:30:53
  38031. 8153 2005-07-28 20:55:49 2173 347 2005-08-01 15:56:49 2 2006-02-16 02:30:53
  38032. 8154 2005-07-28 20:56:18 1180 285 2005-08-01 21:56:18 2 2006-02-16 02:30:53
  38033. 8155 2005-07-28 20:57:06 3023 428 2005-08-02 18:40:06 2 2006-02-16 02:30:53
  38034. 8156 2005-07-28 20:59:04 1977 257 2005-08-01 01:52:04 1 2006-02-16 02:30:53
  38035. 8157 2005-07-28 21:06:45 915 566 2005-08-04 16:06:45 1 2006-02-16 02:30:53
  38036. 8158 2005-07-28 21:08:46 4327 458 2005-08-01 21:50:46 2 2006-02-16 02:30:53
  38037. 8159 2005-07-28 21:09:28 1118 47 2005-08-04 15:34:28 1 2006-02-16 02:30:53
  38038. 8160 2005-07-28 21:10:30 2446 138 2005-08-05 16:52:30 2 2006-02-16 02:30:53
  38039. 8161 2005-07-28 21:11:00 848 555 2005-08-03 23:32:00 1 2006-02-16 02:30:53
  38040. 8162 2005-07-28 21:11:46 4393 107 2005-08-04 18:26:46 1 2006-02-16 02:30:53
  38041. 8163 2005-07-28 21:11:48 1919 157 2005-07-31 18:30:48 1 2006-02-16 02:30:53
  38042. 8164 2005-07-28 21:17:19 1674 461 2005-07-30 21:12:19 2 2006-02-16 02:30:53
  38043. 8165 2005-07-28 21:23:06 3460 197 2005-08-01 21:32:06 1 2006-02-16 02:30:53
  38044. 8166 2005-07-28 21:23:33 3906 42 2005-08-03 21:07:33 2 2006-02-16 02:30:53
  38045. 8167 2005-07-28 21:25:45 3181 311 2005-08-04 18:04:45 1 2006-02-16 02:30:53
  38046. 8168 2005-07-28 21:28:32 1120 365 2005-07-30 02:10:32 1 2006-02-16 02:30:53
  38047. 8169 2005-07-28 21:29:46 4086 366 2005-08-06 22:29:46 1 2006-02-16 02:30:53
  38048. 8170 2005-07-28 21:32:29 2495 40 2005-08-03 22:02:29 1 2006-02-16 02:30:53
  38049. 8171 2005-07-28 21:32:57 3380 296 2005-07-30 21:19:57 1 2006-02-16 02:30:53
  38050. 8172 2005-07-28 21:34:36 1237 329 2005-08-06 23:53:36 1 2006-02-16 02:30:53
  38051. 8173 2005-07-28 21:35:44 4377 332 2005-08-06 19:15:44 2 2006-02-16 02:30:53
  38052. 8174 2005-07-28 21:36:52 465 359 2005-08-04 00:32:52 1 2006-02-16 02:30:53
  38053. 8175 2005-07-28 21:38:16 641 429 2005-08-07 01:34:16 2 2006-02-16 02:30:53
  38054. 8176 2005-07-28 21:42:08 3527 347 2005-08-03 22:59:08 2 2006-02-16 02:30:53
  38055. 8177 2005-07-28 21:43:54 3696 122 2005-08-02 22:38:54 2 2006-02-16 02:30:53
  38056. 8178 2005-07-28 21:54:31 2825 503 2005-08-02 23:56:31 2 2006-02-16 02:30:53
  38057. 8179 2005-07-28 22:05:13 2902 578 2005-07-30 21:57:13 2 2006-02-16 02:30:53
  38058. 8180 2005-07-28 22:05:24 3236 281 2005-08-01 19:09:24 1 2006-02-16 02:30:53
  38059. 8181 2005-07-28 22:18:38 357 522 2005-08-06 02:43:38 2 2006-02-16 02:30:53
  38060. 8182 2005-07-28 22:19:12 4120 427 2005-08-01 22:40:12 2 2006-02-16 02:30:53
  38061. 8183 2005-07-28 22:21:07 1545 119 2005-08-04 19:20:07 2 2006-02-16 02:30:53
  38062. 8184 2005-07-28 22:22:35 1249 160 2005-07-31 19:30:35 1 2006-02-16 02:30:53
  38063. 8185 2005-07-28 22:23:49 2452 568 2005-07-31 00:07:49 1 2006-02-16 02:30:53
  38064. 8186 2005-07-28 22:30:27 4255 102 2005-07-31 21:08:27 1 2006-02-16 02:30:53
  38065. 8187 2005-07-28 22:33:53 945 87 2005-08-03 03:54:53 1 2006-02-16 02:30:53
  38066. 8188 2005-07-28 22:34:12 3826 10 2005-08-01 02:32:12 2 2006-02-16 02:30:53
  38067. 8189 2005-07-28 22:36:26 3515 361 2005-08-04 00:12:26 2 2006-02-16 02:30:53
  38068. 8190 2005-07-28 22:47:06 2290 267 2005-08-04 21:51:06 1 2006-02-16 02:30:53
  38069. 8191 2005-07-28 22:47:14 1777 508 2005-07-31 23:13:14 2 2006-02-16 02:30:53
  38070. 8192 2005-07-28 22:49:11 255 552 2005-07-30 04:13:11 1 2006-02-16 02:30:53
  38071. 8193 2005-07-28 22:50:50 2402 15 2005-08-01 04:14:50 2 2006-02-16 02:30:53
  38072. 8194 2005-07-28 22:51:44 1148 424 2005-07-29 17:13:44 1 2006-02-16 02:30:53
  38073. 8195 2005-07-28 22:52:58 3989 590 2005-08-04 02:12:58 1 2006-02-16 02:30:53
  38074. 8196 2005-07-28 22:56:11 3435 21 2005-08-06 04:53:11 1 2006-02-16 02:30:53
  38075. 8197 2005-07-28 23:04:10 4126 407 2005-08-05 00:06:10 2 2006-02-16 02:30:53
  38076. 8198 2005-07-28 23:08:05 1767 356 2005-08-06 00:43:05 2 2006-02-16 02:30:53
  38077. 8199 2005-07-28 23:10:25 404 471 2005-08-04 23:30:25 1 2006-02-16 02:30:53
  38078. 8200 2005-07-28 23:10:46 353 185 2005-07-29 18:35:46 1 2006-02-16 02:30:53
  38079. 8201 2005-07-28 23:10:48 220 567 2005-08-01 00:50:48 2 2006-02-16 02:30:53
  38080. 8202 2005-07-28 23:11:45 3802 75 2005-08-03 21:57:45 2 2006-02-16 02:30:53
  38081. 8203 2005-07-28 23:14:56 3878 100 2005-07-31 04:19:56 2 2006-02-16 02:30:53
  38082. 8204 2005-07-28 23:18:29 2472 398 2005-08-02 04:49:29 1 2006-02-16 02:30:53
  38083. 8205 2005-07-28 23:18:48 2944 434 2005-07-30 00:37:48 2 2006-02-16 02:30:53
  38084. 8206 2005-07-28 23:20:31 2979 422 2005-08-04 21:36:31 1 2006-02-16 02:30:53
  38085. 8207 2005-07-28 23:26:31 1195 475 2005-08-06 03:26:31 1 2006-02-16 02:30:53
  38086. 8208 2005-07-28 23:26:35 1362 530 2005-08-01 23:00:35 2 2006-02-16 02:30:53
  38087. 8209 2005-07-28 23:29:28 2484 127 2005-08-07 04:22:28 2 2006-02-16 02:30:53
  38088. 8210 2005-07-28 23:31:05 3424 300 2005-08-06 17:36:05 1 2006-02-16 02:30:53
  38089. 8211 2005-07-28 23:34:22 1859 193 2005-08-04 21:18:22 1 2006-02-16 02:30:53
  38090. 8212 2005-07-28 23:37:23 1305 159 2005-08-04 04:33:23 2 2006-02-16 02:30:53
  38091. 8213 2005-07-28 23:37:33 3816 17 2005-07-31 00:32:33 2 2006-02-16 02:30:53
  38092. 8214 2005-07-28 23:37:57 352 509 2005-08-07 00:29:57 2 2006-02-16 02:30:53
  38093. 8215 2005-07-28 23:43:56 2921 437 2005-08-03 19:30:56 2 2006-02-16 02:30:53
  38094. 8216 2005-07-28 23:43:59 2211 254 2005-08-06 05:05:59 1 2006-02-16 02:30:53
  38095. 8217 2005-07-28 23:44:13 3747 206 2005-08-03 21:27:13 2 2006-02-16 02:30:53
  38096. 8218 2005-07-28 23:45:41 2769 578 2005-08-02 00:14:41 1 2006-02-16 02:30:53
  38097. 8219 2005-07-28 23:46:31 3609 227 2005-08-03 00:11:31 2 2006-02-16 02:30:53
  38098. 8220 2005-07-28 23:46:41 1061 360 2005-07-31 22:14:41 2 2006-02-16 02:30:53
  38099. 8221 2005-07-28 23:47:19 3138 496 2005-08-02 20:42:19 1 2006-02-16 02:30:53
  38100. 8222 2005-07-28 23:51:53 2999 278 2005-08-05 22:48:53 1 2006-02-16 02:30:53
  38101. 8223 2005-07-28 23:56:01 4508 282 2005-08-03 22:27:01 1 2006-02-16 02:30:53
  38102. 8224 2005-07-28 23:59:02 1995 467 2005-08-02 04:54:02 1 2006-02-16 02:30:53
  38103. 8225 2005-07-28 23:59:29 3631 41 2005-07-30 03:27:29 2 2006-02-16 02:30:53
  38104. 8226 2005-07-29 00:01:04 3541 368 2005-08-01 19:08:04 2 2006-02-16 02:30:53
  38105. 8227 2005-07-29 00:02:22 269 167 2005-07-31 04:05:22 1 2006-02-16 02:30:53
  38106. 8228 2005-07-29 00:08:58 1955 72 2005-08-03 00:12:58 2 2006-02-16 02:30:53
  38107. 8229 2005-07-29 00:09:08 4272 498 2005-07-31 19:29:08 2 2006-02-16 02:30:53
  38108. 8230 2005-07-29 00:12:59 1937 2 2005-08-06 19:52:59 2 2006-02-16 02:30:53
  38109. 8231 2005-07-29 00:14:37 1083 331 2005-07-31 19:12:37 1 2006-02-16 02:30:53
  38110. 8232 2005-07-29 00:14:37 3255 526 2005-08-06 00:57:37 1 2006-02-16 02:30:53
  38111. 8233 2005-07-29 00:16:23 1640 93 2005-08-03 05:17:23 2 2006-02-16 02:30:53
  38112. 8234 2005-07-29 00:19:20 644 227 2005-08-03 19:16:20 2 2006-02-16 02:30:53
  38113. 8235 2005-07-29 00:22:56 1581 320 2005-08-03 04:03:56 2 2006-02-16 02:30:53
  38114. 8236 2005-07-29 00:27:04 1901 369 2005-07-31 05:02:04 2 2006-02-16 02:30:53
  38115. 8237 2005-07-29 00:29:56 608 441 2005-08-06 03:10:56 1 2006-02-16 02:30:53
  38116. 8238 2005-07-29 00:30:06 2941 320 2005-08-02 22:52:06 2 2006-02-16 02:30:53
  38117. 8239 2005-07-29 00:31:39 3951 549 2005-07-29 19:33:39 1 2006-02-16 02:30:53
  38118. 8240 2005-07-29 00:33:32 1975 509 2005-08-05 21:25:32 2 2006-02-16 02:30:53
  38119. 8241 2005-07-29 00:33:36 4297 26 2005-08-03 01:31:36 1 2006-02-16 02:30:53
  38120. 8242 2005-07-29 00:34:27 509 99 2005-08-05 23:13:27 2 2006-02-16 02:30:53
  38121. 8243 2005-07-29 00:35:33 1873 481 2005-08-04 06:02:33 2 2006-02-16 02:30:53
  38122. 8244 2005-07-29 00:35:34 1552 175 2005-08-05 04:18:34 2 2006-02-16 02:30:53
  38123. 8245 2005-07-29 00:37:09 3330 555 2005-08-05 05:48:09 2 2006-02-16 02:30:53
  38124. 8246 2005-07-29 00:38:41 1724 146 2005-08-05 06:28:41 2 2006-02-16 02:30:53
  38125. 8247 2005-07-29 00:41:38 2607 539 2005-08-06 20:29:38 2 2006-02-16 02:30:53
  38126. 8248 2005-07-29 00:41:56 2017 272 2005-08-05 18:53:56 2 2006-02-16 02:30:53
  38127. 8249 2005-07-29 00:48:44 3331 57 2005-08-07 04:25:44 2 2006-02-16 02:30:53
  38128. 8250 2005-07-29 00:49:15 4519 533 2005-08-04 02:53:15 1 2006-02-16 02:30:53
  38129. 8251 2005-07-29 00:50:14 2317 408 2005-08-03 23:52:14 2 2006-02-16 02:30:53
  38130. 8252 2005-07-29 00:54:17 3312 257 2005-07-31 20:34:17 1 2006-02-16 02:30:53
  38131. 8253 2005-07-29 00:57:06 2388 76 2005-08-07 01:46:06 1 2006-02-16 02:30:53
  38132. 8254 2005-07-29 00:59:31 1787 392 2005-08-03 23:43:31 2 2006-02-16 02:30:53
  38133. 8255 2005-07-29 01:02:30 3715 224 2005-08-01 22:39:30 1 2006-02-16 02:30:53
  38134. 8256 2005-07-29 01:02:42 1483 537 2005-07-31 22:29:42 2 2006-02-16 02:30:53
  38135. 8257 2005-07-29 01:03:20 3024 566 2005-08-04 21:54:20 1 2006-02-16 02:30:53
  38136. 8258 2005-07-29 01:03:42 1379 370 2005-08-04 22:08:42 2 2006-02-16 02:30:53
  38137. 8259 2005-07-29 01:05:16 343 274 2005-08-01 23:27:16 2 2006-02-16 02:30:53
  38138. 8260 2005-07-29 01:11:00 4249 366 2005-08-06 00:36:00 1 2006-02-16 02:30:53
  38139. 8261 2005-07-29 01:11:05 1915 50 2005-08-04 03:13:05 2 2006-02-16 02:30:53
  38140. 8262 2005-07-29 01:11:18 1341 563 2005-08-02 05:17:18 2 2006-02-16 02:30:53
  38141. 8263 2005-07-29 01:11:23 28 5 2005-07-31 01:53:23 2 2006-02-16 02:30:53
  38142. 8264 2005-07-29 01:18:50 2987 175 2005-08-03 05:31:50 2 2006-02-16 02:30:53
  38143. 8265 2005-07-29 01:20:15 2389 409 2005-08-06 19:32:15 2 2006-02-16 02:30:53
  38144. 8266 2005-07-29 01:20:16 1972 196 2005-07-30 04:31:16 1 2006-02-16 02:30:53
  38145. 8267 2005-07-29 01:21:02 4107 131 2005-08-04 19:34:02 2 2006-02-16 02:30:53
  38146. 8268 2005-07-29 01:23:23 4239 421 2005-08-05 01:36:23 1 2006-02-16 02:30:53
  38147. 8269 2005-07-29 01:26:54 2778 376 2005-08-04 22:42:54 1 2006-02-16 02:30:53
  38148. 8270 2005-07-29 01:27:22 3565 282 2005-07-29 20:55:22 1 2006-02-16 02:30:53
  38149. 8271 2005-07-29 01:27:44 83 481 2005-08-07 05:01:44 2 2006-02-16 02:30:53
  38150. 8272 2005-07-29 01:29:51 70 346 2005-08-03 21:56:51 2 2006-02-16 02:30:53
  38151. 8273 2005-07-29 01:33:16 4244 532 2005-08-06 04:26:16 2 2006-02-16 02:30:53
  38152. 8274 2005-07-29 01:34:32 2634 340 2005-08-01 20:15:32 2 2006-02-16 02:30:53
  38153. 8275 2005-07-29 01:35:47 4432 336 2005-07-30 02:16:47 1 2006-02-16 02:30:53
  38154. 8276 2005-07-29 01:38:43 2451 466 2005-08-03 23:00:43 1 2006-02-16 02:30:53
  38155. 8277 2005-07-29 01:38:53 1296 13 2005-08-04 07:09:53 2 2006-02-16 02:30:53
  38156. 8278 2005-07-29 01:42:55 768 265 2005-08-05 01:55:55 2 2006-02-16 02:30:53
  38157. 8279 2005-07-29 01:43:37 3838 176 2005-08-03 02:36:37 1 2006-02-16 02:30:53
  38158. 8280 2005-07-29 01:45:51 1208 195 2005-08-05 22:51:51 2 2006-02-16 02:30:53
  38159. 8281 2005-07-29 01:46:00 899 441 2005-08-04 23:09:00 1 2006-02-16 02:30:53
  38160. 8282 2005-07-29 01:49:04 980 462 2005-08-05 01:51:04 2 2006-02-16 02:30:53
  38161. 8283 2005-07-29 01:52:22 2002 300 2005-08-05 03:22:22 2 2006-02-16 02:30:53
  38162. 8284 2005-07-29 01:56:40 4371 446 2005-08-07 07:15:40 2 2006-02-16 02:30:53
  38163. 8285 2005-07-29 02:00:18 678 56 2005-08-03 20:43:18 2 2006-02-16 02:30:53
  38164. 8286 2005-07-29 02:02:46 4092 87 2005-08-06 06:00:46 1 2006-02-16 02:30:53
  38165. 8287 2005-07-29 02:03:58 812 178 2005-08-07 02:11:58 1 2006-02-16 02:30:53
  38166. 8288 2005-07-29 02:04:22 1822 55 2005-08-05 04:21:22 2 2006-02-16 02:30:53
  38167. 8289 2005-07-29 02:23:24 4579 459 2005-08-06 03:23:24 2 2006-02-16 02:30:53
  38168. 8290 2005-07-29 02:24:08 3823 462 2005-08-03 01:02:08 2 2006-02-16 02:30:53
  38169. 8291 2005-07-29 02:28:25 2817 455 2005-08-03 20:57:25 2 2006-02-16 02:30:53
  38170. 8292 2005-07-29 02:29:36 4003 192 2005-08-07 08:06:36 1 2006-02-16 02:30:53
  38171. 8293 2005-07-29 02:30:50 831 71 2005-08-04 03:09:50 2 2006-02-16 02:30:53
  38172. 8294 2005-07-29 02:32:41 1811 520 2005-08-02 06:28:41 1 2006-02-16 02:30:53
  38173. 8295 2005-07-29 02:42:14 2065 406 2005-07-30 22:22:14 1 2006-02-16 02:30:53
  38174. 8296 2005-07-29 02:43:25 2543 88 2005-08-01 00:23:25 1 2006-02-16 02:30:53
  38175. 8297 2005-07-29 02:45:46 3774 349 2005-07-31 20:49:46 1 2006-02-16 02:30:53
  38176. 8298 2005-07-29 02:47:36 952 493 2005-08-05 07:58:36 2 2006-02-16 02:30:53
  38177. 8299 2005-07-29 02:56:00 1797 173 2005-07-30 22:35:00 2 2006-02-16 02:30:53
  38178. 8300 2005-07-29 02:57:59 4364 222 2005-08-05 01:12:59 2 2006-02-16 02:30:53
  38179. 8301 2005-07-29 03:00:08 562 101 2005-08-01 04:26:08 2 2006-02-16 02:30:53
  38180. 8302 2005-07-29 03:01:24 1314 103 2005-07-30 01:08:24 2 2006-02-16 02:30:53
  38181. 8303 2005-07-29 03:05:56 1620 574 2005-08-04 06:13:56 1 2006-02-16 02:30:53
  38182. 8304 2005-07-29 03:08:30 4431 119 2005-08-02 03:04:30 2 2006-02-16 02:30:53
  38183. 8305 2005-07-29 03:08:47 3916 566 2005-08-06 07:49:47 2 2006-02-16 02:30:53
  38184. 8306 2005-07-29 03:12:26 1708 232 2005-08-01 23:26:26 1 2006-02-16 02:30:53
  38185. 8307 2005-07-29 03:18:34 3197 39 2005-08-06 05:51:34 2 2006-02-16 02:30:53
  38186. 8308 2005-07-29 03:22:15 601 582 2005-08-04 21:38:15 2 2006-02-16 02:30:53
  38187. 8309 2005-07-29 03:22:20 2250 446 2005-08-01 06:30:20 1 2006-02-16 02:30:53
  38188. 8310 2005-07-29 03:25:56 2637 238 2005-08-06 23:18:56 2 2006-02-16 02:30:53
  38189. 8311 2005-07-29 03:26:07 3623 63 2005-08-02 01:46:07 1 2006-02-16 02:30:53
  38190. 8312 2005-07-29 03:32:38 3996 143 2005-07-31 02:12:38 1 2006-02-16 02:30:53
  38191. 8313 2005-07-29 03:34:21 2736 91 2005-08-02 01:32:21 1 2006-02-16 02:30:53
  38192. 8314 2005-07-29 03:35:04 2182 118 2005-08-06 08:43:04 2 2006-02-16 02:30:53
  38193. 8315 2005-07-29 03:37:07 1420 135 2005-07-29 23:22:07 2 2006-02-16 02:30:53
  38194. 8316 2005-07-29 03:38:49 4118 549 2005-08-03 07:41:49 1 2006-02-16 02:30:53
  38195. 8317 2005-07-29 03:39:07 3898 415 2005-08-03 00:14:07 1 2006-02-16 02:30:53
  38196. 8318 2005-07-29 03:44:30 4524 167 2005-07-30 05:03:30 2 2006-02-16 02:30:53
  38197. 8319 2005-07-29 03:44:52 747 280 2005-08-01 00:35:52 2 2006-02-16 02:30:53
  38198. 8320 2005-07-29 03:49:58 1285 513 2005-08-03 01:00:58 1 2006-02-16 02:30:53
  38199. 8321 2005-07-29 03:50:54 1875 354 2005-08-01 02:08:54 1 2006-02-16 02:30:53
  38200. 8322 2005-07-29 03:52:49 301 541 2005-08-02 22:53:49 1 2006-02-16 02:30:53
  38201. 8323 2005-07-29 03:52:59 2766 87 2005-08-06 01:49:59 2 2006-02-16 02:30:53
  38202. 8324 2005-07-29 03:56:05 1467 98 2005-08-02 01:41:05 1 2006-02-16 02:30:53
  38203. 8325 2005-07-29 03:57:27 932 362 2005-08-06 22:30:27 1 2006-02-16 02:30:53
  38204. 8326 2005-07-29 03:58:49 108 1 2005-08-01 05:16:49 2 2006-02-16 02:30:53
  38205. 8327 2005-07-29 04:00:52 2928 317 2005-07-31 08:27:52 1 2006-02-16 02:30:53
  38206. 8328 2005-07-29 04:06:24 4454 314 2005-08-03 22:24:24 1 2006-02-16 02:30:53
  38207. 8329 2005-07-29 04:06:33 3468 108 2005-08-06 01:46:33 1 2006-02-16 02:30:53
  38208. 8330 2005-07-29 04:09:07 2294 412 2005-08-05 05:00:07 2 2006-02-16 02:30:53
  38209. 8331 2005-07-29 04:13:29 18 148 2005-08-04 07:09:29 1 2006-02-16 02:30:53
  38210. 8332 2005-07-29 04:16:00 1142 217 2005-08-03 03:34:00 1 2006-02-16 02:30:53
  38211. 8333 2005-07-29 04:16:40 823 494 2005-08-02 10:10:40 2 2006-02-16 02:30:53
  38212. 8334 2005-07-29 04:18:25 982 154 2005-08-07 07:18:25 2 2006-02-16 02:30:53
  38213. 8335 2005-07-29 04:18:25 1719 143 2005-07-31 08:12:25 2 2006-02-16 02:30:53
  38214. 8336 2005-07-29 04:20:42 2120 210 2005-08-05 10:17:42 1 2006-02-16 02:30:53
  38215. 8337 2005-07-29 04:31:55 752 157 2005-08-02 02:38:55 2 2006-02-16 02:30:53
  38216. 8338 2005-07-29 04:40:39 2257 389 2005-08-07 04:40:39 2 2006-02-16 02:30:53
  38217. 8339 2005-07-29 04:41:13 1870 129 2005-07-30 09:01:13 2 2006-02-16 02:30:53
  38218. 8340 2005-07-29 04:41:44 1553 386 2005-08-07 10:33:44 1 2006-02-16 02:30:53
  38219. 8341 2005-07-29 04:42:01 4208 309 2005-08-04 00:58:01 1 2006-02-16 02:30:53
  38220. 8342 2005-07-29 04:45:05 3301 572 2005-08-01 07:20:05 1 2006-02-16 02:30:53
  38221. 8343 2005-07-29 04:45:16 4267 439 2005-08-02 03:37:16 1 2006-02-16 02:30:53
  38222. 8344 2005-07-29 04:45:25 221 257 2005-08-06 01:53:25 1 2006-02-16 02:30:53
  38223. 8345 2005-07-29 04:47:37 1034 129 2005-08-02 07:25:37 1 2006-02-16 02:30:53
  38224. 8346 2005-07-29 04:48:22 2475 385 2005-08-01 04:22:22 1 2006-02-16 02:30:53
  38225. 8347 2005-07-29 04:49:25 4407 157 2005-07-31 00:57:25 2 2006-02-16 02:30:53
  38226. 8348 2005-07-29 04:49:26 4533 174 2005-08-05 03:26:26 2 2006-02-16 02:30:53
  38227. 8349 2005-07-29 04:50:22 534 416 2005-08-05 08:50:22 1 2006-02-16 02:30:53
  38228. 8350 2005-07-29 04:50:39 3726 513 2005-07-31 05:36:39 2 2006-02-16 02:30:53
  38229. 8351 2005-07-29 04:50:53 2963 202 2005-07-30 07:28:53 2 2006-02-16 02:30:53
  38230. 8352 2005-07-29 04:52:01 2710 168 2005-08-06 07:39:01 2 2006-02-16 02:30:53
  38231. 8353 2005-07-29 04:52:10 26 585 2005-07-30 04:01:10 1 2006-02-16 02:30:53
  38232. 8354 2005-07-29 04:56:26 4476 579 2005-08-01 08:04:26 2 2006-02-16 02:30:53
  38233. 8355 2005-07-29 04:57:43 4569 270 2005-08-03 06:25:43 1 2006-02-16 02:30:53
  38234. 8356 2005-07-29 04:58:56 2951 483 2005-08-06 03:07:56 1 2006-02-16 02:30:53
  38235. 8357 2005-07-29 04:59:44 892 76 2005-08-01 04:26:44 1 2006-02-16 02:30:53
  38236. 8358 2005-07-29 05:00:58 1449 372 2005-08-01 02:49:58 2 2006-02-16 02:30:53
  38237. 8359 2005-07-29 05:02:12 140 531 2005-08-04 08:52:12 1 2006-02-16 02:30:53
  38238. 8360 2005-07-29 05:08:00 4135 62 2005-08-02 00:40:00 1 2006-02-16 02:30:53
  38239. 8361 2005-07-29 05:08:57 3404 360 2005-08-03 02:49:57 1 2006-02-16 02:30:53
  38240. 8362 2005-07-29 05:09:11 2287 223 2005-08-04 00:08:11 2 2006-02-16 02:30:53
  38241. 8363 2005-07-29 05:10:08 1607 302 2005-08-06 00:11:08 1 2006-02-16 02:30:53
  38242. 8364 2005-07-29 05:10:31 1361 362 2005-07-30 04:02:31 2 2006-02-16 02:30:53
  38243. 8365 2005-07-29 05:11:00 53 280 2005-07-30 05:30:00 2 2006-02-16 02:30:53
  38244. 8366 2005-07-29 05:11:14 479 39 2005-08-05 01:48:14 1 2006-02-16 02:30:53
  38245. 8367 2005-07-29 05:11:19 4551 383 2005-08-02 00:35:19 1 2006-02-16 02:30:53
  38246. 8368 2005-07-29 05:15:41 1410 200 2005-08-07 01:35:41 1 2006-02-16 02:30:53
  38247. 8369 2005-07-29 05:15:42 1456 507 2005-08-01 03:36:42 2 2006-02-16 02:30:53
  38248. 8370 2005-07-29 05:16:21 1206 121 2005-08-06 23:16:21 1 2006-02-16 02:30:53
  38249. 8371 2005-07-29 05:16:35 2466 396 2005-07-31 01:49:35 1 2006-02-16 02:30:53
  38250. 8372 2005-07-29 05:18:08 754 523 2005-08-06 09:39:08 1 2006-02-16 02:30:53
  38251. 8373 2005-07-29 05:19:53 2070 457 2005-08-04 04:39:53 1 2006-02-16 02:30:53
  38252. 8374 2005-07-29 05:24:02 1084 589 2005-08-05 03:55:02 1 2006-02-16 02:30:53
  38253. 8375 2005-07-29 05:25:30 3634 125 2005-08-04 01:43:30 2 2006-02-16 02:30:53
  38254. 8376 2005-07-29 05:25:32 3588 43 2005-08-01 07:42:32 2 2006-02-16 02:30:53
  38255. 8377 2005-07-29 05:27:40 270 73 2005-07-30 02:52:40 2 2006-02-16 02:30:53
  38256. 8378 2005-07-29 05:28:35 3500 347 2005-08-02 05:55:35 1 2006-02-16 02:30:53
  38257. 8379 2005-07-29 05:29:40 3907 193 2005-08-06 05:56:40 2 2006-02-16 02:30:53
  38258. 8380 2005-07-29 05:31:29 2279 145 2005-08-02 01:27:29 1 2006-02-16 02:30:53
  38259. 8381 2005-07-29 05:31:44 865 313 2005-07-31 09:20:44 1 2006-02-16 02:30:53
  38260. 8382 2005-07-29 05:33:21 317 238 2005-08-03 03:38:21 1 2006-02-16 02:30:53
  38261. 8383 2005-07-29 05:36:47 3809 495 2005-08-03 05:53:47 2 2006-02-16 02:30:53
  38262. 8384 2005-07-29 05:38:43 3807 227 2005-08-01 07:31:43 2 2006-02-16 02:30:53
  38263. 8385 2005-07-29 05:39:16 4108 233 2005-08-03 00:30:16 1 2006-02-16 02:30:53
  38264. 8386 2005-07-29 05:45:30 388 435 2005-08-05 03:56:30 2 2006-02-16 02:30:53
  38265. 8387 2005-07-29 05:47:27 910 428 2005-07-31 06:26:27 1 2006-02-16 02:30:53
  38266. 8388 2005-07-29 05:48:15 770 178 2005-08-05 06:24:15 2 2006-02-16 02:30:53
  38267. 8389 2005-07-29 05:50:09 1241 133 2005-08-06 05:15:09 2 2006-02-16 02:30:53
  38268. 8390 2005-07-29 05:52:26 581 32 2005-08-04 08:12:26 2 2006-02-16 02:30:53
  38269. 8391 2005-07-29 05:52:50 2134 36 2005-08-03 04:45:50 2 2006-02-16 02:30:53
  38270. 8392 2005-07-29 06:00:27 1323 65 2005-08-02 00:30:27 2 2006-02-16 02:30:53
  38271. 8393 2005-07-29 06:02:11 3369 504 2005-08-07 03:23:11 1 2006-02-16 02:30:53
  38272. 8394 2005-07-29 06:02:14 3933 148 2005-08-03 08:15:14 1 2006-02-16 02:30:53
  38273. 8395 2005-07-29 06:03:30 1471 535 2005-07-31 09:08:30 2 2006-02-16 02:30:53
  38274. 8396 2005-07-29 06:07:00 3911 516 2005-07-30 05:32:00 2 2006-02-16 02:30:53
  38275. 8397 2005-07-29 06:09:35 3542 518 2005-08-01 02:08:35 1 2006-02-16 02:30:53
  38276. 8398 2005-07-29 06:12:40 348 220 2005-08-02 05:01:40 2 2006-02-16 02:30:53
  38277. 8399 2005-07-29 06:20:18 233 286 2005-08-04 01:26:18 1 2006-02-16 02:30:53
  38278. 8400 2005-07-29 06:23:56 3680 573 2005-07-31 02:41:56 2 2006-02-16 02:30:53
  38279. 8401 2005-07-29 06:25:08 3121 232 2005-08-01 06:49:08 1 2006-02-16 02:30:53
  38280. 8402 2005-07-29 06:25:45 186 47 2005-08-07 10:48:45 1 2006-02-16 02:30:53
  38281. 8403 2005-07-29 06:26:39 1360 163 2005-08-02 05:37:39 1 2006-02-16 02:30:53
  38282. 8404 2005-07-29 06:27:01 2086 65 2005-08-07 04:33:01 1 2006-02-16 02:30:53
  38283. 8405 2005-07-29 06:28:19 2164 76 2005-08-07 08:14:19 2 2006-02-16 02:30:53
  38284. 8406 2005-07-29 06:34:45 2047 274 2005-08-06 02:28:45 1 2006-02-16 02:30:53
  38285. 8407 2005-07-29 06:37:02 2985 336 2005-08-04 03:13:02 1 2006-02-16 02:30:53
  38286. 8408 2005-07-29 06:40:40 1841 90 2005-07-30 10:02:40 2 2006-02-16 02:30:53
  38287. 8409 2005-07-29 06:41:22 4314 303 2005-07-31 11:21:22 1 2006-02-16 02:30:53
  38288. 8410 2005-07-29 06:41:36 3448 277 2005-08-02 08:38:36 1 2006-02-16 02:30:53
  38289. 8411 2005-07-29 06:44:23 3085 412 2005-08-07 03:56:23 1 2006-02-16 02:30:53
  38290. 8412 2005-07-29 06:44:50 743 312 2005-08-06 05:04:50 1 2006-02-16 02:30:53
  38291. 8413 2005-07-29 06:47:39 2762 104 2005-08-02 09:15:39 2 2006-02-16 02:30:53
  38292. 8414 2005-07-29 06:48:35 1337 433 2005-08-06 10:54:35 2 2006-02-16 02:30:53
  38293. 8415 2005-07-29 06:52:27 2903 128 2005-08-02 10:40:27 1 2006-02-16 02:30:53
  38294. 8416 2005-07-29 06:52:54 1999 315 2005-08-05 09:50:54 2 2006-02-16 02:30:53
  38295. 8417 2005-07-29 06:53:36 750 227 2005-08-06 09:31:36 2 2006-02-16 02:30:53
  38296. 8418 2005-07-29 06:54:21 3081 355 2005-08-05 06:50:21 2 2006-02-16 02:30:53
  38297. 8419 2005-07-29 06:54:48 4574 37 2005-08-06 05:02:48 1 2006-02-16 02:30:53
  38298. 8420 2005-07-29 07:00:45 4184 376 2005-08-06 02:20:45 1 2006-02-16 02:30:53
  38299. 8421 2005-07-29 07:00:47 3399 588 2005-08-02 08:03:47 2 2006-02-16 02:30:53
  38300. 8422 2005-07-29 07:02:55 3104 7 2005-08-03 12:35:55 1 2006-02-16 02:30:53
  38301. 8423 2005-07-29 07:02:57 187 468 2005-08-06 04:59:57 1 2006-02-16 02:30:53
  38302. 8424 2005-07-29 07:06:03 366 138 2005-08-06 12:00:03 2 2006-02-16 02:30:53
  38303. 8425 2005-07-29 07:06:21 3491 486 2005-08-05 07:57:21 2 2006-02-16 02:30:53
  38304. 8426 2005-07-29 07:07:48 1840 564 2005-08-07 08:56:48 2 2006-02-16 02:30:53
  38305. 8427 2005-07-29 07:08:36 1624 441 2005-07-30 11:54:36 2 2006-02-16 02:30:53
  38306. 8428 2005-07-29 07:10:14 2545 398 2005-08-06 02:29:14 2 2006-02-16 02:30:53
  38307. 8429 2005-07-29 07:11:49 2456 588 2005-07-31 02:45:49 1 2006-02-16 02:30:53
  38308. 8430 2005-07-29 07:12:17 3377 219 2005-08-03 09:53:17 2 2006-02-16 02:30:53
  38309. 8431 2005-07-29 07:12:48 1583 193 2005-08-01 10:03:48 1 2006-02-16 02:30:53
  38310. 8432 2005-07-29 07:13:33 3896 572 2005-07-30 03:14:33 1 2006-02-16 02:30:53
  38311. 8433 2005-07-29 07:19:16 1957 125 2005-08-05 03:29:16 1 2006-02-16 02:30:53
  38312. 8434 2005-07-29 07:20:14 40 141 2005-07-30 08:50:14 2 2006-02-16 02:30:53
  38313. 8435 2005-07-29 07:20:16 4462 520 2005-08-02 09:54:16 2 2006-02-16 02:30:53
  38314. 8436 2005-07-29 07:21:20 2702 598 2005-07-31 12:56:20 2 2006-02-16 02:30:53
  38315. 8437 2005-07-29 07:23:43 2118 96 2005-08-04 10:52:43 1 2006-02-16 02:30:53
  38316. 8438 2005-07-29 07:25:42 720 97 2005-08-04 07:39:42 1 2006-02-16 02:30:53
  38317. 8439 2005-07-29 07:28:43 182 224 2005-08-04 11:22:43 1 2006-02-16 02:30:53
  38318. 8440 2005-07-29 07:31:26 489 175 2005-08-04 07:04:26 1 2006-02-16 02:30:53
  38319. 8441 2005-07-29 07:33:05 1000 526 2005-08-04 04:00:05 2 2006-02-16 02:30:53
  38320. 8442 2005-07-29 07:33:07 4345 185 2005-08-03 03:09:07 2 2006-02-16 02:30:53
  38321. 8443 2005-07-29 07:33:12 1059 251 2005-08-02 01:36:12 2 2006-02-16 02:30:53
  38322. 8444 2005-07-29 07:36:13 3329 213 2005-08-05 04:55:13 1 2006-02-16 02:30:53
  38323. 8445 2005-07-29 07:37:48 2792 384 2005-08-04 10:43:48 1 2006-02-16 02:30:53
  38324. 8446 2005-07-29 07:38:10 1593 235 2005-08-06 04:39:10 2 2006-02-16 02:30:53
  38325. 8447 2005-07-29 07:38:14 930 11 2005-08-05 02:27:14 2 2006-02-16 02:30:53
  38326. 8448 2005-07-29 07:41:54 4349 393 2005-08-02 13:12:54 1 2006-02-16 02:30:53
  38327. 8449 2005-07-29 07:42:25 2610 273 2005-07-30 06:07:25 2 2006-02-16 02:30:53
  38328. 8450 2005-07-29 07:44:05 484 401 2005-08-01 12:23:05 1 2006-02-16 02:30:53
  38329. 8451 2005-07-29 07:44:56 3309 495 2005-08-06 02:29:56 1 2006-02-16 02:30:53
  38330. 8452 2005-07-29 07:45:00 4312 16 2005-08-05 09:46:00 2 2006-02-16 02:30:53
  38331. 8453 2005-07-29 07:46:29 2907 32 2005-07-30 07:07:29 1 2006-02-16 02:30:53
  38332. 8454 2005-07-29 07:49:04 159 244 2005-08-03 04:43:04 2 2006-02-16 02:30:53
  38333. 8455 2005-07-29 07:53:06 4043 404 2005-08-05 05:29:06 1 2006-02-16 02:30:53
  38334. 8456 2005-07-29 07:58:31 671 388 2005-08-05 07:17:31 2 2006-02-16 02:30:53
  38335. 8457 2005-07-29 07:59:03 3371 239 2005-08-04 08:42:03 1 2006-02-16 02:30:53
  38336. 8458 2005-07-29 08:05:09 3857 317 2005-08-02 03:42:09 1 2006-02-16 02:30:53
  38337. 8459 2005-07-29 08:05:40 3441 144 2005-08-04 03:24:40 1 2006-02-16 02:30:53
  38338. 8460 2005-07-29 08:08:03 2826 329 2005-08-07 06:53:03 2 2006-02-16 02:30:53
  38339. 8461 2005-07-29 08:11:31 3373 399 2005-08-06 09:23:31 1 2006-02-16 02:30:53
  38340. 8462 2005-07-29 08:15:42 3633 200 2005-08-04 03:57:42 1 2006-02-16 02:30:53
  38341. 8463 2005-07-29 08:17:51 466 203 2005-08-03 13:41:51 1 2006-02-16 02:30:53
  38342. 8464 2005-07-29 08:18:20 2343 28 2005-08-03 04:50:20 2 2006-02-16 02:30:53
  38343. 8465 2005-07-29 08:20:49 4109 238 2005-07-31 04:02:49 2 2006-02-16 02:30:53
  38344. 8466 2005-07-29 08:24:47 4010 285 2005-07-31 03:43:47 1 2006-02-16 02:30:53
  38345. 8467 2005-07-29 08:25:35 263 326 2005-08-07 03:28:35 2 2006-02-16 02:30:53
  38346. 8468 2005-07-29 08:26:04 1338 282 2005-08-02 07:18:04 1 2006-02-16 02:30:53
  38347. 8469 2005-07-29 08:26:27 2754 408 2005-08-05 04:26:27 2 2006-02-16 02:30:53
  38348. 8470 2005-07-29 08:28:50 3717 159 2005-07-30 13:40:50 2 2006-02-16 02:30:53
  38349. 8471 2005-07-29 08:32:11 1520 533 2005-08-01 13:55:11 1 2006-02-16 02:30:53
  38350. 8472 2005-07-29 08:36:22 2975 196 2005-08-02 07:55:22 1 2006-02-16 02:30:53
  38351. 8473 2005-07-29 08:36:53 4141 311 2005-07-31 12:14:53 1 2006-02-16 02:30:53
  38352. 8474 2005-07-29 08:36:56 4346 323 2005-08-01 03:07:56 1 2006-02-16 02:30:53
  38353. 8475 2005-07-29 08:37:41 3695 260 2005-08-04 10:03:41 2 2006-02-16 02:30:53
  38354. 8476 2005-07-29 08:39:12 3741 470 2005-08-06 03:03:12 1 2006-02-16 02:30:53
  38355. 8477 2005-07-29 08:40:36 3571 354 2005-08-06 08:28:36 2 2006-02-16 02:30:53
  38356. 8478 2005-07-29 08:40:36 3742 162 2005-08-01 10:23:36 1 2006-02-16 02:30:53
  38357. 8479 2005-07-29 08:42:04 1990 195 2005-08-01 03:10:04 1 2006-02-16 02:30:53
  38358. 8480 2005-07-29 08:44:46 3512 467 2005-08-05 13:22:46 1 2006-02-16 02:30:53
  38359. 8481 2005-07-29 08:45:57 1739 454 2005-08-01 12:50:57 2 2006-02-16 02:30:53
  38360. 8482 2005-07-29 08:46:33 2686 405 2005-07-31 11:07:33 2 2006-02-16 02:30:53
  38361. 8483 2005-07-29 08:50:18 2786 186 2005-08-03 06:46:18 1 2006-02-16 02:30:53
  38362. 8484 2005-07-29 08:51:59 742 260 2005-07-30 09:07:59 1 2006-02-16 02:30:53
  38363. 8485 2005-07-29 08:53:09 3172 420 2005-07-30 11:25:09 1 2006-02-16 02:30:53
  38364. 8486 2005-07-29 08:53:38 1759 221 2005-08-01 14:12:38 2 2006-02-16 02:30:53
  38365. 8487 2005-07-29 08:53:49 1893 82 2005-07-31 09:10:49 2 2006-02-16 02:30:53
  38366. 8488 2005-07-29 08:57:38 2176 478 2005-08-02 04:16:38 1 2006-02-16 02:30:53
  38367. 8489 2005-07-29 08:58:03 375 265 2005-08-02 07:50:03 2 2006-02-16 02:30:53
  38368. 8490 2005-07-29 08:59:25 1943 367 2005-08-05 14:02:25 2 2006-02-16 02:30:53
  38369. 8491 2005-07-29 09:02:13 1806 242 2005-08-03 04:32:13 1 2006-02-16 02:30:53
  38370. 8492 2005-07-29 09:04:17 4553 266 2005-08-02 08:48:17 2 2006-02-16 02:30:53
  38371. 8493 2005-07-29 09:04:31 664 390 2005-08-04 05:17:31 2 2006-02-16 02:30:53
  38372. 8494 2005-07-29 09:04:32 3524 92 2005-07-31 10:30:32 1 2006-02-16 02:30:53
  38373. 8495 2005-07-29 09:05:06 344 51 2005-08-06 05:48:06 2 2006-02-16 02:30:53
  38374. 8496 2005-07-29 09:05:33 765 114 2005-08-02 06:32:33 1 2006-02-16 02:30:53
  38375. 8497 2005-07-29 09:07:03 1837 593 2005-08-02 09:18:03 2 2006-02-16 02:30:53
  38376. 8498 2005-07-29 09:07:38 4468 190 2005-08-04 07:01:38 1 2006-02-16 02:30:53
  38377. 8499 2005-07-29 09:10:41 219 42 2005-08-05 10:01:41 1 2006-02-16 02:30:53
  38378. 8500 2005-07-29 09:12:01 4516 348 2005-07-31 10:15:01 1 2006-02-16 02:30:53
  38379. 8501 2005-07-29 09:12:51 1052 309 2005-07-30 11:19:51 2 2006-02-16 02:30:53
  38380. 8502 2005-07-29 09:15:41 2149 457 2005-07-30 10:41:41 1 2006-02-16 02:30:53
  38381. 8503 2005-07-29 09:16:50 1164 240 2005-08-04 11:34:50 2 2006-02-16 02:30:53
  38382. 8504 2005-07-29 09:20:16 2295 561 2005-08-07 04:27:16 2 2006-02-16 02:30:53
  38383. 8505 2005-07-29 09:22:52 1454 346 2005-08-06 05:23:52 1 2006-02-16 02:30:53
  38384. 8506 2005-07-29 09:23:52 3714 506 2005-07-31 04:42:52 1 2006-02-16 02:30:53
  38385. 8507 2005-07-29 09:29:44 3273 524 2005-08-07 05:48:44 2 2006-02-16 02:30:53
  38386. 8508 2005-07-29 09:34:38 4173 484 2005-08-01 14:52:38 2 2006-02-16 02:30:53
  38387. 8509 2005-07-29 09:38:19 1332 80 2005-08-04 11:45:19 1 2006-02-16 02:30:53
  38388. 8510 2005-07-29 09:41:38 7 487 2005-08-05 05:30:38 2 2006-02-16 02:30:53
  38389. 8511 2005-07-29 09:42:42 3667 598 2005-08-06 14:22:42 2 2006-02-16 02:30:53
  38390. 8512 2005-07-29 09:48:03 4132 351 2005-07-31 13:40:03 1 2006-02-16 02:30:53
  38391. 8513 2005-07-29 09:52:59 3156 142 2005-07-31 12:05:59 1 2006-02-16 02:30:53
  38392. 8514 2005-07-29 09:53:33 3755 99 2005-07-30 06:34:33 2 2006-02-16 02:30:53
  38393. 8515 2005-07-29 09:55:20 1071 477 2005-08-05 07:08:20 2 2006-02-16 02:30:53
  38394. 8516 2005-07-29 10:00:03 981 337 2005-08-02 09:34:03 1 2006-02-16 02:30:53
  38395. 8517 2005-07-29 10:00:48 2064 274 2005-08-06 14:37:48 2 2006-02-16 02:30:53
  38396. 8518 2005-07-29 10:05:27 2311 385 2005-08-02 05:39:27 1 2006-02-16 02:30:53
  38397. 8519 2005-07-29 10:09:43 1163 588 2005-08-03 08:14:43 2 2006-02-16 02:30:53
  38398. 8520 2005-07-29 10:10:02 2440 103 2005-08-02 05:25:02 2 2006-02-16 02:30:53
  38399. 8521 2005-07-29 10:12:45 2608 402 2005-08-07 04:37:45 2 2006-02-16 02:30:53
  38400. 8522 2005-07-29 10:16:19 3636 363 2005-08-06 14:58:19 1 2006-02-16 02:30:53
  38401. 8523 2005-07-29 10:18:27 3614 558 2005-08-04 09:31:27 1 2006-02-16 02:30:53
  38402. 8524 2005-07-29 10:20:07 2110 124 2005-08-03 04:30:07 1 2006-02-16 02:30:53
  38403. 8525 2005-07-29 10:20:19 1322 111 2005-07-30 05:49:19 2 2006-02-16 02:30:53
  38404. 8526 2005-07-29 10:20:48 575 88 2005-08-03 14:15:48 1 2006-02-16 02:30:53
  38405. 8527 2005-07-29 10:21:00 709 168 2005-08-05 16:05:00 2 2006-02-16 02:30:53
  38406. 8528 2005-07-29 10:24:22 2107 428 2005-08-07 10:34:22 1 2006-02-16 02:30:53
  38407. 8529 2005-07-29 10:24:31 1055 501 2005-08-01 16:06:31 1 2006-02-16 02:30:53
  38408. 8530 2005-07-29 10:26:14 4528 233 2005-07-31 10:24:14 1 2006-02-16 02:30:53
  38409. 8531 2005-07-29 10:26:15 1631 427 2005-08-06 09:28:15 1 2006-02-16 02:30:53
  38410. 8532 2005-07-29 10:26:56 3045 546 2005-08-02 13:23:56 2 2006-02-16 02:30:53
  38411. 8533 2005-07-29 10:29:16 551 542 2005-08-01 06:52:16 1 2006-02-16 02:30:53
  38412. 8534 2005-07-29 10:30:13 4029 516 2005-08-02 04:47:13 1 2006-02-16 02:30:53
  38413. 8535 2005-07-29 10:32:33 4489 536 2005-07-31 05:46:33 1 2006-02-16 02:30:53
  38414. 8536 2005-07-29 10:37:23 4510 219 2005-07-31 07:21:23 2 2006-02-16 02:30:53
  38415. 8537 2005-07-29 10:44:54 1012 447 2005-08-06 14:55:54 2 2006-02-16 02:30:53
  38416. 8538 2005-07-29 10:45:17 3768 500 2005-08-04 15:12:17 1 2006-02-16 02:30:53
  38417. 8539 2005-07-29 10:48:24 599 325 2005-07-30 06:29:24 2 2006-02-16 02:30:53
  38418. 8540 2005-07-29 10:52:51 539 180 2005-08-07 11:44:51 2 2006-02-16 02:30:53
  38419. 8541 2005-07-29 10:55:01 976 340 2005-07-31 10:53:01 1 2006-02-16 02:30:53
  38420. 8542 2005-07-29 11:01:50 792 213 2005-07-30 08:19:50 1 2006-02-16 02:30:53
  38421. 8543 2005-07-29 11:01:57 403 346 2005-08-03 06:03:57 1 2006-02-16 02:30:53
  38422. 8544 2005-07-29 11:02:08 412 542 2005-08-06 15:06:08 2 2006-02-16 02:30:53
  38423. 8545 2005-07-29 11:07:04 3261 3 2005-08-06 13:30:04 2 2006-02-16 02:30:53
  38424. 8546 2005-07-29 11:08:48 3224 418 2005-08-03 16:50:48 2 2006-02-16 02:30:53
  38425. 8547 2005-07-29 11:10:15 875 438 2005-08-03 12:50:15 1 2006-02-16 02:30:53
  38426. 8548 2005-07-29 11:11:33 3366 14 2005-08-04 11:52:33 2 2006-02-16 02:30:53
  38427. 8549 2005-07-29 11:12:13 1866 206 2005-08-06 06:04:13 2 2006-02-16 02:30:53
  38428. 8550 2005-07-29 11:12:37 1340 70 2005-07-30 15:05:37 2 2006-02-16 02:30:53
  38429. 8551 2005-07-29 11:13:11 2083 340 2005-08-05 05:17:11 2 2006-02-16 02:30:53
  38430. 8552 2005-07-29 11:14:02 1987 490 2005-08-05 14:13:02 2 2006-02-16 02:30:53
  38431. 8553 2005-07-29 11:15:36 2645 49 2005-08-07 16:37:36 1 2006-02-16 02:30:53
  38432. 8554 2005-07-29 11:16:29 1563 582 2005-07-31 06:38:29 2 2006-02-16 02:30:53
  38433. 8555 2005-07-29 11:18:01 2784 18 2005-07-30 10:47:01 2 2006-02-16 02:30:53
  38434. 8556 2005-07-29 11:18:27 2793 231 2005-07-30 05:21:27 2 2006-02-16 02:30:53
  38435. 8557 2005-07-29 11:19:59 1481 459 2005-08-07 12:50:59 1 2006-02-16 02:30:53
  38436. 8558 2005-07-29 11:24:49 1160 169 2005-07-31 15:03:49 1 2006-02-16 02:30:53
  38437. 8559 2005-07-29 11:25:54 2078 279 2005-08-04 10:16:54 2 2006-02-16 02:30:53
  38438. 8560 2005-07-29 11:27:27 3499 430 2005-08-01 12:05:27 2 2006-02-16 02:30:53
  38439. 8561 2005-07-29 11:29:12 2207 344 2005-08-05 09:17:12 1 2006-02-16 02:30:53
  38440. 8562 2005-07-29 11:32:13 3595 255 2005-07-30 08:23:13 2 2006-02-16 02:30:53
  38441. 8563 2005-07-29 11:32:58 61 67 2005-08-05 07:21:58 2 2006-02-16 02:30:53
  38442. 8564 2005-07-29 11:33:00 2830 316 2005-08-05 15:35:00 1 2006-02-16 02:30:53
  38443. 8565 2005-07-29 11:35:23 3211 280 2005-08-06 08:28:23 1 2006-02-16 02:30:53
  38444. 8566 2005-07-29 11:35:46 2011 544 2005-07-30 13:50:46 1 2006-02-16 02:30:53
  38445. 8567 2005-07-29 11:37:30 1612 594 2005-08-03 05:58:30 2 2006-02-16 02:30:53
  38446. 8568 2005-07-29 11:38:22 1599 583 2005-08-04 13:22:22 2 2006-02-16 02:30:53
  38447. 8569 2005-07-29 11:39:17 276 348 2005-07-31 07:50:17 2 2006-02-16 02:30:53
  38448. 8570 2005-07-29 11:40:08 3094 131 2005-08-06 10:23:08 1 2006-02-16 02:30:53
  38449. 8571 2005-07-29 11:48:39 1778 407 2005-08-03 06:35:39 2 2006-02-16 02:30:53
  38450. 8572 2005-07-29 11:51:24 2815 267 2005-08-02 11:44:24 1 2006-02-16 02:30:53
  38451. 8573 2005-07-29 11:51:25 1637 179 2005-08-07 08:53:25 1 2006-02-16 02:30:53
  38452. 8574 2005-07-29 11:51:53 2949 71 2005-08-03 05:59:53 2 2006-02-16 02:30:53
  38453. 8575 2005-07-29 11:52:47 1668 441 2005-08-03 08:14:47 2 2006-02-16 02:30:53
  38454. 8576 2005-07-29 11:55:01 3552 157 2005-08-03 08:41:01 2 2006-02-16 02:30:53
  38455. 8577 2005-07-29 11:56:30 520 328 2005-08-07 15:41:30 1 2006-02-16 02:30:53
  38456. 8578 2005-07-29 11:58:14 3737 148 2005-08-03 06:25:14 1 2006-02-16 02:30:53
  38457. 8579 2005-07-29 11:59:22 4045 250 2005-07-30 11:41:22 2 2006-02-16 02:30:53
  38458. 8580 2005-07-29 12:00:27 4040 543 2005-08-04 16:39:27 1 2006-02-16 02:30:53
  38459. 8581 2005-07-29 12:02:06 2102 254 2005-08-02 10:32:06 2 2006-02-16 02:30:53
  38460. 8582 2005-07-29 12:03:27 841 162 2005-08-03 07:02:27 1 2006-02-16 02:30:53
  38461. 8583 2005-07-29 12:04:50 3130 191 2005-08-04 17:21:50 1 2006-02-16 02:30:53
  38462. 8584 2005-07-29 12:07:53 1656 482 2005-07-31 09:27:53 1 2006-02-16 02:30:53
  38463. 8585 2005-07-29 12:14:18 512 516 2005-08-03 08:31:18 2 2006-02-16 02:30:53
  38464. 8586 2005-07-29 12:16:34 2752 374 2005-08-07 06:48:34 1 2006-02-16 02:30:53
  38465. 8587 2005-07-29 12:18:40 1941 108 2005-08-03 14:01:40 1 2006-02-16 02:30:53
  38466. 8588 2005-07-29 12:22:20 2858 416 2005-07-31 10:49:20 1 2006-02-16 02:30:53
  38467. 8589 2005-07-29 12:28:17 1628 293 2005-08-05 11:40:17 1 2006-02-16 02:30:53
  38468. 8590 2005-07-29 12:32:20 2505 114 2005-08-07 08:00:20 1 2006-02-16 02:30:53
  38469. 8591 2005-07-29 12:32:33 2568 418 2005-08-01 16:19:33 2 2006-02-16 02:30:53
  38470. 8592 2005-07-29 12:33:58 1952 271 2005-08-04 07:14:58 2 2006-02-16 02:30:53
  38471. 8593 2005-07-29 12:38:14 2601 181 2005-08-07 07:04:14 1 2006-02-16 02:30:53
  38472. 8594 2005-07-29 12:42:13 4155 115 2005-08-02 07:38:13 1 2006-02-16 02:30:53
  38473. 8595 2005-07-29 12:47:43 3225 423 2005-08-07 13:51:43 2 2006-02-16 02:30:53
  38474. 8596 2005-07-29 12:48:54 59 233 2005-08-04 07:19:54 2 2006-02-16 02:30:53
  38475. 8597 2005-07-29 12:55:55 4218 222 2005-08-05 18:54:55 1 2006-02-16 02:30:53
  38476. 8598 2005-07-29 12:56:59 626 2 2005-08-01 08:39:59 2 2006-02-16 02:30:53
  38477. 8599 2005-07-29 12:58:52 1169 545 2005-08-03 08:19:52 1 2006-02-16 02:30:53
  38478. 8600 2005-07-29 13:01:19 1488 226 2005-07-31 15:40:19 2 2006-02-16 02:30:53
  38479. 8601 2005-07-29 13:03:31 3247 181 2005-08-06 16:32:31 1 2006-02-16 02:30:53
  38480. 8602 2005-07-29 13:04:27 4002 64 2005-08-03 12:21:27 2 2006-02-16 02:30:53
  38481. 8603 2005-07-29 13:07:07 3007 594 2005-08-04 18:32:07 2 2006-02-16 02:30:53
  38482. 8604 2005-07-29 13:07:13 3909 326 2005-07-31 18:00:13 2 2006-02-16 02:30:53
  38483. 8605 2005-07-29 13:13:34 3805 224 2005-08-07 08:29:34 1 2006-02-16 02:30:53
  38484. 8606 2005-07-29 13:14:24 4051 340 2005-07-30 14:52:24 1 2006-02-16 02:30:53
  38485. 8607 2005-07-29 13:18:00 4290 336 2005-07-30 18:51:00 2 2006-02-16 02:30:53
  38486. 8608 2005-07-29 13:18:52 2976 165 2005-07-30 19:01:52 2 2006-02-16 02:30:53
  38487. 8609 2005-07-29 13:19:25 3997 354 2005-08-06 08:33:25 2 2006-02-16 02:30:53
  38488. 8610 2005-07-29 13:25:02 4222 563 2005-08-03 08:10:02 2 2006-02-16 02:30:53
  38489. 8611 2005-07-29 13:26:21 610 373 2005-08-07 18:20:21 2 2006-02-16 02:30:53
  38490. 8612 2005-07-29 13:28:20 3518 392 2005-08-06 14:39:20 2 2006-02-16 02:30:53
  38491. 8613 2005-07-29 13:30:58 394 411 2005-08-05 16:21:58 2 2006-02-16 02:30:53
  38492. 8614 2005-07-29 13:32:05 604 552 2005-08-04 15:26:05 1 2006-02-16 02:30:53
  38493. 8615 2005-07-29 13:36:01 4453 15 2005-08-03 13:15:01 1 2006-02-16 02:30:53
  38494. 8616 2005-07-29 13:39:09 2583 493 2005-08-01 16:49:09 1 2006-02-16 02:30:53
  38495. 8617 2005-07-29 13:46:14 385 441 2005-08-06 13:26:14 2 2006-02-16 02:30:53
  38496. 8618 2005-07-29 13:48:20 985 270 2005-08-06 14:12:20 2 2006-02-16 02:30:53
  38497. 8619 2005-07-29 13:50:08 2169 50 2005-08-06 13:15:08 1 2006-02-16 02:30:53
  38498. 8620 2005-07-29 13:51:20 3718 306 2005-08-02 13:05:20 1 2006-02-16 02:30:53
  38499. 8621 2005-07-29 13:52:42 2473 358 2005-07-30 11:42:42 2 2006-02-16 02:30:53
  38500. 8622 2005-07-29 13:53:28 4076 98 2005-07-31 16:12:28 2 2006-02-16 02:30:53
  38501. 8623 2005-07-29 13:55:11 458 142 2005-08-05 11:16:11 1 2006-02-16 02:30:53
  38502. 8624 2005-07-29 13:55:36 4402 439 2005-08-02 12:23:36 2 2006-02-16 02:30:53
  38503. 8625 2005-07-29 13:59:13 884 410 2005-08-07 17:56:13 2 2006-02-16 02:30:53
  38504. 8626 2005-07-29 14:03:20 3092 148 2005-08-02 09:05:20 1 2006-02-16 02:30:53
  38505. 8627 2005-07-29 14:05:12 4235 226 2005-08-05 16:53:12 2 2006-02-16 02:30:53
  38506. 8628 2005-07-29 14:06:24 4484 550 2005-08-06 10:42:24 2 2006-02-16 02:30:53
  38507. 8629 2005-07-29 14:06:35 853 567 2005-08-03 16:59:35 2 2006-02-16 02:30:53
  38508. 8630 2005-07-29 14:07:59 1378 406 2005-08-03 13:18:59 2 2006-02-16 02:30:53
  38509. 8631 2005-07-29 14:08:06 98 559 2005-08-05 14:57:06 1 2006-02-16 02:30:53
  38510. 8632 2005-07-29 14:11:25 1666 563 2005-08-07 15:32:25 1 2006-02-16 02:30:53
  38511. 8633 2005-07-29 14:19:53 3436 534 2005-08-01 11:31:53 2 2006-02-16 02:30:53
  38512. 8634 2005-07-29 14:19:57 2023 335 2005-08-07 13:44:57 1 2006-02-16 02:30:53
  38513. 8635 2005-07-29 14:22:48 2894 383 2005-08-01 11:59:48 2 2006-02-16 02:30:53
  38514. 8636 2005-07-29 14:24:13 4308 252 2005-08-02 14:39:13 1 2006-02-16 02:30:53
  38515. 8637 2005-07-29 14:30:11 1069 310 2005-08-04 14:00:11 1 2006-02-16 02:30:53
  38516. 8638 2005-07-29 14:30:23 4060 571 2005-08-01 10:32:23 1 2006-02-16 02:30:53
  38517. 8639 2005-07-29 14:30:31 3504 290 2005-08-02 16:04:31 1 2006-02-16 02:30:53
  38518. 8640 2005-07-29 14:34:17 1874 257 2005-08-01 13:09:17 2 2006-02-16 02:30:53
  38519. 8641 2005-07-29 14:37:30 3199 30 2005-08-02 19:32:30 2 2006-02-16 02:30:53
  38520. 8642 2005-07-29 14:38:17 3947 522 2005-08-03 14:41:17 1 2006-02-16 02:30:53
  38521. 8643 2005-07-29 14:45:23 381 59 2005-08-04 18:42:23 1 2006-02-16 02:30:53
  38522. 8644 2005-07-29 14:45:45 4507 314 2005-08-03 20:10:45 2 2006-02-16 02:30:53
  38523. 8645 2005-07-29 14:47:45 2532 535 2005-07-30 14:56:45 2 2006-02-16 02:30:53
  38524. 8646 2005-07-29 14:48:48 89 302 2005-08-03 18:11:48 2 2006-02-16 02:30:53
  38525. 8647 2005-07-29 14:52:59 556 307 2005-08-06 11:09:59 2 2006-02-16 02:30:53
  38526. 8648 2005-07-29 14:56:21 160 416 2005-07-31 16:56:21 2 2006-02-16 02:30:53
  38527. 8649 2005-07-29 14:57:33 789 69 2005-08-07 09:43:33 2 2006-02-16 02:30:53
  38528. 8650 2005-07-29 14:59:04 1272 134 2005-08-04 13:13:04 2 2006-02-16 02:30:53
  38529. 8651 2005-07-29 15:02:18 2095 61 2005-08-07 09:34:18 2 2006-02-16 02:30:53
  38530. 8652 2005-07-29 15:02:54 2729 219 2005-08-07 17:21:54 2 2006-02-16 02:30:53
  38531. 8653 2005-07-29 15:04:23 4440 230 2005-08-02 09:39:23 2 2006-02-16 02:30:53
  38532. 8654 2005-07-29 15:04:27 3925 84 2005-08-07 18:37:27 1 2006-02-16 02:30:53
  38533. 8655 2005-07-29 15:04:42 3986 232 2005-08-04 11:26:42 1 2006-02-16 02:30:53
  38534. 8656 2005-07-29 15:05:52 1385 460 2005-07-31 20:57:52 2 2006-02-16 02:30:53
  38535. 8657 2005-07-29 15:09:25 3194 236 2005-07-31 19:10:25 1 2006-02-16 02:30:53
  38536. 8658 2005-07-29 15:16:37 2033 427 2005-08-07 20:45:37 2 2006-02-16 02:30:53
  38537. 8659 2005-07-29 15:26:31 558 168 2005-08-06 19:05:31 2 2006-02-16 02:30:53
  38538. 8660 2005-07-29 15:26:59 3122 566 2005-08-05 21:04:59 2 2006-02-16 02:30:53
  38539. 8661 2005-07-29 15:28:24 3409 341 2005-08-05 20:04:24 2 2006-02-16 02:30:53
  38540. 8662 2005-07-29 15:31:33 3758 362 2005-07-30 09:39:33 2 2006-02-16 02:30:53
  38541. 8663 2005-07-29 15:33:18 1281 214 2005-07-30 18:03:18 1 2006-02-16 02:30:53
  38542. 8664 2005-07-29 15:36:27 198 102 2005-08-04 20:11:27 1 2006-02-16 02:30:53
  38543. 8665 2005-07-29 15:39:29 1113 265 2005-08-01 10:33:29 2 2006-02-16 02:30:53
  38544. 8666 2005-07-29 15:39:38 3669 591 2005-08-06 17:12:38 1 2006-02-16 02:30:53
  38545. 8667 2005-07-29 15:40:57 3439 25 2005-07-31 20:59:57 1 2006-02-16 02:30:53
  38546. 8668 2005-07-29 15:41:31 4531 71 2005-08-01 16:20:31 2 2006-02-16 02:30:53
  38547. 8669 2005-07-29 15:44:55 1667 401 2005-08-01 14:09:55 2 2006-02-16 02:30:53
  38548. 8670 2005-07-29 15:49:03 2354 446 2005-08-01 20:19:03 2 2006-02-16 02:30:53
  38549. 8671 2005-07-29 15:49:37 1431 577 2005-08-05 18:20:37 1 2006-02-16 02:30:53
  38550. 8672 2005-07-29 15:49:48 405 495 2005-08-06 17:59:48 2 2006-02-16 02:30:53
  38551. 8673 2005-07-29 15:50:14 2167 29 2005-08-03 18:30:14 1 2006-02-16 02:30:53
  38552. 8674 2005-07-29 15:54:22 1744 412 2005-07-31 12:15:22 1 2006-02-16 02:30:53
  38553. 8675 2005-07-29 15:56:18 1026 258 2005-07-30 18:50:18 1 2006-02-16 02:30:53
  38554. 8676 2005-07-29 15:59:06 283 533 2005-08-05 19:12:06 2 2006-02-16 02:30:53
  38555. 8677 2005-07-29 16:01:13 513 315 2005-08-07 19:21:13 2 2006-02-16 02:30:53
  38556. 8678 2005-07-29 16:04:00 3991 210 2005-08-05 12:37:00 1 2006-02-16 02:30:53
  38557. 8679 2005-07-29 16:07:47 3549 536 2005-08-02 18:37:47 1 2006-02-16 02:30:53
  38558. 8680 2005-07-29 16:08:03 1227 330 2005-07-31 17:26:03 1 2006-02-16 02:30:53
  38559. 8681 2005-07-29 16:12:01 4004 309 2005-08-01 18:14:01 2 2006-02-16 02:30:53
  38560. 8682 2005-07-29 16:15:26 4328 348 2005-08-03 20:15:26 2 2006-02-16 02:30:53
  38561. 8683 2005-07-29 16:15:43 3915 513 2005-08-07 19:19:43 1 2006-02-16 02:30:53
  38562. 8684 2005-07-29 16:16:33 2457 185 2005-08-07 12:27:33 2 2006-02-16 02:30:53
  38563. 8685 2005-07-29 16:17:05 1827 321 2005-08-07 17:44:05 1 2006-02-16 02:30:53
  38564. 8686 2005-07-29 16:17:49 4160 52 2005-08-01 12:50:49 2 2006-02-16 02:30:53
  38565. 8687 2005-07-29 16:19:17 222 117 2005-08-01 15:28:17 1 2006-02-16 02:30:53
  38566. 8688 2005-07-29 16:31:32 2263 381 2005-07-30 12:39:32 1 2006-02-16 02:30:53
  38567. 8689 2005-07-29 16:38:58 824 487 2005-08-01 17:09:58 2 2006-02-16 02:30:53
  38568. 8690 2005-07-29 16:39:28 1292 291 2005-08-01 14:03:28 2 2006-02-16 02:30:53
  38569. 8691 2005-07-29 16:41:23 672 446 2005-08-02 12:32:23 2 2006-02-16 02:30:53
  38570. 8692 2005-07-29 16:43:39 3192 88 2005-08-01 15:54:39 2 2006-02-16 02:30:53
  38571. 8693 2005-07-29 16:44:13 917 51 2005-08-01 15:56:13 1 2006-02-16 02:30:53
  38572. 8694 2005-07-29 16:44:48 503 345 2005-08-06 16:28:48 1 2006-02-16 02:30:53
  38573. 8695 2005-07-29 16:44:55 694 280 2005-08-07 12:47:55 1 2006-02-16 02:30:53
  38574. 8696 2005-07-29 16:45:18 2553 178 2005-08-07 18:51:18 1 2006-02-16 02:30:53
  38575. 8697 2005-07-29 16:46:07 443 291 2005-08-02 19:27:07 2 2006-02-16 02:30:53
  38576. 8698 2005-07-29 16:52:17 2973 324 2005-08-04 13:20:17 2 2006-02-16 02:30:53
  38577. 8699 2005-07-29 16:53:00 4080 123 2005-08-07 20:31:00 1 2006-02-16 02:30:53
  38578. 8700 2005-07-29 16:56:01 3710 196 2005-07-31 16:19:01 2 2006-02-16 02:30:53
  38579. 8701 2005-07-29 17:02:35 3158 245 2005-08-07 19:55:35 2 2006-02-16 02:30:53
  38580. 8702 2005-07-29 17:04:37 2215 306 2005-08-05 15:30:37 2 2006-02-16 02:30:53
  38581. 8703 2005-07-29 17:12:44 1065 439 2005-07-30 19:38:44 1 2006-02-16 02:30:53
  38582. 8704 2005-07-29 17:13:45 2117 107 2005-08-03 20:03:45 2 2006-02-16 02:30:53
  38583. 8705 2005-07-29 17:14:29 4038 2 2005-08-02 16:01:29 1 2006-02-16 02:30:53
  38584. 8706 2005-07-29 17:19:15 2886 515 2005-08-03 22:52:15 1 2006-02-16 02:30:53
  38585. 8707 2005-07-29 17:21:58 2525 157 2005-08-02 14:47:58 2 2006-02-16 02:30:53
  38586. 8708 2005-07-29 17:24:13 4054 529 2005-08-04 13:57:13 1 2006-02-16 02:30:53
  38587. 8709 2005-07-29 17:25:54 902 199 2005-08-02 22:35:54 1 2006-02-16 02:30:53
  38588. 8710 2005-07-29 17:26:03 3391 566 2005-07-30 19:51:03 1 2006-02-16 02:30:53
  38589. 8711 2005-07-29 17:27:15 3471 575 2005-07-31 12:57:15 1 2006-02-16 02:30:53
  38590. 8712 2005-07-29 17:30:06 2800 41 2005-08-03 22:55:06 2 2006-02-16 02:30:53
  38591. 8713 2005-07-29 17:31:19 473 433 2005-08-02 16:37:19 2 2006-02-16 02:30:53
  38592. 8714 2005-07-29 17:31:40 4547 362 2005-08-04 16:12:40 2 2006-02-16 02:30:53
  38593. 8715 2005-07-29 17:33:45 860 11 2005-08-01 17:30:45 1 2006-02-16 02:30:53
  38594. 8716 2005-07-29 17:39:09 2123 48 2005-08-03 20:26:09 2 2006-02-16 02:30:53
  38595. 8717 2005-07-29 17:40:45 1821 260 2005-08-01 22:38:45 2 2006-02-16 02:30:53
  38596. 8718 2005-07-29 17:41:14 137 23 2005-08-01 18:22:14 2 2006-02-16 02:30:53
  38597. 8719 2005-07-29 17:45:45 995 333 2005-08-01 13:53:45 1 2006-02-16 02:30:53
  38598. 8720 2005-07-29 17:48:32 152 180 2005-08-04 14:30:32 2 2006-02-16 02:30:53
  38599. 8721 2005-07-29 17:56:21 2416 312 2005-08-02 21:30:21 2 2006-02-16 02:30:53
  38600. 8722 2005-07-29 17:58:58 1389 401 2005-08-07 23:40:58 1 2006-02-16 02:30:53
  38601. 8723 2005-07-29 18:03:47 224 39 2005-08-06 18:53:47 1 2006-02-16 02:30:53
  38602. 8724 2005-07-29 18:05:21 898 372 2005-08-01 15:41:21 1 2006-02-16 02:30:53
  38603. 8725 2005-07-29 18:08:42 2385 421 2005-08-04 16:01:42 2 2006-02-16 02:30:53
  38604. 8726 2005-07-29 18:09:22 897 409 2005-08-06 16:24:22 1 2006-02-16 02:30:53
  38605. 8727 2005-07-29 18:09:57 3031 528 2005-08-03 13:41:57 2 2006-02-16 02:30:53
  38606. 8728 2005-07-29 18:12:49 973 341 2005-08-06 22:45:49 1 2006-02-16 02:30:53
  38607. 8729 2005-07-29 18:23:02 3342 83 2005-07-31 16:09:02 2 2006-02-16 02:30:53
  38608. 8730 2005-07-29 18:23:34 4191 592 2005-08-01 19:56:34 1 2006-02-16 02:30:53
  38609. 8731 2005-07-29 18:23:57 2638 179 2005-08-05 19:38:57 1 2006-02-16 02:30:53
  38610. 8732 2005-07-29 18:25:03 1143 346 2005-08-07 18:56:03 2 2006-02-16 02:30:53
  38611. 8733 2005-07-29 18:26:34 3187 450 2005-08-03 15:06:34 1 2006-02-16 02:30:53
  38612. 8734 2005-07-29 18:28:15 2374 303 2005-08-05 23:38:15 1 2006-02-16 02:30:53
  38613. 8735 2005-07-29 18:28:54 2881 570 2005-08-03 12:43:54 2 2006-02-16 02:30:53
  38614. 8736 2005-07-29 18:31:15 1726 530 2005-07-30 16:24:15 2 2006-02-16 02:30:53
  38615. 8737 2005-07-29 18:32:13 4154 298 2005-08-05 21:07:13 2 2006-02-16 02:30:53
  38616. 8738 2005-07-29 18:32:47 3893 210 2005-08-02 13:05:47 2 2006-02-16 02:30:53
  38617. 8739 2005-07-29 18:34:33 4310 326 2005-08-02 16:05:33 1 2006-02-16 02:30:53
  38618. 8740 2005-07-29 18:41:31 3781 378 2005-08-01 18:38:31 1 2006-02-16 02:30:53
  38619. 8741 2005-07-29 18:44:57 165 4 2005-08-03 18:25:57 2 2006-02-16 02:30:53
  38620. 8742 2005-07-29 18:56:12 918 208 2005-08-03 16:42:12 1 2006-02-16 02:30:53
  38621. 8743 2005-07-29 18:57:01 2664 282 2005-07-31 22:09:01 2 2006-02-16 02:30:53
  38622. 8744 2005-07-29 18:58:24 1086 280 2005-08-05 17:56:24 1 2006-02-16 02:30:53
  38623. 8745 2005-07-29 19:03:05 1766 293 2005-08-06 14:06:05 2 2006-02-16 02:30:53
  38624. 8746 2005-07-29 19:03:15 2179 275 2005-07-30 17:06:15 1 2006-02-16 02:30:53
  38625. 8747 2005-07-29 19:07:57 2584 70 2005-07-30 16:01:57 1 2006-02-16 02:30:53
  38626. 8748 2005-07-29 19:08:37 2184 237 2005-08-01 16:24:37 1 2006-02-16 02:30:53
  38627. 8749 2005-07-29 19:13:15 2252 456 2005-08-01 15:02:15 1 2006-02-16 02:30:53
  38628. 8750 2005-07-29 19:14:21 3157 158 2005-07-31 17:22:21 2 2006-02-16 02:30:53
  38629. 8751 2005-07-29 19:14:39 3467 386 2005-07-31 23:11:39 1 2006-02-16 02:30:53
  38630. 8752 2005-07-29 19:15:07 4202 253 2005-07-31 13:27:07 1 2006-02-16 02:30:53
  38631. 8753 2005-07-29 19:15:50 1345 560 2005-07-31 19:13:50 2 2006-02-16 02:30:53
  38632. 8754 2005-07-29 19:18:30 1678 174 2005-08-05 18:39:30 2 2006-02-16 02:30:53
  38633. 8755 2005-07-29 19:18:31 1498 372 2005-07-31 19:20:31 2 2006-02-16 02:30:53
  38634. 8756 2005-07-29 19:18:57 4146 120 2005-08-02 20:07:57 2 2006-02-16 02:30:53
  38635. 8757 2005-07-29 19:19:10 3473 462 2005-08-02 13:47:10 2 2006-02-16 02:30:53
  38636. 8758 2005-07-29 19:20:49 2816 442 2005-08-05 21:57:49 2 2006-02-16 02:30:53
  38637. 8759 2005-07-29 19:22:37 844 209 2005-08-07 15:36:37 2 2006-02-16 02:30:53
  38638. 8760 2005-07-29 19:22:40 3566 118 2005-08-05 01:09:40 2 2006-02-16 02:30:53
  38639. 8761 2005-07-29 19:26:47 1317 539 2005-08-08 00:09:47 1 2006-02-16 02:30:53
  38640. 8762 2005-07-29 19:30:02 2765 463 2005-08-04 18:38:02 1 2006-02-16 02:30:53
  38641. 8763 2005-07-29 19:38:24 374 510 2005-08-04 16:51:24 1 2006-02-16 02:30:53
  38642. 8764 2005-07-29 19:39:04 2348 303 2005-08-01 13:52:04 1 2006-02-16 02:30:53
  38643. 8765 2005-07-29 19:40:08 2631 538 2005-07-31 14:24:08 2 2006-02-16 02:30:53
  38644. 8766 2005-07-29 19:41:04 3888 338 2005-08-02 00:41:04 2 2006-02-16 02:30:53
  38645. 8767 2005-07-29 19:42:33 962 467 2005-08-01 20:52:33 2 2006-02-16 02:30:53
  38646. 8768 2005-07-29 19:43:02 1601 468 2005-08-03 23:36:02 1 2006-02-16 02:30:53
  38647. 8769 2005-07-29 19:45:33 2180 588 2005-08-05 22:09:33 2 2006-02-16 02:30:53
  38648. 8770 2005-07-29 19:53:50 4025 499 2005-08-05 14:22:50 1 2006-02-16 02:30:53
  38649. 8771 2005-07-29 19:54:41 3533 347 2005-08-03 20:38:41 1 2006-02-16 02:30:53
  38650. 8772 2005-07-29 19:55:25 3526 122 2005-08-05 18:48:25 1 2006-02-16 02:30:53
  38651. 8773 2005-07-29 19:55:34 131 592 2005-07-30 14:11:34 1 2006-02-16 02:30:53
  38652. 8774 2005-07-29 20:05:04 315 161 2005-07-31 14:32:04 1 2006-02-16 02:30:53
  38653. 8775 2005-07-29 20:05:38 1358 44 2005-07-30 21:13:38 1 2006-02-16 02:30:53
  38654. 8776 2005-07-29 20:07:06 1565 587 2005-08-06 20:42:06 2 2006-02-16 02:30:53
  38655. 8777 2005-07-29 20:10:21 2462 382 2005-07-30 20:32:21 2 2006-02-16 02:30:53
  38656. 8778 2005-07-29 20:14:25 3654 582 2005-08-04 00:50:25 1 2006-02-16 02:30:53
  38657. 8779 2005-07-29 20:15:00 3245 202 2005-08-03 21:17:00 1 2006-02-16 02:30:53
  38658. 8780 2005-07-29 20:19:45 1095 328 2005-08-03 22:22:45 2 2006-02-16 02:30:53
  38659. 8781 2005-07-29 20:20:16 3746 235 2005-07-30 16:19:16 2 2006-02-16 02:30:53
  38660. 8782 2005-07-29 20:29:34 4379 365 2005-08-04 02:19:34 1 2006-02-16 02:30:53
  38661. 8783 2005-07-29 20:31:28 2316 71 2005-08-02 19:33:28 2 2006-02-16 02:30:53
  38662. 8784 2005-07-29 20:35:37 2308 580 2005-07-30 17:22:37 1 2006-02-16 02:30:53
  38663. 8785 2005-07-29 20:36:26 216 42 2005-07-30 15:06:26 1 2006-02-16 02:30:53
  38664. 8786 2005-07-29 20:39:49 2404 533 2005-08-03 18:08:49 1 2006-02-16 02:30:53
  38665. 8787 2005-07-29 20:43:49 2366 222 2005-07-31 15:15:49 1 2006-02-16 02:30:53
  38666. 8788 2005-07-29 20:46:44 3412 121 2005-08-03 02:25:44 2 2006-02-16 02:30:53
  38667. 8789 2005-07-29 20:47:27 3062 71 2005-08-05 18:36:27 1 2006-02-16 02:30:53
  38668. 8790 2005-07-29 20:51:41 751 323 2005-07-30 17:30:41 2 2006-02-16 02:30:53
  38669. 8791 2005-07-29 20:53:23 1677 469 2005-07-31 18:14:23 1 2006-02-16 02:30:53
  38670. 8792 2005-07-29 20:56:14 3764 203 2005-08-07 16:44:14 2 2006-02-16 02:30:53
  38671. 8793 2005-07-29 20:57:22 1819 167 2005-08-02 01:40:22 2 2006-02-16 02:30:53
  38672. 8794 2005-07-29 20:59:38 3509 320 2005-07-31 00:15:38 2 2006-02-16 02:30:53
  38673. 8795 2005-07-29 21:04:14 1896 302 2005-07-31 02:58:14 2 2006-02-16 02:30:53
  38674. 8796 2005-07-29 21:09:11 2234 74 2005-08-04 22:55:11 1 2006-02-16 02:30:53
  38675. 8797 2005-07-29 21:10:37 2929 566 2005-08-07 21:43:37 1 2006-02-16 02:30:53
  38676. 8798 2005-07-29 21:15:38 800 513 2005-08-05 02:46:38 2 2006-02-16 02:30:53
  38677. 8799 2005-07-29 21:16:47 326 237 2005-08-07 22:09:47 2 2006-02-16 02:30:53
  38678. 8800 2005-07-29 21:18:59 2082 207 2005-08-06 19:59:59 2 2006-02-16 02:30:53
  38679. 8801 2005-07-29 21:25:22 1111 590 2005-08-01 00:02:22 1 2006-02-16 02:30:53
  38680. 8802 2005-07-29 21:25:51 296 407 2005-07-30 18:15:51 2 2006-02-16 02:30:53
  38681. 8803 2005-07-29 21:26:24 2814 86 2005-08-06 18:05:24 2 2006-02-16 02:30:53
  38682. 8804 2005-07-29 21:28:19 4461 363 2005-08-01 20:15:19 2 2006-02-16 02:30:53
  38683. 8805 2005-07-29 21:29:58 4041 39 2005-08-04 23:12:58 1 2006-02-16 02:30:53
  38684. 8806 2005-07-29 21:36:34 4085 454 2005-08-02 00:58:34 1 2006-02-16 02:30:53
  38685. 8807 2005-07-29 21:36:59 2612 396 2005-08-01 17:40:59 1 2006-02-16 02:30:53
  38686. 8808 2005-07-29 21:39:07 593 173 2005-08-03 02:09:07 2 2006-02-16 02:30:53
  38687. 8809 2005-07-29 21:42:49 3278 8 2005-08-04 01:13:49 1 2006-02-16 02:30:53
  38688. 8810 2005-07-29 21:45:19 1233 431 2005-08-08 01:45:19 2 2006-02-16 02:30:53
  38689. 8811 2005-07-29 21:46:21 2041 245 2005-08-07 16:51:21 2 2006-02-16 02:30:53
  38690. 8812 2005-07-29 21:47:40 1172 563 2005-08-04 01:18:40 2 2006-02-16 02:30:53
  38691. 8813 2005-07-29 21:47:55 3442 497 2005-08-05 01:16:55 1 2006-02-16 02:30:53
  38692. 8814 2005-07-29 21:49:43 1492 487 2005-08-01 19:56:43 1 2006-02-16 02:30:53
  38693. 8815 2005-07-29 21:51:26 3469 230 2005-08-03 22:37:26 1 2006-02-16 02:30:53
  38694. 8816 2005-07-29 21:53:00 3984 209 2005-08-01 21:20:00 1 2006-02-16 02:30:53
  38695. 8817 2005-07-29 22:09:08 2716 175 2005-08-01 19:07:08 1 2006-02-16 02:30:53
  38696. 8818 2005-07-29 22:14:04 3090 98 2005-08-07 17:26:04 1 2006-02-16 02:30:53
  38697. 8819 2005-07-29 22:14:26 3100 591 2005-08-06 23:02:26 2 2006-02-16 02:30:53
  38698. 8820 2005-07-29 22:14:56 481 594 2005-08-05 23:36:56 2 2006-02-16 02:30:53
  38699. 8821 2005-07-29 22:18:12 52 477 2005-08-05 22:00:12 1 2006-02-16 02:30:53
  38700. 8822 2005-07-29 22:20:21 744 35 2005-08-06 03:00:21 2 2006-02-16 02:30:53
  38701. 8823 2005-07-29 22:22:12 951 75 2005-08-07 21:03:12 1 2006-02-16 02:30:53
  38702. 8824 2005-07-29 22:22:58 3506 164 2005-07-31 21:02:58 2 2006-02-16 02:30:53
  38703. 8825 2005-07-29 22:24:16 881 101 2005-08-05 00:27:16 2 2006-02-16 02:30:53
  38704. 8826 2005-07-29 22:30:16 1800 369 2005-07-30 19:43:16 1 2006-02-16 02:30:53
  38705. 8827 2005-07-29 22:31:24 1517 157 2005-08-06 21:05:24 2 2006-02-16 02:30:53
  38706. 8828 2005-07-29 22:32:54 1608 547 2005-07-30 20:41:54 1 2006-02-16 02:30:53
  38707. 8829 2005-07-29 22:33:34 1466 173 2005-08-05 20:23:34 2 2006-02-16 02:30:53
  38708. 8830 2005-07-29 22:34:35 1751 202 2005-08-05 20:12:35 2 2006-02-16 02:30:53
  38709. 8831 2005-07-29 22:37:41 3520 13 2005-08-08 04:28:41 1 2006-02-16 02:30:53
  38710. 8832 2005-07-29 22:37:49 380 125 2005-08-04 23:32:49 1 2006-02-16 02:30:53
  38711. 8833 2005-07-29 22:39:36 1741 101 2005-08-05 21:19:36 1 2006-02-16 02:30:53
  38712. 8834 2005-07-29 22:41:48 4477 243 2005-08-05 03:21:48 2 2006-02-16 02:30:53
  38713. 8835 2005-07-29 22:44:35 2653 237 2005-08-05 23:28:35 1 2006-02-16 02:30:53
  38714. 8836 2005-07-29 22:46:08 3265 14 2005-08-02 19:53:08 2 2006-02-16 02:30:53
  38715. 8837 2005-07-29 22:49:00 42 372 2005-08-07 21:56:00 2 2006-02-16 02:30:53
  38716. 8838 2005-07-29 22:52:23 133 550 2005-08-03 22:49:23 1 2006-02-16 02:30:53
  38717. 8839 2005-07-29 22:52:34 3440 580 2005-08-05 03:24:34 2 2006-02-16 02:30:53
  38718. 8840 2005-07-29 22:55:38 1484 295 2005-08-06 02:11:38 1 2006-02-16 02:30:53
  38719. 8841 2005-07-29 22:56:07 3935 363 2005-08-01 21:21:07 2 2006-02-16 02:30:53
  38720. 8842 2005-07-29 23:03:40 4203 292 2005-08-06 23:23:40 2 2006-02-16 02:30:53
  38721. 8843 2005-07-29 23:04:25 406 294 2005-08-05 22:12:25 1 2006-02-16 02:30:53
  38722. 8844 2005-07-29 23:05:08 327 244 2005-08-06 00:24:08 2 2006-02-16 02:30:53
  38723. 8845 2005-07-29 23:06:13 3036 543 2005-08-02 20:16:13 1 2006-02-16 02:30:53
  38724. 8846 2005-07-29 23:10:28 2912 108 2005-08-03 22:07:28 2 2006-02-16 02:30:53
  38725. 8847 2005-07-29 23:13:41 4133 480 2005-07-31 23:55:41 1 2006-02-16 02:30:53
  38726. 8848 2005-07-29 23:20:58 2972 545 2005-08-03 17:28:58 2 2006-02-16 02:30:53
  38727. 8849 2005-07-29 23:21:01 4300 79 2005-08-03 20:01:01 1 2006-02-16 02:30:53
  38728. 8850 2005-07-29 23:24:20 355 86 2005-07-31 00:43:20 2 2006-02-16 02:30:53
  38729. 8851 2005-07-29 23:26:19 212 445 2005-08-05 03:59:19 2 2006-02-16 02:30:53
  38730. 8852 2005-07-29 23:30:03 1138 42 2005-08-05 05:22:03 2 2006-02-16 02:30:53
  38731. 8853 2005-07-29 23:34:21 2323 58 2005-07-31 21:20:21 2 2006-02-16 02:30:53
  38732. 8854 2005-07-29 23:40:07 1365 527 2005-08-01 00:35:07 2 2006-02-16 02:30:53
  38733. 8855 2005-07-29 23:40:10 4388 335 2005-08-02 18:07:10 2 2006-02-16 02:30:53
  38734. 8856 2005-07-29 23:42:00 2942 365 2005-08-07 03:00:00 1 2006-02-16 02:30:53
  38735. 8857 2005-07-29 23:44:22 1348 477 2005-07-31 21:32:22 2 2006-02-16 02:30:53
  38736. 8858 2005-07-29 23:44:35 2378 558 2005-08-01 05:25:35 2 2006-02-16 02:30:53
  38737. 8859 2005-07-29 23:44:43 603 216 2005-08-07 18:14:43 2 2006-02-16 02:30:53
  38738. 8860 2005-07-29 23:45:57 2841 531 2005-08-06 02:14:57 2 2006-02-16 02:30:53
  38739. 8861 2005-07-29 23:47:29 759 560 2005-08-07 01:27:29 1 2006-02-16 02:30:53
  38740. 8862 2005-07-29 23:49:23 916 21 2005-08-04 20:11:23 1 2006-02-16 02:30:53
  38741. 8863 2005-07-29 23:52:01 75 47 2005-08-04 20:28:01 1 2006-02-16 02:30:53
  38742. 8864 2005-07-29 23:52:12 2321 167 2005-07-30 22:12:12 1 2006-02-16 02:30:53
  38743. 8865 2005-07-29 23:54:54 1835 305 2005-07-31 05:10:54 2 2006-02-16 02:30:53
  38744. 8866 2005-07-29 23:58:19 1530 44 2005-08-01 05:19:19 2 2006-02-16 02:30:53
  38745. 8867 2005-07-30 00:02:18 1388 497 2005-08-04 00:44:18 2 2006-02-16 02:30:53
  38746. 8868 2005-07-30 00:02:26 1229 512 2005-08-01 22:28:26 2 2006-02-16 02:30:53
  38747. 8869 2005-07-30 00:06:32 4353 308 2005-07-31 20:49:32 2 2006-02-16 02:30:53
  38748. 8870 2005-07-30 00:08:08 4104 90 2005-08-08 00:15:08 2 2006-02-16 02:30:53
  38749. 8871 2005-07-30 00:12:41 4535 382 2005-08-08 03:53:41 1 2006-02-16 02:30:53
  38750. 8872 2005-07-30 00:13:54 2669 186 2005-08-01 18:34:54 1 2006-02-16 02:30:53
  38751. 8873 2005-07-30 00:14:32 3498 91 2005-08-04 20:42:32 2 2006-02-16 02:30:53
  38752. 8874 2005-07-30 00:14:45 459 564 2005-08-02 22:34:45 2 2006-02-16 02:30:53
  38753. 8875 2005-07-30 00:15:09 1294 121 2005-08-04 02:54:09 2 2006-02-16 02:30:53
  38754. 8876 2005-07-30 00:15:09 2394 579 2005-08-02 23:56:09 1 2006-02-16 02:30:53
  38755. 8877 2005-07-30 00:15:22 1140 417 2005-07-31 00:53:22 1 2006-02-16 02:30:53
  38756. 8878 2005-07-30 00:15:57 440 25 2005-08-01 00:22:57 2 2006-02-16 02:30:53
  38757. 8879 2005-07-30 00:16:02 2956 584 2005-08-06 20:10:02 2 2006-02-16 02:30:53
  38758. 8880 2005-07-30 00:16:55 2920 51 2005-08-01 01:05:55 1 2006-02-16 02:30:53
  38759. 8881 2005-07-30 00:22:31 2012 118 2005-08-04 19:10:31 1 2006-02-16 02:30:53
  38760. 8882 2005-07-30 00:24:05 441 410 2005-08-03 19:48:05 2 2006-02-16 02:30:53
  38761. 8883 2005-07-30 00:24:48 1421 168 2005-08-04 00:24:48 2 2006-02-16 02:30:53
  38762. 8884 2005-07-30 00:26:22 3050 80 2005-08-05 03:24:22 1 2006-02-16 02:30:53
  38763. 8885 2005-07-30 00:36:26 2984 135 2005-08-06 03:05:26 1 2006-02-16 02:30:53
  38764. 8886 2005-07-30 00:36:31 1469 418 2005-08-08 06:18:31 1 2006-02-16 02:30:53
  38765. 8887 2005-07-30 00:36:54 4119 389 2005-08-04 19:07:54 1 2006-02-16 02:30:53
  38766. 8888 2005-07-30 00:39:36 2824 284 2005-08-01 02:28:36 2 2006-02-16 02:30:53
  38767. 8889 2005-07-30 00:39:43 3457 558 2005-08-02 23:22:43 1 2006-02-16 02:30:53
  38768. 8890 2005-07-30 00:42:06 3656 470 2005-08-05 21:04:06 1 2006-02-16 02:30:53
  38769. 8891 2005-07-30 00:46:55 4093 435 2005-08-06 23:32:55 2 2006-02-16 02:30:53
  38770. 8892 2005-07-30 00:47:03 1584 184 2005-08-06 03:23:03 2 2006-02-16 02:30:53
  38771. 8893 2005-07-30 00:48:19 1048 147 2005-08-01 03:25:19 1 2006-02-16 02:30:53
  38772. 8894 2005-07-30 00:48:31 2055 552 2005-07-31 05:49:31 1 2006-02-16 02:30:53
  38773. 8895 2005-07-30 00:49:17 3217 494 2005-07-31 01:56:17 1 2006-02-16 02:30:53
  38774. 8896 2005-07-30 00:51:21 3560 205 2005-07-31 22:33:21 1 2006-02-16 02:30:53
  38775. 8897 2005-07-30 01:00:17 1964 459 2005-08-01 03:41:17 1 2006-02-16 02:30:53
  38776. 8898 2005-07-30 01:02:20 3961 452 2005-08-05 22:02:20 2 2006-02-16 02:30:53
  38777. 8899 2005-07-30 01:05:30 4148 252 2005-08-01 23:32:30 1 2006-02-16 02:30:53
  38778. 8900 2005-07-30 01:07:03 3057 375 2005-08-06 04:07:03 1 2006-02-16 02:30:53
  38779. 8901 2005-07-30 01:07:12 4392 28 2005-08-02 06:34:12 1 2006-02-16 02:30:53
  38780. 8902 2005-07-30 01:08:06 2983 408 2005-08-05 00:00:06 2 2006-02-16 02:30:53
  38781. 8903 2005-07-30 01:08:06 4546 406 2005-07-30 21:47:06 2 2006-02-16 02:30:53
  38782. 8904 2005-07-30 01:08:33 3622 575 2005-08-04 02:33:33 1 2006-02-16 02:30:53
  38783. 8905 2005-07-30 01:11:11 2154 240 2005-08-04 22:39:11 1 2006-02-16 02:30:53
  38784. 8906 2005-07-30 01:21:39 2667 560 2005-08-07 02:14:39 2 2006-02-16 02:30:53
  38785. 8907 2005-07-30 01:25:03 3239 576 2005-08-03 05:41:03 1 2006-02-16 02:30:53
  38786. 8908 2005-07-30 01:26:05 4498 391 2005-07-31 20:39:05 1 2006-02-16 02:30:53
  38787. 8909 2005-07-30 01:28:03 2606 556 2005-08-06 04:40:03 2 2006-02-16 02:30:53
  38788. 8910 2005-07-30 01:29:48 1039 569 2005-07-31 21:33:48 2 2006-02-16 02:30:53
  38789. 8911 2005-07-30 01:30:57 2159 445 2005-08-02 20:01:57 1 2006-02-16 02:30:53
  38790. 8912 2005-07-30 01:31:25 1686 280 2005-08-02 07:14:25 2 2006-02-16 02:30:53
  38791. 8913 2005-07-30 01:35:01 429 391 2005-08-06 06:13:01 1 2006-02-16 02:30:53
  38792. 8914 2005-07-30 01:42:03 1347 32 2005-08-04 03:53:03 1 2006-02-16 02:30:53
  38793. 8915 2005-07-30 01:42:09 3030 42 2005-08-04 23:29:09 2 2006-02-16 02:30:53
  38794. 8916 2005-07-30 01:42:21 3852 377 2005-08-03 05:28:21 1 2006-02-16 02:30:53
  38795. 8917 2005-07-30 01:47:02 4460 309 2005-08-05 21:10:02 2 2006-02-16 02:30:53
  38796. 8918 2005-07-30 01:56:22 2544 424 2005-08-04 01:58:22 2 2006-02-16 02:30:53
  38797. 8919 2005-07-30 01:57:03 4006 337 2005-08-08 05:14:03 1 2006-02-16 02:30:53
  38798. 8920 2005-07-30 01:59:24 4079 78 2005-08-02 22:37:24 2 2006-02-16 02:30:53
  38799. 8921 2005-07-30 02:04:02 1016 354 2005-07-31 06:18:02 1 2006-02-16 02:30:53
  38800. 8922 2005-07-30 02:08:25 1696 446 2005-08-08 07:19:25 2 2006-02-16 02:30:53
  38801. 8923 2005-07-30 02:08:49 2425 446 2005-08-03 23:45:49 2 2006-02-16 02:30:53
  38802. 8924 2005-07-30 02:08:58 2291 38 2005-08-05 02:13:58 2 2006-02-16 02:30:53
  38803. 8925 2005-07-30 02:09:14 3753 500 2005-07-30 21:39:14 1 2006-02-16 02:30:53
  38804. 8926 2005-07-30 02:10:31 3677 510 2005-08-03 23:56:31 1 2006-02-16 02:30:53
  38805. 8927 2005-07-30 02:13:31 272 15 2005-08-01 01:34:31 1 2006-02-16 02:30:53
  38806. 8928 2005-07-30 02:18:19 706 366 2005-08-05 00:49:19 2 2006-02-16 02:30:53
  38807. 8929 2005-07-30 02:28:22 3501 472 2005-08-06 06:13:22 1 2006-02-16 02:30:53
  38808. 8930 2005-07-30 02:28:38 1107 202 2005-08-02 01:43:38 2 2006-02-16 02:30:53
  38809. 8931 2005-07-30 02:30:07 16 268 2005-08-02 08:24:07 2 2006-02-16 02:30:53
  38810. 8932 2005-07-30 02:31:26 4537 295 2005-08-04 02:17:26 2 2006-02-16 02:30:53
  38811. 8933 2005-07-30 02:36:06 1664 260 2005-08-02 23:37:06 2 2006-02-16 02:30:53
  38812. 8934 2005-07-30 02:37:05 3223 494 2005-08-01 20:42:05 1 2006-02-16 02:30:53
  38813. 8935 2005-07-30 02:38:45 285 76 2005-08-02 07:11:45 2 2006-02-16 02:30:53
  38814. 8936 2005-07-30 02:47:13 1408 227 2005-08-01 02:25:13 2 2006-02-16 02:30:53
  38815. 8937 2005-07-30 02:53:21 2406 544 2005-08-08 03:33:21 2 2006-02-16 02:30:53
  38816. 8938 2005-07-30 02:56:08 4031 92 2005-07-31 23:08:08 2 2006-02-16 02:30:53
  38817. 8939 2005-07-30 02:56:53 4175 598 2005-08-01 21:19:53 1 2006-02-16 02:30:53
  38818. 8940 2005-07-30 02:57:26 1566 212 2005-08-05 22:05:26 1 2006-02-16 02:30:53
  38819. 8941 2005-07-30 02:59:21 4147 329 2005-08-02 05:18:21 2 2006-02-16 02:30:53
  38820. 8942 2005-07-30 03:01:07 4375 77 2005-08-06 22:50:07 2 2006-02-16 02:30:53
  38821. 8943 2005-07-30 03:06:48 3698 531 2005-08-02 00:59:48 2 2006-02-16 02:30:53
  38822. 8944 2005-07-30 03:11:44 3513 172 2005-08-06 23:15:44 2 2006-02-16 02:30:53
  38823. 8945 2005-07-30 03:11:48 1441 447 2005-08-07 07:53:48 2 2006-02-16 02:30:53
  38824. 8946 2005-07-30 03:14:53 3510 257 2005-08-04 00:50:53 1 2006-02-16 02:30:53
  38825. 8947 2005-07-30 03:15:37 341 24 2005-08-04 07:10:37 2 2006-02-16 02:30:53
  38826. 8948 2005-07-30 03:16:18 948 597 2005-08-04 03:16:18 1 2006-02-16 02:30:53
  38827. 8949 2005-07-30 03:17:02 2876 231 2005-08-08 07:38:02 1 2006-02-16 02:30:53
  38828. 8950 2005-07-30 03:17:13 3015 11 2005-08-07 00:20:13 1 2006-02-16 02:30:53
  38829. 8951 2005-07-30 03:18:24 127 336 2005-08-08 08:50:24 2 2006-02-16 02:30:53
  38830. 8952 2005-07-30 03:20:38 4397 36 2005-08-02 02:54:38 1 2006-02-16 02:30:53
  38831. 8953 2005-07-30 03:21:05 535 278 2005-08-02 05:24:05 2 2006-02-16 02:30:53
  38832. 8954 2005-07-30 03:25:51 991 137 2005-08-06 05:10:51 2 2006-02-16 02:30:53
  38833. 8955 2005-07-30 03:28:27 4532 405 2005-08-04 04:56:27 2 2006-02-16 02:30:53
  38834. 8956 2005-07-30 03:32:29 2129 71 2005-08-01 03:08:29 2 2006-02-16 02:30:53
  38835. 8957 2005-07-30 03:34:10 811 158 2005-08-06 07:05:10 1 2006-02-16 02:30:53
  38836. 8958 2005-07-30 03:34:26 1556 536 2005-08-06 08:14:26 1 2006-02-16 02:30:53
  38837. 8959 2005-07-30 03:35:49 3508 550 2005-08-06 02:02:49 2 2006-02-16 02:30:53
  38838. 8960 2005-07-30 03:36:31 391 525 2005-08-01 23:46:31 2 2006-02-16 02:30:53
  38839. 8961 2005-07-30 03:43:35 3679 211 2005-08-06 07:42:35 1 2006-02-16 02:30:53
  38840. 8962 2005-07-30 03:43:45 4439 406 2005-08-07 00:33:45 1 2006-02-16 02:30:53
  38841. 8963 2005-07-30 03:46:26 100 544 2005-08-08 06:12:26 1 2006-02-16 02:30:53
  38842. 8964 2005-07-30 03:49:35 280 424 2005-08-06 23:28:35 2 2006-02-16 02:30:53
  38843. 8965 2005-07-30 03:52:37 2419 599 2005-08-05 01:28:37 2 2006-02-16 02:30:53
  38844. 8966 2005-07-30 03:54:12 1903 522 2005-07-31 04:51:12 1 2006-02-16 02:30:53
  38845. 8967 2005-07-30 03:56:55 1536 480 2005-08-06 05:25:55 2 2006-02-16 02:30:53
  38846. 8968 2005-07-30 03:57:32 2280 339 2005-07-31 00:09:32 1 2006-02-16 02:30:53
  38847. 8969 2005-07-30 04:00:19 2043 121 2005-08-06 04:39:19 1 2006-02-16 02:30:53
  38848. 8970 2005-07-30 04:02:05 2940 313 2005-08-07 03:40:05 2 2006-02-16 02:30:53
  38849. 8971 2005-07-30 04:03:58 3572 35 2005-08-08 04:16:58 2 2006-02-16 02:30:53
  38850. 8972 2005-07-30 04:06:25 1974 89 2005-08-04 22:49:25 1 2006-02-16 02:30:53
  38851. 8973 2005-07-30 04:09:13 886 282 2005-08-07 22:30:13 2 2006-02-16 02:30:53
  38852. 8974 2005-07-30 04:09:16 3376 425 2005-08-04 06:55:16 1 2006-02-16 02:30:53
  38853. 8975 2005-07-30 04:10:18 3288 356 2005-08-07 01:06:18 2 2006-02-16 02:30:53
  38854. 8976 2005-07-30 04:12:32 2135 507 2005-08-04 23:08:32 1 2006-02-16 02:30:53
  38855. 8977 2005-07-30 04:14:07 4099 334 2005-08-05 23:45:07 2 2006-02-16 02:30:53
  38856. 8978 2005-07-30 04:14:28 711 5 2005-08-06 09:08:28 1 2006-02-16 02:30:53
  38857. 8979 2005-07-30 04:20:25 1394 529 2005-08-08 03:39:25 2 2006-02-16 02:30:53
  38858. 8980 2005-07-30 04:22:15 3061 105 2005-08-04 08:16:15 1 2006-02-16 02:30:53
  38859. 8981 2005-07-30 04:25:30 4413 310 2005-08-06 02:37:30 1 2006-02-16 02:30:53
  38860. 8982 2005-07-30 04:31:02 1128 251 2005-07-31 04:22:02 1 2006-02-16 02:30:53
  38861. 8983 2005-07-30 04:31:08 1861 144 2005-07-31 09:28:08 1 2006-02-16 02:30:53
  38862. 8984 2005-07-30 04:31:50 2126 485 2005-08-04 03:24:50 1 2006-02-16 02:30:53
  38863. 8985 2005-07-30 04:34:51 3179 12 2005-08-06 00:45:51 2 2006-02-16 02:30:53
  38864. 8986 2005-07-30 04:37:20 3992 551 2005-07-31 23:54:20 1 2006-02-16 02:30:53
  38865. 8987 2005-07-30 04:37:36 1434 135 2005-08-08 10:14:36 2 2006-02-16 02:30:53
  38866. 8988 2005-07-30 04:38:49 777 487 2005-08-07 07:00:49 2 2006-02-16 02:30:53
  38867. 8989 2005-07-30 04:39:19 954 575 2005-08-06 02:11:19 1 2006-02-16 02:30:53
  38868. 8990 2005-07-30 04:41:42 1869 292 2005-08-07 22:50:42 2 2006-02-16 02:30:53
  38869. 8991 2005-07-30 04:42:54 4540 474 2005-08-01 23:51:54 1 2006-02-16 02:30:53
  38870. 8992 2005-07-30 04:44:18 4478 54 2005-08-01 00:29:18 1 2006-02-16 02:30:53
  38871. 8993 2005-07-30 04:51:25 1891 382 2005-08-01 01:04:25 1 2006-02-16 02:30:53
  38872. 8994 2005-07-30 04:51:32 1527 287 2005-08-07 09:41:32 1 2006-02-16 02:30:53
  38873. 8995 2005-07-30 04:53:11 3575 331 2005-08-07 00:24:11 1 2006-02-16 02:30:53
  38874. 8996 2005-07-30 04:53:23 1970 579 2005-07-31 06:01:23 1 2006-02-16 02:30:53
  38875. 8997 2005-07-30 04:53:56 850 31 2005-08-03 07:10:56 1 2006-02-16 02:30:53
  38876. 8998 2005-07-30 04:54:14 1573 120 2005-08-08 08:18:14 2 2006-02-16 02:30:53
  38877. 8999 2005-07-30 04:55:46 3458 424 2005-08-01 00:16:46 2 2006-02-16 02:30:53
  38878. 9000 2005-07-30 04:58:55 3763 290 2005-08-08 04:01:55 2 2006-02-16 02:30:53
  38879. 9001 2005-07-30 04:59:41 3682 440 2005-07-31 08:56:41 2 2006-02-16 02:30:53
  38880. 9002 2005-07-30 05:02:21 1936 137 2005-07-31 04:58:21 1 2006-02-16 02:30:53
  38881. 9003 2005-07-30 05:02:52 1605 507 2005-07-31 10:33:52 1 2006-02-16 02:30:53
  38882. 9004 2005-07-30 05:04:27 3775 178 2005-07-31 00:49:27 1 2006-02-16 02:30:53
  38883. 9005 2005-07-30 05:04:58 157 204 2005-08-03 07:41:58 2 2006-02-16 02:30:53
  38884. 9006 2005-07-30 05:06:32 3315 49 2005-07-31 08:24:32 1 2006-02-16 02:30:53
  38885. 9007 2005-07-30 05:09:32 2813 63 2005-08-02 06:12:32 2 2006-02-16 02:30:53
  38886. 9008 2005-07-30 05:10:26 3592 371 2005-07-31 08:13:26 1 2006-02-16 02:30:53
  38887. 9009 2005-07-30 05:12:01 4136 166 2005-08-07 10:58:01 1 2006-02-16 02:30:53
  38888. 9010 2005-07-30 05:12:04 1698 152 2005-08-06 02:54:04 2 2006-02-16 02:30:53
  38889. 9011 2005-07-30 05:16:29 2799 236 2005-08-05 06:57:29 1 2006-02-16 02:30:53
  38890. 9012 2005-07-30 05:18:57 3604 494 2005-08-06 06:21:57 1 2006-02-16 02:30:53
  38891. 9013 2005-07-30 05:19:20 2367 347 2005-08-04 01:35:20 1 2006-02-16 02:30:53
  38892. 9014 2005-07-30 05:19:27 311 297 2005-08-01 01:10:27 2 2006-02-16 02:30:53
  38893. 9015 2005-07-30 05:21:32 4128 203 2005-08-08 07:03:32 2 2006-02-16 02:30:53
  38894. 9016 2005-07-30 05:26:13 4309 312 2005-08-04 00:25:13 2 2006-02-16 02:30:53
  38895. 9017 2005-07-30 05:26:20 3325 319 2005-08-04 10:00:20 2 2006-02-16 02:30:53
  38896. 9018 2005-07-30 05:28:40 1982 218 2005-08-07 01:34:40 1 2006-02-16 02:30:53
  38897. 9019 2005-07-30 05:28:53 946 235 2005-08-03 02:16:53 2 2006-02-16 02:30:53
  38898. 9020 2005-07-30 05:31:27 1700 142 2005-08-08 06:44:27 2 2006-02-16 02:30:53
  38899. 9021 2005-07-30 05:34:24 674 498 2005-08-03 04:13:24 1 2006-02-16 02:30:53
  38900. 9022 2005-07-30 05:34:45 4473 159 2005-08-03 23:57:45 2 2006-02-16 02:30:53
  38901. 9023 2005-07-30 05:36:40 2911 148 2005-08-07 06:20:40 1 2006-02-16 02:30:53
  38902. 9024 2005-07-30 05:44:42 164 329 2005-08-05 03:15:42 2 2006-02-16 02:30:53
  38903. 9025 2005-07-30 05:50:08 2244 473 2005-07-31 09:58:08 1 2006-02-16 02:30:53
  38904. 9026 2005-07-30 05:55:31 1524 423 2005-08-01 03:19:31 1 2006-02-16 02:30:53
  38905. 9027 2005-07-30 05:58:27 449 72 2005-08-03 03:02:27 1 2006-02-16 02:30:53
  38906. 9028 2005-07-30 06:00:35 2687 119 2005-08-02 01:35:35 1 2006-02-16 02:30:53
  38907. 9029 2005-07-30 06:03:11 2220 52 2005-08-04 01:42:11 1 2006-02-16 02:30:53
  38908. 9030 2005-07-30 06:05:38 2237 367 2005-08-03 00:19:38 1 2006-02-16 02:30:53
  38909. 9031 2005-07-30 06:06:10 2377 2 2005-08-04 10:45:10 2 2006-02-16 02:30:53
  38910. 9032 2005-07-30 06:06:54 4448 369 2005-08-01 05:27:54 1 2006-02-16 02:30:53
  38911. 9033 2005-07-30 06:07:42 3416 35 2005-08-05 01:18:42 1 2006-02-16 02:30:53
  38912. 9034 2005-07-30 06:10:58 3847 144 2005-08-08 05:00:58 2 2006-02-16 02:30:53
  38913. 9035 2005-07-30 06:16:07 3785 243 2005-08-06 09:22:07 1 2006-02-16 02:30:53
  38914. 9036 2005-07-30 06:18:38 790 18 2005-07-31 01:22:38 1 2006-02-16 02:30:53
  38915. 9037 2005-07-30 06:23:14 3833 356 2005-08-08 06:25:14 1 2006-02-16 02:30:53
  38916. 9038 2005-07-30 06:23:35 217 514 2005-08-06 11:10:35 1 2006-02-16 02:30:53
  38917. 9039 2005-07-30 06:24:28 4493 485 2005-08-08 00:28:28 1 2006-02-16 02:30:53
  38918. 9040 2005-07-30 06:31:45 392 33 2005-08-03 12:20:45 1 2006-02-16 02:30:53
  38919. 9041 2005-07-30 06:32:36 1103 454 2005-08-01 10:28:36 2 2006-02-16 02:30:53
  38920. 9042 2005-07-30 06:33:55 2770 398 2005-08-04 09:31:55 2 2006-02-16 02:30:53
  38921. 9043 2005-07-30 06:34:07 4127 9 2005-08-02 01:16:07 1 2006-02-16 02:30:53
  38922. 9044 2005-07-30 06:35:21 3796 319 2005-07-31 10:27:21 1 2006-02-16 02:30:53
  38923. 9045 2005-07-30 06:36:57 4521 46 2005-08-08 01:51:57 1 2006-02-16 02:30:53
  38924. 9046 2005-07-30 06:46:55 1736 215 2005-08-01 02:21:55 2 2006-02-16 02:30:53
  38925. 9047 2005-07-30 06:56:33 256 522 2005-08-08 06:40:33 2 2006-02-16 02:30:53
  38926. 9048 2005-07-30 06:57:07 3929 100 2005-08-05 00:57:07 1 2006-02-16 02:30:53
  38927. 9049 2005-07-30 06:57:28 2620 417 2005-08-04 09:02:28 1 2006-02-16 02:30:53
  38928. 9050 2005-07-30 06:59:55 106 40 2005-08-06 06:37:55 1 2006-02-16 02:30:53
  38929. 9051 2005-07-30 07:05:54 1847 337 2005-08-07 09:12:54 2 2006-02-16 02:30:53
  38930. 9052 2005-07-30 07:06:08 3351 408 2005-08-03 10:30:08 1 2006-02-16 02:30:53
  38931. 9053 2005-07-30 07:07:39 2535 485 2005-08-01 09:22:39 2 2006-02-16 02:30:53
  38932. 9054 2005-07-30 07:11:44 2860 209 2005-08-08 01:55:44 2 2006-02-16 02:30:53
  38933. 9055 2005-07-30 07:13:07 634 512 2005-08-01 12:18:07 1 2006-02-16 02:30:53
  38934. 9056 2005-07-30 07:13:20 4363 380 2005-08-03 07:36:20 1 2006-02-16 02:30:53
  38935. 9057 2005-07-30 07:14:18 3141 202 2005-08-01 05:10:18 2 2006-02-16 02:30:53
  38936. 9058 2005-07-30 07:15:45 4214 403 2005-07-31 02:57:45 2 2006-02-16 02:30:53
  38937. 9059 2005-07-30 07:18:44 480 267 2005-08-08 08:39:44 1 2006-02-16 02:30:53
  38938. 9060 2005-07-30 07:20:36 4360 87 2005-08-03 10:51:36 1 2006-02-16 02:30:53
  38939. 9061 2005-07-30 07:21:52 1933 255 2005-08-08 10:52:52 1 2006-02-16 02:30:53
  38940. 9062 2005-07-30 07:23:17 2780 358 2005-08-02 12:07:17 1 2006-02-16 02:30:53
  38941. 9063 2005-07-30 07:24:34 2851 564 2005-08-05 01:28:34 2 2006-02-16 02:30:53
  38942. 9064 2005-07-30 07:24:55 1417 194 2005-08-07 08:44:55 2 2006-02-16 02:30:53
  38943. 9065 2005-07-30 07:25:09 349 238 2005-07-31 05:18:09 2 2006-02-16 02:30:53
  38944. 9066 2005-07-30 07:28:54 196 171 2005-08-02 05:23:54 1 2006-02-16 02:30:53
  38945. 9067 2005-07-30 07:31:01 3628 382 2005-08-04 11:44:01 2 2006-02-16 02:30:53
  38946. 9068 2005-07-30 07:31:45 2264 78 2005-08-08 06:40:45 1 2006-02-16 02:30:53
  38947. 9069 2005-07-30 07:39:59 1852 258 2005-08-02 04:10:59 1 2006-02-16 02:30:53
  38948. 9070 2005-07-30 07:40:39 3690 276 2005-08-01 04:19:39 2 2006-02-16 02:30:53
  38949. 9071 2005-07-30 07:40:58 3151 523 2005-08-01 06:59:58 2 2006-02-16 02:30:53
  38950. 9072 2005-07-30 07:45:49 4536 106 2005-08-04 10:00:49 1 2006-02-16 02:30:53
  38951. 9073 2005-07-30 07:49:56 2185 141 2005-08-05 06:25:56 2 2006-02-16 02:30:53
  38952. 9074 2005-07-30 07:50:10 3244 84 2005-08-01 11:21:10 2 2006-02-16 02:30:53
  38953. 9075 2005-07-30 07:55:14 1931 20 2005-08-02 13:49:14 1 2006-02-16 02:30:53
  38954. 9076 2005-07-30 07:58:12 496 447 2005-08-08 06:04:12 1 2006-02-16 02:30:53
  38955. 9077 2005-07-30 08:00:19 4324 471 2005-08-08 11:21:19 1 2006-02-16 02:30:53
  38956. 9078 2005-07-30 08:01:00 955 300 2005-07-31 10:39:00 1 2006-02-16 02:30:53
  38957. 9079 2005-07-30 08:02:00 2143 193 2005-07-31 04:02:00 2 2006-02-16 02:30:53
  38958. 9080 2005-07-30 08:02:39 94 276 2005-08-06 12:02:39 1 2006-02-16 02:30:53
  38959. 9081 2005-07-30 08:09:58 3040 572 2005-08-03 13:27:58 1 2006-02-16 02:30:53
  38960. 9082 2005-07-30 08:11:22 4042 438 2005-08-06 09:26:22 2 2006-02-16 02:30:53
  38961. 9083 2005-07-30 08:14:27 456 488 2005-08-07 14:02:27 1 2006-02-16 02:30:53
  38962. 9084 2005-07-30 08:14:29 3950 171 2005-08-03 11:12:29 2 2006-02-16 02:30:53
  38963. 9085 2005-07-30 08:17:24 3400 33 2005-08-03 09:35:24 2 2006-02-16 02:30:53
  38964. 9086 2005-07-30 08:18:46 2779 57 2005-08-06 06:10:46 2 2006-02-16 02:30:53
  38965. 9087 2005-07-30 08:19:47 4048 546 2005-08-02 07:15:47 1 2006-02-16 02:30:53
  38966. 9088 2005-07-30 08:21:02 3407 245 2005-08-01 09:55:02 1 2006-02-16 02:30:53
  38967. 9089 2005-07-30 08:23:39 490 369 2005-07-31 06:00:39 1 2006-02-16 02:30:53
  38968. 9090 2005-07-30 08:24:42 3426 104 2005-08-08 06:17:42 2 2006-02-16 02:30:53
  38969. 9091 2005-07-30 08:30:45 2249 66 2005-08-07 13:28:45 1 2006-02-16 02:30:53
  38970. 9092 2005-07-30 08:30:56 1877 17 2005-08-06 08:09:56 2 2006-02-16 02:30:53
  38971. 9093 2005-07-30 08:33:24 2208 96 2005-08-04 11:07:24 1 2006-02-16 02:30:53
  38972. 9094 2005-07-30 08:35:10 2699 140 2005-08-07 08:18:10 2 2006-02-16 02:30:53
  38973. 9095 2005-07-30 08:38:36 3019 511 2005-07-31 06:14:36 1 2006-02-16 02:30:53
  38974. 9096 2005-07-30 08:39:23 540 216 2005-08-01 03:33:23 1 2006-02-16 02:30:53
  38975. 9097 2005-07-30 08:40:35 570 173 2005-08-04 11:19:35 2 2006-02-16 02:30:53
  38976. 9098 2005-07-30 08:44:21 1267 144 2005-08-08 12:31:21 1 2006-02-16 02:30:53
  38977. 9099 2005-07-30 08:45:48 594 250 2005-08-01 03:18:48 2 2006-02-16 02:30:53
  38978. 9100 2005-07-30 08:46:09 4117 4 2005-08-05 10:34:09 1 2006-02-16 02:30:53
  38979. 9101 2005-07-30 08:47:13 3165 566 2005-08-02 12:52:13 1 2006-02-16 02:30:53
  38980. 9102 2005-07-30 08:48:20 1154 276 2005-08-04 10:19:20 1 2006-02-16 02:30:53
  38981. 9103 2005-07-30 08:49:26 3806 280 2005-07-31 14:15:26 1 2006-02-16 02:30:53
  38982. 9104 2005-07-30 08:49:55 3372 322 2005-08-06 12:23:55 1 2006-02-16 02:30:53
  38983. 9105 2005-07-30 08:50:25 4443 262 2005-08-05 06:08:25 1 2006-02-16 02:30:53
  38984. 9106 2005-07-30 08:52:34 2935 148 2005-08-02 07:38:34 2 2006-02-16 02:30:53
  38985. 9107 2005-07-30 08:52:45 1068 531 2005-08-05 08:39:45 2 2006-02-16 02:30:53
  38986. 9108 2005-07-30 08:56:36 3977 490 2005-08-04 11:07:36 1 2006-02-16 02:30:53
  38987. 9109 2005-07-30 08:58:24 787 266 2005-08-07 06:56:24 1 2006-02-16 02:30:53
  38988. 9110 2005-07-30 09:05:42 1474 317 2005-08-03 05:15:42 1 2006-02-16 02:30:53
  38989. 9111 2005-07-30 09:05:44 166 211 2005-08-04 14:27:44 2 2006-02-16 02:30:53
  38990. 9112 2005-07-30 09:06:31 395 74 2005-08-04 05:12:31 2 2006-02-16 02:30:53
  38991. 9113 2005-07-30 09:09:03 3903 374 2005-07-31 03:13:03 1 2006-02-16 02:30:53
  38992. 9114 2005-07-30 09:13:21 893 18 2005-08-05 06:00:21 2 2006-02-16 02:30:53
  38993. 9115 2005-07-30 09:13:55 3750 322 2005-08-04 04:02:55 2 2006-02-16 02:30:53
  38994. 9116 2005-07-30 09:19:41 2917 446 2005-08-03 08:01:41 2 2006-02-16 02:30:53
  38995. 9117 2005-07-30 09:20:59 3055 371 2005-08-07 08:47:59 1 2006-02-16 02:30:53
  38996. 9118 2005-07-30 09:24:18 4538 172 2005-08-02 14:46:18 2 2006-02-16 02:30:53
  38997. 9119 2005-07-30 09:25:56 275 305 2005-08-03 03:36:56 1 2006-02-16 02:30:53
  38998. 9120 2005-07-30 09:26:08 139 473 2005-08-08 09:52:08 1 2006-02-16 02:30:53
  38999. 9121 2005-07-30 09:36:26 3098 150 2005-08-05 15:17:26 2 2006-02-16 02:30:53
  39000. 9122 2005-07-30 09:36:52 627 365 2005-08-05 13:20:52 1 2006-02-16 02:30:53
  39001. 9123 2005-07-30 09:39:15 3748 293 2005-08-02 08:12:15 2 2006-02-16 02:30:53
  39002. 9124 2005-07-30 09:43:12 4552 105 2005-08-06 06:17:12 1 2006-02-16 02:30:53
  39003. 9125 2005-07-30 09:43:39 333 335 2005-08-07 14:02:39 1 2006-02-16 02:30:53
  39004. 9126 2005-07-30 09:44:15 4495 590 2005-08-02 11:02:15 2 2006-02-16 02:30:53
  39005. 9127 2005-07-30 09:46:36 4114 300 2005-07-31 07:43:36 1 2006-02-16 02:30:53
  39006. 9128 2005-07-30 09:51:14 3647 372 2005-08-07 06:23:14 1 2006-02-16 02:30:53
  39007. 9129 2005-07-30 09:51:21 2658 125 2005-08-07 08:50:21 2 2006-02-16 02:30:53
  39008. 9130 2005-07-30 09:55:10 1715 354 2005-08-04 08:57:10 1 2006-02-16 02:30:53
  39009. 9131 2005-07-30 09:55:57 623 142 2005-08-01 14:21:57 1 2006-02-16 02:30:53
  39010. 9132 2005-07-30 09:56:00 402 159 2005-08-02 09:22:00 1 2006-02-16 02:30:53
  39011. 9133 2005-07-30 09:59:00 408 576 2005-08-07 04:24:00 1 2006-02-16 02:30:53
  39012. 9134 2005-07-30 10:00:21 3797 559 2005-08-01 05:01:21 1 2006-02-16 02:30:53
  39013. 9135 2005-07-30 10:06:53 821 161 2005-08-03 13:57:53 2 2006-02-16 02:30:53
  39014. 9136 2005-07-30 10:07:20 1734 57 2005-07-31 08:20:20 2 2006-02-16 02:30:53
  39015. 9137 2005-07-30 10:09:24 840 459 2005-08-06 04:30:24 2 2006-02-16 02:30:53
  39016. 9138 2005-07-30 10:11:52 2550 17 2005-07-31 07:05:52 2 2006-02-16 02:30:53
  39017. 9139 2005-07-30 10:11:52 2809 133 2005-08-03 12:44:52 1 2006-02-16 02:30:53
  39018. 9140 2005-07-30 10:12:01 4095 25 2005-08-06 09:16:01 2 2006-02-16 02:30:53
  39019. 9141 2005-07-30 10:16:04 3087 484 2005-08-05 08:01:04 1 2006-02-16 02:30:53
  39020. 9142 2005-07-30 10:21:03 4467 486 2005-08-04 15:14:03 1 2006-02-16 02:30:53
  39021. 9143 2005-07-30 10:22:11 2962 511 2005-08-07 06:13:11 2 2006-02-16 02:30:53
  39022. 9144 2005-07-30 10:22:15 718 381 2005-08-05 08:14:15 1 2006-02-16 02:30:53
  39023. 9145 2005-07-30 10:27:55 559 176 2005-08-07 14:41:55 2 2006-02-16 02:30:53
  39024. 9146 2005-07-30 10:32:08 483 302 2005-08-08 14:30:08 1 2006-02-16 02:30:53
  39025. 9147 2005-07-30 10:38:59 4167 394 2005-08-02 11:45:59 2 2006-02-16 02:30:53
  39026. 9148 2005-07-30 10:39:10 1407 333 2005-08-04 07:17:10 2 2006-02-16 02:30:53
  39027. 9149 2005-07-30 10:45:12 2632 21 2005-08-01 09:40:12 1 2006-02-16 02:30:53
  39028. 9150 2005-07-30 10:49:32 2834 213 2005-08-08 15:43:32 1 2006-02-16 02:30:53
  39029. 9151 2005-07-30 10:50:53 3956 102 2005-08-07 08:19:53 1 2006-02-16 02:30:53
  39030. 9152 2005-07-30 10:51:27 3607 595 2005-07-31 06:38:27 2 2006-02-16 02:30:53
  39031. 9153 2005-07-30 10:58:16 3743 589 2005-08-03 06:16:16 2 2006-02-16 02:30:53
  39032. 9154 2005-07-30 10:59:54 576 312 2005-08-05 16:47:54 1 2006-02-16 02:30:53
  39033. 9155 2005-07-30 11:00:00 3787 107 2005-08-02 05:24:00 2 2006-02-16 02:30:53
  39034. 9156 2005-07-30 11:04:55 1747 145 2005-07-31 14:10:55 2 2006-02-16 02:30:53
  39035. 9157 2005-07-30 11:06:23 146 19 2005-08-05 05:29:23 2 2006-02-16 02:30:53
  39036. 9158 2005-07-30 11:12:03 4017 16 2005-08-02 05:55:03 2 2006-02-16 02:30:53
  39037. 9159 2005-07-30 11:16:37 1234 217 2005-08-03 10:32:37 1 2006-02-16 02:30:53
  39038. 9160 2005-07-30 11:17:33 183 34 2005-08-06 15:16:33 2 2006-02-16 02:30:53
  39039. 9161 2005-07-30 11:19:18 969 433 2005-08-02 05:32:18 1 2006-02-16 02:30:53
  39040. 9162 2005-07-30 11:21:56 4198 184 2005-08-02 15:32:56 1 2006-02-16 02:30:53
  39041. 9163 2005-07-30 11:23:22 4562 345 2005-07-31 07:34:22 2 2006-02-16 02:30:53
  39042. 9164 2005-07-30 11:24:14 4434 342 2005-08-08 16:24:14 1 2006-02-16 02:30:53
  39043. 9165 2005-07-30 11:24:28 4034 291 2005-08-03 09:38:28 1 2006-02-16 02:30:53
  39044. 9166 2005-07-30 11:26:28 308 12 2005-08-04 12:32:28 1 2006-02-16 02:30:53
  39045. 9167 2005-07-30 11:30:37 1785 162 2005-08-08 17:13:37 1 2006-02-16 02:30:53
  39046. 9168 2005-07-30 11:31:17 2035 75 2005-08-08 16:56:17 2 2006-02-16 02:30:53
  39047. 9169 2005-07-30 11:35:00 1567 245 2005-08-06 16:16:00 2 2006-02-16 02:30:53
  39048. 9170 2005-07-30 11:35:24 4279 425 2005-08-05 05:36:24 1 2006-02-16 02:30:53
  39049. 9171 2005-07-30 11:36:24 1832 189 2005-08-07 06:04:24 2 2006-02-16 02:30:53
  39050. 9172 2005-07-30 11:36:38 695 437 2005-08-04 09:39:38 1 2006-02-16 02:30:53
  39051. 9173 2005-07-30 11:40:10 2103 381 2005-08-04 05:40:10 2 2006-02-16 02:30:53
  39052. 9174 2005-07-30 11:42:10 2636 144 2005-07-31 09:52:10 1 2006-02-16 02:30:53
  39053. 9175 2005-07-30 11:47:48 358 133 2005-08-02 08:13:48 1 2006-02-16 02:30:53
  39054. 9176 2005-07-30 11:50:54 2659 260 2005-08-02 14:25:54 2 2006-02-16 02:30:53
  39055. 9177 2005-07-30 11:52:40 1088 400 2005-08-08 09:35:40 1 2006-02-16 02:30:53
  39056. 9178 2005-07-30 11:58:50 2046 448 2005-08-08 15:24:50 2 2006-02-16 02:30:53
  39057. 9179 2005-07-30 12:02:41 62 50 2005-08-05 15:23:41 2 2006-02-16 02:30:53
  39058. 9180 2005-07-30 12:03:15 3479 442 2005-08-01 14:25:15 1 2006-02-16 02:30:53
  39059. 9181 2005-07-30 12:05:58 3953 224 2005-08-02 06:22:58 1 2006-02-16 02:30:53
  39060. 9182 2005-07-30 12:06:58 2533 165 2005-08-08 11:33:58 2 2006-02-16 02:30:53
  39061. 9183 2005-07-30 12:09:56 4320 475 2005-08-06 11:50:56 2 2006-02-16 02:30:53
  39062. 9184 2005-07-30 12:10:19 51 365 2005-08-01 07:35:19 2 2006-02-16 02:30:53
  39063. 9185 2005-07-30 12:10:40 2268 426 2005-08-06 07:01:40 1 2006-02-16 02:30:53
  39064. 9186 2005-07-30 12:13:48 4513 273 2005-07-31 11:59:48 1 2006-02-16 02:30:53
  39065. 9187 2005-07-30 12:14:03 4008 469 2005-08-04 13:10:03 2 2006-02-16 02:30:53
  39066. 9188 2005-07-30 12:19:54 727 195 2005-08-06 09:12:54 2 2006-02-16 02:30:53
  39067. 9189 2005-07-30 12:20:59 4529 485 2005-08-06 16:15:59 1 2006-02-16 02:30:53
  39068. 9190 2005-07-30 12:24:17 4421 177 2005-08-03 07:41:17 2 2006-02-16 02:30:53
  39069. 9191 2005-07-30 12:25:51 500 314 2005-08-05 16:13:51 1 2006-02-16 02:30:53
  39070. 9192 2005-07-30 12:26:26 2372 102 2005-08-04 07:54:26 2 2006-02-16 02:30:53
  39071. 9193 2005-07-30 12:28:42 3470 69 2005-08-02 12:17:42 2 2006-02-16 02:30:53
  39072. 9194 2005-07-30 12:28:45 2467 294 2005-08-06 14:38:45 1 2006-02-16 02:30:53
  39073. 9195 2005-07-30 12:29:43 944 440 2005-08-04 12:35:43 1 2006-02-16 02:30:53
  39074. 9196 2005-07-30 12:30:19 4298 251 2005-07-31 18:01:19 2 2006-02-16 02:30:53
  39075. 9197 2005-07-30 12:31:36 3214 168 2005-08-03 09:05:36 1 2006-02-16 02:30:53
  39076. 9198 2005-07-30 12:37:08 2371 105 2005-08-07 16:37:08 2 2006-02-16 02:30:53
  39077. 9199 2005-07-30 12:38:00 4336 580 2005-08-01 07:09:00 1 2006-02-16 02:30:53
  39078. 9200 2005-07-30 12:39:52 3277 137 2005-08-08 09:43:52 2 2006-02-16 02:30:53
  39079. 9201 2005-07-30 12:42:21 4387 291 2005-08-08 06:50:21 1 2006-02-16 02:30:53
  39080. 9202 2005-07-30 12:43:24 4525 466 2005-08-07 10:39:24 2 2006-02-16 02:30:53
  39081. 9203 2005-07-30 12:43:40 2112 169 2005-08-01 09:31:40 2 2006-02-16 02:30:53
  39082. 9204 2005-07-30 12:43:58 4378 43 2005-08-03 16:26:58 2 2006-02-16 02:30:53
  39083. 9205 2005-07-30 12:46:40 4165 259 2005-08-08 14:58:40 1 2006-02-16 02:30:53
  39084. 9206 2005-07-30 12:46:59 2021 404 2005-08-03 14:58:59 1 2006-02-16 02:30:53
  39085. 9207 2005-07-30 12:49:57 1346 345 2005-07-31 14:32:57 2 2006-02-16 02:30:53
  39086. 9208 2005-07-30 12:54:03 2751 339 2005-08-06 17:22:03 2 2006-02-16 02:30:53
  39087. 9209 2005-07-30 12:55:36 3940 23 2005-08-03 11:31:36 2 2006-02-16 02:30:53
  39088. 9210 2005-07-30 12:56:44 101 105 2005-08-08 09:41:44 2 2006-02-16 02:30:53
  39089. 9211 2005-07-30 12:59:45 595 57 2005-08-07 18:17:45 2 2006-02-16 02:30:53
  39090. 9212 2005-07-30 13:03:13 2111 73 2005-08-06 09:48:13 1 2006-02-16 02:30:53
  39091. 9213 2005-07-30 13:07:11 184 388 2005-08-01 15:30:11 1 2006-02-16 02:30:53
  39092. 9214 2005-07-30 13:10:14 2823 181 2005-08-06 14:22:14 2 2006-02-16 02:30:53
  39093. 9215 2005-07-30 13:11:11 3591 128 2005-08-06 13:06:11 1 2006-02-16 02:30:53
  39094. 9216 2005-07-30 13:11:19 2783 38 2005-07-31 11:27:19 2 2006-02-16 02:30:53
  39095. 9217 2005-07-30 13:13:55 1561 112 2005-08-05 17:27:55 1 2006-02-16 02:30:53
  39096. 9218 2005-07-30 13:14:35 119 172 2005-08-07 18:03:35 1 2006-02-16 02:30:53
  39097. 9219 2005-07-30 13:15:21 771 329 2005-08-01 11:39:21 1 2006-02-16 02:30:53
  39098. 9220 2005-07-30 13:17:27 2463 569 2005-08-07 11:34:27 2 2006-02-16 02:30:53
  39099. 9221 2005-07-30 13:20:06 2496 113 2005-08-06 13:58:06 2 2006-02-16 02:30:53
  39100. 9222 2005-07-30 13:21:08 3648 95 2005-08-08 10:42:08 2 2006-02-16 02:30:53
  39101. 9223 2005-07-30 13:23:20 3231 595 2005-08-04 11:24:20 1 2006-02-16 02:30:53
  39102. 9224 2005-07-30 13:25:37 2260 406 2005-08-01 15:13:37 2 2006-02-16 02:30:53
  39103. 9225 2005-07-30 13:29:47 1992 391 2005-08-02 17:08:47 2 2006-02-16 02:30:53
  39104. 9226 2005-07-30 13:31:20 4315 3 2005-08-06 16:42:20 1 2006-02-16 02:30:53
  39105. 9227 2005-07-30 13:36:13 2353 522 2005-08-07 17:39:13 1 2006-02-16 02:30:53
  39106. 9228 2005-07-30 13:36:57 2325 91 2005-08-05 10:43:57 1 2006-02-16 02:30:53
  39107. 9229 2005-07-30 13:38:17 3780 276 2005-08-08 18:17:17 2 2006-02-16 02:30:53
  39108. 9230 2005-07-30 13:39:42 1199 109 2005-07-31 19:20:42 1 2006-02-16 02:30:53
  39109. 9231 2005-07-30 13:42:15 1587 489 2005-08-02 19:27:15 1 2006-02-16 02:30:53
  39110. 9232 2005-07-30 13:43:00 1991 502 2005-08-02 11:39:00 2 2006-02-16 02:30:53
  39111. 9233 2005-07-30 13:44:15 2320 357 2005-08-07 13:02:15 2 2006-02-16 02:30:53
  39112. 9234 2005-07-30 13:45:54 1660 128 2005-08-02 15:33:54 1 2006-02-16 02:30:53
  39113. 9235 2005-07-30 13:47:17 984 181 2005-08-06 17:15:17 2 2006-02-16 02:30:53
  39114. 9236 2005-07-30 13:47:43 4030 2 2005-08-08 18:52:43 1 2006-02-16 02:30:53
  39115. 9237 2005-07-30 13:48:17 2777 157 2005-07-31 13:57:17 2 2006-02-16 02:30:53
  39116. 9238 2005-07-30 13:49:43 3356 12 2005-08-08 08:25:43 2 2006-02-16 02:30:53
  39117. 9239 2005-07-30 13:50:52 1728 580 2005-08-06 16:28:52 1 2006-02-16 02:30:53
  39118. 9240 2005-07-30 13:57:54 587 92 2005-08-03 12:23:54 2 2006-02-16 02:30:53
  39119. 9241 2005-07-30 13:58:41 4145 187 2005-08-04 09:44:41 2 2006-02-16 02:30:53
  39120. 9242 2005-07-30 14:03:58 755 306 2005-08-02 18:09:58 2 2006-02-16 02:30:53
  39121. 9243 2005-07-30 14:06:27 876 516 2005-08-06 09:26:27 2 2006-02-16 02:30:53
  39122. 9244 2005-07-30 14:06:53 3640 27 2005-08-03 19:46:53 1 2006-02-16 02:30:53
  39123. 9245 2005-07-30 14:07:50 2586 116 2005-08-06 17:59:50 2 2006-02-16 02:30:53
  39124. 9246 2005-07-30 14:12:31 3390 185 2005-08-02 14:25:31 2 2006-02-16 02:30:53
  39125. 9247 2005-07-30 14:13:56 4106 426 2005-08-02 16:34:56 2 2006-02-16 02:30:53
  39126. 9248 2005-07-30 14:14:11 1382 2 2005-08-05 11:19:11 1 2006-02-16 02:30:53
  39127. 9249 2005-07-30 14:15:02 2015 296 2005-08-05 13:02:02 1 2006-02-16 02:30:53
  39128. 9250 2005-07-30 14:18:16 4544 539 2005-08-04 12:31:16 1 2006-02-16 02:30:53
  39129. 9251 2005-07-30 14:19:25 2948 390 2005-08-08 11:22:25 2 2006-02-16 02:30:53
  39130. 9252 2005-07-30 14:19:59 2350 322 2005-08-07 15:17:59 1 2006-02-16 02:30:53
  39131. 9253 2005-07-30 14:20:12 4183 151 2005-07-31 11:31:12 2 2006-02-16 02:30:53
  39132. 9254 2005-07-30 14:26:11 495 33 2005-08-04 16:12:11 1 2006-02-16 02:30:53
  39133. 9255 2005-07-30 14:26:46 1596 23 2005-08-07 18:16:46 1 2006-02-16 02:30:53
  39134. 9256 2005-07-30 14:29:29 4021 19 2005-08-05 16:59:29 1 2006-02-16 02:30:53
  39135. 9257 2005-07-30 14:30:38 2615 466 2005-08-04 17:57:38 1 2006-02-16 02:30:53
  39136. 9258 2005-07-30 14:31:31 2007 275 2005-08-05 16:29:31 2 2006-02-16 02:30:53
  39137. 9259 2005-07-30 14:37:44 97 138 2005-08-06 18:05:44 2 2006-02-16 02:30:53
  39138. 9260 2005-07-30 14:38:22 3969 13 2005-08-07 18:47:22 2 2006-02-16 02:30:53
  39139. 9261 2005-07-30 14:39:35 372 380 2005-08-08 11:26:35 1 2006-02-16 02:30:53
  39140. 9262 2005-07-30 14:45:02 2322 349 2005-08-05 15:18:02 2 2006-02-16 02:30:53
  39141. 9263 2005-07-30 14:48:24 73 410 2005-08-04 19:06:24 2 2006-02-16 02:30:53
  39142. 9264 2005-07-30 14:51:36 4071 157 2005-08-02 10:06:36 1 2006-02-16 02:30:53
  39143. 9265 2005-07-30 14:55:25 3700 560 2005-08-02 11:34:25 1 2006-02-16 02:30:53
  39144. 9266 2005-07-30 14:59:01 1705 364 2005-07-31 17:01:01 2 2006-02-16 02:30:53
  39145. 9267 2005-07-30 14:59:05 645 409 2005-08-04 10:17:05 1 2006-02-16 02:30:53
  39146. 9268 2005-07-30 15:02:30 3593 592 2005-08-05 12:50:30 1 2006-02-16 02:30:53
  39147. 9269 2005-07-30 15:02:33 548 435 2005-08-02 16:32:33 1 2006-02-16 02:30:53
  39148. 9270 2005-07-30 15:03:16 700 232 2005-07-31 16:09:16 2 2006-02-16 02:30:53
  39149. 9271 2005-07-30 15:04:31 2660 100 2005-07-31 20:33:31 1 2006-02-16 02:30:53
  39150. 9272 2005-07-30 15:05:22 1352 553 2005-08-05 10:02:22 2 2006-02-16 02:30:53
  39151. 9273 2005-07-30 15:05:36 1867 497 2005-08-08 09:07:36 1 2006-02-16 02:30:53
  39152. 9274 2005-07-30 15:07:04 4424 47 2005-08-06 11:17:04 2 2006-02-16 02:30:53
  39153. 9275 2005-07-30 15:09:15 1916 439 2005-07-31 10:23:15 2 2006-02-16 02:30:53
  39154. 9276 2005-07-30 15:09:28 1528 237 2005-08-06 19:39:28 1 2006-02-16 02:30:53
  39155. 9277 2005-07-30 15:13:45 3734 82 2005-08-05 10:25:45 2 2006-02-16 02:30:53
  39156. 9278 2005-07-30 15:15:19 3782 581 2005-08-03 20:21:19 1 2006-02-16 02:30:53
  39157. 9279 2005-07-30 15:15:21 1070 567 2005-08-07 18:46:21 1 2006-02-16 02:30:53
  39158. 9280 2005-07-30 15:15:38 4103 286 2005-08-05 19:20:38 2 2006-02-16 02:30:53
  39159. 9281 2005-07-30 15:15:51 3086 398 2005-08-05 12:58:51 1 2006-02-16 02:30:53
  39160. 9282 2005-07-30 15:17:31 736 259 2005-08-07 20:46:31 1 2006-02-16 02:30:53
  39161. 9283 2005-07-30 15:25:19 1858 360 2005-08-01 15:35:19 2 2006-02-16 02:30:53
  39162. 9284 2005-07-30 15:25:19 3976 38 2005-08-01 17:45:19 2 2006-02-16 02:30:53
  39163. 9285 2005-07-30 15:26:08 3686 273 2005-08-06 15:59:08 2 2006-02-16 02:30:53
  39164. 9286 2005-07-30 15:32:28 2477 154 2005-07-31 20:42:28 2 2006-02-16 02:30:53
  39165. 9287 2005-07-30 15:35:39 2048 551 2005-08-02 10:15:39 1 2006-02-16 02:30:53
  39166. 9288 2005-07-30 15:56:39 2640 447 2005-08-04 13:25:39 2 2006-02-16 02:30:53
  39167. 9289 2005-07-30 15:57:04 389 453 2005-08-07 18:46:04 1 2006-02-16 02:30:53
  39168. 9290 2005-07-30 15:59:08 2275 500 2005-08-06 21:49:08 2 2006-02-16 02:30:53
  39169. 9291 2005-07-30 16:03:39 2884 406 2005-08-05 11:11:39 2 2006-02-16 02:30:53
  39170. 9292 2005-07-30 16:08:21 1702 11 2005-08-07 10:38:21 2 2006-02-16 02:30:53
  39171. 9293 2005-07-30 16:12:28 1676 65 2005-08-05 18:34:28 2 2006-02-16 02:30:53
  39172. 9294 2005-07-30 16:14:37 2468 433 2005-08-07 18:49:37 1 2006-02-16 02:30:53
  39173. 9295 2005-07-30 16:18:39 494 102 2005-08-03 12:46:39 1 2006-02-16 02:30:53
  39174. 9296 2005-07-30 16:21:13 4088 2 2005-08-08 11:57:13 1 2006-02-16 02:30:53
  39175. 9297 2005-07-30 16:26:29 3502 191 2005-08-03 13:51:29 1 2006-02-16 02:30:53
  39176. 9298 2005-07-30 16:27:53 2106 208 2005-08-07 12:32:53 2 2006-02-16 02:30:53
  39177. 9299 2005-07-30 16:32:51 1515 555 2005-08-08 15:28:51 2 2006-02-16 02:30:53
  39178. 9300 2005-07-30 16:33:12 1639 571 2005-08-05 15:56:12 1 2006-02-16 02:30:53
  39179. 9301 2005-07-30 16:34:29 1073 174 2005-07-31 18:41:29 2 2006-02-16 02:30:53
  39180. 9302 2005-07-30 16:34:57 2326 55 2005-07-31 11:08:57 2 2006-02-16 02:30:53
  39181. 9303 2005-07-30 16:35:59 4299 186 2005-08-03 18:31:59 1 2006-02-16 02:30:53
  39182. 9304 2005-07-30 16:41:34 2937 296 2005-08-02 13:55:34 2 2006-02-16 02:30:53
  39183. 9305 2005-07-30 16:45:56 1224 82 2005-08-08 21:15:56 2 2006-02-16 02:30:53
  39184. 9306 2005-07-30 16:47:17 3983 336 2005-08-02 22:15:17 1 2006-02-16 02:30:53
  39185. 9307 2005-07-30 16:52:43 3831 538 2005-08-01 11:58:43 1 2006-02-16 02:30:53
  39186. 9308 2005-07-30 16:53:21 2202 267 2005-08-08 15:33:21 2 2006-02-16 02:30:53
  39187. 9309 2005-07-30 16:55:53 3616 30 2005-08-07 11:23:53 1 2006-02-16 02:30:53
  39188. 9310 2005-07-30 16:57:09 2957 529 2005-08-03 18:14:09 1 2006-02-16 02:30:53
  39189. 9311 2005-07-30 16:58:31 1432 178 2005-08-07 15:23:31 1 2006-02-16 02:30:53
  39190. 9312 2005-07-30 16:59:17 2483 76 2005-08-03 17:24:17 2 2006-02-16 02:30:53
  39191. 9313 2005-07-30 16:59:43 4070 41 2005-08-05 14:06:43 2 2006-02-16 02:30:53
  39192. 9314 2005-07-30 17:05:19 2358 390 2005-07-31 12:19:19 1 2006-02-16 02:30:53
  39193. 9315 2005-07-30 17:05:29 444 96 2005-08-01 12:47:29 1 2006-02-16 02:30:53
  39194. 9316 2005-07-30 17:11:58 4409 366 2005-08-05 14:36:58 1 2006-02-16 02:30:53
  39195. 9317 2005-07-30 17:13:37 4138 217 2005-08-08 11:33:37 1 2006-02-16 02:30:53
  39196. 9318 2005-07-30 17:14:30 2426 314 2005-08-06 16:53:30 1 2006-02-16 02:30:53
  39197. 9319 2005-07-30 17:15:27 4066 136 2005-08-03 14:03:27 1 2006-02-16 02:30:53
  39198. 9320 2005-07-30 17:16:39 909 221 2005-08-06 18:43:39 2 2006-02-16 02:30:53
  39199. 9321 2005-07-30 17:19:44 3558 112 2005-08-06 22:42:44 2 2006-02-16 02:30:53
  39200. 9322 2005-07-30 17:21:39 223 439 2005-08-06 16:58:39 2 2006-02-16 02:30:53
  39201. 9323 2005-07-30 17:21:44 3749 131 2005-08-03 16:28:44 1 2006-02-16 02:30:53
  39202. 9324 2005-07-30 17:28:52 1231 332 2005-08-06 19:02:52 1 2006-02-16 02:30:53
  39203. 9325 2005-07-30 17:29:19 1938 476 2005-08-08 12:55:19 2 2006-02-16 02:30:53
  39204. 9326 2005-07-30 17:30:03 3772 588 2005-08-01 13:41:03 2 2006-02-16 02:30:53
  39205. 9327 2005-07-30 17:31:03 345 373 2005-08-08 19:16:03 1 2006-02-16 02:30:53
  39206. 9328 2005-07-30 17:32:11 1087 89 2005-08-05 13:36:11 1 2006-02-16 02:30:53
  39207. 9329 2005-07-30 17:42:38 1293 593 2005-08-08 23:17:38 1 2006-02-16 02:30:53
  39208. 9330 2005-07-30 17:44:24 4227 232 2005-08-08 17:39:24 1 2006-02-16 02:30:53
  39209. 9331 2005-07-30 17:46:50 2248 274 2005-08-01 19:03:50 1 2006-02-16 02:30:53
  39210. 9332 2005-07-30 17:53:39 1156 480 2005-08-02 12:25:39 1 2006-02-16 02:30:53
  39211. 9333 2005-07-30 17:53:45 1377 437 2005-07-31 22:35:45 2 2006-02-16 02:30:53
  39212. 9334 2005-07-30 17:56:38 1499 25 2005-08-03 21:27:38 1 2006-02-16 02:30:53
  39213. 9335 2005-07-30 18:00:53 1006 522 2005-08-01 16:05:53 1 2006-02-16 02:30:53
  39214. 9336 2005-07-30 18:01:15 1911 557 2005-08-05 23:10:15 1 2006-02-16 02:30:53
  39215. 9337 2005-07-30 18:02:25 2363 90 2005-07-31 12:30:25 2 2006-02-16 02:30:53
  39216. 9338 2005-07-30 18:03:13 1482 333 2005-08-08 23:57:13 2 2006-02-16 02:30:53
  39217. 9339 2005-07-30 18:03:28 3171 68 2005-08-08 19:45:28 2 2006-02-16 02:30:53
  39218. 9340 2005-07-30 18:07:16 3228 213 2005-08-04 14:33:16 2 2006-02-16 02:30:53
  39219. 9341 2005-07-30 18:07:58 894 557 2005-08-01 17:43:58 1 2006-02-16 02:30:53
  39220. 9342 2005-07-30 18:09:56 2318 552 2005-08-08 13:54:56 2 2006-02-16 02:30:53
  39221. 9343 2005-07-30 18:13:13 3521 53 2005-08-02 13:48:13 1 2006-02-16 02:30:53
  39222. 9344 2005-07-30 18:13:45 1005 396 2005-08-07 15:23:45 2 2006-02-16 02:30:53
  39223. 9345 2005-07-30 18:13:51 2042 436 2005-08-07 13:45:51 2 2006-02-16 02:30:53
  39224. 9346 2005-07-30 18:13:52 2845 196 2005-08-03 17:58:52 1 2006-02-16 02:30:53
  39225. 9347 2005-07-30 18:16:03 3557 479 2005-08-05 18:35:03 1 2006-02-16 02:30:53
  39226. 9348 2005-07-30 18:17:09 3128 87 2005-08-07 15:25:09 1 2006-02-16 02:30:53
  39227. 9349 2005-07-30 18:20:08 3739 579 2005-08-08 22:06:08 1 2006-02-16 02:30:53
  39228. 9350 2005-07-30 18:24:30 798 434 2005-08-02 15:34:30 2 2006-02-16 02:30:53
  39229. 9351 2005-07-30 18:28:30 2063 107 2005-08-02 17:26:30 1 2006-02-16 02:30:53
  39230. 9352 2005-07-30 18:29:26 2619 360 2005-07-31 19:43:26 1 2006-02-16 02:30:53
  39231. 9353 2005-07-30 18:30:37 3581 283 2005-08-06 22:32:37 2 2006-02-16 02:30:53
  39232. 9354 2005-07-30 18:32:51 510 595 2005-08-02 21:28:51 2 2006-02-16 02:30:53
  39233. 9355 2005-07-30 18:35:25 1122 201 2005-08-03 20:33:25 2 2006-02-16 02:30:53
  39234. 9356 2005-07-30 18:36:24 4188 60 2005-08-03 14:10:24 1 2006-02-16 02:30:53
  39235. 9357 2005-07-30 18:37:00 3927 181 2005-08-08 19:57:00 2 2006-02-16 02:30:53
  39236. 9358 2005-07-30 18:37:24 712 302 2005-08-07 23:34:24 2 2006-02-16 02:30:53
  39237. 9359 2005-07-30 18:39:28 21 501 2005-07-31 15:39:28 1 2006-02-16 02:30:53
  39238. 9360 2005-07-30 18:39:43 2119 186 2005-08-04 22:41:43 2 2006-02-16 02:30:53
  39239. 9361 2005-07-30 18:43:49 4163 335 2005-08-06 21:24:49 1 2006-02-16 02:30:53
  39240. 9362 2005-07-30 18:44:16 3357 420 2005-08-01 20:14:16 1 2006-02-16 02:30:53
  39241. 9363 2005-07-30 18:44:23 873 323 2005-08-04 15:03:23 1 2006-02-16 02:30:53
  39242. 9364 2005-07-30 18:44:44 306 87 2005-08-08 23:55:44 2 2006-02-16 02:30:53
  39243. 9365 2005-07-30 18:46:02 1539 232 2005-08-03 20:15:02 1 2006-02-16 02:30:53
  39244. 9366 2005-07-30 18:48:57 4013 557 2005-08-03 15:17:57 2 2006-02-16 02:30:53
  39245. 9367 2005-07-30 18:49:58 793 557 2005-08-08 22:04:58 1 2006-02-16 02:30:53
  39246. 9368 2005-07-30 18:50:53 3026 388 2005-08-05 17:56:53 2 2006-02-16 02:30:53
  39247. 9369 2005-07-30 18:52:19 3538 36 2005-08-01 12:53:19 1 2006-02-16 02:30:53
  39248. 9370 2005-07-30 18:57:29 4433 588 2005-08-01 21:35:29 2 2006-02-16 02:30:53
  39249. 9371 2005-07-30 18:58:00 2980 4 2005-08-03 15:14:00 1 2006-02-16 02:30:53
  39250. 9372 2005-07-30 19:04:30 4075 454 2005-08-09 00:18:30 2 2006-02-16 02:30:53
  39251. 9373 2005-07-30 19:05:36 3478 180 2005-08-05 16:16:36 2 2006-02-16 02:30:53
  39252. 9374 2005-07-30 19:10:03 103 302 2005-08-06 21:54:03 2 2006-02-16 02:30:53
  39253. 9375 2005-07-30 19:10:17 3063 529 2005-08-02 23:00:17 1 2006-02-16 02:30:53
  39254. 9376 2005-07-30 19:11:49 451 86 2005-08-04 18:14:49 1 2006-02-16 02:30:53
  39255. 9377 2005-07-30 19:12:18 4164 421 2005-08-05 19:38:18 1 2006-02-16 02:30:53
  39256. 9378 2005-07-30 19:12:54 2209 197 2005-08-05 18:16:54 1 2006-02-16 02:30:53
  39257. 9379 2005-07-30 19:13:01 3855 452 2005-08-07 19:18:01 2 2006-02-16 02:30:53
  39258. 9380 2005-07-30 19:17:31 4403 264 2005-08-01 20:46:31 1 2006-02-16 02:30:53
  39259. 9381 2005-07-30 19:23:04 4064 329 2005-07-31 23:37:04 2 2006-02-16 02:30:53
  39260. 9382 2005-07-30 19:23:44 2127 17 2005-08-06 16:20:44 2 2006-02-16 02:30:53
  39261. 9383 2005-07-30 19:24:50 2806 416 2005-08-01 21:41:50 2 2006-02-16 02:30:53
  39262. 9384 2005-07-30 19:25:35 2313 220 2005-08-08 21:50:35 1 2006-02-16 02:30:53
  39263. 9385 2005-07-30 19:25:49 3453 570 2005-08-08 17:08:49 2 2006-02-16 02:30:53
  39264. 9386 2005-07-30 19:26:21 1123 189 2005-08-05 21:00:21 2 2006-02-16 02:30:53
  39265. 9387 2005-07-30 19:27:05 577 495 2005-08-07 21:19:05 2 2006-02-16 02:30:53
  39266. 9388 2005-07-30 19:27:22 2116 332 2005-08-08 15:31:22 2 2006-02-16 02:30:53
  39267. 9389 2005-07-30 19:27:59 3124 198 2005-08-04 18:25:59 2 2006-02-16 02:30:53
  39268. 9390 2005-07-30 19:42:07 1794 103 2005-08-01 23:17:07 1 2006-02-16 02:30:53
  39269. 9391 2005-07-30 19:48:41 665 273 2005-08-04 15:27:41 1 2006-02-16 02:30:53
  39270. 9392 2005-07-30 19:50:13 2797 29 2005-08-03 22:38:13 2 2006-02-16 02:30:53
  39271. 9393 2005-07-30 20:04:48 843 158 2005-08-02 15:52:48 2 2006-02-16 02:30:53
  39272. 9394 2005-07-30 20:06:24 161 204 2005-08-06 22:36:24 1 2006-02-16 02:30:53
  39273. 9395 2005-07-30 20:07:06 1298 306 2005-08-08 21:21:06 1 2006-02-16 02:30:53
  39274. 9396 2005-07-30 20:07:24 1250 91 2005-08-03 21:20:24 2 2006-02-16 02:30:53
  39275. 9397 2005-07-30 20:07:29 1550 373 2005-08-05 00:36:29 1 2006-02-16 02:30:53
  39276. 9398 2005-07-30 20:09:00 1175 570 2005-08-01 23:35:00 2 2006-02-16 02:30:53
  39277. 9399 2005-07-30 20:14:50 3668 569 2005-08-03 17:30:50 1 2006-02-16 02:30:53
  39278. 9400 2005-07-30 20:15:58 3910 368 2005-08-03 21:21:58 1 2006-02-16 02:30:53
  39279. 9401 2005-07-30 20:18:19 2057 331 2005-08-07 15:46:19 1 2006-02-16 02:30:53
  39280. 9402 2005-07-30 20:18:27 2424 48 2005-08-07 21:29:27 2 2006-02-16 02:30:53
  39281. 9403 2005-07-30 20:18:53 3466 267 2005-08-06 19:54:53 1 2006-02-16 02:30:53
  39282. 9404 2005-07-30 20:21:35 3832 140 2005-08-02 15:52:35 1 2006-02-16 02:30:53
  39283. 9405 2005-07-30 20:22:17 1983 463 2005-08-08 16:55:17 1 2006-02-16 02:30:53
  39284. 9406 2005-07-30 20:24:00 3419 453 2005-08-07 19:50:00 1 2006-02-16 02:30:53
  39285. 9407 2005-07-30 20:25:24 2594 585 2005-08-08 22:51:24 2 2006-02-16 02:30:53
  39286. 9408 2005-07-30 20:32:09 4383 571 2005-08-04 20:14:09 2 2006-02-16 02:30:53
  39287. 9409 2005-07-30 20:33:53 3053 156 2005-08-05 18:32:53 2 2006-02-16 02:30:53
  39288. 9410 2005-07-30 20:38:05 1789 22 2005-07-31 19:57:05 2 2006-02-16 02:30:53
  39289. 9411 2005-07-30 20:38:22 3484 536 2005-08-06 01:23:22 2 2006-02-16 02:30:53
  39290. 9412 2005-07-30 20:44:10 2482 522 2005-08-06 21:13:10 2 2006-02-16 02:30:53
  39291. 9413 2005-07-30 20:44:39 2618 290 2005-08-01 01:56:39 2 2006-02-16 02:30:53
  39292. 9414 2005-07-30 20:46:02 578 484 2005-08-07 21:23:02 2 2006-02-16 02:30:53
  39293. 9415 2005-07-30 20:48:31 3336 139 2005-08-05 19:45:31 2 2006-02-16 02:30:53
  39294. 9416 2005-07-30 20:52:45 1470 265 2005-08-02 17:38:45 2 2006-02-16 02:30:53
  39295. 9417 2005-07-30 20:54:55 2509 519 2005-08-04 00:54:55 2 2006-02-16 02:30:53
  39296. 9418 2005-07-30 21:00:52 241 168 2005-08-08 15:56:52 2 2006-02-16 02:30:53
  39297. 9419 2005-07-30 21:04:59 4427 142 2005-08-06 15:47:59 2 2006-02-16 02:30:53
  39298. 9420 2005-07-30 21:05:18 147 72 2005-08-05 23:52:18 2 2006-02-16 02:30:53
  39299. 9421 2005-07-30 21:08:32 2206 161 2005-08-02 00:43:32 1 2006-02-16 02:30:53
  39300. 9422 2005-07-30 21:08:41 1843 470 2005-08-07 15:55:41 1 2006-02-16 02:30:53
  39301. 9423 2005-07-30 21:10:14 3145 242 2005-08-07 16:34:14 2 2006-02-16 02:30:53
  39302. 9424 2005-07-30 21:10:56 4499 256 2005-08-05 00:01:56 1 2006-02-16 02:30:53
  39303. 9425 2005-07-30 21:11:21 271 295 2005-08-05 19:00:21 1 2006-02-16 02:30:53
  39304. 9427 2005-07-30 21:16:33 1494 85 2005-08-05 17:23:33 2 2006-02-16 02:30:53
  39305. 9428 2005-07-30 21:18:37 1948 335 2005-08-05 16:09:37 1 2006-02-16 02:30:53
  39306. 9429 2005-07-30 21:19:26 1769 288 2005-08-07 18:39:26 1 2006-02-16 02:30:53
  39307. 9430 2005-07-30 21:20:13 1529 367 2005-08-04 21:45:13 2 2006-02-16 02:30:53
  39308. 9431 2005-07-30 21:24:22 3364 39 2005-08-03 01:22:22 2 2006-02-16 02:30:53
  39309. 9432 2005-07-30 21:26:18 2489 570 2005-08-05 00:23:18 1 2006-02-16 02:30:53
  39310. 9433 2005-07-30 21:28:17 1082 128 2005-08-08 18:20:17 2 2006-02-16 02:30:53
  39311. 9434 2005-07-30 21:29:41 3792 13 2005-08-01 16:30:41 2 2006-02-16 02:30:53
  39312. 9435 2005-07-30 21:31:02 3116 301 2005-08-05 22:34:02 1 2006-02-16 02:30:53
  39313. 9436 2005-07-30 21:33:01 2329 268 2005-08-06 17:38:01 1 2006-02-16 02:30:53
  39314. 9437 2005-07-30 21:36:04 1230 592 2005-08-08 01:26:04 1 2006-02-16 02:30:53
  39315. 9438 2005-07-30 21:36:15 121 14 2005-08-07 16:54:15 2 2006-02-16 02:30:53
  39316. 9439 2005-07-30 21:38:12 290 479 2005-08-06 00:03:12 1 2006-02-16 02:30:53
  39317. 9440 2005-07-30 21:40:15 414 535 2005-08-04 15:45:15 2 2006-02-16 02:30:53
  39318. 9441 2005-07-30 21:43:28 3982 519 2005-08-08 16:57:28 1 2006-02-16 02:30:53
  39319. 9442 2005-07-30 21:44:31 44 75 2005-08-04 01:29:31 1 2006-02-16 02:30:53
  39320. 9443 2005-07-30 21:45:46 1675 3 2005-08-05 21:22:46 1 2006-02-16 02:30:53
  39321. 9444 2005-07-30 21:48:44 1134 259 2005-08-08 22:36:44 2 2006-02-16 02:30:53
  39322. 9445 2005-07-30 21:50:42 1480 549 2005-08-05 18:34:42 2 2006-02-16 02:30:53
  39323. 9446 2005-07-30 21:53:01 1880 477 2005-08-06 19:00:01 2 2006-02-16 02:30:53
  39324. 9447 2005-07-30 21:54:22 1053 82 2005-08-09 01:07:22 2 2006-02-16 02:30:53
  39325. 9448 2005-07-30 21:56:13 1213 278 2005-08-04 18:03:13 1 2006-02-16 02:30:53
  39326. 9449 2005-07-30 22:02:34 2 581 2005-08-06 02:09:34 1 2006-02-16 02:30:53
  39327. 9450 2005-07-30 22:04:04 1371 430 2005-08-05 18:39:04 2 2006-02-16 02:30:53
  39328. 9451 2005-07-30 22:10:17 685 584 2005-08-07 02:53:17 2 2006-02-16 02:30:53
  39329. 9452 2005-07-30 22:19:16 3178 130 2005-08-04 19:26:16 1 2006-02-16 02:30:53
  39330. 9453 2005-07-30 22:20:04 1988 221 2005-08-08 02:27:04 1 2006-02-16 02:30:53
  39331. 9454 2005-07-30 22:20:09 3028 81 2005-08-04 01:33:09 2 2006-02-16 02:30:53
  39332. 9455 2005-07-30 22:20:29 2647 220 2005-08-08 20:08:29 1 2006-02-16 02:30:53
  39333. 9456 2005-07-30 22:22:16 2068 534 2005-08-05 18:56:16 2 2006-02-16 02:30:53
  39334. 9457 2005-07-30 22:23:05 2172 487 2005-07-31 23:07:05 2 2006-02-16 02:30:53
  39335. 9458 2005-07-30 22:24:34 3105 343 2005-08-04 21:26:34 2 2006-02-16 02:30:53
  39336. 9459 2005-07-30 22:24:46 1132 489 2005-08-02 00:44:46 2 2006-02-16 02:30:53
  39337. 9460 2005-07-30 22:25:39 4463 580 2005-08-08 20:56:39 2 2006-02-16 02:30:53
  39338. 9461 2005-07-30 22:29:13 1679 377 2005-08-05 20:55:13 2 2006-02-16 02:30:53
  39339. 9462 2005-07-30 22:30:44 4090 192 2005-08-09 03:54:44 2 2006-02-16 02:30:53
  39340. 9463 2005-07-30 22:30:57 883 352 2005-08-03 22:53:57 1 2006-02-16 02:30:53
  39341. 9464 2005-07-30 22:31:31 3904 534 2005-08-07 01:10:31 2 2006-02-16 02:30:53
  39342. 9465 2005-07-30 22:39:53 3084 2 2005-08-06 16:43:53 2 2006-02-16 02:30:53
  39343. 9466 2005-07-30 22:44:36 2595 137 2005-08-07 02:35:36 2 2006-02-16 02:30:53
  39344. 9467 2005-07-30 22:45:34 1905 202 2005-08-08 00:58:34 2 2006-02-16 02:30:53
  39345. 9468 2005-07-30 22:53:52 4366 20 2005-08-07 00:22:52 2 2006-02-16 02:30:53
  39346. 9469 2005-07-30 22:56:34 967 59 2005-08-07 03:16:34 2 2006-02-16 02:30:53
  39347. 9470 2005-07-30 23:01:31 3908 566 2005-08-07 01:35:31 2 2006-02-16 02:30:53
  39348. 9471 2005-07-30 23:02:36 2390 424 2005-08-04 17:49:36 1 2006-02-16 02:30:53
  39349. 9472 2005-07-30 23:03:32 4178 404 2005-08-01 18:02:32 1 2006-02-16 02:30:53
  39350. 9473 2005-07-30 23:04:13 1717 185 2005-08-04 21:48:13 2 2006-02-16 02:30:53
  39351. 9474 2005-07-30 23:05:44 3771 206 2005-08-05 23:46:44 1 2006-02-16 02:30:53
  39352. 9475 2005-07-30 23:06:33 2186 567 2005-08-04 23:23:33 1 2006-02-16 02:30:53
  39353. 9476 2005-07-30 23:06:40 3599 197 2005-08-04 22:52:40 2 2006-02-16 02:30:53
  39354. 9477 2005-07-30 23:07:22 1932 213 2005-08-04 20:54:22 1 2006-02-16 02:30:53
  39355. 9478 2005-07-30 23:12:53 1139 283 2005-08-04 02:41:53 1 2006-02-16 02:30:53
  39356. 9479 2005-07-30 23:22:09 3461 308 2005-07-31 22:26:09 2 2006-02-16 02:30:53
  39357. 9480 2005-07-30 23:26:03 597 373 2005-08-04 21:18:03 2 2006-02-16 02:30:53
  39358. 9481 2005-07-30 23:26:05 613 481 2005-08-04 17:46:05 1 2006-02-16 02:30:53
  39359. 9482 2005-07-30 23:29:16 2421 348 2005-08-02 20:37:16 2 2006-02-16 02:30:53
  39360. 9483 2005-07-30 23:31:31 1136 593 2005-08-09 04:29:31 2 2006-02-16 02:30:53
  39361. 9484 2005-07-30 23:31:40 3389 26 2005-08-02 18:25:40 1 2006-02-16 02:30:53
  39362. 9485 2005-07-30 23:32:40 3722 338 2005-08-08 17:44:40 1 2006-02-16 02:30:53
  39363. 9486 2005-07-30 23:35:42 2787 403 2005-08-09 02:08:42 2 2006-02-16 02:30:53
  39364. 9487 2005-07-30 23:40:22 2165 406 2005-08-01 22:29:22 1 2006-02-16 02:30:53
  39365. 9488 2005-07-30 23:42:42 4221 528 2005-08-08 22:15:42 1 2006-02-16 02:30:53
  39366. 9489 2005-07-30 23:43:32 4011 17 2005-07-31 20:45:32 2 2006-02-16 02:30:53
  39367. 9490 2005-07-30 23:45:09 1302 487 2005-08-07 18:50:09 1 2006-02-16 02:30:53
  39368. 9491 2005-07-30 23:45:23 3624 179 2005-08-01 00:33:23 2 2006-02-16 02:30:53
  39369. 9492 2005-07-30 23:52:21 639 126 2005-08-08 20:50:21 2 2006-02-16 02:30:53
  39370. 9493 2005-07-30 23:52:30 1522 5 2005-08-08 05:22:30 1 2006-02-16 02:30:53
  39371. 9494 2005-07-30 23:52:46 3799 254 2005-08-05 23:13:46 2 2006-02-16 02:30:53
  39372. 9495 2005-07-30 23:54:26 2128 397 2005-08-01 22:02:26 2 2006-02-16 02:30:53
  39373. 9496 2005-07-30 23:55:20 453 125 2005-08-02 02:47:20 2 2006-02-16 02:30:53
  39374. 9497 2005-07-30 23:56:54 933 595 2005-08-04 19:52:54 1 2006-02-16 02:30:53
  39375. 9498 2005-07-30 23:56:55 1035 289 2005-08-03 18:34:55 2 2006-02-16 02:30:53
  39376. 9499 2005-07-30 23:58:30 602 461 2005-08-01 00:55:30 2 2006-02-16 02:30:53
  39377. 9500 2005-07-30 23:58:36 2808 241 2005-08-07 21:08:36 2 2006-02-16 02:30:53
  39378. 9501 2005-07-30 23:59:21 4398 75 2005-08-05 19:50:21 2 2006-02-16 02:30:53
  39379. 9502 2005-07-31 00:02:10 2700 471 2005-08-01 19:47:10 1 2006-02-16 02:30:53
  39380. 9503 2005-07-31 00:02:38 1013 311 2005-08-06 06:01:38 1 2006-02-16 02:30:53
  39381. 9504 2005-07-31 00:09:07 91 125 2005-08-02 05:44:07 1 2006-02-16 02:30:53
  39382. 9505 2005-07-31 00:11:19 4047 543 2005-08-05 18:24:19 2 2006-02-16 02:30:53
  39383. 9506 2005-07-31 00:19:01 3872 189 2005-08-02 00:20:01 1 2006-02-16 02:30:53
  39384. 9507 2005-07-31 00:22:29 387 525 2005-08-07 05:59:29 2 2006-02-16 02:30:53
  39385. 9508 2005-07-31 00:22:39 1204 316 2005-08-04 05:40:39 1 2006-02-16 02:30:53
  39386. 9509 2005-07-31 00:22:42 818 320 2005-08-03 23:24:42 1 2006-02-16 02:30:53
  39387. 9510 2005-07-31 00:24:17 2301 494 2005-08-08 18:47:17 2 2006-02-16 02:30:53
  39388. 9511 2005-07-31 00:25:05 964 549 2005-08-09 02:46:05 1 2006-02-16 02:30:53
  39389. 9512 2005-07-31 00:26:30 3786 173 2005-08-04 23:43:30 2 2006-02-16 02:30:53
  39390. 9513 2005-07-31 00:28:30 396 317 2005-08-01 00:22:30 2 2006-02-16 02:30:53
  39391. 9514 2005-07-31 00:29:44 1892 243 2005-08-02 23:49:44 1 2006-02-16 02:30:53
  39392. 9515 2005-07-31 00:35:05 3099 264 2005-08-02 23:35:05 2 2006-02-16 02:30:53
  39393. 9516 2005-07-31 00:40:58 3519 424 2005-08-07 02:13:58 2 2006-02-16 02:30:53
  39394. 9517 2005-07-31 00:41:23 3299 170 2005-08-02 23:08:23 1 2006-02-16 02:30:53
  39395. 9518 2005-07-31 00:43:26 2714 215 2005-08-04 19:12:26 2 2006-02-16 02:30:53
  39396. 9519 2005-07-31 00:45:57 3767 235 2005-08-06 00:59:57 2 2006-02-16 02:30:53
  39397. 9520 2005-07-31 00:50:54 1306 299 2005-08-04 20:05:54 1 2006-02-16 02:30:53
  39398. 9521 2005-07-31 00:52:24 1423 227 2005-08-06 03:33:24 2 2006-02-16 02:30:53
  39399. 9522 2005-07-31 00:55:11 4266 294 2005-08-03 06:41:11 2 2006-02-16 02:30:53
  39400. 9523 2005-07-31 00:56:09 891 356 2005-08-05 05:44:09 2 2006-02-16 02:30:53
  39401. 9524 2005-07-31 01:01:06 1796 535 2005-08-04 04:06:06 2 2006-02-16 02:30:53
  39402. 9525 2005-07-31 01:02:18 2990 246 2005-08-06 21:31:18 1 2006-02-16 02:30:53
  39403. 9526 2005-07-31 01:02:22 417 342 2005-08-04 03:00:22 1 2006-02-16 02:30:53
  39404. 9527 2005-07-31 01:02:24 2539 200 2005-08-09 02:08:24 2 2006-02-16 02:30:53
  39405. 9528 2005-07-31 01:05:04 193 241 2005-08-07 01:16:04 1 2006-02-16 02:30:53
  39406. 9529 2005-07-31 01:05:26 816 123 2005-08-02 22:30:26 2 2006-02-16 02:30:53
  39407. 9530 2005-07-31 01:09:06 1718 148 2005-08-04 23:47:06 2 2006-02-16 02:30:53
  39408. 9531 2005-07-31 01:11:53 4550 268 2005-08-07 02:49:53 1 2006-02-16 02:30:53
  39409. 9532 2005-07-31 01:16:51 1309 488 2005-08-01 20:23:51 1 2006-02-16 02:30:53
  39410. 9533 2005-07-31 01:18:10 4156 522 2005-08-07 19:58:10 1 2006-02-16 02:30:53
  39411. 9534 2005-07-31 01:18:27 4457 519 2005-08-06 00:28:27 1 2006-02-16 02:30:53
  39412. 9535 2005-07-31 01:18:53 2413 485 2005-08-04 03:04:53 2 2006-02-16 02:30:53
  39413. 9536 2005-07-31 01:19:02 2547 310 2005-08-02 19:38:02 1 2006-02-16 02:30:53
  39414. 9537 2005-07-31 01:23:00 546 488 2005-08-01 01:16:00 2 2006-02-16 02:30:53
  39415. 9538 2005-07-31 01:25:22 3402 68 2005-08-06 00:10:22 2 2006-02-16 02:30:53
  39416. 9539 2005-07-31 01:36:19 3793 436 2005-08-04 23:47:19 1 2006-02-16 02:30:53
  39417. 9540 2005-07-31 01:40:06 2200 365 2005-08-01 01:09:06 1 2006-02-16 02:30:53
  39418. 9541 2005-07-31 01:40:14 1774 422 2005-08-05 06:34:14 2 2006-02-16 02:30:53
  39419. 9542 2005-07-31 01:41:48 2243 595 2005-08-01 00:49:48 2 2006-02-16 02:30:53
  39420. 9543 2005-07-31 01:43:34 956 369 2005-08-01 06:49:34 1 2006-02-16 02:30:53
  39421. 9544 2005-07-31 01:44:51 2383 28 2005-08-05 05:25:51 2 2006-02-16 02:30:53
  39422. 9545 2005-07-31 01:46:24 3451 594 2005-08-09 06:11:24 1 2006-02-16 02:30:53
  39423. 9546 2005-07-31 01:47:40 211 63 2005-08-02 07:25:40 2 2006-02-16 02:30:53
  39424. 9547 2005-07-31 01:52:34 2414 440 2005-08-03 23:12:34 2 2006-02-16 02:30:53
  39425. 9548 2005-07-31 01:54:19 3038 576 2005-08-05 00:50:19 2 2006-02-16 02:30:53
  39426. 9549 2005-07-31 01:57:04 2409 63 2005-08-07 21:00:04 2 2006-02-16 02:30:53
  39427. 9550 2005-07-31 01:57:34 2233 583 2005-08-08 23:33:34 1 2006-02-16 02:30:53
  39428. 9551 2005-07-31 02:04:58 1260 30 2005-08-06 04:07:58 2 2006-02-16 02:30:53
  39429. 9552 2005-07-31 02:05:32 3544 261 2005-08-01 06:59:32 1 2006-02-16 02:30:53
  39430. 9553 2005-07-31 02:06:34 4187 579 2005-08-08 02:20:34 1 2006-02-16 02:30:53
  39431. 9554 2005-07-31 02:06:49 2581 490 2005-08-01 22:27:49 1 2006-02-16 02:30:53
  39432. 9555 2005-07-31 02:11:16 2108 382 2005-08-03 06:58:16 2 2006-02-16 02:30:53
  39433. 9556 2005-07-31 02:13:30 3269 521 2005-08-08 06:46:30 1 2006-02-16 02:30:53
  39434. 9557 2005-07-31 02:14:01 708 328 2005-08-05 23:55:01 1 2006-02-16 02:30:53
  39435. 9558 2005-07-31 02:14:35 1161 418 2005-08-06 03:00:35 1 2006-02-16 02:30:53
  39436. 9559 2005-07-31 02:15:53 2882 159 2005-08-08 02:38:53 1 2006-02-16 02:30:53
  39437. 9560 2005-07-31 02:17:27 4236 471 2005-08-07 03:33:27 1 2006-02-16 02:30:53
  39438. 9561 2005-07-31 02:22:13 1079 58 2005-08-03 07:00:13 2 2006-02-16 02:30:53
  39439. 9562 2005-07-31 02:23:20 1571 116 2005-08-06 21:01:20 2 2006-02-16 02:30:53
  39440. 9563 2005-07-31 02:28:39 3858 167 2005-08-05 22:10:39 1 2006-02-16 02:30:53
  39441. 9564 2005-07-31 02:31:37 383 377 2005-08-03 22:57:37 2 2006-02-16 02:30:53
  39442. 9565 2005-07-31 02:32:00 3621 485 2005-08-04 05:45:00 1 2006-02-16 02:30:53
  39443. 9566 2005-07-31 02:32:10 643 346 2005-08-02 23:54:10 2 2006-02-16 02:30:53
  39444. 9567 2005-07-31 02:36:11 3688 37 2005-08-07 01:19:11 2 2006-02-16 02:30:53
  39445. 9568 2005-07-31 02:37:44 1248 358 2005-08-02 07:07:44 2 2006-02-16 02:30:53
  39446. 9569 2005-07-31 02:39:38 813 405 2005-08-02 05:09:38 2 2006-02-16 02:30:53
  39447. 9570 2005-07-31 02:40:37 591 385 2005-08-01 01:59:37 1 2006-02-16 02:30:53
  39448. 9571 2005-07-31 02:42:18 2219 1 2005-08-02 23:26:18 2 2006-02-16 02:30:53
  39449. 9572 2005-07-31 02:44:10 1453 283 2005-08-01 03:30:10 2 2006-02-16 02:30:53
  39450. 9573 2005-07-31 02:45:38 3745 59 2005-08-09 04:31:38 2 2006-02-16 02:30:53
  39451. 9574 2005-07-31 02:49:20 2782 233 2005-08-05 02:36:20 2 2006-02-16 02:30:53
  39452. 9575 2005-07-31 02:51:53 3971 193 2005-08-03 20:54:53 2 2006-02-16 02:30:53
  39453. 9576 2005-07-31 02:52:59 3327 145 2005-08-05 23:35:59 2 2006-02-16 02:30:53
  39454. 9577 2005-07-31 02:53:33 2423 526 2005-08-07 05:56:33 1 2006-02-16 02:30:53
  39455. 9578 2005-07-31 02:54:31 2965 115 2005-08-02 02:48:31 1 2006-02-16 02:30:53
  39456. 9579 2005-07-31 02:59:20 3547 35 2005-08-06 03:52:20 2 2006-02-16 02:30:53
  39457. 9580 2005-07-31 03:01:11 532 22 2005-08-05 06:01:11 1 2006-02-16 02:30:53
  39458. 9581 2005-07-31 03:03:07 2588 302 2005-08-05 23:01:07 1 2006-02-16 02:30:53
  39459. 9582 2005-07-31 03:05:19 3913 347 2005-08-04 07:26:19 1 2006-02-16 02:30:53
  39460. 9583 2005-07-31 03:05:21 3543 568 2005-08-06 00:14:21 2 2006-02-16 02:30:53
  39461. 9584 2005-07-31 03:05:48 419 141 2005-08-01 05:50:48 2 2006-02-16 02:30:53
  39462. 9585 2005-07-31 03:05:55 3249 197 2005-08-02 23:54:55 2 2006-02-16 02:30:53
  39463. 9586 2005-07-31 03:07:16 3987 415 2005-08-04 00:39:16 1 2006-02-16 02:30:53
  39464. 9587 2005-07-31 03:10:30 2966 235 2005-08-06 06:54:30 2 2006-02-16 02:30:53
  39465. 9588 2005-07-31 03:13:13 1368 499 2005-08-02 04:06:13 1 2006-02-16 02:30:53
  39466. 9589 2005-07-31 03:13:29 2604 574 2005-08-09 01:51:29 2 2006-02-16 02:30:53
  39467. 9590 2005-07-31 03:17:16 2293 585 2005-08-08 04:24:16 1 2006-02-16 02:30:53
  39468. 9591 2005-07-31 03:19:28 504 97 2005-08-01 07:30:28 1 2006-02-16 02:30:53
  39469. 9592 2005-07-31 03:21:16 1828 14 2005-08-05 08:32:16 1 2006-02-16 02:30:53
  39470. 9593 2005-07-31 03:22:30 1223 28 2005-08-05 08:23:30 1 2006-02-16 02:30:53
  39471. 9594 2005-07-31 03:23:52 4382 148 2005-08-04 23:06:52 1 2006-02-16 02:30:53
  39472. 9595 2005-07-31 03:27:58 2829 3 2005-08-03 05:58:58 1 2006-02-16 02:30:53
  39473. 9596 2005-07-31 03:28:47 2847 55 2005-08-04 03:43:47 2 2006-02-16 02:30:53
  39474. 9597 2005-07-31 03:29:07 3317 61 2005-08-09 03:33:07 2 2006-02-16 02:30:53
  39475. 9598 2005-07-31 03:30:41 1105 468 2005-08-04 03:54:41 1 2006-02-16 02:30:53
  39476. 9599 2005-07-31 03:32:06 3164 502 2005-08-04 07:47:06 2 2006-02-16 02:30:53
  39477. 9600 2005-07-31 03:35:34 3731 464 2005-08-08 22:50:34 1 2006-02-16 02:30:53
  39478. 9601 2005-07-31 03:42:17 1592 553 2005-08-04 02:02:17 2 2006-02-16 02:30:53
  39479. 9602 2005-07-31 03:42:51 3173 386 2005-08-01 08:39:51 1 2006-02-16 02:30:53
  39480. 9603 2005-07-31 03:43:43 2266 541 2005-08-02 00:11:43 2 2006-02-16 02:30:53
  39481. 9604 2005-07-31 03:47:12 4342 580 2005-08-03 06:48:12 1 2006-02-16 02:30:53
  39482. 9605 2005-07-31 03:50:07 1477 94 2005-08-07 09:15:07 2 2006-02-16 02:30:53
  39483. 9606 2005-07-31 03:50:46 1357 253 2005-08-01 05:29:46 2 2006-02-16 02:30:53
  39484. 9607 2005-07-31 03:51:06 3414 294 2005-08-02 00:18:06 2 2006-02-16 02:30:53
  39485. 9608 2005-07-31 03:51:52 363 397 2005-08-06 05:38:52 2 2006-02-16 02:30:53
  39486. 9609 2005-07-31 03:53:24 693 112 2005-08-05 08:32:24 2 2006-02-16 02:30:53
  39487. 9610 2005-07-31 03:54:05 3110 16 2005-08-06 23:11:05 1 2006-02-16 02:30:53
  39488. 9611 2005-07-31 03:54:43 1976 215 2005-08-05 03:54:43 2 2006-02-16 02:30:53
  39489. 9612 2005-07-31 03:58:31 2142 69 2005-08-04 07:34:31 2 2006-02-16 02:30:53
  39490. 9613 2005-07-31 03:58:53 3251 188 2005-08-02 00:10:53 1 2006-02-16 02:30:53
  39491. 9614 2005-07-31 03:59:31 2955 548 2005-08-08 04:19:31 1 2006-02-16 02:30:53
  39492. 9615 2005-07-31 03:59:56 3370 50 2005-08-02 00:46:56 2 2006-02-16 02:30:53
  39493. 9616 2005-07-31 04:05:01 1210 550 2005-08-05 00:10:01 1 2006-02-16 02:30:53
  39494. 9617 2005-07-31 04:15:38 529 102 2005-08-02 04:24:38 1 2006-02-16 02:30:53
  39495. 9618 2005-07-31 04:16:14 2688 253 2005-08-07 02:43:14 2 2006-02-16 02:30:53
  39496. 9619 2005-07-31 04:17:02 1730 138 2005-08-05 06:36:02 2 2006-02-16 02:30:53
  39497. 9620 2005-07-31 04:19:18 2177 576 2005-08-08 09:20:18 1 2006-02-16 02:30:53
  39498. 9621 2005-07-31 04:21:08 325 38 2005-08-08 03:50:08 2 2006-02-16 02:30:53
  39499. 9622 2005-07-31 04:21:45 2255 411 2005-08-02 09:20:45 1 2006-02-16 02:30:53
  39500. 9623 2005-07-31 04:30:02 113 360 2005-08-06 23:34:02 1 2006-02-16 02:30:53
  39501. 9624 2005-07-31 04:30:03 3480 7 2005-08-06 09:13:03 1 2006-02-16 02:30:53
  39502. 9625 2005-07-31 04:30:48 1703 445 2005-08-03 01:12:48 1 2006-02-16 02:30:53
  39503. 9626 2005-07-31 04:37:41 2216 546 2005-08-08 04:00:41 1 2006-02-16 02:30:53
  39504. 9627 2005-07-31 04:42:46 471 12 2005-08-08 00:42:46 2 2006-02-16 02:30:53
  39505. 9628 2005-07-31 04:51:11 1387 565 2005-07-31 23:11:11 2 2006-02-16 02:30:53
  39506. 9629 2005-07-31 04:54:43 2773 8 2005-08-02 08:36:43 1 2006-02-16 02:30:53
  39507. 9630 2005-07-31 04:57:07 2008 599 2005-08-07 10:55:07 2 2006-02-16 02:30:53
  39508. 9631 2005-07-31 05:02:00 321 595 2005-08-02 02:04:00 2 2006-02-16 02:30:53
  39509. 9632 2005-07-31 05:02:23 3368 217 2005-08-06 04:49:23 2 2006-02-16 02:30:53
  39510. 9633 2005-07-31 05:04:08 1141 334 2005-08-06 00:52:08 2 2006-02-16 02:30:53
  39511. 9634 2005-07-31 05:06:02 924 444 2005-08-04 06:53:02 1 2006-02-16 02:30:53
  39512. 9635 2005-07-31 05:12:27 1687 371 2005-08-02 00:24:27 2 2006-02-16 02:30:53
  39513. 9636 2005-07-31 05:12:59 1725 27 2005-08-09 07:31:59 2 2006-02-16 02:30:53
  39514. 9637 2005-07-31 05:18:54 3013 130 2005-08-03 01:23:54 2 2006-02-16 02:30:53
  39515. 9638 2005-07-31 05:30:27 1616 436 2005-08-09 02:04:27 1 2006-02-16 02:30:53
  39516. 9639 2005-07-31 05:32:10 1373 459 2005-08-03 07:04:10 2 2006-02-16 02:30:53
  39517. 9640 2005-07-31 05:33:25 1067 67 2005-08-09 09:41:25 1 2006-02-16 02:30:53
  39518. 9641 2005-07-31 05:33:48 1085 30 2005-08-04 07:43:48 1 2006-02-16 02:30:53
  39519. 9642 2005-07-31 05:33:57 3550 68 2005-08-05 04:54:57 1 2006-02-16 02:30:53
  39520. 9643 2005-07-31 05:35:48 3576 538 2005-08-08 04:28:48 2 2006-02-16 02:30:53
  39521. 9644 2005-07-31 05:40:35 4577 441 2005-08-09 08:18:35 1 2006-02-16 02:30:53
  39522. 9645 2005-07-31 05:42:49 3413 519 2005-08-04 00:08:49 1 2006-02-16 02:30:53
  39523. 9646 2005-07-31 05:43:28 3756 89 2005-08-08 04:00:28 1 2006-02-16 02:30:53
  39524. 9647 2005-07-31 05:45:15 3415 475 2005-08-06 08:54:15 1 2006-02-16 02:30:53
  39525. 9648 2005-07-31 05:46:03 4063 72 2005-08-09 04:36:03 2 2006-02-16 02:30:53
  39526. 9649 2005-07-31 05:46:54 1588 51 2005-08-04 08:42:54 2 2006-02-16 02:30:53
  39527. 9650 2005-07-31 05:47:32 2997 414 2005-08-04 00:50:32 2 2006-02-16 02:30:53
  39528. 9651 2005-07-31 05:48:49 4059 324 2005-08-04 06:53:49 1 2006-02-16 02:30:53
  39529. 9652 2005-07-31 05:49:53 448 207 2005-08-06 07:38:53 2 2006-02-16 02:30:53
  39530. 9653 2005-07-31 05:55:38 1451 383 2005-08-03 09:35:38 2 2006-02-16 02:30:53
  39531. 9654 2005-07-31 05:57:42 3286 506 2005-08-06 04:19:42 1 2006-02-16 02:30:53
  39532. 9655 2005-07-31 05:57:54 3403 435 2005-08-06 02:00:54 1 2006-02-16 02:30:53
  39533. 9656 2005-07-31 06:00:21 4215 39 2005-08-05 04:36:21 1 2006-02-16 02:30:53
  39534. 9657 2005-07-31 06:00:41 2681 402 2005-08-06 06:51:41 2 2006-02-16 02:30:53
  39535. 9658 2005-07-31 06:00:52 2332 282 2005-08-09 04:47:52 2 2006-02-16 02:30:53
  39536. 9659 2005-07-31 06:02:14 4262 360 2005-08-07 00:54:14 2 2006-02-16 02:30:53
  39537. 9660 2005-07-31 06:03:17 1090 406 2005-08-07 06:59:17 2 2006-02-16 02:30:53
  39538. 9661 2005-07-31 06:06:37 2693 237 2005-08-04 07:37:37 1 2006-02-16 02:30:53
  39539. 9662 2005-07-31 06:09:53 2757 96 2005-08-08 00:50:53 2 2006-02-16 02:30:53
  39540. 9663 2005-07-31 06:10:48 2099 339 2005-08-01 11:40:48 2 2006-02-16 02:30:53
  39541. 9664 2005-07-31 06:12:08 360 13 2005-08-04 02:19:08 2 2006-02-16 02:30:53
  39542. 9665 2005-07-31 06:17:33 2863 478 2005-08-04 08:53:33 1 2006-02-16 02:30:53
  39543. 9666 2005-07-31 06:20:58 4318 592 2005-08-06 06:09:58 2 2006-02-16 02:30:53
  39544. 9667 2005-07-31 06:23:52 4289 523 2005-08-09 09:12:52 1 2006-02-16 02:30:53
  39545. 9668 2005-07-31 06:31:03 1647 378 2005-08-07 06:19:03 2 2006-02-16 02:30:53
  39546. 9669 2005-07-31 06:31:36 4496 277 2005-08-08 03:05:36 2 2006-02-16 02:30:53
  39547. 9670 2005-07-31 06:33:33 3709 349 2005-08-07 04:51:33 1 2006-02-16 02:30:53
  39548. 9671 2005-07-31 06:33:41 920 133 2005-08-02 07:50:41 1 2006-02-16 02:30:53
  39549. 9672 2005-07-31 06:34:06 4394 183 2005-08-08 10:29:06 2 2006-02-16 02:30:53
  39550. 9673 2005-07-31 06:34:55 339 27 2005-08-09 09:15:55 2 2006-02-16 02:30:53
  39551. 9674 2005-07-31 06:36:53 3213 297 2005-08-06 02:50:53 2 2006-02-16 02:30:53
  39552. 9675 2005-07-31 06:37:07 2523 243 2005-08-03 07:03:07 1 2006-02-16 02:30:53
  39553. 9676 2005-07-31 06:39:13 681 239 2005-08-05 09:31:13 2 2006-02-16 02:30:53
  39554. 9677 2005-07-31 06:39:45 3200 274 2005-08-01 02:37:45 2 2006-02-16 02:30:53
  39555. 9678 2005-07-31 06:40:47 3430 383 2005-08-02 00:57:47 2 2006-02-16 02:30:53
  39556. 9679 2005-07-31 06:41:19 3819 599 2005-08-02 07:23:19 1 2006-02-16 02:30:53
  39557. 9680 2005-07-31 06:41:46 3010 84 2005-08-01 11:02:46 2 2006-02-16 02:30:53
  39558. 9681 2005-07-31 06:42:09 64 160 2005-08-06 08:21:09 1 2006-02-16 02:30:53
  39559. 9682 2005-07-31 06:47:10 2427 425 2005-08-04 09:07:10 1 2006-02-16 02:30:53
  39560. 9683 2005-07-31 06:47:13 856 141 2005-08-04 05:52:13 2 2006-02-16 02:30:53
  39561. 9684 2005-07-31 06:48:33 362 591 2005-08-01 07:07:33 2 2006-02-16 02:30:53
  39562. 9685 2005-07-31 06:49:18 3097 165 2005-08-04 03:19:18 1 2006-02-16 02:30:53
  39563. 9686 2005-07-31 06:50:06 3825 386 2005-08-06 08:41:06 1 2006-02-16 02:30:53
  39564. 9687 2005-07-31 06:52:54 3540 470 2005-08-01 03:40:54 2 2006-02-16 02:30:53
  39565. 9688 2005-07-31 06:56:08 1304 566 2005-08-08 03:31:08 2 2006-02-16 02:30:53
  39566. 9689 2005-07-31 07:00:08 819 498 2005-08-04 03:33:08 2 2006-02-16 02:30:53
  39567. 9690 2005-07-31 07:06:29 4449 468 2005-08-06 09:45:29 2 2006-02-16 02:30:53
  39568. 9691 2005-07-31 07:09:55 2626 50 2005-08-09 02:29:55 1 2006-02-16 02:30:53
  39569. 9692 2005-07-31 07:11:04 3481 295 2005-08-07 06:34:04 2 2006-02-16 02:30:53
  39570. 9693 2005-07-31 07:11:50 1031 273 2005-08-08 09:55:50 1 2006-02-16 02:30:53
  39571. 9694 2005-07-31 07:13:16 3447 508 2005-08-06 09:12:16 2 2006-02-16 02:30:53
  39572. 9695 2005-07-31 07:13:30 726 95 2005-08-07 05:38:30 2 2006-02-16 02:30:53
  39573. 9696 2005-07-31 07:13:46 2703 156 2005-08-03 10:49:46 2 2006-02-16 02:30:53
  39574. 9697 2005-07-31 07:23:11 762 479 2005-08-05 08:04:11 2 2006-02-16 02:30:53
  39575. 9698 2005-07-31 07:24:35 3477 594 2005-08-09 04:52:35 2 2006-02-16 02:30:53
  39576. 9699 2005-07-31 07:29:25 199 21 2005-08-06 01:35:25 1 2006-02-16 02:30:53
  39577. 9700 2005-07-31 07:29:59 2678 40 2005-08-02 09:53:59 1 2006-02-16 02:30:53
  39578. 9701 2005-07-31 07:32:21 4581 401 2005-08-01 05:07:21 2 2006-02-16 02:30:53
  39579. 9702 2005-07-31 07:34:07 3353 525 2005-08-02 06:13:07 2 2006-02-16 02:30:53
  39580. 9703 2005-07-31 07:34:52 2708 57 2005-08-03 13:33:52 2 2006-02-16 02:30:53
  39581. 9704 2005-07-31 07:39:32 1402 385 2005-08-06 01:50:32 2 2006-02-16 02:30:53
  39582. 9705 2005-07-31 07:40:33 4158 28 2005-08-01 03:50:33 2 2006-02-16 02:30:53
  39583. 9706 2005-07-31 07:43:19 142 508 2005-08-05 11:11:19 1 2006-02-16 02:30:53
  39584. 9707 2005-07-31 07:44:18 203 351 2005-08-08 12:45:18 1 2006-02-16 02:30:53
  39585. 9708 2005-07-31 07:45:33 3264 12 2005-08-08 08:56:33 1 2006-02-16 02:30:53
  39586. 9709 2005-07-31 08:04:55 2096 137 2005-08-07 08:58:55 1 2006-02-16 02:30:53
  39587. 9710 2005-07-31 08:05:31 3486 380 2005-08-09 03:29:31 2 2006-02-16 02:30:53
  39588. 9711 2005-07-31 08:06:41 1525 231 2005-08-02 10:30:41 2 2006-02-16 02:30:53
  39589. 9712 2005-07-31 08:13:11 2487 219 2005-08-08 12:40:11 2 2006-02-16 02:30:53
  39590. 9713 2005-07-31 08:13:28 929 158 2005-08-07 10:11:28 1 2006-02-16 02:30:53
  39591. 9714 2005-07-31 08:15:32 1532 144 2005-08-03 08:33:32 2 2006-02-16 02:30:53
  39592. 9715 2005-07-31 08:16:58 3319 237 2005-08-04 11:13:58 1 2006-02-16 02:30:53
  39593. 9716 2005-07-31 08:23:53 3385 287 2005-08-08 12:03:53 2 2006-02-16 02:30:53
  39594. 9717 2005-07-31 08:24:41 4207 114 2005-08-04 02:51:41 1 2006-02-16 02:30:53
  39595. 9718 2005-07-31 08:25:03 2747 23 2005-08-08 04:16:03 2 2006-02-16 02:30:53
  39596. 9719 2005-07-31 08:25:13 335 584 2005-08-05 08:22:13 1 2006-02-16 02:30:53
  39597. 9720 2005-07-31 08:25:21 1282 587 2005-08-07 11:30:21 2 2006-02-16 02:30:53
  39598. 9721 2005-07-31 08:28:46 3942 196 2005-08-05 14:03:46 1 2006-02-16 02:30:53
  39599. 9722 2005-07-31 08:29:48 4260 125 2005-08-07 07:52:48 2 2006-02-16 02:30:53
  39600. 9723 2005-07-31 08:31:18 3968 24 2005-08-03 10:25:18 1 2006-02-16 02:30:53
  39601. 9724 2005-07-31 08:33:08 518 130 2005-08-08 04:50:08 1 2006-02-16 02:30:53
  39602. 9725 2005-07-31 08:35:18 3960 503 2005-08-03 03:46:18 2 2006-02-16 02:30:53
  39603. 9726 2005-07-31 08:37:07 1701 162 2005-08-09 06:09:07 1 2006-02-16 02:30:53
  39604. 9727 2005-07-31 08:39:13 3076 536 2005-08-03 07:54:13 1 2006-02-16 02:30:53
  39605. 9728 2005-07-31 08:40:54 3630 399 2005-08-03 04:14:54 2 2006-02-16 02:30:53
  39606. 9729 2005-07-31 08:43:43 4199 273 2005-08-01 13:25:43 2 2006-02-16 02:30:53
  39607. 9730 2005-07-31 08:50:08 2605 242 2005-08-08 12:21:08 2 2006-02-16 02:30:53
  39608. 9731 2005-07-31 08:54:47 3713 349 2005-08-05 03:47:47 1 2006-02-16 02:30:53
  39609. 9732 2005-07-31 08:56:08 3262 288 2005-08-07 11:05:08 2 2006-02-16 02:30:53
  39610. 9733 2005-07-31 08:57:35 1255 575 2005-08-04 04:47:35 1 2006-02-16 02:30:53
  39611. 9734 2005-07-31 08:57:45 3320 125 2005-08-05 11:57:45 1 2006-02-16 02:30:53
  39612. 9735 2005-07-31 08:57:49 4228 315 2005-08-08 13:51:49 2 2006-02-16 02:30:53
  39613. 9736 2005-07-31 08:58:40 2072 13 2005-08-09 08:34:40 2 2006-02-16 02:30:53
  39614. 9737 2005-07-31 08:59:18 1720 475 2005-08-03 12:19:18 2 2006-02-16 02:30:53
  39615. 9738 2005-07-31 09:04:14 2278 568 2005-08-05 14:40:14 2 2006-02-16 02:30:53
  39616. 9739 2005-07-31 09:08:03 1328 343 2005-08-04 13:57:03 1 2006-02-16 02:30:53
  39617. 9740 2005-07-31 09:08:03 3497 443 2005-08-06 04:48:03 2 2006-02-16 02:30:53
  39618. 9741 2005-07-31 09:09:22 1971 495 2005-08-07 10:01:22 1 2006-02-16 02:30:53
  39619. 9742 2005-07-31 09:10:20 4058 48 2005-08-08 10:07:20 1 2006-02-16 02:30:53
  39620. 9743 2005-07-31 09:12:42 1740 476 2005-08-06 11:57:42 2 2006-02-16 02:30:53
  39621. 9744 2005-07-31 09:15:38 839 459 2005-08-03 10:31:38 2 2006-02-16 02:30:53
  39622. 9745 2005-07-31 09:16:14 3610 217 2005-08-07 12:11:14 1 2006-02-16 02:30:53
  39623. 9746 2005-07-31 09:16:48 1459 308 2005-08-07 06:36:48 2 2006-02-16 02:30:53
  39624. 9747 2005-07-31 09:16:57 2455 106 2005-08-08 06:47:57 2 2006-02-16 02:30:53
  39625. 9748 2005-07-31 09:17:56 3308 550 2005-08-02 14:54:56 1 2006-02-16 02:30:53
  39626. 9749 2005-07-31 09:18:33 658 52 2005-08-06 07:41:33 1 2006-02-16 02:30:53
  39627. 9750 2005-07-31 09:19:46 3174 527 2005-08-06 08:07:46 1 2006-02-16 02:30:53
  39628. 9751 2005-07-31 09:20:50 36 202 2005-08-01 05:34:50 2 2006-02-16 02:30:53
  39629. 9752 2005-07-31 09:22:02 249 199 2005-08-02 14:34:02 1 2006-02-16 02:30:53
  39630. 9753 2005-07-31 09:22:38 3529 98 2005-08-01 08:45:38 1 2006-02-16 02:30:53
  39631. 9754 2005-07-31 09:23:43 3751 479 2005-08-08 06:04:43 1 2006-02-16 02:30:53
  39632. 9755 2005-07-31 09:24:55 86 108 2005-08-07 06:00:55 2 2006-02-16 02:30:53
  39633. 9756 2005-07-31 09:25:00 207 400 2005-08-02 05:11:00 1 2006-02-16 02:30:53
  39634. 9757 2005-07-31 09:25:14 2596 408 2005-08-01 14:43:14 2 2006-02-16 02:30:53
  39635. 9758 2005-07-31 09:25:38 1307 160 2005-08-03 14:16:38 1 2006-02-16 02:30:53
  39636. 9759 2005-07-31 09:25:57 2950 574 2005-08-07 12:56:57 2 2006-02-16 02:30:53
  39637. 9760 2005-07-31 09:29:33 426 511 2005-08-09 07:32:33 2 2006-02-16 02:30:53
  39638. 9761 2005-07-31 09:31:54 3778 60 2005-08-03 11:02:54 2 2006-02-16 02:30:53
  39639. 9762 2005-07-31 09:32:54 155 540 2005-08-05 04:55:54 1 2006-02-16 02:30:53
  39640. 9763 2005-07-31 09:34:03 126 393 2005-08-08 05:30:03 1 2006-02-16 02:30:53
  39641. 9764 2005-07-31 09:42:58 3761 136 2005-08-07 07:22:58 2 2006-02-16 02:30:53
  39642. 9765 2005-07-31 09:44:40 472 551 2005-08-05 10:57:40 1 2006-02-16 02:30:53
  39643. 9766 2005-07-31 09:46:29 4049 570 2005-08-01 05:08:29 1 2006-02-16 02:30:53
  39644. 9767 2005-07-31 09:46:49 3432 89 2005-08-03 11:20:49 1 2006-02-16 02:30:53
  39645. 9768 2005-07-31 09:48:41 2656 582 2005-08-08 11:40:41 2 2006-02-16 02:30:53
  39646. 9769 2005-07-31 09:52:16 2958 484 2005-08-06 09:26:16 1 2006-02-16 02:30:53
  39647. 9770 2005-07-31 09:52:40 1226 317 2005-08-09 06:44:40 1 2006-02-16 02:30:53
  39648. 9771 2005-07-31 09:55:36 4123 398 2005-08-04 10:11:36 2 2006-02-16 02:30:53
  39649. 9772 2005-07-31 09:56:07 3639 147 2005-08-01 13:50:07 2 2006-02-16 02:30:53
  39650. 9773 2005-07-31 09:56:56 4555 376 2005-08-04 09:38:56 1 2006-02-16 02:30:53
  39651. 9774 2005-07-31 09:57:51 4174 306 2005-08-02 09:08:51 2 2006-02-16 02:30:53
  39652. 9775 2005-07-31 10:00:00 2818 162 2005-08-01 08:57:00 2 2006-02-16 02:30:53
  39653. 9776 2005-07-31 10:01:03 2524 73 2005-08-03 07:20:03 2 2006-02-16 02:30:53
  39654. 9777 2005-07-31 10:01:06 225 539 2005-08-08 04:44:06 2 2006-02-16 02:30:53
  39655. 9778 2005-07-31 10:02:04 304 230 2005-08-04 07:44:04 2 2006-02-16 02:30:53
  39656. 9779 2005-07-31 10:08:33 1280 402 2005-08-03 14:56:33 1 2006-02-16 02:30:53
  39657. 9780 2005-07-31 10:10:22 3241 102 2005-08-02 11:43:22 1 2006-02-16 02:30:53
  39658. 9781 2005-07-31 10:13:02 2310 155 2005-08-09 14:46:02 1 2006-02-16 02:30:53
  39659. 9782 2005-07-31 10:14:26 2397 438 2005-08-06 16:11:26 1 2006-02-16 02:30:53
  39660. 9783 2005-07-31 10:15:46 836 75 2005-08-09 13:22:46 2 2006-02-16 02:30:53
  39661. 9784 2005-07-31 10:21:32 2761 362 2005-08-07 09:20:32 2 2006-02-16 02:30:53
  39662. 9785 2005-07-31 10:22:15 4101 587 2005-08-02 10:02:15 1 2006-02-16 02:30:53
  39663. 9786 2005-07-31 10:25:21 2560 586 2005-08-03 04:28:21 1 2006-02-16 02:30:53
  39664. 9787 2005-07-31 10:26:19 3559 272 2005-08-09 09:02:19 1 2006-02-16 02:30:53
  39665. 9788 2005-07-31 10:28:21 4367 344 2005-08-09 13:45:21 1 2006-02-16 02:30:53
  39666. 9789 2005-07-31 10:30:25 619 137 2005-08-03 14:58:25 1 2006-02-16 02:30:53
  39667. 9790 2005-07-31 10:34:08 3643 284 2005-08-04 11:19:08 2 2006-02-16 02:30:53
  39668. 9791 2005-07-31 10:35:22 3642 300 2005-08-03 05:34:22 1 2006-02-16 02:30:53
  39669. 9792 2005-07-31 10:43:41 3163 292 2005-08-07 10:18:41 1 2006-02-16 02:30:53
  39670. 9793 2005-07-31 10:45:11 4576 295 2005-08-03 14:29:11 1 2006-02-16 02:30:53
  39671. 9794 2005-07-31 10:47:01 1771 403 2005-08-02 06:52:01 2 2006-02-16 02:30:53
  39672. 9795 2005-07-31 10:47:19 2005 63 2005-08-04 09:32:19 2 2006-02-16 02:30:53
  39673. 9796 2005-07-31 10:52:43 1038 539 2005-08-09 06:08:43 1 2006-02-16 02:30:53
  39674. 9797 2005-07-31 10:53:44 687 52 2005-08-09 05:51:44 1 2006-02-16 02:30:53
  39675. 9798 2005-07-31 10:55:18 3759 55 2005-08-01 07:37:18 2 2006-02-16 02:30:53
  39676. 9799 2005-07-31 10:58:32 3008 494 2005-08-01 12:08:32 1 2006-02-16 02:30:53
  39677. 9800 2005-07-31 11:00:58 2153 257 2005-08-02 10:13:58 2 2006-02-16 02:30:53
  39678. 9801 2005-07-31 11:03:13 3033 158 2005-08-04 10:55:13 2 2006-02-16 02:30:53
  39679. 9802 2005-07-31 11:04:20 2156 594 2005-08-03 05:28:20 1 2006-02-16 02:30:53
  39680. 9803 2005-07-31 11:06:02 3783 520 2005-08-01 06:25:02 1 2006-02-16 02:30:53
  39681. 9804 2005-07-31 11:07:39 2490 196 2005-08-09 11:57:39 1 2006-02-16 02:30:53
  39682. 9805 2005-07-31 11:11:10 4179 36 2005-08-03 07:36:10 2 2006-02-16 02:30:53
  39683. 9806 2005-07-31 11:13:49 245 46 2005-08-04 06:18:49 1 2006-02-16 02:30:53
  39684. 9807 2005-07-31 11:13:52 2137 267 2005-08-02 07:34:52 1 2006-02-16 02:30:53
  39685. 9808 2005-07-31 11:17:22 3259 583 2005-08-07 15:54:22 1 2006-02-16 02:30:53
  39686. 9809 2005-07-31 11:19:21 359 286 2005-08-08 12:43:21 2 2006-02-16 02:30:53
  39687. 9810 2005-07-31 11:22:41 2066 545 2005-08-01 09:40:41 2 2006-02-16 02:30:53
  39688. 9811 2005-07-31 11:23:45 3305 77 2005-08-06 15:51:45 1 2006-02-16 02:30:53
  39689. 9812 2005-07-31 11:28:07 1540 57 2005-08-01 12:35:07 2 2006-02-16 02:30:53
  39690. 9813 2005-07-31 11:29:23 1706 245 2005-08-07 08:01:23 2 2006-02-16 02:30:53
  39691. 9814 2005-07-31 11:29:46 136 79 2005-08-08 15:49:46 1 2006-02-16 02:30:53
  39692. 9815 2005-07-31 11:30:51 2728 540 2005-08-08 12:52:51 1 2006-02-16 02:30:53
  39693. 9816 2005-07-31 11:32:58 4560 3 2005-08-04 17:12:58 2 2006-02-16 02:30:53
  39694. 9817 2005-07-31 11:33:31 4019 170 2005-08-08 14:49:31 2 2006-02-16 02:30:53
  39695. 9818 2005-07-31 11:34:32 1254 183 2005-08-04 08:20:32 1 2006-02-16 02:30:53
  39696. 9819 2005-07-31 11:39:13 1927 292 2005-08-06 09:11:13 2 2006-02-16 02:30:53
  39697. 9820 2005-07-31 11:46:57 499 279 2005-08-08 13:35:57 1 2006-02-16 02:30:53
  39698. 9821 2005-07-31 11:47:54 386 271 2005-08-08 06:21:54 2 2006-02-16 02:30:53
  39699. 9822 2005-07-31 11:48:25 2469 381 2005-08-05 15:52:25 2 2006-02-16 02:30:53
  39700. 9823 2005-07-31 11:49:00 4423 129 2005-08-07 09:06:00 2 2006-02-16 02:30:53
  39701. 9824 2005-07-31 11:49:55 4368 404 2005-08-07 16:54:55 2 2006-02-16 02:30:53
  39702. 9825 2005-07-31 11:50:51 4322 390 2005-08-02 07:18:51 1 2006-02-16 02:30:53
  39703. 9826 2005-07-31 11:51:46 2649 595 2005-08-09 17:18:46 1 2006-02-16 02:30:53
  39704. 9827 2005-07-31 11:56:55 3840 329 2005-08-09 16:29:55 1 2006-02-16 02:30:53
  39705. 9828 2005-07-31 11:56:57 3845 376 2005-08-02 17:05:57 1 2006-02-16 02:30:53
  39706. 9829 2005-07-31 11:58:38 231 435 2005-08-07 08:11:38 2 2006-02-16 02:30:53
  39707. 9830 2005-07-31 11:59:05 170 112 2005-08-06 10:38:05 1 2006-02-16 02:30:53
  39708. 9831 2005-07-31 11:59:32 1961 192 2005-08-04 07:14:32 1 2006-02-16 02:30:53
  39709. 9832 2005-07-31 12:01:49 3126 64 2005-08-08 09:21:49 1 2006-02-16 02:30:53
  39710. 9833 2005-07-31 12:05:01 4243 368 2005-08-09 09:25:01 2 2006-02-16 02:30:53
  39711. 9834 2005-07-31 12:05:42 2292 340 2005-08-07 15:26:42 1 2006-02-16 02:30:53
  39712. 9835 2005-07-31 12:07:35 1051 328 2005-08-04 07:32:35 2 2006-02-16 02:30:53
  39713. 9836 2005-07-31 12:12:00 2870 313 2005-08-09 06:53:00 1 2006-02-16 02:30:53
  39714. 9837 2005-07-31 12:14:19 3488 573 2005-08-09 17:08:19 1 2006-02-16 02:30:53
  39715. 9838 2005-07-31 12:18:49 3866 208 2005-08-03 16:49:49 2 2006-02-16 02:30:53
  39716. 9839 2005-07-31 12:21:16 1591 561 2005-08-09 13:41:16 2 2006-02-16 02:30:53
  39717. 9840 2005-07-31 12:23:18 364 388 2005-08-06 15:59:18 1 2006-02-16 02:30:53
  39718. 9841 2005-07-31 12:24:19 4554 238 2005-08-09 15:31:19 1 2006-02-16 02:30:53
  39719. 9842 2005-07-31 12:24:58 2896 261 2005-08-02 11:01:58 2 2006-02-16 02:30:53
  39720. 9843 2005-07-31 12:25:28 2923 532 2005-08-01 09:51:28 2 2006-02-16 02:30:53
  39721. 9844 2005-07-31 12:26:31 3930 181 2005-08-05 13:58:31 1 2006-02-16 02:30:53
  39722. 9845 2005-07-31 12:28:05 2417 79 2005-08-06 06:47:05 1 2006-02-16 02:30:53
  39723. 9846 2005-07-31 12:30:12 4240 573 2005-08-05 08:24:12 2 2006-02-16 02:30:53
  39724. 9847 2005-07-31 12:33:43 1137 174 2005-08-04 14:15:43 2 2006-02-16 02:30:53
  39725. 9848 2005-07-31 12:44:33 3290 346 2005-08-07 13:49:33 2 2006-02-16 02:30:53
  39726. 9849 2005-07-31 12:44:34 2230 429 2005-08-02 16:49:34 1 2006-02-16 02:30:53
  39727. 9850 2005-07-31 12:46:52 1461 497 2005-08-04 10:52:52 2 2006-02-16 02:30:53
  39728. 9851 2005-07-31 12:50:24 25 49 2005-08-08 08:30:24 2 2006-02-16 02:30:53
  39729. 9852 2005-07-31 12:52:17 4257 415 2005-08-05 07:59:17 2 2006-02-16 02:30:53
  39730. 9853 2005-07-31 12:58:20 1782 221 2005-08-04 10:47:20 1 2006-02-16 02:30:53
  39731. 9854 2005-07-31 12:59:34 1049 441 2005-08-03 07:20:34 2 2006-02-16 02:30:53
  39732. 9855 2005-07-31 13:00:33 1246 326 2005-08-03 16:18:33 2 2006-02-16 02:30:53
  39733. 9856 2005-07-31 13:00:35 723 347 2005-08-07 18:07:35 1 2006-02-16 02:30:53
  39734. 9857 2005-07-31 13:00:53 3316 168 2005-08-09 15:56:53 1 2006-02-16 02:30:53
  39735. 9858 2005-07-31 13:02:07 252 128 2005-08-03 15:14:07 2 2006-02-16 02:30:53
  39736. 9859 2005-07-31 13:02:55 4094 127 2005-08-05 11:04:55 1 2006-02-16 02:30:53
  39737. 9860 2005-07-31 13:03:24 3266 585 2005-08-07 07:28:24 2 2006-02-16 02:30:53
  39738. 9861 2005-07-31 13:04:14 1050 264 2005-08-09 15:22:14 1 2006-02-16 02:30:53
  39739. 9862 2005-07-31 13:05:03 474 513 2005-08-01 09:05:03 2 2006-02-16 02:30:53
  39740. 9863 2005-07-31 13:05:29 19 239 2005-08-08 12:33:29 1 2006-02-16 02:30:53
  39741. 9864 2005-07-31 13:06:54 3619 394 2005-08-02 11:47:54 2 2006-02-16 02:30:53
  39742. 9865 2005-07-31 13:10:45 1355 580 2005-08-02 09:19:45 2 2006-02-16 02:30:53
  39743. 9866 2005-07-31 13:13:50 3555 374 2005-08-07 15:11:50 1 2006-02-16 02:30:53
  39744. 9867 2005-07-31 13:17:04 2485 83 2005-08-05 07:17:04 2 2006-02-16 02:30:53
  39745. 9868 2005-07-31 13:20:08 266 378 2005-08-01 18:17:08 2 2006-02-16 02:30:53
  39746. 9869 2005-07-31 13:21:54 783 261 2005-08-07 09:09:54 1 2006-02-16 02:30:53
  39747. 9870 2005-07-31 13:22:51 442 195 2005-08-05 16:04:51 1 2006-02-16 02:30:53
  39748. 9871 2005-07-31 13:25:46 194 109 2005-08-01 13:12:46 2 2006-02-16 02:30:53
  39749. 9872 2005-07-31 13:27:55 1021 376 2005-08-04 14:33:55 1 2006-02-16 02:30:53
  39750. 9873 2005-07-31 13:32:18 667 442 2005-08-06 11:15:18 2 2006-02-16 02:30:53
  39751. 9874 2005-07-31 13:32:31 2476 482 2005-08-07 09:50:31 2 2006-02-16 02:30:53
  39752. 9875 2005-07-31 13:37:41 2878 421 2005-08-03 15:17:41 2 2006-02-16 02:30:53
  39753. 9876 2005-07-31 13:37:51 828 347 2005-08-07 18:05:51 2 2006-02-16 02:30:53
  39754. 9877 2005-07-31 13:41:57 1299 559 2005-08-06 15:27:57 2 2006-02-16 02:30:53
  39755. 9878 2005-07-31 13:42:02 1753 424 2005-08-05 10:15:02 2 2006-02-16 02:30:53
  39756. 9879 2005-07-31 13:45:32 1935 178 2005-08-07 17:12:32 1 2006-02-16 02:30:53
  39757. 9880 2005-07-31 13:49:02 3590 64 2005-08-08 10:31:02 2 2006-02-16 02:30:53
  39758. 9881 2005-07-31 13:50:38 4209 412 2005-08-06 08:58:38 1 2006-02-16 02:30:53
  39759. 9882 2005-07-31 13:53:33 1429 311 2005-08-09 15:55:33 1 2006-02-16 02:30:53
  39760. 9883 2005-07-31 13:53:37 4286 356 2005-08-06 15:45:37 1 2006-02-16 02:30:53
  39761. 9884 2005-07-31 13:56:24 511 590 2005-08-01 16:59:24 1 2006-02-16 02:30:53
  39762. 9885 2005-07-31 13:59:32 3600 461 2005-08-07 12:30:32 2 2006-02-16 02:30:53
  39763. 9886 2005-07-31 14:00:13 1386 519 2005-08-08 19:30:13 1 2006-02-16 02:30:53
  39764. 9887 2005-07-31 14:00:32 436 549 2005-08-05 19:16:32 1 2006-02-16 02:30:53
  39765. 9888 2005-07-31 14:00:53 4400 5 2005-08-08 18:51:53 2 2006-02-16 02:30:53
  39766. 9889 2005-07-31 14:02:50 2842 143 2005-08-05 12:09:50 2 2006-02-16 02:30:53
  39767. 9890 2005-07-31 14:04:44 1024 151 2005-08-01 11:24:44 1 2006-02-16 02:30:53
  39768. 9891 2005-07-31 14:05:44 3359 462 2005-08-02 16:21:44 2 2006-02-16 02:30:53
  39769. 9892 2005-07-31 14:06:25 1045 251 2005-08-03 18:11:25 2 2006-02-16 02:30:53
  39770. 9893 2005-07-31 14:07:21 2445 179 2005-08-01 09:20:21 2 2006-02-16 02:30:53
  39771. 9894 2005-07-31 14:07:44 3724 199 2005-08-05 18:01:44 2 2006-02-16 02:30:53
  39772. 9895 2005-07-31 14:07:56 835 560 2005-08-05 14:56:56 1 2006-02-16 02:30:53
  39773. 9896 2005-07-31 14:09:48 2591 586 2005-08-01 20:02:48 1 2006-02-16 02:30:53
  39774. 9897 2005-07-31 14:11:57 3945 538 2005-08-02 12:20:57 1 2006-02-16 02:30:53
  39775. 9898 2005-07-31 14:12:03 2151 359 2005-08-01 12:27:03 1 2006-02-16 02:30:53
  39776. 9899 2005-07-31 14:12:36 3352 168 2005-08-08 08:59:36 1 2006-02-16 02:30:53
  39777. 9900 2005-07-31 14:15:05 3132 453 2005-08-07 11:58:05 2 2006-02-16 02:30:53
  39778. 9901 2005-07-31 14:20:59 3332 277 2005-08-03 09:30:59 1 2006-02-16 02:30:53
  39779. 9902 2005-07-31 14:24:33 486 218 2005-08-09 11:11:33 2 2006-02-16 02:30:53
  39780. 9903 2005-07-31 14:31:44 1621 316 2005-08-08 20:03:44 1 2006-02-16 02:30:53
  39781. 9904 2005-07-31 14:34:17 4089 428 2005-08-08 17:19:17 1 2006-02-16 02:30:53
  39782. 9905 2005-07-31 14:37:03 2839 519 2005-08-01 15:55:03 2 2006-02-16 02:30:53
  39783. 9906 2005-07-31 14:38:12 4241 204 2005-08-01 13:56:12 1 2006-02-16 02:30:53
  39784. 9907 2005-07-31 14:39:50 4282 120 2005-08-09 09:39:50 1 2006-02-16 02:30:53
  39785. 9908 2005-07-31 14:39:52 4408 27 2005-08-09 09:46:52 2 2006-02-16 02:30:53
  39786. 9909 2005-07-31 14:43:34 2600 587 2005-08-09 15:31:34 1 2006-02-16 02:30:53
  39787. 9910 2005-07-31 14:47:57 368 122 2005-08-05 18:20:57 1 2006-02-16 02:30:53
  39788. 9911 2005-07-31 14:48:01 3879 112 2005-08-06 11:55:01 1 2006-02-16 02:30:53
  39789. 9912 2005-07-31 14:49:04 3119 367 2005-08-03 15:40:04 1 2006-02-16 02:30:53
  39790. 9913 2005-07-31 14:51:04 3744 229 2005-08-06 12:12:04 1 2006-02-16 02:30:53
  39791. 9914 2005-07-31 14:51:19 3147 530 2005-08-05 09:51:19 1 2006-02-16 02:30:53
  39792. 9915 2005-07-31 14:52:26 2933 566 2005-08-03 11:53:26 1 2006-02-16 02:30:53
  39793. 9916 2005-07-31 14:54:52 949 432 2005-08-07 13:18:52 1 2006-02-16 02:30:53
  39794. 9917 2005-07-31 14:55:11 3829 159 2005-08-02 13:58:11 2 2006-02-16 02:30:53
  39795. 9918 2005-07-31 14:55:22 2519 283 2005-08-04 09:02:22 2 2006-02-16 02:30:53
  39796. 9919 2005-07-31 14:55:46 3205 291 2005-08-08 11:43:46 2 2006-02-16 02:30:53
  39797. 9920 2005-07-31 14:57:13 3108 139 2005-08-03 18:58:13 2 2006-02-16 02:30:53
  39798. 9921 2005-07-31 14:59:21 1004 332 2005-08-01 12:40:21 2 2006-02-16 02:30:53
  39799. 9922 2005-07-31 14:59:37 3615 25 2005-08-06 14:05:37 1 2006-02-16 02:30:53
  39800. 9923 2005-07-31 15:00:15 1635 209 2005-08-05 11:09:15 2 2006-02-16 02:30:53
  39801. 9924 2005-07-31 15:04:57 1986 64 2005-08-05 20:07:57 2 2006-02-16 02:30:53
  39802. 9925 2005-07-31 15:08:47 2351 24 2005-08-02 20:27:47 1 2006-02-16 02:30:53
  39803. 9926 2005-07-31 15:11:51 3733 472 2005-08-09 18:26:51 1 2006-02-16 02:30:53
  39804. 9927 2005-07-31 15:12:13 999 346 2005-08-01 11:37:13 1 2006-02-16 02:30:53
  39805. 9928 2005-07-31 15:13:57 3627 53 2005-08-06 20:39:57 1 2006-02-16 02:30:53
  39806. 9929 2005-07-31 15:17:24 2521 564 2005-08-03 17:27:24 1 2006-02-16 02:30:53
  39807. 9930 2005-07-31 15:18:03 4491 304 2005-08-01 12:36:03 2 2006-02-16 02:30:53
  39808. 9931 2005-07-31 15:18:19 3455 183 2005-08-04 14:23:19 2 2006-02-16 02:30:53
  39809. 9932 2005-07-31 15:19:48 1691 264 2005-08-05 21:09:48 1 2006-02-16 02:30:53
  39810. 9933 2005-07-31 15:24:46 2349 111 2005-08-01 10:00:46 1 2006-02-16 02:30:53
  39811. 9934 2005-07-31 15:25:26 2492 236 2005-08-05 17:13:26 1 2006-02-16 02:30:53
  39812. 9935 2005-07-31 15:27:07 2247 10 2005-08-05 11:23:07 1 2006-02-16 02:30:53
  39813. 9936 2005-07-31 15:27:41 979 153 2005-08-06 16:25:41 1 2006-02-16 02:30:53
  39814. 9937 2005-07-31 15:28:10 3697 521 2005-08-06 21:20:10 2 2006-02-16 02:30:53
  39815. 9938 2005-07-31 15:28:47 2871 63 2005-08-09 21:24:47 2 2006-02-16 02:30:53
  39816. 9939 2005-07-31 15:29:00 3049 538 2005-08-08 11:09:00 1 2006-02-16 02:30:53
  39817. 9940 2005-07-31 15:29:06 3975 388 2005-08-06 14:26:06 2 2006-02-16 02:30:53
  39818. 9941 2005-07-31 15:31:25 1756 175 2005-08-05 17:23:25 1 2006-02-16 02:30:53
  39819. 9942 2005-07-31 15:35:43 4573 545 2005-08-07 17:37:43 2 2006-02-16 02:30:53
  39820. 9943 2005-07-31 15:37:29 887 494 2005-08-09 18:25:29 1 2006-02-16 02:30:53
  39821. 9944 2005-07-31 15:44:43 2540 241 2005-08-08 10:30:43 1 2006-02-16 02:30:53
  39822. 9945 2005-07-31 15:47:51 2075 309 2005-08-02 19:06:51 1 2006-02-16 02:30:53
  39823. 9946 2005-07-31 15:48:54 2100 29 2005-08-03 12:42:54 2 2006-02-16 02:30:53
  39824. 9947 2005-07-31 15:49:40 1173 138 2005-08-08 11:11:40 1 2006-02-16 02:30:53
  39825. 9948 2005-07-31 15:49:41 806 342 2005-08-06 12:36:41 1 2006-02-16 02:30:53
  39826. 9949 2005-07-31 15:50:10 3258 309 2005-08-01 17:53:10 2 2006-02-16 02:30:53
  39827. 9950 2005-07-31 15:50:22 1657 572 2005-08-08 19:10:22 2 2006-02-16 02:30:53
  39828. 9951 2005-07-31 15:51:16 4412 95 2005-08-03 14:54:16 1 2006-02-16 02:30:53
  39829. 9952 2005-07-31 15:52:37 1634 128 2005-08-06 10:50:37 2 2006-02-16 02:30:53
  39830. 9953 2005-07-31 15:56:35 1646 211 2005-08-02 12:01:35 2 2006-02-16 02:30:53
  39831. 9954 2005-07-31 15:57:07 1830 463 2005-08-05 12:04:07 2 2006-02-16 02:30:53
  39832. 9955 2005-07-31 16:01:26 1745 342 2005-08-04 11:15:26 2 2006-02-16 02:30:53
  39833. 9956 2005-07-31 16:03:47 4485 342 2005-08-01 16:40:47 2 2006-02-16 02:30:53
  39834. 9957 2005-07-31 16:03:55 1857 85 2005-08-04 15:16:55 2 2006-02-16 02:30:53
  39835. 9958 2005-07-31 16:03:56 4142 157 2005-08-04 15:21:56 2 2006-02-16 02:30:53
  39836. 9959 2005-07-31 16:04:22 340 199 2005-08-03 21:51:22 2 2006-02-16 02:30:53
  39837. 9960 2005-07-31 16:05:52 1022 569 2005-08-05 14:15:52 2 2006-02-16 02:30:53
  39838. 9961 2005-07-31 16:07:50 1856 40 2005-08-07 18:37:50 2 2006-02-16 02:30:53
  39839. 9962 2005-07-31 16:10:36 1951 576 2005-08-02 17:09:36 1 2006-02-16 02:30:53
  39840. 9963 2005-07-31 16:16:46 1609 573 2005-08-02 22:00:46 1 2006-02-16 02:30:53
  39841. 9964 2005-07-31 16:17:39 3149 191 2005-08-03 15:03:39 1 2006-02-16 02:30:53
  39842. 9965 2005-07-31 16:19:32 3946 101 2005-08-05 20:18:32 2 2006-02-16 02:30:53
  39843. 9966 2005-07-31 16:26:46 4137 373 2005-08-03 14:29:46 1 2006-02-16 02:30:53
  39844. 9967 2005-07-31 16:31:17 958 537 2005-08-06 13:52:17 1 2006-02-16 02:30:53
  39845. 9968 2005-07-31 16:32:16 2666 363 2005-08-08 12:23:16 1 2006-02-16 02:30:53
  39846. 9969 2005-07-31 16:38:12 938 151 2005-08-05 11:45:12 2 2006-02-16 02:30:53
  39847. 9970 2005-07-31 16:38:24 2846 578 2005-08-02 12:59:24 2 2006-02-16 02:30:53
  39848. 9971 2005-07-31 16:42:16 2674 573 2005-08-09 18:08:16 2 2006-02-16 02:30:53
  39849. 9972 2005-07-31 16:42:43 190 506 2005-08-02 11:05:43 2 2006-02-16 02:30:53
  39850. 9973 2005-07-31 16:49:31 1850 369 2005-08-03 22:03:31 2 2006-02-16 02:30:53
  39851. 9974 2005-07-31 16:51:11 430 503 2005-08-05 16:04:11 1 2006-02-16 02:30:53
  39852. 9975 2005-07-31 16:53:43 2564 40 2005-08-07 20:13:43 2 2006-02-16 02:30:53
  39853. 9976 2005-07-31 16:57:49 4219 579 2005-08-03 16:33:49 2 2006-02-16 02:30:53
  39854. 9977 2005-07-31 16:58:42 2300 363 2005-08-09 13:34:42 1 2006-02-16 02:30:53
  39855. 9978 2005-07-31 16:59:51 2812 427 2005-08-06 16:48:51 2 2006-02-16 02:30:53
  39856. 9979 2005-07-31 17:00:07 646 576 2005-08-08 20:40:07 1 2006-02-16 02:30:53
  39857. 9980 2005-07-31 17:02:00 122 225 2005-08-08 11:11:00 2 2006-02-16 02:30:53
  39858. 9981 2005-07-31 17:08:31 1354 321 2005-08-01 22:46:31 2 2006-02-16 02:30:53
  39859. 9982 2005-07-31 17:09:02 2698 428 2005-08-02 13:02:02 2 2006-02-16 02:30:53
  39860. 9983 2005-07-31 17:09:36 350 129 2005-08-08 20:26:36 1 2006-02-16 02:30:53
  39861. 9984 2005-07-31 17:12:23 433 432 2005-08-01 21:04:23 2 2006-02-16 02:30:53
  39862. 9985 2005-07-31 17:14:47 1831 85 2005-08-01 12:11:47 2 2006-02-16 02:30:53
  39863. 9986 2005-07-31 17:16:50 1242 124 2005-08-05 18:34:50 2 2006-02-16 02:30:53
  39864. 9987 2005-07-31 17:22:35 1619 15 2005-08-01 21:19:35 2 2006-02-16 02:30:53
  39865. 9988 2005-07-31 17:22:36 3844 243 2005-08-07 18:35:36 2 2006-02-16 02:30:53
  39866. 9989 2005-07-31 17:22:39 1713 79 2005-08-01 18:55:39 1 2006-02-16 02:30:53
  39867. 9990 2005-07-31 17:24:21 4481 555 2005-08-09 17:14:21 2 2006-02-16 02:30:53
  39868. 9991 2005-07-31 17:26:27 3662 414 2005-08-03 17:36:27 1 2006-02-16 02:30:53
  39869. 9992 2005-07-31 17:29:48 4242 304 2005-08-09 13:02:48 2 2006-02-16 02:30:53
  39870. 9993 2005-07-31 17:30:20 2503 225 2005-08-01 20:53:20 2 2006-02-16 02:30:53
  39871. 9994 2005-07-31 17:30:31 2155 195 2005-08-01 11:35:31 1 2006-02-16 02:30:53
  39872. 9995 2005-07-31 17:30:47 1978 180 2005-08-04 12:20:47 2 2006-02-16 02:30:53
  39873. 9996 2005-07-31 17:32:03 3271 104 2005-08-06 16:17:03 2 2006-02-16 02:30:53
  39874. 9997 2005-07-31 17:37:30 640 579 2005-08-02 14:49:30 1 2006-02-16 02:30:53
  39875. 9998 2005-07-31 17:40:35 2549 30 2005-08-04 18:15:35 1 2006-02-16 02:30:53
  39876. 9999 2005-07-31 17:40:53 1438 543 2005-08-01 14:25:53 1 2006-02-16 02:30:53
  39877. 10000 2005-07-31 17:41:05 3221 576 2005-08-02 20:51:05 1 2006-02-16 02:30:53
  39878. 10001 2005-07-31 17:46:18 2188 244 2005-08-07 20:38:18 1 2006-02-16 02:30:53
  39879. 10002 2005-07-31 17:48:16 1002 323 2005-08-06 16:15:16 1 2006-02-16 02:30:53
  39880. 10003 2005-07-31 17:48:51 1603 13 2005-08-02 14:23:51 1 2006-02-16 02:30:53
  39881. 10004 2005-07-31 17:51:23 2396 570 2005-08-03 19:12:23 1 2006-02-16 02:30:53
  39882. 10005 2005-07-31 17:53:51 928 454 2005-08-09 21:39:51 1 2006-02-16 02:30:53
  39883. 10006 2005-07-31 17:54:35 2538 470 2005-08-02 20:40:35 2 2006-02-16 02:30:53
  39884. 10007 2005-07-31 17:54:58 293 445 2005-08-05 17:24:58 2 2006-02-16 02:30:53
  39885. 10008 2005-07-31 17:59:36 2589 91 2005-08-03 22:43:36 2 2006-02-16 02:30:53
  39886. 10009 2005-07-31 18:00:28 4441 437 2005-08-08 22:24:28 2 2006-02-16 02:30:53
  39887. 10010 2005-07-31 18:01:36 2655 373 2005-08-07 20:27:36 2 2006-02-16 02:30:53
  39888. 10011 2005-07-31 18:02:41 606 128 2005-08-08 17:04:41 1 2006-02-16 02:30:53
  39889. 10012 2005-07-31 18:06:06 2554 513 2005-08-09 16:47:06 2 2006-02-16 02:30:53
  39890. 10013 2005-07-31 18:08:21 2364 377 2005-08-08 13:22:21 2 2006-02-16 02:30:53
  39891. 10014 2005-07-31 18:10:56 2344 443 2005-08-02 23:36:56 1 2006-02-16 02:30:53
  39892. 10015 2005-07-31 18:11:17 67 153 2005-08-03 15:48:17 2 2006-02-16 02:30:53
  39893. 10016 2005-07-31 18:13:06 2183 478 2005-08-09 22:11:06 1 2006-02-16 02:30:53
  39894. 10017 2005-07-31 18:13:22 1495 424 2005-08-05 16:03:22 1 2006-02-16 02:30:53
  39895. 10018 2005-07-31 18:15:14 3708 481 2005-08-05 14:44:14 2 2006-02-16 02:30:53
  39896. 10019 2005-07-31 18:20:56 2114 536 2005-08-07 14:25:56 1 2006-02-16 02:30:53
  39897. 10020 2005-07-31 18:21:08 302 526 2005-08-02 14:03:08 2 2006-02-16 02:30:53
  39898. 10021 2005-07-31 18:24:39 3235 597 2005-08-01 19:16:39 1 2006-02-16 02:30:53
  39899. 10022 2005-07-31 18:25:30 1900 115 2005-08-04 13:35:30 1 2006-02-16 02:30:53
  39900. 10023 2005-07-31 18:25:51 384 318 2005-08-09 18:00:51 1 2006-02-16 02:30:53
  39901. 10024 2005-07-31 18:26:36 265 129 2005-08-09 16:16:36 1 2006-02-16 02:30:53
  39902. 10025 2005-07-31 18:29:09 475 565 2005-08-07 14:20:09 2 2006-02-16 02:30:53
  39903. 10026 2005-07-31 18:31:51 39 332 2005-08-03 21:14:51 2 2006-02-16 02:30:53
  39904. 10027 2005-07-31 18:33:51 525 287 2005-08-09 18:40:51 1 2006-02-16 02:30:53
  39905. 10028 2005-07-31 18:35:54 2305 323 2005-08-01 13:01:54 2 2006-02-16 02:30:53
  39906. 10029 2005-07-31 18:37:47 505 578 2005-08-06 14:58:47 2 2006-02-16 02:30:53
  39907. 10030 2005-07-31 18:39:36 1392 325 2005-08-03 15:29:36 2 2006-02-16 02:30:53
  39908. 10031 2005-07-31 18:40:15 3048 96 2005-08-03 14:38:15 1 2006-02-16 02:30:53
  39909. 10032 2005-07-31 18:41:55 2331 126 2005-08-04 22:45:55 1 2006-02-16 02:30:53
  39910. 10033 2005-07-31 18:44:29 4480 381 2005-08-04 19:52:29 1 2006-02-16 02:30:53
  39911. 10034 2005-07-31 18:45:30 354 442 2005-08-04 21:13:30 2 2006-02-16 02:30:53
  39912. 10035 2005-07-31 18:46:46 2694 333 2005-08-04 20:33:46 1 2006-02-16 02:30:53
  39913. 10036 2005-07-31 18:47:20 41 491 2005-08-03 22:53:20 1 2006-02-16 02:30:53
  39914. 10037 2005-07-31 18:48:08 438 58 2005-08-09 19:11:08 2 2006-02-16 02:30:53
  39915. 10038 2005-07-31 18:49:12 3727 112 2005-08-01 18:02:12 1 2006-02-16 02:30:53
  39916. 10039 2005-07-31 18:50:40 4391 111 2005-08-01 18:49:40 2 2006-02-16 02:30:53
  39917. 10040 2005-07-31 18:54:15 2281 268 2005-08-05 17:33:15 2 2006-02-16 02:30:53
  39918. 10041 2005-07-31 19:01:02 2994 379 2005-08-07 21:32:02 1 2006-02-16 02:30:53
  39919. 10042 2005-07-31 19:01:25 123 204 2005-08-06 14:21:25 1 2006-02-16 02:30:53
  39920. 10043 2005-07-31 19:02:07 2558 222 2005-08-07 17:58:07 1 2006-02-16 02:30:53
  39921. 10044 2005-07-31 19:02:33 3349 388 2005-08-05 13:24:33 2 2006-02-16 02:30:53
  39922. 10045 2005-07-31 19:04:35 58 118 2005-08-07 16:53:35 1 2006-02-16 02:30:53
  39923. 10046 2005-07-31 19:07:11 4302 50 2005-08-03 13:25:11 1 2006-02-16 02:30:53
  39924. 10047 2005-07-31 19:07:43 4195 244 2005-08-07 00:20:43 2 2006-02-16 02:30:53
  39925. 10048 2005-07-31 19:08:56 3821 267 2005-08-05 20:15:56 2 2006-02-16 02:30:53
  39926. 10049 2005-07-31 19:11:11 854 457 2005-08-03 22:15:11 1 2006-02-16 02:30:53
  39927. 10050 2005-07-31 19:13:29 295 230 2005-08-06 15:44:29 1 2006-02-16 02:30:53
  39928. 10051 2005-07-31 19:14:20 163 74 2005-08-05 19:45:20 1 2006-02-16 02:30:53
  39929. 10052 2005-07-31 19:15:13 3307 39 2005-08-07 22:47:13 2 2006-02-16 02:30:53
  39930. 10053 2005-07-31 19:15:39 4102 223 2005-08-07 22:32:39 1 2006-02-16 02:30:53
  39931. 10054 2005-07-31 19:15:52 2303 598 2005-08-04 19:54:52 1 2006-02-16 02:30:53
  39932. 10055 2005-07-31 19:15:58 2725 336 2005-08-05 20:23:58 1 2006-02-16 02:30:53
  39933. 10056 2005-07-31 19:19:13 281 237 2005-08-01 16:09:13 2 2006-02-16 02:30:53
  39934. 10057 2005-07-31 19:20:18 3485 230 2005-08-08 17:59:18 2 2006-02-16 02:30:53
  39935. 10058 2005-07-31 19:20:21 758 237 2005-08-04 00:41:21 2 2006-02-16 02:30:53
  39936. 10059 2005-07-31 19:20:49 2020 274 2005-08-03 14:39:49 1 2006-02-16 02:30:53
  39937. 10060 2005-07-31 19:23:00 1979 42 2005-08-08 19:07:00 1 2006-02-16 02:30:53
  39938. 10061 2005-07-31 19:23:25 1401 390 2005-08-04 19:38:25 1 2006-02-16 02:30:53
  39939. 10062 2005-07-31 19:24:55 1815 333 2005-08-03 22:51:55 2 2006-02-16 02:30:53
  39940. 10063 2005-07-31 19:25:13 3003 517 2005-08-09 15:55:13 1 2006-02-16 02:30:53
  39941. 10064 2005-07-31 19:27:02 3140 41 2005-08-06 21:15:02 1 2006-02-16 02:30:53
  39942. 10065 2005-07-31 19:27:34 1426 495 2005-08-01 13:45:34 2 2006-02-16 02:30:53
  39943. 10066 2005-07-31 19:30:01 4285 123 2005-08-01 14:45:01 2 2006-02-16 02:30:53
  39944. 10067 2005-07-31 19:37:58 1940 148 2005-08-04 17:32:58 2 2006-02-16 02:30:53
  39945. 10068 2005-07-31 19:39:38 4000 58 2005-08-05 22:49:38 1 2006-02-16 02:30:53
  39946. 10069 2005-07-31 19:43:18 2168 270 2005-08-06 19:40:18 2 2006-02-16 02:30:53
  39947. 10070 2005-07-31 19:46:29 1010 325 2005-08-03 22:21:29 1 2006-02-16 02:30:53
  39948. 10071 2005-07-31 19:49:35 2360 353 2005-08-03 00:00:35 2 2006-02-16 02:30:53
  39949. 10072 2005-07-31 19:50:37 3963 520 2005-08-03 00:25:37 2 2006-02-16 02:30:53
  39950. 10073 2005-07-31 19:53:15 4246 584 2005-08-05 23:12:15 2 2006-02-16 02:30:53
  39951. 10074 2005-07-31 19:57:16 1268 69 2005-08-04 00:54:16 1 2006-02-16 02:30:53
  39952. 10075 2005-07-31 19:58:42 2037 469 2005-08-08 19:49:42 1 2006-02-16 02:30:53
  39953. 10076 2005-07-31 20:00:34 1117 555 2005-08-10 00:37:34 2 2006-02-16 02:30:53
  39954. 10077 2005-07-31 20:01:06 2333 19 2005-08-09 16:07:06 1 2006-02-16 02:30:53
  39955. 10078 2005-07-31 20:02:02 3198 151 2005-08-04 00:45:02 1 2006-02-16 02:30:53
  39956. 10079 2005-07-31 20:05:45 4541 486 2005-08-04 16:25:45 2 2006-02-16 02:30:53
  39957. 10080 2005-07-31 20:07:10 4355 62 2005-08-04 23:07:10 2 2006-02-16 02:30:53
  39958. 10081 2005-07-31 20:07:44 3183 443 2005-08-06 20:04:44 1 2006-02-16 02:30:53
  39959. 10082 2005-07-31 20:09:32 1275 76 2005-08-01 15:41:32 2 2006-02-16 02:30:53
  39960. 10083 2005-07-31 20:10:19 2585 449 2005-08-06 23:18:19 1 2006-02-16 02:30:53
  39961. 10084 2005-07-31 20:11:29 524 528 2005-08-06 22:28:29 2 2006-02-16 02:30:53
  39962. 10085 2005-07-31 20:12:02 2556 392 2005-08-03 00:03:02 2 2006-02-16 02:30:53
  39963. 10086 2005-07-31 20:14:08 2853 205 2005-08-07 01:33:08 2 2006-02-16 02:30:53
  39964. 10087 2005-07-31 20:15:22 1393 245 2005-08-07 01:33:22 1 2006-02-16 02:30:53
  39965. 10088 2005-07-31 20:16:21 4293 46 2005-08-01 22:47:21 2 2006-02-16 02:30:53
  39966. 10089 2005-07-31 20:17:09 248 160 2005-08-01 19:14:09 2 2006-02-16 02:30:53
  39967. 10090 2005-07-31 20:22:01 4023 533 2005-08-04 17:30:01 1 2006-02-16 02:30:53
  39968. 10091 2005-07-31 20:23:13 1878 135 2005-08-02 21:58:13 2 2006-02-16 02:30:53
  39969. 10092 2005-07-31 20:28:09 4151 364 2005-08-01 21:37:09 1 2006-02-16 02:30:53
  39970. 10093 2005-07-31 20:30:32 3943 162 2005-08-04 00:04:32 2 2006-02-16 02:30:53
  39971. 10094 2005-07-31 20:31:18 2865 596 2005-08-06 18:31:18 2 2006-02-16 02:30:53
  39972. 10095 2005-07-31 20:38:35 4062 370 2005-08-02 02:33:35 1 2006-02-16 02:30:53
  39973. 10096 2005-07-31 20:38:58 3606 290 2005-08-06 02:34:58 1 2006-02-16 02:30:53
  39974. 10097 2005-07-31 20:39:38 784 519 2005-08-08 22:22:38 1 2006-02-16 02:30:53
  39975. 10098 2005-07-31 20:41:17 1324 155 2005-08-02 00:06:17 2 2006-02-16 02:30:53
  39976. 10099 2005-07-31 20:47:14 1960 220 2005-08-02 17:25:14 1 2006-02-16 02:30:53
  39977. 10100 2005-07-31 20:47:18 4050 330 2005-08-03 16:58:18 2 2006-02-16 02:30:53
  39978. 10101 2005-07-31 20:47:29 2513 119 2005-08-04 21:28:29 1 2006-02-16 02:30:53
  39979. 10102 2005-07-31 20:49:10 4078 170 2005-08-08 20:15:10 1 2006-02-16 02:30:53
  39980. 10103 2005-07-31 20:49:13 77 25 2005-08-05 15:55:13 2 2006-02-16 02:30:53
  39981. 10104 2005-07-31 20:49:14 3358 186 2005-08-05 01:11:14 2 2006-02-16 02:30:53
  39982. 10105 2005-07-31 20:54:20 112 286 2005-08-09 17:45:20 1 2006-02-16 02:30:53
  39983. 10106 2005-07-31 21:00:47 3444 556 2005-08-02 20:11:47 2 2006-02-16 02:30:53
  39984. 10107 2005-07-31 21:01:46 1326 414 2005-08-09 01:33:46 2 2006-02-16 02:30:53
  39985. 10108 2005-07-31 21:02:14 3703 326 2005-08-01 18:28:14 1 2006-02-16 02:30:53
  39986. 10109 2005-07-31 21:04:49 2852 403 2005-08-08 19:25:49 1 2006-02-16 02:30:53
  39987. 10110 2005-07-31 21:06:12 4081 138 2005-08-03 02:03:12 2 2006-02-16 02:30:53
  39988. 10111 2005-07-31 21:08:33 3474 38 2005-08-06 02:58:33 2 2006-02-16 02:30:53
  39989. 10112 2005-07-31 21:08:56 2643 198 2005-08-01 23:35:56 2 2006-02-16 02:30:53
  39990. 10113 2005-07-31 21:10:03 3974 461 2005-08-02 21:13:03 2 2006-02-16 02:30:53
  39991. 10114 2005-07-31 21:12:58 3881 218 2005-08-02 19:45:58 2 2006-02-16 02:30:53
  39992. 10115 2005-07-31 21:13:47 2731 68 2005-08-10 00:44:47 1 2006-02-16 02:30:53
  39993. 10116 2005-07-31 21:14:02 738 28 2005-08-03 01:48:02 2 2006-02-16 02:30:53
  39994. 10117 2005-07-31 21:14:31 1894 459 2005-08-01 15:59:31 2 2006-02-16 02:30:53
  39995. 10118 2005-07-31 21:16:31 1209 143 2005-08-03 02:32:31 1 2006-02-16 02:30:53
  39996. 10119 2005-07-31 21:20:59 54 351 2005-08-02 23:14:59 2 2006-02-16 02:30:53
  39997. 10120 2005-07-31 21:24:24 1709 396 2005-08-03 17:44:24 2 2006-02-16 02:30:53
  39998. 10121 2005-07-31 21:24:53 2969 425 2005-08-03 22:24:53 1 2006-02-16 02:30:53
  39999. 10122 2005-07-31 21:29:28 4229 196 2005-08-09 00:04:28 1 2006-02-16 02:30:53
  40000. 10123 2005-07-31 21:30:46 4564 487 2005-08-06 16:28:46 1 2006-02-16 02:30:53
  40001. 10124 2005-07-31 21:31:49 1956 396 2005-08-04 00:06:49 1 2006-02-16 02:30:53
  40002. 10125 2005-07-31 21:33:03 493 178 2005-08-01 19:10:03 1 2006-02-16 02:30:53
  40003. 10126 2005-07-31 21:36:07 3 39 2005-08-03 23:59:07 1 2006-02-16 02:30:53
  40004. 10127 2005-07-31 21:39:48 717 478 2005-08-06 00:10:48 1 2006-02-16 02:30:53
  40005. 10128 2005-07-31 21:40:04 2559 508 2005-08-02 02:21:04 1 2006-02-16 02:30:53
  40006. 10129 2005-07-31 21:41:35 2848 564 2005-08-05 17:05:35 1 2006-02-16 02:30:53
  40007. 10130 2005-07-31 21:44:30 3964 95 2005-08-04 17:06:30 1 2006-02-16 02:30:53
  40008. 10131 2005-07-31 21:45:28 4169 510 2005-08-04 00:19:28 2 2006-02-16 02:30:53
  40009. 10132 2005-07-31 21:50:24 3934 23 2005-08-07 23:37:24 2 2006-02-16 02:30:53
  40010. 10133 2005-07-31 21:55:07 614 234 2005-08-08 23:04:07 1 2006-02-16 02:30:53
  40011. 10134 2005-07-31 21:56:10 4483 311 2005-08-06 21:20:10 1 2006-02-16 02:30:53
  40012. 10135 2005-07-31 21:57:32 4193 307 2005-08-05 22:23:32 1 2006-02-16 02:30:53
  40013. 10136 2005-07-31 21:58:56 3142 2 2005-08-03 19:44:56 1 2006-02-16 02:30:53
  40014. 10137 2005-07-31 22:01:41 612 236 2005-08-07 22:24:41 1 2006-02-16 02:30:53
  40015. 10138 2005-07-31 22:02:09 179 225 2005-08-07 20:46:09 2 2006-02-16 02:30:53
  40016. 10139 2005-07-31 22:02:20 407 441 2005-08-04 02:09:20 1 2006-02-16 02:30:53
  40017. 10140 2005-07-31 22:03:20 2494 550 2005-08-07 23:15:20 2 2006-02-16 02:30:53
  40018. 10141 2005-07-31 22:08:29 8 8 2005-08-06 16:59:29 1 2006-02-16 02:30:53
  40019. 10142 2005-07-31 22:10:54 1839 257 2005-08-09 19:04:54 2 2006-02-16 02:30:53
  40020. 10143 2005-07-31 22:11:43 2139 271 2005-08-09 17:48:43 2 2006-02-16 02:30:53
  40021. 10144 2005-07-31 22:13:52 3011 49 2005-08-05 19:27:52 1 2006-02-16 02:30:53
  40022. 10145 2005-07-31 22:15:13 2511 361 2005-08-06 23:26:13 1 2006-02-16 02:30:53
  40023. 10146 2005-07-31 22:17:56 1721 559 2005-08-02 21:27:56 1 2006-02-16 02:30:53
  40024. 10147 2005-07-31 22:18:43 1351 198 2005-08-02 23:08:43 2 2006-02-16 02:30:53
  40025. 10148 2005-07-31 22:19:16 1381 63 2005-08-05 00:15:16 2 2006-02-16 02:30:53
  40026. 10149 2005-07-31 22:20:46 890 276 2005-08-07 23:12:46 2 2006-02-16 02:30:53
  40027. 10150 2005-07-31 22:22:00 2328 419 2005-08-05 01:17:00 2 2006-02-16 02:30:53
  40028. 10151 2005-07-31 22:22:37 4442 361 2005-08-01 22:20:37 1 2006-02-16 02:30:53
  40029. 10152 2005-07-31 22:28:05 1114 244 2005-08-08 22:39:05 2 2006-02-16 02:30:53
  40030. 10153 2005-07-31 22:30:10 2945 297 2005-08-06 02:32:10 2 2006-02-16 02:30:53
  40031. 10154 2005-07-31 22:30:49 2745 149 2005-08-07 03:05:49 2 2006-02-16 02:30:53
  40032. 10155 2005-07-31 22:31:43 3176 235 2005-08-07 02:43:43 1 2006-02-16 02:30:53
  40033. 10156 2005-07-31 22:36:00 141 179 2005-08-02 00:03:00 2 2006-02-16 02:30:53
  40034. 10157 2005-07-31 22:38:48 2960 232 2005-08-01 21:38:48 1 2006-02-16 02:30:53
  40035. 10158 2005-07-31 22:40:31 1626 393 2005-08-08 18:25:31 2 2006-02-16 02:30:53
  40036. 10159 2005-07-31 22:54:30 1174 515 2005-08-03 00:43:30 2 2006-02-16 02:30:53
  40037. 10160 2005-07-31 23:07:40 863 295 2005-08-05 23:34:40 1 2006-02-16 02:30:53
  40038. 10161 2005-07-31 23:09:41 2651 120 2005-08-02 20:46:41 2 2006-02-16 02:30:53
  40039. 10162 2005-07-31 23:11:01 1327 475 2005-08-07 01:52:01 2 2006-02-16 02:30:53
  40040. 10163 2005-07-31 23:12:34 2811 425 2005-08-01 22:47:34 2 2006-02-16 02:30:53
  40041. 10164 2005-07-31 23:17:57 1405 89 2005-08-05 19:43:57 1 2006-02-16 02:30:53
  40042. 10165 2005-07-31 23:21:23 3476 50 2005-08-06 18:06:23 1 2006-02-16 02:30:53
  40043. 10166 2005-07-31 23:22:20 4304 484 2005-08-07 18:06:20 2 2006-02-16 02:30:53
  40044. 10167 2005-07-31 23:24:31 1222 129 2005-08-06 17:42:31 2 2006-02-16 02:30:53
  40045. 10168 2005-07-31 23:25:24 4548 570 2005-08-02 19:03:24 1 2006-02-16 02:30:53
  40046. 10169 2005-07-31 23:27:13 2675 57 2005-08-05 20:32:13 2 2006-02-16 02:30:53
  40047. 10170 2005-07-31 23:27:31 804 41 2005-08-08 04:53:31 2 2006-02-16 02:30:53
  40048. 10171 2005-07-31 23:29:05 1367 401 2005-08-03 19:39:05 1 2006-02-16 02:30:53
  40049. 10172 2005-07-31 23:29:51 2506 426 2005-08-09 01:57:51 1 2006-02-16 02:30:53
  40050. 10173 2005-07-31 23:36:59 2527 326 2005-08-08 20:20:59 2 2006-02-16 02:30:53
  40051. 10174 2005-07-31 23:40:08 2459 359 2005-08-06 21:08:08 2 2006-02-16 02:30:53
  40052. 10175 2005-07-31 23:40:11 3672 137 2005-08-09 02:22:11 1 2006-02-16 02:30:53
  40053. 10176 2005-07-31 23:40:35 1181 19 2005-08-09 00:46:35 2 2006-02-16 02:30:53
  40054. 10177 2005-07-31 23:42:33 2242 279 2005-08-03 01:30:33 2 2006-02-16 02:30:53
  40055. 10178 2005-07-31 23:43:04 1582 491 2005-08-03 00:43:04 1 2006-02-16 02:30:53
  40056. 10179 2005-07-31 23:49:54 2136 131 2005-08-01 20:46:54 2 2006-02-16 02:30:53
  40057. 10180 2005-07-31 23:57:43 757 50 2005-08-09 04:04:43 2 2006-02-16 02:30:53
  40058. 10181 2005-08-01 00:00:44 3111 113 2005-08-04 19:33:44 1 2006-02-16 02:30:53
  40059. 10182 2005-08-01 00:08:01 4112 578 2005-08-09 18:14:01 2 2006-02-16 02:30:53
  40060. 10183 2005-08-01 00:08:01 4319 377 2005-08-09 20:41:01 1 2006-02-16 02:30:53
  40061. 10184 2005-08-01 00:09:33 2785 77 2005-08-05 04:12:33 2 2006-02-16 02:30:53
  40062. 10185 2005-08-01 00:12:11 1266 64 2005-08-03 03:03:11 1 2006-02-16 02:30:53
  40063. 10186 2005-08-01 00:12:36 4563 294 2005-08-07 05:08:36 1 2006-02-16 02:30:53
  40064. 10187 2005-08-01 00:15:49 1629 400 2005-08-05 01:00:49 2 2006-02-16 02:30:53
  40065. 10188 2005-08-01 00:19:41 1221 331 2005-08-08 00:19:41 2 2006-02-16 02:30:53
  40066. 10189 2005-08-01 00:25:00 616 509 2005-08-03 06:01:00 2 2006-02-16 02:30:53
  40067. 10190 2005-08-01 00:27:53 4411 138 2005-08-01 20:32:53 2 2006-02-16 02:30:53
  40068. 10191 2005-08-01 00:28:38 1131 196 2005-08-06 02:23:38 1 2006-02-16 02:30:53
  40069. 10192 2005-08-01 00:33:00 1632 569 2005-08-05 03:37:00 2 2006-02-16 02:30:53
  40070. 10193 2005-08-01 00:33:27 2036 358 2005-08-07 20:15:27 1 2006-02-16 02:30:53
  40071. 10194 2005-08-01 00:33:52 1447 290 2005-08-06 04:50:52 2 2006-02-16 02:30:53
  40072. 10195 2005-08-01 00:34:42 2691 396 2005-08-08 05:04:42 2 2006-02-16 02:30:53
  40073. 10196 2005-08-01 00:34:51 3070 199 2005-08-05 03:43:51 1 2006-02-16 02:30:53
  40074. 10197 2005-08-01 00:35:25 1186 127 2005-08-07 06:04:25 2 2006-02-16 02:30:53
  40075. 10198 2005-08-01 00:36:15 1297 366 2005-08-07 06:18:15 2 2006-02-16 02:30:53
  40076. 10199 2005-08-01 00:38:55 3665 526 2005-08-05 03:41:55 1 2006-02-16 02:30:53
  40077. 10200 2005-08-01 00:39:05 580 421 2005-08-05 01:07:05 1 2006-02-16 02:30:53
  40078. 10201 2005-08-01 00:42:18 3649 299 2005-08-08 20:49:18 2 2006-02-16 02:30:53
  40079. 10202 2005-08-01 00:43:18 1099 306 2005-08-08 23:26:18 1 2006-02-16 02:30:53
  40080. 10203 2005-08-01 00:45:27 1096 157 2005-08-04 22:45:27 2 2006-02-16 02:30:53
  40081. 10204 2005-08-01 00:47:39 764 572 2005-08-05 01:11:39 1 2006-02-16 02:30:53
  40082. 10205 2005-08-01 00:48:24 33 87 2005-08-06 23:53:24 1 2006-02-16 02:30:53
  40083. 10206 2005-08-01 00:52:40 4479 90 2005-08-10 02:36:40 2 2006-02-16 02:30:53
  40084. 10207 2005-08-01 00:53:01 2925 334 2005-08-05 05:51:01 2 2006-02-16 02:30:53
  40085. 10208 2005-08-01 00:54:51 3324 246 2005-08-04 22:39:51 2 2006-02-16 02:30:53
  40086. 10209 2005-08-01 00:56:47 2429 303 2005-08-03 19:58:47 2 2006-02-16 02:30:53
  40087. 10210 2005-08-01 00:58:52 49 391 2005-08-10 01:16:52 1 2006-02-16 02:30:53
  40088. 10211 2005-08-01 01:01:16 810 530 2005-08-10 01:31:16 1 2006-02-16 02:30:53
  40089. 10212 2005-08-01 01:01:35 3728 324 2005-08-02 23:02:35 1 2006-02-16 02:30:53
  40090. 10213 2005-08-01 01:03:18 1462 106 2005-08-09 20:07:18 1 2006-02-16 02:30:53
  40091. 10214 2005-08-01 01:04:15 648 597 2005-08-01 19:31:15 2 2006-02-16 02:30:53
  40092. 10215 2005-08-01 01:04:28 838 345 2005-08-09 21:43:28 2 2006-02-16 02:30:53
  40093. 10216 2005-08-01 01:06:27 3603 436 2005-08-08 22:41:27 2 2006-02-16 02:30:53
  40094. 10217 2005-08-01 01:07:27 1193 389 2005-08-09 00:42:27 1 2006-02-16 02:30:53
  40095. 10218 2005-08-01 01:09:44 3886 101 2005-08-05 20:08:44 1 2006-02-16 02:30:53
  40096. 10219 2005-08-01 01:10:33 2262 505 2005-08-10 02:45:33 2 2006-02-16 02:30:53
  40097. 10220 2005-08-01 01:13:22 3920 294 2005-08-04 22:57:22 2 2006-02-16 02:30:53
  40098. 10221 2005-08-01 01:16:50 3051 373 2005-08-03 05:35:50 2 2006-02-16 02:30:53
  40099. 10222 2005-08-01 01:17:42 1214 295 2005-08-08 02:45:42 1 2006-02-16 02:30:53
  40100. 10223 2005-08-01 01:23:15 1370 522 2005-08-02 19:39:15 1 2006-02-16 02:30:53
  40101. 10224 2005-08-01 01:31:56 1443 587 2005-08-05 21:21:56 2 2006-02-16 02:30:53
  40102. 10225 2005-08-01 01:38:40 3131 498 2005-08-06 20:00:40 1 2006-02-16 02:30:53
  40103. 10226 2005-08-01 01:40:04 3067 107 2005-08-08 01:02:04 1 2006-02-16 02:30:53
  40104. 10227 2005-08-01 01:42:22 872 571 2005-08-09 23:45:22 2 2006-02-16 02:30:53
  40105. 10228 2005-08-01 01:43:18 1742 106 2005-08-06 22:10:18 2 2006-02-16 02:30:53
  40106. 10229 2005-08-01 01:45:26 3459 175 2005-08-10 06:21:26 1 2006-02-16 02:30:53
  40107. 10230 2005-08-01 01:49:36 76 398 2005-08-05 01:29:36 2 2006-02-16 02:30:53
  40108. 10231 2005-08-01 01:50:49 1056 511 2005-08-06 03:12:49 1 2006-02-16 02:30:53
  40109. 10232 2005-08-01 01:50:55 586 512 2005-08-03 04:12:55 1 2006-02-16 02:30:53
  40110. 10233 2005-08-01 01:54:23 4571 459 2005-08-10 00:23:23 2 2006-02-16 02:30:53
  40111. 10234 2005-08-01 01:56:20 1641 207 2005-08-09 01:51:20 2 2006-02-16 02:30:53
  40112. 10235 2005-08-01 01:57:48 2850 30 2005-08-10 07:38:48 2 2006-02-16 02:30:53
  40113. 10236 2005-08-01 02:05:34 3754 470 2005-08-01 23:40:34 1 2006-02-16 02:30:53
  40114. 10237 2005-08-01 02:07:32 432 313 2005-08-07 03:54:32 1 2006-02-16 02:30:53
  40115. 10238 2005-08-01 02:08:05 561 192 2005-08-02 01:52:05 1 2006-02-16 02:30:53
  40116. 10239 2005-08-01 02:09:22 1232 467 2005-08-04 01:35:22 2 2006-02-16 02:30:53
  40117. 10240 2005-08-01 02:09:33 4494 109 2005-08-07 02:22:33 2 2006-02-16 02:30:53
  40118. 10241 2005-08-01 02:12:25 1526 161 2005-08-08 00:37:25 1 2006-02-16 02:30:53
  40119. 10242 2005-08-01 02:18:12 1825 342 2005-08-02 22:32:12 2 2006-02-16 02:30:53
  40120. 10243 2005-08-01 02:18:46 2236 132 2005-08-06 21:45:46 1 2006-02-16 02:30:53
  40121. 10244 2005-08-01 02:20:01 567 51 2005-08-06 23:06:01 2 2006-02-16 02:30:53
  40122. 10245 2005-08-01 02:24:09 2880 163 2005-08-02 02:31:09 1 2006-02-16 02:30:53
  40123. 10246 2005-08-01 02:29:50 3598 261 2005-08-09 01:17:50 2 2006-02-16 02:30:53
  40124. 10247 2005-08-01 02:34:06 4035 189 2005-08-09 02:33:06 1 2006-02-16 02:30:53
  40125. 10248 2005-08-01 02:35:28 2146 298 2005-08-08 02:24:28 2 2006-02-16 02:30:53
  40126. 10249 2005-08-01 02:35:39 135 437 2005-08-06 06:50:39 1 2006-02-16 02:30:53
  40127. 10250 2005-08-01 02:38:42 3706 116 2005-08-07 03:59:42 2 2006-02-16 02:30:53
  40128. 10251 2005-08-01 02:39:12 2986 39 2005-08-06 03:51:12 1 2006-02-16 02:30:53
  40129. 10252 2005-08-01 02:39:39 2380 86 2005-08-10 00:40:39 2 2006-02-16 02:30:53
  40130. 10253 2005-08-01 02:39:49 1406 101 2005-08-08 04:28:49 2 2006-02-16 02:30:53
  40131. 10254 2005-08-01 02:42:03 2238 416 2005-08-05 23:31:03 1 2006-02-16 02:30:53
  40132. 10255 2005-08-01 02:46:13 4558 459 2005-08-03 05:54:13 1 2006-02-16 02:30:53
  40133. 10256 2005-08-01 02:47:11 780 58 2005-08-05 05:21:11 2 2006-02-16 02:30:53
  40134. 10257 2005-08-01 02:49:43 2403 543 2005-08-04 04:45:43 2 2006-02-16 02:30:53
  40135. 10258 2005-08-01 02:51:09 2062 469 2005-08-08 23:57:09 2 2006-02-16 02:30:53
  40136. 10259 2005-08-01 02:52:05 1881 566 2005-08-03 20:54:05 1 2006-02-16 02:30:53
  40137. 10260 2005-08-01 02:58:07 2864 461 2005-08-05 02:06:07 2 2006-02-16 02:30:53
  40138. 10261 2005-08-01 02:58:27 2346 50 2005-08-01 21:55:27 2 2006-02-16 02:30:53
  40139. 10262 2005-08-01 03:01:26 3842 181 2005-08-08 08:03:26 2 2006-02-16 02:30:53
  40140. 10263 2005-08-01 03:02:48 2420 415 2005-08-08 02:16:48 2 2006-02-16 02:30:53
  40141. 10264 2005-08-01 03:03:12 1374 297 2005-08-08 00:34:12 2 2006-02-16 02:30:53
  40142. 10265 2005-08-01 03:05:04 3338 510 2005-08-08 08:09:04 1 2006-02-16 02:30:53
  40143. 10266 2005-08-01 03:05:59 476 49 2005-08-06 06:23:59 1 2006-02-16 02:30:53
  40144. 10267 2005-08-01 03:07:26 3883 72 2005-08-07 22:49:26 1 2006-02-16 02:30:53
  40145. 10268 2005-08-01 03:08:56 2755 138 2005-08-08 02:41:56 1 2006-02-16 02:30:53
  40146. 10269 2005-08-01 03:09:26 2537 39 2005-08-02 00:01:26 1 2006-02-16 02:30:53
  40147. 10270 2005-08-01 03:10:24 2025 168 2005-08-07 03:04:24 2 2006-02-16 02:30:53
  40148. 10271 2005-08-01 03:13:39 3692 6 2005-08-07 23:40:39 1 2006-02-16 02:30:53
  40149. 10272 2005-08-01 03:14:34 128 273 2005-08-10 05:56:34 2 2006-02-16 02:30:53
  40150. 10273 2005-08-01 03:14:47 1458 212 2005-08-07 03:59:47 1 2006-02-16 02:30:53
  40151. 10274 2005-08-01 03:16:51 2916 375 2005-08-04 22:22:51 2 2006-02-16 02:30:53
  40152. 10275 2005-08-01 03:20:08 669 463 2005-08-08 06:48:08 1 2006-02-16 02:30:53
  40153. 10276 2005-08-01 03:22:23 2201 48 2005-08-03 07:59:23 1 2006-02-16 02:30:53
  40154. 10277 2005-08-01 03:22:41 1472 176 2005-08-05 05:07:41 1 2006-02-16 02:30:53
  40155. 10278 2005-08-01 03:25:27 2497 154 2005-08-08 07:52:27 1 2006-02-16 02:30:53
  40156. 10279 2005-08-01 03:26:44 3794 247 2005-08-07 22:35:44 2 2006-02-16 02:30:53
  40157. 10280 2005-08-01 03:27:15 1457 542 2005-08-07 23:01:15 2 2006-02-16 02:30:53
  40158. 10281 2005-08-01 03:28:33 1047 549 2005-08-02 05:06:33 1 2006-02-16 02:30:53
  40159. 10282 2005-08-01 03:29:10 617 472 2005-08-07 06:16:10 1 2006-02-16 02:30:53
  40160. 10283 2005-08-01 03:29:45 4237 462 2005-08-07 04:19:45 1 2006-02-16 02:30:53
  40161. 10284 2005-08-01 03:33:19 2879 20 2005-08-09 07:58:19 1 2006-02-16 02:30:53
  40162. 10285 2005-08-01 03:35:11 4523 167 2005-08-05 03:55:11 2 2006-02-16 02:30:53
  40163. 10286 2005-08-01 03:35:58 498 532 2005-08-10 05:17:58 2 2006-02-16 02:30:53
  40164. 10287 2005-08-01 03:37:01 125 141 2005-08-05 23:03:01 2 2006-02-16 02:30:53
  40165. 10288 2005-08-01 03:38:42 572 63 2005-08-06 04:34:42 1 2006-02-16 02:30:53
  40166. 10289 2005-08-01 03:39:48 3153 566 2005-08-08 02:56:48 1 2006-02-16 02:30:53
  40167. 10290 2005-08-01 03:39:50 4542 364 2005-08-08 22:29:50 2 2006-02-16 02:30:53
  40168. 10291 2005-08-01 03:39:57 2056 420 2005-08-05 02:05:57 2 2006-02-16 02:30:53
  40169. 10292 2005-08-01 03:42:40 2562 340 2005-08-01 23:36:40 2 2006-02-16 02:30:53
  40170. 10293 2005-08-01 03:44:26 1570 258 2005-08-05 04:16:26 2 2006-02-16 02:30:53
  40171. 10294 2005-08-01 03:48:12 528 28 2005-08-09 01:19:12 2 2006-02-16 02:30:53
  40172. 10295 2005-08-01 03:53:49 2355 123 2005-08-10 03:56:49 1 2006-02-16 02:30:53
  40173. 10296 2005-08-01 04:04:37 1958 573 2005-08-01 23:59:37 1 2006-02-16 02:30:53
  40174. 10297 2005-08-01 04:05:04 2795 289 2005-08-09 06:08:04 1 2006-02-16 02:30:53
  40175. 10298 2005-08-01 04:06:03 1383 323 2005-08-05 05:59:03 2 2006-02-16 02:30:53
  40176. 10299 2005-08-01 04:08:04 1125 369 2005-08-04 08:11:04 1 2006-02-16 02:30:53
  40177. 10300 2005-08-01 04:08:11 4334 207 2005-08-04 00:24:11 1 2006-02-16 02:30:53
  40178. 10301 2005-08-01 04:09:37 3072 583 2005-08-04 23:14:37 2 2006-02-16 02:30:53
  40179. 10302 2005-08-01 04:12:08 1043 144 2005-08-01 22:12:08 2 2006-02-16 02:30:53
  40180. 10303 2005-08-01 04:13:33 936 479 2005-08-06 02:16:33 2 2006-02-16 02:30:53
  40181. 10304 2005-08-01 04:14:12 1538 346 2005-08-07 22:38:12 1 2006-02-16 02:30:53
  40182. 10305 2005-08-01 04:16:16 2946 160 2005-08-07 23:47:16 1 2006-02-16 02:30:53
  40183. 10306 2005-08-01 04:19:18 2819 541 2005-08-09 02:16:18 1 2006-02-16 02:30:53
  40184. 10307 2005-08-01 04:21:54 975 332 2005-08-04 09:24:54 2 2006-02-16 02:30:53
  40185. 10308 2005-08-01 04:22:49 588 240 2005-08-09 04:39:49 2 2006-02-16 02:30:53
  40186. 10309 2005-08-01 04:24:18 1505 156 2005-08-09 08:32:18 2 2006-02-16 02:30:53
  40187. 10310 2005-08-01 04:24:47 9 271 2005-08-04 05:36:47 2 2006-02-16 02:30:53
  40188. 10311 2005-08-01 04:27:59 4211 151 2005-08-02 08:51:59 1 2006-02-16 02:30:53
  40189. 10312 2005-08-01 04:29:06 4389 172 2005-08-08 04:52:06 2 2006-02-16 02:30:53
  40190. 10313 2005-08-01 04:29:29 1194 80 2005-08-04 08:12:29 2 2006-02-16 02:30:53
  40191. 10314 2005-08-01 04:31:18 1548 252 2005-08-06 01:49:18 2 2006-02-16 02:30:53
  40192. 10315 2005-08-01 04:34:45 895 258 2005-08-07 05:27:45 1 2006-02-16 02:30:53
  40193. 10316 2005-08-01 04:34:57 1907 469 2005-08-06 02:34:57 2 2006-02-16 02:30:53
  40194. 10317 2005-08-01 04:35:34 110 561 2005-08-06 02:27:34 2 2006-02-16 02:30:53
  40195. 10318 2005-08-01 04:36:53 885 548 2005-08-04 00:54:53 1 2006-02-16 02:30:53
  40196. 10319 2005-08-01 04:37:19 3120 394 2005-08-05 03:18:19 2 2006-02-16 02:30:53
  40197. 10320 2005-08-01 04:39:26 2298 152 2005-08-08 06:01:26 1 2006-02-16 02:30:53
  40198. 10321 2005-08-01 04:40:02 4512 177 2005-08-03 04:18:02 1 2006-02-16 02:30:53
  40199. 10322 2005-08-01 04:44:13 1543 535 2005-08-08 00:20:13 2 2006-02-16 02:30:53
  40200. 10323 2005-08-01 04:44:58 3539 577 2005-08-06 07:56:58 1 2006-02-16 02:30:53
  40201. 10324 2005-08-01 04:49:06 523 25 2005-08-09 08:04:06 2 2006-02-16 02:30:53
  40202. 10325 2005-08-01 04:52:12 2749 258 2005-08-08 09:31:12 1 2006-02-16 02:30:53
  40203. 10326 2005-08-01 04:55:34 3856 325 2005-08-02 05:18:34 1 2006-02-16 02:30:53
  40204. 10327 2005-08-01 04:55:35 328 382 2005-08-07 08:17:35 2 2006-02-16 02:30:53
  40205. 10328 2005-08-01 04:56:10 1191 85 2005-08-01 23:22:10 2 2006-02-16 02:30:53
  40206. 10329 2005-08-01 04:56:13 2289 302 2005-08-03 03:54:13 1 2006-02-16 02:30:53
  40207. 10330 2005-08-01 04:57:04 1580 7 2005-08-07 23:00:04 2 2006-02-16 02:30:53
  40208. 10331 2005-08-01 04:57:14 4152 575 2005-08-07 06:46:14 1 2006-02-16 02:30:53
  40209. 10332 2005-08-01 04:57:32 642 258 2005-08-10 02:42:32 2 2006-02-16 02:30:53
  40210. 10333 2005-08-01 04:58:32 3955 499 2005-08-04 00:51:32 2 2006-02-16 02:30:53
  40211. 10334 2005-08-01 04:58:42 3387 445 2005-08-09 02:00:42 1 2006-02-16 02:30:53
  40212. 10335 2005-08-01 04:59:30 323 33 2005-08-05 02:26:30 1 2006-02-16 02:30:53
  40213. 10336 2005-08-01 04:59:53 1091 370 2005-08-03 08:05:53 2 2006-02-16 02:30:53
  40214. 10337 2005-08-01 05:01:46 307 451 2005-08-10 02:41:46 1 2006-02-16 02:30:53
  40215. 10338 2005-08-01 05:03:03 1295 339 2005-08-09 05:13:03 2 2006-02-16 02:30:53
  40216. 10339 2005-08-01 05:05:50 615 363 2005-08-10 07:15:50 2 2006-02-16 02:30:53
  40217. 10340 2005-08-01 05:07:03 3608 568 2005-08-06 01:03:03 1 2006-02-16 02:30:53
  40218. 10341 2005-08-01 05:10:02 3304 445 2005-08-07 11:01:02 1 2006-02-16 02:30:53
  40219. 10342 2005-08-01 05:11:11 332 140 2005-08-10 00:27:11 1 2006-02-16 02:30:53
  40220. 10343 2005-08-01 05:15:47 2627 267 2005-08-02 04:48:47 2 2006-02-16 02:30:53
  40221. 10344 2005-08-01 05:18:23 3673 367 2005-08-06 05:20:23 1 2006-02-16 02:30:53
  40222. 10345 2005-08-01 05:18:56 3985 42 2005-08-04 01:34:56 2 2006-02-16 02:30:53
  40223. 10346 2005-08-01 05:19:23 4192 476 2005-08-06 01:00:23 1 2006-02-16 02:30:53
  40224. 10347 2005-08-01 05:20:03 953 574 2005-08-04 10:03:03 1 2006-02-16 02:30:53
  40225. 10348 2005-08-01 05:23:00 2076 14 2005-08-04 01:12:00 2 2006-02-16 02:30:53
  40226. 10349 2005-08-01 05:27:13 114 295 2005-08-08 10:15:13 1 2006-02-16 02:30:53
  40227. 10350 2005-08-01 05:30:05 2067 78 2005-08-05 09:59:05 1 2006-02-16 02:30:53
  40228. 10351 2005-08-01 05:32:13 3725 173 2005-08-08 09:48:13 1 2006-02-16 02:30:53
  40229. 10352 2005-08-01 05:44:36 1288 564 2005-08-05 07:15:36 2 2006-02-16 02:30:53
  40230. 10353 2005-08-01 05:46:33 1446 535 2005-08-08 09:14:33 1 2006-02-16 02:30:53
  40231. 10354 2005-08-01 05:47:10 1680 416 2005-08-06 09:04:10 1 2006-02-16 02:30:53
  40232. 10355 2005-08-01 05:47:37 2158 161 2005-08-02 09:28:37 2 2006-02-16 02:30:53
  40233. 10356 2005-08-01 05:49:17 313 56 2005-08-10 05:57:17 1 2006-02-16 02:30:53
  40234. 10357 2005-08-01 05:49:49 3102 475 2005-08-04 02:34:49 2 2006-02-16 02:30:53
  40235. 10358 2005-08-01 05:50:07 3039 517 2005-08-03 08:18:07 1 2006-02-16 02:30:53
  40236. 10359 2005-08-01 05:52:21 259 369 2005-08-06 05:52:21 2 2006-02-16 02:30:53
  40237. 10360 2005-08-01 05:52:53 1129 443 2005-08-05 10:55:53 1 2006-02-16 02:30:53
  40238. 10361 2005-08-01 05:53:49 318 529 2005-08-10 00:42:49 2 2006-02-16 02:30:53
  40239. 10362 2005-08-01 05:55:13 72 181 2005-08-10 10:23:13 2 2006-02-16 02:30:53
  40240. 10363 2005-08-01 06:01:52 320 174 2005-08-05 03:56:52 1 2006-02-16 02:30:53
  40241. 10364 2005-08-01 06:06:49 1842 317 2005-08-09 06:05:49 2 2006-02-16 02:30:53
  40242. 10365 2005-08-01 06:08:44 4032 442 2005-08-06 02:07:44 1 2006-02-16 02:30:53
  40243. 10366 2005-08-01 06:09:37 2654 119 2005-08-05 03:19:37 1 2006-02-16 02:30:53
  40244. 10367 2005-08-01 06:12:19 3408 242 2005-08-04 12:11:19 2 2006-02-16 02:30:53
  40245. 10368 2005-08-01 06:13:38 3535 593 2005-08-08 04:40:38 2 2006-02-16 02:30:53
  40246. 10369 2005-08-01 06:13:44 2534 424 2005-08-07 09:46:44 1 2006-02-16 02:30:53
  40247. 10370 2005-08-01 06:18:04 4358 546 2005-08-05 01:41:04 2 2006-02-16 02:30:53
  40248. 10371 2005-08-01 06:20:29 923 327 2005-08-04 00:31:29 2 2006-02-16 02:30:53
  40249. 10372 2005-08-01 06:23:48 635 419 2005-08-06 03:47:48 1 2006-02-16 02:30:53
  40250. 10373 2005-08-01 06:24:26 1754 588 2005-08-02 12:07:26 1 2006-02-16 02:30:53
  40251. 10374 2005-08-01 06:25:27 4351 307 2005-08-07 05:44:27 2 2006-02-16 02:30:53
  40252. 10375 2005-08-01 06:26:22 857 202 2005-08-06 02:51:22 2 2006-02-16 02:30:53
  40253. 10376 2005-08-01 06:27:13 4194 474 2005-08-07 06:11:13 2 2006-02-16 02:30:53
  40254. 10377 2005-08-01 06:28:28 2401 559 2005-08-10 05:45:28 2 2006-02-16 02:30:53
  40255. 10378 2005-08-01 06:30:04 4110 113 2005-08-06 09:10:04 1 2006-02-16 02:30:53
  40256. 10379 2005-08-01 06:34:29 3103 141 2005-08-06 07:49:29 1 2006-02-16 02:30:53
  40257. 10380 2005-08-01 06:34:36 2225 533 2005-08-02 09:08:36 1 2006-02-16 02:30:53
  40258. 10381 2005-08-01 06:36:37 522 412 2005-08-05 11:17:37 1 2006-02-16 02:30:53
  40259. 10382 2005-08-01 06:36:45 4455 242 2005-08-02 06:06:45 1 2006-02-16 02:30:53
  40260. 10383 2005-08-01 06:37:16 4166 592 2005-08-03 07:36:16 2 2006-02-16 02:30:53
  40261. 10384 2005-08-01 06:39:14 2622 366 2005-08-02 03:06:14 1 2006-02-16 02:30:53
  40262. 10385 2005-08-01 06:39:55 778 179 2005-08-06 02:16:55 1 2006-02-16 02:30:53
  40263. 10386 2005-08-01 06:42:20 1568 26 2005-08-07 06:12:20 2 2006-02-16 02:30:53
  40264. 10387 2005-08-01 06:42:31 1651 87 2005-08-08 07:44:31 1 2006-02-16 02:30:53
  40265. 10388 2005-08-01 06:42:44 3180 99 2005-08-09 11:43:44 2 2006-02-16 02:30:53
  40266. 10389 2005-08-01 06:46:43 3534 346 2005-08-08 07:07:43 2 2006-02-16 02:30:53
  40267. 10390 2005-08-01 06:46:48 1489 502 2005-08-09 02:55:48 2 2006-02-16 02:30:53
  40268. 10391 2005-08-01 06:49:05 2203 357 2005-08-04 01:51:05 2 2006-02-16 02:30:53
  40269. 10392 2005-08-01 06:50:26 3017 12 2005-08-10 10:52:26 1 2006-02-16 02:30:53
  40270. 10393 2005-08-01 06:52:50 808 258 2005-08-05 08:45:50 1 2006-02-16 02:30:53
  40271. 10394 2005-08-01 06:58:17 1655 128 2005-08-05 02:09:17 1 2006-02-16 02:30:53
  40272. 10395 2005-08-01 07:08:22 279 129 2005-08-05 08:00:22 2 2006-02-16 02:30:53
  40273. 10396 2005-08-01 07:08:46 2982 284 2005-08-08 03:47:46 1 2006-02-16 02:30:53
  40274. 10397 2005-08-01 07:11:27 4168 504 2005-08-03 07:51:27 1 2006-02-16 02:30:53
  40275. 10398 2005-08-01 07:11:49 4306 174 2005-08-04 05:54:49 1 2006-02-16 02:30:53
  40276. 10399 2005-08-01 07:13:39 2515 204 2005-08-10 06:56:39 1 2006-02-16 02:30:53
  40277. 10400 2005-08-01 07:18:24 3897 132 2005-08-10 08:38:24 1 2006-02-16 02:30:53
  40278. 10401 2005-08-01 07:27:09 1560 564 2005-08-02 01:38:09 1 2006-02-16 02:30:53
  40279. 10402 2005-08-01 07:27:19 274 410 2005-08-04 12:30:19 1 2006-02-16 02:30:53
  40280. 10403 2005-08-01 07:30:45 1968 494 2005-08-03 03:03:45 2 2006-02-16 02:30:53
  40281. 10404 2005-08-01 07:31:25 2580 253 2005-08-07 09:23:25 1 2006-02-16 02:30:53
  40282. 10405 2005-08-01 07:35:25 3641 463 2005-08-05 05:38:25 2 2006-02-16 02:30:53
  40283. 10406 2005-08-01 07:37:05 2614 391 2005-08-02 06:11:05 1 2006-02-16 02:30:53
  40284. 10407 2005-08-01 07:38:07 543 101 2005-08-02 05:38:07 2 2006-02-16 02:30:53
  40285. 10408 2005-08-01 07:42:10 4144 334 2005-08-09 02:29:10 2 2006-02-16 02:30:53
  40286. 10409 2005-08-01 07:49:15 2804 449 2005-08-02 13:42:15 2 2006-02-16 02:30:53
  40287. 10410 2005-08-01 07:53:29 3901 247 2005-08-10 08:56:29 1 2006-02-16 02:30:53
  40288. 10411 2005-08-01 07:56:32 1946 522 2005-08-10 04:58:32 2 2006-02-16 02:30:53
  40289. 10412 2005-08-01 07:57:16 1555 325 2005-08-04 11:44:16 2 2006-02-16 02:30:53
  40290. 10413 2005-08-01 07:59:39 1018 376 2005-08-08 03:55:39 1 2006-02-16 02:30:53
  40291. 10414 2005-08-01 08:03:55 1271 361 2005-08-04 08:44:55 2 2006-02-16 02:30:53
  40292. 10415 2005-08-01 08:05:59 2597 591 2005-08-04 13:46:59 1 2006-02-16 02:30:53
  40293. 10416 2005-08-01 08:08:39 2629 449 2005-08-10 09:26:39 2 2006-02-16 02:30:53
  40294. 10417 2005-08-01 08:10:36 3675 427 2005-08-02 03:42:36 2 2006-02-16 02:30:53
  40295. 10418 2005-08-01 08:11:07 1692 248 2005-08-04 11:12:07 2 2006-02-16 02:30:53
  40296. 10419 2005-08-01 08:13:22 415 66 2005-08-06 04:45:22 2 2006-02-16 02:30:53
  40297. 10420 2005-08-01 08:13:53 3490 354 2005-08-06 08:05:53 2 2006-02-16 02:30:53
  40298. 10421 2005-08-01 08:14:10 925 262 2005-08-03 05:56:10 2 2006-02-16 02:30:53
  40299. 10422 2005-08-01 08:17:11 37 166 2005-08-10 10:08:11 2 2006-02-16 02:30:53
  40300. 10423 2005-08-01 08:19:53 739 7 2005-08-08 10:25:53 1 2006-02-16 02:30:53
  40301. 10424 2005-08-01 08:22:54 1921 88 2005-08-06 13:44:54 1 2006-02-16 02:30:53
  40302. 10425 2005-08-01 08:23:25 322 447 2005-08-05 04:29:25 1 2006-02-16 02:30:53
  40303. 10426 2005-08-01 08:26:08 1325 305 2005-08-09 04:09:08 1 2006-02-16 02:30:53
  40304. 10427 2005-08-01 08:30:11 2978 356 2005-08-07 06:18:11 2 2006-02-16 02:30:53
  40305. 10428 2005-08-01 08:30:11 4245 46 2005-08-02 09:30:11 2 2006-02-16 02:30:53
  40306. 10429 2005-08-01 08:34:18 3894 511 2005-08-10 12:38:18 1 2006-02-16 02:30:53
  40307. 10430 2005-08-01 08:37:06 1150 471 2005-08-03 07:25:06 1 2006-02-16 02:30:53
  40308. 10431 2005-08-01 08:41:54 1074 138 2005-08-07 09:44:54 2 2006-02-16 02:30:53
  40309. 10432 2005-08-01 08:43:21 4238 450 2005-08-08 13:09:21 2 2006-02-16 02:30:53
  40310. 10433 2005-08-01 08:45:56 1508 517 2005-08-05 09:46:56 2 2006-02-16 02:30:53
  40311. 10434 2005-08-01 08:47:00 4073 73 2005-08-06 08:34:00 1 2006-02-16 02:30:53
  40312. 10435 2005-08-01 08:50:51 1934 392 2005-08-08 12:23:51 1 2006-02-16 02:30:53
  40313. 10436 2005-08-01 08:50:59 4026 455 2005-08-04 05:23:59 1 2006-02-16 02:30:53
  40314. 10437 2005-08-01 08:51:04 14 1 2005-08-10 12:12:04 1 2006-02-16 02:30:53
  40315. 10438 2005-08-01 08:53:04 4217 316 2005-08-09 06:39:04 2 2006-02-16 02:30:53
  40316. 10439 2005-08-01 08:54:26 2711 332 2005-08-08 14:04:26 1 2006-02-16 02:30:53
  40317. 10440 2005-08-01 08:54:32 842 299 2005-08-02 10:59:32 2 2006-02-16 02:30:53
  40318. 10441 2005-08-01 08:55:56 4122 176 2005-08-03 10:26:56 2 2006-02-16 02:30:53
  40319. 10442 2005-08-01 08:58:08 4570 40 2005-08-05 09:07:08 2 2006-02-16 02:30:53
  40320. 10443 2005-08-01 09:01:04 1965 403 2005-08-04 09:07:04 2 2006-02-16 02:30:53
  40321. 10444 2005-08-01 09:01:40 3242 106 2005-08-09 11:31:40 1 2006-02-16 02:30:53
  40322. 10445 2005-08-01 09:02:15 3582 211 2005-08-08 10:26:15 2 2006-02-16 02:30:53
  40323. 10446 2005-08-01 09:02:17 2671 95 2005-08-04 10:00:17 2 2006-02-16 02:30:53
  40324. 10447 2005-08-01 09:04:58 1198 241 2005-08-08 06:24:58 1 2006-02-16 02:30:53
  40325. 10448 2005-08-01 09:09:31 2254 311 2005-08-02 09:55:31 2 2006-02-16 02:30:53
  40326. 10449 2005-08-01 09:09:59 1395 213 2005-08-05 11:25:59 1 2006-02-16 02:30:53
  40327. 10450 2005-08-01 09:10:03 234 380 2005-08-08 12:34:03 1 2006-02-16 02:30:53
  40328. 10451 2005-08-01 09:11:25 2435 9 2005-08-03 12:37:25 2 2006-02-16 02:30:53
  40329. 10452 2005-08-01 09:11:36 1973 442 2005-08-04 13:28:36 2 2006-02-16 02:30:53
  40330. 10453 2005-08-01 09:13:27 1531 188 2005-08-08 11:34:27 2 2006-02-16 02:30:53
  40331. 10454 2005-08-01 09:14:00 397 9 2005-08-04 04:52:00 2 2006-02-16 02:30:53
  40332. 10455 2005-08-01 09:15:00 4197 99 2005-08-05 13:35:00 1 2006-02-16 02:30:53
  40333. 10456 2005-08-01 09:17:21 4339 81 2005-08-06 10:30:21 1 2006-02-16 02:30:53
  40334. 10457 2005-08-01 09:17:34 3052 121 2005-08-06 07:28:34 2 2006-02-16 02:30:53
  40335. 10458 2005-08-01 09:19:48 1500 309 2005-08-02 10:16:48 1 2006-02-16 02:30:53
  40336. 10459 2005-08-01 09:20:09 201 131 2005-08-03 11:36:09 1 2006-02-16 02:30:53
  40337. 10460 2005-08-01 09:31:00 4504 197 2005-08-09 09:28:00 1 2006-02-16 02:30:53
  40338. 10461 2005-08-01 09:32:53 3212 270 2005-08-09 10:19:53 1 2006-02-16 02:30:53
  40339. 10462 2005-08-01 09:38:28 4526 193 2005-08-02 09:52:28 2 2006-02-16 02:30:53
  40340. 10463 2005-08-01 09:39:43 1301 291 2005-08-10 03:42:43 1 2006-02-16 02:30:53
  40341. 10464 2005-08-01 09:43:14 464 427 2005-08-06 09:01:14 1 2006-02-16 02:30:53
  40342. 10465 2005-08-01 09:45:25 4384 534 2005-08-10 09:08:25 2 2006-02-16 02:30:53
  40343. 10466 2005-08-01 09:45:26 138 2 2005-08-06 06:28:26 1 2006-02-16 02:30:53
  40344. 10467 2005-08-01 09:45:58 3773 412 2005-08-09 10:17:58 2 2006-02-16 02:30:53
  40345. 10468 2005-08-01 09:48:29 2115 129 2005-08-05 09:58:29 2 2006-02-16 02:30:53
  40346. 10469 2005-08-01 09:51:11 3054 466 2005-08-05 06:53:11 2 2006-02-16 02:30:53
  40347. 10470 2005-08-01 09:52:26 82 523 2005-08-05 06:52:26 1 2006-02-16 02:30:53
  40348. 10471 2005-08-01 09:52:37 1684 135 2005-08-07 09:40:37 2 2006-02-16 02:30:53
  40349. 10472 2005-08-01 09:54:41 506 405 2005-08-04 13:31:41 1 2006-02-16 02:30:53
  40350. 10473 2005-08-01 09:56:24 3034 329 2005-08-10 12:36:24 2 2006-02-16 02:30:53
  40351. 10474 2005-08-01 10:01:42 4482 488 2005-08-08 12:32:42 1 2006-02-16 02:30:53
  40352. 10475 2005-08-01 10:03:17 2931 115 2005-08-10 15:50:17 2 2006-02-16 02:30:53
  40353. 10476 2005-08-01 10:03:20 1993 263 2005-08-10 06:52:20 1 2006-02-16 02:30:53
  40354. 10477 2005-08-01 10:04:17 235 506 2005-08-06 11:32:17 2 2006-02-16 02:30:53
  40355. 10478 2005-08-01 10:09:06 3885 417 2005-08-06 05:05:06 1 2006-02-16 02:30:53
  40356. 10479 2005-08-01 10:11:25 4580 275 2005-08-06 04:52:25 1 2006-02-16 02:30:53
  40357. 10480 2005-08-01 10:13:41 553 560 2005-08-03 10:27:41 1 2006-02-16 02:30:53
  40358. 10481 2005-08-01 10:17:26 229 170 2005-08-09 08:50:26 1 2006-02-16 02:30:53
  40359. 10482 2005-08-01 10:17:47 48 358 2005-08-02 15:04:47 2 2006-02-16 02:30:53
  40360. 10483 2005-08-01 10:19:45 1521 129 2005-08-04 09:29:45 1 2006-02-16 02:30:53
  40361. 10484 2005-08-01 10:19:53 1908 400 2005-08-03 05:36:53 1 2006-02-16 02:30:53
  40362. 10485 2005-08-01 10:20:34 29 50 2005-08-09 09:20:34 1 2006-02-16 02:30:53
  40363. 10486 2005-08-01 10:23:43 2454 527 2005-08-05 07:11:43 2 2006-02-16 02:30:53
  40364. 10487 2005-08-01 10:26:34 1121 577 2005-08-07 16:11:34 1 2006-02-16 02:30:53
  40365. 10488 2005-08-01 10:27:27 297 423 2005-08-02 11:05:27 2 2006-02-16 02:30:53
  40366. 10489 2005-08-01 10:27:42 4067 54 2005-08-07 12:56:42 1 2006-02-16 02:30:53
  40367. 10490 2005-08-01 10:37:11 4365 329 2005-08-03 10:01:11 2 2006-02-16 02:30:53
  40368. 10491 2005-08-01 10:38:27 3091 24 2005-08-04 04:55:27 2 2006-02-16 02:30:53
  40369. 10492 2005-08-01 10:42:28 1669 334 2005-08-02 07:05:28 1 2006-02-16 02:30:53
  40370. 10493 2005-08-01 10:43:12 2375 285 2005-08-07 08:13:12 2 2006-02-16 02:30:53
  40371. 10494 2005-08-01 10:45:21 847 188 2005-08-02 12:34:21 1 2006-02-16 02:30:53
  40372. 10495 2005-08-01 10:45:51 2232 41 2005-08-06 08:11:51 1 2006-02-16 02:30:53
  40373. 10496 2005-08-01 10:53:16 411 525 2005-08-08 10:34:16 2 2006-02-16 02:30:53
  40374. 10497 2005-08-01 10:55:59 1060 499 2005-08-07 11:15:59 1 2006-02-16 02:30:53
  40375. 10498 2005-08-01 10:56:48 2672 355 2005-08-03 15:46:48 2 2006-02-16 02:30:53
  40376. 10499 2005-08-01 11:00:20 3293 459 2005-08-10 11:52:20 2 2006-02-16 02:30:53
  40377. 10500 2005-08-01 11:01:01 469 477 2005-08-06 08:59:01 2 2006-02-16 02:30:53
  40378. 10501 2005-08-01 11:04:46 1792 351 2005-08-02 12:10:46 2 2006-02-16 02:30:53
  40379. 10502 2005-08-01 11:06:39 3193 357 2005-08-05 07:11:39 1 2006-02-16 02:30:53
  40380. 10503 2005-08-01 11:07:44 1823 357 2005-08-08 08:22:44 1 2006-02-16 02:30:53
  40381. 10504 2005-08-01 11:10:55 3345 530 2005-08-10 10:16:55 1 2006-02-16 02:30:53
  40382. 10505 2005-08-01 11:13:59 2977 426 2005-08-05 07:20:59 2 2006-02-16 02:30:53
  40383. 10506 2005-08-01 11:16:05 1171 216 2005-08-03 05:37:05 2 2006-02-16 02:30:53
  40384. 10507 2005-08-01 11:22:20 367 45 2005-08-04 13:18:20 2 2006-02-16 02:30:53
  40385. 10508 2005-08-01 11:23:27 3890 431 2005-08-02 10:17:27 1 2006-02-16 02:30:53
  40386. 10509 2005-08-01 11:25:28 96 504 2005-08-10 09:19:28 2 2006-02-16 02:30:53
  40387. 10510 2005-08-01 11:28:30 410 259 2005-08-07 11:37:30 1 2006-02-16 02:30:53
  40388. 10511 2005-08-01 11:32:16 3874 487 2005-08-04 09:38:16 1 2006-02-16 02:30:53
  40389. 10512 2005-08-01 11:36:19 3294 438 2005-08-09 06:52:19 2 2006-02-16 02:30:53
  40390. 10513 2005-08-01 11:37:34 4057 105 2005-08-02 17:15:34 2 2006-02-16 02:30:53
  40391. 10514 2005-08-01 11:39:26 1512 7 2005-08-03 07:53:26 2 2006-02-16 02:30:53
  40392. 10515 2005-08-01 11:41:33 874 383 2005-08-08 06:23:33 2 2006-02-16 02:30:53
  40393. 10516 2005-08-01 11:41:55 3924 449 2005-08-08 17:16:55 1 2006-02-16 02:30:53
  40394. 10517 2005-08-01 11:41:57 2299 199 2005-08-05 06:14:57 1 2006-02-16 02:30:53
  40395. 10518 2005-08-01 11:44:08 4444 556 2005-08-07 07:58:08 2 2006-02-16 02:30:53
  40396. 10519 2005-08-01 11:44:13 1967 456 2005-08-09 16:57:13 1 2006-02-16 02:30:53
  40397. 10520 2005-08-01 11:45:58 4396 543 2005-08-06 17:28:58 2 2006-02-16 02:30:53
  40398. 10521 2005-08-01 11:46:17 662 346 2005-08-05 11:06:17 2 2006-02-16 02:30:53
  40399. 10522 2005-08-01 11:48:51 4159 254 2005-08-05 12:40:51 1 2006-02-16 02:30:53
  40400. 10523 2005-08-01 11:52:32 2408 34 2005-08-02 10:47:32 1 2006-02-16 02:30:53
  40401. 10524 2005-08-01 11:53:12 4116 38 2005-08-08 10:40:12 2 2006-02-16 02:30:53
  40402. 10525 2005-08-01 11:53:17 3811 36 2005-08-07 07:24:17 1 2006-02-16 02:30:53
  40403. 10526 2005-08-01 11:55:33 27 14 2005-08-08 16:42:33 1 2006-02-16 02:30:53
  40404. 10527 2005-08-01 11:55:54 4530 431 2005-08-05 15:56:54 2 2006-02-16 02:30:53
  40405. 10528 2005-08-01 11:56:22 4401 564 2005-08-07 07:13:22 1 2006-02-16 02:30:53
  40406. 10529 2005-08-01 12:00:02 851 444 2005-08-08 16:18:02 1 2006-02-16 02:30:53
  40407. 10530 2005-08-01 12:01:17 3216 520 2005-08-06 09:55:17 2 2006-02-16 02:30:53
  40408. 10531 2005-08-01 12:06:30 3846 459 2005-08-04 10:23:30 2 2006-02-16 02:30:53
  40409. 10532 2005-08-01 12:06:35 746 191 2005-08-07 16:04:35 2 2006-02-16 02:30:53
  40410. 10533 2005-08-01 12:14:16 1924 593 2005-08-09 17:13:16 2 2006-02-16 02:30:53
  40411. 10534 2005-08-01 12:15:11 4354 397 2005-08-04 17:06:11 1 2006-02-16 02:30:53
  40412. 10535 2005-08-01 12:21:13 1838 284 2005-08-09 08:58:13 1 2006-02-16 02:30:53
  40413. 10536 2005-08-01 12:21:53 1251 86 2005-08-04 13:08:53 2 2006-02-16 02:30:53
  40414. 10537 2005-08-01 12:22:28 2140 418 2005-08-08 07:27:28 1 2006-02-16 02:30:53
  40415. 10538 2005-08-01 12:22:41 686 37 2005-08-02 10:31:41 2 2006-02-16 02:30:53
  40416. 10539 2005-08-01 12:23:00 3341 232 2005-08-07 10:25:00 2 2006-02-16 02:30:53
  40417. 10540 2005-08-01 12:24:42 4121 84 2005-08-03 08:39:42 2 2006-02-16 02:30:53
  40418. 10541 2005-08-01 12:24:54 1413 234 2005-08-03 16:18:54 1 2006-02-16 02:30:53
  40419. 10542 2005-08-01 12:32:23 1102 465 2005-08-08 16:26:23 1 2006-02-16 02:30:53
  40420. 10543 2005-08-01 12:36:09 624 29 2005-08-07 07:42:09 1 2006-02-16 02:30:53
  40421. 10544 2005-08-01 12:36:21 3195 589 2005-08-07 12:25:21 2 2006-02-16 02:30:53
  40422. 10545 2005-08-01 12:37:46 4230 425 2005-08-04 16:02:46 2 2006-02-16 02:30:53
  40423. 10546 2005-08-01 12:44:17 1589 362 2005-08-06 16:26:17 2 2006-02-16 02:30:53
  40424. 10547 2005-08-01 12:44:17 1707 403 2005-08-08 06:53:17 1 2006-02-16 02:30:53
  40425. 10548 2005-08-01 12:44:32 1914 85 2005-08-07 09:17:32 1 2006-02-16 02:30:53
  40426. 10549 2005-08-01 12:46:39 3719 61 2005-08-06 17:17:39 1 2006-02-16 02:30:53
  40427. 10550 2005-08-01 12:46:52 1980 129 2005-08-05 16:48:52 2 2006-02-16 02:30:53
  40428. 10551 2005-08-01 12:48:55 2974 294 2005-08-10 16:11:55 1 2006-02-16 02:30:53
  40429. 10552 2005-08-01 12:49:44 4263 119 2005-08-04 16:20:44 2 2006-02-16 02:30:53
  40430. 10553 2005-08-01 12:54:06 2768 415 2005-08-06 15:27:06 1 2006-02-16 02:30:53
  40431. 10554 2005-08-01 12:56:19 3220 209 2005-08-03 09:44:19 2 2006-02-16 02:30:53
  40432. 10555 2005-08-01 12:56:38 377 487 2005-08-10 18:19:38 1 2006-02-16 02:30:53
  40433. 10556 2005-08-01 12:58:42 144 117 2005-08-03 07:18:42 2 2006-02-16 02:30:53
  40434. 10557 2005-08-01 12:59:24 240 385 2005-08-04 17:08:24 2 2006-02-16 02:30:53
  40435. 10558 2005-08-01 13:00:20 4399 117 2005-08-05 16:31:20 1 2006-02-16 02:30:53
  40436. 10559 2005-08-01 13:02:58 2861 174 2005-08-09 10:03:58 2 2006-02-16 02:30:53
  40437. 10560 2005-08-01 13:04:57 1534 427 2005-08-05 18:25:57 2 2006-02-16 02:30:53
  40438. 10561 2005-08-01 13:05:35 2195 8 2005-08-04 08:34:35 2 2006-02-16 02:30:53
  40439. 10562 2005-08-01 13:05:52 1947 178 2005-08-02 17:05:52 1 2006-02-16 02:30:53
  40440. 10563 2005-08-01 13:06:03 1885 214 2005-08-09 08:39:03 2 2006-02-16 02:30:53
  40441. 10564 2005-08-01 13:07:34 4469 387 2005-08-06 15:14:34 2 2006-02-16 02:30:53
  40442. 10565 2005-08-01 13:08:27 347 165 2005-08-02 10:30:27 1 2006-02-16 02:30:53
  40443. 10566 2005-08-01 13:12:11 3988 269 2005-08-05 11:16:11 2 2006-02-16 02:30:53
  40444. 10567 2005-08-01 13:16:01 2744 212 2005-08-05 14:59:01 1 2006-02-16 02:30:53
  40445. 10568 2005-08-01 13:17:28 3009 130 2005-08-08 17:04:28 1 2006-02-16 02:30:53
  40446. 10569 2005-08-01 13:18:23 611 179 2005-08-10 13:33:23 1 2006-02-16 02:30:53
  40447. 10570 2005-08-01 13:23:06 369 21 2005-08-05 15:30:06 2 2006-02-16 02:30:53
  40448. 10571 2005-08-01 13:25:30 3660 308 2005-08-02 16:43:30 2 2006-02-16 02:30:53
  40449. 10572 2005-08-01 13:26:53 1239 386 2005-08-07 18:47:53 2 2006-02-16 02:30:53
  40450. 10573 2005-08-01 13:27:24 4252 585 2005-08-04 15:09:24 2 2006-02-16 02:30:53
  40451. 10574 2005-08-01 13:36:51 679 287 2005-08-10 13:25:51 2 2006-02-16 02:30:53
  40452. 10575 2005-08-01 13:41:41 4447 251 2005-08-08 11:30:41 1 2006-02-16 02:30:53
  40453. 10576 2005-08-01 13:46:02 1876 180 2005-08-05 10:19:02 1 2006-02-16 02:30:53
  40454. 10577 2005-08-01 13:46:38 2240 428 2005-08-06 11:35:38 2 2006-02-16 02:30:53
  40455. 10578 2005-08-01 13:48:02 3704 113 2005-08-07 13:40:02 1 2006-02-16 02:30:53
  40456. 10579 2005-08-01 13:48:22 4068 270 2005-08-07 11:51:22 1 2006-02-16 02:30:53
  40457. 10580 2005-08-01 13:51:14 590 234 2005-08-08 11:49:14 2 2006-02-16 02:30:53
  40458. 10581 2005-08-01 13:52:30 2801 217 2005-08-10 19:11:30 1 2006-02-16 02:30:53
  40459. 10582 2005-08-01 13:54:22 2536 233 2005-08-05 16:46:22 2 2006-02-16 02:30:53
  40460. 10583 2005-08-01 13:54:35 704 125 2005-08-03 18:21:35 1 2006-02-16 02:30:53
  40461. 10584 2005-08-01 13:58:47 715 86 2005-08-06 13:38:47 2 2006-02-16 02:30:53
  40462. 10585 2005-08-01 14:00:42 2670 228 2005-08-09 11:42:42 2 2006-02-16 02:30:53
  40463. 10586 2005-08-01 14:00:59 3306 583 2005-08-06 10:00:59 2 2006-02-16 02:30:53
  40464. 10587 2005-08-01 14:03:38 3000 521 2005-08-08 19:59:38 2 2006-02-16 02:30:53
  40465. 10588 2005-08-01 14:10:21 2384 49 2005-08-03 13:47:21 2 2006-02-16 02:30:53
  40466. 10589 2005-08-01 14:11:09 4280 375 2005-08-09 09:28:09 2 2006-02-16 02:30:53
  40467. 10590 2005-08-01 14:11:53 740 78 2005-08-04 20:04:53 1 2006-02-16 02:30:53
  40468. 10591 2005-08-01 14:12:29 3360 52 2005-08-04 08:46:29 2 2006-02-16 02:30:53
  40469. 10592 2005-08-01 14:13:00 829 265 2005-08-09 13:03:00 2 2006-02-16 02:30:53
  40470. 10593 2005-08-01 14:13:19 1886 144 2005-08-06 08:48:19 2 2006-02-16 02:30:53
  40471. 10594 2005-08-01 14:14:59 1826 53 2005-08-07 10:48:59 2 2006-02-16 02:30:53
  40472. 10595 2005-08-01 14:16:28 966 137 2005-08-03 10:37:28 1 2006-02-16 02:30:53
  40473. 10596 2005-08-01 14:18:57 803 112 2005-08-07 14:59:57 2 2006-02-16 02:30:53
  40474. 10597 2005-08-01 14:19:48 3292 3 2005-08-08 20:01:48 1 2006-02-16 02:30:53
  40475. 10598 2005-08-01 14:23:36 2341 397 2005-08-10 14:07:36 2 2006-02-16 02:30:53
  40476. 10599 2005-08-01 14:23:58 2422 271 2005-08-06 10:45:58 2 2006-02-16 02:30:53
  40477. 10600 2005-08-01 14:25:21 3900 294 2005-08-06 18:00:21 1 2006-02-16 02:30:53
  40478. 10601 2005-08-01 14:25:40 2843 420 2005-08-10 09:07:40 1 2006-02-16 02:30:53
  40479. 10602 2005-08-01 14:30:23 1506 111 2005-08-07 15:20:23 1 2006-02-16 02:30:53
  40480. 10603 2005-08-01 14:30:35 4024 394 2005-08-05 11:13:35 2 2006-02-16 02:30:53
  40481. 10604 2005-08-01 14:35:08 2833 250 2005-08-08 10:19:08 2 2006-02-16 02:30:53
  40482. 10605 2005-08-01 14:36:26 680 341 2005-08-06 12:04:26 2 2006-02-16 02:30:53
  40483. 10606 2005-08-01 14:39:15 81 335 2005-08-08 11:31:15 1 2006-02-16 02:30:53
  40484. 10607 2005-08-01 14:44:43 3999 438 2005-08-02 16:39:43 2 2006-02-16 02:30:53
  40485. 10608 2005-08-01 14:48:41 3835 381 2005-08-04 17:32:41 2 2006-02-16 02:30:53
  40486. 10609 2005-08-01 14:48:45 2587 5 2005-08-04 13:41:45 2 2006-02-16 02:30:53
  40487. 10610 2005-08-01 14:49:41 1865 396 2005-08-03 13:07:41 1 2006-02-16 02:30:53
  40488. 10611 2005-08-01 14:53:52 957 135 2005-08-07 09:15:52 2 2006-02-16 02:30:53
  40489. 10612 2005-08-01 14:55:31 287 554 2005-08-06 19:01:31 1 2006-02-16 02:30:53
  40490. 10613 2005-08-01 14:56:14 4357 527 2005-08-07 09:33:14 1 2006-02-16 02:30:53
  40491. 10614 2005-08-01 14:57:00 232 533 2005-08-10 09:31:00 2 2006-02-16 02:30:53
  40492. 10615 2005-08-01 14:58:14 2639 34 2005-08-02 13:38:14 1 2006-02-16 02:30:53
  40493. 10616 2005-08-01 14:59:50 1094 20 2005-08-07 11:38:50 2 2006-02-16 02:30:53
  40494. 10617 2005-08-01 15:05:52 4344 476 2005-08-09 18:54:52 1 2006-02-16 02:30:53
  40495. 10618 2005-08-01 15:06:38 3729 386 2005-08-06 15:52:38 2 2006-02-16 02:30:53
  40496. 10619 2005-08-01 15:07:04 2189 132 2005-08-07 11:42:04 2 2006-02-16 02:30:53
  40497. 10620 2005-08-01 15:09:17 3064 183 2005-08-09 13:58:17 1 2006-02-16 02:30:53
  40498. 10621 2005-08-01 15:10:26 1650 172 2005-08-04 10:58:26 1 2006-02-16 02:30:53
  40499. 10622 2005-08-01 15:12:00 3044 171 2005-08-08 14:09:00 1 2006-02-16 02:30:53
  40500. 10623 2005-08-01 15:22:38 4426 494 2005-08-03 11:03:38 2 2006-02-16 02:30:53
  40501. 10624 2005-08-01 15:27:05 3801 74 2005-08-05 19:50:05 1 2006-02-16 02:30:53
  40502. 10625 2005-08-01 15:27:10 3022 5 2005-08-02 13:16:10 1 2006-02-16 02:30:53
  40503. 10626 2005-08-01 15:32:41 1042 122 2005-08-05 18:08:41 1 2006-02-16 02:30:53
  40504. 10627 2005-08-01 15:33:03 2026 472 2005-08-02 21:26:03 1 2006-02-16 02:30:53
  40505. 10628 2005-08-01 15:33:19 427 285 2005-08-05 17:27:19 1 2006-02-16 02:30:53
  40506. 10629 2005-08-01 15:33:32 997 575 2005-08-08 12:40:32 2 2006-02-16 02:30:53
  40507. 10630 2005-08-01 15:34:46 2335 39 2005-08-03 10:50:46 1 2006-02-16 02:30:53
  40508. 10631 2005-08-01 15:35:14 2712 304 2005-08-03 10:48:14 1 2006-02-16 02:30:53
  40509. 10632 2005-08-01 15:36:56 1290 406 2005-08-05 17:32:56 1 2006-02-16 02:30:53
  40510. 10633 2005-08-01 15:37:17 3125 475 2005-08-10 14:30:17 2 2006-02-16 02:30:53
  40511. 10634 2005-08-01 15:37:48 445 592 2005-08-02 12:11:48 2 2006-02-16 02:30:53
  40512. 10635 2005-08-01 15:37:58 547 52 2005-08-07 11:15:58 2 2006-02-16 02:30:53
  40513. 10636 2005-08-01 15:40:35 621 385 2005-08-05 18:46:35 1 2006-02-16 02:30:53
  40514. 10637 2005-08-01 15:44:09 1243 161 2005-08-04 14:42:09 1 2006-02-16 02:30:53
  40515. 10638 2005-08-01 15:44:20 2239 132 2005-08-08 16:05:20 2 2006-02-16 02:30:53
  40516. 10639 2005-08-01 15:44:43 1015 39 2005-08-10 13:51:43 1 2006-02-16 02:30:53
  40517. 10640 2005-08-01 15:44:51 3020 375 2005-08-06 15:52:51 1 2006-02-16 02:30:53
  40518. 10641 2005-08-01 15:44:57 972 285 2005-08-04 18:15:57 2 2006-02-16 02:30:53
  40519. 10642 2005-08-01 15:45:11 2573 294 2005-08-02 20:13:11 1 2006-02-16 02:30:53
  40520. 10643 2005-08-01 15:48:33 3853 495 2005-08-06 20:24:33 2 2006-02-16 02:30:53
  40521. 10644 2005-08-01 15:52:00 4374 7 2005-08-08 16:08:00 1 2006-02-16 02:30:53
  40522. 10645 2005-08-01 15:52:01 3864 130 2005-08-09 18:58:01 1 2006-02-16 02:30:53
  40523. 10646 2005-08-01 15:57:55 1752 209 2005-08-02 19:08:55 1 2006-02-16 02:30:53
  40524. 10647 2005-08-01 16:08:46 3137 115 2005-08-06 20:37:46 2 2006-02-16 02:30:53
  40525. 10648 2005-08-01 16:08:52 691 270 2005-08-05 20:17:52 1 2006-02-16 02:30:53
  40526. 10649 2005-08-01 16:11:40 1032 278 2005-08-06 14:09:40 2 2006-02-16 02:30:53
  40527. 10650 2005-08-01 16:18:45 2306 242 2005-08-09 16:29:45 1 2006-02-16 02:30:53
  40528. 10651 2005-08-01 16:20:22 1541 404 2005-08-03 15:53:22 1 2006-02-16 02:30:53
  40529. 10652 2005-08-01 16:24:08 1633 241 2005-08-03 16:00:08 2 2006-02-16 02:30:53
  40530. 10653 2005-08-01 16:28:07 1190 75 2005-08-07 21:22:07 2 2006-02-16 02:30:53
  40531. 10654 2005-08-01 16:31:35 2522 399 2005-08-05 12:04:35 2 2006-02-16 02:30:53
  40532. 10655 2005-08-01 16:33:27 1399 385 2005-08-08 17:17:27 2 2006-02-16 02:30:53
  40533. 10656 2005-08-01 16:38:04 2571 80 2005-08-09 19:37:04 2 2006-02-16 02:30:53
  40534. 10657 2005-08-01 16:38:44 3075 590 2005-08-06 16:05:44 2 2006-02-16 02:30:53
  40535. 10658 2005-08-01 16:39:18 2943 469 2005-08-09 18:17:18 2 2006-02-16 02:30:53
  40536. 10659 2005-08-01 16:40:34 786 238 2005-08-09 21:00:34 2 2006-02-16 02:30:53
  40537. 10660 2005-08-01 16:48:01 2518 253 2005-08-07 14:42:01 2 2006-02-16 02:30:53
  40538. 10661 2005-08-01 16:48:31 3311 177 2005-08-02 21:02:31 1 2006-02-16 02:30:53
  40539. 10662 2005-08-01 16:50:57 2857 151 2005-08-03 17:19:57 1 2006-02-16 02:30:53
  40540. 10663 2005-08-01 16:51:08 4258 433 2005-08-08 21:17:08 2 2006-02-16 02:30:53
  40541. 10664 2005-08-01 16:51:15 3167 337 2005-08-04 19:14:15 2 2006-02-16 02:30:53
  40542. 10665 2005-08-01 16:56:17 3594 133 2005-08-03 18:58:17 1 2006-02-16 02:30:53
  40543. 10666 2005-08-01 16:56:36 1945 197 2005-08-07 22:23:36 2 2006-02-16 02:30:53
  40544. 10667 2005-08-01 16:58:22 3937 340 2005-08-10 15:41:22 1 2006-02-16 02:30:53
  40545. 10668 2005-08-01 17:00:27 2085 58 2005-08-02 14:49:27 2 2006-02-16 02:30:53
  40546. 10669 2005-08-01 17:03:28 2121 559 2005-08-08 21:34:28 2 2006-02-16 02:30:53
  40547. 10670 2005-08-01 17:07:16 156 512 2005-08-10 11:46:16 2 2006-02-16 02:30:53
  40548. 10671 2005-08-01 17:09:59 4430 10 2005-08-09 21:36:59 1 2006-02-16 02:30:53
  40549. 10672 2005-08-01 17:10:54 3674 375 2005-08-07 12:19:54 2 2006-02-16 02:30:53
  40550. 10673 2005-08-01 17:11:51 2735 528 2005-08-03 13:32:51 1 2006-02-16 02:30:53
  40551. 10674 2005-08-01 17:11:52 1962 340 2005-08-08 19:34:52 1 2006-02-16 02:30:53
  40552. 10675 2005-08-01 17:11:57 649 522 2005-08-10 17:18:57 1 2006-02-16 02:30:53
  40553. 10676 2005-08-01 17:14:15 629 79 2005-08-04 12:34:15 1 2006-02-16 02:30:53
  40554. 10677 2005-08-01 17:24:35 4350 483 2005-08-04 20:03:35 1 2006-02-16 02:30:53
  40555. 10678 2005-08-01 17:26:24 4438 56 2005-08-05 22:55:24 1 2006-02-16 02:30:53
  40556. 10679 2005-08-01 17:27:58 4437 198 2005-08-08 16:06:58 1 2006-02-16 02:30:53
  40557. 10680 2005-08-01 17:28:05 2498 60 2005-08-04 19:34:05 1 2006-02-16 02:30:53
  40558. 10681 2005-08-01 17:30:35 1468 119 2005-08-02 14:48:35 2 2006-02-16 02:30:53
  40559. 10682 2005-08-01 17:32:53 4557 18 2005-08-06 15:49:53 2 2006-02-16 02:30:53
  40560. 10683 2005-08-01 17:33:03 244 246 2005-08-04 23:12:03 1 2006-02-16 02:30:53
  40561. 10684 2005-08-01 17:47:00 1985 244 2005-08-09 15:00:00 2 2006-02-16 02:30:53
  40562. 10685 2005-08-01 17:49:38 2029 200 2005-08-07 21:04:38 2 2006-02-16 02:30:53
  40563. 10686 2005-08-01 17:51:21 2542 150 2005-08-03 19:01:21 1 2006-02-16 02:30:53
  40564. 10687 2005-08-01 17:53:02 3191 16 2005-08-05 19:16:02 2 2006-02-16 02:30:53
  40565. 10688 2005-08-01 17:53:43 3161 449 2005-08-09 21:50:43 1 2006-02-16 02:30:53
  40566. 10689 2005-08-01 18:04:18 1442 568 2005-08-05 21:17:18 2 2006-02-16 02:30:53
  40567. 10690 2005-08-01 18:05:54 807 80 2005-08-10 21:43:54 2 2006-02-16 02:30:53
  40568. 10691 2005-08-01 18:09:53 4281 276 2005-08-03 16:32:53 1 2006-02-16 02:30:53
  40569. 10692 2005-08-01 18:12:35 371 596 2005-08-07 13:06:35 1 2006-02-16 02:30:53
  40570. 10693 2005-08-01 18:14:14 2387 444 2005-08-03 22:00:14 2 2006-02-16 02:30:53
  40571. 10694 2005-08-01 18:15:07 3429 98 2005-08-10 15:38:07 1 2006-02-16 02:30:53
  40572. 10695 2005-08-01 18:16:20 3612 374 2005-08-03 12:21:20 2 2006-02-16 02:30:53
  40573. 10696 2005-08-01 18:18:13 47 120 2005-08-04 14:09:13 1 2006-02-16 02:30:53
  40574. 10697 2005-08-01 18:20:23 3115 519 2005-08-07 21:18:23 1 2006-02-16 02:30:53
  40575. 10698 2005-08-01 18:24:41 2738 135 2005-08-08 18:59:41 2 2006-02-16 02:30:53
  40576. 10699 2005-08-01 18:24:51 1029 125 2005-08-06 20:18:51 1 2006-02-16 02:30:53
  40577. 10700 2005-08-01 18:26:31 4259 203 2005-08-07 19:51:31 2 2006-02-16 02:30:53
  40578. 10701 2005-08-01 18:28:17 3958 538 2005-08-09 21:51:17 1 2006-02-16 02:30:53
  40579. 10702 2005-08-01 18:34:59 2802 560 2005-08-09 23:44:59 2 2006-02-16 02:30:53
  40580. 10703 2005-08-01 18:37:39 1818 181 2005-08-07 23:50:39 2 2006-02-16 02:30:53
  40581. 10704 2005-08-01 18:38:02 960 594 2005-08-08 20:19:02 1 2006-02-16 02:30:53
  40582. 10705 2005-08-01 18:38:54 4338 381 2005-08-04 18:00:54 1 2006-02-16 02:30:53
  40583. 10706 2005-08-01 18:41:28 1183 147 2005-08-10 14:30:28 1 2006-02-16 02:30:53
  40584. 10707 2005-08-01 18:41:34 1165 558 2005-08-06 12:41:34 1 2006-02-16 02:30:53
  40585. 10708 2005-08-01 18:43:28 3978 567 2005-08-09 15:24:28 1 2006-02-16 02:30:53
  40586. 10709 2005-08-01 18:43:57 282 418 2005-08-06 13:17:57 2 2006-02-16 02:30:53
  40587. 10710 2005-08-01 18:44:36 3082 177 2005-08-03 13:17:36 1 2006-02-16 02:30:53
  40588. 10711 2005-08-01 18:45:09 4278 400 2005-08-02 19:47:09 2 2006-02-16 02:30:53
  40589. 10712 2005-08-01 18:47:56 1188 532 2005-08-07 19:26:56 2 2006-02-16 02:30:53
  40590. 10713 2005-08-01 18:50:05 2030 369 2005-08-05 00:43:05 2 2006-02-16 02:30:53
  40591. 10714 2005-08-01 18:51:29 1465 64 2005-08-04 18:49:29 2 2006-02-16 02:30:53
  40592. 10715 2005-08-01 18:51:48 1054 386 2005-08-06 14:44:48 1 2006-02-16 02:30:53
  40593. 10716 2005-08-01 18:53:48 3405 515 2005-08-04 13:49:48 1 2006-02-16 02:30:53
  40594. 10717 2005-08-01 18:53:53 2934 365 2005-08-05 21:28:53 1 2006-02-16 02:30:53
  40595. 10718 2005-08-01 18:55:38 2763 394 2005-08-04 14:45:38 1 2006-02-16 02:30:53
  40596. 10719 2005-08-01 19:00:28 3861 188 2005-08-07 17:04:28 1 2006-02-16 02:30:53
  40597. 10720 2005-08-01 19:04:33 3712 326 2005-08-06 23:12:33 2 2006-02-16 02:30:53
  40598. 10721 2005-08-01 19:05:18 904 18 2005-08-09 20:45:18 2 2006-02-16 02:30:53
  40599. 10722 2005-08-01 19:07:08 2849 90 2005-08-04 14:09:08 2 2006-02-16 02:30:53
  40600. 10723 2005-08-01 19:10:49 2526 580 2005-08-08 19:21:49 2 2006-02-16 02:30:53
  40601. 10724 2005-08-01 19:10:59 3425 576 2005-08-07 18:44:59 1 2006-02-16 02:30:53
  40602. 10725 2005-08-01 19:11:04 4486 534 2005-08-07 18:16:04 2 2006-02-16 02:30:53
  40603. 10726 2005-08-01 19:14:53 749 75 2005-08-08 23:56:53 2 2006-02-16 02:30:53
  40604. 10727 2005-08-01 19:15:08 2049 16 2005-08-03 13:52:08 1 2006-02-16 02:30:53
  40605. 10728 2005-08-01 19:15:09 3133 309 2005-08-04 19:35:09 1 2006-02-16 02:30:53
  40606. 10729 2005-08-01 19:21:11 2918 595 2005-08-07 21:20:11 2 2006-02-16 02:30:53
  40607. 10730 2005-08-01 19:21:42 1793 368 2005-08-10 21:18:42 1 2006-02-16 02:30:53
  40608. 10731 2005-08-01 19:21:48 4248 278 2005-08-08 22:01:48 2 2006-02-16 02:30:53
  40609. 10732 2005-08-01 19:25:18 2810 538 2005-08-10 22:26:18 1 2006-02-16 02:30:53
  40610. 10733 2005-08-01 19:28:01 3980 560 2005-08-09 18:41:01 1 2006-02-16 02:30:53
  40611. 10734 2005-08-01 19:28:47 1130 21 2005-08-03 00:41:47 2 2006-02-16 02:30:53
  40612. 10735 2005-08-01 19:29:45 4061 544 2005-08-02 19:50:45 2 2006-02-16 02:30:53
  40613. 10736 2005-08-01 19:30:21 2227 272 2005-08-02 22:37:21 1 2006-02-16 02:30:53
  40614. 10737 2005-08-01 19:31:24 1773 149 2005-08-10 19:17:24 1 2006-02-16 02:30:53
  40615. 10738 2005-08-01 19:39:08 544 377 2005-08-10 20:37:08 1 2006-02-16 02:30:53
  40616. 10739 2005-08-01 19:46:11 3160 197 2005-08-06 21:08:11 2 2006-02-16 02:30:53
  40617. 10740 2005-08-01 19:50:32 3215 144 2005-08-07 23:25:32 1 2006-02-16 02:30:53
  40618. 10741 2005-08-01 19:52:52 3300 469 2005-08-04 19:58:52 1 2006-02-16 02:30:53
  40619. 10742 2005-08-01 19:53:13 3658 416 2005-08-10 15:05:13 1 2006-02-16 02:30:53
  40620. 10743 2005-08-01 19:55:09 4206 197 2005-08-03 19:29:09 1 2006-02-16 02:30:53
  40621. 10744 2005-08-01 19:56:49 565 439 2005-08-09 16:33:49 2 2006-02-16 02:30:53
  40622. 10745 2005-08-01 19:57:06 446 307 2005-08-07 18:04:06 1 2006-02-16 02:30:53
  40623. 10746 2005-08-01 19:58:49 305 508 2005-08-10 19:00:49 2 2006-02-16 02:30:53
  40624. 10747 2005-08-01 19:59:41 4527 266 2005-08-10 00:00:41 2 2006-02-16 02:30:53
  40625. 10748 2005-08-01 20:01:24 3769 181 2005-08-05 19:55:24 1 2006-02-16 02:30:53
  40626. 10749 2005-08-01 20:02:01 2953 214 2005-08-03 14:20:01 1 2006-02-16 02:30:53
  40627. 10750 2005-08-01 20:06:00 3206 201 2005-08-07 15:48:00 1 2006-02-16 02:30:53
  40628. 10751 2005-08-01 20:06:10 3257 518 2005-08-10 22:36:10 2 2006-02-16 02:30:53
  40629. 10752 2005-08-01 20:08:49 3203 147 2005-08-10 15:41:49 2 2006-02-16 02:30:53
  40630. 10753 2005-08-01 20:09:24 1557 273 2005-08-09 19:31:24 1 2006-02-16 02:30:53
  40631. 10754 2005-08-01 20:12:33 2122 460 2005-08-10 01:07:33 2 2006-02-16 02:30:53
  40632. 10755 2005-08-01 20:14:14 1217 239 2005-08-07 01:04:14 1 2006-02-16 02:30:53
  40633. 10756 2005-08-01 20:17:03 4247 596 2005-08-08 18:31:03 2 2006-02-16 02:30:53
  40634. 10757 2005-08-01 20:22:44 102 188 2005-08-04 19:48:44 2 2006-02-16 02:30:53
  40635. 10758 2005-08-01 20:22:51 191 373 2005-08-10 16:11:51 1 2006-02-16 02:30:53
  40636. 10759 2005-08-01 20:22:51 3528 256 2005-08-07 22:07:51 1 2006-02-16 02:30:53
  40637. 10760 2005-08-01 20:25:20 1311 497 2005-08-09 16:57:20 1 2006-02-16 02:30:53
  40638. 10761 2005-08-01 20:25:35 3967 36 2005-08-08 15:20:35 2 2006-02-16 02:30:53
  40639. 10762 2005-08-01 20:28:39 1363 208 2005-08-05 17:36:39 1 2006-02-16 02:30:53
  40640. 10763 2005-08-01 20:32:27 987 276 2005-08-05 01:24:27 2 2006-02-16 02:30:53
  40641. 10764 2005-08-01 20:32:42 3808 357 2005-08-03 22:14:42 2 2006-02-16 02:30:53
  40642. 10765 2005-08-01 20:34:51 566 337 2005-08-04 00:02:51 1 2006-02-16 02:30:53
  40643. 10766 2005-08-01 20:36:29 947 420 2005-08-04 00:30:29 1 2006-02-16 02:30:53
  40644. 10767 2005-08-01 20:37:23 2875 488 2005-08-04 23:15:23 2 2006-02-16 02:30:53
  40645. 10768 2005-08-01 20:39:32 454 273 2005-08-10 19:41:32 1 2006-02-16 02:30:53
  40646. 10769 2005-08-01 20:43:02 3222 348 2005-08-05 02:32:02 1 2006-02-16 02:30:53
  40647. 10770 2005-08-01 20:45:39 2567 262 2005-08-04 19:21:39 1 2006-02-16 02:30:53
  40648. 10771 2005-08-01 20:49:35 1274 485 2005-08-10 16:58:35 1 2006-02-16 02:30:53
  40649. 10772 2005-08-01 20:51:10 132 485 2005-08-10 15:50:10 1 2006-02-16 02:30:53
  40650. 10773 2005-08-01 20:53:45 3854 181 2005-08-07 00:16:45 1 2006-02-16 02:30:53
  40651. 10774 2005-08-01 20:54:33 4231 407 2005-08-08 20:59:33 2 2006-02-16 02:30:53
  40652. 10775 2005-08-01 20:59:52 4190 263 2005-08-04 19:31:52 2 2006-02-16 02:30:53
  40653. 10776 2005-08-01 20:59:58 1598 565 2005-08-10 20:33:58 2 2006-02-16 02:30:53
  40654. 10777 2005-08-01 21:03:50 3487 493 2005-08-06 19:29:50 1 2006-02-16 02:30:53
  40655. 10778 2005-08-01 21:11:39 1939 220 2005-08-02 22:59:39 2 2006-02-16 02:30:53
  40656. 10779 2005-08-01 21:11:54 2092 578 2005-08-09 21:00:54 2 2006-02-16 02:30:53
  40657. 10780 2005-08-01 21:14:24 1450 51 2005-08-07 16:32:24 2 2006-02-16 02:30:53
  40658. 10781 2005-08-01 21:22:41 1321 259 2005-08-06 01:02:41 1 2006-02-16 02:30:53
  40659. 10782 2005-08-01 21:23:25 1507 577 2005-08-03 20:15:25 2 2006-02-16 02:30:53
  40660. 10783 2005-08-01 21:23:37 1192 495 2005-08-09 20:18:37 1 2006-02-16 02:30:53
  40661. 10784 2005-08-01 21:24:28 3494 208 2005-08-09 19:23:28 1 2006-02-16 02:30:53
  40662. 10785 2005-08-01 21:24:55 2282 397 2005-08-06 17:47:55 1 2006-02-16 02:30:53
  40663. 10786 2005-08-01 21:29:34 50 490 2005-08-10 17:27:34 1 2006-02-16 02:30:53
  40664. 10787 2005-08-01 21:35:01 3246 127 2005-08-10 23:30:01 1 2006-02-16 02:30:53
  40665. 10788 2005-08-01 21:37:10 3350 160 2005-08-03 01:33:10 1 2006-02-16 02:30:53
  40666. 10789 2005-08-01 21:37:55 3298 403 2005-08-07 17:01:55 2 2006-02-16 02:30:53
  40667. 10790 2005-08-01 21:38:37 3080 274 2005-08-08 17:20:37 2 2006-02-16 02:30:53
  40668. 10791 2005-08-01 21:41:52 2061 338 2005-08-04 03:28:52 2 2006-02-16 02:30:53
  40669. 10792 2005-08-01 21:44:24 1037 264 2005-08-02 19:48:24 2 2006-02-16 02:30:53
  40670. 10793 2005-08-01 21:48:03 3018 225 2005-08-10 19:16:03 1 2006-02-16 02:30:53
  40671. 10794 2005-08-01 21:51:15 889 27 2005-08-10 18:51:15 2 2006-02-16 02:30:53
  40672. 10795 2005-08-01 21:56:37 2748 76 2005-08-03 01:36:37 1 2006-02-16 02:30:53
  40673. 10796 2005-08-01 21:56:41 2113 534 2005-08-05 01:09:41 1 2006-02-16 02:30:53
  40674. 10797 2005-08-01 22:02:51 1731 308 2005-08-03 23:07:51 1 2006-02-16 02:30:53
  40675. 10798 2005-08-01 22:03:10 382 141 2005-08-08 01:34:10 1 2006-02-16 02:30:53
  40676. 10799 2005-08-01 22:03:31 3282 145 2005-08-06 20:19:31 2 2006-02-16 02:30:53
  40677. 10800 2005-08-01 22:07:44 507 583 2005-08-05 22:45:44 1 2006-02-16 02:30:53
  40678. 10801 2005-08-01 22:09:35 3757 116 2005-08-08 22:23:35 1 2006-02-16 02:30:53
  40679. 10802 2005-08-01 22:18:32 3998 178 2005-08-10 18:41:32 2 2006-02-16 02:30:53
  40680. 10803 2005-08-01 22:22:07 3318 46 2005-08-08 02:37:07 2 2006-02-16 02:30:53
  40681. 10804 2005-08-01 22:22:11 2915 596 2005-08-03 03:42:11 2 2006-02-16 02:30:53
  40682. 10805 2005-08-01 22:23:37 557 203 2005-08-05 01:22:37 2 2006-02-16 02:30:53
  40683. 10806 2005-08-01 22:25:29 3553 89 2005-08-04 18:46:29 2 2006-02-16 02:30:53
  40684. 10807 2005-08-01 22:26:10 1673 287 2005-08-05 21:55:10 1 2006-02-16 02:30:53
  40685. 10808 2005-08-01 22:37:11 596 480 2005-08-09 02:37:11 1 2006-02-16 02:30:53
  40686. 10809 2005-08-01 22:39:27 1167 340 2005-08-03 03:44:27 2 2006-02-16 02:30:53
  40687. 10810 2005-08-01 22:40:39 2314 376 2005-08-06 19:47:39 1 2006-02-16 02:30:53
  40688. 10811 2005-08-01 22:41:15 4012 209 2005-08-10 00:10:15 1 2006-02-16 02:30:53
  40689. 10812 2005-08-01 22:41:16 3762 11 2005-08-07 00:50:16 1 2006-02-16 02:30:53
  40690. 10813 2005-08-01 22:43:00 3580 456 2005-08-03 21:43:00 1 2006-02-16 02:30:53
  40691. 10814 2005-08-01 22:43:12 2758 49 2005-08-05 02:35:12 2 2006-02-16 02:30:53
  40692. 10815 2005-08-01 22:46:21 877 62 2005-08-03 02:43:21 2 2006-02-16 02:30:53
  40693. 10816 2005-08-01 22:48:57 905 129 2005-08-10 04:39:57 2 2006-02-16 02:30:53
  40694. 10817 2005-08-01 22:51:08 3056 501 2005-08-10 16:55:08 2 2006-02-16 02:30:53
  40695. 10818 2005-08-01 22:52:45 4549 309 2005-08-06 04:07:45 1 2006-02-16 02:30:53
  40696. 10819 2005-08-01 22:52:57 983 308 2005-08-06 00:08:57 1 2006-02-16 02:30:53
  40697. 10820 2005-08-01 22:53:40 1487 97 2005-08-02 17:59:40 2 2006-02-16 02:30:53
  40698. 10821 2005-08-01 22:54:27 2016 522 2005-08-07 02:15:27 2 2006-02-16 02:30:53
  40699. 10822 2005-08-01 22:54:28 3895 343 2005-08-02 17:19:28 1 2006-02-16 02:30:53
  40700. 10823 2005-08-01 22:59:10 3322 405 2005-08-08 23:44:10 1 2006-02-16 02:30:53
  40701. 10824 2005-08-01 23:00:22 3948 482 2005-08-04 04:14:22 2 2006-02-16 02:30:53
  40702. 10825 2005-08-01 23:05:33 4386 587 2005-08-04 04:33:33 1 2006-02-16 02:30:53
  40703. 10826 2005-08-01 23:07:56 1228 476 2005-08-08 04:10:56 2 2006-02-16 02:30:53
  40704. 10827 2005-08-01 23:13:00 1590 46 2005-08-08 02:51:00 1 2006-02-16 02:30:53
  40705. 10828 2005-08-01 23:16:10 2448 471 2005-08-09 21:17:10 1 2006-02-16 02:30:53
  40706. 10829 2005-08-01 23:17:06 168 554 2005-08-09 17:22:06 2 2006-02-16 02:30:53
  40707. 10830 2005-08-01 23:18:06 4176 148 2005-08-06 23:15:06 2 2006-02-16 02:30:53
  40708. 10831 2005-08-01 23:22:45 1496 78 2005-08-07 01:05:45 2 2006-02-16 02:30:53
  40709. 10832 2005-08-01 23:24:53 4096 487 2005-08-06 23:18:53 1 2006-02-16 02:30:53
  40710. 10833 2005-08-01 23:25:55 4380 422 2005-08-10 18:01:55 1 2006-02-16 02:30:53
  40711. 10834 2005-08-01 23:28:00 2270 252 2005-08-07 01:21:00 1 2006-02-16 02:30:53
  40712. 10835 2005-08-01 23:28:49 351 90 2005-08-10 21:28:49 2 2006-02-16 02:30:53
  40713. 10836 2005-08-01 23:29:58 4534 217 2005-08-07 23:03:58 2 2006-02-16 02:30:53
  40714. 10837 2005-08-01 23:30:22 1816 410 2005-08-07 23:02:22 1 2006-02-16 02:30:53
  40715. 10838 2005-08-01 23:36:10 69 387 2005-08-05 04:55:10 2 2006-02-16 02:30:53
  40716. 10839 2005-08-01 23:37:39 2867 482 2005-08-02 20:18:39 1 2006-02-16 02:30:53
  40717. 10840 2005-08-01 23:38:34 583 593 2005-08-07 02:36:34 2 2006-02-16 02:30:53
  40718. 10841 2005-08-01 23:39:21 4337 102 2005-08-07 20:47:21 1 2006-02-16 02:30:53
  40719. 10842 2005-08-01 23:41:24 1300 137 2005-08-11 03:48:24 1 2006-02-16 02:30:53
  40720. 10843 2005-08-01 23:43:03 1286 192 2005-08-09 23:49:03 2 2006-02-16 02:30:53
  40721. 10844 2005-08-01 23:46:58 1516 333 2005-08-09 19:42:58 2 2006-02-16 02:30:53
  40722. 10845 2005-08-01 23:47:03 2737 42 2005-08-08 01:57:03 1 2006-02-16 02:30:53
  40723. 10846 2005-08-01 23:47:54 2277 441 2005-08-08 01:10:54 1 2006-02-16 02:30:53
  40724. 10847 2005-08-01 23:49:33 1200 280 2005-08-10 05:37:33 2 2006-02-16 02:30:53
  40725. 10848 2005-08-01 23:50:22 2630 368 2005-08-06 00:52:22 1 2006-02-16 02:30:53
  40726. 10849 2005-08-01 23:51:00 1683 278 2005-08-10 19:59:00 2 2006-02-16 02:30:53
  40727. 10850 2005-08-01 23:53:45 1853 199 2005-08-10 21:11:45 1 2006-02-16 02:30:53
  40728. 10851 2005-08-01 23:58:45 1359 154 2005-08-04 00:59:45 1 2006-02-16 02:30:53
  40729. 10852 2005-08-02 00:00:33 3862 27 2005-08-03 23:09:33 1 2006-02-16 02:30:53
  40730. 10853 2005-08-02 00:00:54 2682 41 2005-08-10 05:37:54 2 2006-02-16 02:30:53
  40731. 10854 2005-08-02 00:02:06 3295 356 2005-08-02 21:55:06 2 2006-02-16 02:30:53
  40732. 10855 2005-08-02 00:06:37 1366 274 2005-08-03 00:39:37 1 2006-02-16 02:30:53
  40733. 10856 2005-08-02 00:07:14 2010 451 2005-08-04 02:48:14 2 2006-02-16 02:30:53
  40734. 10857 2005-08-02 00:07:20 2961 360 2005-08-04 02:35:20 1 2006-02-16 02:30:53
  40735. 10858 2005-08-02 00:08:39 852 312 2005-08-05 00:58:39 2 2006-02-16 02:30:53
  40736. 10859 2005-08-02 00:11:39 277 375 2005-08-08 19:52:39 1 2006-02-16 02:30:53
  40737. 10860 2005-08-02 00:12:32 2827 25 2005-08-04 03:50:32 1 2006-02-16 02:30:53
  40738. 10861 2005-08-02 00:12:46 2162 131 2005-08-09 04:09:46 2 2006-02-16 02:30:53
  40739. 10862 2005-08-02 00:17:34 1077 176 2005-08-08 00:31:34 2 2006-02-16 02:30:53
  40740. 10863 2005-08-02 00:18:07 1170 161 2005-08-10 06:16:07 2 2006-02-16 02:30:53
  40741. 10864 2005-08-02 00:18:59 1694 134 2005-08-08 22:20:59 1 2006-02-16 02:30:53
  40742. 10865 2005-08-02 00:22:46 1485 201 2005-08-09 05:08:46 2 2006-02-16 02:30:53
  40743. 10866 2005-08-02 00:22:49 117 424 2005-08-07 04:38:49 1 2006-02-16 02:30:53
  40744. 10867 2005-08-02 00:24:15 2577 473 2005-08-05 21:09:15 1 2006-02-16 02:30:53
  40745. 10868 2005-08-02 00:25:15 2443 562 2005-08-10 02:31:15 2 2006-02-16 02:30:53
  40746. 10869 2005-08-02 00:26:54 2967 568 2005-08-04 03:40:54 2 2006-02-16 02:30:53
  40747. 10870 2005-08-02 00:27:12 1509 33 2005-08-02 20:00:12 2 2006-02-16 02:30:53
  40748. 10871 2005-08-02 00:27:24 104 75 2005-08-05 06:25:24 1 2006-02-16 02:30:53
  40749. 10872 2005-08-02 00:27:50 2470 84 2005-08-06 20:34:50 2 2006-02-16 02:30:53
  40750. 10873 2005-08-02 00:30:34 169 506 2005-08-07 00:16:34 2 2006-02-16 02:30:53
  40751. 10874 2005-08-02 00:31:00 2552 230 2005-08-07 05:04:00 1 2006-02-16 02:30:53
  40752. 10875 2005-08-02 00:31:44 862 175 2005-08-05 22:24:44 2 2006-02-16 02:30:53
  40753. 10876 2005-08-02 00:31:58 2161 559 2005-08-05 21:45:58 1 2006-02-16 02:30:53
  40754. 10877 2005-08-02 00:32:04 3337 487 2005-08-07 19:44:04 2 2006-02-16 02:30:53
  40755. 10878 2005-08-02 00:33:12 3511 45 2005-08-07 06:02:12 1 2006-02-16 02:30:53
  40756. 10879 2005-08-02 00:33:20 4415 334 2005-08-09 04:13:20 2 2006-02-16 02:30:53
  40757. 10880 2005-08-02 00:34:12 450 528 2005-08-06 21:15:12 2 2006-02-16 02:30:53
  40758. 10881 2005-08-02 00:38:14 781 253 2005-08-09 22:02:14 2 2006-02-16 02:30:53
  40759. 10882 2005-08-02 00:47:16 1349 54 2005-08-09 22:11:16 1 2006-02-16 02:30:53
  40760. 10883 2005-08-02 00:47:19 4 301 2005-08-03 00:02:19 1 2006-02-16 02:30:53
  40761. 10884 2005-08-02 00:47:33 3702 569 2005-08-03 04:38:33 1 2006-02-16 02:30:53
  40762. 10885 2005-08-02 00:51:37 4223 493 2005-08-09 20:49:37 2 2006-02-16 02:30:53
  40763. 10886 2005-08-02 00:52:34 943 77 2005-08-08 00:30:34 1 2006-02-16 02:30:53
  40764. 10887 2005-08-02 00:52:35 3450 573 2005-08-03 05:37:35 1 2006-02-16 02:30:53
  40765. 10888 2005-08-02 00:52:45 2412 428 2005-08-03 03:07:45 1 2006-02-16 02:30:53
  40766. 10889 2005-08-02 00:54:33 2098 64 2005-08-07 19:42:33 1 2006-02-16 02:30:53
  40767. 10890 2005-08-02 00:58:46 78 210 2005-08-10 02:13:46 1 2006-02-16 02:30:53
  40768. 10891 2005-08-02 01:09:55 1269 201 2005-08-05 05:03:55 2 2006-02-16 02:30:53
  40769. 10892 2005-08-02 01:12:06 3243 109 2005-08-09 23:53:06 1 2006-02-16 02:30:53
  40770. 10893 2005-08-02 01:12:13 2529 306 2005-08-11 05:53:13 2 2006-02-16 02:30:53
  40771. 10894 2005-08-02 01:12:35 598 51 2005-08-09 22:55:35 1 2006-02-16 02:30:53
  40772. 10895 2005-08-02 01:16:59 93 77 2005-08-03 02:41:59 2 2006-02-16 02:30:53
  40773. 10896 2005-08-02 01:19:33 2283 505 2005-08-08 06:54:33 1 2006-02-16 02:30:53
  40774. 10897 2005-08-02 01:23:42 291 338 2005-08-03 23:27:42 1 2006-02-16 02:30:53
  40775. 10898 2005-08-02 01:29:57 3814 23 2005-08-06 00:07:57 2 2006-02-16 02:30:53
  40776. 10899 2005-08-02 01:30:21 859 29 2005-08-06 05:01:21 2 2006-02-16 02:30:53
  40777. 10900 2005-08-02 01:34:26 1749 139 2005-08-07 00:52:26 2 2006-02-16 02:30:53
  40778. 10901 2005-08-02 01:35:44 3813 290 2005-08-04 21:20:44 2 2006-02-16 02:30:53
  40779. 10902 2005-08-02 01:35:46 3863 486 2005-08-09 01:59:46 1 2006-02-16 02:30:53
  40780. 10903 2005-08-02 01:41:59 2696 547 2005-08-06 23:03:59 1 2006-02-16 02:30:53
  40781. 10904 2005-08-02 01:43:02 3681 593 2005-08-04 04:34:02 1 2006-02-16 02:30:53
  40782. 10905 2005-08-02 01:45:59 2835 439 2005-08-04 22:28:59 1 2006-02-16 02:30:53
  40783. 10906 2005-08-02 01:47:04 3139 463 2005-08-07 20:41:04 2 2006-02-16 02:30:53
  40784. 10907 2005-08-02 01:51:48 1430 561 2005-08-02 19:53:48 1 2006-02-16 02:30:53
  40785. 10908 2005-08-02 01:53:06 1284 269 2005-08-04 02:46:06 2 2006-02-16 02:30:53
  40786. 10909 2005-08-02 01:53:59 3516 413 2005-08-03 04:36:59 2 2006-02-16 02:30:53
  40787. 10910 2005-08-02 01:54:34 2428 266 2005-08-10 04:04:34 2 2006-02-16 02:30:53
  40788. 10911 2005-08-02 01:58:36 769 195 2005-08-08 07:37:36 2 2006-02-16 02:30:53
  40789. 10912 2005-08-02 02:00:03 732 477 2005-08-06 05:55:03 1 2006-02-16 02:30:53
  40790. 10913 2005-08-02 02:04:03 3388 565 2005-08-09 03:21:03 1 2006-02-16 02:30:53
  40791. 10914 2005-08-02 02:04:43 585 584 2005-08-06 03:00:43 1 2006-02-16 02:30:53
  40792. 10915 2005-08-02 02:05:04 4568 418 2005-08-10 21:58:04 2 2006-02-16 02:30:53
  40793. 10916 2005-08-02 02:05:59 3841 25 2005-08-06 03:46:59 2 2006-02-16 02:30:53
  40794. 10917 2005-08-02 02:06:18 3146 378 2005-08-03 22:42:18 1 2006-02-16 02:30:53
  40795. 10918 2005-08-02 02:10:56 3418 2 2005-08-02 21:23:56 1 2006-02-16 02:30:53
  40796. 10919 2005-08-02 02:11:03 868 115 2005-08-04 01:49:03 1 2006-02-16 02:30:53
  40797. 10920 2005-08-02 02:14:10 3106 531 2005-08-06 23:36:10 1 2006-02-16 02:30:53
  40798. 10921 2005-08-02 02:14:33 1820 555 2005-08-09 20:58:33 2 2006-02-16 02:30:53
  40799. 10922 2005-08-02 02:14:40 4522 539 2005-08-06 06:04:40 1 2006-02-16 02:30:53
  40800. 10923 2005-08-02 02:15:01 2602 239 2005-08-03 04:18:01 1 2006-02-16 02:30:53
  40801. 10924 2005-08-02 02:20:19 589 540 2005-08-11 05:50:19 2 2006-02-16 02:30:53
  40802. 10925 2005-08-02 02:24:38 1475 98 2005-08-03 05:06:38 1 2006-02-16 02:30:53
  40803. 10926 2005-08-02 02:26:37 4016 460 2005-08-09 20:55:37 1 2006-02-16 02:30:53
  40804. 10927 2005-08-02 02:31:15 4125 288 2005-08-10 20:41:15 1 2006-02-16 02:30:53
  40805. 10928 2005-08-02 02:34:12 2885 211 2005-08-07 21:13:12 1 2006-02-16 02:30:53
  40806. 10929 2005-08-02 02:35:44 913 305 2005-08-05 03:52:44 1 2006-02-16 02:30:53
  40807. 10930 2005-08-02 02:38:07 2027 206 2005-08-08 05:15:07 2 2006-02-16 02:30:53
  40808. 10931 2005-08-02 02:44:59 3268 545 2005-08-04 02:02:59 1 2006-02-16 02:30:53
  40809. 10932 2005-08-02 02:46:22 1688 595 2005-08-06 01:49:22 2 2006-02-16 02:30:53
  40810. 10933 2005-08-02 02:50:49 3970 313 2005-08-08 04:39:49 1 2006-02-16 02:30:53
  40811. 10934 2005-08-02 02:52:18 4458 142 2005-08-06 01:23:18 2 2006-02-16 02:30:53
  40812. 10935 2005-08-02 02:54:53 4373 42 2005-08-10 00:07:53 2 2006-02-16 02:30:53
  40813. 10936 2005-08-02 02:55:04 463 445 2005-08-11 07:56:04 1 2006-02-16 02:30:53
  40814. 10937 2005-08-02 03:00:18 1320 416 2005-08-11 03:44:18 2 2006-02-16 02:30:53
  40815. 10938 2005-08-02 03:05:22 3918 502 2005-08-05 08:31:22 1 2006-02-16 02:30:53
  40816. 10939 2005-08-02 03:06:20 2131 161 2005-08-04 01:22:20 2 2006-02-16 02:30:53
  40817. 10940 2005-08-02 03:08:29 3760 120 2005-08-07 21:28:29 2 2006-02-16 02:30:53
  40818. 10941 2005-08-02 03:11:33 2132 531 2005-08-10 07:31:33 1 2006-02-16 02:30:53
  40819. 10942 2005-08-02 03:16:31 2304 78 2005-08-11 02:46:31 2 2006-02-16 02:30:53
  40820. 10943 2005-08-02 03:17:29 1036 377 2005-08-03 00:50:29 2 2006-02-16 02:30:53
  40821. 10944 2005-08-02 03:20:03 2373 470 2005-08-04 04:13:03 2 2006-02-16 02:30:53
  40822. 10945 2005-08-02 03:20:23 3684 532 2005-08-09 03:23:23 1 2006-02-16 02:30:53
  40823. 10946 2005-08-02 03:20:39 4271 56 2005-08-05 02:59:39 1 2006-02-16 02:30:53
  40824. 10947 2005-08-02 03:23:17 2510 500 2005-08-07 05:25:17 1 2006-02-16 02:30:53
  40825. 10948 2005-08-02 03:23:23 4429 220 2005-08-05 23:18:23 1 2006-02-16 02:30:53
  40826. 10949 2005-08-02 03:24:04 2309 389 2005-08-06 08:36:04 2 2006-02-16 02:30:53
  40827. 10950 2005-08-02 03:25:08 707 451 2005-08-07 23:11:08 2 2006-02-16 02:30:53
  40828. 10951 2005-08-02 03:26:35 173 144 2005-08-07 22:03:35 1 2006-02-16 02:30:53
  40829. 10952 2005-08-02 03:28:21 3218 111 2005-08-09 01:41:21 1 2006-02-16 02:30:53
  40830. 10953 2005-08-02 03:28:38 1510 483 2005-08-11 03:53:38 1 2006-02-16 02:30:53
  40831. 10954 2005-08-02 03:30:24 3406 20 2005-08-08 05:52:24 2 2006-02-16 02:30:53
  40832. 10955 2005-08-02 03:32:34 618 490 2005-08-09 21:53:34 2 2006-02-16 02:30:53
  40833. 10956 2005-08-02 03:33:14 4372 54 2005-08-09 09:20:14 2 2006-02-16 02:30:53
  40834. 10957 2005-08-02 03:33:30 1652 447 2005-08-10 06:19:30 2 2006-02-16 02:30:53
  40835. 10958 2005-08-02 03:37:13 2174 160 2005-08-04 23:28:13 2 2006-02-16 02:30:53
  40836. 10959 2005-08-02 03:39:39 4233 431 2005-08-11 07:20:39 1 2006-02-16 02:30:53
  40837. 10960 2005-08-02 03:46:18 3536 399 2005-08-11 01:29:18 1 2006-02-16 02:30:53
  40838. 10961 2005-08-02 03:47:55 1416 375 2005-08-09 02:03:55 1 2006-02-16 02:30:53
  40839. 10962 2005-08-02 03:48:13 1953 538 2005-08-07 00:04:13 1 2006-02-16 02:30:53
  40840. 10963 2005-08-02 03:48:17 4501 36 2005-08-02 22:15:17 1 2006-02-16 02:30:53
  40841. 10964 2005-08-02 03:56:23 2356 36 2005-08-09 23:11:23 2 2006-02-16 02:30:53
  40842. 10965 2005-08-02 04:00:19 2192 580 2005-08-09 03:27:19 1 2006-02-16 02:30:53
  40843. 10966 2005-08-02 04:00:47 478 584 2005-08-08 01:58:47 2 2006-02-16 02:30:53
  40844. 10967 2005-08-02 04:02:16 683 149 2005-08-09 07:57:16 1 2006-02-16 02:30:53
  40845. 10968 2005-08-02 04:03:13 888 234 2005-08-11 08:36:13 1 2006-02-16 02:30:53
  40846. 10969 2005-08-02 04:04:32 1898 244 2005-08-09 23:18:32 1 2006-02-16 02:30:53
  40847. 10970 2005-08-02 04:06:46 1202 260 2005-08-10 04:27:46 1 2006-02-16 02:30:53
  40848. 10971 2005-08-02 04:08:17 2789 383 2005-08-09 00:02:17 1 2006-02-16 02:30:53
  40849. 10972 2005-08-02 04:08:25 1928 348 2005-08-09 23:25:25 1 2006-02-16 02:30:53
  40850. 10973 2005-08-02 04:09:42 3562 127 2005-08-08 05:24:42 2 2006-02-16 02:30:53
  40851. 10974 2005-08-02 04:10:52 690 491 2005-08-09 08:26:52 1 2006-02-16 02:30:53
  40852. 10975 2005-08-02 04:11:25 2616 361 2005-08-04 04:39:25 2 2006-02-16 02:30:53
  40853. 10976 2005-08-02 04:11:48 2418 326 2005-08-06 06:30:48 2 2006-02-16 02:30:53
  40854. 10977 2005-08-02 04:12:17 2302 300 2005-08-06 06:52:17 2 2006-02-16 02:30:53
  40855. 10978 2005-08-02 04:12:27 1597 487 2005-08-10 08:19:27 2 2006-02-16 02:30:53
  40856. 10979 2005-08-02 04:16:37 2625 160 2005-08-06 00:01:37 2 2006-02-16 02:30:53
  40857. 10980 2005-08-02 04:17:32 150 547 2005-08-04 05:12:32 1 2006-02-16 02:30:53
  40858. 10981 2005-08-02 04:17:53 3699 305 2005-08-09 03:45:53 2 2006-02-16 02:30:53
  40859. 10982 2005-08-02 04:19:11 2508 345 2005-08-04 00:20:11 2 2006-02-16 02:30:53
  40860. 10983 2005-08-02 04:24:23 4502 380 2005-08-09 08:05:23 2 2006-02-16 02:30:53
  40861. 10984 2005-08-02 04:30:02 1813 450 2005-08-10 02:51:02 1 2006-02-16 02:30:53
  40862. 10985 2005-08-02 04:30:19 2734 186 2005-08-03 05:18:19 1 2006-02-16 02:30:53
  40863. 10986 2005-08-02 04:35:24 555 597 2005-08-09 07:34:24 2 2006-02-16 02:30:53
  40864. 10987 2005-08-02 04:36:52 968 349 2005-08-04 00:03:52 1 2006-02-16 02:30:53
  40865. 10988 2005-08-02 04:38:17 1157 509 2005-08-09 00:09:17 1 2006-02-16 02:30:53
  40866. 10989 2005-08-02 04:40:54 2272 7 2005-08-09 03:39:54 2 2006-02-16 02:30:53
  40867. 10990 2005-08-02 04:41:06 262 111 2005-08-10 05:02:06 2 2006-02-16 02:30:53
  40868. 10991 2005-08-02 04:41:12 2854 77 2005-08-05 05:36:12 2 2006-02-16 02:30:53
  40869. 10992 2005-08-02 04:41:17 11 180 2005-08-09 02:13:17 1 2006-02-16 02:30:53
  40870. 10993 2005-08-02 04:45:01 292 383 2005-08-04 03:32:01 1 2006-02-16 02:30:53
  40871. 10994 2005-08-02 04:46:53 647 323 2005-08-11 10:30:53 1 2006-02-16 02:30:53
  40872. 10995 2005-08-02 04:48:00 2891 340 2005-08-07 05:00:00 1 2006-02-16 02:30:53
  40873. 10996 2005-08-02 04:48:11 2235 26 2005-08-06 08:00:11 1 2006-02-16 02:30:53
  40874. 10997 2005-08-02 04:49:02 300 334 2005-08-10 08:13:02 2 2006-02-16 02:30:53
  40875. 10998 2005-08-02 04:50:55 1479 435 2005-08-11 03:43:55 1 2006-02-16 02:30:53
  40876. 10999 2005-08-02 04:53:13 2013 227 2005-08-06 04:36:13 2 2006-02-16 02:30:53
  40877. 11000 2005-08-02 04:56:14 264 265 2005-08-07 01:39:14 2 2006-02-16 02:30:53
  40878. 11001 2005-08-02 04:56:45 3701 5 2005-08-11 08:04:45 1 2006-02-16 02:30:53
  40879. 11002 2005-08-02 05:02:56 3073 583 2005-08-05 07:04:56 2 2006-02-16 02:30:53
  40880. 11003 2005-08-02 05:03:05 4301 272 2005-08-05 10:48:05 2 2006-02-16 02:30:53
  40881. 11004 2005-08-02 05:04:18 200 45 2005-08-11 00:03:18 2 2006-02-16 02:30:53
  40882. 11005 2005-08-02 05:05:23 1547 216 2005-08-07 23:28:23 2 2006-02-16 02:30:53
  40883. 11006 2005-08-02 05:05:52 2776 473 2005-08-05 03:33:52 1 2006-02-16 02:30:53
  40884. 11007 2005-08-02 05:05:53 4172 98 2005-08-05 01:56:53 2 2006-02-16 02:30:53
  40885. 11008 2005-08-02 05:06:17 2831 375 2005-08-10 01:22:17 2 2006-02-16 02:30:53
  40886. 11009 2005-08-02 05:06:23 2574 596 2005-08-08 03:02:23 1 2006-02-16 02:30:53
  40887. 11010 2005-08-02 05:06:27 869 326 2005-08-03 23:47:27 2 2006-02-16 02:30:53
  40888. 11011 2005-08-02 05:07:07 3981 256 2005-08-09 07:16:07 1 2006-02-16 02:30:53
  40889. 11012 2005-08-02 05:09:42 542 162 2005-08-05 07:22:42 2 2006-02-16 02:30:53
  40890. 11013 2005-08-02 05:10:54 2993 527 2005-08-10 08:59:54 1 2006-02-16 02:30:53
  40891. 11014 2005-08-02 05:12:22 393 269 2005-08-07 09:33:22 1 2006-02-16 02:30:53
  40892. 11015 2005-08-02 05:13:00 4331 138 2005-08-08 04:18:00 2 2006-02-16 02:30:53
  40893. 11016 2005-08-02 05:19:13 4446 116 2005-08-05 05:31:13 1 2006-02-16 02:30:53
  40894. 11017 2005-08-02 05:19:51 4140 480 2005-08-09 00:36:51 2 2006-02-16 02:30:53
  40895. 11018 2005-08-02 05:27:53 2988 197 2005-08-07 10:48:53 1 2006-02-16 02:30:53
  40896. 11019 2005-08-02 05:29:31 3227 112 2005-08-04 00:42:31 1 2006-02-16 02:30:53
  40897. 11020 2005-08-02 05:29:48 1645 242 2005-08-06 05:36:48 2 2006-02-16 02:30:53
  40898. 11021 2005-08-02 05:30:11 2069 385 2005-08-05 05:50:11 2 2006-02-16 02:30:53
  40899. 11022 2005-08-02 05:35:03 827 206 2005-08-09 10:20:03 2 2006-02-16 02:30:53
  40900. 11023 2005-08-02 05:36:38 3617 6 2005-08-10 05:39:38 1 2006-02-16 02:30:53
  40901. 11024 2005-08-02 05:38:31 2284 427 2005-08-11 04:47:31 1 2006-02-16 02:30:53
  40902. 11025 2005-08-02 05:39:12 2253 419 2005-08-08 00:09:12 2 2006-02-16 02:30:53
  40903. 11026 2005-08-02 05:46:05 3554 531 2005-08-07 06:27:05 2 2006-02-16 02:30:53
  40904. 11027 2005-08-02 05:47:10 571 412 2005-08-05 23:51:10 1 2006-02-16 02:30:53
  40905. 11028 2005-08-02 05:48:20 2764 66 2005-08-10 11:21:20 1 2006-02-16 02:30:53
  40906. 11029 2005-08-02 05:51:10 1023 45 2005-08-05 04:15:10 1 2006-02-16 02:30:53
  40907. 11030 2005-08-02 05:51:20 1437 569 2005-08-06 04:20:20 1 2006-02-16 02:30:53
  40908. 11031 2005-08-02 05:52:58 1205 361 2005-08-07 07:14:58 2 2006-02-16 02:30:53
  40909. 11032 2005-08-02 05:53:35 1119 359 2005-08-05 02:58:35 2 2006-02-16 02:30:53
  40910. 11033 2005-08-02 05:54:17 3323 155 2005-08-09 10:50:17 2 2006-02-16 02:30:53
  40911. 11034 2005-08-02 05:54:53 2939 586 2005-08-09 04:14:53 1 2006-02-16 02:30:53
  40912. 11035 2005-08-02 05:55:39 3776 305 2005-08-08 06:46:39 2 2006-02-16 02:30:53
  40913. 11036 2005-08-02 05:56:29 2054 502 2005-08-05 05:00:29 2 2006-02-16 02:30:53
  40914. 11037 2005-08-02 05:58:12 4291 220 2005-08-07 11:26:12 1 2006-02-16 02:30:53
  40915. 11038 2005-08-02 05:59:42 4452 403 2005-08-08 04:37:42 2 2006-02-16 02:30:53
  40916. 11039 2005-08-02 06:00:53 549 170 2005-08-05 06:19:53 2 2006-02-16 02:30:53
  40917. 11040 2005-08-02 06:03:22 2297 223 2005-08-03 07:58:22 1 2006-02-16 02:30:53
  40918. 11041 2005-08-02 06:03:53 1897 435 2005-08-03 11:57:53 1 2006-02-16 02:30:53
  40919. 11042 2005-08-02 06:04:33 4149 439 2005-08-11 01:30:33 1 2006-02-16 02:30:53
  40920. 11043 2005-08-02 06:04:44 65 573 2005-08-06 11:37:44 1 2006-02-16 02:30:53
  40921. 11044 2005-08-02 06:05:27 2922 122 2005-08-06 05:15:27 1 2006-02-16 02:30:53
  40922. 11045 2005-08-02 06:07:54 2214 402 2005-08-08 00:37:54 1 2006-02-16 02:30:53
  40923. 11046 2005-08-02 06:08:34 2105 526 2005-08-06 08:45:34 2 2006-02-16 02:30:53
  40924. 11047 2005-08-02 06:09:20 2267 416 2005-08-11 08:36:20 1 2006-02-16 02:30:53
  40925. 11048 2005-08-02 06:15:07 206 491 2005-08-04 02:47:07 2 2006-02-16 02:30:53
  40926. 11049 2005-08-02 06:15:40 4352 38 2005-08-11 10:09:40 2 2006-02-16 02:30:53
  40927. 11050 2005-08-02 06:17:16 2077 234 2005-08-09 05:58:16 1 2006-02-16 02:30:53
  40928. 11051 2005-08-02 06:23:39 4189 446 2005-08-06 06:46:39 2 2006-02-16 02:30:53
  40929. 11052 2005-08-02 06:26:19 1089 331 2005-08-06 04:20:19 2 2006-02-16 02:30:53
  40930. 11053 2005-08-02 06:27:13 2599 50 2005-08-09 11:24:13 2 2006-02-16 02:30:53
  40931. 11054 2005-08-02 06:33:07 728 577 2005-08-10 02:52:07 2 2006-02-16 02:30:53
  40932. 11055 2005-08-02 06:36:05 3851 182 2005-08-06 00:36:05 1 2006-02-16 02:30:53
  40933. 11056 2005-08-02 06:36:27 1404 88 2005-08-10 06:02:27 1 2006-02-16 02:30:53
  40934. 11057 2005-08-02 06:38:19 3143 137 2005-08-11 03:43:19 1 2006-02-16 02:30:53
  40935. 11058 2005-08-02 06:38:44 3270 274 2005-08-06 06:45:44 1 2006-02-16 02:30:53
  40936. 11059 2005-08-02 06:41:38 428 189 2005-08-09 04:34:38 1 2006-02-16 02:30:53
  40937. 11060 2005-08-02 06:48:18 3395 496 2005-08-10 11:49:18 1 2006-02-16 02:30:53
  40938. 11061 2005-08-02 06:50:18 809 245 2005-08-07 07:41:18 2 2006-02-16 02:30:53
  40939. 11062 2005-08-02 06:52:54 2014 346 2005-08-07 10:59:54 1 2006-02-16 02:30:53
  40940. 11063 2005-08-02 06:53:48 2261 461 2005-08-05 03:38:48 2 2006-02-16 02:30:53
  40941. 11064 2005-08-02 06:55:17 3012 338 2005-08-06 03:29:17 1 2006-02-16 02:30:53
  40942. 11065 2005-08-02 06:57:55 2226 357 2005-08-06 01:31:55 2 2006-02-16 02:30:53
  40943. 11066 2005-08-02 06:58:32 4213 373 2005-08-10 01:27:32 2 2006-02-16 02:30:53
  40944. 11067 2005-08-02 07:03:24 965 85 2005-08-10 08:59:24 2 2006-02-16 02:30:53
  40945. 11068 2005-08-02 07:08:07 1262 52 2005-08-09 11:15:07 2 2006-02-16 02:30:53
  40946. 11069 2005-08-02 07:09:34 57 4 2005-08-08 08:39:34 1 2006-02-16 02:30:53
  40947. 11070 2005-08-02 07:10:39 4020 298 2005-08-03 07:43:39 1 2006-02-16 02:30:53
  40948. 11071 2005-08-02 07:10:53 4264 294 2005-08-07 09:58:53 1 2006-02-16 02:30:53
  40949. 11072 2005-08-02 07:10:57 3078 21 2005-08-04 07:42:57 1 2006-02-16 02:30:53
  40950. 11073 2005-08-02 07:13:03 4232 234 2005-08-03 05:46:03 1 2006-02-16 02:30:53
  40951. 11074 2005-08-02 07:21:43 1439 277 2005-08-08 05:18:43 1 2006-02-16 02:30:53
  40952. 11075 2005-08-02 07:24:23 3027 503 2005-08-08 04:55:23 1 2006-02-16 02:30:53
  40953. 11076 2005-08-02 07:24:47 837 211 2005-08-10 09:16:47 1 2006-02-16 02:30:53
  40954. 11077 2005-08-02 07:26:43 4254 158 2005-08-09 10:34:43 2 2006-02-16 02:30:53
  40955. 11078 2005-08-02 07:26:58 2362 587 2005-08-07 01:59:58 2 2006-02-16 02:30:53
  40956. 11079 2005-08-02 07:29:10 3185 29 2005-08-07 01:59:10 2 2006-02-16 02:30:53
  40957. 11080 2005-08-02 07:29:56 4303 571 2005-08-08 05:58:56 1 2006-02-16 02:30:53
  40958. 11081 2005-08-02 07:30:14 3804 513 2005-08-09 08:50:14 1 2006-02-16 02:30:53
  40959. 11082 2005-08-02 07:30:19 3037 190 2005-08-07 05:20:19 2 2006-02-16 02:30:53
  40960. 11083 2005-08-02 07:32:01 4395 295 2005-08-08 02:23:01 1 2006-02-16 02:30:53
  40961. 11084 2005-08-02 07:34:19 32 369 2005-08-07 09:30:19 1 2006-02-16 02:30:53
  40962. 11085 2005-08-02 07:36:44 3207 276 2005-08-04 03:32:44 1 2006-02-16 02:30:53
  40963. 11086 2005-08-02 07:38:44 552 371 2005-08-11 06:30:44 1 2006-02-16 02:30:53
  40964. 11087 2005-08-02 07:41:41 654 2 2005-08-10 10:37:41 2 2006-02-16 02:30:53
  40965. 11088 2005-08-02 07:48:31 2739 138 2005-08-05 08:09:31 2 2006-02-16 02:30:53
  40966. 11089 2005-08-02 07:52:20 825 421 2005-08-07 07:24:20 1 2006-02-16 02:30:53
  40967. 11090 2005-08-02 07:56:40 2743 89 2005-08-10 07:58:40 1 2006-02-16 02:30:53
  40968. 11091 2005-08-02 07:56:41 1659 423 2005-08-07 05:35:41 2 2006-02-16 02:30:53
  40969. 11092 2005-08-02 07:58:50 569 60 2005-08-04 03:23:50 2 2006-02-16 02:30:53
  40970. 11093 2005-08-02 07:59:49 239 82 2005-08-11 06:01:49 1 2006-02-16 02:30:53
  40971. 11094 2005-08-02 08:03:02 3095 18 2005-08-03 11:34:02 1 2006-02-16 02:30:53
  40972. 11095 2005-08-02 08:03:20 3517 278 2005-08-10 05:20:20 1 2006-02-16 02:30:53
  40973. 11096 2005-08-02 08:05:19 1436 34 2005-08-04 07:28:19 2 2006-02-16 02:30:53
  40974. 11097 2005-08-02 08:05:46 2493 575 2005-08-10 12:00:46 2 2006-02-16 02:30:53
  40975. 11098 2005-08-02 08:06:18 158 570 2005-08-11 04:50:18 2 2006-02-16 02:30:53
  40976. 11099 2005-08-02 08:07:12 1444 102 2005-08-07 12:11:12 2 2006-02-16 02:30:53
  40977. 11100 2005-08-02 08:08:00 3047 65 2005-08-10 07:19:00 1 2006-02-16 02:30:53
  40978. 11101 2005-08-02 08:08:24 2621 80 2005-08-06 05:55:24 1 2006-02-16 02:30:53
  40979. 11102 2005-08-02 08:08:30 3112 73 2005-08-04 09:16:30 1 2006-02-16 02:30:53
  40980. 11103 2005-08-02 08:09:54 1879 158 2005-08-07 12:05:54 1 2006-02-16 02:30:53
  40981. 11104 2005-08-02 08:09:58 3042 196 2005-08-05 11:55:58 1 2006-02-16 02:30:53
  40982. 11105 2005-08-02 08:13:31 3170 245 2005-08-03 11:08:31 1 2006-02-16 02:30:53
  40983. 11106 2005-08-02 08:17:38 2307 287 2005-08-03 07:54:38 1 2006-02-16 02:30:53
  40984. 11107 2005-08-02 08:19:38 2217 410 2005-08-07 08:46:38 2 2006-02-16 02:30:53
  40985. 11108 2005-08-02 08:20:01 560 447 2005-08-03 13:22:01 2 2006-02-16 02:30:53
  40986. 11109 2005-08-02 08:20:29 2683 479 2005-08-09 11:35:29 2 2006-02-16 02:30:53
  40987. 11110 2005-08-02 08:20:31 4311 4 2005-08-04 05:06:31 2 2006-02-16 02:30:53
  40988. 11111 2005-08-02 08:21:27 334 378 2005-08-06 07:48:27 2 2006-02-16 02:30:53
  40989. 11112 2005-08-02 08:25:14 526 207 2005-08-03 08:41:14 1 2006-02-16 02:30:53
  40990. 11113 2005-08-02 08:26:24 1654 231 2005-08-07 09:24:24 2 2006-02-16 02:30:53
  40991. 11114 2005-08-02 08:26:45 1273 572 2005-08-03 08:41:45 2 2006-02-16 02:30:53
  40992. 11115 2005-08-02 08:31:06 3812 408 2005-08-04 02:36:06 2 2006-02-16 02:30:53
  40993. 11116 2005-08-02 08:34:40 434 344 2005-08-09 04:56:40 1 2006-02-16 02:30:53
  40994. 11117 2005-08-02 08:36:03 1613 474 2005-08-05 06:56:03 2 2006-02-16 02:30:53
  40995. 11118 2005-08-02 08:44:18 2411 15 2005-08-05 08:08:18 2 2006-02-16 02:30:53
  40996. 11119 2005-08-02 08:44:44 4307 489 2005-08-10 11:32:44 2 2006-02-16 02:30:53
  40997. 11120 2005-08-02 08:47:04 4185 322 2005-08-05 05:33:04 1 2006-02-16 02:30:53
  40998. 11121 2005-08-02 08:48:31 1025 572 2005-08-04 05:08:31 2 2006-02-16 02:30:53
  40999. 11122 2005-08-02 08:49:09 3021 383 2005-08-08 04:33:09 1 2006-02-16 02:30:53
  41000. 11123 2005-08-02 08:54:17 1926 150 2005-08-09 11:11:17 2 2006-02-16 02:30:53
  41001. 11124 2005-08-02 08:55:25 698 249 2005-08-10 10:59:25 1 2006-02-16 02:30:53
  41002. 11125 2005-08-02 08:55:35 2081 237 2005-08-03 09:12:35 1 2006-02-16 02:30:53
  41003. 11126 2005-08-02 08:59:04 3310 47 2005-08-04 11:00:04 1 2006-02-16 02:30:53
  41004. 11127 2005-08-02 09:00:59 1106 351 2005-08-05 11:54:59 2 2006-02-16 02:30:53
  41005. 11128 2005-08-02 09:03:25 3472 386 2005-08-09 04:36:25 1 2006-02-16 02:30:53
  41006. 11129 2005-08-02 09:08:44 23 566 2005-08-04 04:00:44 1 2006-02-16 02:30:53
  41007. 11130 2005-08-02 09:08:59 684 329 2005-08-09 07:50:59 2 2006-02-16 02:30:53
  41008. 11131 2005-08-02 09:10:04 1860 293 2005-08-08 09:59:04 2 2006-02-16 02:30:53
  41009. 11132 2005-08-02 09:14:09 2212 398 2005-08-08 06:39:09 1 2006-02-16 02:30:53
  41010. 11133 2005-08-02 09:15:45 675 120 2005-08-04 10:39:45 1 2006-02-16 02:30:53
  41011. 11134 2005-08-02 09:19:22 2641 372 2005-08-11 03:56:22 1 2006-02-16 02:30:53
  41012. 11135 2005-08-02 09:22:25 799 32 2005-08-04 14:30:25 2 2006-02-16 02:30:53
  41013. 11136 2005-08-02 09:22:57 1315 559 2005-08-08 14:12:57 2 2006-02-16 02:30:53
  41014. 11137 2005-08-02 09:25:31 2500 310 2005-08-08 08:10:31 1 2006-02-16 02:30:53
  41015. 11138 2005-08-02 09:26:16 4250 458 2005-08-11 07:50:16 2 2006-02-16 02:30:53
  41016. 11139 2005-08-02 09:27:36 1011 236 2005-08-08 14:07:36 2 2006-02-16 02:30:53
  41017. 11140 2005-08-02 09:27:45 3836 132 2005-08-05 04:10:45 1 2006-02-16 02:30:53
  41018. 11141 2005-08-02 09:29:11 1614 15 2005-08-04 07:50:11 1 2006-02-16 02:30:53
  41019. 11142 2005-08-02 09:30:11 2954 306 2005-08-05 06:52:11 1 2006-02-16 02:30:53
  41020. 11143 2005-08-02 09:32:54 3382 100 2005-08-05 12:04:54 2 2006-02-16 02:30:53
  41021. 11144 2005-08-02 09:39:17 2724 376 2005-08-03 11:53:17 2 2006-02-16 02:30:53
  41022. 11145 2005-08-02 09:43:24 1270 291 2005-08-05 15:29:24 1 2006-02-16 02:30:53
  41023. 11146 2005-08-02 09:45:32 2488 552 2005-08-07 07:33:32 1 2006-02-16 02:30:53
  41024. 11147 2005-08-02 09:45:54 1562 597 2005-08-07 07:28:54 1 2006-02-16 02:30:53
  41025. 11148 2005-08-02 09:47:08 2991 230 2005-08-08 10:57:08 1 2006-02-16 02:30:53
  41026. 11149 2005-08-02 09:51:43 3254 358 2005-08-11 09:40:43 2 2006-02-16 02:30:53
  41027. 11150 2005-08-02 09:51:46 2193 527 2005-08-05 09:03:46 2 2006-02-16 02:30:53
  41028. 11151 2005-08-02 09:52:44 3939 391 2005-08-05 06:29:44 2 2006-02-16 02:30:53
  41029. 11152 2005-08-02 09:53:36 3887 494 2005-08-11 14:58:36 1 2006-02-16 02:30:53
  41030. 11153 2005-08-02 09:54:19 1546 220 2005-08-10 14:57:19 1 2006-02-16 02:30:53
  41031. 11154 2005-08-02 09:54:50 697 160 2005-08-06 14:48:50 2 2006-02-16 02:30:53
  41032. 11155 2005-08-02 09:55:28 2001 73 2005-08-03 06:00:28 2 2006-02-16 02:30:53
  41033. 11156 2005-08-02 09:56:06 907 465 2005-08-04 13:36:06 2 2006-02-16 02:30:53
  41034. 11157 2005-08-02 09:58:15 1313 244 2005-08-06 04:23:15 2 2006-02-16 02:30:53
  41035. 11158 2005-08-02 09:58:28 530 190 2005-08-10 13:54:28 2 2006-02-16 02:30:53
  41036. 11159 2005-08-02 10:00:55 4575 249 2005-08-05 10:38:55 1 2006-02-16 02:30:53
  41037. 11160 2005-08-02 10:05:30 3260 436 2005-08-07 08:30:30 1 2006-02-16 02:30:53
  41038. 11161 2005-08-02 10:05:57 3321 503 2005-08-06 05:05:57 2 2006-02-16 02:30:53
  41039. 11162 2005-08-02 10:07:54 1809 277 2005-08-05 11:35:54 2 2006-02-16 02:30:53
  41040. 11163 2005-08-02 10:08:40 1925 505 2005-08-05 14:59:40 1 2006-02-16 02:30:53
  41041. 11164 2005-08-02 10:10:56 4450 580 2005-08-10 11:20:56 2 2006-02-16 02:30:53
  41042. 11165 2005-08-02 10:12:17 2059 513 2005-08-04 11:09:17 1 2006-02-16 02:30:53
  41043. 11166 2005-08-02 10:14:58 638 11 2005-08-11 11:43:58 1 2006-02-16 02:30:53
  41044. 11167 2005-08-02 10:15:51 148 451 2005-08-09 09:18:51 1 2006-02-16 02:30:53
  41045. 11168 2005-08-02 10:19:42 468 555 2005-08-04 08:42:42 1 2006-02-16 02:30:53
  41046. 11169 2005-08-02 10:19:42 2392 329 2005-08-07 05:45:42 1 2006-02-16 02:30:53
  41047. 11170 2005-08-02 10:21:53 1333 547 2005-08-08 11:08:53 1 2006-02-16 02:30:53
  41048. 11171 2005-08-02 10:23:41 3117 339 2005-08-04 14:22:41 2 2006-02-16 02:30:53
  41049. 11172 2005-08-02 10:27:52 1207 76 2005-08-11 12:47:52 1 2006-02-16 02:30:53
  41050. 11173 2005-08-02 10:28:00 4296 146 2005-08-10 14:53:00 1 2006-02-16 02:30:53
  41051. 11174 2005-08-02 10:32:11 1551 328 2005-08-09 12:30:11 1 2006-02-16 02:30:53
  41052. 11175 2005-08-02 10:38:47 85 164 2005-08-07 07:11:47 2 2006-02-16 02:30:53
  41053. 11176 2005-08-02 10:39:43 1448 37 2005-08-09 14:42:43 2 2006-02-16 02:30:53
  41054. 11177 2005-08-02 10:43:48 1149 2 2005-08-10 10:55:48 2 2006-02-16 02:30:53
  41055. 11178 2005-08-02 10:48:10 2613 342 2005-08-06 06:07:10 1 2006-02-16 02:30:53
  41056. 11179 2005-08-02 10:50:06 4376 5 2005-08-04 05:24:06 1 2006-02-16 02:30:53
  41057. 11180 2005-08-02 10:54:30 3632 534 2005-08-11 15:55:30 1 2006-02-16 02:30:53
  41058. 11181 2005-08-02 10:55:03 3127 557 2005-08-07 10:43:03 1 2006-02-16 02:30:53
  41059. 11182 2005-08-02 10:55:14 605 54 2005-08-06 05:58:14 1 2006-02-16 02:30:53
  41060. 11183 2005-08-02 11:00:32 833 102 2005-08-04 08:59:32 2 2006-02-16 02:30:53
  41061. 11184 2005-08-02 11:01:26 871 259 2005-08-11 06:29:26 1 2006-02-16 02:30:53
  41062. 11185 2005-08-02 11:04:35 1215 469 2005-08-05 13:48:35 2 2006-02-16 02:30:53
  41063. 11186 2005-08-02 11:12:08 733 353 2005-08-03 10:46:08 1 2006-02-16 02:30:53
  41064. 11187 2005-08-02 11:16:19 3626 410 2005-08-11 06:11:19 1 2006-02-16 02:30:53
  41065. 11188 2005-08-02 11:17:11 1372 485 2005-08-08 16:46:11 2 2006-02-16 02:30:53
  41066. 11189 2005-08-02 11:17:23 729 565 2005-08-09 16:30:23 2 2006-02-16 02:30:53
  41067. 11190 2005-08-02 11:21:34 922 254 2005-08-05 05:23:34 1 2006-02-16 02:30:53
  41068. 11191 2005-08-02 11:24:07 1097 571 2005-08-10 10:39:07 1 2006-02-16 02:30:53
  41069. 11192 2005-08-02 11:29:41 1998 349 2005-08-07 06:01:41 2 2006-02-16 02:30:53
  41070. 11193 2005-08-02 11:31:33 2246 292 2005-08-04 14:00:33 1 2006-02-16 02:30:53
  41071. 11194 2005-08-02 11:35:53 2732 135 2005-08-10 11:28:53 1 2006-02-16 02:30:53
  41072. 11195 2005-08-02 11:42:23 4359 177 2005-08-03 08:29:23 1 2006-02-16 02:30:53
  41073. 11196 2005-08-02 11:42:40 2648 126 2005-08-10 11:58:40 2 2006-02-16 02:30:53
  41074. 11197 2005-08-02 11:45:07 3041 122 2005-08-03 09:07:07 1 2006-02-16 02:30:53
  41075. 11198 2005-08-02 11:45:15 2908 540 2005-08-10 11:42:15 2 2006-02-16 02:30:53
  41076. 11199 2005-08-02 11:47:40 3926 578 2005-08-10 06:52:40 2 2006-02-16 02:30:53
  41077. 11200 2005-08-02 11:48:36 2730 98 2005-08-07 08:35:36 2 2006-02-16 02:30:53
  41078. 11201 2005-08-02 11:49:16 1501 195 2005-08-11 08:39:16 1 2006-02-16 02:30:53
  41079. 11202 2005-08-02 11:51:57 3625 231 2005-08-08 09:41:57 1 2006-02-16 02:30:53
  41080. 11203 2005-08-02 11:52:41 4520 92 2005-08-10 15:52:41 2 2006-02-16 02:30:53
  41081. 11204 2005-08-02 11:56:31 3578 247 2005-08-06 14:16:31 2 2006-02-16 02:30:53
  41082. 11205 2005-08-02 11:56:54 4321 552 2005-08-05 08:24:54 1 2006-02-16 02:30:53
  41083. 11206 2005-08-02 11:58:03 4131 72 2005-08-07 12:36:03 2 2006-02-16 02:30:53
  41084. 11207 2005-08-02 12:01:30 4470 481 2005-08-05 07:56:30 1 2006-02-16 02:30:53
  41085. 11208 2005-08-02 12:02:37 4566 320 2005-08-05 10:56:37 1 2006-02-16 02:30:53
  41086. 11209 2005-08-02 12:09:45 3219 24 2005-08-07 08:52:45 1 2006-02-16 02:30:53
  41087. 11210 2005-08-02 12:15:54 422 202 2005-08-04 16:18:54 2 2006-02-16 02:30:53
  41088. 11211 2005-08-02 12:16:48 1722 245 2005-08-03 10:40:48 1 2006-02-16 02:30:53
  41089. 11212 2005-08-02 12:18:29 4007 343 2005-08-05 16:05:29 2 2006-02-16 02:30:53
  41090. 11213 2005-08-02 12:18:35 1007 584 2005-08-05 08:44:35 2 2006-02-16 02:30:53
  41091. 11214 2005-08-02 12:19:50 2722 407 2005-08-11 06:38:50 1 2006-02-16 02:30:53
  41092. 11215 2005-08-02 12:20:42 379 197 2005-08-06 14:01:42 1 2006-02-16 02:30:53
  41093. 11216 2005-08-02 12:23:43 1109 473 2005-08-03 13:19:43 1 2006-02-16 02:30:53
  41094. 11217 2005-08-02 12:26:31 1201 417 2005-08-09 09:53:31 2 2006-02-16 02:30:53
  41095. 11218 2005-08-02 12:29:12 1126 500 2005-08-10 16:13:12 2 2006-02-16 02:30:53
  41096. 11219 2005-08-02 12:30:20 2889 461 2005-08-08 13:42:20 2 2006-02-16 02:30:53
  41097. 11220 2005-08-02 12:31:41 3777 84 2005-08-05 08:23:41 2 2006-02-16 02:30:53
  41098. 11221 2005-08-02 12:32:12 1689 146 2005-08-03 17:13:12 1 2006-02-16 02:30:53
  41099. 11222 2005-08-02 12:32:28 1780 407 2005-08-11 18:15:28 2 2006-02-16 02:30:53
  41100. 11223 2005-08-02 12:34:27 1994 597 2005-08-07 14:21:27 1 2006-02-16 02:30:53
  41101. 11224 2005-08-02 12:40:38 3938 181 2005-08-04 10:02:38 2 2006-02-16 02:30:53
  41102. 11225 2005-08-02 12:43:27 3721 159 2005-08-04 18:41:27 2 2006-02-16 02:30:53
  41103. 11226 2005-08-02 12:47:30 79 282 2005-08-06 11:24:30 1 2006-02-16 02:30:53
  41104. 11227 2005-08-02 12:48:05 1101 65 2005-08-11 14:08:05 1 2006-02-16 02:30:53
  41105. 11228 2005-08-02 12:55:23 2561 144 2005-08-08 12:31:23 1 2006-02-16 02:30:53
  41106. 11229 2005-08-02 12:56:37 941 332 2005-08-11 11:13:37 2 2006-02-16 02:30:53
  41107. 11230 2005-08-02 12:59:08 1463 257 2005-08-04 13:42:08 1 2006-02-16 02:30:53
  41108. 11231 2005-08-02 13:02:11 1100 90 2005-08-07 10:05:11 2 2006-02-16 02:30:53
  41109. 11232 2005-08-02 13:04:12 971 8 2005-08-10 15:39:12 1 2006-02-16 02:30:53
  41110. 11233 2005-08-02 13:06:11 2221 266 2005-08-08 15:02:11 1 2006-02-16 02:30:53
  41111. 11234 2005-08-02 13:12:17 1020 27 2005-08-05 17:37:17 1 2006-02-16 02:30:53
  41112. 11235 2005-08-02 13:13:21 2501 127 2005-08-03 07:17:21 1 2006-02-16 02:30:53
  41113. 11236 2005-08-02 13:17:21 145 420 2005-08-09 09:53:21 2 2006-02-16 02:30:53
  41114. 11237 2005-08-02 13:24:01 2668 426 2005-08-05 11:41:01 2 2006-02-16 02:30:53
  41115. 11238 2005-08-02 13:25:50 2705 506 2005-08-08 19:12:50 2 2006-02-16 02:30:53
  41116. 11239 2005-08-02 13:27:11 189 111 2005-08-03 14:36:11 1 2006-02-16 02:30:53
  41117. 11240 2005-08-02 13:28:30 2170 597 2005-08-05 11:40:30 1 2006-02-16 02:30:53
  41118. 11241 2005-08-02 13:29:24 3657 543 2005-08-11 11:36:24 2 2006-02-16 02:30:53
  41119. 11242 2005-08-02 13:32:00 1041 434 2005-08-10 19:24:00 2 2006-02-16 02:30:53
  41120. 11243 2005-08-02 13:32:48 2517 361 2005-08-11 18:55:48 1 2006-02-16 02:30:53
  41121. 11244 2005-08-02 13:33:24 3423 142 2005-08-10 10:18:24 2 2006-02-16 02:30:53
  41122. 11245 2005-08-02 13:33:50 2609 92 2005-08-04 10:20:50 2 2006-02-16 02:30:53
  41123. 11246 2005-08-02 13:33:56 3577 550 2005-08-03 08:52:56 2 2006-02-16 02:30:53
  41124. 11247 2005-08-02 13:34:08 1661 441 2005-08-06 16:23:08 2 2006-02-16 02:30:53
  41125. 11248 2005-08-02 13:35:34 4139 312 2005-08-03 10:37:34 1 2006-02-16 02:30:53
  41126. 11249 2005-08-02 13:35:40 3394 157 2005-08-07 11:22:40 1 2006-02-16 02:30:53
  41127. 11250 2005-08-02 13:35:42 2223 279 2005-08-10 12:32:42 2 2006-02-16 02:30:53
  41128. 11251 2005-08-02 13:40:49 2181 532 2005-08-09 14:16:49 2 2006-02-16 02:30:53
  41129. 11252 2005-08-02 13:42:13 2410 337 2005-08-06 19:04:13 2 2006-02-16 02:30:53
  41130. 11253 2005-08-02 13:42:44 2898 303 2005-08-09 17:06:44 2 2006-02-16 02:30:53
  41131. 11254 2005-08-02 13:43:49 56 315 2005-08-08 13:16:49 1 2006-02-16 02:30:53
  41132. 11255 2005-08-02 13:44:30 3393 569 2005-08-03 12:00:30 1 2006-02-16 02:30:53
  41133. 11256 2005-08-02 13:44:53 2060 2 2005-08-04 16:39:53 1 2006-02-16 02:30:53
  41134. 11257 2005-08-02 13:45:05 105 468 2005-08-11 16:37:05 1 2006-02-16 02:30:53
  41135. 11258 2005-08-02 13:45:39 1576 242 2005-08-06 07:57:39 1 2006-02-16 02:30:53
  41136. 11259 2005-08-02 13:46:30 896 330 2005-08-07 14:03:30 1 2006-02-16 02:30:53
  41137. 11260 2005-08-02 13:52:19 4015 207 2005-08-06 08:13:19 2 2006-02-16 02:30:53
  41138. 11261 2005-08-02 13:54:26 31 204 2005-08-10 19:04:26 2 2006-02-16 02:30:53
  41139. 11262 2005-08-02 13:58:55 71 348 2005-08-05 18:09:55 2 2006-02-16 02:30:53
  41140. 11263 2005-08-02 14:02:19 1189 421 2005-08-07 14:03:19 2 2006-02-16 02:30:53
  41141. 11264 2005-08-02 14:05:18 3420 360 2005-08-10 08:46:18 2 2006-02-16 02:30:53
  41142. 11265 2005-08-02 14:05:42 3870 531 2005-08-11 15:27:42 2 2006-02-16 02:30:53
  41143. 11266 2005-08-02 14:07:35 3972 99 2005-08-04 13:31:35 1 2006-02-16 02:30:53
  41144. 11267 2005-08-02 14:09:08 2045 244 2005-08-10 12:33:08 1 2006-02-16 02:30:53
  41145. 11268 2005-08-02 14:10:39 3275 558 2005-08-04 14:35:39 1 2006-02-16 02:30:53
  41146. 11269 2005-08-02 14:11:41 2398 297 2005-08-08 18:53:41 1 2006-02-16 02:30:53
  41147. 11270 2005-08-02 14:18:07 1882 418 2005-08-03 08:20:07 1 2006-02-16 02:30:53
  41148. 11271 2005-08-02 14:18:22 4323 93 2005-08-07 09:35:22 2 2006-02-16 02:30:53
  41149. 11272 2005-08-02 14:20:27 4111 158 2005-08-07 12:24:27 2 2006-02-16 02:30:53
  41150. 11273 2005-08-02 14:20:55 3383 541 2005-08-07 12:57:55 1 2006-02-16 02:30:53
  41151. 11274 2005-08-02 14:24:08 1253 70 2005-08-11 14:56:08 1 2006-02-16 02:30:53
  41152. 11275 2005-08-02 14:25:58 2838 464 2005-08-07 11:20:58 1 2006-02-16 02:30:53
  41153. 11276 2005-08-02 14:28:46 4226 190 2005-08-04 14:00:46 1 2006-02-16 02:30:53
  41154. 11277 2005-08-02 14:28:50 2050 68 2005-08-04 13:50:50 1 2006-02-16 02:30:53
  41155. 11278 2005-08-02 14:29:43 961 143 2005-08-07 10:13:43 1 2006-02-16 02:30:53
  41156. 11279 2005-08-02 14:30:03 151 125 2005-08-10 09:49:03 2 2006-02-16 02:30:53
  41157. 11280 2005-08-02 14:34:33 1846 134 2005-08-08 15:40:33 2 2006-02-16 02:30:53
  41158. 11281 2005-08-02 14:35:01 2210 137 2005-08-07 17:28:01 1 2006-02-16 02:30:53
  41159. 11282 2005-08-02 14:35:03 1824 273 2005-08-03 16:02:03 2 2006-02-16 02:30:53
  41160. 11283 2005-08-02 14:39:46 312 134 2005-08-05 10:19:46 2 2006-02-16 02:30:53
  41161. 11284 2005-08-02 14:42:45 172 8 2005-08-04 11:55:45 2 2006-02-16 02:30:53
  41162. 11285 2005-08-02 14:44:02 3849 585 2005-08-11 16:45:02 2 2006-02-16 02:30:53
  41163. 11286 2005-08-02 14:44:22 1319 207 2005-08-10 09:01:22 2 2006-02-16 02:30:53
  41164. 11287 2005-08-02 14:49:51 927 55 2005-08-09 09:19:51 2 2006-02-16 02:30:53
  41165. 11288 2005-08-02 14:54:08 1478 298 2005-08-11 12:22:08 1 2006-02-16 02:30:53
  41166. 11289 2005-08-02 14:55:00 2869 10 2005-08-11 13:57:00 1 2006-02-16 02:30:53
  41167. 11290 2005-08-02 14:57:44 425 582 2005-08-09 19:36:44 2 2006-02-16 02:30:53
  41168. 11291 2005-08-02 14:57:58 491 417 2005-08-11 09:04:58 2 2006-02-16 02:30:53
  41169. 11292 2005-08-02 14:58:41 210 13 2005-08-06 14:38:41 2 2006-02-16 02:30:53
  41170. 11293 2005-08-02 15:00:43 1514 475 2005-08-11 17:49:43 1 2006-02-16 02:30:53
  41171. 11294 2005-08-02 15:08:27 855 411 2005-08-03 18:28:27 1 2006-02-16 02:30:53
  41172. 11295 2005-08-02 15:10:06 423 67 2005-08-10 09:52:06 1 2006-02-16 02:30:53
  41173. 11296 2005-08-02 15:15:27 247 154 2005-08-11 16:12:27 1 2006-02-16 02:30:53
  41174. 11297 2005-08-02 15:22:47 2531 62 2005-08-11 18:45:47 1 2006-02-16 02:30:53
  41175. 11298 2005-08-02 15:32:32 1663 35 2005-08-06 20:22:32 1 2006-02-16 02:30:53
  41176. 11299 2005-08-02 15:36:52 3232 1 2005-08-10 16:40:52 2 2006-02-16 02:30:53
  41177. 11300 2005-08-02 15:37:42 3032 552 2005-08-11 14:25:42 1 2006-02-16 02:30:53
  41178. 11301 2005-08-02 15:37:59 676 502 2005-08-04 10:57:59 2 2006-02-16 02:30:53
  41179. 11302 2005-08-02 15:38:03 1918 51 2005-08-09 10:33:03 2 2006-02-16 02:30:53
  41180. 11303 2005-08-02 15:39:18 1817 417 2005-08-05 10:59:18 1 2006-02-16 02:30:53
  41181. 11304 2005-08-02 15:40:10 2592 413 2005-08-06 16:12:10 2 2006-02-16 02:30:53
  41182. 11305 2005-08-02 15:44:55 1690 341 2005-08-08 16:42:55 2 2006-02-16 02:30:53
  41183. 11306 2005-08-02 15:45:10 13 247 2005-08-03 21:14:10 2 2006-02-16 02:30:53
  41184. 11307 2005-08-02 15:48:08 1490 15 2005-08-06 20:33:08 2 2006-02-16 02:30:53
  41185. 11308 2005-08-02 15:50:44 699 16 2005-08-05 11:38:44 2 2006-02-16 02:30:53
  41186. 11309 2005-08-02 15:50:55 607 275 2005-08-09 18:28:55 1 2006-02-16 02:30:53
  41187. 11310 2005-08-02 15:51:58 3601 415 2005-08-07 12:34:58 1 2006-02-16 02:30:53
  41188. 11311 2005-08-02 15:53:48 204 197 2005-08-03 16:32:48 1 2006-02-16 02:30:53
  41189. 11312 2005-08-02 15:56:51 1093 190 2005-08-07 20:56:51 2 2006-02-16 02:30:53
  41190. 11313 2005-08-02 16:02:51 2689 419 2005-08-03 14:54:51 1 2006-02-16 02:30:53
  41191. 11314 2005-08-02 16:04:08 2790 26 2005-08-04 18:47:08 1 2006-02-16 02:30:53
  41192. 11315 2005-08-02 16:05:17 1116 13 2005-08-05 16:33:17 1 2006-02-16 02:30:53
  41193. 11316 2005-08-02 16:07:49 521 108 2005-08-10 13:22:49 1 2006-02-16 02:30:53
  41194. 11317 2005-08-02 16:08:52 1889 502 2005-08-08 21:12:52 1 2006-02-16 02:30:53
  41195. 11318 2005-08-02 16:09:11 2386 532 2005-08-07 11:28:11 2 2006-02-16 02:30:53
  41196. 11319 2005-08-02 16:10:09 4069 178 2005-08-09 11:21:09 2 2006-02-16 02:30:53
  41197. 11320 2005-08-02 16:13:28 3362 550 2005-08-05 21:23:28 1 2006-02-16 02:30:53
  41198. 11321 2005-08-02 16:15:07 205 266 2005-08-04 20:35:07 2 2006-02-16 02:30:53
  41199. 11322 2005-08-02 16:23:17 761 418 2005-08-09 19:55:17 2 2006-02-16 02:30:53
  41200. 11323 2005-08-02 16:29:57 3784 419 2005-08-06 16:01:57 1 2006-02-16 02:30:53
  41201. 11324 2005-08-02 16:31:17 2900 540 2005-08-08 15:38:17 2 2006-02-16 02:30:53
  41202. 11325 2005-08-02 16:33:11 4514 422 2005-08-08 13:42:11 1 2006-02-16 02:30:53
  41203. 11326 2005-08-02 16:34:29 1762 530 2005-08-03 17:40:29 2 2006-02-16 02:30:53
  41204. 11327 2005-08-02 16:40:47 773 361 2005-08-03 22:13:47 1 2006-02-16 02:30:53
  41205. 11328 2005-08-02 16:42:38 2031 219 2005-08-04 21:02:38 1 2006-02-16 02:30:53
  41206. 11329 2005-08-02 16:42:52 2677 399 2005-08-08 16:45:52 1 2006-02-16 02:30:53
  41207. 11330 2005-08-02 16:45:33 4326 75 2005-08-04 15:15:33 2 2006-02-16 02:30:53
  41208. 11331 2005-08-02 16:49:01 3789 568 2005-08-09 19:15:01 1 2006-02-16 02:30:53
  41209. 11332 2005-08-02 16:52:57 2381 467 2005-08-04 14:13:57 1 2006-02-16 02:30:53
  41210. 11333 2005-08-02 16:53:00 3335 225 2005-08-07 20:49:00 2 2006-02-16 02:30:53
  41211. 11334 2005-08-02 16:53:20 1504 560 2005-08-11 20:47:20 1 2006-02-16 02:30:53
  41212. 11335 2005-08-02 16:57:37 2968 157 2005-08-09 19:43:37 1 2006-02-16 02:30:53
  41213. 11336 2005-08-02 16:58:56 1949 473 2005-08-06 16:56:56 1 2006-02-16 02:30:53
  41214. 11337 2005-08-02 16:59:09 3428 366 2005-08-10 20:41:09 2 2006-02-16 02:30:53
  41215. 11338 2005-08-02 17:00:12 3689 26 2005-08-03 18:54:12 1 2006-02-16 02:30:53
  41216. 11339 2005-08-02 17:02:06 705 263 2005-08-08 21:12:06 1 2006-02-16 02:30:53
  41217. 11340 2005-08-02 17:05:43 1403 366 2005-08-09 13:25:43 1 2006-02-16 02:30:53
  41218. 11341 2005-08-02 17:09:24 3586 15 2005-08-09 19:48:24 2 2006-02-16 02:30:53
  41219. 11342 2005-08-02 17:11:35 4251 179 2005-08-07 15:04:35 1 2006-02-16 02:30:53
  41220. 11343 2005-08-02 17:12:30 564 466 2005-08-09 12:08:30 1 2006-02-16 02:30:53
  41221. 11344 2005-08-02 17:13:26 365 38 2005-08-07 16:44:26 1 2006-02-16 02:30:53
  41222. 11345 2005-08-02 17:14:19 1895 405 2005-08-11 14:02:19 2 2006-02-16 02:30:53
  41223. 11346 2005-08-02 17:15:38 584 100 2005-08-04 13:31:38 2 2006-02-16 02:30:53
  41224. 11347 2005-08-02 17:18:07 195 217 2005-08-05 12:30:07 1 2006-02-16 02:30:53
  41225. 11348 2005-08-02 17:18:38 1704 389 2005-08-06 16:11:38 2 2006-02-16 02:30:53
  41226. 11349 2005-08-02 17:21:49 1871 73 2005-08-06 18:40:49 1 2006-02-16 02:30:53
  41227. 11350 2005-08-02 17:22:59 1265 598 2005-08-09 19:56:59 2 2006-02-16 02:30:53
  41228. 11351 2005-08-02 17:28:07 242 198 2005-08-09 21:55:07 1 2006-02-16 02:30:53
  41229. 11352 2005-08-02 17:29:39 2760 546 2005-08-10 15:31:39 1 2006-02-16 02:30:53
  41230. 11353 2005-08-02 17:34:45 1729 444 2005-08-09 16:01:45 1 2006-02-16 02:30:53
  41231. 11354 2005-08-02 17:35:10 1887 569 2005-08-09 12:07:10 2 2006-02-16 02:30:53
  41232. 11355 2005-08-02 17:37:43 2673 185 2005-08-05 19:59:43 1 2006-02-16 02:30:53
  41233. 11356 2005-08-02 17:42:40 303 200 2005-08-11 23:29:40 1 2006-02-16 02:30:53
  41234. 11357 2005-08-02 17:42:49 2644 148 2005-08-11 18:14:49 1 2006-02-16 02:30:53
  41235. 11358 2005-08-02 17:45:02 2361 56 2005-08-11 18:16:02 1 2006-02-16 02:30:53
  41236. 11359 2005-08-02 17:45:55 1648 466 2005-08-10 20:53:55 2 2006-02-16 02:30:53
  41237. 11360 2005-08-02 17:46:04 1750 66 2005-08-04 21:02:04 2 2006-02-16 02:30:53
  41238. 11361 2005-08-02 17:46:34 1124 547 2005-08-03 15:21:34 1 2006-02-16 02:30:53
  41239. 11362 2005-08-02 17:47:25 2628 331 2005-08-07 20:14:25 1 2006-02-16 02:30:53
  41240. 11363 2005-08-02 17:48:39 3190 274 2005-08-05 17:20:39 1 2006-02-16 02:30:53
  41241. 11364 2005-08-02 17:53:36 4515 44 2005-08-03 14:16:36 1 2006-02-16 02:30:53
  41242. 11365 2005-08-02 18:00:09 1151 508 2005-08-04 13:40:09 2 2006-02-16 02:30:53
  41243. 11366 2005-08-02 18:01:25 3583 280 2005-08-11 15:02:25 1 2006-02-16 02:30:53
  41244. 11367 2005-08-02 18:01:38 1440 1 2005-08-04 13:19:38 1 2006-02-16 02:30:53
  41245. 11368 2005-08-02 18:03:05 866 153 2005-08-07 20:40:05 1 2006-02-16 02:30:53
  41246. 11369 2005-08-02 18:04:41 2480 480 2005-08-09 18:41:41 1 2006-02-16 02:30:53
  41247. 11370 2005-08-02 18:06:01 3077 146 2005-08-04 15:10:01 1 2006-02-16 02:30:53
  41248. 11371 2005-08-02 18:07:36 324 561 2005-08-06 17:52:36 1 2006-02-16 02:30:53
  41249. 11372 2005-08-02 18:10:50 796 327 2005-08-07 17:58:50 1 2006-02-16 02:30:53
  41250. 11373 2005-08-02 18:14:12 181 267 2005-08-06 23:37:12 1 2006-02-16 02:30:53
  41251. 11374 2005-08-02 18:14:54 2805 424 2005-08-04 18:22:54 1 2006-02-16 02:30:53
  41252. 11375 2005-08-02 18:14:56 1064 346 2005-08-08 23:29:56 1 2006-02-16 02:30:53
  41253. 11376 2005-08-02 18:16:00 2530 177 2005-08-11 23:38:00 2 2006-02-16 02:30:53
  41254. 11377 2005-08-02 18:16:47 3334 119 2005-08-08 13:46:47 1 2006-02-16 02:30:53
  41255. 11378 2005-08-02 18:16:52 3824 188 2005-08-03 14:25:52 1 2006-02-16 02:30:53
  41256. 11379 2005-08-02 18:16:55 251 61 2005-08-07 18:12:55 1 2006-02-16 02:30:53
  41257. 11380 2005-08-02 18:17:32 1046 551 2005-08-03 19:26:32 2 2006-02-16 02:30:53
  41258. 11381 2005-08-02 18:19:29 993 451 2005-08-08 20:39:29 2 2006-02-16 02:30:53
  41259. 11382 2005-08-02 18:20:52 3848 407 2005-08-07 17:06:52 1 2006-02-16 02:30:53
  41260. 11383 2005-08-02 18:22:05 257 445 2005-08-11 17:18:05 1 2006-02-16 02:30:53
  41261. 11384 2005-08-02 18:23:01 2840 225 2005-08-05 17:59:01 1 2006-02-16 02:30:53
  41262. 11385 2005-08-02 18:23:11 2478 192 2005-08-06 12:37:11 1 2006-02-16 02:30:53
  41263. 11386 2005-08-02 18:24:03 519 183 2005-08-06 21:22:03 1 2006-02-16 02:30:53
  41264. 11387 2005-08-02 18:32:38 2491 481 2005-08-07 19:08:38 2 2006-02-16 02:30:53
  41265. 11388 2005-08-02 18:35:55 477 369 2005-08-09 21:56:55 1 2006-02-16 02:30:53
  41266. 11389 2005-08-02 18:39:12 3267 270 2005-08-03 23:23:12 2 2006-02-16 02:30:53
  41267. 11390 2005-08-02 18:39:16 3135 294 2005-08-04 21:43:16 1 2006-02-16 02:30:53
  41268. 11391 2005-08-02 18:40:12 2039 403 2005-08-10 15:55:12 1 2006-02-16 02:30:53
  41269. 11392 2005-08-02 18:41:11 261 146 2005-08-11 21:41:11 1 2006-02-16 02:30:53
  41270. 11393 2005-08-02 18:44:29 1033 501 2005-08-11 23:58:29 1 2006-02-16 02:30:53
  41271. 11394 2005-08-02 18:44:45 2087 257 2005-08-06 22:51:45 2 2006-02-16 02:30:53
  41272. 11395 2005-08-02 18:47:44 4234 225 2005-08-10 17:07:44 2 2006-02-16 02:30:53
  41273. 11396 2005-08-02 18:48:29 1155 59 2005-08-04 16:05:29 2 2006-02-16 02:30:53
  41274. 11397 2005-08-02 18:53:14 2566 470 2005-08-09 18:09:14 1 2006-02-16 02:30:53
  41275. 11398 2005-08-02 18:55:15 3952 6 2005-08-10 19:50:15 2 2006-02-16 02:30:53
  41276. 11399 2005-08-02 18:56:28 2094 565 2005-08-11 23:19:28 1 2006-02-16 02:30:53
  41277. 11400 2005-08-02 19:00:52 3150 9 2005-08-09 19:45:52 2 2006-02-16 02:30:53
  41278. 11401 2005-08-02 19:05:06 1799 544 2005-08-09 22:34:06 1 2006-02-16 02:30:53
  41279. 11402 2005-08-02 19:07:21 3291 561 2005-08-07 20:59:21 1 2006-02-16 02:30:53
  41280. 11403 2005-08-02 19:10:21 4072 587 2005-08-04 00:44:21 2 2006-02-16 02:30:53
  41281. 11404 2005-08-02 19:12:40 3285 60 2005-08-11 22:38:40 2 2006-02-16 02:30:53
  41282. 11405 2005-08-02 19:13:39 418 10 2005-08-07 19:19:39 2 2006-02-16 02:30:53
  41283. 11406 2005-08-02 19:16:10 2502 525 2005-08-04 20:51:10 2 2006-02-16 02:30:53
  41284. 11407 2005-08-02 19:18:43 3437 513 2005-08-08 16:15:43 2 2006-02-16 02:30:53
  41285. 11408 2005-08-02 19:25:13 1779 83 2005-08-06 17:12:13 1 2006-02-16 02:30:53
  41286. 11409 2005-08-02 19:26:51 3691 418 2005-08-07 19:55:51 1 2006-02-16 02:30:53
  41287. 11410 2005-08-02 19:29:01 692 592 2005-08-11 16:50:01 1 2006-02-16 02:30:53
  41288. 11411 2005-08-02 19:29:47 1497 141 2005-08-09 16:27:47 2 2006-02-16 02:30:53
  41289. 11412 2005-08-02 19:32:51 2271 141 2005-08-11 22:16:51 1 2006-02-16 02:30:53
  41290. 11413 2005-08-02 19:35:19 1115 297 2005-08-05 21:33:19 2 2006-02-16 02:30:53
  41291. 11414 2005-08-02 19:43:07 1772 353 2005-08-07 15:22:07 2 2006-02-16 02:30:53
  41292. 11415 2005-08-02 19:43:38 2197 572 2005-08-10 15:13:38 1 2006-02-16 02:30:53
  41293. 11416 2005-08-02 19:44:04 1848 58 2005-08-11 15:30:04 1 2006-02-16 02:30:53
  41294. 11417 2005-08-02 19:44:46 3083 437 2005-08-11 21:43:46 2 2006-02-16 02:30:53
  41295. 11418 2005-08-02 19:45:33 4490 91 2005-08-06 17:40:33 1 2006-02-16 02:30:53
  41296. 11419 2005-08-02 19:46:38 514 444 2005-08-11 14:49:38 1 2006-02-16 02:30:53
  41297. 11420 2005-08-02 19:47:56 3928 158 2005-08-05 21:48:56 2 2006-02-16 02:30:53
  41298. 11421 2005-08-02 19:51:53 3361 473 2005-08-12 00:50:53 2 2006-02-16 02:30:53
  41299. 11422 2005-08-02 19:52:08 342 72 2005-08-11 18:40:08 2 2006-02-16 02:30:53
  41300. 11423 2005-08-02 19:57:13 3431 241 2005-08-06 00:54:13 2 2006-02-16 02:30:53
  41301. 11424 2005-08-02 19:57:42 1030 84 2005-08-10 16:57:42 2 2006-02-16 02:30:53
  41302. 11425 2005-08-02 19:58:48 989 419 2005-08-03 19:30:48 2 2006-02-16 02:30:53
  41303. 11426 2005-08-02 20:00:09 130 572 2005-08-09 01:30:09 2 2006-02-16 02:30:53
  41304. 11427 2005-08-02 20:02:39 3287 403 2005-08-04 22:26:39 2 2006-02-16 02:30:53
  41305. 11428 2005-08-02 20:03:10 722 326 2005-08-04 01:55:10 1 2006-02-16 02:30:53
  41306. 11429 2005-08-02 20:03:52 1098 348 2005-08-10 16:38:52 2 2006-02-16 02:30:53
  41307. 11430 2005-08-02 20:04:36 2258 140 2005-08-08 19:43:36 1 2006-02-16 02:30:53
  41308. 11431 2005-08-02 20:05:16 1409 271 2005-08-04 00:05:16 2 2006-02-16 02:30:53
  41309. 11432 2005-08-02 20:10:01 959 540 2005-08-07 01:28:01 1 2006-02-16 02:30:53
  41310. 11433 2005-08-02 20:13:10 1 518 2005-08-11 21:35:10 1 2006-02-16 02:30:53
  41311. 11434 2005-08-02 20:13:14 3154 391 2005-08-05 15:01:14 1 2006-02-16 02:30:53
  41312. 11435 2005-08-02 20:14:23 1625 502 2005-08-05 20:40:23 1 2006-02-16 02:30:53
  41313. 11436 2005-08-02 20:16:06 3834 106 2005-08-05 20:40:06 2 2006-02-16 02:30:53
  41314. 11437 2005-08-02 20:20:06 2679 225 2005-08-05 22:17:06 2 2006-02-16 02:30:53
  41315. 11438 2005-08-02 20:21:08 1040 372 2005-08-10 22:12:08 1 2006-02-16 02:30:53
  41316. 11439 2005-08-02 20:22:45 2897 18 2005-08-04 18:30:45 1 2006-02-16 02:30:53
  41317. 11440 2005-08-02 20:24:02 2727 306 2005-08-07 16:42:02 2 2006-02-16 02:30:53
  41318. 11441 2005-08-02 20:25:41 1027 389 2005-08-05 00:05:41 2 2006-02-16 02:30:53
  41319. 11442 2005-08-02 20:26:19 2598 208 2005-08-07 00:33:19 2 2006-02-16 02:30:53
  41320. 11443 2005-08-02 20:29:30 1291 581 2005-08-07 01:08:30 2 2006-02-16 02:30:53
  41321. 11444 2005-08-02 20:32:55 1419 28 2005-08-08 23:21:55 2 2006-02-16 02:30:53
  41322. 11445 2005-08-02 20:33:35 3340 108 2005-08-08 16:02:35 2 2006-02-16 02:30:53
  41323. 11446 2005-08-02 20:33:37 748 342 2005-08-03 18:22:37 1 2006-02-16 02:30:53
  41324. 11447 2005-08-02 20:36:25 3868 508 2005-08-07 18:52:25 1 2006-02-16 02:30:53
  41325. 11448 2005-08-02 20:44:33 1185 496 2005-08-05 22:58:33 2 2006-02-16 02:30:53
  41326. 11449 2005-08-02 20:44:43 3279 443 2005-08-07 23:47:43 2 2006-02-16 02:30:53
  41327. 11450 2005-08-02 20:45:54 2009 214 2005-08-08 17:17:54 2 2006-02-16 02:30:53
  41328. 11451 2005-08-02 20:45:56 776 515 2005-08-06 21:42:56 2 2006-02-16 02:30:53
  41329. 11452 2005-08-02 20:59:52 1245 35 2005-08-12 01:16:52 1 2006-02-16 02:30:53
  41330. 11453 2005-08-02 21:00:05 4578 84 2005-08-08 22:03:05 2 2006-02-16 02:30:53
  41331. 11454 2005-08-02 21:04:39 2901 199 2005-08-05 19:03:39 1 2006-02-16 02:30:53
  41332. 11455 2005-08-02 21:07:06 2000 498 2005-08-12 01:21:06 1 2006-02-16 02:30:53
  41333. 11456 2005-08-02 21:14:04 3638 322 2005-08-07 19:49:04 2 2006-02-16 02:30:53
  41334. 11457 2005-08-02 21:14:16 1642 379 2005-08-10 02:39:16 2 2006-02-16 02:30:53
  41335. 11458 2005-08-02 21:24:02 3514 575 2005-08-04 01:32:02 2 2006-02-16 02:30:53
  41336. 11459 2005-08-02 21:25:25 3730 392 2005-08-04 19:57:25 2 2006-02-16 02:30:53
  41337. 11460 2005-08-02 21:28:03 4113 403 2005-08-08 18:24:03 1 2006-02-16 02:30:53
  41338. 11461 2005-08-02 21:35:00 4343 65 2005-08-05 01:34:00 1 2006-02-16 02:30:53
  41339. 11462 2005-08-02 21:36:46 167 268 2005-08-10 01:48:46 1 2006-02-16 02:30:53
  41340. 11463 2005-08-02 21:37:36 1944 138 2005-08-08 03:11:36 2 2006-02-16 02:30:53
  41341. 11464 2005-08-02 21:42:07 538 577 2005-08-03 21:44:07 2 2006-02-16 02:30:53
  41342. 11465 2005-08-02 21:43:52 2190 447 2005-08-10 22:24:52 1 2006-02-16 02:30:53
  41343. 11466 2005-08-02 21:46:46 3363 556 2005-08-06 01:42:46 1 2006-02-16 02:30:53
  41344. 11467 2005-08-02 21:47:07 246 117 2005-08-09 00:50:07 1 2006-02-16 02:30:53
  41345. 11468 2005-08-02 21:47:26 3168 413 2005-08-05 02:30:26 2 2006-02-16 02:30:53
  41346. 11469 2005-08-02 21:48:09 230 77 2005-08-06 18:37:09 1 2006-02-16 02:30:53
  41347. 11470 2005-08-02 21:48:28 2379 346 2005-08-05 23:58:28 2 2006-02-16 02:30:53
  41348. 11471 2005-08-02 21:49:03 3378 355 2005-08-08 00:17:03 1 2006-02-16 02:30:53
  41349. 11472 2005-08-02 21:49:06 1829 410 2005-08-11 20:17:06 1 2006-02-16 02:30:53
  41350. 11473 2005-08-02 21:52:03 620 536 2005-08-09 02:01:03 1 2006-02-16 02:30:53
  41351. 11474 2005-08-02 21:53:08 574 214 2005-08-05 22:36:08 1 2006-02-16 02:30:53
  41352. 11475 2005-08-02 21:55:09 3687 194 2005-08-09 20:28:09 2 2006-02-16 02:30:53
  41353. 11476 2005-08-02 22:03:47 724 144 2005-08-09 02:19:47 1 2006-02-16 02:30:53
  41354. 11477 2005-08-02 22:09:01 1671 47 2005-08-07 03:46:01 2 2006-02-16 02:30:53
  41355. 11478 2005-08-02 22:09:05 3932 197 2005-08-04 18:02:05 1 2006-02-16 02:30:53
  41356. 11479 2005-08-02 22:18:13 4077 237 2005-08-12 00:43:13 1 2006-02-16 02:30:53
  41357. 11480 2005-08-02 22:18:24 4161 14 2005-08-04 21:22:24 2 2006-02-16 02:30:53
  41358. 11481 2005-08-02 22:18:41 4028 234 2005-08-09 23:43:41 2 2006-02-16 02:30:53
  41359. 11482 2005-08-02 22:24:31 1400 134 2005-08-04 01:48:31 1 2006-02-16 02:30:53
  41360. 11483 2005-08-02 22:28:22 1586 45 2005-08-11 18:06:22 1 2006-02-16 02:30:53
  41361. 11484 2005-08-02 22:28:23 330 165 2005-08-04 20:51:23 2 2006-02-16 02:30:53
  41362. 11485 2005-08-02 22:33:25 1872 326 2005-08-04 23:26:25 2 2006-02-16 02:30:53
  41363. 11486 2005-08-02 22:34:06 1610 236 2005-08-09 00:46:06 2 2006-02-16 02:30:53
  41364. 11487 2005-08-02 22:35:05 734 239 2005-08-08 00:54:05 2 2006-02-16 02:30:53
  41365. 11488 2005-08-02 22:35:15 2520 45 2005-08-09 00:28:15 2 2006-02-16 02:30:53
  41366. 11489 2005-08-02 22:35:28 3001 474 2005-08-04 00:29:28 2 2006-02-16 02:30:53
  41367. 11490 2005-08-02 22:36:00 1178 156 2005-08-09 16:36:00 1 2006-02-16 02:30:53
  41368. 11491 2005-08-02 22:44:50 268 307 2005-08-11 01:55:50 2 2006-02-16 02:30:53
  41369. 11492 2005-08-02 22:46:47 4037 349 2005-08-09 19:54:47 2 2006-02-16 02:30:53
  41370. 11493 2005-08-02 22:47:00 3375 124 2005-08-10 20:53:00 2 2006-02-16 02:30:53
  41371. 11494 2005-08-02 22:51:23 3994 579 2005-08-09 01:52:23 1 2006-02-16 02:30:53
  41372. 11495 2005-08-16 22:51:20 1265 247 2005-08-23 00:44:20 1 2006-02-16 02:30:53
  41373. 11496 2006-02-14 15:16:03 2047 155 \N 1 2006-02-16 02:30:53
  41374. 11497 2005-08-16 22:52:30 436 12 2005-08-21 19:52:30 1 2006-02-16 02:30:53
  41375. 11498 2005-08-16 22:52:54 487 482 2005-08-25 03:27:54 2 2006-02-16 02:30:53
  41376. 11499 2005-08-16 22:54:12 3857 172 2005-08-24 03:37:12 2 2006-02-16 02:30:53
  41377. 11500 2005-08-16 23:01:22 4003 584 2005-08-24 22:54:22 1 2006-02-16 02:30:53
  41378. 11501 2005-08-16 23:04:53 2147 23 2005-08-19 20:57:53 2 2006-02-16 02:30:53
  41379. 11502 2005-08-16 23:06:30 4470 11 2005-08-19 03:49:30 1 2006-02-16 02:30:53
  41380. 11503 2005-08-16 23:10:34 1496 526 2005-08-25 03:55:34 1 2006-02-16 02:30:53
  41381. 11504 2005-08-16 23:16:46 2132 350 2005-08-18 20:49:46 2 2006-02-16 02:30:53
  41382. 11505 2005-08-16 23:18:47 3344 34 2005-08-23 19:52:47 2 2006-02-16 02:30:53
  41383. 11506 2005-08-16 23:25:48 1529 565 2005-08-22 18:17:48 1 2006-02-16 02:30:53
  41384. 11507 2005-08-16 23:26:43 4197 236 2005-08-24 22:48:43 2 2006-02-16 02:30:53
  41385. 11508 2005-08-16 23:27:36 2688 19 2005-08-25 01:34:36 2 2006-02-16 02:30:53
  41386. 11509 2005-08-16 23:29:53 2750 273 2005-08-19 02:09:53 1 2006-02-16 02:30:53
  41387. 11510 2005-08-16 23:30:07 2997 400 2005-08-25 17:35:07 1 2006-02-16 02:30:53
  41388. 11511 2005-08-16 23:39:59 2127 397 2005-08-18 18:04:59 1 2006-02-16 02:30:53
  41389. 11512 2005-08-16 23:51:06 1248 373 2005-08-26 02:06:06 2 2006-02-16 02:30:53
  41390. 11513 2005-08-16 23:51:33 4473 499 2005-08-24 01:37:33 2 2006-02-16 02:30:53
  41391. 11514 2005-08-16 23:53:10 4240 423 2005-08-23 22:04:10 1 2006-02-16 02:30:53
  41392. 11515 2005-08-16 23:54:34 1053 279 2005-08-21 19:00:34 1 2006-02-16 02:30:53
  41393. 11516 2005-08-16 23:54:47 1860 90 2005-08-17 20:05:47 1 2006-02-16 02:30:53
  41394. 11517 2005-08-16 23:56:28 4266 280 2005-08-21 22:40:28 1 2006-02-16 02:30:53
  41395. 11518 2005-08-16 23:59:49 3297 407 2005-08-17 22:51:49 2 2006-02-16 02:30:53
  41396. 11519 2005-08-17 00:01:27 1034 381 2005-08-19 04:54:27 2 2006-02-16 02:30:53
  41397. 11520 2005-08-17 00:04:28 3536 119 2005-08-26 02:03:28 1 2006-02-16 02:30:53
  41398. 11521 2005-08-17 00:04:54 463 229 2005-08-21 00:57:54 1 2006-02-16 02:30:53
  41399. 11522 2005-08-17 00:05:05 2033 599 2005-08-24 04:56:05 1 2006-02-16 02:30:53
  41400. 11523 2005-08-17 00:10:10 1329 421 2005-08-24 22:39:10 1 2006-02-16 02:30:53
  41401. 11524 2005-08-17 00:10:55 317 533 2005-08-23 05:30:55 1 2006-02-16 02:30:53
  41402. 11525 2005-08-17 00:15:31 1107 174 2005-08-20 21:14:31 1 2006-02-16 02:30:53
  41403. 11526 2005-08-17 00:17:38 2419 572 2005-08-18 03:59:38 2 2006-02-16 02:30:53
  41404. 11527 2005-08-17 00:25:06 162 264 2005-08-22 21:13:06 1 2006-02-16 02:30:53
  41405. 11528 2005-08-17 00:27:23 893 14 2005-08-22 06:12:23 2 2006-02-16 02:30:53
  41406. 11529 2005-08-17 00:28:01 3071 4 2005-08-19 04:47:01 2 2006-02-16 02:30:53
  41407. 11530 2005-08-17 00:29:00 365 400 2005-08-22 03:22:00 1 2006-02-16 02:30:53
  41408. 11531 2005-08-17 00:30:04 1817 278 2005-08-20 01:12:04 2 2006-02-16 02:30:53
  41409. 11532 2005-08-17 00:34:14 1947 413 2005-08-22 19:37:14 2 2006-02-16 02:30:53
  41410. 11533 2005-08-17 00:34:53 4252 264 2005-08-22 06:10:53 1 2006-02-16 02:30:53
  41411. 11534 2005-08-17 00:35:27 2414 144 2005-08-24 01:36:27 1 2006-02-16 02:30:53
  41412. 11535 2005-08-17 00:39:54 1649 356 2005-08-24 20:46:54 2 2006-02-16 02:30:53
  41413. 11536 2005-08-17 00:40:03 2735 428 2005-08-21 19:11:03 1 2006-02-16 02:30:53
  41414. 11537 2005-08-17 00:41:08 190 474 2005-08-19 00:25:08 2 2006-02-16 02:30:53
  41415. 11538 2005-08-17 00:44:04 554 431 2005-08-18 03:43:04 2 2006-02-16 02:30:53
  41416. 11539 2005-08-17 00:45:41 2064 264 2005-08-19 06:03:41 1 2006-02-16 02:30:53
  41417. 11540 2005-08-17 00:48:03 3385 370 2005-08-25 03:46:03 1 2006-02-16 02:30:53
  41418. 11541 2006-02-14 15:16:03 2026 335 \N 1 2006-02-16 02:30:53
  41419. 11542 2005-08-17 00:51:32 2155 7 2005-08-24 20:29:32 2 2006-02-16 02:30:53
  41420. 11543 2005-08-17 00:54:28 2860 238 2005-08-25 04:31:28 2 2006-02-16 02:30:53
  41421. 11544 2005-08-17 00:55:07 836 439 2005-08-22 19:25:07 1 2006-02-16 02:30:53
  41422. 11545 2005-08-17 00:56:06 3198 257 2005-08-25 22:47:06 1 2006-02-16 02:30:53
  41423. 11546 2005-08-17 00:57:36 2522 24 2005-08-18 23:16:36 1 2006-02-16 02:30:53
  41424. 11547 2005-08-17 00:59:24 737 114 2005-08-20 04:03:24 2 2006-02-16 02:30:53
  41425. 11548 2005-08-17 00:59:47 480 323 2005-08-22 05:09:47 1 2006-02-16 02:30:53
  41426. 11549 2005-08-17 01:01:48 945 402 2005-08-19 21:24:48 2 2006-02-16 02:30:53
  41427. 11550 2005-08-17 01:02:06 2972 339 2005-08-22 21:44:06 1 2006-02-16 02:30:53
  41428. 11551 2005-08-17 01:03:49 3356 168 2005-08-18 22:31:49 1 2006-02-16 02:30:53
  41429. 11552 2005-08-17 01:04:29 1143 230 2005-08-23 23:07:29 1 2006-02-16 02:30:53
  41430. 11553 2005-08-17 01:04:31 3317 360 2005-08-24 00:44:31 1 2006-02-16 02:30:53
  41431. 11554 2005-08-17 01:05:17 2212 460 2005-08-20 06:20:17 2 2006-02-16 02:30:53
  41432. 11555 2005-08-17 01:08:59 2569 372 2005-08-18 06:09:59 2 2006-02-16 02:30:53
  41433. 11556 2005-08-17 01:11:53 373 9 2005-08-18 23:41:53 1 2006-02-16 02:30:53
  41434. 11557 2005-08-17 01:19:20 2376 416 2005-08-24 02:25:20 1 2006-02-16 02:30:53
  41435. 11558 2005-08-17 01:19:52 1681 403 2005-08-19 00:47:52 2 2006-02-16 02:30:53
  41436. 11559 2005-08-17 01:20:26 1812 385 2005-08-24 03:11:26 1 2006-02-16 02:30:53
  41437. 11560 2005-08-17 01:20:30 2316 320 2005-08-18 04:29:30 2 2006-02-16 02:30:53
  41438. 11561 2005-08-17 01:23:09 189 149 2005-08-23 21:02:09 2 2006-02-16 02:30:53
  41439. 12101 2006-02-14 15:16:03 1556 479 \N 1 2006-02-16 02:30:53
  41440. 11562 2005-08-17 01:23:39 2992 424 2005-08-26 06:16:39 1 2006-02-16 02:30:53
  41441. 11563 2006-02-14 15:16:03 1545 83 \N 1 2006-02-16 02:30:53
  41442. 11564 2005-08-17 01:27:49 2237 332 2005-08-19 22:07:49 1 2006-02-16 02:30:53
  41443. 11565 2005-08-17 01:28:05 173 83 2005-08-23 23:33:05 2 2006-02-16 02:30:53
  41444. 11566 2005-08-17 01:28:35 4020 520 2005-08-20 22:42:35 1 2006-02-16 02:30:53
  41445. 11567 2005-08-17 01:28:43 567 558 2005-08-24 20:20:43 2 2006-02-16 02:30:53
  41446. 11568 2005-08-17 01:30:01 183 342 2005-08-18 22:21:01 2 2006-02-16 02:30:53
  41447. 11569 2005-08-17 01:31:04 2592 504 2005-08-24 03:36:04 2 2006-02-16 02:30:53
  41448. 11570 2005-08-17 01:34:32 2466 343 2005-08-24 05:47:32 1 2006-02-16 02:30:53
  41449. 11571 2005-08-17 01:37:51 203 296 2005-08-17 20:30:51 1 2006-02-16 02:30:53
  41450. 11572 2005-08-17 01:37:55 3512 515 2005-08-19 06:22:55 2 2006-02-16 02:30:53
  41451. 11573 2005-08-17 01:38:18 639 146 2005-08-19 05:06:18 2 2006-02-16 02:30:53
  41452. 11574 2005-08-17 01:38:19 3596 277 2005-08-18 20:30:19 2 2006-02-16 02:30:53
  41453. 11575 2005-08-17 01:50:26 1725 319 2005-08-18 00:43:26 1 2006-02-16 02:30:53
  41454. 11576 2005-08-17 01:53:20 327 293 2005-08-19 00:15:20 1 2006-02-16 02:30:53
  41455. 11577 2006-02-14 15:16:03 4106 219 \N 2 2006-02-16 02:30:53
  41456. 11578 2005-08-17 01:54:13 192 590 2005-08-26 02:00:13 2 2006-02-16 02:30:53
  41457. 11579 2005-08-17 01:57:49 4256 356 2005-08-22 02:42:49 1 2006-02-16 02:30:53
  41458. 11580 2005-08-17 01:59:07 1346 436 2005-08-21 06:18:07 2 2006-02-16 02:30:53
  41459. 11581 2005-08-17 02:03:02 1249 231 2005-08-24 03:53:02 2 2006-02-16 02:30:53
  41460. 11582 2005-08-17 02:03:49 2115 339 2005-08-24 03:29:49 1 2006-02-16 02:30:53
  41461. 11583 2005-08-17 02:08:13 133 542 2005-08-20 23:13:13 2 2006-02-16 02:30:53
  41462. 11584 2005-08-17 02:13:26 3906 479 2005-08-22 01:24:26 2 2006-02-16 02:30:53
  41463. 11585 2005-08-17 02:14:36 753 297 2005-08-20 07:37:36 2 2006-02-16 02:30:53
  41464. 11586 2005-08-17 02:20:42 3140 465 2005-08-26 05:01:42 1 2006-02-16 02:30:53
  41465. 11587 2005-08-17 02:21:03 1319 156 2005-08-25 21:02:03 2 2006-02-16 02:30:53
  41466. 11588 2005-08-17 02:26:23 2480 565 2005-08-22 02:32:23 1 2006-02-16 02:30:53
  41467. 11589 2005-08-17 02:28:22 3480 554 2005-08-25 00:08:22 1 2006-02-16 02:30:53
  41468. 11590 2005-08-17 02:28:33 3600 491 2005-08-20 03:13:33 1 2006-02-16 02:30:53
  41469. 11591 2005-08-17 02:29:41 1670 6 2005-08-23 20:47:41 1 2006-02-16 02:30:53
  41470. 11592 2005-08-17 02:36:04 720 383 2005-08-19 00:31:04 1 2006-02-16 02:30:53
  41471. 11593 2006-02-14 15:16:03 817 99 \N 1 2006-02-16 02:30:53
  41472. 11594 2005-08-17 02:47:02 319 198 2005-08-22 05:14:02 2 2006-02-16 02:30:53
  41473. 11595 2005-08-17 02:53:14 466 350 2005-08-26 02:05:14 1 2006-02-16 02:30:53
  41474. 11596 2005-08-17 02:53:55 1674 290 2005-08-26 02:19:55 1 2006-02-16 02:30:53
  41475. 11597 2005-08-17 03:02:56 4073 272 2005-08-26 04:47:56 1 2006-02-16 02:30:53
  41476. 11598 2005-08-17 03:03:07 1949 319 2005-08-22 21:05:07 2 2006-02-16 02:30:53
  41477. 11599 2005-08-17 03:08:10 3749 112 2005-08-25 05:01:10 2 2006-02-16 02:30:53
  41478. 11600 2005-08-17 03:12:04 1978 400 2005-08-23 07:10:04 1 2006-02-16 02:30:53
  41479. 11601 2005-08-17 03:14:47 1098 471 2005-08-20 00:21:47 2 2006-02-16 02:30:53
  41480. 11602 2005-08-17 03:21:19 2082 391 2005-08-19 05:23:19 1 2006-02-16 02:30:53
  41481. 11603 2005-08-17 03:22:10 3910 406 2005-08-18 06:48:10 1 2006-02-16 02:30:53
  41482. 11604 2005-08-17 03:28:27 1820 388 2005-08-19 05:38:27 2 2006-02-16 02:30:53
  41483. 11605 2005-08-17 03:30:57 1292 455 2005-08-24 07:02:57 2 2006-02-16 02:30:53
  41484. 11606 2005-08-17 03:32:43 4138 499 2005-08-18 04:30:43 1 2006-02-16 02:30:53
  41485. 11607 2005-08-17 03:36:06 4345 242 2005-08-20 01:06:06 1 2006-02-16 02:30:53
  41486. 11608 2005-08-17 03:36:52 1673 448 2005-08-25 07:17:52 2 2006-02-16 02:30:53
  41487. 11609 2005-08-17 03:41:11 351 73 2005-08-25 01:30:11 2 2006-02-16 02:30:53
  41488. 11610 2005-08-17 03:43:37 3048 275 2005-08-20 22:14:37 1 2006-02-16 02:30:53
  41489. 11611 2006-02-14 15:16:03 1857 192 \N 2 2006-02-16 02:30:53
  41490. 11612 2005-08-17 03:48:51 375 526 2005-08-20 03:03:51 1 2006-02-16 02:30:53
  41491. 11613 2005-08-17 03:50:33 2486 126 2005-08-25 00:37:33 2 2006-02-16 02:30:53
  41492. 11614 2005-08-17 03:52:18 805 2 2005-08-20 07:04:18 1 2006-02-16 02:30:53
  41493. 11615 2005-08-17 03:54:35 4331 436 2005-08-23 06:54:35 2 2006-02-16 02:30:53
  41494. 11616 2005-08-17 04:00:01 2588 36 2005-08-20 23:03:01 2 2006-02-16 02:30:53
  41495. 11617 2005-08-17 04:00:40 1898 324 2005-08-18 00:36:40 1 2006-02-16 02:30:53
  41496. 11618 2005-08-17 04:01:36 954 175 2005-08-23 01:02:36 1 2006-02-16 02:30:53
  41497. 11619 2005-08-17 04:03:26 3652 374 2005-08-22 03:07:26 1 2006-02-16 02:30:53
  41498. 11620 2005-08-17 04:06:22 3801 502 2005-08-17 23:53:22 1 2006-02-16 02:30:53
  41499. 11621 2005-08-17 04:13:45 3708 216 2005-08-26 01:00:45 1 2006-02-16 02:30:53
  41500. 11622 2005-08-17 04:15:46 499 220 2005-08-24 04:48:46 1 2006-02-16 02:30:53
  41501. 11623 2005-08-17 04:15:47 759 163 2005-08-19 04:11:47 2 2006-02-16 02:30:53
  41502. 11624 2005-08-17 04:17:42 606 527 2005-08-18 02:46:42 1 2006-02-16 02:30:53
  41503. 11625 2005-08-17 04:18:52 712 521 2005-08-25 03:05:52 2 2006-02-16 02:30:53
  41504. 11626 2005-08-17 04:25:42 4279 266 2005-08-23 05:46:42 1 2006-02-16 02:30:53
  41505. 11627 2005-08-17 04:25:47 3945 168 2005-08-26 02:54:47 2 2006-02-16 02:30:53
  41506. 11628 2005-08-17 04:27:18 3656 256 2005-08-25 01:12:18 2 2006-02-16 02:30:53
  41507. 11629 2005-08-17 04:27:24 786 299 2005-08-26 10:25:24 2 2006-02-16 02:30:53
  41508. 11630 2005-08-17 04:27:46 688 72 2005-08-19 09:58:46 2 2006-02-16 02:30:53
  41509. 11631 2005-08-17 04:28:56 59 168 2005-08-24 00:42:56 2 2006-02-16 02:30:53
  41510. 11632 2005-08-17 04:29:32 2551 238 2005-08-22 03:44:32 1 2006-02-16 02:30:53
  41511. 11633 2005-08-17 04:30:09 1706 468 2005-08-20 06:56:09 1 2006-02-16 02:30:53
  41512. 11634 2005-08-17 04:31:49 2576 206 2005-08-21 02:51:49 1 2006-02-16 02:30:53
  41513. 11635 2005-08-17 04:33:17 2642 98 2005-08-21 07:50:17 2 2006-02-16 02:30:53
  41514. 11636 2005-08-17 04:36:31 791 276 2005-08-24 00:03:31 2 2006-02-16 02:30:53
  41515. 11637 2005-08-17 04:36:39 479 283 2005-08-18 02:17:39 1 2006-02-16 02:30:53
  41516. 11638 2005-08-17 04:39:09 3421 152 2005-08-25 06:42:09 2 2006-02-16 02:30:53
  41517. 11639 2005-08-17 04:43:29 3985 462 2005-08-25 01:04:29 2 2006-02-16 02:30:53
  41518. 11640 2005-08-17 04:44:33 1718 501 2005-08-21 09:29:33 2 2006-02-16 02:30:53
  41519. 11641 2005-08-17 04:45:39 2717 79 2005-08-20 10:38:39 1 2006-02-16 02:30:53
  41520. 11642 2005-08-17 04:48:05 3790 25 2005-08-18 01:53:05 2 2006-02-16 02:30:53
  41521. 11643 2005-08-17 04:49:35 1378 197 2005-08-24 07:05:35 1 2006-02-16 02:30:53
  41522. 11644 2005-08-17 04:49:46 1760 438 2005-08-24 08:49:46 1 2006-02-16 02:30:53
  41523. 11645 2005-08-17 04:50:56 4261 35 2005-08-25 23:03:56 1 2006-02-16 02:30:53
  41524. 11646 2006-02-14 15:16:03 478 11 \N 2 2006-02-16 02:30:53
  41525. 11647 2005-08-17 04:54:14 3016 110 2005-08-23 04:16:14 2 2006-02-16 02:30:53
  41526. 11648 2005-08-17 04:56:16 3362 465 2005-08-26 00:53:16 2 2006-02-16 02:30:53
  41527. 11649 2005-08-17 04:59:26 3222 217 2005-08-20 04:02:26 2 2006-02-16 02:30:53
  41528. 11650 2005-08-17 05:00:03 3979 418 2005-08-22 01:45:03 2 2006-02-16 02:30:53
  41529. 11651 2005-08-17 05:02:25 3681 143 2005-08-24 08:15:25 2 2006-02-16 02:30:53
  41530. 11652 2006-02-14 15:16:03 1622 597 \N 2 2006-02-16 02:30:53
  41531. 11653 2005-08-17 05:06:10 4475 358 2005-08-24 03:09:10 2 2006-02-16 02:30:53
  41532. 11654 2005-08-17 05:06:19 1048 218 2005-08-18 04:32:19 2 2006-02-16 02:30:53
  41533. 11655 2005-08-17 05:11:07 1699 113 2005-08-26 10:18:07 1 2006-02-16 02:30:53
  41534. 11656 2005-08-17 05:11:09 1451 56 2005-08-25 07:51:09 1 2006-02-16 02:30:53
  41535. 11657 2006-02-14 15:16:03 3043 53 \N 2 2006-02-16 02:30:53
  41536. 11658 2005-08-17 05:19:17 2008 422 2005-08-24 07:03:17 2 2006-02-16 02:30:53
  41537. 11659 2005-08-17 05:20:45 2881 112 2005-08-22 10:18:45 1 2006-02-16 02:30:53
  41538. 11660 2005-08-17 05:22:42 4081 525 2005-08-23 01:03:42 1 2006-02-16 02:30:53
  41539. 11661 2005-08-17 05:25:57 1008 27 2005-08-25 04:37:57 1 2006-02-16 02:30:53
  41540. 11662 2005-08-17 05:27:37 2730 177 2005-08-26 09:56:37 2 2006-02-16 02:30:53
  41541. 11663 2005-08-17 05:30:19 3798 373 2005-08-25 08:14:19 1 2006-02-16 02:30:53
  41542. 11664 2005-08-17 05:35:52 1343 433 2005-08-18 02:40:52 1 2006-02-16 02:30:53
  41543. 11665 2005-08-17 05:36:57 334 254 2005-08-23 01:38:57 1 2006-02-16 02:30:53
  41544. 11666 2005-08-17 05:45:10 250 531 2005-08-19 06:47:10 2 2006-02-16 02:30:53
  41545. 11667 2005-08-17 05:46:55 1516 582 2005-08-26 08:19:55 1 2006-02-16 02:30:53
  41546. 11668 2005-08-17 05:47:32 2162 249 2005-08-20 03:11:32 1 2006-02-16 02:30:53
  41547. 11669 2005-08-17 05:48:51 3224 487 2005-08-22 01:22:51 1 2006-02-16 02:30:53
  41548. 13719 2006-02-14 15:16:03 3547 208 \N 1 2006-02-16 02:30:53
  41549. 11670 2005-08-17 05:48:59 4437 286 2005-08-19 08:51:59 1 2006-02-16 02:30:53
  41550. 11671 2005-08-17 05:50:21 3569 338 2005-08-20 03:43:21 1 2006-02-16 02:30:53
  41551. 11672 2006-02-14 15:16:03 3947 521 \N 2 2006-02-16 02:30:53
  41552. 11673 2005-08-17 05:54:15 823 303 2005-08-21 08:12:15 2 2006-02-16 02:30:53
  41553. 11674 2005-08-17 05:56:27 582 306 2005-08-24 08:50:27 2 2006-02-16 02:30:53
  41554. 11675 2005-08-17 05:57:54 1322 514 2005-08-21 23:57:54 1 2006-02-16 02:30:53
  41555. 11676 2006-02-14 15:16:03 4496 216 \N 2 2006-02-16 02:30:53
  41556. 11677 2005-08-17 06:06:26 2206 407 2005-08-20 04:35:26 2 2006-02-16 02:30:53
  41557. 11678 2005-08-17 06:07:39 3511 176 2005-08-21 10:51:39 2 2006-02-16 02:30:53
  41558. 11679 2005-08-17 06:08:54 3337 72 2005-08-21 07:50:54 1 2006-02-16 02:30:53
  41559. 11680 2005-08-17 06:12:27 4538 221 2005-08-23 08:54:27 1 2006-02-16 02:30:53
  41560. 11681 2005-08-17 06:13:30 1260 543 2005-08-26 01:29:30 2 2006-02-16 02:30:53
  41561. 11682 2005-08-17 06:13:40 2544 387 2005-08-18 06:11:40 1 2006-02-16 02:30:53
  41562. 11683 2005-08-17 06:15:17 2603 66 2005-08-26 05:33:17 1 2006-02-16 02:30:53
  41563. 11684 2005-08-17 06:27:15 4277 517 2005-08-22 02:11:15 2 2006-02-16 02:30:53
  41564. 11685 2005-08-17 06:39:16 3552 51 2005-08-22 04:20:16 2 2006-02-16 02:30:53
  41565. 11686 2005-08-17 06:39:30 1393 392 2005-08-21 10:19:30 2 2006-02-16 02:30:53
  41566. 11687 2005-08-17 06:39:59 1977 169 2005-08-23 04:53:59 1 2006-02-16 02:30:53
  41567. 11688 2005-08-17 06:41:58 2229 82 2005-08-25 04:38:58 1 2006-02-16 02:30:53
  41568. 11689 2005-08-17 06:42:08 2390 419 2005-08-26 06:09:08 1 2006-02-16 02:30:53
  41569. 11690 2005-08-17 06:44:22 3934 267 2005-08-24 03:49:22 1 2006-02-16 02:30:53
  41570. 11691 2005-08-17 06:51:05 2529 515 2005-08-24 09:53:05 1 2006-02-16 02:30:53
  41571. 11692 2005-08-17 06:52:41 1222 350 2005-08-24 12:17:41 2 2006-02-16 02:30:53
  41572. 11693 2005-08-17 06:56:56 793 221 2005-08-24 06:20:56 2 2006-02-16 02:30:53
  41573. 11694 2005-08-17 06:57:30 3540 410 2005-08-24 07:52:30 1 2006-02-16 02:30:53
  41574. 11695 2005-08-17 07:01:08 1110 386 2005-08-21 09:21:08 1 2006-02-16 02:30:53
  41575. 11696 2005-08-17 07:01:09 3816 522 2005-08-21 09:12:09 2 2006-02-16 02:30:53
  41576. 11697 2005-08-17 07:09:19 383 329 2005-08-19 02:02:19 1 2006-02-16 02:30:53
  41577. 11698 2005-08-17 07:09:59 3946 353 2005-08-19 04:31:59 1 2006-02-16 02:30:53
  41578. 11699 2005-08-17 07:11:58 3997 339 2005-08-26 12:08:58 1 2006-02-16 02:30:53
  41579. 11700 2005-08-17 07:12:31 2365 104 2005-08-18 04:21:31 2 2006-02-16 02:30:53
  41580. 11701 2005-08-17 07:15:47 993 34 2005-08-19 01:44:47 2 2006-02-16 02:30:53
  41581. 11702 2005-08-17 07:18:56 3286 526 2005-08-24 06:33:56 1 2006-02-16 02:30:53
  41582. 11703 2005-08-17 07:19:29 1692 279 2005-08-20 09:35:29 2 2006-02-16 02:30:53
  41583. 11704 2005-08-17 07:21:22 1099 135 2005-08-25 06:06:22 1 2006-02-16 02:30:53
  41584. 11705 2005-08-17 07:22:25 4242 489 2005-08-18 06:42:25 1 2006-02-16 02:30:53
  41585. 11706 2005-08-17 07:23:46 4234 414 2005-08-18 10:13:46 2 2006-02-16 02:30:53
  41586. 11707 2005-08-17 07:24:59 1030 581 2005-08-24 10:40:59 1 2006-02-16 02:30:53
  41587. 11708 2005-08-17 07:26:47 76 582 2005-08-22 04:11:47 1 2006-02-16 02:30:53
  41588. 11709 2006-02-14 15:16:03 1720 330 \N 1 2006-02-16 02:30:53
  41589. 11710 2005-08-17 07:29:44 613 553 2005-08-19 02:06:44 2 2006-02-16 02:30:53
  41590. 11711 2005-08-17 07:30:55 1503 470 2005-08-18 09:21:55 1 2006-02-16 02:30:53
  41591. 11712 2005-08-17 07:32:51 3607 203 2005-08-21 09:18:51 2 2006-02-16 02:30:53
  41592. 11713 2005-08-17 07:34:05 1919 590 2005-08-25 07:49:05 1 2006-02-16 02:30:53
  41593. 11714 2005-08-17 07:34:55 17 151 2005-08-18 04:07:55 1 2006-02-16 02:30:53
  41594. 11715 2005-08-17 07:40:55 1615 452 2005-08-25 11:19:55 1 2006-02-16 02:30:53
  41595. 11716 2005-08-17 07:40:55 3054 287 2005-08-21 05:56:55 1 2006-02-16 02:30:53
  41596. 11717 2005-08-17 07:44:09 1371 566 2005-08-20 09:39:09 2 2006-02-16 02:30:53
  41597. 11718 2005-08-17 07:44:42 3673 555 2005-08-23 03:02:42 2 2006-02-16 02:30:53
  41598. 11719 2005-08-17 07:46:05 2054 338 2005-08-23 08:52:05 1 2006-02-16 02:30:53
  41599. 11720 2005-08-17 07:46:54 1707 121 2005-08-26 04:19:54 2 2006-02-16 02:30:53
  41600. 11721 2005-08-17 07:49:17 1923 46 2005-08-18 04:08:17 1 2006-02-16 02:30:53
  41601. 11722 2005-08-17 07:53:03 2430 321 2005-08-22 06:56:03 2 2006-02-16 02:30:53
  41602. 11723 2005-08-17 07:56:22 1665 341 2005-08-22 03:49:22 1 2006-02-16 02:30:53
  41603. 11724 2005-08-17 08:04:44 4484 207 2005-08-25 03:25:44 2 2006-02-16 02:30:53
  41604. 11725 2005-08-17 08:09:00 519 45 2005-08-18 09:50:00 1 2006-02-16 02:30:53
  41605. 11726 2005-08-17 08:11:10 4438 266 2005-08-22 05:45:10 1 2006-02-16 02:30:53
  41606. 11727 2005-08-17 08:12:20 98 6 2005-08-19 12:45:20 1 2006-02-16 02:30:53
  41607. 11728 2005-08-17 08:12:26 726 444 2005-08-18 03:26:26 1 2006-02-16 02:30:53
  41608. 11729 2005-08-17 08:14:41 2819 215 2005-08-22 02:54:41 1 2006-02-16 02:30:53
  41609. 11730 2005-08-17 08:22:00 3817 98 2005-08-22 05:43:00 2 2006-02-16 02:30:53
  41610. 11731 2005-08-17 08:24:35 917 52 2005-08-24 02:54:35 2 2006-02-16 02:30:53
  41611. 11732 2005-08-17 08:29:46 460 137 2005-08-23 14:21:46 2 2006-02-16 02:30:53
  41612. 11733 2005-08-17 08:31:03 439 251 2005-08-21 05:44:03 2 2006-02-16 02:30:53
  41613. 11734 2005-08-17 08:34:22 4063 337 2005-08-25 11:56:22 2 2006-02-16 02:30:53
  41614. 11735 2005-08-17 08:35:42 2555 452 2005-08-26 11:04:42 1 2006-02-16 02:30:53
  41615. 11736 2005-08-17 08:40:55 4217 535 2005-08-26 09:03:55 1 2006-02-16 02:30:53
  41616. 11737 2005-08-17 08:42:08 4128 549 2005-08-19 08:14:08 1 2006-02-16 02:30:53
  41617. 11738 2005-08-17 08:45:55 3042 347 2005-08-26 07:09:55 1 2006-02-16 02:30:53
  41618. 11739 2006-02-14 15:16:03 4568 373 \N 2 2006-02-16 02:30:53
  41619. 11740 2005-08-17 08:48:31 2441 27 2005-08-24 07:47:31 2 2006-02-16 02:30:53
  41620. 11741 2005-08-17 08:48:39 1819 473 2005-08-20 07:37:39 1 2006-02-16 02:30:53
  41621. 11742 2005-08-17 08:48:43 596 470 2005-08-23 07:18:43 2 2006-02-16 02:30:53
  41622. 11743 2005-08-17 08:49:05 294 336 2005-08-22 08:53:05 2 2006-02-16 02:30:53
  41623. 11744 2005-08-17 08:54:30 297 26 2005-08-25 03:28:30 1 2006-02-16 02:30:53
  41624. 11745 2005-08-17 09:00:01 4018 240 2005-08-26 14:29:01 2 2006-02-16 02:30:53
  41625. 11746 2005-08-17 09:03:24 4571 299 2005-08-25 06:08:24 2 2006-02-16 02:30:53
  41626. 11747 2005-08-17 09:03:31 1041 555 2005-08-19 08:23:31 2 2006-02-16 02:30:53
  41627. 11748 2005-08-17 09:04:02 1175 595 2005-08-21 12:22:02 2 2006-02-16 02:30:53
  41628. 11749 2005-08-17 09:04:03 4141 567 2005-08-19 09:32:03 2 2006-02-16 02:30:53
  41629. 11750 2005-08-17 09:07:00 665 190 2005-08-23 08:16:00 2 2006-02-16 02:30:53
  41630. 11751 2005-08-17 09:07:56 3309 51 2005-08-26 13:16:56 1 2006-02-16 02:30:53
  41631. 11752 2005-08-17 09:10:55 1833 481 2005-08-18 06:22:55 1 2006-02-16 02:30:53
  41632. 11753 2005-08-17 09:11:52 2599 43 2005-08-25 05:03:52 2 2006-02-16 02:30:53
  41633. 11754 2006-02-14 15:16:03 3747 163 \N 2 2006-02-16 02:30:53
  41634. 11755 2005-08-17 09:15:35 3457 513 2005-08-23 06:28:35 2 2006-02-16 02:30:53
  41635. 11756 2005-08-17 09:29:22 1798 198 2005-08-21 12:17:22 1 2006-02-16 02:30:53
  41636. 11757 2006-02-14 15:16:03 1295 550 \N 2 2006-02-16 02:30:53
  41637. 11758 2005-08-17 09:33:02 11 533 2005-08-24 05:03:02 2 2006-02-16 02:30:53
  41638. 11759 2005-08-17 09:41:23 2655 108 2005-08-19 11:58:23 2 2006-02-16 02:30:53
  41639. 11760 2005-08-17 09:44:22 626 545 2005-08-24 14:39:22 2 2006-02-16 02:30:53
  41640. 11761 2005-08-17 09:44:59 2230 13 2005-08-25 07:46:59 1 2006-02-16 02:30:53
  41641. 11762 2005-08-17 09:48:06 1204 244 2005-08-26 13:12:06 2 2006-02-16 02:30:53
  41642. 11763 2005-08-17 09:51:39 872 586 2005-08-21 10:15:39 2 2006-02-16 02:30:53
  41643. 11764 2005-08-17 09:51:54 4502 252 2005-08-20 07:11:54 1 2006-02-16 02:30:53
  41644. 11765 2005-08-17 09:55:28 4311 308 2005-08-19 15:53:28 2 2006-02-16 02:30:53
  41645. 11766 2005-08-17 09:58:40 2999 544 2005-08-21 04:59:40 1 2006-02-16 02:30:53
  41646. 11767 2005-08-17 10:00:40 2374 77 2005-08-25 04:14:40 2 2006-02-16 02:30:53
  41647. 11768 2005-08-17 10:02:29 1307 564 2005-08-23 10:26:29 1 2006-02-16 02:30:53
  41648. 11769 2005-08-17 10:04:49 1406 418 2005-08-20 09:22:49 1 2006-02-16 02:30:53
  41649. 11770 2005-08-17 10:05:05 2862 475 2005-08-20 15:59:05 1 2006-02-16 02:30:53
  41650. 11771 2005-08-17 10:17:09 2575 324 2005-08-25 10:58:09 1 2006-02-16 02:30:53
  41651. 11772 2005-08-17 10:18:57 1021 237 2005-08-26 12:48:57 2 2006-02-16 02:30:53
  41652. 11773 2005-08-17 10:19:51 1886 384 2005-08-23 04:30:51 1 2006-02-16 02:30:53
  41653. 11774 2005-08-17 10:20:39 1679 488 2005-08-23 13:37:39 1 2006-02-16 02:30:53
  41654. 11775 2005-08-17 10:25:53 256 574 2005-08-22 08:37:53 2 2006-02-16 02:30:53
  41655. 11776 2005-08-17 10:27:19 2400 306 2005-08-20 14:02:19 2 2006-02-16 02:30:53
  41656. 11777 2005-08-17 10:27:19 4065 83 2005-08-26 13:10:19 1 2006-02-16 02:30:53
  41657. 11778 2005-08-17 10:31:40 1306 213 2005-08-25 13:53:40 2 2006-02-16 02:30:53
  41658. 11779 2005-08-17 10:31:58 181 126 2005-08-24 15:28:58 2 2006-02-16 02:30:53
  41659. 11780 2005-08-17 10:34:24 2268 297 2005-08-21 04:55:24 1 2006-02-16 02:30:53
  41660. 11781 2005-08-17 10:37:00 1853 506 2005-08-21 12:03:00 2 2006-02-16 02:30:53
  41661. 11782 2006-02-14 15:16:03 4098 354 \N 1 2006-02-16 02:30:53
  41662. 11783 2005-08-17 10:39:24 979 152 2005-08-21 12:43:24 2 2006-02-16 02:30:53
  41663. 11784 2005-08-17 10:48:05 3101 297 2005-08-19 06:47:05 1 2006-02-16 02:30:53
  41664. 11785 2005-08-17 10:54:46 2760 182 2005-08-23 14:15:46 2 2006-02-16 02:30:53
  41665. 11786 2005-08-17 10:57:40 1487 435 2005-08-24 06:48:40 2 2006-02-16 02:30:53
  41666. 11787 2005-08-17 10:59:00 1980 195 2005-08-19 05:56:00 1 2006-02-16 02:30:53
  41667. 11788 2005-08-17 10:59:18 1310 560 2005-08-22 11:12:18 1 2006-02-16 02:30:53
  41668. 11789 2005-08-17 10:59:24 851 150 2005-08-26 16:17:24 1 2006-02-16 02:30:53
  41669. 11790 2005-08-17 11:00:08 2384 451 2005-08-20 05:15:08 2 2006-02-16 02:30:53
  41670. 11791 2005-08-17 11:01:11 3640 219 2005-08-22 06:31:11 2 2006-02-16 02:30:53
  41671. 11792 2005-08-17 11:03:53 3703 376 2005-08-26 06:34:53 1 2006-02-16 02:30:53
  41672. 11793 2005-08-17 11:05:53 1955 352 2005-08-25 12:25:53 1 2006-02-16 02:30:53
  41673. 11794 2005-08-17 11:08:48 3486 453 2005-08-20 13:36:48 2 2006-02-16 02:30:53
  41674. 11795 2005-08-17 11:13:38 2220 565 2005-08-19 14:20:38 2 2006-02-16 02:30:53
  41675. 11796 2005-08-17 11:16:47 3983 435 2005-08-18 16:55:47 2 2006-02-16 02:30:53
  41676. 11797 2005-08-17 11:17:21 1142 546 2005-08-18 09:14:21 2 2006-02-16 02:30:53
  41677. 11798 2005-08-17 11:21:43 3974 448 2005-08-25 07:43:43 2 2006-02-16 02:30:53
  41678. 11799 2005-08-17 11:25:25 40 501 2005-08-25 13:03:25 2 2006-02-16 02:30:53
  41679. 11800 2005-08-17 11:29:52 2284 350 2005-08-21 08:37:52 1 2006-02-16 02:30:53
  41680. 11801 2005-08-17 11:30:11 659 126 2005-08-23 09:54:11 1 2006-02-16 02:30:53
  41681. 11802 2005-08-17 11:32:51 2815 221 2005-08-22 10:56:51 1 2006-02-16 02:30:53
  41682. 11803 2005-08-17 11:42:08 3648 160 2005-08-22 07:45:08 2 2006-02-16 02:30:53
  41683. 11804 2005-08-17 11:42:45 1040 556 2005-08-25 07:11:45 1 2006-02-16 02:30:53
  41684. 11805 2005-08-17 11:48:47 1208 208 2005-08-26 11:06:47 2 2006-02-16 02:30:53
  41685. 11806 2005-08-17 11:49:28 3203 125 2005-08-22 15:42:28 1 2006-02-16 02:30:53
  41686. 11807 2005-08-17 11:51:15 4052 201 2005-08-21 11:47:15 2 2006-02-16 02:30:53
  41687. 11808 2005-08-17 11:51:16 4042 462 2005-08-18 14:01:16 2 2006-02-16 02:30:53
  41688. 11809 2005-08-17 11:51:39 1136 305 2005-08-24 17:14:39 1 2006-02-16 02:30:53
  41689. 11810 2005-08-17 11:56:48 1548 270 2005-08-20 17:39:48 1 2006-02-16 02:30:53
  41690. 11811 2005-08-17 11:59:18 195 130 2005-08-18 09:13:18 2 2006-02-16 02:30:53
  41691. 11812 2005-08-17 12:00:54 119 132 2005-08-18 16:08:54 1 2006-02-16 02:30:53
  41692. 11813 2005-08-17 12:06:54 1074 36 2005-08-21 17:52:54 2 2006-02-16 02:30:53
  41693. 11814 2005-08-17 12:09:20 3462 509 2005-08-25 16:56:20 2 2006-02-16 02:30:53
  41694. 11815 2005-08-17 12:13:26 272 192 2005-08-22 17:15:26 2 2006-02-16 02:30:53
  41695. 11816 2005-08-17 12:14:16 3897 224 2005-08-19 06:15:16 2 2006-02-16 02:30:53
  41696. 11817 2005-08-17 12:20:01 2297 38 2005-08-19 18:06:01 1 2006-02-16 02:30:53
  41697. 11818 2005-08-17 12:22:04 213 512 2005-08-25 15:59:04 2 2006-02-16 02:30:53
  41698. 11819 2005-08-17 12:25:17 656 208 2005-08-19 16:12:17 1 2006-02-16 02:30:53
  41699. 11820 2005-08-17 12:25:33 2801 401 2005-08-19 07:04:33 2 2006-02-16 02:30:53
  41700. 11821 2005-08-17 12:27:55 2711 20 2005-08-18 07:07:55 1 2006-02-16 02:30:53
  41701. 11822 2005-08-17 12:32:39 1317 263 2005-08-18 12:30:39 2 2006-02-16 02:30:53
  41702. 11823 2005-08-17 12:36:37 2626 352 2005-08-22 11:10:37 2 2006-02-16 02:30:53
  41703. 11824 2005-08-17 12:37:54 2639 1 2005-08-19 10:11:54 2 2006-02-16 02:30:53
  41704. 11825 2005-08-17 12:43:30 2656 296 2005-08-20 15:25:30 1 2006-02-16 02:30:53
  41705. 11826 2005-08-17 12:43:46 1837 536 2005-08-19 16:59:46 2 2006-02-16 02:30:53
  41706. 11827 2005-08-17 12:44:27 3064 523 2005-08-24 13:31:27 1 2006-02-16 02:30:53
  41707. 11828 2005-08-17 12:48:28 2593 268 2005-08-24 09:24:28 2 2006-02-16 02:30:53
  41708. 11829 2005-08-17 12:52:04 2207 563 2005-08-19 10:50:04 2 2006-02-16 02:30:53
  41709. 11830 2005-08-17 12:53:15 3713 522 2005-08-25 08:08:15 1 2006-02-16 02:30:53
  41710. 11831 2005-08-17 12:54:47 4562 32 2005-08-21 11:21:47 1 2006-02-16 02:30:53
  41711. 11832 2005-08-17 12:55:31 2331 125 2005-08-19 08:31:31 1 2006-02-16 02:30:53
  41712. 11833 2005-08-17 13:00:33 3728 424 2005-08-18 13:45:33 2 2006-02-16 02:30:53
  41713. 11834 2005-08-17 13:00:40 2407 261 2005-08-22 12:50:40 1 2006-02-16 02:30:53
  41714. 11835 2005-08-17 13:03:13 2796 479 2005-08-19 10:50:13 1 2006-02-16 02:30:53
  41715. 11836 2005-08-17 13:03:36 2253 198 2005-08-19 17:15:36 1 2006-02-16 02:30:53
  41716. 11837 2005-08-17 13:04:41 1085 81 2005-08-26 14:19:41 1 2006-02-16 02:30:53
  41717. 11838 2005-08-17 13:06:00 3576 161 2005-08-20 11:44:00 1 2006-02-16 02:30:53
  41718. 11839 2005-08-17 13:08:45 2282 80 2005-08-18 15:05:45 2 2006-02-16 02:30:53
  41719. 11840 2005-08-17 13:09:01 1824 491 2005-08-19 17:42:01 1 2006-02-16 02:30:53
  41720. 11841 2005-08-17 13:12:20 1524 270 2005-08-21 11:16:20 2 2006-02-16 02:30:53
  41721. 11842 2005-08-17 13:13:37 2680 422 2005-08-20 08:32:37 1 2006-02-16 02:30:53
  41722. 11843 2005-08-17 13:14:50 3091 187 2005-08-22 11:31:50 2 2006-02-16 02:30:53
  41723. 11844 2005-08-17 13:16:04 3791 368 2005-08-18 10:16:04 1 2006-02-16 02:30:53
  41724. 11845 2005-08-17 13:16:38 14 65 2005-08-18 11:21:38 1 2006-02-16 02:30:53
  41725. 11846 2005-08-17 13:18:29 3306 283 2005-08-22 18:05:29 2 2006-02-16 02:30:53
  41726. 11847 2006-02-14 15:16:03 1784 337 \N 1 2006-02-16 02:30:53
  41727. 11848 2006-02-14 15:16:03 3680 152 \N 1 2006-02-16 02:30:53
  41728. 11849 2005-08-17 13:24:55 1191 92 2005-08-22 12:50:55 2 2006-02-16 02:30:53
  41729. 11850 2005-08-17 13:30:15 1437 80 2005-08-21 17:24:15 1 2006-02-16 02:30:53
  41730. 11851 2005-08-17 13:30:27 3225 376 2005-08-20 15:34:27 2 2006-02-16 02:30:53
  41731. 11852 2005-08-17 13:38:27 2358 596 2005-08-24 08:50:27 1 2006-02-16 02:30:53
  41732. 11853 2005-08-17 13:39:32 3888 6 2005-08-23 18:44:32 2 2006-02-16 02:30:53
  41733. 11854 2005-08-17 13:42:52 137 313 2005-08-26 14:04:52 1 2006-02-16 02:30:53
  41734. 11855 2005-08-17 13:43:07 1062 535 2005-08-26 08:07:07 1 2006-02-16 02:30:53
  41735. 11856 2005-08-17 13:44:49 305 28 2005-08-21 17:20:49 1 2006-02-16 02:30:53
  41736. 11857 2005-08-17 13:48:30 101 146 2005-08-18 15:55:30 1 2006-02-16 02:30:53
  41737. 11858 2005-08-17 13:50:31 3483 503 2005-08-19 08:45:31 2 2006-02-16 02:30:53
  41738. 11859 2005-08-17 13:51:20 423 144 2005-08-21 13:47:20 2 2006-02-16 02:30:53
  41739. 11860 2005-08-17 13:52:26 4354 257 2005-08-24 14:47:26 1 2006-02-16 02:30:53
  41740. 11861 2005-08-17 13:53:47 2674 232 2005-08-21 16:07:47 1 2006-02-16 02:30:53
  41741. 11862 2005-08-17 13:54:53 2604 529 2005-08-19 10:48:53 1 2006-02-16 02:30:53
  41742. 11863 2005-08-17 13:56:01 1003 112 2005-08-23 18:38:01 1 2006-02-16 02:30:53
  41743. 11864 2005-08-17 14:02:01 2985 96 2005-08-21 19:54:01 1 2006-02-16 02:30:53
  41744. 11865 2005-08-17 14:03:46 2577 345 2005-08-19 08:39:46 1 2006-02-16 02:30:53
  41745. 11866 2006-02-14 15:16:03 2758 200 \N 2 2006-02-16 02:30:53
  41746. 11867 2005-08-17 14:04:28 938 434 2005-08-21 10:08:28 1 2006-02-16 02:30:53
  41747. 11868 2005-08-17 14:05:34 2909 445 2005-08-19 15:47:34 1 2006-02-16 02:30:53
  41748. 11869 2005-08-17 14:10:22 3453 19 2005-08-24 18:39:22 1 2006-02-16 02:30:53
  41749. 11870 2005-08-17 14:11:28 4251 432 2005-08-24 16:43:28 1 2006-02-16 02:30:53
  41750. 11871 2005-08-17 14:11:44 3013 484 2005-08-18 17:50:44 1 2006-02-16 02:30:53
  41751. 11872 2005-08-17 14:11:45 4306 113 2005-08-21 17:02:45 2 2006-02-16 02:30:53
  41752. 11873 2005-08-17 14:14:39 4021 554 2005-08-18 17:20:39 2 2006-02-16 02:30:53
  41753. 11874 2005-08-17 14:16:40 2637 467 2005-08-18 15:51:40 2 2006-02-16 02:30:53
  41754. 11875 2005-08-17 14:16:48 1787 294 2005-08-26 14:20:48 1 2006-02-16 02:30:53
  41755. 11876 2005-08-17 14:18:21 3982 426 2005-08-20 19:48:21 1 2006-02-16 02:30:53
  41756. 11877 2005-08-17 14:21:11 4528 445 2005-08-25 19:46:11 1 2006-02-16 02:30:53
  41757. 11878 2005-08-17 14:23:52 255 549 2005-08-21 14:23:52 1 2006-02-16 02:30:53
  41758. 11879 2005-08-17 14:25:09 2500 312 2005-08-26 09:19:09 1 2006-02-16 02:30:53
  41759. 11880 2005-08-17 14:28:28 1539 597 2005-08-26 12:32:28 2 2006-02-16 02:30:53
  41760. 11881 2005-08-17 14:31:56 3124 272 2005-08-21 11:05:56 1 2006-02-16 02:30:53
  41761. 11882 2005-08-17 14:33:41 2401 234 2005-08-26 17:25:41 2 2006-02-16 02:30:53
  41762. 11883 2005-08-17 14:41:28 221 551 2005-08-19 09:54:28 1 2006-02-16 02:30:53
  41763. 11884 2005-08-17 14:43:23 797 178 2005-08-25 15:38:23 1 2006-02-16 02:30:53
  41764. 11885 2005-08-17 14:53:53 3931 481 2005-08-22 10:59:53 1 2006-02-16 02:30:53
  41765. 11886 2005-08-17 14:58:51 608 204 2005-08-19 16:07:51 2 2006-02-16 02:30:53
  41766. 11887 2005-08-17 15:03:13 3290 54 2005-08-19 09:49:13 1 2006-02-16 02:30:53
  41767. 11888 2005-08-17 15:04:05 1100 160 2005-08-25 18:52:05 2 2006-02-16 02:30:53
  41768. 11889 2005-08-17 15:08:27 293 395 2005-08-18 17:10:27 1 2006-02-16 02:30:53
  41769. 11890 2005-08-17 15:08:43 3023 487 2005-08-26 14:56:43 2 2006-02-16 02:30:53
  41770. 11891 2005-08-17 15:11:55 2619 115 2005-08-22 11:11:55 2 2006-02-16 02:30:53
  41771. 11892 2005-08-17 15:13:21 746 227 2005-08-21 09:19:21 2 2006-02-16 02:30:53
  41772. 11893 2005-08-17 15:13:29 2321 496 2005-08-25 11:09:29 1 2006-02-16 02:30:53
  41773. 11894 2005-08-17 15:15:01 1223 67 2005-08-26 13:49:01 1 2006-02-16 02:30:53
  41774. 11895 2005-08-17 15:15:07 2156 236 2005-08-18 11:00:07 2 2006-02-16 02:30:53
  41775. 11896 2005-08-17 15:19:54 259 436 2005-08-24 18:22:54 2 2006-02-16 02:30:53
  41776. 11897 2005-08-17 15:24:06 3904 238 2005-08-23 11:50:06 2 2006-02-16 02:30:53
  41777. 11898 2005-08-17 15:24:12 3163 169 2005-08-24 13:36:12 2 2006-02-16 02:30:53
  41778. 11899 2005-08-17 15:29:12 3179 84 2005-08-24 17:41:12 1 2006-02-16 02:30:53
  41779. 11900 2005-08-17 15:30:44 1931 239 2005-08-19 16:12:44 1 2006-02-16 02:30:53
  41780. 11901 2005-08-17 15:35:47 4274 70 2005-08-20 10:33:47 2 2006-02-16 02:30:53
  41781. 11902 2005-08-17 15:37:34 1387 63 2005-08-22 17:28:34 2 2006-02-16 02:30:53
  41782. 11903 2005-08-17 15:37:45 1196 542 2005-08-23 18:31:45 2 2006-02-16 02:30:53
  41783. 11904 2005-08-17 15:39:26 2846 145 2005-08-21 18:24:26 2 2006-02-16 02:30:53
  41784. 11905 2005-08-17 15:40:18 2725 349 2005-08-26 15:14:18 2 2006-02-16 02:30:53
  41785. 11906 2005-08-17 15:40:46 325 478 2005-08-20 15:20:46 2 2006-02-16 02:30:53
  41786. 11907 2005-08-17 15:40:47 3928 505 2005-08-20 19:55:47 2 2006-02-16 02:30:53
  41787. 11908 2005-08-17 15:43:09 3390 314 2005-08-24 14:32:09 2 2006-02-16 02:30:53
  41788. 11909 2006-02-14 15:16:03 871 474 \N 1 2006-02-16 02:30:53
  41789. 11910 2005-08-17 15:44:37 4254 418 2005-08-19 10:58:37 2 2006-02-16 02:30:53
  41790. 11911 2005-08-17 15:51:35 3578 472 2005-08-26 20:26:35 2 2006-02-16 02:30:53
  41791. 11912 2005-08-17 15:51:49 744 573 2005-08-24 18:48:49 1 2006-02-16 02:30:53
  41792. 11913 2005-08-17 15:53:17 741 295 2005-08-24 18:50:17 2 2006-02-16 02:30:53
  41793. 11914 2005-08-17 16:04:42 1634 230 2005-08-22 19:29:42 1 2006-02-16 02:30:53
  41794. 11915 2005-08-17 16:05:28 1557 269 2005-08-25 19:53:28 2 2006-02-16 02:30:53
  41795. 11916 2005-08-17 16:05:51 2631 86 2005-08-20 10:23:51 1 2006-02-16 02:30:53
  41796. 11917 2005-08-17 16:08:17 1608 270 2005-08-20 20:01:17 1 2006-02-16 02:30:53
  41797. 11918 2005-08-17 16:08:42 2169 533 2005-08-20 20:12:42 1 2006-02-16 02:30:53
  41798. 11919 2005-08-17 16:08:49 4497 40 2005-08-20 16:59:49 2 2006-02-16 02:30:53
  41799. 11920 2005-08-17 16:10:19 4253 402 2005-08-20 13:54:19 2 2006-02-16 02:30:53
  41800. 11921 2005-08-17 16:12:27 494 485 2005-08-25 22:07:27 1 2006-02-16 02:30:53
  41801. 11922 2005-08-17 16:20:37 3707 15 2005-08-26 16:53:37 2 2006-02-16 02:30:53
  41802. 11923 2005-08-17 16:21:47 1907 72 2005-08-18 14:26:47 2 2006-02-16 02:30:53
  41803. 11924 2005-08-17 16:22:05 1711 202 2005-08-26 12:34:05 1 2006-02-16 02:30:53
  41804. 11925 2005-08-17 16:23:04 1441 370 2005-08-21 11:38:04 1 2006-02-16 02:30:53
  41805. 11926 2005-08-17 16:25:02 2111 516 2005-08-22 11:36:02 1 2006-02-16 02:30:53
  41806. 11927 2005-08-17 16:25:03 3134 178 2005-08-23 16:41:03 1 2006-02-16 02:30:53
  41807. 11928 2005-08-17 16:28:24 79 261 2005-08-23 17:50:24 2 2006-02-16 02:30:53
  41808. 11929 2005-08-17 16:28:51 3765 327 2005-08-25 19:36:51 1 2006-02-16 02:30:53
  41809. 11930 2005-08-17 16:28:53 1299 5 2005-08-25 10:31:53 1 2006-02-16 02:30:53
  41810. 11931 2005-08-17 16:35:14 2022 242 2005-08-19 19:16:14 1 2006-02-16 02:30:53
  41811. 11932 2005-08-17 16:36:12 151 364 2005-08-18 19:34:12 2 2006-02-16 02:30:53
  41812. 11933 2005-08-17 16:38:20 2574 438 2005-08-22 14:31:20 1 2006-02-16 02:30:53
  41813. 11934 2005-08-17 16:40:00 1230 596 2005-08-20 20:13:00 2 2006-02-16 02:30:53
  41814. 11935 2005-08-17 16:42:13 1640 66 2005-08-22 20:38:13 2 2006-02-16 02:30:53
  41815. 11936 2005-08-17 16:45:34 1127 380 2005-08-21 13:33:34 2 2006-02-16 02:30:53
  41816. 11937 2005-08-17 16:48:36 2926 515 2005-08-24 19:01:36 1 2006-02-16 02:30:53
  41817. 11938 2005-08-17 16:54:54 3927 426 2005-08-24 19:18:54 1 2006-02-16 02:30:53
  41818. 11939 2005-08-17 16:55:57 3305 516 2005-08-24 21:36:57 1 2006-02-16 02:30:53
  41819. 11940 2005-08-17 16:56:28 1188 163 2005-08-18 15:09:28 1 2006-02-16 02:30:53
  41820. 11941 2005-08-17 16:56:57 159 566 2005-08-24 16:29:57 1 2006-02-16 02:30:53
  41821. 11942 2006-02-14 15:16:03 4094 576 \N 2 2006-02-16 02:30:53
  41822. 11943 2005-08-17 17:00:42 4466 69 2005-08-26 22:07:42 1 2006-02-16 02:30:53
  41823. 11944 2005-08-17 17:02:42 27 389 2005-08-21 16:40:42 2 2006-02-16 02:30:53
  41824. 11945 2005-08-17 17:05:33 1108 380 2005-08-20 18:37:33 2 2006-02-16 02:30:53
  41825. 11946 2005-08-17 17:05:53 2953 569 2005-08-19 13:56:53 1 2006-02-16 02:30:53
  41826. 11947 2005-08-17 17:08:13 2928 220 2005-08-23 21:53:13 1 2006-02-16 02:30:53
  41827. 11948 2005-08-17 17:11:05 3329 40 2005-08-25 21:16:05 2 2006-02-16 02:30:53
  41828. 11949 2005-08-17 17:12:26 854 198 2005-08-23 20:48:26 1 2006-02-16 02:30:53
  41829. 11950 2005-08-17 17:13:16 4412 190 2005-08-26 21:25:16 1 2006-02-16 02:30:53
  41830. 11951 2005-08-17 17:14:02 1394 155 2005-08-26 12:04:02 2 2006-02-16 02:30:53
  41831. 11952 2005-08-17 17:14:57 2411 288 2005-08-19 19:15:57 1 2006-02-16 02:30:53
  41832. 11953 2005-08-17 17:16:42 2993 399 2005-08-23 18:28:42 1 2006-02-16 02:30:53
  41833. 11954 2005-08-17 17:18:36 220 145 2005-08-18 19:49:36 1 2006-02-16 02:30:53
  41834. 11955 2005-08-17 17:21:35 1221 319 2005-08-24 22:06:35 1 2006-02-16 02:30:53
  41835. 11956 2005-08-17 17:22:05 2533 457 2005-08-25 22:19:05 2 2006-02-16 02:30:53
  41836. 11957 2005-08-17 17:22:29 1924 198 2005-08-23 21:47:29 2 2006-02-16 02:30:53
  41837. 11958 2005-08-17 17:23:20 2061 217 2005-08-24 14:47:20 2 2006-02-16 02:30:53
  41838. 11959 2005-08-17 17:23:35 2694 101 2005-08-20 20:57:35 1 2006-02-16 02:30:53
  41839. 11960 2005-08-17 17:24:30 3924 84 2005-08-18 14:28:30 1 2006-02-16 02:30:53
  41840. 11961 2005-08-17 17:28:01 2015 276 2005-08-21 20:43:01 1 2006-02-16 02:30:53
  41841. 11962 2005-08-17 17:34:38 4384 29 2005-08-21 12:59:38 2 2006-02-16 02:30:53
  41842. 11963 2005-08-17 17:35:47 232 211 2005-08-23 16:19:47 2 2006-02-16 02:30:53
  41843. 11964 2005-08-17 17:37:03 2225 309 2005-08-25 11:55:03 2 2006-02-16 02:30:53
  41844. 11965 2005-08-17 17:39:45 194 490 2005-08-19 12:05:45 1 2006-02-16 02:30:53
  41845. 11966 2005-08-17 17:40:04 3702 283 2005-08-20 15:45:04 1 2006-02-16 02:30:53
  41846. 11967 2005-08-17 17:45:00 1151 521 2005-08-22 13:03:00 1 2006-02-16 02:30:53
  41847. 11968 2005-08-17 17:47:34 698 239 2005-08-18 19:40:34 1 2006-02-16 02:30:53
  41848. 11969 2005-08-17 17:49:37 668 550 2005-08-19 19:45:37 2 2006-02-16 02:30:53
  41849. 11970 2005-08-17 17:53:09 1779 21 2005-08-24 14:41:09 1 2006-02-16 02:30:53
  41850. 11971 2005-08-17 17:53:42 2756 131 2005-08-18 12:11:42 2 2006-02-16 02:30:53
  41851. 11972 2005-08-17 17:55:46 1282 308 2005-08-22 15:31:46 2 2006-02-16 02:30:53
  41852. 11973 2005-08-17 17:55:58 1472 131 2005-08-21 19:55:58 2 2006-02-16 02:30:53
  41853. 11974 2005-08-17 17:56:48 1609 485 2005-08-21 19:14:48 2 2006-02-16 02:30:53
  41854. 11975 2005-08-17 17:58:39 3843 458 2005-08-20 19:11:39 2 2006-02-16 02:30:53
  41855. 11976 2005-08-17 17:59:19 498 373 2005-08-23 14:51:19 2 2006-02-16 02:30:53
  41856. 11977 2005-08-17 18:01:15 1528 536 2005-08-23 23:03:15 1 2006-02-16 02:30:53
  41857. 11978 2005-08-17 18:02:10 4380 499 2005-08-18 20:40:10 2 2006-02-16 02:30:53
  41858. 11979 2005-08-17 18:07:13 568 255 2005-08-19 23:12:13 1 2006-02-16 02:30:53
  41859. 11980 2005-08-17 18:10:18 4165 589 2005-08-20 13:28:18 1 2006-02-16 02:30:53
  41860. 11981 2005-08-17 18:10:40 3228 294 2005-08-20 16:56:40 1 2006-02-16 02:30:53
  41861. 11982 2005-08-17 18:13:07 118 186 2005-08-18 19:06:07 1 2006-02-16 02:30:53
  41862. 11983 2005-08-17 18:13:55 2580 304 2005-08-23 18:27:55 2 2006-02-16 02:30:53
  41863. 11984 2005-08-17 18:16:30 3577 96 2005-08-24 21:09:30 2 2006-02-16 02:30:53
  41864. 11985 2005-08-17 18:19:44 2208 198 2005-08-18 19:14:44 2 2006-02-16 02:30:53
  41865. 11986 2005-08-17 18:21:58 1610 352 2005-08-18 13:05:58 1 2006-02-16 02:30:53
  41866. 11987 2005-08-17 18:21:59 1478 494 2005-08-25 19:20:59 1 2006-02-16 02:30:53
  41867. 11988 2005-08-17 18:23:50 3429 62 2005-08-18 22:30:50 2 2006-02-16 02:30:53
  41868. 11989 2005-08-17 18:23:58 3686 439 2005-08-20 20:31:58 2 2006-02-16 02:30:53
  41869. 11990 2005-08-17 18:26:22 3012 17 2005-08-19 14:34:22 2 2006-02-16 02:30:53
  41870. 11991 2005-08-17 18:27:08 940 361 2005-08-25 14:07:08 1 2006-02-16 02:30:53
  41871. 11992 2005-08-17 18:27:22 4132 136 2005-08-26 22:38:22 2 2006-02-16 02:30:53
  41872. 11993 2005-08-17 18:27:49 295 303 2005-08-21 00:04:49 1 2006-02-16 02:30:53
  41873. 11994 2005-08-17 18:29:35 3428 319 2005-08-25 23:39:35 1 2006-02-16 02:30:53
  41874. 11995 2006-02-14 15:16:03 3953 69 \N 1 2006-02-16 02:30:53
  41875. 11996 2005-08-17 18:34:37 2720 510 2005-08-20 22:25:37 2 2006-02-16 02:30:53
  41876. 11997 2005-08-17 18:34:38 2193 411 2005-08-26 00:12:38 2 2006-02-16 02:30:53
  41877. 11998 2005-08-17 18:46:21 4258 299 2005-08-18 20:29:21 1 2006-02-16 02:30:53
  41878. 11999 2005-08-17 18:47:07 4333 125 2005-08-20 23:26:07 2 2006-02-16 02:30:53
  41879. 12000 2005-08-17 18:49:44 2256 149 2005-08-24 16:34:44 2 2006-02-16 02:30:53
  41880. 12001 2006-02-14 15:16:03 4158 52 \N 2 2006-02-16 02:30:53
  41881. 12002 2005-08-17 18:56:02 1386 75 2005-08-20 17:36:02 1 2006-02-16 02:30:53
  41882. 12003 2005-08-17 18:56:05 3868 70 2005-08-18 23:52:05 1 2006-02-16 02:30:53
  41883. 12004 2005-08-17 18:56:53 2690 499 2005-08-26 14:56:53 1 2006-02-16 02:30:53
  41884. 12005 2005-08-17 18:56:55 2062 403 2005-08-25 20:23:55 2 2006-02-16 02:30:53
  41885. 12006 2005-08-17 19:09:12 4072 272 2005-08-24 13:50:12 1 2006-02-16 02:30:53
  41886. 12007 2005-08-17 19:10:34 3007 268 2005-08-24 14:09:34 1 2006-02-16 02:30:53
  41887. 12008 2005-08-17 19:16:18 865 562 2005-08-18 14:24:18 2 2006-02-16 02:30:53
  41888. 12009 2006-02-14 15:16:03 2134 296 \N 2 2006-02-16 02:30:53
  41889. 12010 2005-08-17 19:17:54 1076 554 2005-08-26 00:41:54 1 2006-02-16 02:30:53
  41890. 12011 2005-08-17 19:19:44 495 313 2005-08-23 00:56:44 2 2006-02-16 02:30:53
  41891. 12012 2005-08-17 19:20:48 2698 69 2005-08-22 16:50:48 1 2006-02-16 02:30:53
  41892. 12013 2005-08-17 19:23:02 3530 586 2005-08-23 00:31:02 2 2006-02-16 02:30:53
  41893. 12014 2005-08-17 19:29:44 1778 554 2005-08-23 20:40:44 1 2006-02-16 02:30:53
  41894. 12015 2005-08-17 19:32:44 593 11 2005-08-23 13:36:44 2 2006-02-16 02:30:53
  41895. 12016 2005-08-17 19:33:24 2109 327 2005-08-21 19:59:24 2 2006-02-16 02:30:53
  41896. 12017 2005-08-17 19:33:49 344 573 2005-08-22 01:16:49 2 2006-02-16 02:30:53
  41897. 12018 2005-08-17 19:44:46 1921 319 2005-08-26 20:24:46 1 2006-02-16 02:30:53
  41898. 12019 2005-08-17 19:48:55 2566 90 2005-08-21 18:20:55 1 2006-02-16 02:30:53
  41899. 12020 2005-08-17 19:50:33 3258 72 2005-08-25 17:54:33 1 2006-02-16 02:30:53
  41900. 12021 2005-08-17 19:52:43 3977 27 2005-08-23 21:49:43 1 2006-02-16 02:30:53
  41901. 12022 2005-08-17 19:52:45 2067 461 2005-08-18 18:26:45 2 2006-02-16 02:30:53
  41902. 12023 2005-08-17 19:54:54 247 22 2005-08-26 23:03:54 1 2006-02-16 02:30:53
  41903. 12024 2005-08-17 19:57:34 2398 484 2005-08-21 23:00:34 2 2006-02-16 02:30:53
  41904. 12025 2005-08-17 19:59:06 4019 209 2005-08-23 14:39:06 2 2006-02-16 02:30:53
  41905. 12026 2005-08-17 20:00:10 1568 468 2005-08-26 01:54:10 1 2006-02-16 02:30:53
  41906. 12027 2005-08-17 20:01:12 45 285 2005-08-26 21:08:12 2 2006-02-16 02:30:53
  41907. 12028 2005-08-17 20:03:47 607 316 2005-08-23 17:09:47 2 2006-02-16 02:30:53
  41908. 12029 2005-08-17 20:07:01 3516 148 2005-08-19 19:36:01 2 2006-02-16 02:30:53
  41909. 12030 2005-08-17 20:10:48 449 434 2005-08-19 00:32:48 1 2006-02-16 02:30:53
  41910. 12031 2005-08-17 20:11:35 2793 10 2005-08-24 23:48:35 2 2006-02-16 02:30:53
  41911. 12032 2005-08-17 20:14:26 1106 141 2005-08-26 16:01:26 1 2006-02-16 02:30:53
  41912. 12033 2005-08-17 20:14:34 2731 321 2005-08-26 00:22:34 2 2006-02-16 02:30:53
  41913. 12034 2005-08-17 20:15:31 834 321 2005-08-24 15:46:31 2 2006-02-16 02:30:53
  41914. 12035 2005-08-17 20:18:06 2335 469 2005-08-21 16:41:06 2 2006-02-16 02:30:53
  41915. 12036 2005-08-17 20:19:06 3620 85 2005-08-18 19:57:06 2 2006-02-16 02:30:53
  41916. 12037 2005-08-17 20:21:35 766 356 2005-08-22 17:16:35 2 2006-02-16 02:30:53
  41917. 12038 2005-08-17 20:28:26 3794 148 2005-08-20 23:09:26 2 2006-02-16 02:30:53
  41918. 12039 2005-08-17 20:29:08 4404 563 2005-08-23 21:20:08 2 2006-02-16 02:30:53
  41919. 12040 2005-08-17 20:29:56 1288 558 2005-08-26 22:17:56 1 2006-02-16 02:30:53
  41920. 12041 2005-08-17 20:34:33 2389 295 2005-08-19 00:47:33 1 2006-02-16 02:30:53
  41921. 12042 2005-08-17 20:36:37 1772 570 2005-08-21 15:03:37 1 2006-02-16 02:30:53
  41922. 12043 2005-08-17 20:38:21 3706 592 2005-08-22 16:52:21 2 2006-02-16 02:30:53
  41923. 12044 2005-08-17 20:39:37 3377 388 2005-08-19 18:34:37 1 2006-02-16 02:30:53
  41924. 12045 2005-08-17 20:40:46 469 556 2005-08-20 18:18:46 2 2006-02-16 02:30:53
  41925. 12046 2005-08-17 20:47:46 3895 435 2005-08-19 16:09:46 2 2006-02-16 02:30:53
  41926. 12047 2005-08-17 20:48:32 3886 251 2005-08-26 00:07:32 1 2006-02-16 02:30:53
  41927. 12048 2005-08-17 20:49:24 3773 466 2005-08-27 02:01:24 2 2006-02-16 02:30:53
  41928. 12049 2005-08-17 20:53:27 2433 178 2005-08-26 19:45:27 2 2006-02-16 02:30:53
  41929. 12050 2005-08-17 20:55:25 2348 405 2005-08-22 20:31:25 2 2006-02-16 02:30:53
  41930. 12051 2005-08-17 20:56:15 4001 579 2005-08-25 19:08:15 1 2006-02-16 02:30:53
  41931. 12052 2005-08-17 20:57:02 99 536 2005-08-25 19:04:02 1 2006-02-16 02:30:53
  41932. 12053 2005-08-17 20:57:27 4448 280 2005-08-20 19:51:27 1 2006-02-16 02:30:53
  41933. 12054 2005-08-17 20:59:56 3780 53 2005-08-23 19:57:56 1 2006-02-16 02:30:53
  41934. 12055 2005-08-17 21:02:19 1481 35 2005-08-18 15:24:19 1 2006-02-16 02:30:53
  41935. 12056 2005-08-17 21:03:48 1091 460 2005-08-21 22:42:48 2 2006-02-16 02:30:53
  41936. 12057 2005-08-17 21:04:35 1878 263 2005-08-25 00:17:35 1 2006-02-16 02:30:53
  41937. 12058 2005-08-17 21:07:41 2438 540 2005-08-26 16:07:41 1 2006-02-16 02:30:53
  41938. 12059 2005-08-17 21:09:23 4111 393 2005-08-25 23:09:23 1 2006-02-16 02:30:53
  41939. 12060 2005-08-17 21:11:57 2373 127 2005-08-21 01:42:57 1 2006-02-16 02:30:53
  41940. 12061 2005-08-17 21:13:35 144 532 2005-08-22 19:18:35 1 2006-02-16 02:30:53
  41941. 12062 2005-08-17 21:24:47 1791 330 2005-08-20 20:35:47 2 2006-02-16 02:30:53
  41942. 12063 2005-08-17 21:24:48 1141 550 2005-08-23 22:10:48 2 2006-02-16 02:30:53
  41943. 12064 2006-02-14 15:16:03 298 284 \N 1 2006-02-16 02:30:53
  41944. 12065 2005-08-17 21:31:46 3644 77 2005-08-26 02:26:46 2 2006-02-16 02:30:53
  41945. 12066 2006-02-14 15:16:03 2474 267 \N 2 2006-02-16 02:30:53
  41946. 12067 2005-08-17 21:36:47 2013 514 2005-08-22 01:10:47 2 2006-02-16 02:30:53
  41947. 12068 2005-08-17 21:37:08 4327 388 2005-08-26 00:10:08 1 2006-02-16 02:30:53
  41948. 12069 2005-08-17 21:39:40 631 389 2005-08-22 01:12:40 2 2006-02-16 02:30:53
  41949. 12070 2005-08-17 21:46:47 1357 158 2005-08-22 22:59:47 1 2006-02-16 02:30:53
  41950. 12071 2005-08-17 21:49:14 1874 507 2005-08-22 18:20:14 1 2006-02-16 02:30:53
  41951. 12072 2005-08-17 21:50:25 209 61 2005-08-25 22:36:25 2 2006-02-16 02:30:53
  41952. 12073 2005-08-17 21:50:39 2939 173 2005-08-21 02:59:39 1 2006-02-16 02:30:53
  41953. 12074 2005-08-17 21:50:57 711 417 2005-08-20 00:58:57 2 2006-02-16 02:30:53
  41954. 12075 2005-08-17 21:54:55 3147 125 2005-08-23 23:04:55 1 2006-02-16 02:30:53
  41955. 12076 2005-08-17 21:58:19 4278 298 2005-08-20 22:10:19 1 2006-02-16 02:30:53
  41956. 12077 2005-08-17 21:59:14 3589 550 2005-08-22 03:23:14 1 2006-02-16 02:30:53
  41957. 12078 2005-08-17 22:00:22 684 137 2005-08-24 02:54:22 2 2006-02-16 02:30:53
  41958. 12079 2005-08-17 22:04:17 646 230 2005-08-24 20:22:17 2 2006-02-16 02:30:53
  41959. 12080 2005-08-17 22:08:04 1491 394 2005-08-19 22:55:04 2 2006-02-16 02:30:53
  41960. 12081 2005-08-17 22:10:46 620 597 2005-08-22 22:37:46 1 2006-02-16 02:30:53
  41961. 12082 2005-08-17 22:13:15 3435 521 2005-08-24 18:30:15 1 2006-02-16 02:30:53
  41962. 12083 2005-08-17 22:13:37 1985 474 2005-08-19 19:01:37 2 2006-02-16 02:30:53
  41963. 12084 2005-08-17 22:16:49 2706 60 2005-08-24 17:42:49 2 2006-02-16 02:30:53
  41964. 12085 2005-08-17 22:17:09 600 31 2005-08-21 01:45:09 1 2006-02-16 02:30:53
  41965. 12086 2005-08-17 22:20:01 3963 140 2005-08-26 02:14:01 1 2006-02-16 02:30:53
  41966. 12087 2005-08-17 22:20:12 324 144 2005-08-20 02:11:12 2 2006-02-16 02:30:53
  41967. 12088 2005-08-17 22:20:16 1754 360 2005-08-25 23:30:16 2 2006-02-16 02:30:53
  41968. 12089 2005-08-17 22:20:29 651 538 2005-08-24 02:12:29 1 2006-02-16 02:30:53
  41969. 12090 2005-08-17 22:21:43 3392 391 2005-08-20 23:53:43 2 2006-02-16 02:30:53
  41970. 12091 2005-08-17 22:22:50 2161 555 2005-08-27 03:55:50 1 2006-02-16 02:30:53
  41971. 12092 2005-08-17 22:28:15 3964 38 2005-08-18 16:46:15 2 2006-02-16 02:30:53
  41972. 12093 2005-08-17 22:28:40 216 141 2005-08-22 02:05:40 1 2006-02-16 02:30:53
  41973. 12094 2005-08-17 22:31:04 1050 130 2005-08-23 22:45:04 1 2006-02-16 02:30:53
  41974. 12095 2005-08-17 22:32:37 1089 46 2005-08-20 04:00:37 1 2006-02-16 02:30:53
  41975. 12096 2005-08-17 22:32:50 44 463 2005-08-25 03:33:50 1 2006-02-16 02:30:53
  41976. 12097 2005-08-17 22:35:24 4135 325 2005-08-18 20:31:24 2 2006-02-16 02:30:53
  41977. 12098 2005-08-17 22:38:31 534 545 2005-08-20 01:56:31 1 2006-02-16 02:30:53
  41978. 12099 2005-08-17 22:38:54 1743 195 2005-08-18 21:29:54 2 2006-02-16 02:30:53
  41979. 12100 2005-08-17 22:41:10 4365 391 2005-08-24 21:31:10 2 2006-02-16 02:30:53
  41980. 12102 2005-08-17 22:45:26 4268 392 2005-08-24 01:47:26 2 2006-02-16 02:30:53
  41981. 12103 2005-08-17 22:49:09 4363 153 2005-08-24 21:53:09 1 2006-02-16 02:30:53
  41982. 12104 2005-08-17 22:53:00 4551 16 2005-08-23 19:49:00 1 2006-02-16 02:30:53
  41983. 12105 2005-08-17 22:54:45 2848 390 2005-08-21 00:33:45 2 2006-02-16 02:30:53
  41984. 12106 2005-08-17 22:55:32 3234 465 2005-08-19 23:55:32 2 2006-02-16 02:30:53
  41985. 12107 2005-08-17 22:56:24 1060 141 2005-08-24 19:36:24 1 2006-02-16 02:30:53
  41986. 12108 2005-08-17 22:56:39 1675 207 2005-08-26 19:37:39 1 2006-02-16 02:30:53
  41987. 12109 2005-08-17 22:58:35 1423 509 2005-08-25 19:44:35 2 2006-02-16 02:30:53
  41988. 12110 2005-08-17 22:59:46 2984 511 2005-08-23 17:51:46 1 2006-02-16 02:30:53
  41989. 12111 2005-08-17 22:59:55 2905 317 2005-08-22 19:33:55 2 2006-02-16 02:30:53
  41990. 12112 2005-08-17 23:00:31 4290 576 2005-08-25 02:05:31 1 2006-02-16 02:30:53
  41991. 12113 2005-08-17 23:01:00 2707 393 2005-08-25 03:57:00 2 2006-02-16 02:30:53
  41992. 12114 2005-08-17 23:02:00 1405 65 2005-08-26 18:02:00 1 2006-02-16 02:30:53
  41993. 12115 2005-08-17 23:04:15 1228 457 2005-08-20 22:25:15 2 2006-02-16 02:30:53
  41994. 12116 2006-02-14 15:16:03 3082 560 \N 2 2006-02-16 02:30:53
  41995. 12117 2005-08-17 23:11:12 4140 303 2005-08-22 23:56:12 1 2006-02-16 02:30:53
  41996. 12118 2005-08-17 23:14:25 158 89 2005-08-26 22:26:25 1 2006-02-16 02:30:53
  41997. 12119 2005-08-17 23:16:44 4298 567 2005-08-20 02:13:44 2 2006-02-16 02:30:53
  41998. 12120 2005-08-17 23:16:46 2912 323 2005-08-19 00:11:46 2 2006-02-16 02:30:53
  41999. 12121 2005-08-17 23:20:40 3423 69 2005-08-22 21:30:40 2 2006-02-16 02:30:53
  42000. 12122 2005-08-17 23:20:45 4030 375 2005-08-25 04:23:45 2 2006-02-16 02:30:53
  42001. 12123 2005-08-17 23:22:18 361 497 2005-08-19 23:36:18 2 2006-02-16 02:30:53
  42002. 12124 2005-08-17 23:22:46 2036 22 2005-08-21 01:40:46 1 2006-02-16 02:30:53
  42003. 12125 2005-08-17 23:24:25 136 573 2005-08-25 03:08:25 2 2006-02-16 02:30:53
  42004. 12126 2005-08-17 23:25:21 2304 302 2005-08-23 21:51:21 1 2006-02-16 02:30:53
  42005. 12127 2006-02-14 15:16:03 4218 582 \N 2 2006-02-16 02:30:53
  42006. 12128 2005-08-17 23:31:09 2252 415 2005-08-24 05:07:09 2 2006-02-16 02:30:53
  42007. 12129 2005-08-17 23:31:25 891 146 2005-08-26 19:10:25 2 2006-02-16 02:30:53
  42008. 12130 2006-02-14 15:16:03 1358 516 \N 2 2006-02-16 02:30:53
  42009. 12131 2005-08-17 23:34:16 3380 21 2005-08-26 01:18:16 1 2006-02-16 02:30:53
  42010. 12132 2005-08-17 23:37:03 2600 403 2005-08-22 04:53:03 2 2006-02-16 02:30:53
  42011. 12133 2005-08-17 23:47:16 1958 132 2005-08-19 03:46:16 2 2006-02-16 02:30:53
  42012. 12134 2005-08-17 23:49:43 2682 288 2005-08-21 21:00:43 1 2006-02-16 02:30:53
  42013. 12135 2005-08-17 23:50:24 1019 381 2005-08-23 18:01:24 2 2006-02-16 02:30:53
  42014. 12136 2005-08-17 23:51:30 3944 527 2005-08-23 01:35:30 1 2006-02-16 02:30:53
  42015. 12137 2005-08-17 23:52:26 3632 109 2005-08-27 00:19:26 1 2006-02-16 02:30:53
  42016. 12138 2005-08-17 23:55:54 388 317 2005-08-26 23:32:54 1 2006-02-16 02:30:53
  42017. 12139 2005-08-17 23:57:13 1537 342 2005-08-24 19:13:13 1 2006-02-16 02:30:53
  42018. 12140 2005-08-17 23:57:55 322 408 2005-08-21 20:09:55 2 2006-02-16 02:30:53
  42019. 12141 2006-02-14 15:16:03 731 101 \N 1 2006-02-16 02:30:53
  42020. 12142 2005-08-18 00:04:12 3748 373 2005-08-24 01:24:12 2 2006-02-16 02:30:53
  42021. 12143 2005-08-18 00:06:26 2876 117 2005-08-24 02:45:26 2 2006-02-16 02:30:53
  42022. 12144 2006-02-14 15:16:03 512 587 \N 1 2006-02-16 02:30:53
  42023. 12145 2005-08-18 00:10:04 3482 5 2005-08-26 00:51:04 1 2006-02-16 02:30:53
  42024. 12146 2005-08-18 00:10:04 3833 434 2005-08-25 19:18:04 2 2006-02-16 02:30:53
  42025. 12147 2005-08-18 00:10:20 705 41 2005-08-23 20:36:20 2 2006-02-16 02:30:53
  42026. 12148 2005-08-18 00:13:15 2409 254 2005-08-20 01:27:15 2 2006-02-16 02:30:53
  42027. 12149 2005-08-18 00:13:51 3696 277 2005-08-26 19:47:51 1 2006-02-16 02:30:53
  42028. 12150 2005-08-18 00:13:55 3781 555 2005-08-20 23:35:55 2 2006-02-16 02:30:53
  42029. 12151 2005-08-18 00:14:03 1976 4 2005-08-18 23:52:03 2 2006-02-16 02:30:53
  42030. 12152 2005-08-18 00:21:35 2797 367 2005-08-22 02:51:35 1 2006-02-16 02:30:53
  42031. 12153 2005-08-18 00:22:30 3929 387 2005-08-23 04:13:30 2 2006-02-16 02:30:53
  42032. 12154 2005-08-18 00:23:56 2491 163 2005-08-21 00:31:56 2 2006-02-16 02:30:53
  42033. 12155 2005-08-18 00:24:30 2065 315 2005-08-18 19:12:30 2 2006-02-16 02:30:53
  42034. 12156 2005-08-18 00:27:33 3270 212 2005-08-26 01:43:33 1 2006-02-16 02:30:53
  42035. 12157 2005-08-18 00:33:45 2311 569 2005-08-22 19:33:45 1 2006-02-16 02:30:53
  42036. 12158 2005-08-18 00:34:20 4121 289 2005-08-22 20:10:20 2 2006-02-16 02:30:53
  42037. 12159 2005-08-18 00:36:09 2243 106 2005-08-27 06:31:09 1 2006-02-16 02:30:53
  42038. 12160 2005-08-18 00:37:59 1328 481 2005-08-19 20:51:59 1 2006-02-16 02:30:53
  42039. 12161 2005-08-18 00:41:46 2420 444 2005-08-26 22:59:46 2 2006-02-16 02:30:53
  42040. 12162 2005-08-18 00:44:30 2697 284 2005-08-25 03:34:30 1 2006-02-16 02:30:53
  42041. 12163 2005-08-18 00:46:01 1349 455 2005-08-22 06:16:01 1 2006-02-16 02:30:53
  42042. 12164 2005-08-18 00:46:38 3849 587 2005-08-19 04:38:38 2 2006-02-16 02:30:53
  42043. 12165 2005-08-18 00:53:37 4215 24 2005-08-27 00:09:37 2 2006-02-16 02:30:53
  42044. 12166 2005-08-18 00:57:06 3627 184 2005-08-26 03:13:06 2 2006-02-16 02:30:53
  42045. 12167 2005-08-18 01:00:02 3085 338 2005-08-21 00:04:02 2 2006-02-16 02:30:53
  42046. 12168 2005-08-18 01:03:52 2859 535 2005-08-18 20:19:52 1 2006-02-16 02:30:53
  42047. 12169 2005-08-18 01:05:54 2281 323 2005-08-24 02:16:54 2 2006-02-16 02:30:53
  42048. 12170 2005-08-18 01:06:10 1125 289 2005-08-25 02:40:10 2 2006-02-16 02:30:53
  42049. 12171 2005-08-18 01:06:13 454 457 2005-08-22 19:39:13 2 2006-02-16 02:30:53
  42050. 12172 2005-08-18 01:07:00 1162 226 2005-08-22 21:01:00 2 2006-02-16 02:30:53
  42051. 12173 2005-08-18 01:08:34 2830 41 2005-08-24 20:52:34 1 2006-02-16 02:30:53
  42052. 12174 2005-08-18 01:08:53 1458 101 2005-08-20 03:28:53 1 2006-02-16 02:30:53
  42053. 12175 2005-08-18 01:10:17 4558 328 2005-08-19 05:25:17 2 2006-02-16 02:30:53
  42054. 12176 2005-08-18 01:10:33 3873 255 2005-08-24 02:45:33 2 2006-02-16 02:30:53
  42055. 12177 2005-08-18 01:15:47 522 470 2005-08-24 23:23:47 2 2006-02-16 02:30:53
  42056. 12178 2005-08-18 01:17:32 1152 276 2005-08-25 19:32:32 1 2006-02-16 02:30:53
  42057. 12179 2005-08-18 01:21:21 1499 222 2005-08-19 00:59:21 1 2006-02-16 02:30:53
  42058. 12180 2005-08-18 01:28:15 2276 20 2005-08-20 20:52:15 2 2006-02-16 02:30:53
  42059. 12181 2005-08-18 01:28:18 532 81 2005-08-23 21:17:18 2 2006-02-16 02:30:53
  42060. 12182 2005-08-18 01:30:19 296 555 2005-08-21 05:52:19 1 2006-02-16 02:30:53
  42061. 12183 2005-08-18 01:34:13 3153 344 2005-08-24 04:38:13 1 2006-02-16 02:30:53
  42062. 12184 2005-08-18 01:36:00 1723 51 2005-08-21 01:59:00 1 2006-02-16 02:30:53
  42063. 12185 2005-08-18 01:40:14 1558 588 2005-08-25 05:04:14 1 2006-02-16 02:30:53
  42064. 12186 2005-08-18 01:43:36 1342 312 2005-08-23 07:13:36 1 2006-02-16 02:30:53
  42065. 12187 2005-08-18 01:45:50 3360 38 2005-08-22 20:12:50 1 2006-02-16 02:30:53
  42066. 12188 2005-08-18 01:51:43 2989 456 2005-08-18 22:23:43 1 2006-02-16 02:30:53
  42067. 12189 2005-08-18 01:51:44 1764 363 2005-08-26 01:01:44 1 2006-02-16 02:30:53
  42068. 12190 2005-08-18 01:54:44 2464 28 2005-08-27 04:32:44 1 2006-02-16 02:30:53
  42069. 12191 2005-08-18 01:57:11 2667 316 2005-08-22 22:53:11 2 2006-02-16 02:30:53
  42070. 12192 2005-08-18 02:01:40 3450 270 2005-08-21 05:45:40 1 2006-02-16 02:30:53
  42071. 12193 2005-08-18 02:03:59 1086 290 2005-08-25 05:32:59 2 2006-02-16 02:30:53
  42072. 12194 2005-08-18 02:04:47 292 558 2005-08-25 20:45:47 2 2006-02-16 02:30:53
  42073. 12195 2005-08-18 02:07:49 943 347 2005-08-19 23:54:49 2 2006-02-16 02:30:53
  42074. 12196 2005-08-18 02:08:48 4302 111 2005-08-26 00:39:48 1 2006-02-16 02:30:53
  42075. 12197 2005-08-18 02:08:58 3687 564 2005-08-26 21:54:58 2 2006-02-16 02:30:53
  42076. 12198 2005-08-18 02:09:20 1628 86 2005-08-21 21:28:20 2 2006-02-16 02:30:53
  42077. 12199 2005-08-18 02:09:23 424 96 2005-08-22 20:33:23 1 2006-02-16 02:30:53
  42078. 12200 2005-08-18 02:12:33 840 52 2005-08-18 20:47:33 2 2006-02-16 02:30:53
  42079. 12201 2005-08-18 02:14:06 3676 540 2005-08-23 04:44:06 1 2006-02-16 02:30:53
  42080. 12202 2005-08-18 02:14:08 672 563 2005-08-24 04:35:08 1 2006-02-16 02:30:53
  42081. 12203 2005-08-18 02:18:52 4228 591 2005-08-22 21:01:52 1 2006-02-16 02:30:53
  42082. 12204 2005-08-18 02:20:35 304 575 2005-08-26 01:27:35 2 2006-02-16 02:30:53
  42083. 12205 2005-08-18 02:21:08 774 437 2005-08-27 00:08:08 2 2006-02-16 02:30:53
  42084. 12206 2005-08-18 02:22:20 3275 254 2005-08-23 05:36:20 1 2006-02-16 02:30:53
  42085. 12207 2005-08-18 02:24:07 3745 265 2005-08-22 07:53:07 1 2006-02-16 02:30:53
  42086. 12208 2005-08-18 02:25:25 2039 551 2005-08-20 04:53:25 2 2006-02-16 02:30:53
  42087. 12209 2005-08-18 02:27:20 279 243 2005-08-21 00:41:20 2 2006-02-16 02:30:53
  42088. 12210 2005-08-18 02:27:29 3035 217 2005-08-20 23:32:29 2 2006-02-16 02:30:53
  42089. 12211 2005-08-18 02:31:18 1484 19 2005-08-26 02:36:18 1 2006-02-16 02:30:53
  42090. 12212 2005-08-18 02:33:29 3898 449 2005-08-25 07:10:29 2 2006-02-16 02:30:53
  42091. 12213 2005-08-18 02:33:55 4058 157 2005-08-24 03:14:55 1 2006-02-16 02:30:53
  42092. 12214 2005-08-18 02:34:22 2094 231 2005-08-21 07:48:22 2 2006-02-16 02:30:53
  42093. 12215 2005-08-18 02:35:39 4095 47 2005-08-24 00:36:39 1 2006-02-16 02:30:53
  42094. 12216 2005-08-18 02:37:07 4139 131 2005-08-19 02:09:07 2 2006-02-16 02:30:53
  42095. 12217 2005-08-18 02:44:44 2556 105 2005-08-24 03:27:44 1 2006-02-16 02:30:53
  42096. 12218 2005-08-18 02:48:14 1933 70 2005-08-21 01:52:14 2 2006-02-16 02:30:53
  42097. 12219 2005-08-18 02:49:54 2249 271 2005-08-23 07:52:54 1 2006-02-16 02:30:53
  42098. 12220 2005-08-18 02:50:02 982 530 2005-08-22 00:20:02 1 2006-02-16 02:30:53
  42099. 12221 2005-08-18 02:50:51 2488 98 2005-08-27 06:22:51 2 2006-02-16 02:30:53
  42100. 12222 2006-02-14 15:16:03 3949 22 \N 1 2006-02-16 02:30:53
  42101. 12223 2005-08-18 02:58:40 4142 397 2005-08-23 23:30:40 2 2006-02-16 02:30:53
  42102. 12224 2005-08-18 02:59:09 1781 372 2005-08-19 06:22:09 1 2006-02-16 02:30:53
  42103. 12225 2005-08-18 03:00:11 1876 306 2005-08-24 05:01:11 1 2006-02-16 02:30:53
  42104. 12226 2005-08-18 03:00:48 682 234 2005-08-25 00:43:48 2 2006-02-16 02:30:53
  42105. 12227 2005-08-18 03:04:28 3671 591 2005-08-21 08:52:28 2 2006-02-16 02:30:53
  42106. 12228 2005-08-18 03:08:10 2772 9 2005-08-20 02:48:10 1 2006-02-16 02:30:53
  42107. 12229 2005-08-18 03:08:23 1123 382 2005-08-22 03:42:23 1 2006-02-16 02:30:53
  42108. 12230 2005-08-18 03:11:04 1910 231 2005-08-27 04:06:04 1 2006-02-16 02:30:53
  42109. 12231 2005-08-18 03:11:44 1115 231 2005-08-24 03:26:44 1 2006-02-16 02:30:53
  42110. 12232 2005-08-18 03:14:14 2399 87 2005-08-19 05:44:14 2 2006-02-16 02:30:53
  42111. 12233 2005-08-18 03:16:54 174 535 2005-08-22 04:48:54 2 2006-02-16 02:30:53
  42112. 12234 2005-08-18 03:17:33 3823 352 2005-08-25 04:44:33 2 2006-02-16 02:30:53
  42113. 12235 2005-08-18 03:17:50 957 595 2005-08-20 02:49:50 1 2006-02-16 02:30:53
  42114. 12236 2005-08-18 03:19:29 1190 474 2005-08-23 07:39:29 2 2006-02-16 02:30:53
  42115. 12237 2005-08-18 03:24:38 4422 381 2005-08-25 09:05:38 1 2006-02-16 02:30:53
  42116. 12238 2005-08-18 03:25:08 4043 46 2005-08-20 02:41:08 2 2006-02-16 02:30:53
  42117. 12239 2005-08-18 03:26:42 1948 75 2005-08-24 23:48:42 1 2006-02-16 02:30:53
  42118. 12240 2005-08-18 03:27:11 1168 30 2005-08-26 04:34:11 2 2006-02-16 02:30:53
  42119. 12241 2005-08-18 03:33:17 1261 248 2005-08-21 03:13:17 2 2006-02-16 02:30:53
  42120. 12242 2005-08-18 03:37:31 2095 121 2005-08-25 06:50:31 1 2006-02-16 02:30:53
  42121. 12243 2005-08-18 03:38:54 1829 354 2005-08-27 06:56:54 2 2006-02-16 02:30:53
  42122. 12244 2005-08-18 03:39:11 4441 362 2005-08-21 02:57:11 2 2006-02-16 02:30:53
  42123. 12245 2005-08-18 03:46:40 2960 576 2005-08-24 22:27:40 2 2006-02-16 02:30:53
  42124. 12246 2005-08-18 03:48:41 3199 258 2005-08-25 05:12:41 1 2006-02-16 02:30:53
  42125. 12247 2005-08-18 03:51:51 2264 254 2005-08-24 05:36:51 2 2006-02-16 02:30:53
  42126. 12248 2005-08-18 03:53:18 2120 562 2005-08-22 04:53:18 1 2006-02-16 02:30:53
  42127. 12249 2005-08-18 03:53:34 3586 135 2005-08-21 01:14:34 1 2006-02-16 02:30:53
  42128. 12250 2005-08-18 03:57:29 921 1 2005-08-22 23:05:29 1 2006-02-16 02:30:53
  42129. 12251 2005-08-18 03:59:02 3044 276 2005-08-19 02:38:02 1 2006-02-16 02:30:53
  42130. 12252 2005-08-18 03:59:51 127 350 2005-08-25 08:54:51 2 2006-02-16 02:30:53
  42131. 12253 2005-08-18 04:00:50 566 446 2005-08-19 04:43:50 1 2006-02-16 02:30:53
  42132. 12254 2005-08-18 04:05:29 2858 6 2005-08-23 04:17:29 1 2006-02-16 02:30:53
  42133. 12255 2005-08-18 04:07:20 2100 266 2005-08-21 22:19:20 1 2006-02-16 02:30:53
  42134. 12256 2005-08-18 04:09:39 2975 572 2005-08-22 01:53:39 2 2006-02-16 02:30:53
  42135. 12257 2005-08-18 04:11:03 269 87 2005-08-25 01:20:03 2 2006-02-16 02:30:53
  42136. 12258 2005-08-18 04:11:13 2861 83 2005-08-21 23:40:13 2 2006-02-16 02:30:53
  42137. 12259 2005-08-18 04:14:35 2904 429 2005-08-18 22:30:35 2 2006-02-16 02:30:53
  42138. 12260 2005-08-18 04:15:43 1352 150 2005-08-26 23:31:43 1 2006-02-16 02:30:53
  42139. 12261 2005-08-18 04:16:06 4076 485 2005-08-27 08:04:06 1 2006-02-16 02:30:53
  42140. 12262 2005-08-18 04:16:15 591 125 2005-08-20 09:16:15 1 2006-02-16 02:30:53
  42141. 12263 2005-08-18 04:16:18 4053 131 2005-08-21 07:22:18 1 2006-02-16 02:30:53
  42142. 12264 2005-08-18 04:17:33 3073 87 2005-08-26 08:07:33 1 2006-02-16 02:30:53
  42143. 12265 2005-08-18 04:22:01 537 247 2005-08-20 03:22:01 1 2006-02-16 02:30:53
  42144. 12266 2005-08-18 04:22:31 2192 467 2005-08-19 04:25:31 2 2006-02-16 02:30:53
  42145. 12267 2005-08-18 04:24:30 652 388 2005-08-26 03:01:30 2 2006-02-16 02:30:53
  42146. 12268 2005-08-18 04:26:54 93 39 2005-08-23 06:40:54 2 2006-02-16 02:30:53
  42147. 12269 2005-08-18 04:27:54 724 573 2005-08-25 07:03:54 1 2006-02-16 02:30:53
  42148. 12270 2005-08-18 04:32:05 2456 190 2005-08-21 01:37:05 2 2006-02-16 02:30:53
  42149. 12271 2005-08-18 04:33:11 3866 471 2005-08-20 23:10:11 1 2006-02-16 02:30:53
  42150. 12272 2005-08-18 04:39:10 1964 15 2005-08-24 09:41:10 1 2006-02-16 02:30:53
  42151. 12273 2005-08-18 04:40:50 3539 431 2005-08-25 01:44:50 2 2006-02-16 02:30:53
  42152. 12274 2005-08-18 04:41:47 265 47 2005-08-27 07:00:47 1 2006-02-16 02:30:53
  42153. 12275 2005-08-18 04:42:02 1474 507 2005-08-25 00:50:02 1 2006-02-16 02:30:53
  42154. 12276 2005-08-18 04:43:22 4491 397 2005-08-22 01:49:22 2 2006-02-16 02:30:53
  42155. 12277 2006-02-14 15:16:03 407 33 \N 2 2006-02-16 02:30:53
  42156. 12278 2005-08-18 04:46:45 3205 294 2005-08-24 08:59:45 2 2006-02-16 02:30:53
  42157. 12279 2005-08-18 04:47:30 4159 421 2005-08-19 09:47:30 2 2006-02-16 02:30:53
  42158. 12280 2005-08-18 04:49:27 4032 46 2005-08-21 03:39:27 2 2006-02-16 02:30:53
  42159. 12281 2005-08-18 04:50:32 4576 417 2005-08-21 00:14:32 2 2006-02-16 02:30:53
  42160. 12282 2005-08-18 04:54:20 3623 173 2005-08-23 05:28:20 2 2006-02-16 02:30:53
  42161. 12283 2005-08-18 04:54:25 574 240 2005-08-23 04:02:25 1 2006-02-16 02:30:53
  42162. 12284 2005-08-18 04:55:49 3162 147 2005-08-22 08:45:49 2 2006-02-16 02:30:53
  42163. 12285 2005-08-18 04:56:43 3531 215 2005-08-19 23:32:43 2 2006-02-16 02:30:53
  42164. 12286 2005-08-18 04:57:59 3729 34 2005-08-18 23:20:59 2 2006-02-16 02:30:53
  42165. 12287 2005-08-18 04:58:06 2238 136 2005-08-24 00:06:06 1 2006-02-16 02:30:53
  42166. 12288 2005-08-18 05:01:20 4401 523 2005-08-25 09:51:20 2 2006-02-16 02:30:53
  42167. 12289 2005-08-18 05:05:28 443 575 2005-08-26 09:02:28 1 2006-02-16 02:30:53
  42168. 12290 2005-08-18 05:08:03 4100 283 2005-08-23 08:10:03 2 2006-02-16 02:30:53
  42169. 12291 2005-08-18 05:08:37 4270 73 2005-08-23 09:01:37 1 2006-02-16 02:30:53
  42170. 12292 2005-08-18 05:08:54 1417 58 2005-08-27 02:51:54 1 2006-02-16 02:30:53
  42171. 12293 2005-08-18 05:13:36 614 514 2005-08-25 04:00:36 2 2006-02-16 02:30:53
  42172. 12294 2005-08-18 05:14:44 2479 4 2005-08-27 01:32:44 2 2006-02-16 02:30:53
  42173. 12295 2005-08-18 05:15:46 1651 532 2005-08-26 02:23:46 2 2006-02-16 02:30:53
  42174. 12296 2005-08-18 05:16:28 2091 258 2005-08-22 10:32:28 1 2006-02-16 02:30:53
  42175. 12297 2005-08-18 05:19:57 903 436 2005-08-21 00:53:57 1 2006-02-16 02:30:53
  42176. 12298 2005-08-18 05:30:31 904 46 2005-08-27 07:33:31 1 2006-02-16 02:30:53
  42177. 12299 2005-08-18 05:32:32 892 176 2005-08-22 08:14:32 2 2006-02-16 02:30:53
  42178. 12300 2005-08-18 05:36:14 3213 540 2005-08-25 00:20:14 2 2006-02-16 02:30:53
  42179. 12301 2005-08-18 05:36:20 2293 317 2005-08-23 03:15:20 1 2006-02-16 02:30:53
  42180. 12302 2005-08-18 05:41:39 765 514 2005-08-22 06:02:39 1 2006-02-16 02:30:53
  42181. 12303 2005-08-18 05:43:22 1604 245 2005-08-27 08:54:22 2 2006-02-16 02:30:53
  42182. 12304 2005-08-18 05:44:29 1381 228 2005-08-24 04:31:29 1 2006-02-16 02:30:53
  42183. 12305 2005-08-18 05:46:29 4463 534 2005-08-22 11:14:29 2 2006-02-16 02:30:53
  42184. 12306 2005-08-18 05:47:55 3853 541 2005-08-21 01:56:55 1 2006-02-16 02:30:53
  42185. 12307 2005-08-18 05:48:23 2679 187 2005-08-26 02:32:23 1 2006-02-16 02:30:53
  42186. 12308 2005-08-18 05:48:53 2877 569 2005-08-22 09:03:53 1 2006-02-16 02:30:53
  42187. 12309 2005-08-18 05:58:40 762 9 2005-08-20 02:20:40 2 2006-02-16 02:30:53
  42188. 12310 2005-08-18 06:02:34 3814 385 2005-08-24 01:08:34 2 2006-02-16 02:30:53
  42189. 12311 2005-08-18 06:07:00 1650 211 2005-08-21 07:54:00 2 2006-02-16 02:30:53
  42190. 12312 2005-08-18 06:07:26 80 185 2005-08-21 02:07:26 2 2006-02-16 02:30:53
  42191. 12313 2005-08-18 06:07:31 2053 180 2005-08-27 00:20:31 1 2006-02-16 02:30:53
  42192. 12314 2005-08-18 06:10:02 2204 455 2005-08-25 02:48:02 1 2006-02-16 02:30:53
  42193. 12315 2005-08-18 06:15:06 2012 579 2005-08-24 07:45:06 2 2006-02-16 02:30:53
  42194. 12316 2005-08-18 06:16:09 4325 94 2005-08-27 05:54:09 2 2006-02-16 02:30:53
  42195. 12317 2005-08-18 06:17:06 90 510 2005-08-22 08:56:06 1 2006-02-16 02:30:53
  42196. 12318 2005-08-18 06:21:56 3694 332 2005-08-27 06:07:56 1 2006-02-16 02:30:53
  42197. 12319 2005-08-18 06:26:45 999 368 2005-08-23 01:35:45 1 2006-02-16 02:30:53
  42198. 12320 2005-08-18 06:26:51 3248 267 2005-08-20 04:00:51 1 2006-02-16 02:30:53
  42199. 12321 2005-08-18 06:27:05 516 274 2005-08-24 02:26:05 1 2006-02-16 02:30:53
  42200. 12322 2005-08-18 06:35:28 4235 365 2005-08-23 07:34:28 1 2006-02-16 02:30:53
  42201. 12323 2005-08-18 06:36:22 4107 336 2005-08-26 11:36:22 1 2006-02-16 02:30:53
  42202. 12324 2005-08-18 06:38:20 2436 221 2005-08-20 02:28:20 2 2006-02-16 02:30:53
  42203. 12325 2005-08-18 06:41:30 1844 404 2005-08-26 02:49:30 1 2006-02-16 02:30:53
  42204. 12326 2005-08-18 06:41:59 1865 114 2005-08-19 10:16:59 2 2006-02-16 02:30:53
  42205. 12327 2005-08-18 06:43:22 2425 261 2005-08-25 10:50:22 2 2006-02-16 02:30:53
  42206. 12328 2005-08-18 06:43:56 1355 77 2005-08-23 10:19:56 2 2006-02-16 02:30:53
  42207. 12329 2005-08-18 06:44:30 3127 397 2005-08-25 04:05:30 1 2006-02-16 02:30:53
  42208. 12330 2005-08-18 06:46:33 889 587 2005-08-26 11:35:33 2 2006-02-16 02:30:53
  42209. 12331 2005-08-18 06:47:19 4565 483 2005-08-25 05:51:19 2 2006-02-16 02:30:53
  42210. 12332 2005-08-18 06:51:05 627 235 2005-08-20 04:28:05 2 2006-02-16 02:30:53
  42211. 12333 2005-08-18 06:51:39 4370 18 2005-08-21 01:44:39 2 2006-02-16 02:30:53
  42212. 12334 2005-08-18 06:52:36 2629 160 2005-08-25 12:06:36 1 2006-02-16 02:30:53
  42213. 12335 2005-08-18 06:59:15 2776 150 2005-08-20 06:47:15 1 2006-02-16 02:30:53
  42214. 12336 2005-08-18 06:59:41 2484 75 2005-08-23 01:36:41 1 2006-02-16 02:30:53
  42215. 12337 2005-08-18 07:02:24 4221 117 2005-08-20 10:11:24 1 2006-02-16 02:30:53
  42216. 12338 2005-08-18 07:04:24 274 408 2005-08-19 08:36:24 2 2006-02-16 02:30:53
  42217. 12339 2005-08-18 07:05:06 1600 370 2005-08-19 02:27:06 2 2006-02-16 02:30:53
  42218. 12340 2005-08-18 07:07:01 3561 239 2005-08-20 05:06:01 1 2006-02-16 02:30:53
  42219. 12341 2005-08-18 07:09:27 130 154 2005-08-21 03:44:27 1 2006-02-16 02:30:53
  42220. 12342 2005-08-18 07:12:46 1408 63 2005-08-21 07:44:46 1 2006-02-16 02:30:53
  42221. 12343 2005-08-18 07:15:13 448 507 2005-08-27 11:07:13 1 2006-02-16 02:30:53
  42222. 12344 2005-08-18 07:15:19 3675 269 2005-08-24 04:58:19 2 2006-02-16 02:30:53
  42223. 12345 2005-08-18 07:16:58 2359 44 2005-08-25 05:50:58 1 2006-02-16 02:30:53
  42224. 12346 2005-08-18 07:17:55 1200 265 2005-08-21 11:35:55 2 2006-02-16 02:30:53
  42225. 12347 2005-08-18 07:18:10 1788 454 2005-08-19 05:49:10 1 2006-02-16 02:30:53
  42226. 12348 2005-08-18 07:21:47 434 186 2005-08-25 04:41:47 2 2006-02-16 02:30:53
  42227. 12349 2005-08-18 07:23:42 4191 545 2005-08-19 04:25:42 1 2006-02-16 02:30:53
  42228. 12350 2005-08-18 07:29:46 1333 172 2005-08-21 12:50:46 1 2006-02-16 02:30:53
  42229. 12351 2005-08-18 07:32:12 2299 95 2005-08-24 04:29:12 2 2006-02-16 02:30:53
  42230. 12352 2006-02-14 15:16:03 643 155 \N 1 2006-02-16 02:30:53
  42231. 12353 2005-08-18 07:33:08 1594 141 2005-08-21 03:42:08 2 2006-02-16 02:30:53
  42232. 12354 2005-08-18 07:34:07 2913 499 2005-08-26 05:56:07 1 2006-02-16 02:30:53
  42233. 12355 2005-08-18 07:36:23 4112 452 2005-08-20 08:59:23 1 2006-02-16 02:30:53
  42234. 12356 2005-08-18 07:37:05 493 529 2005-08-24 10:49:05 1 2006-02-16 02:30:53
  42235. 12357 2005-08-18 07:40:52 166 19 2005-08-22 02:51:52 1 2006-02-16 02:30:53
  42236. 12358 2005-08-18 07:41:43 504 16 2005-08-20 03:46:43 1 2006-02-16 02:30:53
  42237. 12359 2005-08-18 07:44:05 4172 28 2005-08-19 02:26:05 1 2006-02-16 02:30:53
  42238. 12360 2005-08-18 07:46:35 929 123 2005-08-26 12:01:35 1 2006-02-16 02:30:53
  42239. 12361 2005-08-18 07:47:31 1418 250 2005-08-22 12:08:31 2 2006-02-16 02:30:53
  42240. 12362 2005-08-18 07:48:05 3131 367 2005-08-20 05:16:05 2 2006-02-16 02:30:53
  42241. 12363 2005-08-18 07:52:49 3447 181 2005-08-26 03:20:49 2 2006-02-16 02:30:53
  42242. 12364 2005-08-18 07:55:09 3398 84 2005-08-19 05:29:09 2 2006-02-16 02:30:53
  42243. 12365 2005-08-18 07:55:09 4350 303 2005-08-24 05:42:09 1 2006-02-16 02:30:53
  42244. 12366 2005-08-18 07:55:14 3799 115 2005-08-22 06:12:14 1 2006-02-16 02:30:53
  42245. 12367 2005-08-18 07:57:14 1822 7 2005-08-27 07:07:14 2 2006-02-16 02:30:53
  42246. 12368 2005-08-18 07:57:38 3777 392 2005-08-25 05:49:38 2 2006-02-16 02:30:53
  42247. 12369 2005-08-18 07:57:43 484 337 2005-08-26 09:36:43 1 2006-02-16 02:30:53
  42248. 12370 2005-08-18 07:57:47 3343 503 2005-08-22 11:32:47 1 2006-02-16 02:30:53
  42249. 12371 2005-08-18 08:02:46 622 451 2005-08-19 02:50:46 2 2006-02-16 02:30:53
  42250. 12372 2005-08-18 08:04:35 2982 131 2005-08-27 08:13:35 2 2006-02-16 02:30:53
  42251. 12373 2005-08-18 08:07:25 777 367 2005-08-27 03:41:25 1 2006-02-16 02:30:53
  42252. 12374 2005-08-18 08:07:45 939 74 2005-08-26 10:42:45 2 2006-02-16 02:30:53
  42253. 12375 2005-08-18 08:20:08 3508 365 2005-08-21 08:50:08 2 2006-02-16 02:30:53
  42254. 12376 2005-08-18 08:20:29 852 116 2005-08-20 13:20:29 1 2006-02-16 02:30:53
  42255. 12377 2005-08-18 08:26:05 4564 31 2005-08-23 02:51:05 2 2006-02-16 02:30:53
  42256. 12378 2005-08-18 08:26:13 4418 266 2005-08-19 07:21:13 1 2006-02-16 02:30:53
  42257. 12379 2005-08-18 08:26:48 2879 99 2005-08-19 10:08:48 2 2006-02-16 02:30:53
  42258. 12380 2005-08-18 08:27:28 55 215 2005-08-25 02:58:28 2 2006-02-16 02:30:53
  42259. 12381 2005-08-18 08:31:43 3651 190 2005-08-23 12:24:43 2 2006-02-16 02:30:53
  42260. 12382 2005-08-18 08:32:33 3049 566 2005-08-26 03:45:33 2 2006-02-16 02:30:53
  42261. 12383 2005-08-18 08:36:03 1641 295 2005-08-23 03:30:03 2 2006-02-16 02:30:53
  42262. 12384 2005-08-18 08:36:58 2557 193 2005-08-23 05:08:58 1 2006-02-16 02:30:53
  42263. 12385 2005-08-18 08:39:33 3143 146 2005-08-21 14:22:33 1 2006-02-16 02:30:53
  42264. 12386 2005-08-18 08:45:57 3303 199 2005-08-24 04:50:57 2 2006-02-16 02:30:53
  42265. 12387 2005-08-18 08:46:24 3604 530 2005-08-21 02:56:24 2 2006-02-16 02:30:53
  42266. 12388 2005-08-18 08:48:09 4016 555 2005-08-26 09:05:09 2 2006-02-16 02:30:53
  42267. 12389 2005-08-18 08:48:36 1891 394 2005-08-22 08:59:36 2 2006-02-16 02:30:53
  42268. 12390 2005-08-18 08:51:42 3603 377 2005-08-23 13:06:42 1 2006-02-16 02:30:53
  42269. 12391 2005-08-18 08:52:53 1507 307 2005-08-22 12:15:53 2 2006-02-16 02:30:53
  42270. 12392 2005-08-18 08:57:58 2695 113 2005-08-25 05:20:58 2 2006-02-16 02:30:53
  42271. 12393 2005-08-18 09:02:41 2435 396 2005-08-26 12:47:41 1 2006-02-16 02:30:53
  42272. 12394 2005-08-18 09:05:15 3605 330 2005-08-23 11:10:15 1 2006-02-16 02:30:53
  42273. 12395 2005-08-18 09:06:30 2020 541 2005-08-21 12:09:30 2 2006-02-16 02:30:53
  42274. 12396 2005-08-18 09:11:23 3624 40 2005-08-26 05:35:23 2 2006-02-16 02:30:53
  42275. 12397 2005-08-18 09:12:52 1872 371 2005-08-27 10:44:52 2 2006-02-16 02:30:53
  42276. 12398 2005-08-18 09:13:24 4247 321 2005-08-27 14:58:24 1 2006-02-16 02:30:53
  42277. 12399 2005-08-18 09:13:42 3950 347 2005-08-27 11:44:42 1 2006-02-16 02:30:53
  42278. 12400 2005-08-18 09:19:12 1767 10 2005-08-26 06:52:12 1 2006-02-16 02:30:53
  42279. 12401 2005-08-18 09:20:51 4314 479 2005-08-21 05:50:51 2 2006-02-16 02:30:53
  42280. 12402 2005-08-18 09:27:34 385 123 2005-08-25 13:10:34 2 2006-02-16 02:30:53
  42281. 12403 2005-08-18 09:31:05 2124 440 2005-08-23 09:54:05 2 2006-02-16 02:30:53
  42282. 12404 2005-08-18 09:36:34 1097 342 2005-08-23 10:12:34 2 2006-02-16 02:30:53
  42283. 12405 2005-08-18 09:37:30 228 266 2005-08-27 13:11:30 2 2006-02-16 02:30:53
  42284. 12406 2005-08-18 09:38:02 4368 510 2005-08-22 12:56:02 1 2006-02-16 02:30:53
  42285. 12407 2005-08-18 09:39:26 391 220 2005-08-24 05:19:26 2 2006-02-16 02:30:53
  42286. 12408 2005-08-18 09:40:38 2360 143 2005-08-19 04:45:38 1 2006-02-16 02:30:53
  42287. 12409 2005-08-18 09:43:58 2568 64 2005-08-19 15:02:58 2 2006-02-16 02:30:53
  42288. 12410 2005-08-18 09:45:33 1904 210 2005-08-27 08:50:33 1 2006-02-16 02:30:53
  42289. 12411 2005-08-18 09:47:57 1234 181 2005-08-21 05:54:57 2 2006-02-16 02:30:53
  42290. 12412 2005-08-18 09:49:52 1578 75 2005-08-23 12:32:52 2 2006-02-16 02:30:53
  42291. 12413 2005-08-18 09:50:34 3466 366 2005-08-23 05:57:34 2 2006-02-16 02:30:53
  42292. 12414 2005-08-18 09:50:40 4454 32 2005-08-26 06:45:40 2 2006-02-16 02:30:53
  42293. 12415 2005-08-18 09:54:01 392 443 2005-08-24 15:41:01 1 2006-02-16 02:30:53
  42294. 12416 2005-08-18 09:56:48 3784 515 2005-08-22 12:34:48 1 2006-02-16 02:30:53
  42295. 12417 2005-08-18 09:57:00 3500 71 2005-08-19 08:56:00 1 2006-02-16 02:30:53
  42296. 12418 2005-08-18 09:59:36 4186 241 2005-08-19 11:35:36 2 2006-02-16 02:30:53
  42297. 12419 2005-08-18 10:01:48 3111 133 2005-08-19 13:40:48 1 2006-02-16 02:30:53
  42298. 12420 2005-08-18 10:01:50 452 477 2005-08-22 08:14:50 1 2006-02-16 02:30:53
  42299. 12421 2005-08-18 10:04:06 4067 158 2005-08-24 08:45:06 2 2006-02-16 02:30:53
  42300. 12422 2005-08-18 10:13:12 1855 451 2005-08-20 14:36:12 2 2006-02-16 02:30:53
  42301. 12423 2005-08-18 10:14:52 1014 470 2005-08-26 13:16:52 2 2006-02-16 02:30:53
  42302. 12424 2005-08-18 10:16:57 2055 319 2005-08-27 04:41:57 1 2006-02-16 02:30:53
  42303. 12425 2005-08-18 10:18:06 2000 405 2005-08-27 08:16:06 2 2006-02-16 02:30:53
  42304. 12426 2005-08-18 10:24:11 799 75 2005-08-22 15:34:11 2 2006-02-16 02:30:53
  42305. 12427 2005-08-18 10:24:17 1759 333 2005-08-27 14:22:17 1 2006-02-16 02:30:53
  42306. 12428 2005-08-18 10:24:21 3735 121 2005-08-24 05:12:21 1 2006-02-16 02:30:53
  42307. 12429 2005-08-18 10:26:46 2994 436 2005-08-27 13:23:46 1 2006-02-16 02:30:53
  42308. 12430 2005-08-18 10:32:41 2840 196 2005-08-22 16:16:41 1 2006-02-16 02:30:53
  42309. 12431 2005-08-18 10:34:59 4461 89 2005-08-22 14:42:59 1 2006-02-16 02:30:53
  42310. 12432 2005-08-18 10:35:13 2543 263 2005-08-26 08:20:13 2 2006-02-16 02:30:53
  42311. 12433 2005-08-18 10:37:49 1776 552 2005-08-19 08:00:49 1 2006-02-16 02:30:53
  42312. 12434 2005-08-18 10:38:08 3078 314 2005-08-22 16:14:08 2 2006-02-16 02:30:53
  42313. 12435 2005-08-18 10:38:31 3211 160 2005-08-26 15:18:31 1 2006-02-16 02:30:53
  42314. 12436 2005-08-18 10:41:05 3761 499 2005-08-23 07:36:05 2 2006-02-16 02:30:53
  42315. 12437 2005-08-18 10:42:43 4036 467 2005-08-26 11:58:43 2 2006-02-16 02:30:53
  42316. 12438 2005-08-18 10:42:52 2043 186 2005-08-25 11:42:52 1 2006-02-16 02:30:53
  42317. 12439 2005-08-18 10:44:57 3204 153 2005-08-22 06:51:57 1 2006-02-16 02:30:53
  42318. 12440 2005-08-18 10:47:35 2779 474 2005-08-21 11:10:35 2 2006-02-16 02:30:53
  42319. 12441 2005-08-18 10:47:57 2163 561 2005-08-26 07:11:57 2 2006-02-16 02:30:53
  42320. 12442 2005-08-18 10:50:07 78 270 2005-08-21 08:06:07 1 2006-02-16 02:30:53
  42321. 12443 2005-08-18 10:50:59 2048 233 2005-08-26 07:48:59 2 2006-02-16 02:30:53
  42322. 12444 2005-08-18 10:53:12 1639 285 2005-08-19 13:54:12 2 2006-02-16 02:30:53
  42323. 12445 2005-08-18 10:56:20 3347 350 2005-08-21 16:46:20 1 2006-02-16 02:30:53
  42324. 12446 2005-08-18 10:56:29 2138 448 2005-08-23 05:30:29 1 2006-02-16 02:30:53
  42325. 12447 2005-08-18 10:57:01 4084 469 2005-08-27 06:05:01 1 2006-02-16 02:30:53
  42326. 12448 2005-08-18 10:59:04 3889 72 2005-08-21 06:45:04 2 2006-02-16 02:30:53
  42327. 12449 2005-08-18 11:03:04 663 285 2005-08-19 07:34:04 1 2006-02-16 02:30:53
  42328. 12450 2005-08-18 11:04:04 3439 518 2005-08-22 07:24:04 1 2006-02-16 02:30:53
  42329. 12451 2005-08-18 11:04:42 2780 183 2005-08-20 08:20:42 1 2006-02-16 02:30:53
  42330. 12452 2005-08-18 11:14:35 4260 358 2005-08-27 09:09:35 1 2006-02-16 02:30:53
  42331. 12453 2005-08-18 11:17:07 2487 104 2005-08-25 12:34:07 1 2006-02-16 02:30:53
  42332. 12454 2005-08-18 11:19:02 4219 184 2005-08-19 12:00:02 2 2006-02-16 02:30:53
  42333. 12455 2005-08-18 11:19:47 4478 46 2005-08-22 16:08:47 2 2006-02-16 02:30:53
  42334. 12456 2005-08-18 11:21:51 4578 85 2005-08-21 13:28:51 1 2006-02-16 02:30:53
  42335. 12457 2006-02-14 15:16:03 2145 80 \N 2 2006-02-16 02:30:53
  42336. 12458 2005-08-18 11:22:53 4579 277 2005-08-22 14:30:53 2 2006-02-16 02:30:53
  42337. 12459 2005-08-18 11:25:11 421 39 2005-08-22 06:13:11 1 2006-02-16 02:30:53
  42338. 12460 2005-08-18 11:25:13 3550 419 2005-08-27 06:27:13 2 2006-02-16 02:30:53
  42339. 12461 2005-08-18 11:28:14 1569 27 2005-08-21 09:47:14 1 2006-02-16 02:30:53
  42340. 12462 2005-08-18 11:28:55 890 574 2005-08-20 12:06:55 2 2006-02-16 02:30:53
  42341. 12463 2005-08-18 11:31:34 30 214 2005-08-23 12:04:34 1 2006-02-16 02:30:53
  42342. 12464 2005-08-18 11:33:34 1954 157 2005-08-27 14:33:34 1 2006-02-16 02:30:53
  42343. 12465 2005-08-18 11:35:02 1733 486 2005-08-21 11:52:02 2 2006-02-16 02:30:53
  42344. 12466 2005-08-18 11:36:55 2686 462 2005-08-23 13:46:55 1 2006-02-16 02:30:53
  42345. 12467 2005-08-18 11:40:09 1414 212 2005-08-19 13:33:09 2 2006-02-16 02:30:53
  42346. 12468 2005-08-18 11:41:47 1689 80 2005-08-24 16:43:47 2 2006-02-16 02:30:53
  42347. 12469 2005-08-18 11:53:07 2395 237 2005-08-24 16:00:07 1 2006-02-16 02:30:53
  42348. 12470 2005-08-18 11:55:42 1290 82 2005-08-24 08:27:42 2 2006-02-16 02:30:53
  42349. 12471 2005-08-18 11:57:00 242 101 2005-08-26 13:17:00 2 2006-02-16 02:30:53
  42350. 12472 2005-08-18 11:58:48 4458 297 2005-08-27 16:37:48 2 2006-02-16 02:30:53
  42351. 12473 2005-08-18 11:59:44 1237 303 2005-08-21 13:38:44 1 2006-02-16 02:30:53
  42352. 12474 2005-08-18 12:10:03 2240 78 2005-08-27 17:05:03 1 2006-02-16 02:30:53
  42353. 12475 2005-08-18 12:14:21 3118 401 2005-08-24 14:43:21 2 2006-02-16 02:30:53
  42354. 12476 2005-08-18 12:22:40 2784 122 2005-08-20 17:29:40 2 2006-02-16 02:30:53
  42355. 12477 2005-08-18 12:25:01 4516 74 2005-08-25 17:25:01 2 2006-02-16 02:30:53
  42356. 12478 2005-08-18 12:25:16 4512 42 2005-08-22 06:27:16 2 2006-02-16 02:30:53
  42357. 12479 2005-08-18 12:26:37 1119 401 2005-08-21 18:08:37 2 2006-02-16 02:30:53
  42358. 12480 2005-08-18 12:26:43 3339 446 2005-08-26 13:23:43 1 2006-02-16 02:30:53
  42359. 12481 2005-08-18 12:31:34 2424 218 2005-08-21 16:08:34 2 2006-02-16 02:30:53
  42360. 12482 2005-08-18 12:37:36 3778 247 2005-08-26 09:53:36 1 2006-02-16 02:30:53
  42361. 12483 2005-08-18 12:38:37 1805 488 2005-08-24 13:26:37 1 2006-02-16 02:30:53
  42362. 12484 2005-08-18 12:39:37 3690 300 2005-08-24 08:47:37 2 2006-02-16 02:30:53
  42363. 12485 2005-08-18 12:41:41 422 345 2005-08-22 16:38:41 2 2006-02-16 02:30:53
  42364. 12486 2005-08-18 12:42:50 2991 515 2005-08-27 13:41:50 2 2006-02-16 02:30:53
  42365. 12487 2005-08-18 12:45:24 2554 485 2005-08-22 12:39:24 1 2006-02-16 02:30:53
  42366. 12488 2005-08-18 12:48:22 3323 29 2005-08-19 16:19:22 1 2006-02-16 02:30:53
  42367. 12489 2006-02-14 15:16:03 387 60 \N 2 2006-02-16 02:30:53
  42368. 12490 2005-08-18 12:48:45 1577 187 2005-08-27 15:53:45 1 2006-02-16 02:30:53
  42369. 12491 2005-08-18 12:48:45 2354 247 2005-08-22 12:40:45 2 2006-02-16 02:30:53
  42370. 12492 2005-08-18 12:49:04 2839 224 2005-08-26 17:55:04 1 2006-02-16 02:30:53
  42371. 12493 2005-08-18 12:53:38 3029 487 2005-08-27 13:15:38 2 2006-02-16 02:30:53
  42372. 12494 2005-08-18 12:53:49 3845 522 2005-08-26 15:52:49 1 2006-02-16 02:30:53
  42373. 12495 2005-08-18 12:56:37 1225 102 2005-08-22 06:58:37 1 2006-02-16 02:30:53
  42374. 12496 2005-08-18 12:58:25 456 489 2005-08-27 18:43:25 2 2006-02-16 02:30:53
  42375. 12497 2005-08-18 12:58:40 824 388 2005-08-24 08:24:40 1 2006-02-16 02:30:53
  42376. 12498 2005-08-18 13:01:08 1063 408 2005-08-21 13:12:08 1 2006-02-16 02:30:53
  42377. 12499 2005-08-18 13:05:37 2611 42 2005-08-19 07:41:37 1 2006-02-16 02:30:53
  42378. 12500 2005-08-18 13:05:51 36 310 2005-08-19 14:54:51 2 2006-02-16 02:30:53
  42379. 12501 2005-08-18 13:13:13 728 173 2005-08-23 07:24:13 2 2006-02-16 02:30:53
  42380. 12502 2005-08-18 13:16:31 2153 235 2005-08-19 17:47:31 1 2006-02-16 02:30:53
  42381. 12503 2005-08-18 13:16:46 3548 379 2005-08-19 10:24:46 2 2006-02-16 02:30:53
  42382. 12504 2005-08-18 13:17:07 4429 44 2005-08-24 09:13:07 2 2006-02-16 02:30:53
  42383. 12505 2005-08-18 13:17:30 3741 406 2005-08-23 18:03:30 1 2006-02-16 02:30:53
  42384. 12506 2006-02-14 15:16:03 1132 114 \N 2 2006-02-16 02:30:53
  42385. 12507 2005-08-18 13:19:13 199 584 2005-08-27 11:48:13 2 2006-02-16 02:30:53
  42386. 12508 2005-08-18 13:20:13 1059 29 2005-08-22 12:55:13 1 2006-02-16 02:30:53
  42387. 12509 2005-08-18 13:21:52 2462 175 2005-08-20 12:14:52 2 2006-02-16 02:30:53
  42388. 12510 2005-08-18 13:22:25 3051 394 2005-08-27 17:38:25 2 2006-02-16 02:30:53
  42389. 12511 2005-08-18 13:23:19 919 447 2005-08-22 11:43:19 2 2006-02-16 02:30:53
  42390. 12512 2005-08-18 13:28:27 3959 148 2005-08-26 19:08:27 2 2006-02-16 02:30:53
  42391. 12513 2005-08-18 13:31:45 29 527 2005-08-25 08:26:45 1 2006-02-16 02:30:53
  42392. 12514 2005-08-18 13:33:55 3310 400 2005-08-23 12:50:55 2 2006-02-16 02:30:53
  42393. 12515 2005-08-18 13:39:26 2703 63 2005-08-22 09:05:26 1 2006-02-16 02:30:53
  42394. 12516 2005-08-18 13:39:53 1332 302 2005-08-20 08:33:53 1 2006-02-16 02:30:53
  42395. 12517 2005-08-18 13:40:20 2908 520 2005-08-27 14:04:20 1 2006-02-16 02:30:53
  42396. 12518 2005-08-18 13:41:32 3860 264 2005-08-23 13:01:32 1 2006-02-16 02:30:53
  42397. 12519 2005-08-18 13:42:14 2394 203 2005-08-24 16:44:14 1 2006-02-16 02:30:53
  42398. 12520 2005-08-18 13:42:45 681 52 2005-08-23 12:54:45 2 2006-02-16 02:30:53
  42399. 12521 2005-08-18 13:43:07 1022 369 2005-08-21 07:53:07 1 2006-02-16 02:30:53
  42400. 12522 2005-08-18 13:45:40 4435 342 2005-08-27 17:05:40 1 2006-02-16 02:30:53
  42401. 12523 2005-08-18 13:45:41 888 230 2005-08-27 10:46:41 1 2006-02-16 02:30:53
  42402. 12524 2006-02-14 15:16:03 857 438 \N 1 2006-02-16 02:30:53
  42403. 12525 2005-08-18 13:48:31 2357 96 2005-08-23 13:04:31 2 2006-02-16 02:30:53
  42404. 12526 2005-08-18 13:48:43 3541 54 2005-08-19 10:05:43 1 2006-02-16 02:30:53
  42405. 12527 2005-08-18 13:48:46 2536 459 2005-08-26 13:31:46 2 2006-02-16 02:30:53
  42406. 12528 2005-08-18 13:52:41 3381 398 2005-08-27 09:09:41 2 2006-02-16 02:30:53
  42407. 12529 2005-08-18 13:53:36 1956 382 2005-08-19 18:20:36 2 2006-02-16 02:30:53
  42408. 12530 2005-08-18 13:54:48 1054 521 2005-08-26 08:58:48 2 2006-02-16 02:30:53
  42409. 12531 2005-08-18 13:57:50 2771 27 2005-08-22 09:46:50 2 2006-02-16 02:30:53
  42410. 12532 2005-08-18 13:57:58 114 184 2005-08-24 14:58:58 2 2006-02-16 02:30:53
  42411. 12533 2005-08-18 14:01:40 795 331 2005-08-20 15:32:40 1 2006-02-16 02:30:53
  42412. 12534 2005-08-18 14:04:41 995 187 2005-08-25 16:57:41 1 2006-02-16 02:30:53
  42413. 12535 2005-08-18 14:05:22 2944 516 2005-08-25 16:35:22 1 2006-02-16 02:30:53
  42414. 12536 2005-08-18 14:06:06 2343 373 2005-08-25 14:21:06 1 2006-02-16 02:30:53
  42415. 12537 2005-08-18 14:06:39 57 56 2005-08-25 09:36:39 2 2006-02-16 02:30:53
  42416. 12538 2005-08-18 14:09:09 1373 118 2005-08-23 19:12:09 1 2006-02-16 02:30:53
  42417. 12539 2005-08-18 14:10:09 3259 136 2005-08-19 19:44:09 2 2006-02-16 02:30:53
  42418. 12540 2005-08-18 14:17:30 2826 304 2005-08-26 15:33:30 2 2006-02-16 02:30:53
  42419. 12541 2005-08-18 14:18:30 4357 584 2005-08-26 10:24:30 1 2006-02-16 02:30:53
  42420. 12542 2005-08-18 14:21:11 1920 230 2005-08-20 16:06:11 2 2006-02-16 02:30:53
  42421. 12543 2005-08-18 14:23:55 330 324 2005-08-20 12:42:55 1 2006-02-16 02:30:53
  42422. 12544 2005-08-18 14:25:51 3783 354 2005-08-26 18:42:51 1 2006-02-16 02:30:53
  42423. 12545 2005-08-18 14:28:00 1988 168 2005-08-26 14:10:00 1 2006-02-16 02:30:53
  42424. 12546 2005-08-18 14:29:37 610 30 2005-08-26 09:47:37 1 2006-02-16 02:30:53
  42425. 12547 2005-08-18 14:29:39 3046 591 2005-08-22 16:52:39 2 2006-02-16 02:30:53
  42426. 12548 2005-08-18 14:35:26 750 426 2005-08-27 18:58:26 1 2006-02-16 02:30:53
  42427. 12549 2005-08-18 14:38:07 1010 377 2005-08-21 08:45:07 1 2006-02-16 02:30:53
  42428. 12550 2005-08-18 14:40:38 4267 138 2005-08-19 13:33:38 2 2006-02-16 02:30:53
  42429. 12551 2005-08-18 14:46:26 2195 15 2005-08-19 16:59:26 2 2006-02-16 02:30:53
  42430. 12552 2005-08-18 14:46:34 4303 413 2005-08-20 11:02:34 2 2006-02-16 02:30:53
  42431. 12553 2005-08-18 14:46:54 2893 454 2005-08-22 13:41:54 1 2006-02-16 02:30:53
  42432. 12554 2005-08-18 14:47:28 715 404 2005-08-25 14:34:28 2 2006-02-16 02:30:53
  42433. 12555 2005-08-18 14:49:22 4434 557 2005-08-26 14:11:22 2 2006-02-16 02:30:53
  42434. 12556 2005-08-18 14:49:55 1984 3 2005-08-24 15:20:55 2 2006-02-16 02:30:53
  42435. 12557 2005-08-18 14:51:03 313 364 2005-08-19 13:30:03 2 2006-02-16 02:30:53
  42436. 12558 2005-08-18 14:52:35 167 289 2005-08-26 09:45:35 2 2006-02-16 02:30:53
  42437. 12559 2005-08-18 14:53:58 39 513 2005-08-25 20:22:58 1 2006-02-16 02:30:53
  42438. 12560 2005-08-18 14:54:19 829 596 2005-08-27 13:39:19 1 2006-02-16 02:30:53
  42439. 12561 2005-08-18 14:58:51 812 392 2005-08-20 10:53:51 1 2006-02-16 02:30:53
  42440. 12562 2005-08-18 15:00:03 529 212 2005-08-23 12:55:03 2 2006-02-16 02:30:53
  42441. 12563 2005-08-18 15:08:29 2552 393 2005-08-27 15:15:29 1 2006-02-16 02:30:53
  42442. 12564 2005-08-18 15:11:35 263 348 2005-08-22 11:45:35 2 2006-02-16 02:30:53
  42443. 12565 2005-08-18 15:12:17 1284 211 2005-08-19 12:26:17 2 2006-02-16 02:30:53
  42444. 12566 2005-08-18 15:13:04 1684 407 2005-08-21 19:29:04 2 2006-02-16 02:30:53
  42445. 12567 2005-08-18 15:14:36 2931 308 2005-08-26 18:56:36 1 2006-02-16 02:30:53
  42446. 12568 2005-08-18 15:15:44 2654 569 2005-08-22 19:32:44 2 2006-02-16 02:30:53
  42447. 12569 2005-08-18 15:20:46 1009 29 2005-08-24 12:38:46 2 2006-02-16 02:30:53
  42448. 12570 2005-08-18 15:23:31 3973 211 2005-08-22 09:59:31 2 2006-02-16 02:30:53
  42449. 12571 2005-08-18 15:31:18 1013 591 2005-08-23 15:20:18 2 2006-02-16 02:30:53
  42450. 12572 2005-08-18 15:32:54 1366 253 2005-08-21 10:30:54 1 2006-02-16 02:30:53
  42451. 12573 2005-08-18 15:32:57 1416 182 2005-08-21 18:29:57 2 2006-02-16 02:30:53
  42452. 12574 2006-02-14 15:16:03 177 317 \N 2 2006-02-16 02:30:53
  42453. 12575 2005-08-18 15:37:42 3441 117 2005-08-25 19:17:42 1 2006-02-16 02:30:53
  42454. 12576 2005-08-18 15:38:31 329 119 2005-08-22 21:29:31 2 2006-02-16 02:30:53
  42455. 12577 2005-08-18 15:39:46 4134 16 2005-08-25 18:05:46 2 2006-02-16 02:30:53
  42456. 12578 2005-08-18 15:47:11 930 514 2005-08-21 10:55:11 1 2006-02-16 02:30:53
  42457. 12579 2005-08-18 15:47:49 3021 547 2005-08-20 18:12:49 2 2006-02-16 02:30:53
  42458. 12580 2005-08-18 15:49:08 1197 53 2005-08-24 11:03:08 2 2006-02-16 02:30:53
  42459. 12581 2005-08-18 15:49:15 4309 70 2005-08-23 20:18:15 1 2006-02-16 02:30:53
  42460. 12582 2005-08-18 15:51:12 4467 462 2005-08-20 12:05:12 1 2006-02-16 02:30:53
  42461. 12583 2005-08-18 15:51:36 3090 108 2005-08-20 18:47:36 2 2006-02-16 02:30:53
  42462. 12584 2005-08-18 15:51:36 4487 371 2005-08-25 19:21:36 1 2006-02-16 02:30:53
  42463. 12585 2005-08-18 15:52:12 773 110 2005-08-22 21:00:12 1 2006-02-16 02:30:53
  42464. 12586 2005-08-18 15:54:39 4245 460 2005-08-21 19:29:39 1 2006-02-16 02:30:53
  42465. 12587 2005-08-18 16:03:13 3081 499 2005-08-25 19:30:13 1 2006-02-16 02:30:53
  42466. 12588 2005-08-18 16:04:45 694 415 2005-08-23 20:30:45 1 2006-02-16 02:30:53
  42467. 12589 2005-08-18 16:06:31 956 275 2005-08-27 17:20:31 1 2006-02-16 02:30:53
  42468. 12590 2005-08-18 16:11:35 2624 308 2005-08-23 10:35:35 1 2006-02-16 02:30:53
  42469. 12591 2005-08-18 16:16:41 723 546 2005-08-24 10:29:41 2 2006-02-16 02:30:53
  42470. 12592 2005-08-18 16:17:50 1618 305 2005-08-25 20:20:50 1 2006-02-16 02:30:53
  42471. 12593 2005-08-18 16:17:54 4092 72 2005-08-21 18:02:54 2 2006-02-16 02:30:53
  42472. 12594 2005-08-18 16:24:24 4421 198 2005-08-25 15:45:24 1 2006-02-16 02:30:53
  42473. 12595 2005-08-18 16:27:08 1662 286 2005-08-19 14:53:08 1 2006-02-16 02:30:53
  42474. 12596 2005-08-18 16:29:35 3662 378 2005-08-24 16:48:35 1 2006-02-16 02:30:53
  42475. 12597 2005-08-18 16:34:02 3804 474 2005-08-25 17:30:02 2 2006-02-16 02:30:53
  42476. 12598 2005-08-18 16:34:03 3159 340 2005-08-22 16:44:03 1 2006-02-16 02:30:53
  42477. 12599 2005-08-18 16:42:45 2032 34 2005-08-23 18:27:45 2 2006-02-16 02:30:53
  42478. 12600 2005-08-18 16:44:24 1475 171 2005-08-25 17:28:24 1 2006-02-16 02:30:53
  42479. 12601 2005-08-18 16:47:52 3099 598 2005-08-24 11:05:52 1 2006-02-16 02:30:53
  42480. 12602 2005-08-18 16:49:50 2001 533 2005-08-21 11:13:50 2 2006-02-16 02:30:53
  42481. 12603 2005-08-18 16:56:20 2769 119 2005-08-25 11:50:20 2 2006-02-16 02:30:53
  42482. 12604 2005-08-18 16:58:48 4127 12 2005-08-19 19:36:48 1 2006-02-16 02:30:53
  42483. 12605 2005-08-18 16:59:37 1359 496 2005-08-20 18:09:37 1 2006-02-16 02:30:53
  42484. 12606 2005-08-18 17:02:21 359 275 2005-08-24 22:38:21 1 2006-02-16 02:30:53
  42485. 12607 2005-08-18 17:03:49 2130 526 2005-08-19 18:29:49 1 2006-02-16 02:30:53
  42486. 12608 2005-08-18 17:05:15 624 366 2005-08-23 17:00:15 2 2006-02-16 02:30:53
  42487. 12609 2005-08-18 17:06:22 2327 486 2005-08-20 21:30:22 1 2006-02-16 02:30:53
  42488. 12610 2006-02-14 15:16:03 3181 269 \N 1 2006-02-16 02:30:53
  42489. 12611 2005-08-18 17:09:42 1925 359 2005-08-24 11:57:42 2 2006-02-16 02:30:53
  42490. 12612 2005-08-18 17:10:05 1035 129 2005-08-26 15:55:05 2 2006-02-16 02:30:53
  42491. 12613 2005-08-18 17:16:01 3877 8 2005-08-23 18:40:01 2 2006-02-16 02:30:53
  42492. 12614 2005-08-18 17:16:03 2233 60 2005-08-26 16:56:03 2 2006-02-16 02:30:53
  42493. 12615 2005-08-18 17:16:07 2191 29 2005-08-27 12:57:07 1 2006-02-16 02:30:53
  42494. 12616 2005-08-18 17:22:41 2952 476 2005-08-25 18:52:41 2 2006-02-16 02:30:53
  42495. 12617 2005-08-18 17:22:48 3573 564 2005-08-24 17:40:48 2 2006-02-16 02:30:53
  42496. 12618 2005-08-18 17:24:02 302 117 2005-08-19 15:22:02 1 2006-02-16 02:30:53
  42497. 12619 2005-08-18 17:24:15 980 592 2005-08-21 15:56:15 1 2006-02-16 02:30:53
  42498. 12620 2005-08-18 17:26:38 2663 221 2005-08-25 13:24:38 1 2006-02-16 02:30:53
  42499. 12621 2005-08-18 17:31:36 4566 439 2005-08-24 16:43:36 2 2006-02-16 02:30:53
  42500. 12622 2005-08-18 17:34:11 278 529 2005-08-24 16:10:11 1 2006-02-16 02:30:53
  42501. 12623 2005-08-18 17:34:19 3670 177 2005-08-20 21:30:19 1 2006-02-16 02:30:53
  42502. 12624 2005-08-18 17:35:00 1135 434 2005-08-27 12:18:00 2 2006-02-16 02:30:53
  42503. 12625 2005-08-18 17:36:19 2645 108 2005-08-23 11:42:19 1 2006-02-16 02:30:53
  42504. 12626 2005-08-18 17:36:45 4230 361 2005-08-26 17:12:45 1 2006-02-16 02:30:53
  42505. 12627 2005-08-18 17:37:11 3760 150 2005-08-19 14:59:11 2 2006-02-16 02:30:53
  42506. 12628 2005-08-18 17:40:25 3210 520 2005-08-25 13:39:25 1 2006-02-16 02:30:53
  42507. 12629 2005-08-18 17:40:33 1705 459 2005-08-26 21:09:33 1 2006-02-16 02:30:53
  42508. 12630 2005-08-18 17:49:28 1457 452 2005-08-24 12:23:28 1 2006-02-16 02:30:53
  42509. 12631 2005-08-18 17:52:51 2782 339 2005-08-25 14:40:51 2 2006-02-16 02:30:53
  42510. 12632 2005-08-18 17:54:21 827 381 2005-08-22 18:58:21 1 2006-02-16 02:30:53
  42511. 12633 2005-08-18 17:55:38 4341 469 2005-08-23 17:19:38 2 2006-02-16 02:30:53
  42512. 12634 2005-08-18 17:58:14 1037 549 2005-08-19 21:08:14 2 2006-02-16 02:30:53
  42513. 12635 2005-08-18 18:00:23 331 15 2005-08-23 16:40:23 2 2006-02-16 02:30:53
  42514. 12636 2005-08-18 18:00:29 1645 380 2005-08-26 20:08:29 2 2006-02-16 02:30:53
  42515. 12637 2005-08-18 18:06:53 4005 145 2005-08-19 17:36:53 1 2006-02-16 02:30:53
  42516. 12638 2005-08-18 18:11:39 2849 172 2005-08-25 21:54:39 2 2006-02-16 02:30:53
  42517. 12639 2005-08-18 18:13:05 562 500 2005-08-27 16:00:05 2 2006-02-16 02:30:53
  42518. 12640 2005-08-18 18:14:49 1715 544 2005-08-24 21:25:49 1 2006-02-16 02:30:53
  42519. 12641 2005-08-18 18:18:08 776 467 2005-08-19 23:17:08 1 2006-02-16 02:30:53
  42520. 12642 2005-08-18 18:19:16 2080 167 2005-08-20 17:30:16 2 2006-02-16 02:30:53
  42521. 12643 2005-08-18 18:21:06 2245 165 2005-08-24 14:26:06 1 2006-02-16 02:30:53
  42522. 12644 2005-08-18 18:22:27 1511 300 2005-08-26 00:01:27 1 2006-02-16 02:30:53
  42523. 12645 2006-02-14 15:16:03 1658 457 \N 1 2006-02-16 02:30:53
  42524. 12646 2005-08-18 18:25:06 3103 388 2005-08-24 18:45:06 1 2006-02-16 02:30:53
  42525. 12647 2005-08-18 18:29:51 323 520 2005-08-27 22:51:51 1 2006-02-16 02:30:53
  42526. 12648 2005-08-18 18:30:21 3545 519 2005-08-25 19:17:21 1 2006-02-16 02:30:53
  42527. 12649 2005-08-18 18:31:47 3201 530 2005-08-22 21:07:47 2 2006-02-16 02:30:53
  42528. 12650 2005-08-18 18:33:20 3237 276 2005-08-21 17:45:20 2 2006-02-16 02:30:53
  42529. 12651 2005-08-18 18:36:16 8 34 2005-08-22 22:01:16 1 2006-02-16 02:30:53
  42530. 12652 2005-08-18 18:48:58 2118 9 2005-08-21 14:15:58 1 2006-02-16 02:30:53
  42531. 12653 2005-08-18 18:53:17 3353 78 2005-08-26 14:08:17 1 2006-02-16 02:30:53
  42532. 12654 2005-08-18 18:56:40 2217 438 2005-08-20 17:51:40 2 2006-02-16 02:30:53
  42533. 12655 2005-08-18 18:57:44 859 533 2005-08-27 22:40:44 2 2006-02-16 02:30:53
  42534. 12656 2005-08-18 18:58:35 3981 286 2005-08-21 00:41:35 1 2006-02-16 02:30:53
  42535. 12657 2005-08-18 19:02:16 3621 100 2005-08-21 14:59:16 1 2006-02-16 02:30:53
  42536. 12658 2005-08-18 19:05:42 4320 193 2005-08-19 19:08:42 1 2006-02-16 02:30:53
  42537. 12659 2005-08-18 19:05:49 336 329 2005-08-24 22:12:49 2 2006-02-16 02:30:53
  42538. 12660 2005-08-18 19:07:23 414 21 2005-08-27 17:20:23 2 2006-02-16 02:30:53
  42539. 12661 2005-08-18 19:10:10 1547 333 2005-08-22 20:30:10 1 2006-02-16 02:30:53
  42540. 12662 2005-08-18 19:10:41 1412 75 2005-08-23 16:59:41 1 2006-02-16 02:30:53
  42541. 12663 2005-08-18 19:10:52 1163 375 2005-08-19 15:46:52 1 2006-02-16 02:30:53
  42542. 12664 2005-08-18 19:10:54 2732 577 2005-08-25 19:19:54 1 2006-02-16 02:30:53
  42543. 12665 2006-02-14 15:16:03 1701 410 \N 2 2006-02-16 02:30:53
  42544. 12666 2005-08-18 19:11:41 4156 251 2005-08-21 18:04:41 2 2006-02-16 02:30:53
  42545. 12667 2005-08-18 19:11:45 104 545 2005-08-27 13:34:45 2 2006-02-16 02:30:53
  42546. 12668 2005-08-18 19:16:47 1986 14 2005-08-19 16:31:47 1 2006-02-16 02:30:53
  42547. 12669 2005-08-18 19:17:47 4530 433 2005-08-24 14:55:47 1 2006-02-16 02:30:53
  42548. 12670 2005-08-18 19:17:58 1716 580 2005-08-23 20:54:58 2 2006-02-16 02:30:53
  42549. 12671 2005-08-18 19:19:59 1734 577 2005-08-23 17:53:59 2 2006-02-16 02:30:53
  42550. 12672 2006-02-14 15:16:03 1722 228 \N 1 2006-02-16 02:30:53
  42551. 12673 2005-08-18 19:21:56 4204 535 2005-08-26 22:44:56 2 2006-02-16 02:30:53
  42552. 12674 2005-08-18 19:24:56 636 185 2005-08-26 22:16:56 2 2006-02-16 02:30:53
  42553. 12675 2005-08-18 19:34:02 569 140 2005-08-23 13:36:02 2 2006-02-16 02:30:53
  42554. 12676 2005-08-18 19:34:40 2581 393 2005-08-20 18:03:40 2 2006-02-16 02:30:53
  42555. 12677 2005-08-18 19:36:05 1311 334 2005-08-22 21:23:05 2 2006-02-16 02:30:53
  42556. 12678 2005-08-18 19:41:27 2504 181 2005-08-23 15:14:27 2 2006-02-16 02:30:53
  42557. 12679 2005-08-18 19:42:11 1535 463 2005-08-25 01:01:11 1 2006-02-16 02:30:53
  42558. 12680 2005-08-18 19:43:46 833 259 2005-08-27 00:08:46 2 2006-02-16 02:30:53
  42559. 12681 2005-08-18 19:48:06 1570 518 2005-08-23 15:05:06 2 2006-02-16 02:30:53
  42560. 12682 2006-02-14 15:16:03 1148 245 \N 2 2006-02-16 02:30:53
  42561. 12683 2005-08-18 19:50:43 1802 166 2005-08-26 00:47:43 1 2006-02-16 02:30:53
  42562. 12684 2005-08-18 19:51:27 978 196 2005-08-19 15:56:27 1 2006-02-16 02:30:53
  42563. 12685 2005-08-18 19:51:29 4283 114 2005-08-27 14:58:29 2 2006-02-16 02:30:53
  42564. 12686 2005-08-18 19:55:09 501 385 2005-08-26 14:17:09 1 2006-02-16 02:30:53
  42565. 12687 2005-08-18 19:57:39 3092 285 2005-08-27 01:36:39 2 2006-02-16 02:30:53
  42566. 12688 2005-08-18 19:59:54 2315 65 2005-08-26 18:52:54 2 2006-02-16 02:30:53
  42567. 12689 2005-08-18 20:06:34 1066 296 2005-08-22 20:11:34 2 2006-02-16 02:30:53
  42568. 12690 2005-08-18 20:06:57 3574 361 2005-08-24 20:54:57 2 2006-02-16 02:30:53
  42569. 12691 2005-08-18 20:07:46 3744 534 2005-08-26 18:49:46 2 2006-02-16 02:30:53
  42570. 12692 2005-08-18 20:09:19 2781 273 2005-08-21 00:14:19 1 2006-02-16 02:30:53
  42571. 12693 2005-08-18 20:10:19 1543 584 2005-08-25 21:11:19 1 2006-02-16 02:30:53
  42572. 12694 2005-08-18 20:10:39 1741 268 2005-08-25 20:47:39 1 2006-02-16 02:30:53
  42573. 12695 2005-08-18 20:11:35 446 483 2005-08-25 18:29:35 1 2006-02-16 02:30:53
  42574. 12696 2005-08-18 20:13:08 3989 374 2005-08-19 18:02:08 2 2006-02-16 02:30:53
  42575. 12697 2005-08-18 20:14:56 2774 152 2005-08-23 21:54:56 1 2006-02-16 02:30:53
  42576. 12698 2006-02-14 15:16:03 3657 497 \N 1 2006-02-16 02:30:53
  42577. 12699 2005-08-18 20:20:59 3695 66 2005-08-22 17:00:59 1 2006-02-16 02:30:53
  42578. 12700 2005-08-18 20:24:46 540 397 2005-08-23 21:50:46 1 2006-02-16 02:30:53
  42579. 12701 2005-08-18 20:26:47 2337 489 2005-08-26 23:36:47 2 2006-02-16 02:30:53
  42580. 12702 2005-08-18 20:30:33 1884 474 2005-08-27 01:22:33 2 2006-02-16 02:30:53
  42581. 12703 2005-08-18 20:37:13 1278 453 2005-08-26 16:13:13 1 2006-02-16 02:30:53
  42582. 12704 2005-08-18 20:43:00 51 93 2005-08-21 22:28:00 2 2006-02-16 02:30:53
  42583. 12705 2005-08-18 20:44:14 2342 517 2005-08-23 20:46:14 1 2006-02-16 02:30:53
  42584. 12706 2005-08-18 20:44:34 1079 170 2005-08-26 21:47:34 1 2006-02-16 02:30:53
  42585. 12707 2005-08-18 20:52:02 1565 426 2005-08-25 19:03:02 2 2006-02-16 02:30:53
  42586. 12708 2005-08-18 20:59:17 3448 28 2005-08-24 22:40:17 1 2006-02-16 02:30:53
  42587. 12709 2005-08-18 20:59:51 3878 476 2005-08-26 01:21:51 2 2006-02-16 02:30:53
  42588. 12710 2005-08-18 21:02:50 3011 310 2005-08-26 15:07:50 2 2006-02-16 02:30:53
  42589. 12711 2005-08-18 21:03:32 2530 122 2005-08-26 17:31:32 1 2006-02-16 02:30:53
  42590. 12712 2005-08-18 21:04:13 2628 444 2005-08-25 18:15:13 2 2006-02-16 02:30:53
  42591. 12713 2005-08-18 21:07:28 1505 56 2005-08-24 17:46:28 1 2006-02-16 02:30:53
  42592. 12714 2005-08-18 21:08:01 868 372 2005-08-27 17:09:01 2 2006-02-16 02:30:53
  42593. 12715 2005-08-18 21:09:38 3768 266 2005-08-21 20:25:38 1 2006-02-16 02:30:53
  42594. 12716 2006-02-14 15:16:03 858 570 \N 2 2006-02-16 02:30:53
  42595. 12717 2005-08-18 21:15:40 3551 167 2005-08-20 00:59:40 2 2006-02-16 02:30:53
  42596. 12718 2005-08-18 21:21:44 3221 176 2005-08-20 01:01:44 1 2006-02-16 02:30:53
  42597. 12719 2006-02-14 15:16:03 1094 87 \N 2 2006-02-16 02:30:53
  42598. 12720 2005-08-18 21:28:42 2676 419 2005-08-25 18:02:42 1 2006-02-16 02:30:53
  42599. 12721 2005-08-18 21:30:12 1045 239 2005-08-22 22:45:12 1 2006-02-16 02:30:53
  42600. 12722 2005-08-18 21:33:53 913 416 2005-08-27 23:47:53 2 2006-02-16 02:30:53
  42601. 12723 2005-08-18 21:34:16 4167 430 2005-08-22 22:37:16 1 2006-02-16 02:30:53
  42602. 12724 2005-08-18 21:37:20 2224 242 2005-08-27 21:56:20 2 2006-02-16 02:30:53
  42603. 12725 2005-08-18 21:43:09 4071 51 2005-08-23 18:50:09 1 2006-02-16 02:30:53
  42604. 12726 2005-08-18 21:44:46 20 397 2005-08-19 21:58:46 2 2006-02-16 02:30:53
  42605. 12727 2005-08-18 21:45:15 15 178 2005-08-24 15:52:15 1 2006-02-16 02:30:53
  42606. 12728 2005-08-18 21:47:48 3156 129 2005-08-25 16:13:48 1 2006-02-16 02:30:53
  42607. 12729 2005-08-18 21:52:59 3711 424 2005-08-21 00:02:59 1 2006-02-16 02:30:53
  42608. 12730 2005-08-18 21:55:01 75 7 2005-08-22 01:23:01 1 2006-02-16 02:30:53
  42609. 12731 2005-08-18 21:55:38 1719 128 2005-08-23 20:30:38 1 2006-02-16 02:30:53
  42610. 12732 2005-08-18 21:57:50 3307 535 2005-08-19 18:28:50 2 2006-02-16 02:30:53
  42611. 12733 2005-08-18 21:59:00 3243 144 2005-08-24 02:25:00 1 2006-02-16 02:30:53
  42612. 12734 2005-08-18 22:04:52 3619 121 2005-08-25 00:34:52 1 2006-02-16 02:30:53
  42613. 12735 2005-08-18 22:04:54 3679 383 2005-08-23 21:19:54 2 2006-02-16 02:30:53
  42614. 12736 2006-02-14 15:16:03 3591 244 \N 2 2006-02-16 02:30:53
  42615. 12737 2005-08-18 22:11:37 736 204 2005-08-26 04:08:37 1 2006-02-16 02:30:53
  42616. 12738 2005-08-18 22:11:47 4313 589 2005-08-27 17:55:47 2 2006-02-16 02:30:53
  42617. 12739 2005-08-18 22:15:18 4129 292 2005-08-27 00:37:18 2 2006-02-16 02:30:53
  42618. 12740 2005-08-18 22:17:04 1157 330 2005-08-23 23:42:04 1 2006-02-16 02:30:53
  42619. 12741 2005-08-18 22:17:05 2084 435 2005-08-25 20:07:05 2 2006-02-16 02:30:53
  42620. 12742 2005-08-18 22:22:03 1742 68 2005-08-22 04:01:03 1 2006-02-16 02:30:53
  42621. 12743 2005-08-18 22:22:31 2630 565 2005-08-27 00:31:31 1 2006-02-16 02:30:53
  42622. 12744 2005-08-18 22:22:36 3815 593 2005-08-24 00:26:36 1 2006-02-16 02:30:53
  42623. 12745 2005-08-18 22:22:45 262 24 2005-08-20 01:44:45 2 2006-02-16 02:30:53
  42624. 12746 2006-02-14 15:16:03 1012 211 \N 1 2006-02-16 02:30:53
  42625. 12747 2005-08-18 22:28:22 4075 549 2005-08-22 22:25:22 2 2006-02-16 02:30:53
  42626. 12748 2005-08-18 22:29:05 3249 373 2005-08-24 18:25:05 2 2006-02-16 02:30:53
  42627. 12749 2005-08-18 22:31:21 828 388 2005-08-20 22:53:21 1 2006-02-16 02:30:53
  42628. 12750 2005-08-18 22:32:39 3717 535 2005-08-26 01:54:39 1 2006-02-16 02:30:53
  42629. 12751 2005-08-18 22:33:22 2791 352 2005-08-20 20:28:22 2 2006-02-16 02:30:53
  42630. 12752 2005-08-18 22:33:36 3595 514 2005-08-27 23:55:36 1 2006-02-16 02:30:53
  42631. 12753 2005-08-18 22:37:39 1494 470 2005-08-27 00:21:39 2 2006-02-16 02:30:53
  42632. 12754 2005-08-18 22:37:41 4154 134 2005-08-27 20:17:41 2 2006-02-16 02:30:53
  42633. 12755 2005-08-18 22:38:47 105 439 2005-08-22 23:58:47 1 2006-02-16 02:30:53
  42634. 12756 2005-08-18 22:52:13 1840 89 2005-08-21 17:22:13 1 2006-02-16 02:30:53
  42635. 12757 2005-08-18 22:57:45 1095 147 2005-08-21 22:43:45 1 2006-02-16 02:30:53
  42636. 12758 2005-08-18 22:58:34 2279 30 2005-08-22 23:33:34 1 2006-02-16 02:30:53
  42637. 12759 2006-02-14 15:16:03 4193 354 \N 2 2006-02-16 02:30:53
  42638. 12760 2005-08-18 23:03:19 4188 363 2005-08-24 17:53:19 1 2006-02-16 02:30:53
  42639. 12761 2005-08-18 23:05:22 2684 364 2005-08-22 01:08:22 2 2006-02-16 02:30:53
  42640. 12762 2005-08-18 23:06:54 3909 502 2005-08-21 18:30:54 1 2006-02-16 02:30:53
  42641. 12763 2005-08-18 23:07:01 393 472 2005-08-21 18:45:01 1 2006-02-16 02:30:53
  42642. 12764 2005-08-18 23:14:15 26 183 2005-08-22 20:23:15 1 2006-02-16 02:30:53
  42643. 12765 2005-08-18 23:21:50 2244 298 2005-08-28 04:42:50 2 2006-02-16 02:30:53
  42644. 12766 2005-08-18 23:25:20 3737 50 2005-08-27 04:43:20 1 2006-02-16 02:30:53
  42645. 12767 2005-08-18 23:25:49 3351 432 2005-08-28 02:40:49 2 2006-02-16 02:30:53
  42646. 12768 2005-08-18 23:26:11 1993 458 2005-08-19 20:31:11 2 2006-02-16 02:30:53
  42647. 12769 2005-08-18 23:26:40 926 504 2005-08-25 03:03:40 1 2006-02-16 02:30:53
  42648. 12770 2005-08-18 23:29:00 1654 575 2005-08-26 20:57:00 2 2006-02-16 02:30:53
  42649. 12771 2005-08-18 23:29:23 3076 484 2005-08-22 17:31:23 2 2006-02-16 02:30:53
  42650. 12772 2005-08-18 23:29:25 1179 397 2005-08-23 20:32:25 1 2006-02-16 02:30:53
  42651. 12773 2005-08-18 23:32:19 4390 360 2005-08-27 04:40:19 1 2006-02-16 02:30:53
  42652. 12774 2005-08-18 23:34:22 3601 21 2005-08-28 05:00:22 2 2006-02-16 02:30:53
  42653. 12775 2005-08-18 23:35:56 4374 54 2005-08-26 18:37:56 1 2006-02-16 02:30:53
  42654. 12776 2005-08-18 23:37:33 2345 55 2005-08-23 03:07:33 1 2006-02-16 02:30:53
  42655. 12777 2005-08-18 23:39:22 3467 130 2005-08-27 20:28:22 1 2006-02-16 02:30:53
  42656. 12778 2005-08-18 23:40:23 3626 290 2005-08-19 18:14:23 2 2006-02-16 02:30:53
  42657. 12779 2005-08-18 23:44:00 1814 325 2005-08-26 05:27:00 2 2006-02-16 02:30:53
  42658. 12780 2005-08-18 23:48:16 54 373 2005-08-20 18:13:16 2 2006-02-16 02:30:53
  42659. 12781 2005-08-18 23:50:24 1187 168 2005-08-21 02:31:24 1 2006-02-16 02:30:53
  42660. 12782 2005-08-18 23:56:23 1454 495 2005-08-25 18:47:23 1 2006-02-16 02:30:53
  42661. 12783 2005-08-19 00:01:14 1109 503 2005-08-21 22:02:14 2 2006-02-16 02:30:53
  42662. 12784 2005-08-19 00:02:46 447 513 2005-08-20 04:39:46 1 2006-02-16 02:30:53
  42663. 12785 2005-08-19 00:05:49 4190 145 2005-08-21 04:39:49 2 2006-02-16 02:30:53
  42664. 12786 2006-02-14 15:16:03 97 512 \N 1 2006-02-16 02:30:53
  42665. 12787 2005-08-19 00:07:58 2023 278 2005-08-24 00:42:58 2 2006-02-16 02:30:53
  42666. 12788 2005-08-19 00:15:09 644 90 2005-08-27 21:54:09 1 2006-02-16 02:30:53
  42667. 12789 2005-08-19 00:16:19 2412 557 2005-08-25 00:18:19 2 2006-02-16 02:30:53
  42668. 12790 2005-08-19 00:16:54 1281 44 2005-08-26 02:00:54 1 2006-02-16 02:30:53
  42669. 12791 2005-08-19 00:17:09 3594 573 2005-08-22 23:46:09 1 2006-02-16 02:30:53
  42670. 12792 2006-02-14 15:16:03 1435 405 \N 2 2006-02-16 02:30:53
  42671. 12793 2005-08-19 00:20:36 1195 403 2005-08-28 02:43:36 1 2006-02-16 02:30:53
  42672. 12794 2005-08-19 00:20:37 1586 336 2005-08-26 01:48:37 1 2006-02-16 02:30:53
  42673. 12795 2005-08-19 00:21:52 2745 360 2005-08-22 22:13:52 2 2006-02-16 02:30:53
  42674. 12796 2005-08-19 00:22:24 1285 368 2005-08-19 22:53:24 2 2006-02-16 02:30:53
  42675. 12797 2005-08-19 00:24:08 1595 5 2005-08-21 22:53:08 2 2006-02-16 02:30:53
  42676. 12798 2005-08-19 00:24:33 4244 534 2005-08-21 23:01:33 2 2006-02-16 02:30:53
  42677. 12799 2005-08-19 00:27:01 3885 197 2005-08-22 03:30:01 2 2006-02-16 02:30:53
  42678. 12800 2005-08-19 00:27:11 257 545 2005-08-22 01:08:11 1 2006-02-16 02:30:53
  42679. 12801 2005-08-19 00:27:19 960 202 2005-08-26 03:10:19 1 2006-02-16 02:30:53
  42680. 12802 2005-08-19 00:27:41 2461 462 2005-08-28 03:24:41 1 2006-02-16 02:30:53
  42681. 12803 2005-08-19 00:28:21 1058 390 2005-08-23 02:02:21 1 2006-02-16 02:30:53
  42682. 12804 2005-08-19 00:33:15 147 365 2005-08-28 02:16:15 2 2006-02-16 02:30:53
  42683. 12805 2005-08-19 00:36:34 2964 345 2005-08-26 20:38:34 1 2006-02-16 02:30:53
  42684. 12806 2005-08-19 00:37:26 4488 423 2005-08-23 18:49:26 2 2006-02-16 02:30:53
  42685. 12807 2005-08-19 00:38:46 2323 513 2005-08-28 03:37:46 2 2006-02-16 02:30:53
  42686. 12808 2005-08-19 00:40:41 3920 55 2005-08-21 06:39:41 2 2006-02-16 02:30:53
  42687. 12809 2005-08-19 00:42:24 2005 22 2005-08-23 06:06:24 1 2006-02-16 02:30:53
  42688. 12810 2005-08-19 00:44:10 1340 250 2005-08-22 22:30:10 2 2006-02-16 02:30:53
  42689. 12811 2005-08-19 00:51:28 641 54 2005-08-24 01:57:28 2 2006-02-16 02:30:53
  42690. 12812 2005-08-19 00:54:02 4024 450 2005-08-22 20:35:02 2 2006-02-16 02:30:53
  42691. 12813 2005-08-19 00:54:22 3285 500 2005-08-19 21:17:22 2 2006-02-16 02:30:53
  42692. 12814 2005-08-19 00:58:24 204 465 2005-08-21 05:46:24 1 2006-02-16 02:30:53
  42693. 12815 2005-08-19 00:59:42 435 588 2005-08-25 21:43:42 2 2006-02-16 02:30:53
  42694. 12816 2005-08-19 01:04:05 4051 342 2005-08-24 01:25:05 1 2006-02-16 02:30:53
  42695. 12817 2005-08-19 01:04:35 1246 113 2005-08-25 21:14:35 1 2006-02-16 02:30:53
  42696. 12818 2005-08-19 01:04:59 3069 528 2005-08-26 21:39:59 2 2006-02-16 02:30:53
  42697. 12819 2005-08-19 01:05:05 1117 542 2005-08-22 05:50:05 1 2006-02-16 02:30:53
  42698. 12820 2005-08-19 01:05:08 2936 127 2005-08-21 05:37:08 2 2006-02-16 02:30:53
  42699. 12821 2005-08-19 01:07:02 3418 41 2005-08-23 01:22:02 2 2006-02-16 02:30:53
  42700. 12822 2005-08-19 01:15:24 419 426 2005-08-20 06:38:24 1 2006-02-16 02:30:53
  42701. 12823 2005-08-19 01:15:47 426 316 2005-08-22 05:32:47 2 2006-02-16 02:30:53
  42702. 12824 2005-08-19 01:18:00 1875 247 2005-08-22 01:12:00 2 2006-02-16 02:30:53
  42703. 12825 2005-08-19 01:23:58 4495 328 2005-08-20 00:19:58 2 2006-02-16 02:30:53
  42704. 12826 2005-08-19 01:25:11 1277 439 2005-08-27 01:22:11 1 2006-02-16 02:30:53
  42705. 12827 2005-08-19 01:27:23 880 253 2005-08-27 02:22:23 2 2006-02-16 02:30:53
  42706. 12828 2005-08-19 01:37:47 4208 378 2005-08-24 22:31:47 2 2006-02-16 02:30:53
  42707. 12829 2005-08-19 01:38:18 1129 326 2005-08-25 22:23:18 2 2006-02-16 02:30:53
  42708. 12830 2005-08-19 01:40:25 4080 409 2005-08-20 23:49:25 2 2006-02-16 02:30:53
  42709. 12831 2005-08-19 01:40:43 1916 183 2005-08-28 05:22:43 1 2006-02-16 02:30:53
  42710. 12832 2005-08-19 01:41:44 2820 563 2005-08-24 23:15:44 2 2006-02-16 02:30:53
  42711. 12833 2005-08-19 01:42:28 3723 59 2005-08-26 20:13:28 1 2006-02-16 02:30:53
  42712. 12834 2005-08-19 01:47:30 757 133 2005-08-24 20:08:30 1 2006-02-16 02:30:53
  42713. 12835 2005-08-19 01:47:45 1477 124 2005-08-26 00:58:45 2 2006-02-16 02:30:53
  42714. 12836 2005-08-19 01:48:33 1380 196 2005-08-23 04:46:33 1 2006-02-16 02:30:53
  42715. 12837 2005-08-19 01:51:09 2288 495 2005-08-22 07:14:09 2 2006-02-16 02:30:53
  42716. 12838 2005-08-19 01:51:50 1207 308 2005-08-27 23:12:50 1 2006-02-16 02:30:53
  42717. 12839 2005-08-19 01:53:43 1970 360 2005-08-28 02:27:43 2 2006-02-16 02:30:53
  42718. 12840 2005-08-19 01:54:11 2098 182 2005-08-28 01:11:11 2 2006-02-16 02:30:53
  42719. 12841 2005-08-19 01:55:55 4233 257 2005-08-24 02:56:55 1 2006-02-16 02:30:53
  42720. 12842 2005-08-19 01:57:21 2540 119 2005-08-28 01:10:21 1 2006-02-16 02:30:53
  42721. 12843 2005-08-19 01:58:54 3279 128 2005-08-20 00:20:54 2 2006-02-16 02:30:53
  42722. 12844 2005-08-19 01:59:08 4146 584 2005-08-24 22:21:08 1 2006-02-16 02:30:53
  42723. 12845 2005-08-19 02:02:37 1698 106 2005-08-22 01:08:37 1 2006-02-16 02:30:53
  42724. 12846 2005-08-19 02:03:26 286 305 2005-08-25 07:39:26 2 2006-02-16 02:30:53
  42725. 12847 2005-08-19 02:04:07 384 91 2005-08-23 20:13:07 2 2006-02-16 02:30:53
  42726. 12848 2005-08-19 02:05:11 2833 539 2005-08-24 05:27:11 2 2006-02-16 02:30:53
  42727. 12849 2005-08-19 02:05:37 3489 280 2005-08-23 07:00:37 1 2006-02-16 02:30:53
  42728. 12850 2005-08-19 02:08:06 1816 440 2005-08-20 21:06:06 2 2006-02-16 02:30:53
  42729. 12851 2005-08-19 02:12:12 3311 194 2005-08-25 23:51:12 1 2006-02-16 02:30:53
  42730. 12852 2005-08-19 02:12:40 2446 260 2005-08-19 23:42:40 1 2006-02-16 02:30:53
  42731. 12853 2005-08-19 02:15:32 3753 232 2005-08-27 21:26:32 2 2006-02-16 02:30:53
  42732. 12854 2005-08-19 02:18:51 4577 362 2005-08-24 04:16:51 2 2006-02-16 02:30:53
  42733. 12855 2005-08-19 02:18:58 2900 242 2005-08-19 20:50:58 1 2006-02-16 02:30:53
  42734. 12856 2005-08-19 02:19:13 132 4 2005-08-23 07:49:13 2 2006-02-16 02:30:53
  42735. 12857 2005-08-19 02:20:13 4307 443 2005-08-20 20:20:13 1 2006-02-16 02:30:53
  42736. 12858 2005-08-19 02:22:16 3024 144 2005-08-26 07:25:16 2 2006-02-16 02:30:53
  42737. 12859 2005-08-19 02:23:23 2289 139 2005-08-28 04:55:23 2 2006-02-16 02:30:53
  42738. 12860 2005-08-19 02:24:41 778 548 2005-08-25 07:43:41 1 2006-02-16 02:30:53
  42739. 12861 2005-08-19 02:30:24 3115 287 2005-08-22 08:23:24 1 2006-02-16 02:30:53
  42740. 12862 2005-08-19 02:31:59 473 198 2005-08-26 08:16:59 2 2006-02-16 02:30:53
  42741. 12863 2005-08-19 02:35:59 780 234 2005-08-21 21:13:59 1 2006-02-16 02:30:53
  42742. 12864 2005-08-19 02:38:26 4481 465 2005-08-22 21:42:26 2 2006-02-16 02:30:53
  42743. 12865 2005-08-19 02:38:50 3437 460 2005-08-21 02:33:50 1 2006-02-16 02:30:53
  42744. 12866 2005-08-19 02:39:47 1766 229 2005-08-27 02:14:47 1 2006-02-16 02:30:53
  42745. 12867 2005-08-19 02:40:11 4499 330 2005-08-20 04:01:11 1 2006-02-16 02:30:53
  42746. 12868 2005-08-19 02:47:19 4054 551 2005-08-20 00:30:19 2 2006-02-16 02:30:53
  42747. 12869 2005-08-19 02:50:36 3939 99 2005-08-26 21:38:36 2 2006-02-16 02:30:53
  42748. 12870 2005-08-19 02:54:38 991 86 2005-08-27 00:45:38 1 2006-02-16 02:30:53
  42749. 12871 2005-08-19 02:55:36 2625 217 2005-08-22 01:00:36 2 2006-02-16 02:30:53
  42750. 12872 2005-08-19 02:57:37 1975 54 2005-08-22 23:23:37 1 2006-02-16 02:30:53
  42751. 12873 2005-08-19 03:05:41 2140 138 2005-08-22 06:57:41 2 2006-02-16 02:30:53
  42752. 12874 2005-08-19 03:07:57 848 254 2005-08-22 22:42:57 2 2006-02-16 02:30:53
  42753. 12875 2005-08-19 03:10:21 1708 483 2005-08-26 01:00:21 2 2006-02-16 02:30:53
  42754. 12876 2005-08-19 03:12:19 803 356 2005-08-20 02:24:19 2 2006-02-16 02:30:53
  42755. 12877 2005-08-19 03:16:58 1016 40 2005-08-25 02:10:58 2 2006-02-16 02:30:53
  42756. 12878 2005-08-19 03:17:08 1182 596 2005-08-23 03:44:08 1 2006-02-16 02:30:53
  42757. 12879 2005-08-19 03:22:55 3556 210 2005-08-24 22:00:55 1 2006-02-16 02:30:53
  42758. 12880 2005-08-19 03:27:17 3386 552 2005-08-28 06:16:17 2 2006-02-16 02:30:53
  42759. 12881 2005-08-19 03:28:13 1432 121 2005-08-25 05:25:13 1 2006-02-16 02:30:53
  42760. 12882 2005-08-19 03:33:46 911 153 2005-08-21 22:49:46 1 2006-02-16 02:30:53
  42761. 12883 2005-08-19 03:33:47 964 555 2005-08-23 21:55:47 1 2006-02-16 02:30:53
  42762. 12884 2005-08-19 03:34:04 2768 348 2005-08-28 01:00:04 2 2006-02-16 02:30:53
  42763. 12885 2005-08-19 03:37:25 883 185 2005-08-20 22:10:25 1 2006-02-16 02:30:53
  42764. 12886 2005-08-19 03:38:32 2157 174 2005-08-26 02:17:32 1 2006-02-16 02:30:53
  42765. 12887 2005-08-19 03:38:54 1214 150 2005-08-27 08:45:54 1 2006-02-16 02:30:53
  42766. 12888 2005-08-19 03:41:09 4398 146 2005-08-24 07:09:09 2 2006-02-16 02:30:53
  42767. 12889 2005-08-19 03:41:31 4376 515 2005-08-27 00:46:31 2 2006-02-16 02:30:53
  42768. 12890 2005-08-19 03:42:08 3831 150 2005-08-19 23:08:08 1 2006-02-16 02:30:53
  42769. 12891 2006-02-14 15:16:03 2764 388 \N 2 2006-02-16 02:30:53
  42770. 12892 2005-08-19 03:46:34 1044 121 2005-08-21 05:11:34 2 2006-02-16 02:30:53
  42771. 12893 2005-08-19 03:46:43 168 498 2005-08-20 08:38:43 2 2006-02-16 02:30:53
  42772. 12894 2005-08-19 03:49:28 4581 541 2005-08-25 01:51:28 2 2006-02-16 02:30:53
  42773. 12895 2005-08-19 03:50:48 4372 396 2005-08-26 09:13:48 1 2006-02-16 02:30:53
  42774. 12896 2005-08-19 03:52:44 148 220 2005-08-24 22:27:44 1 2006-02-16 02:30:53
  42775. 12897 2006-02-14 15:16:03 1512 178 \N 2 2006-02-16 02:30:53
  42776. 12898 2005-08-19 03:54:34 1555 586 2005-08-23 08:14:34 2 2006-02-16 02:30:53
  42777. 12899 2005-08-19 04:03:34 830 105 2005-08-20 08:34:34 2 2006-02-16 02:30:53
  42778. 12900 2005-08-19 04:03:49 849 408 2005-08-24 22:11:49 2 2006-02-16 02:30:53
  42779. 12901 2006-02-14 15:16:03 2799 180 \N 2 2006-02-16 02:30:53
  42780. 12902 2006-02-14 15:16:03 464 91 \N 2 2006-02-16 02:30:53
  42781. 12903 2005-08-19 04:09:38 2340 302 2005-08-26 03:24:38 2 2006-02-16 02:30:53
  42782. 12904 2005-08-19 04:10:50 459 257 2005-08-27 23:24:50 1 2006-02-16 02:30:53
  42783. 12905 2005-08-19 04:13:37 1043 480 2005-08-26 23:52:37 1 2006-02-16 02:30:53
  42784. 12906 2005-08-19 04:13:43 2060 401 2005-08-20 04:24:43 1 2006-02-16 02:30:53
  42785. 12907 2005-08-19 04:16:13 2844 422 2005-08-27 02:43:13 1 2006-02-16 02:30:53
  42786. 12908 2005-08-19 04:19:05 175 340 2005-08-25 09:50:05 1 2006-02-16 02:30:53
  42787. 12909 2005-08-19 04:20:25 4300 210 2005-08-24 06:40:25 2 2006-02-16 02:30:53
  42788. 12910 2005-08-19 04:23:13 3968 128 2005-08-20 22:27:13 1 2006-02-16 02:30:53
  42789. 12911 2005-08-19 04:24:10 1770 367 2005-08-26 00:35:10 2 2006-02-16 02:30:53
  42790. 12912 2005-08-19 04:24:35 1747 364 2005-08-27 07:13:35 2 2006-02-16 02:30:53
  42791. 12913 2005-08-19 04:25:39 3719 356 2005-08-25 07:23:39 1 2006-02-16 02:30:53
  42792. 12914 2005-08-19 04:25:59 4396 501 2005-08-23 08:04:59 2 2006-02-16 02:30:53
  42793. 12915 2006-02-14 15:16:03 2651 516 \N 1 2006-02-16 02:30:53
  42794. 12916 2005-08-19 04:27:05 2277 157 2005-08-21 02:33:05 2 2006-02-16 02:30:53
  42795. 12917 2005-08-19 04:27:11 107 152 2005-08-20 03:04:11 2 2006-02-16 02:30:53
  42796. 12918 2005-08-19 04:31:36 972 13 2005-08-25 05:50:36 1 2006-02-16 02:30:53
  42797. 12919 2005-08-19 04:32:15 2121 263 2005-08-24 05:56:15 2 2006-02-16 02:30:53
  42798. 12920 2005-08-19 04:32:32 2516 511 2005-08-27 00:44:32 2 2006-02-16 02:30:53
  42799. 12921 2005-08-19 04:47:48 781 234 2005-08-25 00:07:48 2 2006-02-16 02:30:53
  42800. 12922 2005-08-19 04:48:48 342 25 2005-08-23 23:32:48 1 2006-02-16 02:30:53
  42801. 12923 2005-08-19 04:50:20 1390 531 2005-08-22 10:42:20 1 2006-02-16 02:30:53
  42802. 12924 2005-08-19 04:51:47 3807 519 2005-08-26 07:50:47 1 2006-02-16 02:30:53
  42803. 12925 2005-08-19 04:59:01 3361 57 2005-08-27 02:03:01 2 2006-02-16 02:30:53
  42804. 12926 2005-08-19 05:00:16 23 336 2005-08-26 06:12:16 2 2006-02-16 02:30:53
  42805. 12927 2005-08-19 05:02:46 1171 223 2005-08-23 01:08:46 1 2006-02-16 02:30:53
  42806. 12928 2005-08-19 05:04:09 4531 353 2005-08-24 09:09:09 2 2006-02-16 02:30:53
  42807. 12929 2005-08-19 05:05:23 1531 310 2005-08-25 04:37:23 1 2006-02-16 02:30:53
  42808. 12930 2005-08-19 05:11:32 4410 414 2005-08-22 02:20:32 2 2006-02-16 02:30:53
  42809. 12931 2005-08-19 05:11:47 3070 407 2005-08-21 00:59:47 1 2006-02-16 02:30:53
  42810. 12932 2005-08-19 05:17:30 2295 416 2005-08-21 09:24:30 1 2006-02-16 02:30:53
  42811. 12933 2005-08-19 05:18:20 4103 589 2005-08-27 00:13:20 1 2006-02-16 02:30:53
  42812. 12934 2005-08-19 05:18:42 3242 591 2005-08-24 10:42:42 1 2006-02-16 02:30:53
  42813. 12935 2005-08-19 05:20:25 193 279 2005-08-21 03:10:25 2 2006-02-16 02:30:53
  42814. 12936 2005-08-19 05:25:06 654 387 2005-08-28 08:21:06 1 2006-02-16 02:30:53
  42815. 12937 2005-08-19 05:25:30 3826 348 2005-08-22 10:40:30 2 2006-02-16 02:30:53
  42816. 12938 2006-02-14 15:16:03 3987 28 \N 1 2006-02-16 02:30:53
  42817. 12939 2005-08-19 05:38:25 3375 181 2005-08-23 23:52:25 1 2006-02-16 02:30:53
  42818. 12940 2005-08-19 05:38:29 2222 340 2005-08-20 08:15:29 1 2006-02-16 02:30:53
  42819. 12941 2005-08-19 05:39:26 2951 195 2005-08-22 09:50:26 2 2006-02-16 02:30:53
  42820. 12942 2005-08-19 05:40:36 3938 103 2005-08-27 02:04:36 1 2006-02-16 02:30:53
  42821. 12943 2005-08-19 05:46:26 3930 547 2005-08-22 03:26:26 2 2006-02-16 02:30:53
  42822. 12944 2005-08-19 05:48:12 2956 148 2005-08-28 10:10:12 1 2006-02-16 02:30:53
  42823. 12945 2005-08-19 05:51:46 3638 312 2005-08-23 11:22:46 2 2006-02-16 02:30:53
  42824. 12946 2005-08-19 05:53:34 2066 444 2005-08-20 07:30:34 1 2006-02-16 02:30:53
  42825. 12947 2005-08-19 05:54:21 935 499 2005-08-22 09:17:21 1 2006-02-16 02:30:53
  42826. 12948 2005-08-19 05:55:14 4173 442 2005-08-22 01:05:14 2 2006-02-16 02:30:53
  42827. 12949 2005-08-19 05:55:52 4209 279 2005-08-23 00:01:52 1 2006-02-16 02:30:53
  42828. 12950 2005-08-19 05:55:58 1064 463 2005-08-23 08:05:58 1 2006-02-16 02:30:53
  42829. 12951 2005-08-19 05:56:44 2143 70 2005-08-24 11:28:44 2 2006-02-16 02:30:53
  42830. 12952 2005-08-19 06:00:52 2460 228 2005-08-20 02:17:52 1 2006-02-16 02:30:53
  42831. 12953 2005-08-19 06:04:07 3954 429 2005-08-28 11:05:07 1 2006-02-16 02:30:53
  42832. 12954 2005-08-19 06:04:34 3592 63 2005-08-28 02:12:34 2 2006-02-16 02:30:53
  42833. 12955 2005-08-19 06:05:58 2040 410 2005-08-26 04:24:58 2 2006-02-16 02:30:53
  42834. 12956 2005-08-19 06:06:26 3613 241 2005-08-28 08:37:26 2 2006-02-16 02:30:53
  42835. 12957 2005-08-19 06:12:44 2219 512 2005-08-28 10:49:44 2 2006-02-16 02:30:53
  42836. 12958 2005-08-19 06:19:21 4214 569 2005-08-20 02:21:21 1 2006-02-16 02:30:53
  42837. 12959 2006-02-14 15:16:03 1540 284 \N 2 2006-02-16 02:30:53
  42838. 12960 2005-08-19 06:21:52 3498 152 2005-08-25 04:16:52 1 2006-02-16 02:30:53
  42839. 12961 2005-08-19 06:22:37 4529 386 2005-08-23 00:49:37 1 2006-02-16 02:30:53
  42840. 12962 2005-08-19 06:22:48 575 171 2005-08-27 07:47:48 1 2006-02-16 02:30:53
  42841. 12963 2005-08-19 06:26:04 1521 2 2005-08-23 11:37:04 2 2006-02-16 02:30:53
  42842. 12964 2005-08-19 06:29:13 2854 142 2005-08-22 12:23:13 2 2006-02-16 02:30:53
  42843. 12965 2005-08-19 06:33:00 4308 430 2005-08-22 02:02:00 1 2006-02-16 02:30:53
  42844. 12966 2005-08-19 06:37:48 3196 69 2005-08-26 03:59:48 2 2006-02-16 02:30:53
  42845. 12967 2005-08-19 06:37:51 3404 170 2005-08-25 06:58:51 2 2006-02-16 02:30:53
  42846. 12968 2005-08-19 06:38:18 3108 166 2005-08-20 08:29:18 1 2006-02-16 02:30:53
  42847. 12969 2005-08-19 06:38:59 191 224 2005-08-25 09:09:59 2 2006-02-16 02:30:53
  42848. 12970 2006-02-14 15:16:03 3999 216 \N 1 2006-02-16 02:30:53
  42849. 12971 2005-08-19 06:42:43 3504 492 2005-08-23 10:49:43 2 2006-02-16 02:30:53
  42850. 12972 2005-08-19 06:43:28 1218 55 2005-08-27 11:30:28 1 2006-02-16 02:30:53
  42851. 12973 2005-08-19 06:48:11 128 163 2005-08-22 07:18:11 2 2006-02-16 02:30:53
  42852. 12974 2005-08-19 06:51:02 3599 218 2005-08-25 11:48:02 2 2006-02-16 02:30:53
  42853. 12975 2005-08-19 06:51:19 3300 236 2005-08-25 04:22:19 1 2006-02-16 02:30:53
  42854. 12976 2005-08-19 06:52:58 66 592 2005-08-26 11:23:58 2 2006-02-16 02:30:53
  42855. 12977 2005-08-19 06:55:33 2004 388 2005-08-27 07:38:33 2 2006-02-16 02:30:53
  42856. 12978 2005-08-19 06:57:27 3252 167 2005-08-20 09:10:27 2 2006-02-16 02:30:53
  42857. 12979 2005-08-19 07:00:35 1227 267 2005-08-21 06:12:35 2 2006-02-16 02:30:53
  42858. 12980 2005-08-19 07:03:14 1854 144 2005-08-26 05:07:14 1 2006-02-16 02:30:53
  42859. 12981 2005-08-19 07:04:00 3925 481 2005-08-21 09:17:00 1 2006-02-16 02:30:53
  42860. 12982 2005-08-19 07:06:34 1258 44 2005-08-21 06:53:34 1 2006-02-16 02:30:53
  42861. 12983 2005-08-19 07:06:51 406 148 2005-08-28 10:35:51 2 2006-02-16 02:30:53
  42862. 12984 2005-08-19 07:06:51 4211 537 2005-08-22 04:04:51 1 2006-02-16 02:30:53
  42863. 12985 2005-08-19 07:08:05 4133 83 2005-08-24 02:25:05 1 2006-02-16 02:30:53
  42864. 12986 2005-08-19 07:09:36 1145 210 2005-08-22 05:01:36 1 2006-02-16 02:30:53
  42865. 12987 2005-08-19 07:11:44 3665 134 2005-08-20 04:17:44 1 2006-02-16 02:30:53
  42866. 12988 2006-02-14 15:16:03 81 236 \N 2 2006-02-16 02:30:53
  42867. 12989 2005-08-19 07:19:04 2929 306 2005-08-21 10:58:04 1 2006-02-16 02:30:53
  42868. 12990 2005-08-19 07:20:39 1825 360 2005-08-21 12:31:39 2 2006-02-16 02:30:53
  42869. 12991 2005-08-19 07:21:24 2227 126 2005-08-21 04:31:24 2 2006-02-16 02:30:53
  42870. 12992 2005-08-19 07:23:06 3022 597 2005-08-23 06:11:06 2 2006-02-16 02:30:53
  42871. 12993 2005-08-19 07:24:03 4225 484 2005-08-26 07:15:03 2 2006-02-16 02:30:53
  42872. 12994 2005-08-19 07:26:10 3809 506 2005-08-20 07:02:10 2 2006-02-16 02:30:53
  42873. 12995 2005-08-19 07:26:30 2069 566 2005-08-25 12:47:30 2 2006-02-16 02:30:53
  42874. 12996 2005-08-19 07:31:32 4445 380 2005-08-25 11:59:32 1 2006-02-16 02:30:53
  42875. 12997 2005-08-19 07:31:46 1661 311 2005-08-24 09:20:46 2 2006-02-16 02:30:53
  42876. 12998 2005-08-19 07:32:16 2301 354 2005-08-24 01:56:16 2 2006-02-16 02:30:53
  42877. 12999 2005-08-19 07:34:53 661 24 2005-08-26 03:57:53 1 2006-02-16 02:30:53
  42878. 13000 2005-08-19 07:36:42 2341 141 2005-08-22 08:50:42 1 2006-02-16 02:30:53
  42879. 13001 2005-08-19 07:36:44 2505 254 2005-08-22 13:06:44 1 2006-02-16 02:30:53
  42880. 13002 2005-08-19 07:37:58 3892 477 2005-08-26 11:32:58 2 2006-02-16 02:30:53
  42881. 13003 2005-08-19 07:39:29 3431 451 2005-08-23 05:48:29 2 2006-02-16 02:30:53
  42882. 13004 2005-08-19 07:40:08 771 442 2005-08-20 11:49:08 1 2006-02-16 02:30:53
  42883. 13005 2005-08-19 07:45:42 3417 104 2005-08-20 12:45:42 2 2006-02-16 02:30:53
  42884. 13006 2005-08-19 07:47:16 3157 134 2005-08-21 06:17:16 1 2006-02-16 02:30:53
  42885. 13007 2005-08-19 07:47:43 4280 430 2005-08-26 02:48:43 2 2006-02-16 02:30:53
  42886. 13008 2006-02-14 15:16:03 1838 181 \N 1 2006-02-16 02:30:53
  42887. 13009 2005-08-19 07:50:35 677 376 2005-08-21 06:04:35 1 2006-02-16 02:30:53
  42888. 13010 2005-08-19 07:52:21 825 413 2005-08-27 12:51:21 1 2006-02-16 02:30:53
  42889. 13011 2005-08-19 07:53:58 1998 529 2005-08-24 12:00:58 1 2006-02-16 02:30:53
  42890. 13012 2005-08-19 07:54:59 1690 145 2005-08-26 09:50:59 2 2006-02-16 02:30:53
  42891. 13013 2005-08-19 07:55:51 841 293 2005-08-26 05:14:51 1 2006-02-16 02:30:53
  42892. 13014 2005-08-19 07:56:08 3400 344 2005-08-21 10:20:08 2 2006-02-16 02:30:53
  42893. 13015 2005-08-19 07:56:51 3461 126 2005-08-28 07:05:51 2 2006-02-16 02:30:53
  42894. 13016 2005-08-19 07:57:14 3095 175 2005-08-23 03:29:14 1 2006-02-16 02:30:53
  42895. 13017 2005-08-19 08:02:24 2160 104 2005-08-26 07:32:24 1 2006-02-16 02:30:53
  42896. 13018 2005-08-19 08:04:50 2122 168 2005-08-26 11:46:50 1 2006-02-16 02:30:53
  42897. 13019 2005-08-19 08:07:43 2827 597 2005-08-20 12:09:43 2 2006-02-16 02:30:53
  42898. 13020 2005-08-19 08:07:50 4501 92 2005-08-28 11:42:50 1 2006-02-16 02:30:53
  42899. 13021 2005-08-19 08:08:04 1242 309 2005-08-26 12:04:04 2 2006-02-16 02:30:53
  42900. 13022 2006-02-14 15:16:03 2266 336 \N 2 2006-02-16 02:30:53
  42901. 13023 2005-08-19 08:13:54 1566 69 2005-08-27 13:18:54 1 2006-02-16 02:30:53
  42902. 13024 2005-08-19 08:19:21 2917 401 2005-08-27 05:18:21 1 2006-02-16 02:30:53
  42903. 13025 2006-02-14 15:16:03 4066 269 \N 1 2006-02-16 02:30:53
  42904. 13026 2005-08-19 08:22:45 3026 79 2005-08-21 09:31:45 1 2006-02-16 02:30:53
  42905. 13027 2005-08-19 08:25:16 3756 128 2005-08-25 13:42:16 1 2006-02-16 02:30:53
  42906. 13028 2005-08-19 08:27:23 2165 371 2005-08-24 03:46:23 1 2006-02-16 02:30:53
  42907. 13029 2005-08-19 08:28:04 3283 293 2005-08-22 12:25:04 2 2006-02-16 02:30:53
  42908. 13030 2005-08-19 08:28:11 2614 240 2005-08-24 07:20:11 1 2006-02-16 02:30:53
  42909. 13031 2005-08-19 08:30:04 1525 567 2005-08-23 09:35:04 2 2006-02-16 02:30:53
  42910. 13032 2005-08-19 08:31:50 3699 82 2005-08-23 04:00:50 2 2006-02-16 02:30:53
  42911. 13033 2005-08-19 08:34:39 1682 344 2005-08-28 10:13:39 1 2006-02-16 02:30:53
  42912. 13034 2005-08-19 08:41:29 990 387 2005-08-20 07:36:29 2 2006-02-16 02:30:53
  42913. 13035 2005-08-19 08:46:45 4082 135 2005-08-22 11:42:45 1 2006-02-16 02:30:53
  42914. 13036 2005-08-19 08:48:37 1469 20 2005-08-22 04:13:37 2 2006-02-16 02:30:53
  42915. 13037 2005-08-19 08:53:57 65 275 2005-08-28 08:56:57 2 2006-02-16 02:30:53
  42916. 13038 2005-08-19 08:55:16 2226 532 2005-08-25 12:23:16 2 2006-02-16 02:30:53
  42917. 13039 2005-08-19 08:55:19 1952 370 2005-08-20 07:39:19 2 2006-02-16 02:30:53
  42918. 13040 2005-08-19 09:04:24 4113 425 2005-08-23 12:36:24 2 2006-02-16 02:30:53
  42919. 13041 2005-08-19 09:05:38 1576 462 2005-08-27 06:34:38 1 2006-02-16 02:30:53
  42920. 13042 2005-08-19 09:06:08 1047 414 2005-08-22 13:46:08 2 2006-02-16 02:30:53
  42921. 13043 2005-08-19 09:07:13 24 127 2005-08-27 07:49:13 1 2006-02-16 02:30:53
  42922. 13044 2005-08-19 09:14:31 809 142 2005-08-20 11:16:31 1 2006-02-16 02:30:53
  42923. 13045 2005-08-19 09:17:35 389 254 2005-08-23 12:04:35 1 2006-02-16 02:30:53
  42924. 13046 2005-08-19 09:21:10 965 37 2005-08-26 13:00:10 2 2006-02-16 02:30:53
  42925. 13047 2005-08-19 09:24:49 2704 394 2005-08-24 11:06:49 2 2006-02-16 02:30:53
  42926. 13048 2005-08-19 09:25:06 1029 486 2005-08-28 11:18:06 2 2006-02-16 02:30:53
  42927. 13049 2005-08-19 09:25:40 4122 53 2005-08-27 10:19:40 2 2006-02-16 02:30:53
  42928. 13050 2005-08-19 09:31:23 3682 131 2005-08-26 06:56:23 2 2006-02-16 02:30:53
  42929. 13051 2005-08-19 09:31:33 4064 90 2005-08-28 06:15:33 1 2006-02-16 02:30:53
  42930. 13052 2005-08-19 09:31:42 3036 502 2005-08-28 15:11:42 2 2006-02-16 02:30:53
  42931. 13053 2005-08-19 09:31:48 2044 140 2005-08-28 07:51:48 2 2006-02-16 02:30:53
  42932. 13054 2005-08-19 09:34:02 2983 325 2005-08-23 05:25:02 2 2006-02-16 02:30:53
  42933. 13055 2005-08-19 09:36:28 3580 485 2005-08-24 05:53:28 2 2006-02-16 02:30:53
  42934. 13056 2006-02-14 15:16:03 3751 115 \N 2 2006-02-16 02:30:53
  42935. 13057 2005-08-19 09:40:05 876 105 2005-08-28 13:22:05 2 2006-02-16 02:30:53
  42936. 13058 2005-08-19 09:40:53 2437 24 2005-08-26 05:48:53 2 2006-02-16 02:30:53
  42937. 13059 2005-08-19 09:42:01 3810 341 2005-08-21 12:07:01 1 2006-02-16 02:30:53
  42938. 13060 2005-08-19 09:43:25 507 22 2005-08-28 15:22:25 1 2006-02-16 02:30:53
  42939. 13061 2005-08-19 09:43:39 730 576 2005-08-24 10:03:39 1 2006-02-16 02:30:53
  42940. 13062 2005-08-19 09:44:17 1790 385 2005-08-27 11:42:17 1 2006-02-16 02:30:53
  42941. 13063 2005-08-19 09:45:41 1192 5 2005-08-24 09:11:41 2 2006-02-16 02:30:53
  42942. 13064 2005-08-19 09:46:53 4131 588 2005-08-21 08:29:53 1 2006-02-16 02:30:53
  42943. 13065 2005-08-19 09:48:52 1887 518 2005-08-22 07:12:52 1 2006-02-16 02:30:53
  42944. 13066 2005-08-19 09:50:39 3730 336 2005-08-22 14:01:39 1 2006-02-16 02:30:53
  42945. 13067 2005-08-19 09:51:17 3825 172 2005-08-25 09:58:17 2 2006-02-16 02:30:53
  42946. 13068 2005-08-19 09:55:16 3019 1 2005-08-20 14:44:16 2 2006-02-16 02:30:53
  42947. 13069 2005-08-19 09:55:20 368 299 2005-08-24 04:10:20 2 2006-02-16 02:30:53
  42948. 13070 2005-08-19 09:56:23 2214 235 2005-08-24 09:08:23 2 2006-02-16 02:30:53
  42949. 13071 2005-08-19 10:01:07 527 578 2005-08-26 14:26:07 1 2006-02-16 02:30:53
  42950. 13072 2005-08-19 10:03:30 2313 447 2005-08-22 14:27:30 2 2006-02-16 02:30:53
  42951. 13073 2005-08-19 10:05:38 855 506 2005-08-26 07:37:38 2 2006-02-16 02:30:53
  42952. 13074 2005-08-19 10:06:53 3266 341 2005-08-28 09:56:53 2 2006-02-16 02:30:53
  42953. 13075 2005-08-19 10:10:10 4125 224 2005-08-21 08:44:10 2 2006-02-16 02:30:53
  42954. 13076 2005-08-19 10:10:26 1226 201 2005-08-22 05:41:26 1 2006-02-16 02:30:53
  42955. 13077 2005-08-19 10:15:19 433 241 2005-08-21 06:51:19 2 2006-02-16 02:30:53
  42956. 13078 2005-08-19 10:16:43 4104 479 2005-08-27 11:35:43 2 2006-02-16 02:30:53
  42957. 13079 2006-02-14 15:16:03 733 107 \N 1 2006-02-16 02:30:53
  42958. 13080 2005-08-19 10:18:00 4222 452 2005-08-22 06:37:00 2 2006-02-16 02:30:53
  42959. 13081 2005-08-19 10:19:06 3077 170 2005-08-20 05:49:06 1 2006-02-16 02:30:53
  42960. 13082 2005-08-19 10:19:19 2117 387 2005-08-28 05:02:19 1 2006-02-16 02:30:53
  42961. 13083 2005-08-19 10:26:45 3469 455 2005-08-23 05:31:45 2 2006-02-16 02:30:53
  42962. 13084 2005-08-19 10:27:25 3792 204 2005-08-26 07:32:25 2 2006-02-16 02:30:53
  42963. 13085 2005-08-19 10:28:22 360 215 2005-08-22 07:37:22 2 2006-02-16 02:30:53
  42964. 13086 2005-08-19 10:32:28 3712 350 2005-08-26 07:57:28 2 2006-02-16 02:30:53
  42965. 13087 2005-08-19 10:33:52 2693 171 2005-08-27 09:15:52 2 2006-02-16 02:30:53
  42966. 13088 2005-08-19 10:36:11 4281 457 2005-08-21 09:12:11 1 2006-02-16 02:30:53
  42967. 13089 2005-08-19 10:38:56 1783 63 2005-08-24 12:41:56 1 2006-02-16 02:30:53
  42968. 13090 2005-08-19 10:39:54 1447 52 2005-08-28 10:31:54 1 2006-02-16 02:30:53
  42969. 13091 2005-08-19 10:40:10 1815 127 2005-08-23 09:03:10 1 2006-02-16 02:30:53
  42970. 13092 2005-08-19 10:41:09 4359 480 2005-08-25 05:11:09 2 2006-02-16 02:30:53
  42971. 13093 2005-08-19 10:46:16 1667 160 2005-08-26 08:05:16 1 2006-02-16 02:30:53
  42972. 13094 2005-08-19 10:47:58 3178 494 2005-08-21 06:20:58 1 2006-02-16 02:30:53
  42973. 13095 2005-08-19 10:48:10 520 508 2005-08-28 06:15:10 1 2006-02-16 02:30:53
  42974. 13096 2005-08-19 10:49:03 420 13 2005-08-21 05:33:03 1 2006-02-16 02:30:53
  42975. 13097 2005-08-19 10:50:43 4194 157 2005-08-24 11:10:43 2 2006-02-16 02:30:53
  42976. 13098 2005-08-19 10:51:59 3770 51 2005-08-24 11:27:59 1 2006-02-16 02:30:53
  42977. 13099 2005-08-19 10:55:19 969 436 2005-08-27 10:54:19 1 2006-02-16 02:30:53
  42978. 13100 2005-08-19 10:55:45 916 451 2005-08-25 12:28:45 1 2006-02-16 02:30:53
  42979. 13101 2005-08-19 11:01:54 1804 39 2005-08-27 16:06:54 2 2006-02-16 02:30:53
  42980. 13102 2005-08-19 11:02:03 2885 285 2005-08-28 13:05:03 2 2006-02-16 02:30:53
  42981. 13103 2005-08-19 11:05:51 1751 274 2005-08-26 09:16:51 2 2006-02-16 02:30:53
  42982. 13104 2005-08-19 11:06:06 310 591 2005-08-21 13:50:06 2 2006-02-16 02:30:53
  42983. 13105 2005-08-19 11:06:16 729 279 2005-08-27 15:21:16 1 2006-02-16 02:30:53
  42984. 13106 2006-02-14 15:16:03 3212 440 \N 1 2006-02-16 02:30:53
  42985. 13107 2005-08-19 11:13:58 3870 356 2005-08-20 15:03:58 2 2006-02-16 02:30:53
  42986. 13108 2006-02-14 15:16:03 3630 73 \N 1 2006-02-16 02:30:53
  42987. 13109 2005-08-19 11:23:20 46 259 2005-08-25 17:05:20 1 2006-02-16 02:30:53
  42988. 13110 2005-08-19 11:24:37 62 447 2005-08-21 05:48:37 1 2006-02-16 02:30:53
  42989. 13111 2005-08-19 11:25:10 580 26 2005-08-21 05:52:10 2 2006-02-16 02:30:53
  42990. 13112 2005-08-19 11:27:10 2074 259 2005-08-22 05:32:10 1 2006-02-16 02:30:53
  42991. 13113 2005-08-19 11:27:20 2393 573 2005-08-23 12:40:20 1 2006-02-16 02:30:53
  42992. 13114 2005-08-19 11:27:32 4342 550 2005-08-28 11:21:32 2 2006-02-16 02:30:53
  42993. 13115 2005-08-19 11:27:43 1961 84 2005-08-20 10:58:43 1 2006-02-16 02:30:53
  42994. 13116 2005-08-19 11:31:41 1544 150 2005-08-27 16:05:41 1 2006-02-16 02:30:53
  42995. 13117 2005-08-19 11:33:20 3430 385 2005-08-20 11:55:20 2 2006-02-16 02:30:53
  42996. 13118 2005-08-19 11:39:58 470 181 2005-08-25 14:44:58 1 2006-02-16 02:30:53
  42997. 13119 2005-08-19 11:44:59 1401 240 2005-08-20 12:30:59 2 2006-02-16 02:30:53
  42998. 13120 2005-08-19 11:47:38 2273 314 2005-08-26 08:20:38 2 2006-02-16 02:30:53
  42999. 13121 2005-08-19 11:51:39 3517 251 2005-08-22 11:50:39 2 2006-02-16 02:30:53
  43000. 13122 2005-08-19 11:53:49 3319 277 2005-08-26 16:01:49 2 2006-02-16 02:30:53
  43001. 13123 2005-08-19 11:55:13 2804 220 2005-08-21 05:55:13 2 2006-02-16 02:30:53
  43002. 13124 2005-08-19 11:55:59 2105 78 2005-08-26 06:01:59 2 2006-02-16 02:30:53
  43003. 13125 2005-08-19 11:57:49 3722 192 2005-08-26 07:53:49 1 2006-02-16 02:30:53
  43004. 13126 2005-08-19 12:00:28 1392 253 2005-08-28 17:27:28 1 2006-02-16 02:30:53
  43005. 13127 2005-08-19 12:04:03 2582 178 2005-08-27 13:56:03 1 2006-02-16 02:30:53
  43006. 13128 2005-08-19 12:04:16 485 206 2005-08-26 16:06:16 2 2006-02-16 02:30:53
  43007. 13129 2005-08-19 12:05:04 4455 274 2005-08-26 10:24:04 1 2006-02-16 02:30:53
  43008. 13130 2005-08-19 12:06:42 2006 254 2005-08-23 12:08:42 1 2006-02-16 02:30:53
  43009. 13131 2005-08-19 12:08:13 1466 480 2005-08-27 13:43:13 2 2006-02-16 02:30:53
  43010. 13132 2005-08-19 12:10:57 1748 529 2005-08-27 12:22:57 2 2006-02-16 02:30:53
  43011. 13133 2005-08-19 12:11:03 1635 523 2005-08-28 12:36:03 2 2006-02-16 02:30:53
  43012. 13134 2005-08-19 12:14:14 1354 184 2005-08-20 11:52:14 1 2006-02-16 02:30:53
  43013. 13135 2005-08-19 12:22:52 1585 361 2005-08-21 14:04:52 2 2006-02-16 02:30:53
  43014. 13136 2005-08-19 12:24:23 2532 50 2005-08-28 08:37:23 2 2006-02-16 02:30:53
  43015. 13137 2005-08-19 12:26:32 4431 20 2005-08-22 13:26:32 1 2006-02-16 02:30:53
  43016. 13138 2005-08-19 12:30:01 3138 214 2005-08-21 06:35:01 2 2006-02-16 02:30:53
  43017. 13139 2005-08-19 12:32:10 2099 554 2005-08-24 12:12:10 1 2006-02-16 02:30:53
  43018. 13140 2005-08-19 12:35:56 4210 323 2005-08-27 18:24:56 2 2006-02-16 02:30:53
  43019. 13141 2005-08-19 12:41:41 4545 376 2005-08-21 08:17:41 2 2006-02-16 02:30:53
  43020. 13142 2005-08-19 12:42:28 1404 269 2005-08-26 14:52:28 1 2006-02-16 02:30:53
  43021. 13143 2005-08-19 12:44:38 1655 371 2005-08-25 10:59:38 2 2006-02-16 02:30:53
  43022. 13144 2005-08-19 12:45:55 3766 456 2005-08-27 10:37:55 2 2006-02-16 02:30:53
  43023. 13145 2005-08-19 12:53:53 1383 72 2005-08-23 08:06:53 1 2006-02-16 02:30:53
  43024. 13146 2005-08-19 12:54:42 1463 116 2005-08-26 07:31:42 1 2006-02-16 02:30:53
  43025. 13147 2005-08-19 12:55:09 3490 37 2005-08-22 18:10:09 1 2006-02-16 02:30:53
  43026. 13148 2005-08-19 12:55:30 1762 137 2005-08-21 11:01:30 1 2006-02-16 02:30:53
  43027. 13149 2005-08-19 13:07:12 1436 40 2005-08-28 18:12:12 1 2006-02-16 02:30:53
  43028. 13150 2005-08-19 13:08:19 1514 457 2005-08-25 18:00:19 1 2006-02-16 02:30:53
  43029. 13151 2005-08-19 13:08:23 3045 16 2005-08-20 12:38:23 2 2006-02-16 02:30:53
  43030. 13152 2005-08-19 13:09:32 3571 597 2005-08-25 14:47:32 1 2006-02-16 02:30:53
  43031. 13153 2005-08-19 13:09:47 3896 431 2005-08-23 17:35:47 2 2006-02-16 02:30:53
  43032. 13154 2005-08-19 13:09:54 2465 255 2005-08-26 16:40:54 1 2006-02-16 02:30:53
  43033. 13155 2005-08-19 13:10:23 290 442 2005-08-25 19:07:23 2 2006-02-16 02:30:53
  43034. 13156 2005-08-19 13:10:42 770 512 2005-08-25 15:08:42 2 2006-02-16 02:30:53
  43035. 13157 2005-08-19 13:12:28 4391 592 2005-08-20 10:41:28 1 2006-02-16 02:30:53
  43036. 13158 2005-08-19 13:18:10 944 327 2005-08-25 09:27:10 1 2006-02-16 02:30:53
  43037. 13159 2005-08-19 13:19:59 2300 497 2005-08-21 09:22:59 2 2006-02-16 02:30:53
  43038. 13160 2005-08-19 13:21:04 410 484 2005-08-22 18:49:04 1 2006-02-16 02:30:53
  43039. 13161 2006-02-14 15:16:03 986 175 \N 1 2006-02-16 02:30:53
  43040. 13162 2005-08-19 13:28:26 1845 478 2005-08-24 17:37:26 1 2006-02-16 02:30:53
  43041. 13163 2005-08-19 13:29:46 3068 57 2005-08-22 07:48:46 2 2006-02-16 02:30:53
  43042. 13164 2005-08-19 13:30:55 1104 145 2005-08-26 10:12:55 2 2006-02-16 02:30:53
  43043. 13165 2005-08-19 13:34:10 138 289 2005-08-21 18:33:10 2 2006-02-16 02:30:53
  43044. 13166 2005-08-19 13:36:28 4386 504 2005-08-22 07:57:28 1 2006-02-16 02:30:53
  43045. 13167 2005-08-19 13:36:41 557 120 2005-08-23 15:29:41 2 2006-02-16 02:30:53
  43046. 13168 2005-08-19 13:37:28 2210 186 2005-08-27 17:54:28 2 2006-02-16 02:30:53
  43047. 13169 2005-08-19 13:43:35 1709 141 2005-08-26 09:31:35 1 2006-02-16 02:30:53
  43048. 13170 2005-08-19 13:45:48 1072 176 2005-08-27 11:00:48 2 2006-02-16 02:30:53
  43049. 13171 2005-08-19 13:48:54 1765 122 2005-08-27 18:57:54 1 2006-02-16 02:30:53
  43050. 13172 2005-08-19 13:49:07 1301 298 2005-08-20 19:39:07 2 2006-02-16 02:30:53
  43051. 13173 2005-08-19 13:50:36 1304 29 2005-08-26 12:34:36 2 2006-02-16 02:30:53
  43052. 13174 2005-08-19 13:52:50 2303 482 2005-08-22 14:43:50 2 2006-02-16 02:30:53
  43053. 13175 2005-08-19 13:54:53 3187 239 2005-08-20 16:25:53 2 2006-02-16 02:30:53
  43054. 13176 2005-08-19 13:56:54 2269 1 2005-08-23 08:50:54 2 2006-02-16 02:30:53
  43055. 13177 2005-08-19 13:56:58 3172 126 2005-08-23 13:13:58 2 2006-02-16 02:30:53
  43056. 13178 2006-02-14 15:16:03 693 394 \N 1 2006-02-16 02:30:53
  43057. 13179 2005-08-19 13:59:53 1624 104 2005-08-25 12:10:53 1 2006-02-16 02:30:53
  43058. 13180 2005-08-19 14:00:38 3443 322 2005-08-20 09:56:38 1 2006-02-16 02:30:53
  43059. 13181 2005-08-19 14:00:56 1256 128 2005-08-24 13:52:56 2 2006-02-16 02:30:53
  43060. 13182 2006-02-14 15:16:03 364 496 \N 2 2006-02-16 02:30:53
  43061. 13183 2005-08-19 14:09:26 2404 301 2005-08-28 08:44:26 2 2006-02-16 02:30:53
  43062. 13184 2005-08-19 14:16:18 4395 393 2005-08-20 08:44:18 1 2006-02-16 02:30:53
  43063. 13185 2005-08-19 14:22:30 241 174 2005-08-20 10:13:30 2 2006-02-16 02:30:53
  43064. 13186 2005-08-19 14:23:19 2802 176 2005-08-28 11:26:19 1 2006-02-16 02:30:53
  43065. 13187 2005-08-19 14:24:48 1944 543 2005-08-20 19:37:48 1 2006-02-16 02:30:53
  43066. 13188 2005-08-19 14:27:03 583 472 2005-08-28 09:15:03 2 2006-02-16 02:30:53
  43067. 13189 2005-08-19 14:27:16 3444 368 2005-08-28 10:34:16 1 2006-02-16 02:30:53
  43068. 13190 2005-08-19 14:27:59 4316 290 2005-08-26 13:45:59 1 2006-02-16 02:30:53
  43069. 13191 2005-08-19 14:28:48 2753 371 2005-08-23 12:53:48 2 2006-02-16 02:30:53
  43070. 13192 2005-08-19 14:30:06 966 532 2005-08-27 15:20:06 1 2006-02-16 02:30:53
  43071. 13193 2005-08-19 14:33:45 523 118 2005-08-28 08:46:45 2 2006-02-16 02:30:53
  43072. 13194 2005-08-19 14:34:12 2473 58 2005-08-26 10:18:12 2 2006-02-16 02:30:53
  43073. 13195 2005-08-19 14:39:14 2537 565 2005-08-24 10:30:14 2 2006-02-16 02:30:53
  43074. 13196 2005-08-19 14:40:32 458 202 2005-08-26 18:15:32 2 2006-02-16 02:30:53
  43075. 13197 2005-08-19 14:44:03 3190 358 2005-08-22 10:11:03 1 2006-02-16 02:30:53
  43076. 13198 2005-08-19 14:47:18 4273 169 2005-08-21 18:09:18 2 2006-02-16 02:30:53
  43077. 13199 2005-08-19 14:53:22 4291 339 2005-08-27 19:03:22 2 2006-02-16 02:30:53
  43078. 13200 2005-08-19 14:55:58 2746 577 2005-08-27 11:35:58 2 2006-02-16 02:30:53
  43079. 13201 2005-08-19 14:56:05 111 508 2005-08-25 14:37:05 1 2006-02-16 02:30:53
  43080. 13202 2005-08-19 14:58:30 3546 381 2005-08-27 17:10:30 1 2006-02-16 02:30:53
  43081. 13203 2005-08-19 15:00:58 804 257 2005-08-27 15:38:58 2 2006-02-16 02:30:53
  43082. 13204 2005-08-19 15:02:48 4524 152 2005-08-24 18:07:48 1 2006-02-16 02:30:53
  43083. 13205 2005-08-19 15:05:26 2616 495 2005-08-25 10:41:26 2 2006-02-16 02:30:53
  43084. 13206 2005-08-19 15:05:34 2477 504 2005-08-21 20:37:34 2 2006-02-16 02:30:53
  43085. 13207 2005-08-19 15:14:38 674 58 2005-08-27 16:09:38 1 2006-02-16 02:30:53
  43086. 13208 2005-08-19 15:18:55 609 435 2005-08-24 11:59:55 1 2006-02-16 02:30:53
  43087. 13209 2006-02-14 15:16:03 1574 5 \N 2 2006-02-16 02:30:53
  43088. 13210 2005-08-19 15:23:38 2789 487 2005-08-21 11:57:38 1 2006-02-16 02:30:53
  43089. 13211 2005-08-19 15:23:41 1968 289 2005-08-22 16:58:41 1 2006-02-16 02:30:53
  43090. 13212 2005-08-19 15:24:07 3691 158 2005-08-24 21:03:07 1 2006-02-16 02:30:53
  43091. 13213 2005-08-19 15:25:48 1546 13 2005-08-22 09:32:48 1 2006-02-16 02:30:53
  43092. 13214 2005-08-19 15:31:06 2675 157 2005-08-20 19:58:06 2 2006-02-16 02:30:53
  43093. 13215 2005-08-19 15:35:38 3740 460 2005-08-27 12:16:38 1 2006-02-16 02:30:53
  43094. 13216 2005-08-19 15:36:05 4335 422 2005-08-25 19:03:05 2 2006-02-16 02:30:53
  43095. 13217 2005-08-19 15:38:39 616 565 2005-08-21 14:33:39 1 2006-02-16 02:30:53
  43096. 13218 2005-08-19 15:39:39 4148 257 2005-08-22 17:28:39 1 2006-02-16 02:30:53
  43097. 13219 2005-08-19 15:40:28 2075 288 2005-08-22 21:20:28 2 2006-02-16 02:30:53
  43098. 13220 2005-08-19 15:42:32 1017 448 2005-08-25 13:37:32 1 2006-02-16 02:30:53
  43099. 13221 2005-08-19 15:45:47 120 468 2005-08-26 21:10:47 1 2006-02-16 02:30:53
  43100. 13222 2005-08-19 15:47:58 1656 91 2005-08-26 12:43:58 1 2006-02-16 02:30:53
  43101. 13223 2005-08-19 15:52:04 332 461 2005-08-22 16:27:04 1 2006-02-16 02:30:53
  43102. 13224 2005-08-19 15:52:13 3086 526 2005-08-28 20:53:13 2 2006-02-16 02:30:53
  43103. 13225 2005-08-19 15:54:33 1420 562 2005-08-25 16:40:33 1 2006-02-16 02:30:53
  43104. 13226 2005-08-19 16:05:36 2850 46 2005-08-21 10:07:36 2 2006-02-16 02:30:53
  43105. 13227 2005-08-19 16:05:38 2759 288 2005-08-20 21:39:38 1 2006-02-16 02:30:53
  43106. 13228 2005-08-19 16:08:16 2497 571 2005-08-20 18:55:16 1 2006-02-16 02:30:53
  43107. 13229 2005-08-19 16:08:33 634 283 2005-08-22 19:54:33 2 2006-02-16 02:30:53
  43108. 13230 2005-08-19 16:12:07 3645 151 2005-08-21 12:19:07 1 2006-02-16 02:30:53
  43109. 13231 2005-08-19 16:12:49 2126 280 2005-08-27 17:14:49 2 2006-02-16 02:30:53
  43110. 13232 2005-08-19 16:13:32 2370 206 2005-08-28 14:42:32 2 2006-02-16 02:30:53
  43111. 13233 2005-08-19 16:14:41 1057 279 2005-08-24 21:13:41 1 2006-02-16 02:30:53
  43112. 13234 2005-08-19 16:17:15 976 559 2005-08-27 12:36:15 1 2006-02-16 02:30:53
  43113. 13235 2005-08-19 16:17:53 3902 367 2005-08-27 14:57:53 1 2006-02-16 02:30:53
  43114. 13236 2005-08-19 16:18:24 4574 267 2005-08-27 17:48:24 2 2006-02-16 02:30:53
  43115. 13237 2005-08-19 16:18:36 1272 169 2005-08-25 15:22:36 2 2006-02-16 02:30:53
  43116. 13238 2005-08-19 16:20:56 985 348 2005-08-23 15:51:56 2 2006-02-16 02:30:53
  43117. 13239 2005-08-19 16:22:13 3296 541 2005-08-23 19:26:13 1 2006-02-16 02:30:53
  43118. 13240 2005-08-19 16:22:14 1411 179 2005-08-20 13:24:14 1 2006-02-16 02:30:53
  43119. 13241 2005-08-19 16:25:00 3106 33 2005-08-26 12:27:00 2 2006-02-16 02:30:53
  43120. 13242 2005-08-19 16:28:47 230 414 2005-08-24 22:13:47 2 2006-02-16 02:30:53
  43121. 13243 2005-08-19 16:33:16 355 251 2005-08-25 13:19:16 2 2006-02-16 02:30:53
  43122. 13244 2005-08-19 16:43:04 3246 298 2005-08-22 15:21:04 2 2006-02-16 02:30:53
  43123. 13245 2005-08-19 16:43:41 1001 261 2005-08-20 21:17:41 1 2006-02-16 02:30:53
  43124. 13246 2006-02-14 15:16:03 1849 411 \N 2 2006-02-16 02:30:53
  43125. 13247 2005-08-19 16:45:59 1271 24 2005-08-25 15:25:59 1 2006-02-16 02:30:53
  43126. 13248 2005-08-19 16:47:41 2864 559 2005-08-28 18:11:41 2 2006-02-16 02:30:53
  43127. 13249 2005-08-19 16:47:41 3084 377 2005-08-20 13:30:41 1 2006-02-16 02:30:53
  43128. 13250 2005-08-19 16:47:55 2524 448 2005-08-26 16:54:55 2 2006-02-16 02:30:53
  43129. 13251 2005-08-19 16:48:37 4216 111 2005-08-20 16:33:37 1 2006-02-16 02:30:53
  43130. 13252 2005-08-19 16:50:50 775 451 2005-08-22 22:09:50 2 2006-02-16 02:30:53
  43131. 13253 2005-08-19 16:53:56 472 399 2005-08-20 11:38:56 2 2006-02-16 02:30:53
  43132. 13254 2005-08-19 16:54:01 3412 532 2005-08-27 19:50:01 2 2006-02-16 02:30:53
  43133. 13255 2005-08-19 16:54:12 1101 150 2005-08-28 17:00:12 1 2006-02-16 02:30:53
  43134. 13256 2005-08-19 16:54:12 2719 289 2005-08-28 16:54:12 1 2006-02-16 02:30:53
  43135. 13257 2005-08-19 17:01:20 164 300 2005-08-24 17:26:20 1 2006-02-16 02:30:53
  43136. 13258 2005-08-19 17:05:37 2246 349 2005-08-24 17:36:37 2 2006-02-16 02:30:53
  43137. 13259 2005-08-19 17:08:53 2518 458 2005-08-23 14:14:53 1 2006-02-16 02:30:53
  43138. 13260 2005-08-19 17:09:22 578 251 2005-08-24 21:31:22 2 2006-02-16 02:30:53
  43139. 13261 2006-02-14 15:16:03 3538 417 \N 1 2006-02-16 02:30:53
  43140. 13262 2005-08-19 17:20:15 4483 184 2005-08-26 18:28:15 2 2006-02-16 02:30:53
  43141. 13263 2005-08-19 17:26:55 214 206 2005-08-28 20:07:55 2 2006-02-16 02:30:53
  43142. 13264 2005-08-19 17:27:10 1881 109 2005-08-27 16:00:10 1 2006-02-16 02:30:53
  43143. 13265 2005-08-19 17:29:00 3933 314 2005-08-20 12:59:00 2 2006-02-16 02:30:53
  43144. 13266 2005-08-19 17:31:20 1326 571 2005-08-21 11:41:20 2 2006-02-16 02:30:53
  43145. 13267 2005-08-19 17:31:36 550 335 2005-08-21 13:47:36 1 2006-02-16 02:30:53
  43146. 13268 2005-08-19 17:33:50 1166 255 2005-08-25 17:15:50 2 2006-02-16 02:30:53
  43147. 13269 2005-08-19 17:34:00 2382 461 2005-08-20 15:17:00 2 2006-02-16 02:30:53
  43148. 13270 2005-08-19 17:41:16 405 159 2005-08-23 20:22:16 2 2006-02-16 02:30:53
  43149. 13271 2005-08-19 17:42:06 3872 242 2005-08-27 18:39:06 2 2006-02-16 02:30:53
  43150. 13272 2005-08-19 17:49:13 2531 145 2005-08-23 15:49:13 2 2006-02-16 02:30:53
  43151. 13273 2005-08-19 17:49:13 4181 433 2005-08-21 14:15:13 1 2006-02-16 02:30:53
  43152. 13274 2005-08-19 17:50:03 704 272 2005-08-20 14:39:03 2 2006-02-16 02:30:53
  43153. 13275 2005-08-19 17:53:38 710 377 2005-08-23 16:29:38 2 2006-02-16 02:30:53
  43154. 13276 2005-08-19 17:53:42 625 516 2005-08-28 20:49:42 2 2006-02-16 02:30:53
  43155. 13277 2005-08-19 17:57:35 3820 316 2005-08-25 15:45:35 2 2006-02-16 02:30:53
  43156. 13278 2005-08-19 17:57:53 2691 282 2005-08-22 23:16:53 1 2006-02-16 02:30:53
  43157. 13279 2005-08-19 18:02:18 2472 343 2005-08-24 22:15:18 2 2006-02-16 02:30:53
  43158. 13280 2005-08-19 18:02:51 218 368 2005-08-21 23:17:51 2 2006-02-16 02:30:53
  43159. 13281 2005-08-19 18:07:47 113 220 2005-08-20 21:51:47 2 2006-02-16 02:30:53
  43160. 13282 2005-08-19 18:08:18 4373 59 2005-08-24 14:08:18 1 2006-02-16 02:30:53
  43161. 13283 2005-08-19 18:10:19 2602 180 2005-08-23 16:09:19 2 2006-02-16 02:30:53
  43162. 13284 2005-08-19 18:12:31 2128 338 2005-08-25 21:26:31 2 2006-02-16 02:30:53
  43163. 13285 2005-08-19 18:18:44 2139 182 2005-08-20 12:33:44 1 2006-02-16 02:30:53
  43164. 13286 2005-08-19 18:28:07 2685 245 2005-08-22 17:23:07 2 2006-02-16 02:30:53
  43165. 13287 2005-08-19 18:28:24 2716 569 2005-08-26 20:13:24 2 2006-02-16 02:30:53
  43166. 13288 2005-08-19 18:30:10 3558 162 2005-08-20 19:20:10 2 2006-02-16 02:30:53
  43167. 13289 2005-08-19 18:31:30 3527 497 2005-08-20 13:43:30 1 2006-02-16 02:30:53
  43168. 13290 2005-08-19 18:31:50 4174 23 2005-08-25 15:49:50 2 2006-02-16 02:30:53
  43169. 13291 2005-08-19 18:32:11 1631 243 2005-08-20 18:22:11 2 2006-02-16 02:30:53
  43170. 13292 2005-08-19 18:35:32 1336 171 2005-08-22 00:27:32 1 2006-02-16 02:30:53
  43171. 13293 2005-08-19 18:35:52 380 399 2005-08-23 17:18:52 2 2006-02-16 02:30:53
  43172. 13294 2005-08-19 18:36:35 156 534 2005-08-20 13:57:35 1 2006-02-16 02:30:53
  43173. 13295 2006-02-14 15:16:03 2408 229 \N 1 2006-02-16 02:30:53
  43174. 13296 2005-08-19 18:43:53 1728 300 2005-08-21 23:30:53 2 2006-02-16 02:30:53
  43175. 13297 2005-08-19 18:45:49 3818 359 2005-08-22 14:58:49 2 2006-02-16 02:30:53
  43176. 13298 2006-02-14 15:16:03 2133 361 \N 2 2006-02-16 02:30:53
  43177. 13299 2005-08-19 18:46:33 4385 373 2005-08-22 20:45:33 1 2006-02-16 02:30:53
  43178. 13300 2005-08-19 18:46:56 842 531 2005-08-28 20:23:56 2 2006-02-16 02:30:53
  43179. 13301 2005-08-19 18:53:15 2261 494 2005-08-26 21:37:15 1 2006-02-16 02:30:53
  43180. 13302 2005-08-19 18:54:26 4041 51 2005-08-21 23:01:26 1 2006-02-16 02:30:53
  43181. 13303 2005-08-19 18:55:21 34 184 2005-08-23 18:49:21 2 2006-02-16 02:30:53
  43182. 13304 2005-08-19 18:56:32 2979 405 2005-08-23 20:04:32 2 2006-02-16 02:30:53
  43183. 13305 2005-08-19 18:57:05 2386 337 2005-08-28 22:28:05 1 2006-02-16 02:30:53
  43184. 13306 2005-08-19 18:57:29 2742 229 2005-08-20 20:09:29 2 2006-02-16 02:30:53
  43185. 13307 2005-08-19 18:58:44 2242 547 2005-08-22 00:15:44 1 2006-02-16 02:30:53
  43186. 13308 2005-08-19 18:59:42 3189 414 2005-08-28 13:21:42 2 2006-02-16 02:30:53
  43187. 13309 2005-08-19 19:04:00 2108 91 2005-08-28 23:08:00 2 2006-02-16 02:30:53
  43188. 13310 2005-08-19 19:05:16 2563 311 2005-08-23 22:47:16 1 2006-02-16 02:30:53
  43189. 13311 2005-08-19 19:07:09 3890 520 2005-08-20 23:07:09 1 2006-02-16 02:30:53
  43190. 13312 2005-08-19 19:09:14 2891 418 2005-08-23 00:50:14 2 2006-02-16 02:30:53
  43191. 13313 2005-08-19 19:11:41 3709 580 2005-08-21 23:53:41 2 2006-02-16 02:30:53
  43192. 13314 2005-08-19 19:12:43 2899 347 2005-08-27 00:20:43 2 2006-02-16 02:30:53
  43193. 13315 2005-08-19 19:16:18 3151 54 2005-08-21 20:58:18 1 2006-02-16 02:30:53
  43194. 13316 2005-08-19 19:23:30 4450 10 2005-08-22 23:37:30 1 2006-02-16 02:30:53
  43195. 13317 2005-08-19 19:25:42 3349 20 2005-08-20 20:57:42 2 2006-02-16 02:30:53
  43196. 13318 2005-08-19 19:33:57 1389 413 2005-08-21 17:52:57 2 2006-02-16 02:30:53
  43197. 13319 2005-08-19 19:35:13 2496 438 2005-08-27 17:59:13 1 2006-02-16 02:30:53
  43198. 13320 2005-08-19 19:35:33 4522 172 2005-08-24 20:09:33 2 2006-02-16 02:30:53
  43199. 13321 2005-08-19 19:40:37 4183 280 2005-08-21 19:09:37 2 2006-02-16 02:30:53
  43200. 13322 2005-08-19 19:43:08 2149 559 2005-08-24 16:30:08 2 2006-02-16 02:30:53
  43201. 13323 2005-08-19 19:48:07 1055 133 2005-08-23 15:28:07 1 2006-02-16 02:30:53
  43202. 13324 2005-08-19 19:51:00 4349 564 2005-08-20 20:26:00 1 2006-02-16 02:30:53
  43203. 13325 2005-08-19 19:52:02 2388 334 2005-08-22 21:14:02 1 2006-02-16 02:30:53
  43204. 13326 2005-08-19 19:52:52 429 576 2005-08-20 18:56:52 1 2006-02-16 02:30:53
  43205. 13327 2005-08-19 19:55:45 1808 72 2005-08-22 15:05:45 2 2006-02-16 02:30:53
  43206. 13328 2005-08-19 19:56:01 605 462 2005-08-20 22:16:01 2 2006-02-16 02:30:53
  43207. 13329 2005-08-19 19:56:55 3136 373 2005-08-25 01:19:55 2 2006-02-16 02:30:53
  43208. 13330 2005-08-19 19:59:21 4276 297 2005-08-20 15:34:21 2 2006-02-16 02:30:53
  43209. 13331 2005-08-19 20:00:25 3867 23 2005-08-21 17:03:25 1 2006-02-16 02:30:53
  43210. 13332 2005-08-19 20:00:51 3144 503 2005-08-25 14:30:51 1 2006-02-16 02:30:53
  43211. 13333 2006-02-14 15:16:03 1092 64 \N 2 2006-02-16 02:30:53
  43212. 13334 2005-08-19 20:02:33 461 379 2005-08-22 00:45:33 1 2006-02-16 02:30:53
  43213. 13335 2005-08-19 20:03:18 1861 74 2005-08-24 20:09:18 2 2006-02-16 02:30:53
  43214. 13336 2005-08-19 20:03:22 1011 289 2005-08-24 23:42:22 1 2006-02-16 02:30:53
  43215. 13337 2005-08-19 20:06:57 3584 374 2005-08-20 16:31:57 1 2006-02-16 02:30:53
  43216. 13338 2005-08-19 20:09:59 3739 86 2005-08-23 22:59:59 2 2006-02-16 02:30:53
  43217. 13339 2005-08-19 20:18:36 1428 15 2005-08-28 21:34:36 1 2006-02-16 02:30:53
  43218. 13340 2005-08-19 20:18:39 4358 45 2005-08-28 21:06:39 2 2006-02-16 02:30:53
  43219. 13341 2005-08-19 20:18:53 1749 460 2005-08-27 14:36:53 1 2006-02-16 02:30:53
  43220. 13342 2005-08-19 20:21:36 3476 172 2005-08-21 16:26:36 1 2006-02-16 02:30:53
  43221. 13343 2005-08-19 20:22:08 1032 591 2005-08-27 17:21:08 1 2006-02-16 02:30:53
  43222. 13344 2005-08-19 20:22:44 4392 514 2005-08-25 18:39:44 1 2006-02-16 02:30:53
  43223. 13345 2005-08-19 20:25:24 47 55 2005-08-27 20:38:24 1 2006-02-16 02:30:53
  43224. 13346 2005-08-19 20:28:21 4541 131 2005-08-28 00:28:21 2 2006-02-16 02:30:53
  43225. 13347 2005-08-19 20:28:48 4038 562 2005-08-28 19:33:48 2 2006-02-16 02:30:53
  43226. 13348 2005-08-19 20:31:48 275 456 2005-08-21 21:01:48 1 2006-02-16 02:30:53
  43227. 13349 2005-08-19 20:43:16 4262 234 2005-08-20 16:21:16 1 2006-02-16 02:30:53
  43228. 13350 2005-08-19 20:44:00 3523 214 2005-08-27 01:23:00 2 2006-02-16 02:30:53
  43229. 13351 2006-02-14 15:16:03 4130 42 \N 2 2006-02-16 02:30:53
  43230. 13352 2005-08-19 20:51:40 2689 80 2005-08-24 01:22:40 1 2006-02-16 02:30:53
  43231. 13353 2005-08-19 20:53:43 2790 131 2005-08-25 01:25:43 1 2006-02-16 02:30:53
  43232. 13354 2005-08-19 20:55:23 1356 213 2005-08-27 20:09:23 2 2006-02-16 02:30:53
  43233. 13355 2005-08-19 20:59:19 585 396 2005-08-23 21:44:19 1 2006-02-16 02:30:53
  43234. 13356 2005-08-19 21:02:21 2713 324 2005-08-24 00:31:21 1 2006-02-16 02:30:53
  43235. 13357 2005-08-19 21:02:59 3295 393 2005-08-25 23:46:59 2 2006-02-16 02:30:53
  43236. 13358 2005-08-19 21:04:20 1510 439 2005-08-24 20:49:20 2 2006-02-16 02:30:53
  43237. 13359 2005-08-19 21:04:49 4175 434 2005-08-27 01:46:49 1 2006-02-16 02:30:53
  43238. 13360 2005-08-19 21:05:11 3396 327 2005-08-24 16:05:11 2 2006-02-16 02:30:53
  43239. 13361 2005-08-19 21:07:22 4289 107 2005-08-21 21:26:22 2 2006-02-16 02:30:53
  43240. 13362 2005-08-19 21:07:54 869 565 2005-08-20 17:29:54 2 2006-02-16 02:30:53
  43241. 13363 2005-08-19 21:07:59 588 288 2005-08-21 17:08:59 1 2006-02-16 02:30:53
  43242. 13364 2005-08-19 21:09:30 2773 236 2005-08-25 18:37:30 1 2006-02-16 02:30:53
  43243. 13365 2005-08-19 21:12:37 4136 307 2005-08-25 19:56:37 2 2006-02-16 02:30:53
  43244. 13366 2005-08-19 21:14:45 602 259 2005-08-21 03:06:45 1 2006-02-16 02:30:53
  43245. 13367 2005-08-19 21:19:27 4569 290 2005-08-24 15:22:27 2 2006-02-16 02:30:53
  43246. 13368 2005-08-19 21:19:35 1073 342 2005-08-21 16:12:35 2 2006-02-16 02:30:53
  43247. 13369 2005-08-19 21:19:47 2728 116 2005-08-24 23:25:47 1 2006-02-16 02:30:53
  43248. 13370 2005-08-19 21:20:11 239 101 2005-08-25 22:51:11 1 2006-02-16 02:30:53
  43249. 13371 2005-08-19 21:21:47 3401 34 2005-08-26 16:17:47 2 2006-02-16 02:30:53
  43250. 13372 2005-08-19 21:23:19 3366 150 2005-08-24 22:12:19 1 2006-02-16 02:30:53
  43251. 13373 2005-08-19 21:23:31 4045 7 2005-08-25 22:38:31 1 2006-02-16 02:30:53
  43252. 13374 2006-02-14 15:16:03 2721 227 \N 1 2006-02-16 02:30:53
  43253. 13375 2005-08-19 21:31:31 949 120 2005-08-29 00:17:31 1 2006-02-16 02:30:53
  43254. 13376 2005-08-19 21:31:45 898 40 2005-08-22 01:14:45 2 2006-02-16 02:30:53
  43255. 13377 2005-08-19 21:32:23 1316 572 2005-08-25 22:24:23 1 2006-02-16 02:30:53
  43256. 13378 2005-08-19 21:33:35 2708 368 2005-08-20 22:47:35 1 2006-02-16 02:30:53
  43257. 13379 2005-08-19 21:33:39 1623 227 2005-08-22 21:00:39 1 2006-02-16 02:30:53
  43258. 13380 2005-08-19 21:36:58 4250 451 2005-08-22 23:55:58 1 2006-02-16 02:30:53
  43259. 13381 2005-08-19 21:37:57 2823 21 2005-08-21 18:07:57 2 2006-02-16 02:30:53
  43260. 13382 2005-08-19 21:38:41 3720 436 2005-08-28 15:49:41 1 2006-02-16 02:30:53
  43261. 13383 2005-08-19 21:38:44 3193 434 2005-08-28 23:22:44 2 2006-02-16 02:30:53
  43262. 13384 2005-08-19 21:38:51 1462 440 2005-08-23 17:55:51 1 2006-02-16 02:30:53
  43263. 13385 2005-08-19 21:39:35 4323 252 2005-08-22 22:38:35 2 2006-02-16 02:30:53
  43264. 13386 2005-08-19 21:43:58 4476 324 2005-08-24 20:29:58 2 2006-02-16 02:30:53
  43265. 13387 2005-08-19 21:46:10 123 504 2005-08-24 01:16:10 1 2006-02-16 02:30:53
  43266. 13388 2005-08-19 21:46:49 942 317 2005-08-27 16:18:49 1 2006-02-16 02:30:53
  43267. 13389 2005-08-19 21:52:51 3352 257 2005-08-25 02:38:51 1 2006-02-16 02:30:53
  43268. 13390 2006-02-14 15:16:03 2855 135 \N 1 2006-02-16 02:30:53
  43269. 13391 2005-08-19 22:01:42 4220 16 2005-08-24 22:20:42 2 2006-02-16 02:30:53
  43270. 13392 2005-08-19 22:03:22 692 409 2005-08-28 19:27:22 1 2006-02-16 02:30:53
  43271. 13393 2005-08-19 22:03:46 958 15 2005-08-28 19:19:46 2 2006-02-16 02:30:53
  43272. 13394 2005-08-19 22:05:19 2597 45 2005-08-21 23:53:19 1 2006-02-16 02:30:53
  43273. 13395 2005-08-19 22:05:40 53 80 2005-08-22 01:31:40 2 2006-02-16 02:30:53
  43274. 13396 2005-08-19 22:06:09 4169 517 2005-08-23 23:26:09 2 2006-02-16 02:30:53
  43275. 13397 2005-08-19 22:06:35 3863 379 2005-08-29 01:11:35 2 2006-02-16 02:30:53
  43276. 13398 2005-08-19 22:08:48 3376 405 2005-08-23 03:24:48 1 2006-02-16 02:30:53
  43277. 13399 2005-08-19 22:09:28 2309 21 2005-08-25 20:25:28 2 2006-02-16 02:30:53
  43278. 13400 2005-08-19 22:11:44 2173 179 2005-08-20 23:27:44 2 2006-02-16 02:30:53
  43279. 13401 2005-08-19 22:16:16 488 139 2005-08-25 19:01:16 2 2006-02-16 02:30:53
  43280. 13402 2005-08-19 22:16:53 3264 372 2005-08-22 22:28:53 1 2006-02-16 02:30:53
  43281. 13403 2005-08-19 22:18:07 3241 3 2005-08-27 19:23:07 1 2006-02-16 02:30:53
  43282. 13404 2005-08-19 22:18:42 416 414 2005-08-23 16:29:42 2 2006-02-16 02:30:53
  43283. 13405 2005-08-19 22:20:49 1554 181 2005-08-28 21:21:49 1 2006-02-16 02:30:53
  43284. 13406 2005-08-19 22:22:01 3031 113 2005-08-22 18:16:01 1 2006-02-16 02:30:53
  43285. 13407 2005-08-19 22:26:26 2512 131 2005-08-22 16:34:26 1 2006-02-16 02:30:53
  43286. 13408 2005-08-19 22:34:51 2795 575 2005-08-21 03:30:51 1 2006-02-16 02:30:53
  43287. 13409 2005-08-19 22:36:26 873 214 2005-08-22 01:52:26 2 2006-02-16 02:30:53
  43288. 13410 2005-08-19 22:41:44 1421 104 2005-08-26 18:05:44 2 2006-02-16 02:30:53
  43289. 13411 2005-08-19 22:43:38 4425 21 2005-08-26 18:29:38 2 2006-02-16 02:30:53
  43290. 13412 2005-08-19 22:46:35 2806 404 2005-08-26 18:06:35 1 2006-02-16 02:30:53
  43291. 13413 2005-08-19 22:46:46 1501 390 2005-08-24 22:52:46 1 2006-02-16 02:30:53
  43292. 13414 2005-08-19 22:47:34 4126 438 2005-08-21 02:50:34 1 2006-02-16 02:30:53
  43293. 13415 2005-08-19 22:48:09 1105 181 2005-08-25 02:09:09 1 2006-02-16 02:30:53
  43294. 13416 2005-08-19 22:48:48 1075 204 2005-08-21 22:09:48 2 2006-02-16 02:30:53
  43295. 13417 2005-08-19 22:51:39 92 468 2005-08-23 03:34:39 1 2006-02-16 02:30:53
  43296. 13418 2005-08-19 22:53:56 2113 246 2005-08-28 02:05:56 2 2006-02-16 02:30:53
  43297. 13419 2006-02-14 15:16:03 3507 537 \N 1 2006-02-16 02:30:53
  43298. 13420 2005-08-19 22:57:25 1796 102 2005-08-28 22:46:25 1 2006-02-16 02:30:53
  43299. 13421 2006-02-14 15:16:03 9 366 \N 1 2006-02-16 02:30:53
  43300. 13422 2005-08-19 23:07:24 3835 404 2005-08-28 04:12:24 2 2006-02-16 02:30:53
  43301. 13423 2005-08-19 23:07:42 546 311 2005-08-26 20:45:42 1 2006-02-16 02:30:53
  43302. 13424 2005-08-19 23:10:09 4340 216 2005-08-23 02:25:09 1 2006-02-16 02:30:53
  43303. 13425 2005-08-19 23:11:44 2274 340 2005-08-25 21:19:44 2 2006-02-16 02:30:53
  43304. 13426 2005-08-19 23:15:00 3409 213 2005-08-21 01:53:00 2 2006-02-16 02:30:53
  43305. 13427 2005-08-19 23:19:02 3120 239 2005-08-21 18:30:02 1 2006-02-16 02:30:53
  43306. 13428 2006-02-14 15:16:03 106 44 \N 2 2006-02-16 02:30:53
  43307. 13429 2005-08-19 23:25:37 3677 23 2005-08-28 01:04:37 2 2006-02-16 02:30:53
  43308. 13430 2005-08-19 23:25:43 2852 381 2005-08-22 18:41:43 1 2006-02-16 02:30:53
  43309. 13431 2005-08-19 23:28:15 1700 229 2005-08-25 04:44:15 1 2006-02-16 02:30:53
  43310. 13432 2005-08-19 23:29:06 2216 78 2005-08-23 00:57:06 1 2006-02-16 02:30:53
  43311. 13433 2005-08-19 23:30:53 1647 171 2005-08-22 05:18:53 2 2006-02-16 02:30:53
  43312. 13434 2005-08-19 23:34:26 2073 221 2005-08-23 18:33:26 1 2006-02-16 02:30:53
  43313. 13435 2005-08-19 23:35:44 3919 30 2005-08-24 18:14:44 2 2006-02-16 02:30:53
  43314. 13436 2005-08-19 23:36:25 2499 29 2005-08-23 18:38:25 1 2006-02-16 02:30:53
  43315. 13437 2005-08-19 23:37:52 2292 67 2005-08-28 22:17:52 1 2006-02-16 02:30:53
  43316. 13438 2005-08-19 23:38:02 1750 520 2005-08-26 21:36:02 1 2006-02-16 02:30:53
  43317. 13439 2005-08-19 23:42:16 3535 551 2005-08-26 21:24:16 2 2006-02-16 02:30:53
  43318. 13440 2005-08-19 23:42:52 2842 260 2005-08-25 19:19:52 1 2006-02-16 02:30:53
  43319. 13441 2005-08-19 23:48:23 3188 125 2005-08-28 23:47:23 1 2006-02-16 02:30:53
  43320. 13442 2005-08-19 23:50:45 2432 356 2005-08-27 22:01:45 2 2006-02-16 02:30:53
  43321. 13443 2005-08-19 23:53:42 3161 236 2005-08-28 05:37:42 1 2006-02-16 02:30:53
  43322. 13444 2005-08-20 00:00:24 2564 37 2005-08-21 05:59:24 2 2006-02-16 02:30:53
  43323. 13445 2005-08-20 00:05:33 1630 495 2005-08-21 21:20:33 1 2006-02-16 02:30:53
  43324. 13446 2005-08-20 00:06:13 3226 488 2005-08-22 19:56:13 1 2006-02-16 02:30:53
  43325. 13447 2005-08-20 00:09:36 285 542 2005-08-25 01:22:36 1 2006-02-16 02:30:53
  43326. 13448 2005-08-20 00:12:43 2870 327 2005-08-25 02:33:43 1 2006-02-16 02:30:53
  43327. 13449 2005-08-20 00:17:01 1297 400 2005-08-23 20:42:01 2 2006-02-16 02:30:53
  43328. 13450 2005-08-20 00:18:15 135 61 2005-08-24 19:36:15 1 2006-02-16 02:30:53
  43329. 13451 2005-08-20 00:18:25 3837 6 2005-08-29 01:08:25 1 2006-02-16 02:30:53
  43330. 13452 2005-08-20 00:20:07 2449 430 2005-08-25 05:43:07 1 2006-02-16 02:30:53
  43331. 13453 2005-08-20 00:30:51 2203 164 2005-08-28 18:43:51 2 2006-02-16 02:30:53
  43332. 13454 2005-08-20 00:30:52 1553 430 2005-08-27 19:45:52 2 2006-02-16 02:30:53
  43333. 13455 2005-08-20 00:32:17 1315 133 2005-08-26 19:33:17 1 2006-02-16 02:30:53
  43334. 13456 2005-08-20 00:33:19 1644 13 2005-08-22 01:47:19 1 2006-02-16 02:30:53
  43335. 13457 2005-08-20 00:33:22 1220 256 2005-08-26 21:37:22 2 2006-02-16 02:30:53
  43336. 13458 2005-08-20 00:35:30 4223 228 2005-08-21 20:51:30 1 2006-02-16 02:30:53
  43337. 13459 2005-08-20 00:45:40 3666 114 2005-08-29 02:53:40 2 2006-02-16 02:30:53
  43338. 13460 2005-08-20 00:48:24 244 410 2005-08-28 04:13:24 2 2006-02-16 02:30:53
  43339. 13461 2005-08-20 00:49:04 2621 421 2005-08-28 02:49:04 2 2006-02-16 02:30:53
  43340. 13462 2005-08-20 00:49:19 3865 489 2005-08-26 06:21:19 2 2006-02-16 02:30:53
  43341. 13463 2005-08-20 00:50:54 510 21 2005-08-28 23:00:54 1 2006-02-16 02:30:53
  43342. 13464 2006-02-14 15:16:03 4292 576 \N 1 2006-02-16 02:30:53
  43343. 13465 2005-08-20 00:54:14 1305 575 2005-08-21 20:55:14 2 2006-02-16 02:30:53
  43344. 13466 2005-08-20 00:55:16 3088 262 2005-08-22 22:48:16 1 2006-02-16 02:30:53
  43345. 13467 2005-08-20 00:56:44 696 373 2005-08-20 20:16:44 1 2006-02-16 02:30:53
  43346. 13468 2005-08-20 00:56:44 1851 266 2005-08-29 06:26:44 1 2006-02-16 02:30:53
  43347. 13469 2005-08-20 00:59:36 1410 235 2005-08-24 22:41:36 1 2006-02-16 02:30:53
  43348. 13470 2005-08-20 01:01:16 3097 141 2005-08-21 03:19:16 1 2006-02-16 02:30:53
  43349. 13471 2005-08-20 01:02:26 1391 296 2005-08-25 06:37:26 2 2006-02-16 02:30:53
  43350. 13472 2005-08-20 01:03:31 3074 137 2005-08-28 02:54:31 1 2006-02-16 02:30:53
  43351. 13473 2005-08-20 01:03:50 381 390 2005-08-22 02:33:50 2 2006-02-16 02:30:53
  43352. 13474 2005-08-20 01:04:32 1209 116 2005-08-21 20:26:32 2 2006-02-16 02:30:53
  43353. 13475 2005-08-20 01:05:05 3214 68 2005-08-20 20:22:05 2 2006-02-16 02:30:53
  43354. 13476 2005-08-20 01:06:04 2866 7 2005-08-24 23:56:04 1 2006-02-16 02:30:53
  43355. 13477 2005-08-20 01:07:00 1442 222 2005-08-26 02:47:00 1 2006-02-16 02:30:53
  43356. 13478 2005-08-20 01:07:14 2190 466 2005-08-22 03:41:14 1 2006-02-16 02:30:53
  43357. 13479 2005-08-20 01:09:11 1262 87 2005-08-26 05:35:11 2 2006-02-16 02:30:53
  43358. 13480 2005-08-20 01:10:27 206 16 2005-08-27 22:18:27 2 2006-02-16 02:30:53
  43359. 13481 2005-08-20 01:11:12 2678 157 2005-08-26 23:07:12 2 2006-02-16 02:30:53
  43360. 13482 2005-08-20 01:14:30 1627 183 2005-08-24 04:57:30 1 2006-02-16 02:30:53
  43361. 13483 2005-08-20 01:16:38 2550 441 2005-08-21 20:43:38 2 2006-02-16 02:30:53
  43362. 13484 2005-08-20 01:16:52 1533 152 2005-08-22 23:47:52 2 2006-02-16 02:30:53
  43363. 13485 2005-08-20 01:20:14 3802 379 2005-08-22 01:28:14 2 2006-02-16 02:30:53
  43364. 13486 2006-02-14 15:16:03 4460 274 \N 1 2006-02-16 02:30:53
  43365. 13487 2005-08-20 01:27:05 2609 458 2005-08-24 00:41:05 2 2006-02-16 02:30:53
  43366. 13488 2005-08-20 01:28:42 867 444 2005-08-25 06:17:42 2 2006-02-16 02:30:53
  43367. 13489 2005-08-20 01:29:06 2934 443 2005-08-27 21:11:06 1 2006-02-16 02:30:53
  43368. 13490 2005-08-20 01:29:29 238 18 2005-08-21 22:36:29 2 2006-02-16 02:30:53
  43369. 13491 2005-08-20 01:30:56 2503 258 2005-08-28 23:26:56 2 2006-02-16 02:30:53
  43370. 13492 2005-08-20 01:32:04 1155 462 2005-08-29 02:14:04 2 2006-02-16 02:30:53
  43371. 13493 2005-08-20 01:33:36 2927 37 2005-08-24 06:32:36 1 2006-02-16 02:30:53
  43372. 13494 2005-08-20 01:36:34 1632 414 2005-08-21 06:52:34 1 2006-02-16 02:30:53
  43373. 13495 2005-08-20 01:40:25 3881 92 2005-08-23 06:32:25 2 2006-02-16 02:30:53
  43374. 13496 2005-08-20 01:42:29 3040 454 2005-08-29 06:47:29 2 2006-02-16 02:30:53
  43375. 13497 2005-08-20 01:46:38 1296 481 2005-08-26 05:37:38 2 2006-02-16 02:30:53
  43376. 13498 2005-08-20 01:51:23 1603 578 2005-08-24 05:32:23 1 2006-02-16 02:30:53
  43377. 13499 2005-08-20 01:52:30 1893 300 2005-08-28 04:57:30 1 2006-02-16 02:30:53
  43378. 13500 2005-08-20 01:54:39 1353 577 2005-08-25 21:23:39 1 2006-02-16 02:30:53
  43379. 13501 2005-08-20 01:56:20 4369 390 2005-08-22 23:07:20 2 2006-02-16 02:30:53
  43380. 13502 2005-08-20 01:58:15 1324 309 2005-08-21 20:21:15 1 2006-02-16 02:30:53
  43381. 13503 2005-08-20 02:00:33 453 15 2005-08-28 21:03:33 1 2006-02-16 02:30:53
  43382. 13504 2005-08-20 02:01:48 4322 293 2005-08-25 21:52:48 2 2006-02-16 02:30:53
  43383. 13505 2005-08-20 02:05:57 914 536 2005-08-23 05:52:57 1 2006-02-16 02:30:53
  43384. 13506 2005-08-20 02:07:06 1334 261 2005-08-26 08:06:06 1 2006-02-16 02:30:53
  43385. 13507 2005-08-20 02:10:27 3324 478 2005-08-23 04:03:27 2 2006-02-16 02:30:53
  43386. 13508 2005-08-20 02:12:54 4120 408 2005-08-28 21:47:54 2 2006-02-16 02:30:53
  43387. 13509 2005-08-20 02:14:16 3698 128 2005-08-22 06:36:16 2 2006-02-16 02:30:53
  43388. 13510 2005-08-20 02:18:30 691 107 2005-08-27 01:33:30 1 2006-02-16 02:30:53
  43389. 13511 2005-08-20 02:21:40 2973 23 2005-08-21 03:26:40 1 2006-02-16 02:30:53
  43390. 13512 2005-08-20 02:27:13 4508 62 2005-08-28 04:40:13 2 2006-02-16 02:30:53
  43391. 13513 2005-08-20 02:27:53 1653 454 2005-08-22 06:10:53 1 2006-02-16 02:30:53
  43392. 13514 2005-08-20 02:28:09 3407 96 2005-08-25 00:41:09 1 2006-02-16 02:30:53
  43393. 13515 2005-08-20 02:29:47 3438 194 2005-08-23 08:12:47 2 2006-02-16 02:30:53
  43394. 13516 2005-08-20 02:32:45 4286 95 2005-08-27 04:38:45 1 2006-02-16 02:30:53
  43395. 13517 2005-08-20 02:33:17 533 186 2005-08-23 22:40:17 2 2006-02-16 02:30:53
  43396. 13518 2005-08-20 02:36:17 352 528 2005-08-24 08:06:17 1 2006-02-16 02:30:53
  43397. 13519 2005-08-20 02:37:07 182 12 2005-08-23 01:26:07 2 2006-02-16 02:30:53
  43398. 13520 2005-08-20 02:41:46 3326 74 2005-08-22 01:53:46 1 2006-02-16 02:30:53
  43399. 13521 2005-08-20 02:42:28 2586 384 2005-08-22 06:12:28 1 2006-02-16 02:30:53
  43400. 13522 2005-08-20 02:44:06 2940 343 2005-08-28 05:30:06 1 2006-02-16 02:30:53
  43401. 13523 2005-08-20 02:47:03 163 572 2005-08-28 07:43:03 1 2006-02-16 02:30:53
  43402. 13524 2005-08-20 02:48:43 4557 593 2005-08-27 03:14:43 2 2006-02-16 02:30:53
  43403. 13525 2005-08-20 02:50:44 3514 111 2005-08-26 22:58:44 2 2006-02-16 02:30:53
  43404. 13526 2005-08-20 02:58:42 1966 277 2005-08-27 22:36:42 2 2006-02-16 02:30:53
  43405. 13527 2005-08-20 03:00:47 4424 521 2005-08-25 01:03:47 1 2006-02-16 02:30:53
  43406. 13528 2005-08-20 03:03:31 1847 202 2005-08-26 03:09:31 1 2006-02-16 02:30:53
  43407. 13529 2005-08-20 03:07:47 1979 193 2005-08-21 21:50:47 1 2006-02-16 02:30:53
  43408. 13530 2005-08-20 03:12:43 597 156 2005-08-23 09:01:43 2 2006-02-16 02:30:53
  43409. 13531 2005-08-20 03:26:10 2778 156 2005-08-25 03:41:10 1 2006-02-16 02:30:53
  43410. 13532 2005-08-20 03:29:28 1433 168 2005-08-23 22:53:28 2 2006-02-16 02:30:53
  43411. 13533 2005-08-20 03:30:00 1801 436 2005-08-27 05:53:00 1 2006-02-16 02:30:53
  43412. 13534 2006-02-14 15:16:03 2476 75 \N 1 2006-02-16 02:30:53
  43413. 13535 2005-08-20 03:30:25 1563 86 2005-08-28 04:35:25 1 2006-02-16 02:30:53
  43414. 13536 2005-08-20 03:35:16 667 183 2005-08-25 04:06:16 2 2006-02-16 02:30:53
  43415. 13537 2005-08-20 03:39:15 2521 418 2005-08-23 22:03:15 2 2006-02-16 02:30:53
  43416. 13538 2006-02-14 15:16:03 581 279 \N 1 2006-02-16 02:30:53
  43417. 13539 2005-08-20 03:40:27 3110 518 2005-08-27 07:15:27 1 2006-02-16 02:30:53
  43418. 13540 2005-08-20 03:41:23 3785 557 2005-08-27 09:09:23 2 2006-02-16 02:30:53
  43419. 13541 2005-08-20 03:41:41 1363 15 2005-08-24 23:14:41 1 2006-02-16 02:30:53
  43420. 13542 2005-08-20 03:41:57 4543 147 2005-08-29 03:21:57 2 2006-02-16 02:30:53
  43421. 13543 2005-08-20 03:43:13 2142 163 2005-08-29 07:14:13 2 2006-02-16 02:30:53
  43422. 13544 2005-08-20 03:44:26 58 538 2005-08-27 22:11:26 1 2006-02-16 02:30:53
  43423. 13545 2005-08-20 03:50:15 615 417 2005-08-27 22:24:15 1 2006-02-16 02:30:53
  43424. 13546 2005-08-20 03:50:24 2492 390 2005-08-28 03:04:24 2 2006-02-16 02:30:53
  43425. 13547 2005-08-20 03:53:16 3122 456 2005-08-25 04:02:16 1 2006-02-16 02:30:53
  43426. 13548 2005-08-20 03:53:20 4389 319 2005-08-27 21:54:20 1 2006-02-16 02:30:53
  43427. 13549 2005-08-20 03:58:41 508 274 2005-08-28 22:49:41 1 2006-02-16 02:30:53
  43428. 13550 2005-08-20 03:58:51 208 206 2005-08-28 00:45:51 2 2006-02-16 02:30:53
  43429. 13551 2005-08-20 04:00:30 1049 503 2005-08-21 06:26:30 2 2006-02-16 02:30:53
  43430. 13552 2005-08-20 04:03:51 758 578 2005-08-23 02:48:51 2 2006-02-16 02:30:53
  43431. 13553 2005-08-20 04:07:21 4407 314 2005-08-28 09:55:21 1 2006-02-16 02:30:53
  43432. 13554 2005-08-20 04:08:39 2648 569 2005-08-28 07:11:39 2 2006-02-16 02:30:53
  43433. 13555 2005-08-20 04:09:50 3176 93 2005-08-29 05:20:50 1 2006-02-16 02:30:53
  43434. 13556 2005-08-20 04:10:26 3914 266 2005-08-26 06:45:26 2 2006-02-16 02:30:53
  43435. 13557 2005-08-20 04:12:41 2290 23 2005-08-21 02:33:41 2 2006-02-16 02:30:53
  43436. 13558 2005-08-20 04:13:17 1551 564 2005-08-24 06:38:17 1 2006-02-16 02:30:53
  43437. 13559 2005-08-20 04:16:07 2413 444 2005-08-24 23:23:07 1 2006-02-16 02:30:53
  43438. 13560 2005-08-20 04:17:16 820 56 2005-08-28 08:38:16 1 2006-02-16 02:30:53
  43439. 13561 2006-02-14 15:16:03 3202 530 \N 1 2006-02-16 02:30:53
  43440. 13562 2005-08-20 04:31:45 4547 36 2005-08-25 09:59:45 1 2006-02-16 02:30:53
  43441. 13563 2005-08-20 04:33:31 599 366 2005-08-24 07:08:31 2 2006-02-16 02:30:53
  43442. 13564 2005-08-20 04:34:46 678 36 2005-08-28 23:18:46 2 2006-02-16 02:30:53
  43443. 13565 2005-08-20 04:38:52 3378 214 2005-08-27 07:17:52 1 2006-02-16 02:30:53
  43444. 13566 2005-08-20 04:45:32 4397 558 2005-08-28 02:12:32 2 2006-02-16 02:30:53
  43445. 13567 2005-08-20 04:49:21 543 242 2005-08-26 10:27:21 1 2006-02-16 02:30:53
  43446. 13568 2005-08-20 05:02:46 1243 151 2005-08-27 03:12:46 2 2006-02-16 02:30:53
  43447. 13569 2005-08-20 05:02:59 1934 496 2005-08-28 00:51:59 1 2006-02-16 02:30:53
  43448. 13570 2005-08-20 05:04:57 2808 188 2005-08-24 06:19:57 2 2006-02-16 02:30:53
  43449. 13571 2005-08-20 05:05:14 1251 458 2005-08-25 03:59:14 2 2006-02-16 02:30:53
  43450. 13572 2005-08-20 05:07:27 660 11 2005-08-23 23:33:27 1 2006-02-16 02:30:53
  43451. 13573 2005-08-20 05:10:14 3032 59 2005-08-22 00:59:14 1 2006-02-16 02:30:53
  43452. 13574 2005-08-20 05:10:39 2383 552 2005-08-21 02:21:39 2 2006-02-16 02:30:53
  43453. 13575 2005-08-20 05:15:20 2729 339 2005-08-28 07:36:20 2 2006-02-16 02:30:53
  43454. 13576 2005-08-20 05:19:56 2669 223 2005-08-22 09:08:56 2 2006-02-16 02:30:53
  43455. 13577 2006-02-14 15:16:03 3844 448 \N 2 2006-02-16 02:30:53
  43456. 13578 2006-02-14 15:16:03 4301 352 \N 2 2006-02-16 02:30:53
  43457. 13579 2005-08-20 05:22:06 4237 333 2005-08-28 02:33:06 2 2006-02-16 02:30:53
  43458. 13580 2005-08-20 05:23:34 4419 526 2005-08-23 02:45:34 1 2006-02-16 02:30:53
  43459. 13581 2005-08-20 05:26:15 1753 119 2005-08-21 11:07:15 2 2006-02-16 02:30:53
  43460. 13582 2005-08-20 05:28:11 211 166 2005-08-23 02:06:11 2 2006-02-16 02:30:53
  43461. 13583 2005-08-20 05:29:45 176 74 2005-08-26 06:49:45 1 2006-02-16 02:30:53
  43462. 13584 2006-02-14 15:16:03 3966 548 \N 2 2006-02-16 02:30:53
  43463. 13585 2005-08-20 05:32:23 3314 470 2005-08-27 23:36:23 1 2006-02-16 02:30:53
  43464. 13586 2005-08-20 05:40:33 4544 445 2005-08-25 01:32:33 2 2006-02-16 02:30:53
  43465. 13587 2006-02-14 15:16:03 2455 431 \N 2 2006-02-16 02:30:53
  43466. 13588 2005-08-20 05:47:11 702 279 2005-08-28 02:45:11 2 2006-02-16 02:30:53
  43467. 13589 2005-08-20 05:47:25 3216 574 2005-08-23 01:29:25 2 2006-02-16 02:30:53
  43468. 13590 2005-08-20 05:48:59 4417 264 2005-08-25 00:44:59 2 2006-02-16 02:30:53
  43469. 13591 2005-08-20 05:50:05 3089 390 2005-08-27 08:43:05 2 2006-02-16 02:30:53
  43470. 13592 2005-08-20 05:50:35 1509 470 2005-08-23 04:52:35 1 2006-02-16 02:30:53
  43471. 13593 2005-08-20 05:50:52 261 585 2005-08-27 05:28:52 2 2006-02-16 02:30:53
  43472. 13594 2005-08-20 05:53:31 3424 7 2005-08-23 09:01:31 1 2006-02-16 02:30:53
  43473. 13595 2005-08-20 05:54:27 673 545 2005-08-29 01:25:27 1 2006-02-16 02:30:53
  43474. 13596 2005-08-20 05:58:58 482 513 2005-08-27 08:35:58 1 2006-02-16 02:30:53
  43475. 13597 2005-08-20 05:59:05 3697 72 2005-08-24 05:38:05 2 2006-02-16 02:30:53
  43476. 13598 2005-08-20 05:59:17 2803 259 2005-08-29 01:02:17 1 2006-02-16 02:30:53
  43477. 13599 2005-08-20 06:00:03 3333 150 2005-08-29 07:56:03 1 2006-02-16 02:30:53
  43478. 13600 2005-08-20 06:00:25 431 528 2005-08-28 02:39:25 1 2006-02-16 02:30:53
  43479. 13601 2005-08-20 06:01:15 2166 189 2005-08-29 06:14:15 2 2006-02-16 02:30:53
  43480. 13602 2005-08-20 06:02:02 2805 348 2005-08-27 04:51:02 1 2006-02-16 02:30:53
  43481. 13603 2005-08-20 06:02:48 937 362 2005-08-29 09:39:48 1 2006-02-16 02:30:53
  43482. 13604 2005-08-20 06:03:33 4352 353 2005-08-21 07:06:33 1 2006-02-16 02:30:53
  43483. 13605 2005-08-20 06:06:17 4446 522 2005-08-26 00:53:17 2 2006-02-16 02:30:53
  43484. 13606 2005-08-20 06:07:01 83 146 2005-08-27 04:59:01 2 2006-02-16 02:30:53
  43485. 13607 2005-08-20 06:08:42 2692 491 2005-08-21 01:59:42 2 2006-02-16 02:30:53
  43486. 13608 2005-08-20 06:10:44 4110 193 2005-08-24 07:08:44 1 2006-02-16 02:30:53
  43487. 13609 2005-08-20 06:11:51 299 328 2005-08-23 04:13:51 2 2006-02-16 02:30:53
  43488. 13610 2005-08-20 06:14:12 2526 3 2005-08-26 00:44:12 2 2006-02-16 02:30:53
  43489. 13611 2005-08-20 06:20:42 1460 112 2005-08-28 10:07:42 1 2006-02-16 02:30:53
  43490. 13612 2005-08-20 06:22:08 675 505 2005-08-28 02:22:08 1 2006-02-16 02:30:53
  43491. 13613 2005-08-20 06:23:53 2415 201 2005-08-29 11:40:53 2 2006-02-16 02:30:53
  43492. 13614 2005-08-20 06:28:37 3736 381 2005-08-22 07:54:37 2 2006-02-16 02:30:53
  43493. 13615 2005-08-20 06:28:53 1864 539 2005-08-27 11:40:53 2 2006-02-16 02:30:53
  43494. 13616 2005-08-20 06:30:33 1694 194 2005-08-27 09:29:33 2 2006-02-16 02:30:53
  43495. 13617 2005-08-20 06:35:30 4059 526 2005-08-29 09:03:30 1 2006-02-16 02:30:53
  43496. 13618 2005-08-20 06:36:46 390 390 2005-08-29 05:17:46 2 2006-02-16 02:30:53
  43497. 13619 2005-08-20 06:39:26 1068 365 2005-08-23 05:22:26 2 2006-02-16 02:30:53
  43498. 13620 2005-08-20 06:41:27 2361 92 2005-08-24 11:02:27 1 2006-02-16 02:30:53
  43499. 13621 2005-08-20 06:43:44 3754 581 2005-08-23 06:25:44 2 2006-02-16 02:30:53
  43500. 13622 2005-08-20 06:45:32 3355 335 2005-08-25 02:40:32 1 2006-02-16 02:30:53
  43501. 13623 2005-08-20 06:49:46 3948 321 2005-08-25 05:19:46 2 2006-02-16 02:30:53
  43502. 13624 2005-08-20 06:51:02 430 63 2005-08-29 02:39:02 1 2006-02-16 02:30:53
  43503. 13625 2005-08-20 06:52:03 60 422 2005-08-27 07:43:03 1 2006-02-16 02:30:53
  43504. 13626 2005-08-20 06:55:24 594 524 2005-08-29 12:32:24 1 2006-02-16 02:30:53
  43505. 13627 2005-08-20 06:59:00 603 329 2005-08-29 11:43:00 2 2006-02-16 02:30:53
  43506. 13628 2005-08-20 07:03:53 1006 500 2005-08-22 11:27:53 2 2006-02-16 02:30:53
  43507. 13629 2005-08-20 07:04:07 1834 392 2005-08-25 12:36:07 1 2006-02-16 02:30:53
  43508. 13630 2005-08-20 07:05:56 3346 244 2005-08-29 04:15:56 1 2006-02-16 02:30:53
  43509. 13631 2005-08-20 07:07:37 1015 535 2005-08-22 04:01:37 1 2006-02-16 02:30:53
  43510. 13632 2005-08-20 07:10:52 4008 409 2005-08-29 10:19:52 2 2006-02-16 02:30:53
  43511. 13633 2005-08-20 07:13:47 3227 301 2005-08-24 11:25:47 1 2006-02-16 02:30:53
  43512. 13634 2005-08-20 07:16:45 850 411 2005-08-22 03:38:45 1 2006-02-16 02:30:53
  43513. 13635 2005-08-20 07:17:35 669 286 2005-08-29 06:27:35 1 2006-02-16 02:30:53
  43514. 13636 2005-08-20 07:20:09 1467 349 2005-08-23 09:58:09 1 2006-02-16 02:30:53
  43515. 13637 2005-08-20 07:21:15 2298 342 2005-08-24 10:13:15 2 2006-02-16 02:30:53
  43516. 13638 2005-08-20 07:21:15 3255 493 2005-08-23 11:09:15 2 2006-02-16 02:30:53
  43517. 13639 2005-08-20 07:22:07 2489 562 2005-08-23 11:24:07 2 2006-02-16 02:30:53
  43518. 13640 2005-08-20 07:22:53 3427 541 2005-08-21 11:54:53 2 2006-02-16 02:30:53
  43519. 13641 2005-08-20 07:34:42 367 281 2005-08-26 05:18:42 1 2006-02-16 02:30:53
  43520. 13642 2005-08-20 07:42:17 4415 452 2005-08-29 10:49:17 1 2006-02-16 02:30:53
  43521. 13643 2005-08-20 07:42:24 2443 398 2005-08-26 09:13:24 2 2006-02-16 02:30:53
  43522. 13644 2005-08-20 07:46:30 970 464 2005-08-27 01:54:30 1 2006-02-16 02:30:53
  43523. 13645 2005-08-20 07:47:05 157 387 2005-08-23 02:58:05 1 2006-02-16 02:30:53
  43524. 13646 2005-08-20 07:47:08 1347 242 2005-08-29 08:33:08 1 2006-02-16 02:30:53
  43525. 13647 2005-08-20 07:48:07 3269 519 2005-08-28 07:56:07 2 2006-02-16 02:30:53
  43526. 13648 2005-08-20 07:48:10 3921 596 2005-08-22 12:15:10 2 2006-02-16 02:30:53
  43527. 13649 2005-08-20 07:48:38 1495 259 2005-08-23 07:43:38 2 2006-02-16 02:30:53
  43528. 13650 2005-08-20 07:49:06 2644 322 2005-08-28 10:11:06 1 2006-02-16 02:30:53
  43529. 13651 2005-08-20 07:50:08 1082 256 2005-08-21 07:11:08 1 2006-02-16 02:30:53
  43530. 13652 2005-08-20 07:52:34 2548 67 2005-08-23 08:58:34 2 2006-02-16 02:30:53
  43531. 13653 2005-08-20 07:54:54 4029 129 2005-08-29 06:43:54 1 2006-02-16 02:30:53
  43532. 13654 2005-08-20 07:58:21 1582 469 2005-08-21 09:40:21 2 2006-02-16 02:30:53
  43533. 13655 2005-08-20 07:59:13 4294 207 2005-08-22 12:04:13 1 2006-02-16 02:30:53
  43534. 13656 2005-08-20 08:01:07 3180 411 2005-08-28 13:16:07 2 2006-02-16 02:30:53
  43535. 13657 2005-08-20 08:01:39 1752 414 2005-08-23 07:31:39 1 2006-02-16 02:30:53
  43536. 13658 2005-08-20 08:02:22 3827 487 2005-08-28 06:00:22 1 2006-02-16 02:30:53
  43537. 13659 2005-08-20 08:05:52 3610 520 2005-08-24 12:38:52 1 2006-02-16 02:30:53
  43538. 13660 2005-08-20 08:05:56 3972 72 2005-08-22 13:22:56 1 2006-02-16 02:30:53
  43539. 13661 2005-08-20 08:05:59 3996 471 2005-08-29 12:15:59 1 2006-02-16 02:30:53
  43540. 13662 2005-08-20 08:11:58 3880 592 2005-08-26 13:34:58 1 2006-02-16 02:30:53
  43541. 13663 2005-08-20 08:12:33 3969 240 2005-08-27 03:23:33 2 2006-02-16 02:30:53
  43542. 13664 2005-08-20 08:18:36 3750 264 2005-08-26 11:04:36 1 2006-02-16 02:30:53
  43543. 13665 2005-08-20 08:19:20 117 291 2005-08-28 06:26:20 1 2006-02-16 02:30:53
  43544. 13666 2005-08-20 08:20:19 2007 451 2005-08-22 03:22:19 1 2006-02-16 02:30:53
  43545. 13667 2005-08-20 08:25:34 3856 280 2005-08-24 07:04:34 2 2006-02-16 02:30:53
  43546. 13668 2005-08-20 08:26:06 3659 123 2005-08-25 05:52:06 2 2006-02-16 02:30:53
  43547. 13669 2005-08-20 08:26:32 4504 261 2005-08-27 08:10:32 2 2006-02-16 02:30:53
  43548. 13670 2005-08-20 08:27:01 1951 147 2005-08-29 05:59:01 2 2006-02-16 02:30:53
  43549. 13671 2005-08-20 08:27:03 1473 201 2005-08-26 03:56:03 1 2006-02-16 02:30:53
  43550. 13672 2005-08-20 08:27:27 2068 201 2005-08-22 06:15:27 2 2006-02-16 02:30:53
  43551. 13673 2005-08-20 08:27:30 343 332 2005-08-26 05:14:30 1 2006-02-16 02:30:53
  43552. 13674 2005-08-20 08:30:54 3397 36 2005-08-22 02:59:54 1 2006-02-16 02:30:53
  43553. 13675 2005-08-20 08:32:51 350 493 2005-08-27 03:52:51 2 2006-02-16 02:30:53
  43554. 13676 2005-08-20 08:33:21 3170 103 2005-08-25 02:51:21 1 2006-02-16 02:30:53
  43555. 13677 2005-08-20 08:34:41 4013 15 2005-08-26 11:51:41 2 2006-02-16 02:30:53
  43556. 13678 2005-08-20 08:38:24 1118 337 2005-08-27 13:54:24 2 2006-02-16 02:30:53
  43557. 13679 2005-08-20 08:39:34 2878 229 2005-08-29 10:06:34 2 2006-02-16 02:30:53
  43558. 13680 2005-08-20 08:44:06 2822 70 2005-08-27 09:58:06 2 2006-02-16 02:30:53
  43559. 13681 2005-08-20 08:47:37 3039 328 2005-08-27 09:47:37 1 2006-02-16 02:30:53
  43560. 13682 2005-08-20 08:50:39 287 30 2005-08-21 09:05:39 2 2006-02-16 02:30:53
  43561. 13683 2005-08-20 08:54:55 1729 255 2005-08-24 14:10:55 2 2006-02-16 02:30:53
  43562. 13684 2005-08-20 08:55:53 2213 348 2005-08-25 08:11:53 1 2006-02-16 02:30:53
  43563. 13685 2005-08-20 08:57:11 3336 260 2005-08-27 07:26:11 1 2006-02-16 02:30:53
  43564. 13686 2005-08-20 08:57:28 666 306 2005-08-24 07:21:28 2 2006-02-16 02:30:53
  43565. 13687 2005-08-20 08:57:51 3629 290 2005-08-22 07:02:51 2 2006-02-16 02:30:53
  43566. 13688 2005-08-20 08:59:38 1116 572 2005-08-28 04:54:38 2 2006-02-16 02:30:53
  43567. 13689 2005-08-20 09:04:30 819 336 2005-08-22 05:38:30 2 2006-02-16 02:30:53
  43568. 13690 2005-08-20 09:07:27 3721 513 2005-08-23 08:03:27 2 2006-02-16 02:30:53
  43569. 13691 2005-08-20 09:07:39 676 548 2005-08-28 15:03:39 1 2006-02-16 02:30:53
  43570. 13692 2005-08-20 09:07:52 1928 65 2005-08-21 05:17:52 1 2006-02-16 02:30:53
  43571. 13693 2005-08-20 09:11:42 933 552 2005-08-24 15:00:42 2 2006-02-16 02:30:53
  43572. 13694 2005-08-20 09:13:23 3654 454 2005-08-28 06:10:23 1 2006-02-16 02:30:53
  43573. 13695 2005-08-20 09:13:25 3114 258 2005-08-27 11:51:25 2 2006-02-16 02:30:53
  43574. 13696 2005-08-20 09:16:15 1279 206 2005-08-21 03:33:15 1 2006-02-16 02:30:53
  43575. 13697 2005-08-20 09:21:08 291 76 2005-08-29 12:33:08 1 2006-02-16 02:30:53
  43576. 13698 2005-08-20 09:24:26 3829 364 2005-08-22 05:04:26 2 2006-02-16 02:30:53
  43577. 13699 2005-08-20 09:26:14 3913 21 2005-08-29 08:16:14 2 2006-02-16 02:30:53
  43578. 13700 2005-08-20 09:26:17 4229 265 2005-08-27 05:49:17 2 2006-02-16 02:30:53
  43579. 13701 2005-08-20 09:27:05 1643 564 2005-08-21 14:54:05 1 2006-02-16 02:30:53
  43580. 13702 2005-08-20 09:27:20 700 296 2005-08-29 15:04:20 2 2006-02-16 02:30:53
  43581. 13703 2005-08-20 09:29:35 2296 356 2005-08-27 08:03:35 2 2006-02-16 02:30:53
  43582. 13704 2005-08-20 09:32:04 3373 4 2005-08-23 14:29:04 2 2006-02-16 02:30:53
  43583. 13705 2005-08-20 09:32:23 3663 451 2005-08-21 13:51:23 1 2006-02-16 02:30:53
  43584. 13706 2005-08-20 09:32:56 3005 363 2005-08-28 05:22:56 2 2006-02-16 02:30:53
  43585. 13707 2005-08-20 09:33:58 826 232 2005-08-23 07:44:58 2 2006-02-16 02:30:53
  43586. 13708 2005-08-20 09:34:07 2236 218 2005-08-26 10:17:07 1 2006-02-16 02:30:53
  43587. 13709 2005-08-20 09:34:51 4089 422 2005-08-23 04:13:51 1 2006-02-16 02:30:53
  43588. 13710 2005-08-20 09:35:20 756 333 2005-08-21 05:29:20 2 2006-02-16 02:30:53
  43589. 13711 2005-08-20 09:35:20 2318 453 2005-08-28 09:06:20 2 2006-02-16 02:30:53
  43590. 13712 2005-08-20 09:38:04 1039 581 2005-08-21 06:10:04 1 2006-02-16 02:30:53
  43591. 13713 2006-02-14 15:16:03 3075 267 \N 1 2006-02-16 02:30:53
  43592. 13714 2005-08-20 09:41:09 2659 277 2005-08-22 06:28:09 1 2006-02-16 02:30:53
  43593. 13715 2005-08-20 09:43:06 1028 292 2005-08-27 10:22:06 1 2006-02-16 02:30:53
  43594. 13716 2005-08-20 09:48:32 86 386 2005-08-26 07:20:32 2 2006-02-16 02:30:53
  43595. 13717 2005-08-20 09:50:52 1629 300 2005-08-28 11:32:52 2 2006-02-16 02:30:53
  43596. 13718 2005-08-20 09:53:44 205 19 2005-08-29 13:46:44 2 2006-02-16 02:30:53
  43597. 13720 2005-08-20 10:01:39 813 427 2005-08-27 08:26:39 1 2006-02-16 02:30:53
  43598. 13721 2005-08-20 10:02:59 1444 297 2005-08-24 07:02:59 2 2006-02-16 02:30:53
  43599. 13722 2005-08-20 10:03:45 1581 422 2005-08-25 04:26:45 1 2006-02-16 02:30:53
  43600. 13723 2005-08-20 10:05:30 411 110 2005-08-27 07:43:30 2 2006-02-16 02:30:53
  43601. 13724 2005-08-20 10:07:28 200 80 2005-08-24 07:47:28 2 2006-02-16 02:30:53
  43602. 13725 2005-08-20 10:08:27 3861 306 2005-08-28 06:52:27 2 2006-02-16 02:30:53
  43603. 13726 2005-08-20 10:08:40 2258 214 2005-08-23 14:58:40 1 2006-02-16 02:30:53
  43604. 13727 2005-08-20 10:08:53 4201 85 2005-08-27 09:30:53 1 2006-02-16 02:30:53
  43605. 13728 2005-08-20 10:11:07 1962 157 2005-08-23 10:32:07 1 2006-02-16 02:30:53
  43606. 13729 2005-08-20 10:17:08 4108 415 2005-08-28 15:35:08 1 2006-02-16 02:30:53
  43607. 13730 2005-08-20 10:17:09 1330 548 2005-08-28 10:45:09 1 2006-02-16 02:30:53
  43608. 13731 2005-08-20 10:22:08 1133 450 2005-08-21 12:04:08 2 2006-02-16 02:30:53
  43609. 13732 2005-08-20 10:24:41 1138 17 2005-08-22 04:44:41 1 2006-02-16 02:30:53
  43610. 13733 2005-08-20 10:25:12 3994 85 2005-08-21 10:49:12 2 2006-02-16 02:30:53
  43611. 13734 2005-08-20 10:29:57 4561 374 2005-08-25 14:41:57 2 2006-02-16 02:30:53
  43612. 13735 2005-08-20 10:31:01 1813 35 2005-08-26 05:00:01 1 2006-02-16 02:30:53
  43613. 13736 2005-08-20 10:31:23 3369 32 2005-08-28 06:51:23 1 2006-02-16 02:30:53
  43614. 13737 2005-08-20 10:41:50 4319 200 2005-08-25 14:33:50 2 2006-02-16 02:30:53
  43615. 13738 2005-08-20 10:42:42 2748 273 2005-08-25 09:32:42 1 2006-02-16 02:30:53
  43616. 13739 2005-08-20 10:45:10 3027 441 2005-08-28 08:46:10 2 2006-02-16 02:30:53
  43617. 13740 2005-08-20 10:48:43 4366 21 2005-08-29 15:30:43 1 2006-02-16 02:30:53
  43618. 13741 2005-08-20 10:48:47 3887 195 2005-08-21 11:19:47 1 2006-02-16 02:30:53
  43619. 13742 2005-08-20 10:49:15 1377 580 2005-08-21 11:05:15 2 2006-02-16 02:30:53
  43620. 13743 2005-08-20 10:51:27 3693 57 2005-08-24 15:54:27 1 2006-02-16 02:30:53
  43621. 13744 2005-08-20 10:51:45 2962 408 2005-08-25 06:42:45 2 2006-02-16 02:30:53
  43622. 13745 2005-08-20 10:53:49 1264 142 2005-08-25 13:25:49 1 2006-02-16 02:30:53
  43623. 13746 2005-08-20 10:55:28 3742 520 2005-08-25 07:48:28 2 2006-02-16 02:30:53
  43624. 13747 2005-08-20 10:56:06 3332 74 2005-08-29 10:29:06 1 2006-02-16 02:30:53
  43625. 13748 2005-08-20 10:59:54 2198 410 2005-08-23 12:33:54 1 2006-02-16 02:30:53
  43626. 13749 2005-08-20 11:00:37 2811 282 2005-08-26 12:04:37 1 2006-02-16 02:30:53
  43627. 13750 2005-08-20 11:11:42 3363 246 2005-08-29 16:16:42 2 2006-02-16 02:30:53
  43628. 13751 2005-08-20 11:17:03 185 105 2005-08-22 14:12:03 2 2006-02-16 02:30:53
  43629. 13752 2005-08-20 11:17:45 1794 77 2005-08-29 13:25:45 2 2006-02-16 02:30:53
  43630. 13753 2006-02-14 15:16:03 3746 495 \N 1 2006-02-16 02:30:53
  43631. 13754 2005-08-20 11:18:08 1740 108 2005-08-22 11:55:08 1 2006-02-16 02:30:53
  43632. 13755 2005-08-20 11:18:53 1927 342 2005-08-27 06:51:53 2 2006-02-16 02:30:53
  43633. 13756 2006-02-14 15:16:03 1146 252 \N 2 2006-02-16 02:30:53
  43634. 13757 2005-08-20 11:20:12 1147 14 2005-08-23 10:14:12 2 2006-02-16 02:30:53
  43635. 13758 2005-08-20 11:21:26 864 255 2005-08-29 14:37:26 2 2006-02-16 02:30:53
  43636. 13759 2005-08-20 11:24:48 595 269 2005-08-29 10:29:48 1 2006-02-16 02:30:53
  43637. 13760 2005-08-20 11:26:33 3459 436 2005-08-27 11:12:33 2 2006-02-16 02:30:53
  43638. 13761 2005-08-20 11:28:50 3149 376 2005-08-21 12:05:50 2 2006-02-16 02:30:53
  43639. 13762 2005-08-20 11:29:32 451 566 2005-08-23 17:25:32 1 2006-02-16 02:30:53
  43640. 13763 2005-08-20 11:37:56 4171 469 2005-08-26 13:12:56 1 2006-02-16 02:30:53
  43641. 13764 2005-08-20 11:38:16 989 386 2005-08-27 08:01:16 1 2006-02-16 02:30:53
  43642. 13765 2005-08-20 11:39:00 2104 219 2005-08-21 06:05:00 1 2006-02-16 02:30:53
  43643. 13766 2005-08-20 11:42:01 1313 189 2005-08-27 13:44:01 2 2006-02-16 02:30:53
  43644. 13767 2005-08-20 11:43:36 2739 506 2005-08-22 17:10:36 1 2006-02-16 02:30:53
  43645. 13768 2005-08-20 11:43:43 3847 198 2005-08-27 07:56:43 2 2006-02-16 02:30:53
  43646. 13769 2005-08-20 11:43:52 2868 56 2005-08-28 13:19:52 1 2006-02-16 02:30:53
  43647. 13770 2005-08-20 11:45:54 998 538 2005-08-22 17:08:54 1 2006-02-16 02:30:53
  43648. 13771 2005-08-20 11:47:21 2278 512 2005-08-22 17:09:21 1 2006-02-16 02:30:53
  43649. 13772 2005-08-20 11:47:52 2038 387 2005-08-28 05:50:52 2 2006-02-16 02:30:53
  43650. 13773 2005-08-20 11:50:14 3389 64 2005-08-26 12:35:14 1 2006-02-16 02:30:53
  43651. 13774 2005-08-20 11:54:01 735 244 2005-08-22 13:25:01 2 2006-02-16 02:30:53
  43652. 13775 2005-08-20 11:56:30 1858 116 2005-08-28 12:48:30 2 2006-02-16 02:30:53
  43653. 13776 2005-08-20 11:57:06 2439 137 2005-08-26 10:55:06 1 2006-02-16 02:30:53
  43654. 13777 2005-08-20 12:03:35 3587 29 2005-08-27 10:13:35 1 2006-02-16 02:30:53
  43655. 13778 2005-08-20 12:03:44 2385 539 2005-08-28 12:09:44 1 2006-02-16 02:30:53
  43656. 13779 2005-08-20 12:03:54 63 440 2005-08-28 15:24:54 2 2006-02-16 02:30:53
  43657. 13780 2006-02-14 15:16:03 1775 14 \N 2 2006-02-16 02:30:53
  43658. 13781 2005-08-20 12:06:45 971 368 2005-08-26 06:50:45 2 2006-02-16 02:30:53
  43659. 13782 2005-08-20 12:09:26 577 305 2005-08-23 08:31:26 2 2006-02-16 02:30:53
  43660. 13783 2005-08-20 12:11:03 2643 28 2005-08-21 15:53:03 2 2006-02-16 02:30:53
  43661. 13784 2005-08-20 12:11:28 3087 431 2005-08-25 08:11:28 1 2006-02-16 02:30:53
  43662. 13785 2005-08-20 12:11:46 379 453 2005-08-21 06:39:46 1 2006-02-16 02:30:53
  43663. 13786 2005-08-20 12:13:24 515 94 2005-08-28 07:24:24 2 2006-02-16 02:30:53
  43664. 13787 2005-08-20 12:15:23 253 188 2005-08-27 06:24:23 2 2006-02-16 02:30:53
  43665. 13788 2005-08-20 12:15:41 3177 393 2005-08-28 16:28:41 2 2006-02-16 02:30:53
  43666. 13789 2005-08-20 12:16:38 2523 53 2005-08-25 07:29:38 1 2006-02-16 02:30:53
  43667. 13790 2005-08-20 12:17:27 1385 11 2005-08-25 12:20:27 1 2006-02-16 02:30:53
  43668. 13791 2005-08-20 12:21:05 1890 67 2005-08-22 17:58:05 1 2006-02-16 02:30:53
  43669. 13792 2005-08-20 12:21:37 4157 78 2005-08-27 14:28:37 1 2006-02-16 02:30:53
  43670. 13793 2005-08-20 12:22:04 2598 424 2005-08-27 09:51:04 2 2006-02-16 02:30:53
  43671. 13794 2005-08-20 12:25:32 2148 557 2005-08-23 06:38:32 2 2006-02-16 02:30:53
  43672. 13795 2005-08-20 12:32:09 2837 331 2005-08-21 17:28:09 1 2006-02-16 02:30:53
  43673. 13796 2005-08-20 12:32:32 28 209 2005-08-29 10:48:32 2 2006-02-16 02:30:53
  43674. 13797 2005-08-20 12:33:36 2857 529 2005-08-25 18:03:36 1 2006-02-16 02:30:53
  43675. 13798 2006-02-14 15:16:03 526 15 \N 2 2006-02-16 02:30:53
  43676. 13799 2005-08-20 12:36:42 4413 196 2005-08-28 08:47:42 1 2006-02-16 02:30:53
  43677. 13800 2005-08-20 12:40:48 1552 407 2005-08-22 15:06:48 1 2006-02-16 02:30:53
  43678. 13801 2005-08-20 12:40:53 1464 433 2005-08-21 16:29:53 1 2006-02-16 02:30:53
  43679. 13802 2005-08-20 12:44:53 2079 156 2005-08-22 09:18:53 2 2006-02-16 02:30:53
  43680. 13803 2005-08-20 12:46:17 1084 486 2005-08-24 15:44:17 2 2006-02-16 02:30:53
  43681. 13804 2005-08-20 12:46:32 2232 19 2005-08-29 14:04:32 2 2006-02-16 02:30:53
  43682. 13805 2005-08-20 12:53:12 349 454 2005-08-27 15:21:12 1 2006-02-16 02:30:53
  43683. 13806 2005-08-20 12:53:46 444 341 2005-08-21 10:36:46 1 2006-02-16 02:30:53
  43684. 13807 2005-08-20 12:55:40 3822 4 2005-08-28 09:06:40 2 2006-02-16 02:30:53
  43685. 13808 2005-08-20 12:55:43 3689 262 2005-08-29 11:01:43 2 2006-02-16 02:30:53
  43686. 13809 2005-08-20 12:56:03 1597 207 2005-08-27 11:58:03 1 2006-02-16 02:30:53
  43687. 13810 2005-08-20 12:59:38 2228 450 2005-08-21 17:40:38 1 2006-02-16 02:30:53
  43688. 13811 2005-08-20 13:00:30 1235 168 2005-08-24 10:18:30 1 2006-02-16 02:30:53
  43689. 13812 2005-08-20 13:01:43 2788 122 2005-08-22 16:32:43 2 2006-02-16 02:30:53
  43690. 13813 2005-08-20 13:03:26 601 455 2005-08-25 08:42:26 1 2006-02-16 02:30:53
  43691. 13814 2005-08-20 13:07:23 2129 436 2005-08-22 16:23:23 2 2006-02-16 02:30:53
  43692. 13815 2005-08-20 13:08:53 3388 582 2005-08-29 13:11:53 2 2006-02-16 02:30:53
  43693. 13816 2005-08-20 13:13:56 273 27 2005-08-25 09:46:56 1 2006-02-16 02:30:53
  43694. 13817 2005-08-20 13:15:30 1935 293 2005-08-22 18:48:30 2 2006-02-16 02:30:53
  43695. 13818 2005-08-20 13:20:09 1283 495 2005-08-21 18:41:09 1 2006-02-16 02:30:53
  43696. 13819 2005-08-20 13:23:15 1459 296 2005-08-22 16:02:15 2 2006-02-16 02:30:53
  43697. 13820 2005-08-20 13:26:37 3191 81 2005-08-27 14:05:37 1 2006-02-16 02:30:53
  43698. 13821 2005-08-20 13:33:47 2402 355 2005-08-25 18:09:47 1 2006-02-16 02:30:53
  43699. 13822 2005-08-20 13:39:28 807 499 2005-08-24 07:40:28 1 2006-02-16 02:30:53
  43700. 13823 2005-08-20 13:42:10 3875 89 2005-08-22 18:45:10 1 2006-02-16 02:30:53
  43701. 13824 2005-08-20 13:43:12 2845 413 2005-08-22 17:26:12 1 2006-02-16 02:30:53
  43702. 13825 2005-08-20 13:43:22 2135 167 2005-08-29 19:13:22 1 2006-02-16 02:30:53
  43703. 13826 2005-08-20 13:46:38 401 436 2005-08-29 13:07:38 1 2006-02-16 02:30:53
  43704. 13827 2005-08-20 13:47:19 1103 342 2005-08-28 09:13:19 1 2006-02-16 02:30:53
  43705. 13828 2005-08-20 13:49:52 2391 450 2005-08-25 07:49:52 2 2006-02-16 02:30:53
  43706. 13829 2005-08-20 13:50:17 3980 146 2005-08-24 11:30:17 2 2006-02-16 02:30:53
  43707. 13830 2005-08-20 13:57:59 2874 61 2005-08-25 11:29:59 1 2006-02-16 02:30:53
  43708. 13831 2005-08-20 13:59:35 570 480 2005-08-24 12:50:35 1 2006-02-16 02:30:53
  43709. 13832 2005-08-20 14:00:25 3299 29 2005-08-28 10:11:25 1 2006-02-16 02:30:53
  43710. 13833 2005-08-20 14:00:29 792 175 2005-08-29 12:01:29 2 2006-02-16 02:30:53
  43711. 13834 2005-08-20 14:03:08 875 426 2005-08-22 10:12:08 1 2006-02-16 02:30:53
  43712. 13835 2005-08-20 14:06:33 3738 143 2005-08-26 12:15:33 2 2006-02-16 02:30:53
  43713. 13836 2005-08-20 14:18:16 4271 375 2005-08-21 18:13:16 2 2006-02-16 02:30:53
  43714. 13837 2005-08-20 14:19:03 3220 67 2005-08-22 16:25:03 2 2006-02-16 02:30:53
  43715. 13838 2005-08-20 14:22:46 1134 437 2005-08-29 12:28:46 2 2006-02-16 02:30:53
  43716. 13839 2005-08-20 14:23:16 1056 437 2005-08-26 19:11:16 2 2006-02-16 02:30:53
  43717. 13840 2005-08-20 14:23:20 1211 40 2005-08-28 11:53:20 1 2006-02-16 02:30:53
  43718. 13841 2005-08-20 14:25:18 3277 203 2005-08-29 15:49:18 1 2006-02-16 02:30:53
  43719. 13842 2005-08-20 14:29:37 4337 180 2005-08-29 18:19:37 1 2006-02-16 02:30:53
  43720. 13843 2005-08-20 14:30:01 3058 308 2005-08-27 10:06:01 2 2006-02-16 02:30:53
  43721. 13844 2005-08-20 14:30:26 983 179 2005-08-29 17:08:26 1 2006-02-16 02:30:53
  43722. 13845 2005-08-20 14:31:21 3993 559 2005-08-29 18:29:21 1 2006-02-16 02:30:53
  43723. 13846 2005-08-20 14:32:31 3289 257 2005-08-28 16:58:31 1 2006-02-16 02:30:53
  43724. 13847 2005-08-20 14:33:59 2647 82 2005-08-25 08:49:59 1 2006-02-16 02:30:53
  43725. 13848 2005-08-20 14:37:49 802 447 2005-08-25 13:15:49 1 2006-02-16 02:30:53
  43726. 13849 2005-08-20 14:42:34 3774 261 2005-08-24 13:09:34 2 2006-02-16 02:30:53
  43727. 13850 2005-08-20 14:43:03 3030 546 2005-08-27 11:41:03 2 2006-02-16 02:30:53
  43728. 13851 2005-08-20 14:44:22 3278 80 2005-08-22 18:10:22 1 2006-02-16 02:30:53
  43729. 13852 2005-08-20 14:45:23 85 535 2005-08-22 16:47:23 2 2006-02-16 02:30:53
  43730. 13853 2005-08-20 14:47:02 1680 186 2005-08-26 20:32:02 1 2006-02-16 02:30:53
  43731. 13854 2005-08-20 14:48:42 4192 158 2005-08-21 14:55:42 2 2006-02-16 02:30:53
  43732. 13855 2005-08-20 14:48:55 1617 96 2005-08-28 14:45:55 1 2006-02-16 02:30:53
  43733. 13856 2005-08-20 14:49:32 4196 407 2005-08-29 12:37:32 2 2006-02-16 02:30:53
  43734. 13857 2005-08-20 14:50:06 2542 366 2005-08-24 10:38:06 2 2006-02-16 02:30:53
  43735. 13858 2005-08-20 14:50:57 2167 33 2005-08-23 12:10:57 2 2006-02-16 02:30:53
  43736. 13859 2005-08-20 14:53:43 4381 504 2005-08-28 09:50:43 1 2006-02-16 02:30:53
  43737. 13860 2005-08-20 14:55:09 558 275 2005-08-22 20:42:09 1 2006-02-16 02:30:53
  43738. 13861 2005-08-20 14:56:53 303 154 2005-08-22 18:13:53 2 2006-02-16 02:30:53
  43739. 13862 2005-08-20 14:57:01 3271 170 2005-08-27 10:48:01 2 2006-02-16 02:30:53
  43740. 13863 2005-08-20 14:57:50 2417 563 2005-08-29 15:36:50 2 2006-02-16 02:30:53
  43741. 13864 2005-08-20 14:59:55 3935 214 2005-08-22 09:30:55 2 2006-02-16 02:30:53
  43742. 13865 2005-08-20 15:04:09 3647 275 2005-08-24 10:06:09 2 2006-02-16 02:30:53
  43743. 13866 2005-08-20 15:05:29 3432 343 2005-08-23 11:27:29 2 2006-02-16 02:30:53
  43744. 13867 2005-08-20 15:05:42 4514 591 2005-08-29 10:48:42 2 2006-02-16 02:30:53
  43745. 13868 2005-08-20 15:06:26 3173 51 2005-08-22 19:08:26 2 2006-02-16 02:30:53
  43746. 13869 2005-08-20 15:08:57 1990 386 2005-08-29 13:13:57 2 2006-02-16 02:30:53
  43747. 13870 2005-08-20 15:09:16 563 167 2005-08-28 10:00:16 2 2006-02-16 02:30:53
  43748. 13871 2005-08-20 15:10:13 3206 372 2005-08-29 19:43:13 2 2006-02-16 02:30:53
  43749. 13872 2005-08-20 15:10:30 2416 421 2005-08-24 10:14:30 2 2006-02-16 02:30:53
  43750. 13873 2005-08-20 15:11:11 1683 306 2005-08-22 20:13:11 2 2006-02-16 02:30:53
  43751. 13874 2005-08-20 15:11:48 72 86 2005-08-21 18:26:48 2 2006-02-16 02:30:53
  43752. 13875 2005-08-20 15:13:11 348 83 2005-08-21 13:11:11 1 2006-02-16 02:30:53
  43753. 13876 2005-08-20 15:15:28 3137 334 2005-08-23 12:42:28 2 2006-02-16 02:30:53
  43754. 13877 2005-08-20 15:16:18 3387 5 2005-08-22 18:20:18 1 2006-02-16 02:30:53
  43755. 13878 2005-08-20 15:17:38 49 481 2005-08-21 21:11:38 2 2006-02-16 02:30:53
  43756. 13879 2005-08-20 15:18:10 4022 112 2005-08-22 19:23:10 2 2006-02-16 02:30:53
  43757. 13880 2005-08-20 15:18:20 3911 268 2005-08-24 18:03:20 2 2006-02-16 02:30:53
  43758. 13881 2005-08-20 15:18:55 2831 144 2005-08-25 11:25:55 1 2006-02-16 02:30:53
  43759. 13882 2005-08-20 15:23:26 3245 51 2005-08-22 13:03:26 1 2006-02-16 02:30:53
  43760. 13883 2005-08-20 15:28:53 584 568 2005-08-21 13:11:53 1 2006-02-16 02:30:53
  43761. 13884 2005-08-20 15:30:51 3182 466 2005-08-26 13:34:51 1 2006-02-16 02:30:53
  43762. 13885 2005-08-20 15:32:09 3195 537 2005-08-26 15:54:09 1 2006-02-16 02:30:53
  43763. 13886 2005-08-20 15:34:43 2248 73 2005-08-26 11:48:43 2 2006-02-16 02:30:53
  43764. 13887 2005-08-20 15:39:00 4002 413 2005-08-24 16:17:00 2 2006-02-16 02:30:53
  43765. 13888 2005-08-20 15:39:42 1943 297 2005-08-28 13:41:42 1 2006-02-16 02:30:53
  43766. 13889 2005-08-20 15:40:06 4406 501 2005-08-22 14:09:06 2 2006-02-16 02:30:53
  43767. 13890 2005-08-20 15:41:00 2965 54 2005-08-22 16:00:00 1 2006-02-16 02:30:53
  43768. 13891 2005-08-20 15:42:05 2042 289 2005-08-25 13:26:05 1 2006-02-16 02:30:53
  43769. 13892 2005-08-20 15:50:17 1236 337 2005-08-29 13:33:17 2 2006-02-16 02:30:53
  43770. 13893 2005-08-20 15:52:52 3503 390 2005-08-27 16:21:52 2 2006-02-16 02:30:53
  43771. 13894 2005-08-20 15:55:20 2649 360 2005-08-26 17:26:20 2 2006-02-16 02:30:53
  43772. 13895 2005-08-20 15:58:28 3060 12 2005-08-26 15:07:28 2 2006-02-16 02:30:53
  43773. 13896 2005-08-20 15:59:56 1338 278 2005-08-21 20:14:56 2 2006-02-16 02:30:53
  43774. 13897 2005-08-20 16:02:28 628 258 2005-08-23 14:29:28 1 2006-02-16 02:30:53
  43775. 13898 2006-02-14 15:16:03 4007 369 \N 2 2006-02-16 02:30:53
  43776. 13899 2005-08-20 16:05:11 427 204 2005-08-23 15:14:11 2 2006-02-16 02:30:53
  43777. 13900 2005-08-20 16:05:41 1140 66 2005-08-22 15:13:41 1 2006-02-16 02:30:53
  43778. 13901 2005-08-20 16:06:53 3281 166 2005-08-28 11:30:53 1 2006-02-16 02:30:53
  43779. 13902 2005-08-20 16:07:08 1165 275 2005-08-24 16:43:08 2 2006-02-16 02:30:53
  43780. 13903 2005-08-20 16:07:55 1676 272 2005-08-25 18:26:55 1 2006-02-16 02:30:53
  43781. 13904 2005-08-20 16:11:34 721 93 2005-08-26 12:46:34 1 2006-02-16 02:30:53
  43782. 13905 2005-08-20 16:12:48 2714 437 2005-08-28 16:05:48 1 2006-02-16 02:30:53
  43783. 13906 2005-08-20 16:16:03 3960 87 2005-08-21 13:29:03 2 2006-02-16 02:30:53
  43784. 13907 2005-08-20 16:17:27 806 328 2005-08-24 20:14:27 2 2006-02-16 02:30:53
  43785. 13908 2005-08-20 16:21:40 3661 532 2005-08-29 21:16:40 1 2006-02-16 02:30:53
  43786. 13909 2005-08-20 16:26:36 1508 309 2005-08-21 20:59:36 2 2006-02-16 02:30:53
  43787. 13910 2005-08-20 16:30:49 252 133 2005-08-24 13:30:49 2 2006-02-16 02:30:53
  43788. 13911 2005-08-20 16:31:33 4400 304 2005-08-28 19:26:33 2 2006-02-16 02:30:53
  43789. 13912 2005-08-20 16:32:10 968 207 2005-08-29 17:37:10 2 2006-02-16 02:30:53
  43790. 13913 2005-08-20 16:37:35 4259 197 2005-08-26 13:12:35 2 2006-02-16 02:30:53
  43791. 13914 2005-08-20 16:38:57 3037 237 2005-08-26 14:53:57 2 2006-02-16 02:30:53
  43792. 13915 2005-08-20 16:42:53 1180 129 2005-08-23 20:30:53 2 2006-02-16 02:30:53
  43793. 13916 2005-08-20 16:43:02 2971 302 2005-08-25 19:21:02 1 2006-02-16 02:30:53
  43794. 13917 2005-08-20 16:43:28 4326 10 2005-08-29 16:44:28 2 2006-02-16 02:30:53
  43795. 13918 2005-08-20 16:47:32 3301 248 2005-08-21 12:00:32 2 2006-02-16 02:30:53
  43796. 13919 2005-08-20 16:47:34 909 129 2005-08-23 21:27:34 2 2006-02-16 02:30:53
  43797. 13920 2005-08-20 16:51:18 3200 460 2005-08-27 16:05:18 2 2006-02-16 02:30:53
  43798. 13921 2005-08-20 16:57:11 3943 59 2005-08-22 19:25:11 2 2006-02-16 02:30:53
  43799. 13922 2005-08-20 17:02:37 1398 237 2005-08-29 19:28:37 1 2006-02-16 02:30:53
  43800. 13923 2005-08-20 17:05:02 3129 588 2005-08-27 11:22:02 2 2006-02-16 02:30:53
  43801. 13924 2005-08-20 17:05:18 3066 444 2005-08-23 16:54:18 2 2006-02-16 02:30:53
  43802. 13925 2005-08-20 17:05:34 4034 565 2005-08-27 15:32:34 2 2006-02-16 02:30:53
  43803. 13926 2005-08-20 17:09:27 932 158 2005-08-28 13:42:27 2 2006-02-16 02:30:53
  43804. 13927 2005-08-20 17:11:58 4284 417 2005-08-24 12:44:58 1 2006-02-16 02:30:53
  43805. 13928 2005-08-20 17:12:28 1121 244 2005-08-21 13:33:28 1 2006-02-16 02:30:53
  43806. 13929 2005-08-20 17:13:48 946 57 2005-08-28 15:19:48 1 2006-02-16 02:30:53
  43807. 13930 2005-08-20 17:15:06 3585 58 2005-08-21 14:29:06 1 2006-02-16 02:30:53
  43808. 13931 2005-08-20 17:16:10 3884 32 2005-08-27 12:03:10 2 2006-02-16 02:30:53
  43809. 13932 2005-08-20 17:17:00 471 441 2005-08-24 14:06:00 1 2006-02-16 02:30:53
  43810. 13933 2005-08-20 17:17:07 647 159 2005-08-22 18:10:07 2 2006-02-16 02:30:53
  43811. 13934 2005-08-20 17:18:48 4567 457 2005-08-26 15:31:48 1 2006-02-16 02:30:53
  43812. 13935 2005-08-20 17:20:49 4426 205 2005-08-24 16:52:49 2 2006-02-16 02:30:53
  43813. 13936 2005-08-20 17:22:35 1731 364 2005-08-23 20:07:35 2 2006-02-16 02:30:53
  43814. 13937 2005-08-20 17:22:51 1755 172 2005-08-27 15:51:51 1 2006-02-16 02:30:53
  43815. 13938 2005-08-20 17:24:45 3743 463 2005-08-21 18:39:45 1 2006-02-16 02:30:53
  43816. 13939 2005-08-20 17:28:01 2700 585 2005-08-23 14:40:01 2 2006-02-16 02:30:53
  43817. 13940 2005-08-20 17:28:57 2638 187 2005-08-27 22:07:57 1 2006-02-16 02:30:53
  43818. 13941 2006-02-14 15:16:03 2727 476 \N 2 2006-02-16 02:30:53
  43819. 13942 2005-08-20 17:30:52 4403 211 2005-08-25 13:46:52 2 2006-02-16 02:30:53
  43820. 13943 2005-08-20 17:31:18 22 464 2005-08-24 11:33:18 1 2006-02-16 02:30:53
  43821. 13944 2005-08-20 17:41:16 3685 408 2005-08-23 12:02:16 1 2006-02-16 02:30:53
  43822. 13945 2005-08-20 17:43:56 3328 270 2005-08-26 19:19:56 1 2006-02-16 02:30:53
  43823. 13946 2005-08-20 17:44:32 3564 529 2005-08-28 19:19:32 1 2006-02-16 02:30:53
  43824. 13947 2005-08-20 17:46:06 2562 218 2005-08-29 23:44:06 2 2006-02-16 02:30:53
  43825. 13948 2005-08-20 17:50:48 4033 410 2005-08-25 20:56:48 2 2006-02-16 02:30:53
  43826. 13949 2005-08-20 17:55:13 1518 34 2005-08-22 20:49:13 1 2006-02-16 02:30:53
  43827. 13950 2005-08-20 17:58:00 3978 93 2005-08-29 23:23:00 1 2006-02-16 02:30:53
  43828. 13951 2005-08-20 17:58:11 2034 40 2005-08-26 14:50:11 2 2006-02-16 02:30:53
  43829. 13952 2006-02-14 15:16:03 224 199 \N 2 2006-02-16 02:30:53
  43830. 13953 2005-08-20 18:00:37 1818 371 2005-08-28 14:52:37 1 2006-02-16 02:30:53
  43831. 13954 2005-08-20 18:02:41 3812 207 2005-08-27 21:52:41 2 2006-02-16 02:30:53
  43832. 13955 2005-08-20 18:05:12 2613 273 2005-08-29 18:25:12 1 2006-02-16 02:30:53
  43833. 13956 2005-08-20 18:08:19 3757 484 2005-08-29 17:03:19 1 2006-02-16 02:30:53
  43834. 13957 2005-08-20 18:09:04 2889 179 2005-08-23 16:52:04 1 2006-02-16 02:30:53
  43835. 13958 2005-08-20 18:11:44 2380 33 2005-08-28 14:59:44 1 2006-02-16 02:30:53
  43836. 13959 2005-08-20 18:16:21 2283 142 2005-08-22 13:56:21 2 2006-02-16 02:30:53
  43837. 13960 2005-08-20 18:16:26 4177 459 2005-08-29 14:06:26 1 2006-02-16 02:30:53
  43838. 13961 2005-08-20 18:16:34 2271 129 2005-08-21 16:14:34 1 2006-02-16 02:30:53
  43839. 13962 2005-08-20 18:18:06 1434 348 2005-08-24 22:16:06 2 2006-02-16 02:30:53
  43840. 13963 2005-08-20 18:20:18 4145 368 2005-08-24 21:26:18 1 2006-02-16 02:30:53
  43841. 13964 2005-08-20 18:24:26 108 128 2005-08-21 21:19:26 2 2006-02-16 02:30:53
  43842. 13965 2006-02-14 15:16:03 670 324 \N 2 2006-02-16 02:30:53
  43843. 13966 2005-08-20 18:28:28 4520 260 2005-08-22 16:49:28 2 2006-02-16 02:30:53
  43844. 13967 2005-08-20 18:28:46 2751 459 2005-08-26 17:37:46 2 2006-02-16 02:30:53
  43845. 13968 2006-02-14 15:16:03 3715 15 \N 2 2006-02-16 02:30:53
  43846. 13969 2005-08-20 18:42:40 1836 237 2005-08-27 17:33:40 2 2006-02-16 02:30:53
  43847. 13970 2005-08-20 18:43:34 1942 418 2005-08-22 15:17:34 2 2006-02-16 02:30:53
  43848. 13971 2005-08-20 18:44:53 1678 64 2005-08-22 16:25:53 2 2006-02-16 02:30:53
  43849. 13972 2005-08-20 18:52:17 1687 553 2005-08-28 15:19:17 1 2006-02-16 02:30:53
  43850. 13973 2005-08-20 18:52:43 1181 58 2005-08-21 19:11:43 1 2006-02-16 02:30:53
  43851. 13974 2005-08-20 18:54:59 1912 479 2005-08-28 13:02:59 1 2006-02-16 02:30:53
  43852. 13975 2005-08-20 18:58:23 3821 286 2005-08-25 20:58:23 1 2006-02-16 02:30:53
  43853. 13976 2005-08-20 19:02:16 1785 278 2005-08-25 17:58:16 2 2006-02-16 02:30:53
  43854. 13977 2005-08-20 19:02:34 1126 115 2005-08-24 14:14:34 1 2006-02-16 02:30:53
  43855. 13978 2005-08-20 19:03:25 1263 260 2005-08-27 18:02:25 2 2006-02-16 02:30:53
  43856. 13979 2005-08-20 19:03:49 2998 211 2005-08-24 21:23:49 1 2006-02-16 02:30:53
  43857. 13980 2005-08-20 19:04:40 1067 391 2005-08-21 18:36:40 2 2006-02-16 02:30:53
  43858. 13981 2005-08-20 19:07:20 3342 249 2005-08-23 15:13:20 1 2006-02-16 02:30:53
  43859. 13982 2005-08-20 19:08:25 2901 448 2005-08-28 15:59:25 2 2006-02-16 02:30:53
  43860. 13983 2005-08-20 19:08:32 457 231 2005-08-29 23:45:32 1 2006-02-16 02:30:53
  43861. 13984 2005-08-20 19:12:30 2183 473 2005-08-29 22:04:30 1 2006-02-16 02:30:53
  43862. 13985 2005-08-20 19:13:06 1081 339 2005-08-24 21:24:06 2 2006-02-16 02:30:53
  43863. 13986 2005-08-20 19:13:23 3701 152 2005-08-22 20:59:23 2 2006-02-16 02:30:53
  43864. 13987 2005-08-20 19:19:30 1443 246 2005-08-23 15:37:30 2 2006-02-16 02:30:53
  43865. 13988 2005-08-20 19:21:28 3567 466 2005-08-21 22:20:28 2 2006-02-16 02:30:53
  43866. 13989 2005-08-20 19:27:50 1470 252 2005-08-28 15:17:50 2 2006-02-16 02:30:53
  43867. 13990 2005-08-20 19:29:23 2272 481 2005-08-25 18:50:23 2 2006-02-16 02:30:53
  43868. 13991 2005-08-20 19:29:44 1971 296 2005-08-24 21:10:44 1 2006-02-16 02:30:53
  43869. 13992 2005-08-20 19:30:35 2798 136 2005-08-24 19:09:35 2 2006-02-16 02:30:53
  43870. 13993 2005-08-20 19:32:29 1158 93 2005-08-26 16:59:29 2 2006-02-16 02:30:53
  43871. 13994 2005-08-20 19:33:21 142 180 2005-08-24 20:55:21 1 2006-02-16 02:30:53
  43872. 13995 2005-08-20 19:34:43 3789 381 2005-08-25 22:25:43 2 2006-02-16 02:30:53
  43873. 13996 2005-08-20 19:45:43 3341 306 2005-08-22 16:47:43 2 2006-02-16 02:30:53
  43874. 13997 2005-08-20 19:51:28 2330 175 2005-08-26 01:29:28 2 2006-02-16 02:30:53
  43875. 13998 2005-08-20 19:52:38 3936 530 2005-08-26 14:57:38 1 2006-02-16 02:30:53
  43876. 13999 2005-08-20 19:53:32 4149 239 2005-08-26 19:01:32 1 2006-02-16 02:30:53
  43877. 14000 2005-08-20 20:06:05 3907 276 2005-08-28 17:02:05 1 2006-02-16 02:30:53
  43878. 14001 2005-08-20 20:07:15 1318 120 2005-08-27 00:50:15 2 2006-02-16 02:30:53
  43879. 14002 2005-08-20 20:12:19 87 33 2005-08-23 00:23:19 1 2006-02-16 02:30:53
  43880. 14003 2005-08-20 20:16:06 3165 256 2005-08-28 14:36:06 1 2006-02-16 02:30:53
  43881. 14004 2005-08-20 20:16:35 3445 358 2005-08-28 17:23:35 2 2006-02-16 02:30:53
  43882. 14005 2005-08-20 20:19:05 1415 135 2005-08-26 01:42:05 2 2006-02-16 02:30:53
  43883. 14006 2005-08-20 20:21:36 2189 186 2005-08-21 15:26:36 1 2006-02-16 02:30:53
  43884. 14007 2005-08-20 20:22:47 374 284 2005-08-28 20:40:47 2 2006-02-16 02:30:53
  43885. 14008 2005-08-20 20:26:00 2427 560 2005-08-28 17:23:00 2 2006-02-16 02:30:53
  43886. 14009 2005-08-20 20:26:53 3004 382 2005-08-21 23:32:53 2 2006-02-16 02:30:53
  43887. 14010 2005-08-20 20:29:46 934 537 2005-08-26 17:37:46 2 2006-02-16 02:30:53
  43888. 14011 2005-08-20 20:32:56 1212 379 2005-08-28 21:44:56 1 2006-02-16 02:30:53
  43889. 14012 2005-08-20 20:42:12 1866 274 2005-08-23 23:10:12 2 2006-02-16 02:30:53
  43890. 14013 2005-08-20 20:42:50 3941 496 2005-08-25 21:37:50 2 2006-02-16 02:30:53
  43891. 14014 2005-08-20 20:47:09 2188 335 2005-08-21 22:08:09 2 2006-02-16 02:30:53
  43892. 14015 2005-08-20 20:47:43 3145 554 2005-08-26 19:37:43 1 2006-02-16 02:30:53
  43893. 14016 2005-08-20 20:52:03 509 220 2005-08-23 18:04:03 2 2006-02-16 02:30:53
  43894. 14017 2005-08-20 20:55:32 920 230 2005-08-23 16:12:32 1 2006-02-16 02:30:53
  43895. 14018 2006-02-14 15:16:03 2136 533 \N 2 2006-02-16 02:30:53
  43896. 14019 2005-08-20 20:59:15 1929 202 2005-08-28 17:29:15 2 2006-02-16 02:30:53
  43897. 14020 2005-08-20 20:59:43 2257 72 2005-08-23 17:11:43 2 2006-02-16 02:30:53
  43898. 14021 2005-08-20 21:02:12 4394 147 2005-08-27 22:15:12 1 2006-02-16 02:30:53
  43899. 14022 2005-08-20 21:08:49 4068 170 2005-08-29 21:57:49 1 2006-02-16 02:30:53
  43900. 14023 2005-08-20 21:10:32 2668 304 2005-08-23 20:57:32 1 2006-02-16 02:30:53
  43901. 14024 2005-08-20 21:13:58 1492 87 2005-08-29 23:02:58 1 2006-02-16 02:30:53
  43902. 14025 2005-08-20 21:19:36 4521 37 2005-08-29 23:39:36 1 2006-02-16 02:30:53
  43903. 14026 2005-08-20 21:21:08 115 231 2005-08-22 23:19:08 2 2006-02-16 02:30:53
  43904. 14027 2005-08-20 21:21:34 284 432 2005-08-28 17:46:34 1 2006-02-16 02:30:53
  43905. 14028 2005-08-20 21:23:03 4061 158 2005-08-25 17:29:03 2 2006-02-16 02:30:53
  43906. 14029 2005-08-20 21:23:11 2653 219 2005-08-22 18:01:11 2 2006-02-16 02:30:53
  43907. 14030 2005-08-20 21:23:54 1027 127 2005-08-27 01:19:54 1 2006-02-16 02:30:53
  43908. 14031 2005-08-20 21:24:24 440 361 2005-08-23 21:47:24 2 2006-02-16 02:30:53
  43909. 14032 2005-08-20 21:26:55 3542 317 2005-08-26 19:19:55 1 2006-02-16 02:30:53
  43910. 14033 2005-08-20 21:30:53 525 243 2005-08-23 01:45:53 2 2006-02-16 02:30:53
  43911. 14034 2005-08-20 21:31:52 3484 200 2005-08-29 00:13:52 1 2006-02-16 02:30:53
  43912. 14035 2005-08-20 21:31:58 2035 260 2005-08-22 16:28:58 1 2006-02-16 02:30:53
  43913. 14036 2005-08-20 21:35:27 202 256 2005-08-23 03:29:27 1 2006-02-16 02:30:53
  43914. 14037 2005-08-20 21:35:58 3655 372 2005-08-29 23:06:58 2 2006-02-16 02:30:53
  43915. 14038 2005-08-20 21:39:23 1069 589 2005-08-27 23:57:23 2 2006-02-16 02:30:53
  43916. 14039 2005-08-20 21:39:43 4187 383 2005-08-24 19:03:43 1 2006-02-16 02:30:53
  43917. 14040 2005-08-20 21:43:44 905 17 2005-08-25 16:30:44 1 2006-02-16 02:30:53
  43918. 14041 2005-08-20 21:45:23 52 247 2005-08-26 01:42:23 1 2006-02-16 02:30:53
  43919. 14042 2005-08-20 21:45:51 505 322 2005-08-23 19:57:51 2 2006-02-16 02:30:53
  43920. 14043 2005-08-20 21:46:43 1485 586 2005-08-21 18:27:43 2 2006-02-16 02:30:53
  43921. 14044 2005-08-20 21:48:38 1422 145 2005-08-29 02:56:38 1 2006-02-16 02:30:53
  43922. 14045 2005-08-20 21:50:11 3010 509 2005-08-25 19:03:11 2 2006-02-16 02:30:53
  43923. 14046 2005-08-20 21:53:21 2352 524 2005-08-23 17:51:21 2 2006-02-16 02:30:53
  43924. 14047 2005-08-20 22:00:43 186 579 2005-08-24 03:17:43 2 2006-02-16 02:30:53
  43925. 14048 2005-08-20 22:03:18 3475 105 2005-08-25 02:57:18 2 2006-02-16 02:30:53
  43926. 14049 2005-08-20 22:08:55 1335 112 2005-08-28 20:24:55 1 2006-02-16 02:30:53
  43927. 14050 2005-08-20 22:09:04 1737 596 2005-08-26 01:39:04 2 2006-02-16 02:30:53
  43928. 14051 2005-08-20 22:09:51 4012 362 2005-08-29 04:04:51 2 2006-02-16 02:30:53
  43929. 14052 2005-08-20 22:11:46 3893 514 2005-08-22 20:26:46 2 2006-02-16 02:30:53
  43930. 14053 2005-08-20 22:13:59 2177 5 2005-08-26 20:50:59 2 2006-02-16 02:30:53
  43931. 14054 2005-08-20 22:17:01 338 50 2005-08-21 21:34:01 1 2006-02-16 02:30:53
  43932. 14055 2005-08-20 22:18:00 1571 148 2005-08-22 02:09:00 2 2006-02-16 02:30:53
  43933. 14056 2005-08-20 22:18:53 1300 22 2005-08-27 01:05:53 2 2006-02-16 02:30:53
  43934. 14057 2005-08-20 22:22:59 1526 333 2005-08-25 16:58:59 2 2006-02-16 02:30:53
  43935. 14058 2005-08-20 22:24:35 178 430 2005-08-30 02:26:35 1 2006-02-16 02:30:53
  43936. 14059 2005-08-20 22:24:44 2045 141 2005-08-26 21:25:44 2 2006-02-16 02:30:53
  43937. 14060 2006-02-14 15:16:03 3100 175 \N 2 2006-02-16 02:30:53
  43938. 14061 2005-08-20 22:32:11 73 53 2005-08-22 19:28:11 1 2006-02-16 02:30:53
  43939. 14062 2005-08-20 22:34:34 2841 239 2005-08-25 17:11:34 2 2006-02-16 02:30:53
  43940. 14063 2005-08-20 22:36:40 1215 275 2005-08-25 00:18:40 2 2006-02-16 02:30:53
  43941. 14064 2005-08-20 22:39:16 2938 103 2005-08-22 00:45:16 2 2006-02-16 02:30:53
  43942. 14065 2005-08-20 22:40:47 3758 190 2005-08-24 01:47:47 1 2006-02-16 02:30:53
  43943. 14066 2005-08-20 22:45:58 2444 274 2005-08-29 00:23:58 2 2006-02-16 02:30:53
  43944. 14067 2005-08-20 22:49:23 1376 259 2005-08-29 22:28:23 2 2006-02-16 02:30:53
  43945. 14068 2005-08-20 22:50:59 818 412 2005-08-29 00:45:59 1 2006-02-16 02:30:53
  43946. 14069 2005-08-20 22:51:25 2239 197 2005-08-30 00:30:25 2 2006-02-16 02:30:53
  43947. 14070 2005-08-20 22:56:34 846 581 2005-08-29 22:02:34 1 2006-02-16 02:30:53
  43948. 14071 2005-08-20 23:01:56 2471 550 2005-08-22 02:14:56 1 2006-02-16 02:30:53
  43949. 14072 2005-08-20 23:07:10 2387 515 2005-08-23 03:38:10 2 2006-02-16 02:30:53
  43950. 14073 2005-08-20 23:12:57 2996 230 2005-08-28 18:47:57 2 2006-02-16 02:30:53
  43951. 14074 2005-08-20 23:16:07 1303 506 2005-08-26 04:45:07 1 2006-02-16 02:30:53
  43952. 14075 2005-08-20 23:18:54 3793 32 2005-08-26 21:59:54 2 2006-02-16 02:30:53
  43953. 14076 2005-08-20 23:20:10 1070 574 2005-08-24 04:00:10 1 2006-02-16 02:30:53
  43954. 14077 2005-08-20 23:24:07 3184 21 2005-08-29 02:53:07 1 2006-02-16 02:30:53
  43955. 14078 2005-08-20 23:26:40 1642 396 2005-08-28 02:30:40 1 2006-02-16 02:30:53
  43956. 14079 2005-08-20 23:29:25 3528 348 2005-08-25 04:16:25 2 2006-02-16 02:30:53
  43957. 14080 2005-08-20 23:29:50 3962 266 2005-08-26 00:33:50 1 2006-02-16 02:30:53
  43958. 14081 2005-08-20 23:35:13 589 392 2005-08-28 01:41:13 2 2006-02-16 02:30:53
  43959. 14082 2005-08-20 23:42:00 3767 179 2005-08-27 00:59:00 1 2006-02-16 02:30:53
  43960. 14083 2005-08-20 23:42:31 1823 176 2005-08-28 21:44:31 1 2006-02-16 02:30:53
  43961. 14084 2005-08-20 23:42:46 900 37 2005-08-24 20:06:46 1 2006-02-16 02:30:53
  43962. 14085 2005-08-20 23:46:24 3506 471 2005-08-29 02:31:24 2 2006-02-16 02:30:53
  43963. 14086 2005-08-20 23:47:54 3244 253 2005-08-27 22:49:54 1 2006-02-16 02:30:53
  43964. 14087 2005-08-20 23:53:40 2368 289 2005-08-26 20:22:40 1 2006-02-16 02:30:53
  43965. 14088 2005-08-20 23:57:24 1184 518 2005-08-28 21:49:24 1 2006-02-16 02:30:53
  43966. 14089 2005-08-20 23:59:02 1400 425 2005-08-27 00:19:02 1 2006-02-16 02:30:53
  43967. 14090 2005-08-21 00:11:16 3254 168 2005-08-23 19:48:16 2 2006-02-16 02:30:53
  43968. 14091 2005-08-21 00:11:17 3304 53 2005-08-27 18:38:17 1 2006-02-16 02:30:53
  43969. 14092 2005-08-21 00:14:32 1596 273 2005-08-24 22:22:32 2 2006-02-16 02:30:53
  43970. 14093 2005-08-21 00:21:29 1176 177 2005-08-22 04:01:29 1 2006-02-16 02:30:53
  43971. 14094 2005-08-21 00:21:35 3674 471 2005-08-23 05:27:35 2 2006-02-16 02:30:53
  43972. 14095 2005-08-21 00:25:45 1550 489 2005-08-28 23:00:45 1 2006-02-16 02:30:53
  43973. 14096 2005-08-21 00:27:46 2089 342 2005-08-22 22:53:46 1 2006-02-16 02:30:53
  43974. 14097 2005-08-21 00:28:48 4351 88 2005-08-29 22:15:48 1 2006-02-16 02:30:53
  43975. 14098 2005-08-21 00:30:32 6 554 \N 2 2006-02-23 09:12:08
  43976. 14099 2005-08-21 00:31:03 2452 224 2005-08-27 03:18:03 2 2006-02-16 02:30:53
  43977. 14100 2005-08-21 00:31:07 4295 397 2005-08-25 05:31:07 2 2006-02-16 02:30:53
  43978. 14101 2005-08-21 00:33:03 1892 19 2005-08-24 01:59:03 1 2006-02-16 02:30:53
  43979. 14102 2005-08-21 00:35:21 3772 584 2005-08-30 04:51:21 2 2006-02-16 02:30:53
  43980. 14103 2005-08-21 00:37:00 1438 409 2005-08-25 22:09:00 2 2006-02-16 02:30:53
  43981. 14104 2005-08-21 00:37:44 912 178 2005-08-21 22:55:44 2 2006-02-16 02:30:53
  43982. 14105 2005-08-21 00:44:34 1111 71 2005-08-29 19:00:34 1 2006-02-16 02:30:53
  43983. 14106 2005-08-21 00:46:01 2673 315 2005-08-27 23:44:01 1 2006-02-16 02:30:53
  43984. 14107 2006-02-14 15:16:03 3998 251 \N 1 2006-02-16 02:30:53
  43985. 14108 2005-08-21 00:52:45 4339 243 2005-08-21 19:35:45 2 2006-02-16 02:30:53
  43986. 14109 2005-08-21 00:52:58 1046 180 2005-08-22 00:09:58 2 2006-02-16 02:30:53
  43987. 14110 2005-08-21 00:53:09 2709 35 2005-08-24 05:33:09 2 2006-02-16 02:30:53
  43988. 14111 2005-08-21 00:59:01 1294 130 2005-08-22 20:43:01 2 2006-02-16 02:30:53
  43989. 14112 2005-08-21 01:00:46 734 141 2005-08-27 03:46:46 1 2006-02-16 02:30:53
  43990. 14113 2005-08-21 01:03:30 931 288 2005-08-23 06:46:30 2 2006-02-16 02:30:53
  43991. 14114 2005-08-21 01:07:11 2270 8 2005-08-24 20:33:11 1 2006-02-16 02:30:53
  43992. 14115 2005-08-21 01:10:29 1945 257 2005-08-24 01:21:29 1 2006-02-16 02:30:53
  43993. 14116 2005-08-21 01:11:17 2356 142 2005-08-24 23:45:17 2 2006-02-16 02:30:53
  43994. 14117 2005-08-21 01:11:59 573 493 2005-08-22 06:56:59 1 2006-02-16 02:30:53
  43995. 14118 2005-08-21 01:13:37 2605 337 2005-08-28 02:35:37 2 2006-02-16 02:30:53
  43996. 14119 2005-08-21 01:15:59 129 53 2005-08-27 23:36:59 2 2006-02-16 02:30:53
  43997. 14120 2005-08-21 01:25:00 4069 302 2005-08-24 23:21:00 2 2006-02-16 02:30:53
  43998. 14121 2005-08-21 01:26:33 4207 417 2005-08-28 22:47:33 2 2006-02-16 02:30:53
  43999. 14122 2005-08-21 01:29:01 3955 86 2005-08-27 05:31:01 1 2006-02-16 02:30:53
  44000. 14123 2005-08-21 01:31:25 143 66 2005-08-23 02:32:25 1 2006-02-16 02:30:53
  44001. 14124 2005-08-21 01:31:51 311 35 2005-08-24 22:20:51 2 2006-02-16 02:30:53
  44002. 14125 2005-08-21 01:32:16 2174 265 2005-08-26 00:09:16 1 2006-02-16 02:30:53
  44003. 14126 2005-08-21 01:32:17 2738 215 2005-08-23 01:02:17 1 2006-02-16 02:30:53
  44004. 14127 2005-08-21 01:33:32 4532 550 2005-08-22 02:47:32 2 2006-02-16 02:30:53
  44005. 14128 2005-08-21 01:35:58 2594 81 2005-08-21 21:23:58 2 2006-02-16 02:30:53
  44006. 14129 2005-08-21 01:42:15 3572 362 2005-08-23 20:04:15 2 2006-02-16 02:30:53
  44007. 14130 2005-08-21 01:43:11 3859 352 2005-08-27 21:16:11 2 2006-02-16 02:30:53
  44008. 14131 2005-08-21 01:43:40 4382 267 2005-08-29 02:00:40 2 2006-02-16 02:30:53
  44009. 14132 2005-08-21 01:43:58 3806 91 2005-08-26 20:16:58 2 2006-02-16 02:30:53
  44010. 14133 2005-08-21 01:44:14 2463 453 2005-08-30 02:19:14 2 2006-02-16 02:30:53
  44011. 14134 2005-08-21 01:45:54 2159 497 2005-08-24 01:36:54 1 2006-02-16 02:30:53
  44012. 14135 2005-08-21 01:53:54 347 59 2005-08-27 05:57:54 1 2006-02-16 02:30:53
  44013. 14136 2005-08-21 01:57:26 268 135 2005-08-28 01:11:26 1 2006-02-16 02:30:53
  44014. 14137 2006-02-14 15:16:03 2346 53 \N 2 2006-02-16 02:30:53
  44015. 14138 2005-08-21 01:59:37 1238 121 2005-08-30 01:17:37 2 2006-02-16 02:30:53
  44016. 14139 2005-08-21 02:04:33 2280 561 2005-08-22 04:16:33 2 2006-02-16 02:30:53
  44017. 14140 2005-08-21 02:04:57 2070 65 2005-08-29 06:41:57 2 2006-02-16 02:30:53
  44018. 14141 2005-08-21 02:07:22 4527 190 2005-08-30 07:32:22 1 2006-02-16 02:30:53
  44019. 14142 2005-08-21 02:07:43 1479 544 2005-08-23 02:37:43 2 2006-02-16 02:30:53
  44020. 14143 2005-08-21 02:10:32 2549 146 2005-08-23 23:50:32 1 2006-02-16 02:30:53
  44021. 14144 2005-08-21 02:10:57 2366 46 2005-08-28 01:02:57 1 2006-02-16 02:30:53
  44022. 14145 2005-08-21 02:11:38 150 314 2005-08-22 22:19:38 2 2006-02-16 02:30:53
  44023. 14146 2005-08-21 02:13:31 2151 192 2005-08-24 22:47:31 2 2006-02-16 02:30:53
  44024. 14147 2005-08-21 02:14:03 1476 366 2005-08-27 22:38:03 1 2006-02-16 02:30:53
  44025. 14148 2005-08-21 02:17:49 1605 528 2005-08-22 00:12:49 1 2006-02-16 02:30:53
  44026. 14149 2005-08-21 02:22:47 3371 518 2005-08-24 02:36:47 1 2006-02-16 02:30:53
  44027. 14150 2005-08-21 02:23:03 2324 161 2005-08-25 22:50:03 2 2006-02-16 02:30:53
  44028. 14151 2005-08-21 02:23:25 2785 426 2005-08-30 07:08:25 1 2006-02-16 02:30:53
  44029. 14152 2005-08-21 02:23:50 2561 379 2005-08-25 06:05:50 1 2006-02-16 02:30:53
  44030. 14153 2005-08-21 02:24:33 1502 120 2005-08-27 05:28:33 2 2006-02-16 02:30:53
  44031. 14154 2005-08-21 02:30:00 951 468 2005-08-28 01:41:00 2 2006-02-16 02:30:53
  44032. 14155 2005-08-21 02:31:35 769 148 2005-08-27 06:00:35 2 2006-02-16 02:30:53
  44033. 14156 2005-08-21 02:35:16 437 147 2005-08-27 01:32:16 2 2006-02-16 02:30:53
  44034. 14157 2005-08-21 02:43:15 4471 128 2005-08-24 02:47:15 1 2006-02-16 02:30:53
  44035. 14158 2005-08-21 02:43:20 474 114 2005-08-28 02:19:20 1 2006-02-16 02:30:53
  44036. 14159 2005-08-21 02:45:58 3231 144 2005-08-27 04:53:58 1 2006-02-16 02:30:53
  44037. 14160 2006-02-14 15:16:03 2428 493 \N 2 2006-02-16 02:30:53
  44038. 14161 2005-08-21 02:51:59 2744 21 2005-08-28 21:38:59 2 2006-02-16 02:30:53
  44039. 14162 2005-08-21 02:55:34 3788 315 2005-08-27 00:13:34 1 2006-02-16 02:30:53
  44040. 14163 2005-08-21 02:56:52 1007 204 2005-08-21 21:03:52 2 2006-02-16 02:30:53
  44041. 14164 2005-08-21 02:58:02 2381 274 2005-08-29 23:17:02 2 2006-02-16 02:30:53
  44042. 14165 2005-08-21 02:59:17 4151 150 2005-08-24 23:09:17 2 2006-02-16 02:30:53
  44043. 14166 2005-08-21 02:59:31 2457 190 2005-08-24 23:19:31 2 2006-02-16 02:30:53
  44044. 14167 2005-08-21 02:59:48 1005 64 2005-08-29 22:17:48 1 2006-02-16 02:30:53
  44045. 14168 2005-08-21 03:00:03 1321 49 2005-08-29 06:04:03 2 2006-02-16 02:30:53
  44046. 14169 2005-08-21 03:00:31 3800 396 2005-08-30 01:16:31 1 2006-02-16 02:30:53
  44047. 14170 2005-08-21 03:00:39 894 259 2005-08-27 23:07:39 1 2006-02-16 02:30:53
  44048. 14171 2005-08-21 03:00:42 4179 320 2005-08-24 00:54:42 1 2006-02-16 02:30:53
  44049. 14172 2006-02-14 15:16:03 2158 450 \N 2 2006-02-16 02:30:53
  44050. 14173 2005-08-21 03:01:01 3175 152 2005-08-22 02:40:01 1 2006-02-16 02:30:53
  44051. 14174 2005-08-21 03:01:45 1862 29 2005-08-22 07:19:45 2 2006-02-16 02:30:53
  44052. 14175 2006-02-14 15:16:03 2021 452 \N 1 2006-02-16 02:30:53
  44053. 14176 2005-08-21 03:09:23 4420 556 2005-08-26 21:26:23 1 2006-02-16 02:30:53
  44054. 14177 2005-08-21 03:11:33 409 121 2005-08-28 21:41:33 2 2006-02-16 02:30:53
  44055. 14178 2005-08-21 03:13:45 2178 524 2005-08-22 01:50:45 1 2006-02-16 02:30:53
  44056. 14179 2005-08-21 03:14:27 3956 79 2005-08-26 00:46:27 2 2006-02-16 02:30:53
  44057. 14180 2005-08-21 03:16:15 796 262 2005-08-24 22:31:15 2 2006-02-16 02:30:53
  44058. 14181 2005-08-21 03:16:30 197 210 2005-08-29 06:25:30 2 2006-02-16 02:30:53
  44059. 14182 2005-08-21 03:17:10 2422 519 2005-08-24 21:46:10 1 2006-02-16 02:30:53
  44060. 14183 2005-08-21 03:24:29 1888 26 2005-08-22 07:25:29 2 2006-02-16 02:30:53
  44061. 14184 2005-08-21 03:24:50 3759 148 2005-08-29 01:46:50 2 2006-02-16 02:30:53
  44062. 14185 2005-08-21 03:28:37 3957 579 2005-08-26 01:15:37 1 2006-02-16 02:30:53
  44063. 14186 2005-08-21 03:31:07 3158 461 2005-08-28 07:29:07 2 2006-02-16 02:30:53
  44064. 14187 2005-08-21 03:32:03 4031 275 2005-08-25 03:29:03 2 2006-02-16 02:30:53
  44065. 14188 2005-08-21 03:32:04 4492 548 2005-08-22 07:26:04 1 2006-02-16 02:30:53
  44066. 14189 2005-08-21 03:32:17 2209 127 2005-08-22 04:46:17 2 2006-02-16 02:30:53
  44067. 14190 2005-08-21 03:35:21 4203 517 2005-08-29 07:35:21 2 2006-02-16 02:30:53
  44068. 14191 2005-08-21 03:35:58 301 423 2005-08-28 00:28:58 1 2006-02-16 02:30:53
  44069. 14192 2005-08-21 03:37:42 3563 26 2005-08-28 05:31:42 2 2006-02-16 02:30:53
  44070. 14193 2005-08-21 03:38:27 513 25 2005-08-28 09:16:27 1 2006-02-16 02:30:53
  44071. 14194 2005-08-21 03:40:11 2003 138 2005-08-26 07:38:11 1 2006-02-16 02:30:53
  44072. 14195 2005-08-21 03:40:35 3732 93 2005-08-23 01:22:35 1 2006-02-16 02:30:53
  44073. 14196 2005-08-21 03:40:40 4477 281 2005-08-25 05:55:40 1 2006-02-16 02:30:53
  44074. 14197 2005-08-21 03:47:25 340 469 2005-08-30 09:15:25 2 2006-02-16 02:30:53
  44075. 14198 2005-08-21 03:48:31 465 381 2005-08-24 07:10:31 2 2006-02-16 02:30:53
  44076. 14199 2005-08-21 03:48:43 658 442 2005-08-23 04:01:43 1 2006-02-16 02:30:53
  44077. 14200 2005-08-21 03:51:27 2339 349 2005-08-29 22:00:27 1 2006-02-16 02:30:53
  44078. 14201 2005-08-21 03:51:34 314 427 2005-08-30 03:42:34 2 2006-02-16 02:30:53
  44079. 14202 2005-08-21 03:51:52 1995 473 2005-08-22 09:35:52 1 2006-02-16 02:30:53
  44080. 14203 2005-08-21 03:51:52 3668 95 2005-08-24 06:13:52 2 2006-02-16 02:30:53
  44081. 14204 2006-02-14 15:16:03 4334 287 \N 1 2006-02-16 02:30:53
  44082. 14205 2005-08-21 03:57:15 315 406 2005-08-30 08:46:15 2 2006-02-16 02:30:53
  44083. 14206 2005-08-21 03:59:26 860 279 2005-08-26 03:52:26 1 2006-02-16 02:30:53
  44084. 14207 2005-08-21 04:08:19 1327 569 2005-08-29 07:59:19 2 2006-02-16 02:30:53
  44085. 14208 2005-08-21 04:09:18 4180 299 2005-08-22 03:29:18 1 2006-02-16 02:30:53
  44086. 14209 2005-08-21 04:17:56 896 472 2005-08-27 06:57:56 1 2006-02-16 02:30:53
  44087. 14210 2005-08-21 04:28:02 1867 468 2005-08-24 02:14:02 2 2006-02-16 02:30:53
  44088. 14211 2005-08-21 04:29:11 300 372 2005-08-24 02:50:11 2 2006-02-16 02:30:53
  44089. 14212 2005-08-21 04:29:26 4540 354 2005-08-24 00:46:26 2 2006-02-16 02:30:53
  44090. 14213 2005-08-21 04:30:47 382 511 2005-08-24 23:01:47 1 2006-02-16 02:30:53
  44091. 14214 2005-08-21 04:30:49 4510 198 2005-08-26 04:42:49 1 2006-02-16 02:30:53
  44092. 14215 2005-08-21 04:34:11 35 54 2005-08-27 10:30:11 2 2006-02-16 02:30:53
  44093. 14216 2006-02-14 15:16:03 3763 186 \N 1 2006-02-16 02:30:53
  44094. 14217 2005-08-21 04:37:56 2847 66 2005-08-26 03:55:56 2 2006-02-16 02:30:53
  44095. 14218 2005-08-21 04:43:59 4087 104 2005-08-27 10:29:59 1 2006-02-16 02:30:53
  44096. 14219 2006-02-14 15:16:03 3718 334 \N 2 2006-02-16 02:30:53
  44097. 14220 2006-02-14 15:16:03 2618 162 \N 1 2006-02-16 02:30:53
  44098. 14221 2005-08-21 04:49:41 3824 51 2005-08-29 23:52:41 1 2006-02-16 02:30:53
  44099. 14222 2005-08-21 04:49:48 714 7 2005-08-25 05:34:48 2 2006-02-16 02:30:53
  44100. 14223 2005-08-21 04:51:51 514 392 2005-08-29 00:37:51 1 2006-02-16 02:30:53
  44101. 14224 2005-08-21 04:53:08 3634 323 2005-08-27 04:12:08 2 2006-02-16 02:30:53
  44102. 14225 2005-08-21 04:53:37 984 4 2005-08-25 23:39:37 2 2006-02-16 02:30:53
  44103. 14226 2005-08-21 04:55:37 1793 316 2005-08-24 04:32:37 1 2006-02-16 02:30:53
  44104. 14227 2005-08-21 04:56:31 4102 277 2005-08-22 05:04:31 2 2006-02-16 02:30:53
  44105. 14228 2005-08-21 04:57:08 2016 71 2005-08-25 00:06:08 2 2006-02-16 02:30:53
  44106. 14229 2005-08-21 04:57:15 4479 186 2005-08-26 10:00:15 1 2006-02-16 02:30:53
  44107. 14230 2005-08-21 04:57:29 844 584 2005-08-27 08:14:29 2 2006-02-16 02:30:53
  44108. 14231 2005-08-21 05:04:34 1244 307 2005-08-23 04:58:34 1 2006-02-16 02:30:53
  44109. 14232 2005-08-21 05:07:02 2710 176 2005-08-29 06:57:02 1 2006-02-16 02:30:53
  44110. 14233 2005-08-21 05:07:08 2943 599 2005-08-28 03:20:08 1 2006-02-16 02:30:53
  44111. 14234 2005-08-21 05:07:12 1439 271 2005-08-23 06:44:12 2 2006-02-16 02:30:53
  44112. 14235 2005-08-21 05:08:42 125 558 2005-08-29 23:36:42 1 2006-02-16 02:30:53
  44113. 14236 2005-08-21 05:13:16 172 25 2005-08-26 04:03:16 2 2006-02-16 02:30:53
  44114. 14237 2005-08-21 05:15:00 3284 410 2005-08-25 10:06:00 1 2006-02-16 02:30:53
  44115. 14238 2005-08-21 05:16:40 3148 192 2005-08-30 02:13:40 2 2006-02-16 02:30:53
  44116. 14239 2005-08-21 05:18:57 1559 416 2005-08-22 00:12:57 2 2006-02-16 02:30:53
  44117. 14240 2005-08-21 05:19:39 3294 12 2005-08-22 23:25:39 2 2006-02-16 02:30:53
  44118. 14241 2005-08-21 05:24:55 2547 291 2005-08-30 03:33:55 1 2006-02-16 02:30:53
  44119. 14242 2005-08-21 05:25:59 1588 68 2005-08-27 07:22:59 1 2006-02-16 02:30:53
  44120. 14243 2006-02-14 15:16:03 1489 264 \N 1 2006-02-16 02:30:53
  44121. 14244 2005-08-21 05:29:55 1150 43 2005-08-24 01:06:55 1 2006-02-16 02:30:53
  44122. 14245 2005-08-21 05:30:54 975 354 2005-08-26 07:02:54 1 2006-02-16 02:30:53
  44123. 14246 2005-08-21 05:34:09 3499 120 2005-08-26 06:12:09 1 2006-02-16 02:30:53
  44124. 14247 2005-08-21 05:35:17 267 302 2005-08-26 03:22:17 1 2006-02-16 02:30:53
  44125. 14248 2005-08-21 05:35:57 725 293 2005-08-28 05:53:57 2 2006-02-16 02:30:53
  44126. 14249 2005-08-21 05:38:05 695 268 2005-08-28 09:07:05 2 2006-02-16 02:30:53
  44127. 14250 2005-08-21 05:39:35 3008 313 2005-08-28 10:06:35 2 2006-02-16 02:30:53
  44128. 14251 2005-08-21 05:42:20 139 486 2005-08-26 06:20:20 2 2006-02-16 02:30:53
  44129. 14252 2005-08-21 05:44:07 2660 13 2005-08-29 08:53:07 1 2006-02-16 02:30:53
  44130. 14253 2005-08-21 05:47:52 4246 456 2005-08-25 04:28:52 1 2006-02-16 02:30:53
  44131. 14254 2005-08-21 05:51:28 1549 589 2005-08-29 06:05:28 2 2006-02-16 02:30:53
  44132. 14255 2005-08-21 05:51:37 3125 492 2005-08-29 10:00:37 1 2006-02-16 02:30:53
  44133. 14256 2005-08-21 05:52:27 2922 331 2005-08-29 02:10:27 2 2006-02-16 02:30:53
  44134. 14257 2005-08-21 05:52:57 3830 178 2005-08-29 03:18:57 2 2006-02-16 02:30:53
  44135. 14258 2005-08-21 05:56:36 752 359 2005-08-26 06:14:36 1 2006-02-16 02:30:53
  44136. 14259 2005-08-21 06:00:22 3705 583 2005-08-22 05:38:22 2 2006-02-16 02:30:53
  44137. 14260 2005-08-21 06:01:08 2961 40 2005-08-29 09:01:08 2 2006-02-16 02:30:53
  44138. 14261 2005-08-21 06:07:24 1426 166 2005-08-26 09:57:24 1 2006-02-16 02:30:53
  44139. 14262 2005-08-21 06:08:13 1430 324 2005-08-30 10:55:13 1 2006-02-16 02:30:53
  44140. 14263 2005-08-21 06:08:15 2595 533 2005-08-29 09:22:15 2 2006-02-16 02:30:53
  44141. 14264 2005-08-21 06:18:22 3426 295 2005-08-25 08:08:22 1 2006-02-16 02:30:53
  44142. 14265 2005-08-21 06:20:14 3116 134 2005-08-23 09:05:14 1 2006-02-16 02:30:53
  44143. 14266 2005-08-21 06:20:51 3543 269 2005-08-23 00:44:51 1 2006-02-16 02:30:53
  44144. 14267 2006-02-14 15:16:03 2199 527 \N 2 2006-02-16 02:30:53
  44145. 14268 2005-08-21 06:21:24 2442 278 2005-08-23 05:39:24 2 2006-02-16 02:30:53
  44146. 14269 2005-08-21 06:22:07 531 241 2005-08-30 00:41:07 2 2006-02-16 02:30:53
  44147. 14270 2005-08-21 06:22:18 4083 171 2005-08-27 08:04:18 1 2006-02-16 02:30:53
  44148. 14271 2005-08-21 06:23:29 4506 224 2005-08-27 04:49:29 1 2006-02-16 02:30:53
  44149. 14272 2005-08-21 06:24:55 3908 243 2005-08-28 02:25:55 1 2006-02-16 02:30:53
  44150. 14273 2005-08-21 06:26:48 2640 388 2005-08-30 10:34:48 1 2006-02-16 02:30:53
  44151. 14274 2005-08-21 06:29:20 3183 405 2005-08-26 06:25:20 2 2006-02-16 02:30:53
  44152. 14275 2005-08-21 06:30:30 3238 163 2005-08-25 12:28:30 1 2006-02-16 02:30:53
  44153. 14276 2005-08-21 06:34:05 3637 318 2005-08-28 10:13:05 2 2006-02-16 02:30:53
  44154. 14277 2005-08-21 06:34:41 2652 566 2005-08-28 10:53:41 2 2006-02-16 02:30:53
  44155. 14278 2006-02-14 15:16:03 2334 557 \N 2 2006-02-16 02:30:53
  44156. 14279 2005-08-21 06:39:08 3325 387 2005-08-29 11:01:08 2 2006-02-16 02:30:53
  44157. 14280 2005-08-21 06:39:58 1561 481 2005-08-23 04:50:58 1 2006-02-16 02:30:53
  44158. 14281 2005-08-21 06:40:48 1848 166 2005-08-26 11:42:48 2 2006-02-16 02:30:53
  44159. 14282 2005-08-21 06:41:29 3107 450 2005-08-22 12:37:29 1 2006-02-16 02:30:53
  44160. 14283 2005-08-21 06:44:14 3052 253 2005-08-24 01:01:14 1 2006-02-16 02:30:53
  44161. 14284 2005-08-21 06:44:37 633 486 2005-08-28 05:03:37 1 2006-02-16 02:30:53
  44162. 14285 2005-08-21 06:50:48 402 249 2005-08-28 11:35:48 1 2006-02-16 02:30:53
  44163. 14286 2005-08-21 06:53:53 2377 558 2005-08-27 11:37:53 2 2006-02-16 02:30:53
  44164. 14287 2005-08-21 06:53:59 2426 427 2005-08-25 03:10:59 2 2006-02-16 02:30:53
  44165. 14288 2005-08-21 06:57:34 587 512 2005-08-26 11:32:34 1 2006-02-16 02:30:53
  44166. 14289 2005-08-21 06:58:49 1185 103 2005-08-25 11:29:49 2 2006-02-16 02:30:53
  44167. 14290 2005-08-21 07:02:59 790 366 2005-08-28 02:57:59 1 2006-02-16 02:30:53
  44168. 14291 2005-08-21 07:03:05 3988 56 2005-08-26 12:56:05 2 2006-02-16 02:30:53
  44169. 14292 2005-08-21 07:06:20 1959 251 2005-08-22 01:39:20 2 2006-02-16 02:30:53
  44170. 14293 2005-08-21 07:06:47 3555 364 2005-08-22 05:07:47 2 2006-02-16 02:30:53
  44171. 14294 2005-08-21 07:07:26 354 455 2005-08-22 02:20:26 2 2006-02-16 02:30:53
  44172. 14295 2005-08-21 07:09:27 2187 336 2005-08-22 01:27:27 2 2006-02-16 02:30:53
  44173. 14296 2005-08-21 07:13:23 3813 275 2005-08-26 11:14:23 1 2006-02-16 02:30:53
  44174. 14297 2005-08-21 07:13:46 1712 566 2005-08-25 09:07:46 1 2006-02-16 02:30:53
  44175. 14298 2005-08-21 07:17:10 4317 410 2005-08-25 10:10:10 1 2006-02-16 02:30:53
  44176. 14299 2005-08-21 07:18:57 4028 342 2005-08-24 01:28:57 1 2006-02-16 02:30:53
  44177. 14300 2005-08-21 07:19:37 690 382 2005-08-25 12:06:37 2 2006-02-16 02:30:53
  44178. 14301 2005-08-21 07:19:48 283 162 2005-08-28 02:06:48 1 2006-02-16 02:30:53
  44179. 14302 2005-08-21 07:19:57 1287 511 2005-08-28 02:59:57 1 2006-02-16 02:30:53
  44180. 14303 2005-08-21 07:22:43 992 475 2005-08-24 11:52:43 1 2006-02-16 02:30:53
  44181. 14304 2005-08-21 07:23:10 2650 417 2005-08-26 11:21:10 2 2006-02-16 02:30:53
  44182. 14305 2005-08-21 07:29:05 2056 58 2005-08-27 08:18:05 1 2006-02-16 02:30:53
  44183. 14306 2005-08-21 07:32:35 4027 453 2005-08-30 05:53:35 1 2006-02-16 02:30:53
  44184. 14307 2005-08-21 07:34:52 2894 328 2005-08-29 09:45:52 1 2006-02-16 02:30:53
  44185. 14308 2005-08-21 07:43:21 3478 419 2005-08-25 02:39:21 2 2006-02-16 02:30:53
  44186. 14309 2005-08-21 07:44:17 4447 468 2005-08-30 07:23:17 2 2006-02-16 02:30:53
  44187. 14310 2005-08-21 07:44:32 95 177 2005-08-22 09:02:32 1 2006-02-16 02:30:53
  44188. 14311 2005-08-21 07:45:47 1761 69 2005-08-27 02:23:47 2 2006-02-16 02:30:53
  44189. 14312 2005-08-21 07:48:34 1090 238 2005-08-23 04:45:34 1 2006-02-16 02:30:53
  44190. 14313 2005-08-21 07:49:53 3384 468 2005-08-30 05:52:53 2 2006-02-16 02:30:53
  44191. 14314 2005-08-21 07:50:14 4115 178 2005-08-24 10:47:14 2 2006-02-16 02:30:53
  44192. 14315 2005-08-21 07:56:39 1164 459 2005-08-27 04:52:39 1 2006-02-16 02:30:53
  44193. 14316 2005-08-21 07:59:47 386 64 2005-08-23 02:20:47 2 2006-02-16 02:30:53
  44194. 14317 2005-08-21 08:00:40 2090 471 2005-08-27 06:52:40 1 2006-02-16 02:30:53
  44195. 14318 2006-02-14 15:16:03 1042 508 \N 2 2006-02-16 02:30:53
  44196. 14319 2005-08-21 08:00:55 4480 410 2005-08-26 05:04:55 1 2006-02-16 02:30:53
  44197. 14320 2005-08-21 08:04:40 3121 199 2005-08-22 02:09:40 1 2006-02-16 02:30:53
  44198. 14321 2005-08-21 08:05:12 967 236 2005-08-23 02:17:12 1 2006-02-16 02:30:53
  44199. 14322 2005-08-21 08:06:30 2818 221 2005-08-29 10:12:30 2 2006-02-16 02:30:53
  44200. 14323 2005-08-21 08:08:43 1257 97 2005-08-25 10:44:43 1 2006-02-16 02:30:53
  44201. 14324 2005-08-21 08:10:56 1361 155 2005-08-30 12:09:56 1 2006-02-16 02:30:53
  44202. 14325 2005-08-21 08:15:38 4432 313 2005-08-23 08:08:38 2 2006-02-16 02:30:53
  44203. 14326 2005-08-21 08:15:41 1052 17 2005-08-27 05:22:41 1 2006-02-16 02:30:53
  44204. 14327 2005-08-21 08:18:18 553 457 2005-08-30 02:21:18 2 2006-02-16 02:30:53
  44205. 14328 2005-08-21 08:18:20 3194 489 2005-08-25 03:05:20 2 2006-02-16 02:30:53
  44206. 14329 2005-08-21 08:22:56 3544 6 2005-08-28 02:22:56 2 2006-02-16 02:30:53
  44207. 14330 2005-08-21 08:29:20 763 84 2005-08-30 03:59:20 2 2006-02-16 02:30:53
  44208. 14331 2005-08-21 08:29:38 3128 372 2005-08-29 13:18:38 2 2006-02-16 02:30:53
  44209. 14332 2005-08-21 08:30:43 1388 496 2005-08-29 10:51:43 1 2006-02-16 02:30:53
  44210. 14333 2005-08-21 08:31:03 2976 93 2005-08-28 03:39:03 2 2006-02-16 02:30:53
  44211. 14334 2005-08-21 08:32:32 1448 595 2005-08-25 02:53:32 2 2006-02-16 02:30:53
  44212. 14335 2005-08-21 08:33:07 2610 263 2005-08-26 14:16:07 1 2006-02-16 02:30:53
  44213. 14336 2005-08-21 08:33:42 3166 362 2005-08-23 03:27:42 1 2006-02-16 02:30:53
  44214. 14337 2005-08-21 08:34:26 3529 506 2005-08-24 11:31:26 1 2006-02-16 02:30:53
  44215. 14338 2005-08-21 08:36:03 1789 205 2005-08-24 12:31:03 2 2006-02-16 02:30:53
  44216. 14339 2005-08-21 08:37:15 1744 30 2005-08-26 03:37:15 2 2006-02-16 02:30:53
  44217. 14340 2005-08-21 08:38:21 2181 230 2005-08-25 09:25:21 1 2006-02-16 02:30:53
  44218. 14341 2005-08-21 08:38:24 4498 560 2005-08-26 12:36:24 1 2006-02-16 02:30:53
  44219. 14342 2005-08-21 08:39:26 2749 559 2005-08-23 11:40:26 2 2006-02-16 02:30:53
  44220. 14343 2005-08-21 08:40:21 3769 238 2005-08-29 03:06:21 1 2006-02-16 02:30:53
  44221. 14344 2005-08-21 08:40:56 1562 341 2005-08-27 12:40:56 1 2006-02-16 02:30:53
  44222. 14345 2005-08-21 08:41:15 1726 598 2005-08-24 11:59:15 1 2006-02-16 02:30:53
  44223. 14346 2005-08-21 08:42:26 109 17 2005-08-23 09:18:26 2 2006-02-16 02:30:53
  44224. 14347 2005-08-21 08:42:31 3862 214 2005-08-25 07:11:31 2 2006-02-16 02:30:53
  44225. 14348 2005-08-21 08:54:26 885 496 2005-08-24 02:55:26 2 2006-02-16 02:30:53
  44226. 14349 2005-08-21 08:54:53 96 119 2005-08-30 14:27:53 1 2006-02-16 02:30:53
  44227. 14350 2005-08-21 08:58:38 3174 222 2005-08-30 03:29:38 2 2006-02-16 02:30:53
  44228. 14351 2005-08-21 09:04:20 2037 66 2005-08-25 05:27:20 1 2006-02-16 02:30:53
  44229. 14352 2005-08-21 09:06:29 1224 527 2005-08-28 13:36:29 1 2006-02-16 02:30:53
  44230. 14353 2005-08-21 09:07:50 1612 129 2005-08-22 10:31:50 2 2006-02-16 02:30:53
  44231. 14354 2005-08-21 09:08:14 1137 382 2005-08-30 05:27:14 1 2006-02-16 02:30:53
  44232. 14355 2005-08-21 09:08:29 649 271 2005-08-27 10:08:29 2 2006-02-16 02:30:53
  44233. 14356 2005-08-21 09:08:51 3169 65 2005-08-24 04:36:51 2 2006-02-16 02:30:53
  44234. 14357 2005-08-21 09:13:09 2906 233 2005-08-22 05:41:09 2 2006-02-16 02:30:53
  44235. 14358 2005-08-21 09:14:28 861 112 2005-08-24 05:05:28 1 2006-02-16 02:30:53
  44236. 14359 2005-08-21 09:16:19 1841 401 2005-08-22 09:28:19 1 2006-02-16 02:30:53
  44237. 14360 2005-08-21 09:16:40 2677 246 2005-08-29 11:43:40 2 2006-02-16 02:30:53
  44238. 14361 2006-02-14 15:16:03 1231 191 \N 2 2006-02-16 02:30:53
  44239. 14362 2005-08-21 09:19:49 1992 312 2005-08-26 11:06:49 1 2006-02-16 02:30:53
  44240. 14363 2005-08-21 09:20:03 2579 560 2005-08-23 14:26:03 1 2006-02-16 02:30:53
  44241. 14364 2005-08-21 09:25:11 3513 236 2005-08-29 09:04:11 1 2006-02-16 02:30:53
  44242. 14365 2005-08-21 09:25:13 618 457 2005-08-27 11:48:13 1 2006-02-16 02:30:53
  44243. 14366 2005-08-21 09:31:39 4011 524 2005-08-26 11:55:39 2 2006-02-16 02:30:53
  44244. 14367 2005-08-21 09:31:44 870 244 2005-08-26 03:54:44 2 2006-02-16 02:30:53
  44245. 14368 2005-08-21 09:31:47 2063 351 2005-08-30 04:17:47 1 2006-02-16 02:30:53
  44246. 14369 2005-08-21 09:33:44 1636 392 2005-08-25 08:56:44 1 2006-02-16 02:30:53
  44247. 14370 2005-08-21 09:35:14 3520 161 2005-08-27 05:21:14 2 2006-02-16 02:30:53
  44248. 14371 2005-08-21 09:37:16 2197 221 2005-08-27 13:50:16 2 2006-02-16 02:30:53
  44249. 14372 2005-08-21 09:39:50 1953 520 2005-08-28 13:36:50 1 2006-02-16 02:30:53
  44250. 14373 2005-08-21 09:44:53 4433 268 2005-08-25 15:37:53 1 2006-02-16 02:30:53
  44251. 14374 2006-02-14 15:16:03 236 213 \N 2 2006-02-16 02:30:53
  44252. 14375 2005-08-21 09:46:35 2507 550 2005-08-26 10:24:35 2 2006-02-16 02:30:53
  44253. 14376 2005-08-21 09:48:56 1936 582 2005-08-22 12:15:56 2 2006-02-16 02:30:53
  44254. 14377 2005-08-21 09:49:28 1325 6 2005-08-29 13:34:28 1 2006-02-16 02:30:53
  44255. 14378 2005-08-21 09:50:02 810 515 2005-08-30 09:07:02 1 2006-02-16 02:30:53
  44256. 14379 2005-08-21 09:53:03 3062 136 2005-08-24 14:32:03 1 2006-02-16 02:30:53
  44257. 14380 2005-08-21 09:53:52 1523 198 2005-08-25 05:03:52 2 2006-02-16 02:30:53
  44258. 14381 2005-08-21 09:55:47 811 391 2005-08-25 08:23:47 1 2006-02-16 02:30:53
  44259. 14382 2005-08-21 10:01:03 4119 119 2005-08-22 13:21:03 2 2006-02-16 02:30:53
  44260. 14383 2005-08-21 10:02:05 1941 482 2005-08-24 12:21:05 2 2006-02-16 02:30:53
  44261. 14384 2005-08-21 10:02:37 2429 371 2005-08-26 08:20:37 1 2006-02-16 02:30:53
  44262. 14385 2005-08-21 10:02:55 4356 317 2005-08-25 07:19:55 2 2006-02-16 02:30:53
  44263. 14386 2005-08-21 10:06:34 3402 514 2005-08-25 14:19:34 1 2006-02-16 02:30:53
  44264. 14387 2005-08-21 10:10:01 1286 295 2005-08-28 14:16:01 2 2006-02-16 02:30:53
  44265. 14388 2005-08-21 10:15:13 1078 274 2005-08-30 13:41:13 2 2006-02-16 02:30:53
  44266. 14389 2005-08-21 10:15:20 2718 145 2005-08-27 05:39:20 1 2006-02-16 02:30:53
  44267. 14390 2005-08-21 10:15:38 3951 366 2005-08-28 05:50:38 2 2006-02-16 02:30:53
  44268. 14391 2005-08-21 10:16:27 3117 205 2005-08-23 07:00:27 2 2006-02-16 02:30:53
  44269. 14392 2005-08-21 10:19:25 847 586 2005-08-28 15:57:25 2 2006-02-16 02:30:53
  44270. 14393 2005-08-21 10:22:51 3937 368 2005-08-29 08:28:51 1 2006-02-16 02:30:53
  44271. 14394 2005-08-21 10:23:10 4555 118 2005-08-28 09:33:10 1 2006-02-16 02:30:53
  44272. 14395 2005-08-21 10:24:00 632 506 2005-08-28 12:23:00 2 2006-02-16 02:30:53
  44273. 14396 2005-08-21 10:24:54 3855 353 2005-08-22 04:49:54 2 2006-02-16 02:30:53
  44274. 14397 2005-08-21 10:25:56 3883 47 2005-08-24 07:48:56 1 2006-02-16 02:30:53
  44275. 14398 2005-08-21 10:27:21 357 505 2005-08-23 10:46:21 2 2006-02-16 02:30:53
  44276. 14399 2005-08-21 10:33:23 3582 188 2005-08-27 08:00:23 1 2006-02-16 02:30:53
  44277. 14400 2005-08-21 10:33:45 3891 569 2005-08-26 12:05:45 1 2006-02-16 02:30:53
  44278. 14401 2005-08-21 10:36:20 3468 407 2005-08-30 06:45:20 1 2006-02-16 02:30:53
  44279. 14402 2005-08-21 10:38:17 749 467 2005-08-27 08:36:17 2 2006-02-16 02:30:53
  44280. 14403 2005-08-21 10:40:34 3581 297 2005-08-29 11:29:34 1 2006-02-16 02:30:53
  44281. 14404 2005-08-21 10:43:04 3660 192 2005-08-30 10:00:04 1 2006-02-16 02:30:53
  44282. 14405 2005-08-21 10:45:01 2777 470 2005-08-30 04:48:01 2 2006-02-16 02:30:53
  44283. 14406 2005-08-21 10:46:35 2741 181 2005-08-28 15:55:35 1 2006-02-16 02:30:53
  44284. 14407 2005-08-21 10:46:51 2403 500 2005-08-25 09:28:51 2 2006-02-16 02:30:53
  44285. 14408 2005-08-21 10:47:24 222 593 2005-08-27 08:18:24 1 2006-02-16 02:30:53
  44286. 14409 2005-08-21 10:53:35 1161 314 2005-08-25 10:40:35 2 2006-02-16 02:30:53
  44287. 14410 2005-08-21 10:54:49 839 196 2005-08-26 08:28:49 2 2006-02-16 02:30:53
  44288. 14411 2005-08-21 10:54:57 2125 502 2005-08-22 13:17:57 2 2006-02-16 02:30:53
  44289. 14412 2005-08-21 11:02:09 212 121 2005-08-29 06:44:09 1 2006-02-16 02:30:53
  44290. 14413 2005-08-21 11:06:33 50 367 2005-08-29 16:10:33 1 2006-02-16 02:30:53
  44291. 14414 2005-08-21 11:08:17 1757 515 2005-08-23 08:37:17 2 2006-02-16 02:30:53
  44292. 14415 2006-02-14 15:16:03 2670 561 \N 2 2006-02-16 02:30:53
  44293. 14416 2005-08-21 11:11:46 3002 384 2005-08-25 12:33:46 1 2006-02-16 02:30:53
  44294. 14417 2005-08-21 11:13:35 1768 596 2005-08-25 11:27:35 1 2006-02-16 02:30:53
  44295. 14418 2005-08-21 11:14:26 89 442 2005-08-28 08:34:26 2 2006-02-16 02:30:53
  44296. 14419 2005-08-21 11:15:46 3146 221 2005-08-30 16:37:46 1 2006-02-16 02:30:53
  44297. 14420 2005-08-21 11:16:15 2495 551 2005-08-24 06:06:15 2 2006-02-16 02:30:53
  44298. 14421 2005-08-21 11:20:21 4402 406 2005-08-24 06:26:21 1 2006-02-16 02:30:53
  44299. 14422 2005-08-21 11:21:46 1382 361 2005-08-25 13:15:46 1 2006-02-16 02:30:53
  44300. 14423 2005-08-21 11:23:59 2873 521 2005-08-26 11:52:59 2 2006-02-16 02:30:53
  44301. 14424 2005-08-21 11:24:11 2535 489 2005-08-29 13:13:11 2 2006-02-16 02:30:53
  44302. 14425 2006-02-14 15:16:03 2752 560 \N 2 2006-02-16 02:30:53
  44303. 14426 2006-02-14 15:16:03 2902 315 \N 1 2006-02-16 02:30:53
  44304. 14427 2005-08-21 11:26:06 2353 163 2005-08-27 10:39:06 1 2006-02-16 02:30:53
  44305. 14428 2005-08-21 11:27:07 1614 458 2005-08-29 09:50:07 1 2006-02-16 02:30:53
  44306. 14429 2005-08-21 11:29:43 2513 66 2005-08-24 12:05:43 1 2006-02-16 02:30:53
  44307. 14430 2005-08-21 11:31:11 2623 5 2005-08-26 06:29:11 1 2006-02-16 02:30:53
  44308. 14431 2005-08-21 11:31:15 1572 106 2005-08-26 11:22:15 2 2006-02-16 02:30:53
  44309. 14432 2005-08-21 11:36:15 2294 138 2005-08-24 08:02:15 2 2006-02-16 02:30:53
  44310. 14433 2005-08-21 11:36:34 732 401 2005-08-26 08:51:34 1 2006-02-16 02:30:53
  44311. 14434 2005-08-21 11:40:46 2085 549 2005-08-24 05:50:46 1 2006-02-16 02:30:53
  44312. 14435 2005-08-21 11:44:37 2919 169 2005-08-24 08:04:37 1 2006-02-16 02:30:53
  44313. 14436 2005-08-21 11:48:27 3473 560 2005-08-25 15:49:27 2 2006-02-16 02:30:53
  44314. 14437 2005-08-21 11:48:32 1504 136 2005-08-25 11:06:32 2 2006-02-16 02:30:53
  44315. 14438 2005-08-21 11:51:10 1621 392 2005-08-28 17:10:10 1 2006-02-16 02:30:53
  44316. 14439 2005-08-21 11:52:41 3903 564 2005-08-30 10:36:41 1 2006-02-16 02:30:53
  44317. 14440 2005-08-21 11:59:04 3495 194 2005-08-23 10:10:04 1 2006-02-16 02:30:53
  44318. 14441 2005-08-21 11:59:38 1210 260 2005-08-26 11:17:38 2 2006-02-16 02:30:53
  44319. 14442 2005-08-21 12:00:21 122 205 2005-08-23 17:00:21 2 2006-02-16 02:30:53
  44320. 14443 2005-08-21 12:06:32 376 447 2005-08-29 13:44:32 2 2006-02-16 02:30:53
  44321. 14444 2005-08-21 12:07:25 2211 225 2005-08-28 08:36:25 2 2006-02-16 02:30:53
  44322. 14445 2005-08-21 12:07:42 3186 256 2005-08-22 17:51:42 2 2006-02-16 02:30:53
  44323. 14446 2005-08-21 12:10:41 4367 21 2005-08-26 14:42:41 1 2006-02-16 02:30:53
  44324. 14447 2005-08-21 12:12:05 1889 584 2005-08-27 14:47:05 2 2006-02-16 02:30:53
  44325. 14448 2005-08-21 12:13:10 1937 263 2005-08-30 08:46:10 1 2006-02-16 02:30:53
  44326. 14449 2005-08-21 12:13:18 653 529 2005-08-27 15:41:18 2 2006-02-16 02:30:53
  44327. 14450 2005-08-21 12:21:25 1194 48 2005-08-26 14:35:25 2 2006-02-16 02:30:53
  44328. 14451 2005-08-21 12:21:44 3967 467 2005-08-22 15:07:44 2 2006-02-16 02:30:53
  44329. 14452 2005-08-21 12:23:20 4231 325 2005-08-27 06:26:20 1 2006-02-16 02:30:53
  44330. 14453 2005-08-21 12:33:34 3312 237 2005-08-27 11:10:34 1 2006-02-16 02:30:53
  44331. 14454 2005-08-21 12:35:49 2475 150 2005-08-22 16:28:49 2 2006-02-16 02:30:53
  44332. 14455 2005-08-21 12:36:11 3442 68 2005-08-27 08:12:11 2 2006-02-16 02:30:53
  44333. 14456 2005-08-21 12:38:09 2520 125 2005-08-26 08:29:09 1 2006-02-16 02:30:53
  44334. 14457 2005-08-21 12:47:38 4288 340 2005-08-25 13:07:38 1 2006-02-16 02:30:53
  44335. 14458 2005-08-21 12:47:53 1769 256 2005-08-30 17:09:53 2 2006-02-16 02:30:53
  44336. 14459 2005-08-21 12:48:08 1532 98 2005-08-27 10:50:08 2 2006-02-16 02:30:53
  44337. 14460 2005-08-21 12:48:48 4137 120 2005-08-30 16:34:48 2 2006-02-16 02:30:53
  44338. 14461 2005-08-21 12:50:33 371 42 2005-08-30 13:35:33 1 2006-02-16 02:30:53
  44339. 14462 2005-08-21 12:50:57 2201 96 2005-08-27 10:42:57 2 2006-02-16 02:30:53
  44340. 14463 2005-08-21 12:51:49 1403 365 2005-08-29 12:17:49 1 2006-02-16 02:30:53
  44341. 14464 2005-08-21 12:52:54 2310 121 2005-08-25 16:42:54 1 2006-02-16 02:30:53
  44342. 14465 2005-08-21 12:54:22 4206 262 2005-08-28 10:46:22 2 2006-02-16 02:30:53
  44343. 14466 2005-08-21 13:03:13 923 442 2005-08-22 15:19:13 2 2006-02-16 02:30:53
  44344. 14467 2005-08-21 13:03:33 1498 522 2005-08-28 15:28:33 1 2006-02-16 02:30:53
  44345. 14468 2005-08-21 13:07:10 4168 224 2005-08-30 19:05:10 2 2006-02-16 02:30:53
  44346. 14469 2005-08-21 13:07:24 1957 554 2005-08-24 10:37:24 1 2006-02-16 02:30:53
  44347. 14470 2005-08-21 13:09:41 3899 379 2005-08-23 10:20:41 2 2006-02-16 02:30:53
  44348. 14471 2005-08-21 13:10:40 1254 395 2005-08-26 16:49:40 1 2006-02-16 02:30:53
  44349. 14472 2005-08-21 13:13:57 4097 184 2005-08-23 14:04:57 2 2006-02-16 02:30:53
  44350. 14473 2005-08-21 13:19:03 2747 298 2005-08-23 15:12:03 1 2006-02-16 02:30:53
  44351. 14474 2005-08-21 13:22:48 2632 294 2005-08-27 14:13:48 2 2006-02-16 02:30:53
  44352. 14475 2005-08-21 13:24:32 3164 2 2005-08-27 08:59:32 2 2006-02-16 02:30:53
  44353. 14476 2005-08-21 13:31:07 2821 101 2005-08-23 17:06:07 1 2006-02-16 02:30:53
  44354. 14477 2005-08-21 13:32:38 1564 126 2005-08-25 18:02:38 2 2006-02-16 02:30:53
  44355. 14478 2005-08-21 13:33:28 2990 231 2005-08-25 13:33:28 2 2006-02-16 02:30:53
  44356. 14479 2005-08-21 13:35:54 2235 324 2005-08-29 12:12:54 2 2006-02-16 02:30:53
  44357. 14480 2005-08-21 13:36:40 229 411 2005-08-26 08:39:40 1 2006-02-16 02:30:53
  44358. 14481 2005-08-21 13:41:14 4099 367 2005-08-30 07:53:14 2 2006-02-16 02:30:53
  44359. 14482 2005-08-21 13:42:45 2765 23 2005-08-27 11:55:45 1 2006-02-16 02:30:53
  44360. 14483 2005-08-21 13:43:59 37 275 2005-08-28 16:38:59 2 2006-02-16 02:30:53
  44361. 14484 2005-08-21 13:47:29 3714 418 2005-08-23 18:25:29 1 2006-02-16 02:30:53
  44362. 14485 2005-08-21 13:52:07 1637 241 2005-08-30 13:06:07 2 2006-02-16 02:30:53
  44363. 14486 2005-08-21 13:52:54 3119 138 2005-08-23 07:58:54 1 2006-02-16 02:30:53
  44364. 14487 2005-08-21 13:53:33 2578 526 2005-08-29 19:32:33 1 2006-02-16 02:30:53
  44365. 14488 2006-02-14 15:16:03 4202 75 \N 2 2006-02-16 02:30:53
  44366. 14489 2005-08-21 13:53:59 2312 9 2005-08-30 15:45:59 2 2006-02-16 02:30:53
  44367. 14490 2005-08-21 13:54:15 1771 205 2005-08-28 19:08:15 2 2006-02-16 02:30:53
  44368. 14491 2005-08-21 13:55:39 2072 226 2005-08-29 17:51:39 1 2006-02-16 02:30:53
  44369. 14492 2005-08-21 13:59:08 1591 266 2005-08-23 11:09:08 1 2006-02-16 02:30:53
  44370. 14493 2005-08-21 14:01:44 2590 389 2005-08-28 17:20:44 1 2006-02-16 02:30:53
  44371. 14494 2005-08-21 14:02:50 169 5 2005-08-22 16:45:50 2 2006-02-16 02:30:53
  44372. 14495 2005-08-21 14:04:39 3215 429 2005-08-22 16:53:39 2 2006-02-16 02:30:53
  44373. 14496 2005-08-21 14:07:35 2185 223 2005-08-24 12:31:35 1 2006-02-16 02:30:53
  44374. 14497 2005-08-21 14:09:47 3240 254 2005-08-22 11:10:47 2 2006-02-16 02:30:53
  44375. 14498 2005-08-21 14:10:44 3971 544 2005-08-23 08:29:44 1 2006-02-16 02:30:53
  44376. 14499 2005-08-21 14:11:19 4109 292 2005-08-23 16:10:19 2 2006-02-16 02:30:53
  44377. 14500 2005-08-21 14:11:30 2024 451 2005-08-27 12:19:30 1 2006-02-16 02:30:53
  44378. 14501 2005-08-21 14:14:38 3588 576 2005-08-25 17:58:38 1 2006-02-16 02:30:53
  44379. 14502 2005-08-21 14:22:28 2986 378 2005-08-23 10:40:28 1 2006-02-16 02:30:53
  44380. 14503 2006-02-14 15:16:03 2144 188 \N 1 2006-02-16 02:30:53
  44381. 14504 2005-08-21 14:23:01 4536 312 2005-08-27 13:56:01 1 2006-02-16 02:30:53
  44382. 14505 2005-08-21 14:26:28 2172 203 2005-08-29 17:34:28 1 2006-02-16 02:30:53
  44383. 14506 2005-08-21 14:32:27 4493 537 2005-08-24 19:02:27 2 2006-02-16 02:30:53
  44384. 14507 2005-08-21 14:32:45 1969 175 2005-08-28 09:50:45 2 2006-02-16 02:30:53
  44385. 14508 2005-08-21 14:33:58 703 396 2005-08-27 10:45:58 2 2006-02-16 02:30:53
  44386. 14509 2005-08-21 14:39:58 541 520 2005-08-26 13:19:58 1 2006-02-16 02:30:53
  44387. 14510 2005-08-21 14:44:41 1868 547 2005-08-30 20:19:41 1 2006-02-16 02:30:53
  44388. 14511 2005-08-21 14:45:34 4452 16 2005-08-28 10:36:34 2 2006-02-16 02:30:53
  44389. 14512 2005-08-21 14:47:09 579 51 2005-08-24 18:10:09 2 2006-02-16 02:30:53
  44390. 14513 2005-08-21 14:51:35 4265 185 2005-08-24 13:24:35 2 2006-02-16 02:30:53
  44391. 14514 2005-08-21 14:51:52 1259 295 2005-08-30 10:40:52 2 2006-02-16 02:30:53
  44392. 14515 2005-08-21 14:52:14 2215 242 2005-08-27 10:27:14 1 2006-02-16 02:30:53
  44393. 14516 2006-02-14 15:16:03 713 457 \N 2 2006-02-16 02:30:53
  44394. 14517 2005-08-21 14:57:03 3568 311 2005-08-24 13:52:03 2 2006-02-16 02:30:53
  44395. 14518 2005-08-21 14:58:58 2734 82 2005-08-24 13:19:58 2 2006-02-16 02:30:53
  44396. 14519 2005-08-21 14:59:29 1541 403 2005-08-22 11:48:29 2 2006-02-16 02:30:53
  44397. 14520 2005-08-21 15:00:49 4533 150 2005-08-30 19:04:49 1 2006-02-16 02:30:53
  44398. 14521 2005-08-21 15:01:32 1538 200 2005-08-28 19:12:32 1 2006-02-16 02:30:53
  44399. 14522 2005-08-21 15:01:34 2101 535 2005-08-25 16:37:34 1 2006-02-16 02:30:53
  44400. 14523 2005-08-21 15:03:45 345 433 2005-08-22 18:06:45 2 2006-02-16 02:30:53
  44401. 14524 2005-08-21 15:05:27 4409 374 2005-08-29 12:07:27 2 2006-02-16 02:30:53
  44402. 14525 2005-08-21 15:06:49 3020 420 2005-08-22 16:30:49 1 2006-02-16 02:30:53
  44403. 14526 2006-02-14 15:16:03 1799 534 \N 1 2006-02-16 02:30:53
  44404. 14527 2005-08-21 15:07:42 3496 232 2005-08-23 12:31:42 1 2006-02-16 02:30:53
  44405. 14528 2005-08-21 15:08:05 4305 46 2005-08-26 15:58:05 2 2006-02-16 02:30:53
  44406. 14529 2005-08-21 15:08:31 1774 380 2005-08-29 17:15:31 1 2006-02-16 02:30:53
  44407. 14530 2005-08-21 15:10:50 1905 77 2005-08-26 09:20:50 2 2006-02-16 02:30:53
  44408. 14531 2006-02-14 15:16:03 4296 568 \N 2 2006-02-16 02:30:53
  44409. 14532 2005-08-21 15:15:03 2057 37 2005-08-25 17:41:03 2 2006-02-16 02:30:53
  44410. 14533 2005-08-21 15:15:19 2202 586 2005-08-26 12:47:19 1 2006-02-16 02:30:53
  44411. 14534 2005-08-21 15:16:29 2514 56 2005-08-26 16:18:29 1 2006-02-16 02:30:53
  44412. 14535 2005-08-21 15:22:37 530 412 2005-08-29 19:23:37 2 2006-02-16 02:30:53
  44413. 14536 2005-08-21 15:22:50 2615 48 2005-08-27 17:03:50 1 2006-02-16 02:30:53
  44414. 14537 2005-08-21 15:24:24 3755 405 2005-08-23 17:14:24 2 2006-02-16 02:30:53
  44415. 14538 2005-08-21 15:28:15 3348 471 2005-08-22 19:55:15 2 2006-02-16 02:30:53
  44416. 14539 2005-08-21 15:29:47 3340 41 2005-08-28 19:01:47 1 2006-02-16 02:30:53
  44417. 14540 2005-08-21 15:34:23 2362 28 2005-08-27 11:51:23 2 2006-02-16 02:30:53
  44418. 14541 2005-08-21 15:34:32 1275 576 2005-08-25 13:18:32 1 2006-02-16 02:30:53
  44419. 14542 2005-08-21 15:36:34 1247 101 2005-08-27 20:24:34 2 2006-02-16 02:30:53
  44420. 14543 2005-08-21 15:39:01 709 579 2005-08-28 09:47:01 1 2006-02-16 02:30:53
  44421. 14544 2005-08-21 15:41:01 2445 589 2005-08-24 15:20:01 1 2006-02-16 02:30:53
  44422. 14545 2005-08-21 15:44:23 2459 13 2005-08-29 20:09:23 2 2006-02-16 02:30:53
  44423. 14546 2005-08-21 15:50:50 1515 466 2005-08-23 11:37:50 2 2006-02-16 02:30:53
  44424. 14547 2005-08-21 15:51:38 1172 265 2005-08-26 15:35:38 1 2006-02-16 02:30:53
  44425. 14548 2005-08-21 15:53:52 226 299 2005-08-25 15:39:52 2 2006-02-16 02:30:53
  44426. 14549 2005-08-21 15:54:21 4117 155 2005-08-22 17:22:21 1 2006-02-16 02:30:53
  44427. 14550 2005-08-21 15:56:39 2814 473 2005-08-23 21:40:39 1 2006-02-16 02:30:53
  44428. 14551 2005-08-21 15:57:25 496 521 2005-08-28 11:10:25 2 2006-02-16 02:30:53
  44429. 14552 2005-08-21 15:59:27 1991 477 2005-08-27 11:46:27 1 2006-02-16 02:30:53
  44430. 14553 2005-08-21 15:59:40 3160 434 2005-08-23 11:54:40 2 2006-02-16 02:30:53
  44431. 14554 2005-08-21 16:03:01 31 38 2005-08-26 13:09:01 2 2006-02-16 02:30:53
  44432. 14555 2005-08-21 16:03:02 1926 440 2005-08-23 14:18:02 1 2006-02-16 02:30:53
  44433. 14556 2005-08-21 16:03:27 475 265 2005-08-29 15:49:27 1 2006-02-16 02:30:53
  44434. 14557 2005-08-21 16:05:11 483 490 2005-08-27 16:37:11 1 2006-02-16 02:30:53
  44435. 14558 2005-08-21 16:10:50 3958 273 2005-08-28 16:36:50 2 2006-02-16 02:30:53
  44436. 14559 2005-08-21 16:11:35 3842 433 2005-08-30 15:26:35 1 2006-02-16 02:30:53
  44437. 14560 2005-08-21 16:13:47 1616 579 2005-08-26 15:19:47 1 2006-02-16 02:30:53
  44438. 14561 2005-08-21 16:20:43 2498 443 2005-08-27 16:48:43 1 2006-02-16 02:30:53
  44439. 14562 2005-08-21 16:22:59 3501 107 2005-08-22 21:15:59 1 2006-02-16 02:30:53
  44440. 14563 2005-08-21 16:23:53 3984 212 2005-08-25 11:30:53 2 2006-02-16 02:30:53
  44441. 14564 2005-08-21 16:24:43 3250 22 2005-08-26 16:58:43 1 2006-02-16 02:30:53
  44442. 14565 2005-08-21 16:24:45 4160 250 2005-08-25 14:42:45 1 2006-02-16 02:30:53
  44443. 14566 2005-08-21 16:25:05 84 87 2005-08-26 10:31:05 1 2006-02-16 02:30:53
  44444. 14567 2005-08-21 16:27:25 3805 214 2005-08-26 10:47:25 1 2006-02-16 02:30:53
  44445. 14568 2005-08-21 16:30:48 3331 582 2005-08-22 13:49:48 1 2006-02-16 02:30:53
  44446. 14569 2005-08-21 16:31:22 884 15 2005-08-25 21:27:22 2 2006-02-16 02:30:53
  44447. 14570 2005-08-21 16:32:32 955 32 2005-08-30 12:03:32 2 2006-02-16 02:30:53
  44448. 14571 2005-08-21 16:40:26 2218 296 2005-08-29 17:10:26 1 2006-02-16 02:30:53
  44449. 14572 2005-08-21 16:44:31 1397 538 2005-08-26 16:35:31 2 2006-02-16 02:30:53
  44450. 14573 2005-08-21 16:44:32 2423 240 2005-08-23 14:01:32 2 2006-02-16 02:30:53
  44451. 14574 2005-08-21 16:50:34 1611 62 2005-08-26 14:24:34 2 2006-02-16 02:30:53
  44452. 14575 2005-08-21 16:51:34 3752 159 2005-08-30 20:13:34 2 2006-02-16 02:30:53
  44453. 14576 2005-08-21 16:52:03 1189 45 2005-08-28 19:43:03 2 2006-02-16 02:30:53
  44454. 14577 2005-08-21 16:52:29 1965 126 2005-08-26 12:30:29 1 2006-02-16 02:30:53
  44455. 14578 2005-08-21 16:53:38 3141 389 2005-08-28 20:36:38 2 2006-02-16 02:30:53
  44456. 14579 2005-08-21 16:54:47 1205 260 2005-08-28 12:35:47 1 2006-02-16 02:30:53
  44457. 14580 2005-08-21 16:56:39 1440 448 2005-08-28 15:25:39 1 2006-02-16 02:30:53
  44458. 14581 2005-08-21 17:07:08 751 243 2005-08-26 16:02:08 1 2006-02-16 02:30:53
  44459. 14582 2005-08-21 17:08:33 1004 438 2005-08-29 18:04:33 2 2006-02-16 02:30:53
  44460. 14583 2005-08-21 17:11:47 1203 455 2005-08-24 16:16:47 2 2006-02-16 02:30:53
  44461. 14584 2005-08-21 17:15:33 2617 481 2005-08-24 20:24:33 2 2006-02-16 02:30:53
  44462. 14585 2005-08-21 17:18:33 82 30 2005-08-26 11:36:33 1 2006-02-16 02:30:53
  44463. 14586 2005-08-21 17:19:09 3094 182 2005-08-26 17:00:09 1 2006-02-16 02:30:53
  44464. 14587 2005-08-21 17:20:55 2329 250 2005-08-26 17:17:55 1 2006-02-16 02:30:53
  44465. 14588 2005-08-21 17:25:53 1350 219 2005-08-28 21:47:53 2 2006-02-16 02:30:53
  44466. 14589 2005-08-21 17:28:55 2810 179 2005-08-22 23:06:55 1 2006-02-16 02:30:53
  44467. 14590 2005-08-21 17:29:10 2633 526 2005-08-28 20:15:10 1 2006-02-16 02:30:53
  44468. 14591 2005-08-21 17:30:09 3410 538 2005-08-24 12:27:09 1 2006-02-16 02:30:53
  44469. 14592 2005-08-21 17:30:17 2681 563 2005-08-22 20:06:17 2 2006-02-16 02:30:53
  44470. 14593 2005-08-21 17:33:18 1399 564 2005-08-24 22:11:18 1 2006-02-16 02:30:53
  44471. 14594 2005-08-21 17:34:24 2978 62 2005-08-26 22:04:24 2 2006-02-16 02:30:53
  44472. 14595 2005-08-21 17:35:17 1879 118 2005-08-27 12:11:17 1 2006-02-16 02:30:53
  44473. 14596 2005-08-21 17:38:37 2010 472 2005-08-30 20:28:37 1 2006-02-16 02:30:53
  44474. 14597 2005-08-21 17:39:41 1160 472 2005-08-25 14:07:41 1 2006-02-16 02:30:53
  44475. 14598 2005-08-21 17:40:05 1113 359 2005-08-29 18:16:05 2 2006-02-16 02:30:53
  44476. 14599 2005-08-21 17:43:42 4575 599 2005-08-22 18:53:42 1 2006-02-16 02:30:53
  44477. 14600 2005-08-21 17:45:21 3532 255 2005-08-28 19:03:21 1 2006-02-16 02:30:53
  44478. 14601 2005-08-21 17:45:52 548 406 2005-08-29 15:10:52 1 2006-02-16 02:30:53
  44479. 14602 2005-08-21 17:48:49 3771 370 2005-08-28 21:38:49 1 2006-02-16 02:30:53
  44480. 14603 2005-08-21 17:51:06 94 26 2005-08-28 15:36:06 1 2006-02-16 02:30:53
  44481. 14604 2006-02-14 15:16:03 1024 585 \N 2 2006-02-16 02:30:53
  44482. 14605 2005-08-21 17:56:06 476 394 2005-08-24 18:35:06 1 2006-02-16 02:30:53
  44483. 14606 2006-02-14 15:16:03 2291 592 \N 2 2006-02-16 02:30:53
  44484. 14607 2005-08-21 17:56:50 4518 417 2005-08-22 17:44:50 2 2006-02-16 02:30:53
  44485. 14608 2005-08-21 17:57:22 3321 90 2005-08-25 13:20:22 1 2006-02-16 02:30:53
  44486. 14609 2005-08-21 17:57:26 1206 551 2005-08-25 14:04:26 2 2006-02-16 02:30:53
  44487. 14610 2005-08-21 17:59:09 1894 260 2005-08-29 21:36:09 2 2006-02-16 02:30:53
  44488. 14611 2005-08-21 18:01:41 4078 443 2005-08-26 12:34:41 1 2006-02-16 02:30:53
  44489. 14612 2005-08-21 18:03:15 4105 445 2005-08-27 13:39:15 1 2006-02-16 02:30:53
  44490. 14613 2005-08-21 18:03:20 3841 20 2005-08-26 19:46:20 1 2006-02-16 02:30:53
  44491. 14614 2005-08-21 18:03:51 3053 468 2005-08-30 13:37:51 1 2006-02-16 02:30:53
  44492. 14615 2005-08-21 18:06:32 2332 171 2005-08-30 13:19:32 2 2006-02-16 02:30:53
  44493. 14616 2006-02-14 15:16:03 4537 532 \N 1 2006-02-16 02:30:53
  44494. 14617 2005-08-21 18:07:40 3562 51 2005-08-24 23:48:40 2 2006-02-16 02:30:53
  44495. 14618 2005-08-21 18:09:51 4490 270 2005-08-28 22:47:51 1 2006-02-16 02:30:53
  44496. 14619 2005-08-21 18:10:03 1589 338 2005-08-23 13:40:03 2 2006-02-16 02:30:53
  44497. 14620 2005-08-21 18:10:43 3272 78 2005-08-22 15:19:43 2 2006-02-16 02:30:53
  44498. 14621 2005-08-21 18:17:59 3622 344 2005-08-23 14:16:59 1 2006-02-16 02:30:53
  44499. 14622 2005-08-21 18:25:59 2702 559 2005-08-31 00:11:59 2 2006-02-16 02:30:53
  44500. 14623 2005-08-21 18:29:13 901 33 2005-08-26 20:48:13 2 2006-02-16 02:30:53
  44501. 14624 2005-08-21 18:32:42 4 344 2005-08-23 21:09:42 1 2006-02-16 02:30:53
  44502. 14625 2005-08-21 18:34:21 2661 507 2005-08-29 21:41:21 1 2006-02-16 02:30:53
  44503. 14626 2005-08-21 18:35:44 1038 554 2005-08-25 23:54:44 2 2006-02-16 02:30:53
  44504. 14627 2005-08-21 18:35:54 2470 49 2005-08-30 21:17:54 1 2006-02-16 02:30:53
  44505. 14628 2005-08-21 18:37:24 3636 331 2005-08-27 20:25:24 2 2006-02-16 02:30:53
  44506. 14629 2005-08-21 18:39:52 761 148 2005-08-25 19:14:52 2 2006-02-16 02:30:53
  44507. 14630 2005-08-21 18:43:44 4049 294 2005-08-29 17:08:44 2 2006-02-16 02:30:53
  44508. 14631 2005-08-21 18:47:49 782 209 2005-08-28 16:54:49 1 2006-02-16 02:30:53
  44509. 14632 2005-08-21 18:48:06 2807 38 2005-08-25 00:33:06 2 2006-02-16 02:30:53
  44510. 14633 2005-08-21 18:51:10 2137 551 2005-08-25 13:07:10 1 2006-02-16 02:30:53
  44511. 14634 2005-08-21 18:51:28 486 494 2005-08-29 19:30:28 2 2006-02-16 02:30:53
  44512. 14635 2005-08-21 18:51:43 2171 108 2005-08-27 16:30:43 2 2006-02-16 02:30:53
  44513. 14636 2005-08-21 18:59:17 1671 339 2005-08-23 13:19:17 2 2006-02-16 02:30:53
  44514. 14637 2005-08-21 19:01:00 1846 76 2005-08-26 23:03:00 2 2006-02-16 02:30:53
  44515. 14638 2005-08-21 19:01:36 3583 216 2005-08-22 15:09:36 2 2006-02-16 02:30:53
  44516. 14639 2005-08-21 19:01:39 3510 210 2005-08-26 14:08:39 1 2006-02-16 02:30:53
  44517. 14640 2005-08-21 19:03:19 1880 253 2005-08-27 00:37:19 2 2006-02-16 02:30:53
  44518. 14641 2005-08-21 19:05:23 2205 147 2005-08-22 22:30:23 2 2006-02-16 02:30:53
  44519. 14642 2005-08-21 19:09:40 1280 81 2005-08-30 13:25:40 2 2006-02-16 02:30:53
  44520. 14643 2005-08-21 19:11:58 798 119 2005-08-29 19:52:58 1 2006-02-16 02:30:53
  44521. 14644 2005-08-21 19:12:12 3905 453 2005-08-29 17:08:12 1 2006-02-16 02:30:53
  44522. 14645 2005-08-21 19:12:47 2369 334 2005-08-25 21:42:47 1 2006-02-16 02:30:53
  44523. 14646 2005-08-21 19:14:48 948 186 2005-08-23 17:15:48 1 2006-02-16 02:30:53
  44524. 14647 2005-08-21 19:15:33 3854 36 2005-08-30 18:58:33 2 2006-02-16 02:30:53
  44525. 14648 2005-08-21 19:18:01 2250 284 2005-08-25 14:59:01 2 2006-02-16 02:30:53
  44526. 14649 2005-08-21 19:19:21 4074 43 2005-08-22 17:23:21 1 2006-02-16 02:30:53
  44527. 14650 2005-08-21 19:24:51 1274 190 2005-08-25 13:58:51 2 2006-02-16 02:30:53
  44528. 14651 2005-08-21 19:31:09 4037 544 2005-08-28 14:26:09 2 2006-02-16 02:30:53
  44529. 14652 2005-08-21 19:32:05 4163 453 2005-08-23 23:33:05 2 2006-02-16 02:30:53
  44530. 14653 2005-08-21 19:35:59 491 593 2005-08-24 15:31:59 1 2006-02-16 02:30:53
  44531. 14654 2005-08-21 19:36:59 687 173 2005-08-23 22:03:59 2 2006-02-16 02:30:53
  44532. 14655 2005-08-21 19:37:10 785 253 2005-08-22 15:43:10 1 2006-02-16 02:30:53
  44533. 14656 2005-08-21 19:39:28 4205 201 2005-08-24 01:36:28 2 2006-02-16 02:30:53
  44534. 14657 2005-08-21 19:39:43 477 244 2005-08-26 22:39:43 2 2006-02-16 02:30:53
  44535. 14658 2005-08-21 19:41:50 1465 473 2005-08-25 16:11:50 1 2006-02-16 02:30:53
  44536. 14659 2005-08-21 19:42:36 928 119 2005-08-26 14:06:36 1 2006-02-16 02:30:53
  44537. 14660 2005-08-21 19:43:21 3433 452 2005-08-22 20:42:21 1 2006-02-16 02:30:53
  44538. 14661 2005-08-21 19:44:21 745 469 2005-08-27 14:35:21 1 2006-02-16 02:30:53
  44539. 14662 2005-08-21 19:45:27 2969 403 2005-08-23 14:44:27 2 2006-02-16 02:30:53
  44540. 14663 2005-08-21 19:47:55 2351 150 2005-08-27 17:36:55 2 2006-02-16 02:30:53
  44541. 14664 2005-08-21 19:48:47 4377 153 2005-08-27 16:47:47 1 2006-02-16 02:30:53
  44542. 14665 2005-08-21 19:49:46 2896 58 2005-08-30 18:00:46 1 2006-02-16 02:30:53
  44543. 14666 2005-08-21 19:51:09 2560 122 2005-08-30 22:42:09 2 2006-02-16 02:30:53
  44544. 14667 2005-08-21 19:51:11 2608 55 2005-08-23 17:37:11 1 2006-02-16 02:30:53
  44545. 14668 2005-08-21 19:51:30 1450 152 2005-08-29 19:38:30 2 2006-02-16 02:30:53
  44546. 14669 2005-08-21 19:54:06 3154 317 2005-08-25 23:12:06 1 2006-02-16 02:30:53
  44547. 14670 2005-08-21 19:54:11 4324 537 2005-08-27 21:42:11 2 2006-02-16 02:30:53
  44548. 14671 2005-08-21 19:59:30 2622 53 2005-08-22 19:39:30 1 2006-02-16 02:30:53
  44549. 14672 2005-08-21 19:59:33 4144 325 2005-08-30 19:40:33 1 2006-02-16 02:30:53
  44550. 14673 2005-08-21 20:01:18 1827 445 2005-08-25 18:55:18 1 2006-02-16 02:30:53
  44551. 14674 2005-08-21 20:01:34 572 300 2005-08-27 18:33:34 1 2006-02-16 02:30:53
  44552. 14675 2005-08-21 20:01:51 328 170 2005-08-26 14:30:51 2 2006-02-16 02:30:53
  44553. 14676 2005-08-21 20:02:18 877 49 2005-08-26 21:55:18 1 2006-02-16 02:30:53
  44554. 14677 2005-08-21 20:12:30 4411 26 2005-08-28 15:11:30 1 2006-02-16 02:30:53
  44555. 14678 2005-08-21 20:12:43 1911 383 2005-08-31 02:11:43 2 2006-02-16 02:30:53
  44556. 14679 2005-08-21 20:14:58 1520 193 2005-08-23 23:39:58 1 2006-02-16 02:30:53
  44557. 14680 2005-08-21 20:19:52 4469 524 2005-08-28 17:10:52 1 2006-02-16 02:30:53
  44558. 14681 2005-08-21 20:25:13 1083 212 2005-08-30 19:48:13 1 2006-02-16 02:30:53
  44559. 14682 2005-08-21 20:25:57 2974 314 2005-08-28 00:42:57 2 2006-02-16 02:30:53
  44560. 14683 2005-08-21 20:27:44 3850 342 2005-08-29 16:54:44 1 2006-02-16 02:30:53
  44561. 14684 2005-08-21 20:28:26 3593 369 2005-08-28 19:01:26 2 2006-02-16 02:30:53
  44562. 14685 2005-08-21 20:31:25 1320 69 2005-08-22 21:02:25 1 2006-02-16 02:30:53
  44563. 14686 2005-08-21 20:32:08 814 34 2005-08-26 18:07:08 1 2006-02-16 02:30:53
  44564. 14687 2005-08-21 20:32:16 306 550 2005-08-26 16:17:16 2 2006-02-16 02:30:53
  44565. 14688 2005-08-21 20:32:37 2573 219 2005-08-27 00:06:37 2 2006-02-16 02:30:53
  44566. 14689 2005-08-21 20:33:00 1124 463 2005-08-22 18:10:00 1 2006-02-16 02:30:53
  44567. 14690 2005-08-21 20:42:25 3649 456 2005-08-29 18:42:25 2 2006-02-16 02:30:53
  44568. 14691 2005-08-21 20:42:29 2131 404 2005-08-24 01:22:29 1 2006-02-16 02:30:53
  44569. 14692 2005-08-21 20:43:21 1908 192 2005-08-28 19:02:21 1 2006-02-16 02:30:53
  44570. 14693 2005-08-21 20:44:19 3454 269 2005-08-29 00:37:19 2 2006-02-16 02:30:53
  44571. 14694 2005-08-21 20:46:42 2767 363 2005-08-23 16:18:42 1 2006-02-16 02:30:53
  44572. 14695 2005-08-21 20:46:47 412 206 2005-08-22 22:25:47 2 2006-02-16 02:30:53
  44573. 14696 2005-08-21 20:48:05 3776 435 2005-08-25 14:55:05 1 2006-02-16 02:30:53
  44574. 14697 2005-08-21 20:49:21 48 409 2005-08-26 01:39:21 2 2006-02-16 02:30:53
  44575. 14698 2005-08-21 20:49:58 4255 196 2005-08-29 20:13:58 2 2006-02-16 02:30:53
  44576. 14699 2005-08-21 20:50:48 1427 3 2005-08-29 18:08:48 2 2006-02-16 02:30:53
  44577. 14700 2005-08-21 20:53:40 3446 360 2005-08-23 22:01:40 1 2006-02-16 02:30:53
  44578. 14701 2005-08-21 20:54:32 3034 34 2005-08-30 16:46:32 1 2006-02-16 02:30:53
  44579. 14702 2005-08-21 21:00:03 4096 345 2005-08-30 16:59:03 1 2006-02-16 02:30:53
  44580. 14703 2005-08-21 21:01:19 4329 29 2005-08-22 15:13:19 2 2006-02-16 02:30:53
  44581. 14704 2005-08-21 21:02:22 4062 248 2005-08-27 23:10:22 2 2006-02-16 02:30:53
  44582. 14705 2005-08-21 21:02:55 2493 243 2005-08-25 20:20:55 2 2006-02-16 02:30:53
  44583. 14706 2005-08-21 21:04:42 4494 589 2005-08-22 19:55:42 2 2006-02-16 02:30:53
  44584. 14707 2005-08-21 21:06:29 2916 530 2005-08-30 23:37:29 1 2006-02-16 02:30:53
  44585. 14708 2005-08-21 21:07:23 2828 226 2005-08-28 15:47:23 1 2006-02-16 02:30:53
  44586. 14709 2005-08-21 21:07:59 1856 300 2005-08-31 02:19:59 1 2006-02-16 02:30:53
  44587. 14710 2005-08-21 21:15:23 1922 587 2005-08-30 19:45:23 1 2006-02-16 02:30:53
  44588. 14711 2005-08-21 21:22:07 1973 448 2005-08-30 16:24:07 2 2006-02-16 02:30:53
  44589. 14712 2005-08-21 21:22:56 1198 226 2005-08-25 01:53:56 1 2006-02-16 02:30:53
  44590. 14713 2005-08-21 21:27:24 3350 148 2005-08-23 20:26:24 1 2006-02-16 02:30:53
  44591. 14714 2005-08-21 21:27:43 1 279 2005-08-30 22:26:43 1 2006-02-16 02:30:53
  44592. 14715 2005-08-21 21:28:18 4453 287 2005-08-26 22:13:18 2 2006-02-16 02:30:53
  44593. 14716 2005-08-21 21:29:55 2285 78 2005-08-23 18:34:55 2 2006-02-16 02:30:53
  44594. 14717 2005-08-21 21:30:39 3839 366 2005-08-26 16:58:39 2 2006-02-16 02:30:53
  44595. 14718 2005-08-21 21:39:25 3618 340 2005-08-26 22:07:25 2 2006-02-16 02:30:53
  44596. 14719 2005-08-21 21:41:57 4091 599 2005-08-25 20:37:57 1 2006-02-16 02:30:53
  44597. 14720 2005-08-21 21:43:53 3617 395 2005-08-25 18:21:53 1 2006-02-16 02:30:53
  44598. 14721 2005-08-21 21:50:51 4257 349 2005-08-30 19:21:51 1 2006-02-16 02:30:53
  44599. 14722 2005-08-21 21:50:53 2930 236 2005-08-30 03:13:53 1 2006-02-16 02:30:53
  44600. 14723 2005-08-21 21:52:32 2755 548 2005-08-31 00:03:32 2 2006-02-16 02:30:53
  44601. 14724 2005-08-21 21:53:47 3559 552 2005-08-23 20:14:47 2 2006-02-16 02:30:53
  44602. 14725 2005-08-21 22:02:08 4427 403 2005-08-23 03:59:08 2 2006-02-16 02:30:53
  44603. 14726 2005-08-21 22:08:52 4556 216 2005-08-22 18:28:52 1 2006-02-16 02:30:53
  44604. 14727 2005-08-21 22:12:45 650 275 2005-08-25 00:46:45 1 2006-02-16 02:30:53
  44605. 14728 2005-08-21 22:15:36 2671 474 2005-08-25 17:14:36 2 2006-02-16 02:30:53
  44606. 14729 2005-08-21 22:16:57 2483 289 2005-08-27 21:32:57 1 2006-02-16 02:30:53
  44607. 14730 2005-08-21 22:21:11 2949 439 2005-08-30 03:02:11 1 2006-02-16 02:30:53
  44608. 14731 2005-08-21 22:21:49 1351 154 2005-08-24 16:27:49 1 2006-02-16 02:30:53
  44609. 14732 2005-08-21 22:22:29 1915 482 2005-08-23 18:34:29 1 2006-02-16 02:30:53
  44610. 14733 2005-08-21 22:22:33 398 408 2005-08-26 21:01:33 1 2006-02-16 02:30:53
  44611. 14734 2006-02-14 15:16:03 1369 448 \N 2 2006-02-16 02:30:53
  44612. 14735 2005-08-21 22:25:09 950 35 2005-08-23 21:16:09 1 2006-02-16 02:30:53
  44613. 14736 2005-08-21 22:25:53 207 139 2005-08-25 19:01:53 2 2006-02-16 02:30:53
  44614. 14737 2005-08-21 22:27:11 1842 124 2005-08-25 18:51:11 2 2006-02-16 02:30:53
  44615. 14738 2005-08-21 22:29:13 3315 521 2005-08-29 21:19:13 1 2006-02-16 02:30:53
  44616. 14739 2005-08-21 22:33:22 4026 226 2005-08-22 19:45:22 1 2006-02-16 02:30:53
  44617. 14740 2005-08-21 22:35:33 1717 333 2005-08-26 17:49:33 1 2006-02-16 02:30:53
  44618. 14741 2006-02-14 15:16:03 612 60 \N 2 2006-02-16 02:30:53
  44619. 14742 2005-08-21 22:39:01 2988 421 2005-08-26 00:17:01 1 2006-02-16 02:30:53
  44620. 14743 2005-08-21 22:41:56 4570 2 2005-08-29 00:18:56 1 2006-02-16 02:30:53
  44621. 14744 2005-08-21 22:45:21 800 213 2005-08-29 23:57:21 1 2006-02-16 02:30:53
  44622. 14745 2005-08-21 22:53:01 4399 277 2005-08-23 23:22:01 1 2006-02-16 02:30:53
  44623. 14746 2005-08-21 22:54:02 3197 284 2005-08-27 17:04:02 2 2006-02-16 02:30:53
  44624. 14747 2005-08-21 23:00:02 201 153 2005-08-26 18:58:02 2 2006-02-16 02:30:53
  44625. 14748 2005-08-21 23:02:02 1697 81 2005-08-28 05:01:02 2 2006-02-16 02:30:53
  44626. 14749 2005-08-21 23:08:33 831 235 2005-08-29 20:46:33 2 2006-02-16 02:30:53
  44627. 14750 2005-08-21 23:09:32 918 303 2005-08-30 00:46:32 2 2006-02-16 02:30:53
  44628. 14751 2005-08-21 23:11:23 1156 195 2005-08-30 20:01:23 2 2006-02-16 02:30:53
  44629. 14752 2005-08-21 23:11:42 1252 362 2005-08-28 22:12:42 1 2006-02-16 02:30:53
  44630. 14753 2005-08-21 23:11:43 1803 155 2005-08-22 22:25:43 2 2006-02-16 02:30:53
  44631. 14754 2005-08-21 23:17:26 2355 137 2005-08-29 18:55:26 2 2006-02-16 02:30:53
  44632. 14755 2005-08-21 23:18:08 862 328 2005-08-27 01:06:08 2 2006-02-16 02:30:53
  44633. 14756 2005-08-21 23:21:23 564 288 2005-08-24 01:44:23 1 2006-02-16 02:30:53
  44634. 14757 2005-08-21 23:23:37 1154 473 2005-08-26 23:24:37 2 2006-02-16 02:30:53
  44635. 14758 2005-08-21 23:24:52 2372 339 2005-08-27 04:25:52 2 2006-02-16 02:30:53
  44636. 14759 2005-08-21 23:28:58 3871 362 2005-08-31 00:35:58 2 2006-02-16 02:30:53
  44637. 14760 2006-02-14 15:16:03 1367 355 \N 1 2006-02-16 02:30:53
  44638. 14761 2005-08-21 23:30:28 2657 490 2005-08-26 03:26:28 1 2006-02-16 02:30:53
  44639. 14762 2005-08-21 23:33:57 4249 1 2005-08-23 01:30:57 1 2006-02-16 02:30:53
  44640. 14763 2005-08-21 23:34:00 1480 116 2005-08-31 03:58:00 2 2006-02-16 02:30:53
  44641. 14764 2005-08-21 23:37:47 1270 529 2005-08-24 00:23:47 2 2006-02-16 02:30:53
  44642. 14765 2005-08-21 23:40:28 2817 435 2005-08-25 04:55:28 2 2006-02-16 02:30:53
  44643. 14766 2005-08-21 23:42:20 768 523 2005-08-26 03:46:20 1 2006-02-16 02:30:53
  44644. 14767 2005-08-21 23:43:00 1232 69 2005-08-29 05:26:00 1 2006-02-16 02:30:53
  44645. 14768 2005-08-21 23:44:53 3465 570 2005-08-27 20:33:53 1 2006-02-16 02:30:53
  44646. 14769 2006-02-14 15:16:03 1800 361 \N 1 2006-02-16 02:30:53
  44647. 14770 2005-08-21 23:47:16 2977 372 2005-08-25 04:48:16 1 2006-02-16 02:30:53
  44648. 14771 2005-08-21 23:50:15 2665 149 2005-08-28 22:55:15 2 2006-02-16 02:30:53
  44649. 14772 2005-08-21 23:50:39 4047 411 2005-08-30 20:44:39 2 2006-02-16 02:30:53
  44650. 14773 2005-08-21 23:50:57 2541 413 2005-08-26 04:45:57 2 2006-02-16 02:30:53
  44651. 14774 2005-08-21 23:52:32 3185 252 2005-08-26 23:42:32 2 2006-02-16 02:30:53
  44652. 14775 2005-08-21 23:53:07 4044 400 2005-08-22 18:07:07 2 2006-02-16 02:30:53
  44653. 14776 2005-08-21 23:53:35 3488 15 2005-08-24 02:00:35 2 2006-02-16 02:30:53
  44654. 14777 2005-08-21 23:55:50 237 389 2005-08-28 04:31:50 1 2006-02-16 02:30:53
  44655. 14778 2005-08-21 23:56:30 2152 396 2005-08-26 00:07:30 2 2006-02-16 02:30:53
  44656. 14779 2005-08-22 00:00:56 1087 279 2005-08-31 00:01:56 2 2006-02-16 02:30:53
  44657. 14780 2005-08-22 00:06:33 3171 491 2005-08-22 22:02:33 2 2006-02-16 02:30:53
  44658. 14781 2005-08-22 00:15:12 3458 71 2005-08-29 21:02:12 1 2006-02-16 02:30:53
  44659. 14782 2005-08-22 00:17:20 1727 211 2005-08-23 01:24:20 1 2006-02-16 02:30:53
  44660. 14783 2005-08-22 00:21:57 3419 332 2005-08-28 01:27:57 2 2006-02-16 02:30:53
  44661. 14784 2005-08-22 00:23:13 441 117 2005-08-28 03:42:13 1 2006-02-16 02:30:53
  44662. 14785 2005-08-22 00:24:37 1981 560 2005-08-25 04:15:37 1 2006-02-16 02:30:53
  44663. 14786 2005-08-22 00:24:42 2959 370 2005-08-25 19:36:42 1 2006-02-16 02:30:53
  44664. 14787 2005-08-22 00:25:59 2634 38 2005-08-28 22:30:59 2 2006-02-16 02:30:53
  44665. 14788 2005-08-22 00:27:59 1917 139 2005-08-29 23:54:59 2 2006-02-16 02:30:53
  44666. 14789 2005-08-22 00:29:39 2344 279 2005-08-25 02:25:39 1 2006-02-16 02:30:53
  44667. 14790 2005-08-22 00:34:17 1002 397 2005-08-31 02:27:17 1 2006-02-16 02:30:53
  44668. 14791 2005-08-22 00:35:55 1490 317 2005-08-30 20:23:55 1 2006-02-16 02:30:53
  44669. 14792 2005-08-22 00:36:41 4436 396 2005-08-30 18:58:41 1 2006-02-16 02:30:53
  44670. 14793 2005-08-22 00:37:57 4285 154 2005-08-29 05:44:57 2 2006-02-16 02:30:53
  44671. 14794 2005-08-22 00:39:31 413 156 2005-08-28 20:08:31 2 2006-02-16 02:30:53
  44672. 14795 2005-08-22 00:40:22 1695 303 2005-08-26 01:37:22 1 2006-02-16 02:30:53
  44673. 14796 2005-08-22 00:40:49 941 441 2005-08-30 03:59:49 1 2006-02-16 02:30:53
  44674. 14797 2005-08-22 00:41:24 1131 546 2005-08-23 18:51:24 1 2006-02-16 02:30:53
  44675. 14798 2005-08-22 00:44:08 7 92 2005-08-27 02:18:08 2 2006-02-16 02:30:53
  44676. 14799 2005-08-22 00:44:57 1276 454 2005-08-24 20:08:57 2 2006-02-16 02:30:53
  44677. 14800 2005-08-22 00:46:18 3554 533 2005-08-26 01:44:18 2 2006-02-16 02:30:53
  44678. 14801 2005-08-22 00:46:54 1677 184 2005-08-30 19:03:54 1 2006-02-16 02:30:53
  44679. 14802 2005-08-22 00:48:23 707 505 2005-08-28 01:02:23 1 2006-02-16 02:30:53
  44680. 14803 2005-08-22 00:49:10 2525 278 2005-08-22 23:44:10 2 2006-02-16 02:30:53
  44681. 14804 2005-08-22 00:51:25 372 94 2005-08-26 21:15:25 1 2006-02-16 02:30:53
  44682. 14805 2005-08-22 00:52:01 783 169 2005-08-23 03:28:01 2 2006-02-16 02:30:53
  44683. 14806 2005-08-22 00:53:08 2049 231 2005-08-23 06:26:08 2 2006-02-16 02:30:53
  44684. 14807 2005-08-22 00:57:43 335 90 2005-08-26 23:40:43 1 2006-02-16 02:30:53
  44685. 14808 2005-08-22 00:58:35 1657 362 2005-08-29 20:16:35 2 2006-02-16 02:30:53
  44686. 14809 2005-08-22 01:00:42 1077 188 2005-08-29 19:55:42 1 2006-02-16 02:30:53
  44687. 14810 2005-08-22 01:08:34 1982 78 2005-08-25 07:00:34 2 2006-02-16 02:30:53
  44688. 14811 2005-08-22 01:09:04 1613 53 2005-08-26 19:30:04 1 2006-02-16 02:30:53
  44689. 14812 2005-08-22 01:10:32 4282 211 2005-08-26 05:21:32 1 2006-02-16 02:30:53
  44690. 14813 2005-08-22 01:11:37 3364 142 2005-08-24 05:57:37 2 2006-02-16 02:30:53
  44691. 14814 2005-08-22 01:12:14 3109 250 2005-08-27 23:24:14 2 2006-02-16 02:30:53
  44692. 14815 2005-08-22 01:12:44 1183 314 2005-08-24 01:42:44 2 2006-02-16 02:30:53
  44693. 14816 2005-08-22 01:15:51 4086 534 2005-08-28 04:11:51 1 2006-02-16 02:30:53
  44694. 14817 2005-08-22 01:17:16 910 215 2005-08-27 02:43:16 1 2006-02-16 02:30:53
  44695. 14818 2005-08-22 01:17:18 1619 580 2005-08-26 05:40:18 1 2006-02-16 02:30:53
  44696. 14819 2005-08-22 01:17:19 2890 410 2005-08-30 05:54:19 1 2006-02-16 02:30:53
  44697. 14820 2005-08-22 01:18:37 1409 52 2005-08-23 19:44:37 1 2006-02-16 02:30:53
  44698. 14821 2005-08-22 01:20:19 3155 62 2005-08-29 03:06:19 2 2006-02-16 02:30:53
  44699. 14822 2005-08-22 01:21:14 2835 52 2005-08-30 03:59:14 1 2006-02-16 02:30:53
  44700. 14823 2005-08-22 01:24:42 680 503 2005-08-22 19:45:42 2 2006-02-16 02:30:53
  44701. 14824 2005-08-22 01:27:51 4162 594 2005-08-23 03:24:51 2 2006-02-16 02:30:53
  44702. 14825 2005-08-22 01:27:57 1449 1 2005-08-27 07:01:57 2 2006-02-16 02:30:53
  44703. 14826 2005-08-22 01:32:14 4023 426 2005-08-23 03:52:14 2 2006-02-16 02:30:53
  44704. 14827 2005-08-22 01:32:32 2267 88 2005-08-31 06:21:32 2 2006-02-16 02:30:53
  44705. 14828 2005-08-22 01:34:05 4114 319 2005-08-27 06:27:05 2 2006-02-16 02:30:53
  44706. 14829 2005-08-22 01:35:37 3606 546 2005-08-23 19:55:37 2 2006-02-16 02:30:53
  44707. 14830 2005-08-22 01:37:19 637 590 2005-08-27 20:10:19 1 2006-02-16 02:30:53
  44708. 14831 2005-08-22 01:40:49 3370 156 2005-08-23 02:47:49 1 2006-02-16 02:30:53
  44709. 14832 2005-08-22 01:43:29 1828 494 2005-08-29 07:19:29 2 2006-02-16 02:30:53
  44710. 14833 2005-08-22 01:45:18 1960 551 2005-08-28 21:24:18 1 2006-02-16 02:30:53
  44711. 14834 2005-08-22 01:45:58 3105 262 2005-08-28 20:52:58 1 2006-02-16 02:30:53
  44712. 14835 2005-08-22 01:49:07 755 404 2005-08-30 04:28:07 1 2006-02-16 02:30:53
  44713. 14836 2005-08-22 01:52:26 4287 418 2005-08-22 23:39:26 1 2006-02-16 02:30:53
  44714. 14837 2005-08-22 01:54:52 2251 43 2005-08-29 02:24:52 1 2006-02-16 02:30:53
  44715. 14838 2005-08-22 01:57:34 506 404 2005-08-25 06:34:34 1 2006-02-16 02:30:53
  44716. 14839 2005-08-22 01:58:15 3440 567 2005-08-24 05:24:15 2 2006-02-16 02:30:53
  44717. 14840 2005-08-22 01:58:42 1240 354 2005-08-29 22:32:42 2 2006-02-16 02:30:53
  44718. 14841 2005-08-22 02:03:30 4017 384 2005-08-28 02:08:30 2 2006-02-16 02:30:53
  44719. 14842 2005-08-22 02:04:38 2511 467 2005-08-30 06:46:38 2 2006-02-16 02:30:53
  44720. 14843 2005-08-22 02:05:25 3000 454 2005-08-28 22:11:25 1 2006-02-16 02:30:53
  44721. 14844 2005-08-22 02:09:12 145 513 2005-08-31 05:43:12 1 2006-02-16 02:30:53
  44722. 14845 2005-08-22 02:12:44 69 292 2005-08-24 02:36:44 2 2006-02-16 02:30:53
  44723. 14846 2005-08-22 02:13:48 3840 309 2005-08-30 05:39:48 1 2006-02-16 02:30:53
  44724. 14847 2005-08-22 02:13:51 2995 327 2005-08-29 03:42:51 2 2006-02-16 02:30:53
  44725. 14848 2005-08-22 02:14:19 395 218 2005-08-26 02:54:19 2 2006-02-16 02:30:53
  44726. 14849 2005-08-22 02:15:26 3354 177 2005-08-28 00:56:26 2 2006-02-16 02:30:53
  44727. 14850 2005-08-22 02:16:55 2405 435 2005-08-26 21:08:55 1 2006-02-16 02:30:53
  44728. 14851 2005-08-22 02:20:44 1139 180 2005-08-26 08:02:44 2 2006-02-16 02:30:53
  44729. 14852 2005-08-22 02:25:53 2262 352 2005-08-25 04:27:53 1 2006-02-16 02:30:53
  44730. 14853 2005-08-22 02:26:33 3575 388 2005-08-31 02:49:33 2 2006-02-16 02:30:53
  44731. 14854 2005-08-22 02:26:47 1989 117 2005-08-23 05:53:47 1 2006-02-16 02:30:53
  44732. 14855 2005-08-22 02:27:32 1668 187 2005-08-31 03:35:32 1 2006-02-16 02:30:53
  44733. 14856 2005-08-22 02:31:51 3292 151 2005-08-26 23:41:51 2 2006-02-16 02:30:53
  44734. 14857 2005-08-22 02:42:39 4150 232 2005-08-24 21:26:39 2 2006-02-16 02:30:53
  44735. 14858 2005-08-22 02:46:18 366 499 2005-08-30 08:22:18 1 2006-02-16 02:30:53
  44736. 14859 2005-08-22 02:46:35 2150 463 2005-08-24 22:37:35 2 2006-02-16 02:30:53
  44737. 14860 2005-08-22 02:47:07 1368 418 2005-08-28 00:00:07 1 2006-02-16 02:30:53
  44738. 14861 2005-08-22 02:48:05 1806 422 2005-08-27 00:50:05 1 2006-02-16 02:30:53
  44739. 14862 2005-08-22 02:51:41 3479 78 2005-08-28 06:30:41 2 2006-02-16 02:30:53
  44740. 14863 2005-08-22 02:57:04 779 440 2005-08-30 03:24:04 2 2006-02-16 02:30:53
  44741. 14864 2005-08-22 02:57:06 2872 460 2005-08-22 22:19:06 1 2006-02-16 02:30:53
  44742. 14865 2005-08-22 03:06:38 3775 94 2005-08-23 04:26:38 1 2006-02-16 02:30:53
  44743. 14866 2005-08-22 03:11:35 2607 445 2005-08-30 00:10:35 1 2006-02-16 02:30:53
  44744. 14867 2005-08-22 03:14:46 271 114 2005-08-25 03:53:46 2 2006-02-16 02:30:53
  44745. 14868 2005-08-22 03:15:01 4383 160 2005-08-25 01:24:01 1 2006-02-16 02:30:53
  44746. 14869 2005-08-22 03:20:26 455 21 2005-08-23 05:25:26 2 2006-02-16 02:30:53
  44747. 14870 2005-08-22 03:23:20 2170 512 2005-08-23 06:50:20 2 2006-02-16 02:30:53
  44748. 14871 2005-08-22 03:23:24 3411 204 2005-08-23 22:23:24 2 2006-02-16 02:30:53
  44749. 14872 2005-08-22 03:23:41 962 15 2005-08-29 23:25:41 1 2006-02-16 02:30:53
  44750. 14873 2005-08-22 03:31:06 3533 314 2005-08-31 05:34:06 1 2006-02-16 02:30:53
  44751. 14874 2005-08-22 03:32:05 1782 268 2005-08-24 07:02:05 2 2006-02-16 02:30:53
  44752. 14875 2005-08-22 03:34:39 3912 513 2005-08-26 03:40:39 1 2006-02-16 02:30:53
  44753. 14876 2005-08-22 03:39:29 3669 210 2005-08-23 06:53:29 1 2006-02-16 02:30:53
  44754. 14877 2005-08-22 03:39:56 974 266 2005-08-24 03:41:56 2 2006-02-16 02:30:53
  44755. 14878 2006-02-14 15:16:03 1202 441 \N 2 2006-02-16 02:30:53
  44756. 14879 2005-08-22 03:42:12 2154 148 2005-08-27 06:14:12 1 2006-02-16 02:30:53
  44757. 14880 2005-08-22 03:44:36 3615 224 2005-08-24 05:45:36 2 2006-02-16 02:30:53
  44758. 14881 2005-08-22 03:47:39 210 425 2005-08-26 05:58:39 2 2006-02-16 02:30:53
  44759. 14882 2005-08-22 03:52:21 12 417 2005-08-25 04:50:21 2 2006-02-16 02:30:53
  44760. 14883 2005-08-22 03:55:02 1946 177 2005-08-28 02:51:02 1 2006-02-16 02:30:53
  44761. 14884 2005-08-22 03:57:08 2957 547 2005-08-23 07:11:08 1 2006-02-16 02:30:53
  44762. 14885 2005-08-22 03:58:29 2097 248 2005-08-30 05:26:29 1 2006-02-16 02:30:53
  44763. 14886 2005-08-22 03:59:01 4330 379 2005-08-23 01:22:01 1 2006-02-16 02:30:53
  44764. 14887 2005-08-22 04:04:31 56 421 2005-08-31 02:30:31 1 2006-02-16 02:30:53
  44765. 14888 2005-08-22 04:09:18 3345 91 2005-08-23 07:34:18 2 2006-02-16 02:30:53
  44766. 14889 2005-08-22 04:10:10 1579 299 2005-08-24 06:23:10 2 2006-02-16 02:30:53
  44767. 14890 2005-08-22 04:10:49 517 346 2005-08-30 23:23:49 1 2006-02-16 02:30:53
  44768. 14891 2005-08-22 04:11:02 288 482 2005-08-27 03:22:02 1 2006-02-16 02:30:53
  44769. 14892 2005-08-22 04:15:05 3061 82 2005-08-31 06:07:05 1 2006-02-16 02:30:53
  44770. 14893 2005-08-22 04:15:48 2336 461 2005-08-30 08:05:48 1 2006-02-16 02:30:53
  44771. 14894 2005-08-22 04:16:56 3494 347 2005-08-24 00:30:56 2 2006-02-16 02:30:53
  44772. 14895 2005-08-22 04:19:23 4462 340 2005-08-27 04:02:23 1 2006-02-16 02:30:53
  44773. 14896 2005-08-22 04:20:55 2508 569 2005-08-29 05:11:55 2 2006-02-16 02:30:53
  44774. 14897 2005-08-22 04:22:31 1607 175 2005-08-26 00:09:31 1 2006-02-16 02:30:53
  44775. 14898 2005-08-22 04:26:34 1736 299 2005-08-31 10:04:34 1 2006-02-16 02:30:53
  44776. 14899 2005-08-22 04:26:38 3700 304 2005-08-31 08:36:38 2 2006-02-16 02:30:53
  44777. 14900 2005-08-22 04:27:48 3420 329 2005-08-25 03:50:48 2 2006-02-16 02:30:53
  44778. 14901 2005-08-22 04:31:37 4297 258 2005-08-29 08:24:37 1 2006-02-16 02:30:53
  44779. 14902 2005-08-22 04:31:50 866 423 2005-08-23 23:47:50 2 2006-02-16 02:30:53
  44780. 14903 2005-08-22 04:31:50 1795 51 2005-08-25 22:53:50 2 2006-02-16 02:30:53
  44781. 14904 2005-08-22 04:32:01 722 71 2005-08-29 05:21:01 1 2006-02-16 02:30:53
  44782. 14905 2005-08-22 04:34:22 4166 286 2005-08-26 04:00:22 2 2006-02-16 02:30:53
  44783. 14906 2005-08-22 04:38:18 153 366 2005-08-29 23:03:18 1 2006-02-16 02:30:53
  44784. 14907 2005-08-22 04:44:09 2469 116 2005-08-25 09:53:09 1 2006-02-16 02:30:53
  44785. 14908 2005-08-22 04:44:10 102 349 2005-08-25 05:09:10 2 2006-02-16 02:30:53
  44786. 14909 2005-08-22 04:48:44 1997 155 2005-08-25 04:59:44 1 2006-02-16 02:30:53
  44787. 14910 2005-08-22 04:50:52 1266 540 2005-08-25 04:14:52 1 2006-02-16 02:30:53
  44788. 14911 2005-08-22 04:51:42 353 273 2005-08-28 05:37:42 1 2006-02-16 02:30:53
  44789. 14912 2005-08-22 04:51:42 2658 404 2005-08-23 23:50:42 1 2006-02-16 02:30:53
  44790. 14913 2005-08-22 04:52:13 3609 503 2005-08-23 06:49:13 2 2006-02-16 02:30:53
  44791. 14914 2005-08-22 04:53:35 4348 156 2005-08-26 10:35:35 1 2006-02-16 02:30:53
  44792. 14915 2006-02-14 15:16:03 112 349 \N 1 2006-02-16 02:30:53
  44793. 14916 2005-08-22 04:56:57 2110 80 2005-08-24 06:36:57 2 2006-02-16 02:30:53
  44794. 14917 2005-08-22 05:03:59 377 289 2005-08-29 04:00:59 2 2006-02-16 02:30:53
  44795. 14918 2005-08-22 05:06:38 4056 154 2005-08-30 01:44:38 2 2006-02-16 02:30:53
  44796. 14919 2005-08-22 05:07:17 1587 244 2005-08-30 06:41:17 2 2006-02-16 02:30:53
  44797. 14920 2005-08-22 05:08:58 3357 106 2005-08-23 02:51:58 1 2006-02-16 02:30:53
  44798. 14921 2005-08-22 05:12:24 3724 284 2005-08-26 08:20:24 2 2006-02-16 02:30:53
  44799. 14922 2005-08-22 05:13:05 2322 151 2005-08-30 04:59:05 1 2006-02-16 02:30:53
  44800. 14923 2005-08-22 05:13:33 3434 460 2005-08-28 01:39:33 2 2006-02-16 02:30:53
  44801. 14924 2005-08-22 05:15:17 4189 118 2005-08-23 10:11:17 1 2006-02-16 02:30:53
  44802. 14925 2005-08-22 05:16:16 442 128 2005-08-30 02:47:16 2 2006-02-16 02:30:53
  44803. 14926 2005-08-22 05:18:44 2448 357 2005-08-26 02:18:44 1 2006-02-16 02:30:53
  44804. 14927 2005-08-22 05:31:53 952 193 2005-08-27 07:04:53 1 2006-02-16 02:30:53
  44805. 14928 2006-02-14 15:16:03 4375 472 \N 1 2006-02-16 02:30:53
  44806. 14929 2005-08-22 05:32:38 4195 546 2005-08-28 00:02:38 1 2006-02-16 02:30:53
  44807. 14930 2005-08-22 05:38:32 2875 584 2005-08-30 07:21:32 1 2006-02-16 02:30:53
  44808. 14931 2005-08-22 05:38:55 657 63 2005-08-28 04:15:55 2 2006-02-16 02:30:53
  44809. 14932 2005-08-22 05:40:39 2259 516 2005-08-23 11:02:39 2 2006-02-16 02:30:53
  44810. 14933 2006-02-14 15:16:03 1186 21 \N 2 2006-02-16 02:30:53
  44811. 14934 2005-08-22 05:47:15 815 226 2005-08-26 11:32:15 1 2006-02-16 02:30:53
  44812. 14935 2005-08-22 05:47:31 2025 380 2005-08-29 00:33:31 2 2006-02-16 02:30:53
  44813. 14936 2005-08-22 05:51:26 3710 241 2005-08-29 10:21:26 2 2006-02-16 02:30:53
  44814. 14937 2005-08-22 05:51:59 1241 348 2005-08-31 01:45:59 2 2006-02-16 02:30:53
  44815. 14938 2005-08-22 05:52:39 408 541 2005-08-31 11:43:39 1 2006-02-16 02:30:53
  44816. 14939 2005-08-22 05:53:52 719 328 2005-08-27 06:20:52 1 2006-02-16 02:30:53
  44817. 14940 2005-08-22 05:54:03 2635 46 2005-08-24 05:52:03 2 2006-02-16 02:30:53
  44818. 14941 2005-08-22 05:58:23 2328 574 2005-08-28 10:58:23 1 2006-02-16 02:30:53
  44819. 14942 2005-08-22 05:58:27 32 471 2005-08-31 10:08:27 1 2006-02-16 02:30:53
  44820. 14943 2005-08-22 05:59:59 3515 265 2005-08-26 10:31:59 2 2006-02-16 02:30:53
  44821. 14944 2005-08-22 06:01:26 535 153 2005-08-24 10:33:26 2 2006-02-16 02:30:53
  44822. 14945 2005-08-22 06:05:38 1567 304 2005-08-29 12:01:38 1 2006-02-16 02:30:53
  44823. 14946 2005-08-22 06:07:10 1395 308 2005-08-28 05:25:10 1 2006-02-16 02:30:53
  44824. 14947 2005-08-22 06:07:52 3497 68 2005-08-28 01:12:52 2 2006-02-16 02:30:53
  44825. 14948 2005-08-22 06:10:53 2914 488 2005-08-28 11:24:53 2 2006-02-16 02:30:53
  44826. 14949 2005-08-22 06:12:16 2434 111 2005-08-25 08:25:16 2 2006-02-16 02:30:53
  44827. 14950 2005-08-22 06:17:12 635 362 2005-08-27 08:48:12 2 2006-02-16 02:30:53
  44828. 14951 2005-08-22 06:19:37 2800 197 2005-08-30 05:51:37 2 2006-02-16 02:30:53
  44829. 14952 2005-08-22 06:20:07 2950 575 2005-08-28 01:18:07 1 2006-02-16 02:30:53
  44830. 14953 2005-08-22 06:23:54 816 182 2005-08-28 03:19:54 1 2006-02-16 02:30:53
  44831. 14954 2006-02-14 15:16:03 3608 525 \N 1 2006-02-16 02:30:53
  44832. 14955 2005-08-22 06:25:52 1534 445 2005-08-25 12:13:52 2 2006-02-16 02:30:53
  44833. 14956 2005-08-22 06:26:16 3650 571 2005-08-25 11:06:16 2 2006-02-16 02:30:53
  44834. 14957 2005-08-22 06:29:34 1384 323 2005-08-26 04:52:34 2 2006-02-16 02:30:53
  44835. 14958 2005-08-22 06:30:10 1710 347 2005-08-28 09:43:10 2 2006-02-16 02:30:53
  44836. 14959 2005-08-22 06:30:28 2009 569 2005-08-25 09:48:28 1 2006-02-16 02:30:53
  44837. 14960 2005-08-22 06:31:36 3316 147 2005-08-29 07:10:36 2 2006-02-16 02:30:53
  44838. 14961 2005-08-22 06:35:50 3274 52 2005-08-31 04:07:50 2 2006-02-16 02:30:53
  44839. 14962 2005-08-22 06:37:43 3104 449 2005-08-29 03:44:43 2 2006-02-16 02:30:53
  44840. 14963 2005-08-22 06:38:10 2672 384 2005-08-31 05:35:10 2 2006-02-16 02:30:53
  44841. 14964 2005-08-22 06:39:24 2302 500 2005-08-26 06:05:24 1 2006-02-16 02:30:53
  44842. 14965 2005-08-22 06:45:53 1036 148 2005-08-27 10:05:53 1 2006-02-16 02:30:53
  44843. 14966 2005-08-22 06:45:57 679 259 2005-08-31 10:02:57 1 2006-02-16 02:30:53
  44844. 14967 2005-08-22 06:46:03 289 67 2005-08-23 01:02:03 2 2006-02-16 02:30:53
  44845. 14968 2005-08-22 06:46:59 3302 129 2005-08-29 07:36:59 1 2006-02-16 02:30:53
  44846. 14969 2005-08-22 06:49:15 4060 120 2005-08-29 05:52:15 1 2006-02-16 02:30:53
  44847. 14970 2005-08-22 06:49:29 536 529 2005-08-29 08:47:29 1 2006-02-16 02:30:53
  44848. 14971 2005-08-22 06:52:49 1883 378 2005-08-28 06:27:49 2 2006-02-16 02:30:53
  44849. 14972 2005-08-22 06:53:21 3422 310 2005-08-29 02:25:21 1 2006-02-16 02:30:53
  44850. 14973 2005-08-22 06:59:28 2888 201 2005-08-30 02:28:28 1 2006-02-16 02:30:53
  44851. 14974 2005-08-22 07:04:25 2596 157 2005-08-27 12:39:25 1 2006-02-16 02:30:53
  44852. 14975 2005-08-22 07:07:50 924 244 2005-08-28 07:23:50 2 2006-02-16 02:30:53
  44853. 14976 2005-08-22 07:10:26 77 581 2005-08-28 07:22:26 1 2006-02-16 02:30:53
  44854. 14977 2005-08-22 07:12:53 4093 59 2005-08-30 08:11:53 2 2006-02-16 02:30:53
  44855. 14978 2005-08-22 07:13:15 699 94 2005-08-25 12:26:15 1 2006-02-16 02:30:53
  44856. 14979 2005-08-22 07:16:36 2320 387 2005-08-24 02:29:36 2 2006-02-16 02:30:53
  44857. 14980 2005-08-22 07:16:45 2701 518 2005-08-26 06:04:45 2 2006-02-16 02:30:53
  44858. 14981 2005-08-22 07:19:05 1239 544 2005-08-26 03:08:05 2 2006-02-16 02:30:53
  44859. 14982 2005-08-22 07:20:55 2333 542 2005-08-31 04:35:55 2 2006-02-16 02:30:53
  44860. 14983 2005-08-22 07:32:23 3579 363 2005-08-30 11:39:23 2 2006-02-16 02:30:53
  44861. 14984 2005-08-22 07:35:31 1704 334 2005-08-30 02:32:31 1 2006-02-16 02:30:53
  44862. 14985 2005-08-22 07:35:56 2017 29 2005-08-29 13:17:56 1 2006-02-16 02:30:53
  44863. 14986 2005-08-22 07:37:24 1493 278 2005-08-23 04:22:24 2 2006-02-16 02:30:53
  44864. 14987 2005-08-22 07:41:08 1513 138 2005-08-24 03:15:08 2 2006-02-16 02:30:53
  44865. 14988 2005-08-22 07:46:05 2114 186 2005-08-29 06:43:05 1 2006-02-16 02:30:53
  44866. 14989 2005-08-22 07:47:07 1431 58 2005-08-26 04:42:07 2 2006-02-16 02:30:53
  44867. 14990 2005-08-22 07:48:01 4057 198 2005-08-24 06:41:01 2 2006-02-16 02:30:53
  44868. 14991 2005-08-22 07:50:44 708 172 2005-08-30 06:32:44 2 2006-02-16 02:30:53
  44869. 14992 2005-08-22 07:51:47 4430 415 2005-08-25 08:17:47 2 2006-02-16 02:30:53
  44870. 14993 2005-08-22 07:52:18 3416 437 2005-08-27 02:13:18 1 2006-02-16 02:30:53
  44871. 14994 2005-08-22 07:52:24 1601 509 2005-08-26 09:57:24 1 2006-02-16 02:30:53
  44872. 14995 2005-08-22 07:52:31 4178 482 2005-08-24 05:16:31 1 2006-02-16 02:30:53
  44873. 14996 2005-08-22 07:52:41 1178 411 2005-08-29 02:35:41 1 2006-02-16 02:30:53
  44874. 14997 2005-08-22 07:53:00 2724 29 2005-08-28 03:47:00 2 2006-02-16 02:30:53
  44875. 14998 2005-08-22 07:53:14 3852 92 2005-08-24 03:46:14 2 2006-02-16 02:30:53
  44876. 14999 2005-08-22 07:54:47 3399 594 2005-08-23 08:39:47 1 2006-02-16 02:30:53
  44877. 15000 2005-08-22 07:54:58 3080 161 2005-08-24 12:46:58 2 2006-02-16 02:30:53
  44878. 15001 2005-08-22 08:00:49 2869 186 2005-08-27 05:53:49 2 2006-02-16 02:30:53
  44879. 15002 2005-08-22 08:06:00 4198 242 2005-08-24 10:48:00 1 2006-02-16 02:30:53
  44880. 15003 2005-08-22 08:11:24 4009 167 2005-08-28 08:49:24 1 2006-02-16 02:30:53
  44881. 15004 2005-08-22 08:15:21 4464 375 2005-08-28 10:35:21 1 2006-02-16 02:30:53
  44882. 15005 2005-08-22 08:15:44 2897 335 2005-08-24 09:52:44 2 2006-02-16 02:30:53
  44883. 15006 2005-08-22 08:20:15 2967 97 2005-08-23 11:57:15 1 2006-02-16 02:30:53
  44884. 15007 2005-08-22 08:21:21 3692 165 2005-08-27 04:44:21 2 2006-02-16 02:30:53
  44885. 15008 2005-08-22 08:24:32 961 277 2005-08-31 13:48:32 2 2006-02-16 02:30:53
  44886. 15009 2005-08-22 08:27:27 4025 325 2005-08-26 05:57:27 2 2006-02-16 02:30:53
  44887. 15010 2005-08-22 08:30:17 171 508 2005-08-29 13:24:17 2 2006-02-16 02:30:53
  44888. 15011 2005-08-22 08:31:07 2722 329 2005-08-24 04:47:07 1 2006-02-16 02:30:53
  44889. 15012 2005-08-22 08:42:32 1584 454 2005-08-28 05:04:32 1 2006-02-16 02:30:53
  44890. 15013 2005-08-22 08:42:45 141 141 2005-08-24 05:20:45 2 2006-02-16 02:30:53
  44891. 15014 2005-08-22 08:43:11 3678 373 2005-08-31 02:55:11 1 2006-02-16 02:30:53
  44892. 15015 2005-08-22 08:43:50 3067 14 2005-08-31 06:53:50 2 2006-02-16 02:30:53
  44893. 15016 2005-08-22 08:47:35 879 434 2005-08-28 14:23:35 2 2006-02-16 02:30:53
  44894. 15017 2005-08-22 08:47:44 3975 144 2005-08-29 08:16:44 1 2006-02-16 02:30:53
  44895. 15018 2005-08-22 08:52:38 394 504 2005-08-25 08:08:38 1 2006-02-16 02:30:53
  44896. 15019 2005-08-22 08:52:53 3425 450 2005-08-25 13:07:53 2 2006-02-16 02:30:53
  44897. 15020 2005-08-22 08:54:12 3460 267 2005-08-27 04:54:12 1 2006-02-16 02:30:53
  44898. 15021 2006-02-14 15:16:03 418 100 \N 2 2006-02-16 02:30:53
  44899. 15022 2005-08-22 08:55:43 249 506 2005-08-31 05:35:43 2 2006-02-16 02:30:53
  44900. 15023 2005-08-22 08:56:48 358 296 2005-08-29 08:13:48 1 2006-02-16 02:30:53
  44901. 15024 2005-08-22 08:57:10 1831 139 2005-08-24 10:39:10 1 2006-02-16 02:30:53
  44902. 15025 2005-08-22 08:57:24 2107 257 2005-08-24 06:09:24 2 2006-02-16 02:30:53
  44903. 15026 2005-08-22 09:01:52 4328 66 2005-08-28 09:21:52 1 2006-02-16 02:30:53
  44904. 15027 2005-08-22 09:03:04 326 478 2005-08-29 04:03:04 2 2006-02-16 02:30:53
  44905. 15028 2005-08-22 09:03:44 4248 37 2005-08-30 11:28:44 1 2006-02-16 02:30:53
  44906. 15029 2005-08-22 09:04:53 2234 139 2005-08-25 09:03:53 1 2006-02-16 02:30:53
  44907. 15030 2005-08-22 09:10:21 3168 341 2005-08-24 06:00:21 2 2006-02-16 02:30:53
  44908. 15031 2005-08-22 09:11:48 3926 430 2005-08-27 06:11:48 1 2006-02-16 02:30:53
  44909. 15032 2005-08-22 09:14:09 3414 467 2005-08-25 09:50:09 2 2006-02-16 02:30:53
  44910. 15033 2005-08-22 09:25:24 2431 168 2005-08-28 09:56:24 2 2006-02-16 02:30:53
  44911. 15034 2005-08-22 09:33:08 1331 235 2005-08-29 13:04:08 1 2006-02-16 02:30:53
  44912. 15035 2005-08-22 09:34:32 339 513 2005-08-28 10:23:32 1 2006-02-16 02:30:53
  44913. 15036 2005-08-22 09:36:00 874 280 2005-08-23 08:12:00 2 2006-02-16 02:30:53
  44914. 15037 2005-08-22 09:36:33 4517 234 2005-08-31 11:20:33 2 2006-02-16 02:30:53
  44915. 15038 2005-08-22 09:37:27 1685 3 2005-08-23 14:39:27 1 2006-02-16 02:30:53
  44916. 15039 2005-08-22 09:37:54 895 180 2005-08-28 12:23:54 1 2006-02-16 02:30:53
  44917. 15040 2005-08-22 09:41:09 3207 523 2005-08-23 12:49:09 2 2006-02-16 02:30:53
  44918. 15041 2005-08-22 09:43:18 1913 372 2005-08-23 11:04:18 2 2006-02-16 02:30:53
  44919. 15042 2005-08-22 09:47:37 3796 553 2005-08-31 04:42:37 1 2006-02-16 02:30:53
  44920. 15043 2005-08-22 09:49:32 3797 182 2005-08-28 13:50:32 1 2006-02-16 02:30:53
  44921. 15044 2005-08-22 09:51:54 4513 439 2005-08-31 12:45:54 1 2006-02-16 02:30:53
  44922. 15045 2005-08-22 09:53:23 3485 161 2005-08-26 10:09:23 2 2006-02-16 02:30:53
  44923. 15046 2005-08-22 09:54:54 1536 474 2005-08-26 07:34:54 1 2006-02-16 02:30:53
  44924. 15047 2005-08-22 09:57:16 1309 19 2005-08-23 11:39:16 1 2006-02-16 02:30:53
  44925. 15048 2005-08-22 10:00:04 2895 27 2005-08-26 08:26:04 1 2006-02-16 02:30:53
  44926. 15049 2005-08-22 10:06:28 1573 102 2005-08-26 15:12:28 1 2006-02-16 02:30:53
  44927. 15050 2005-08-22 10:07:52 3961 167 2005-08-23 04:45:52 1 2006-02-16 02:30:53
  44928. 15051 2005-08-22 10:08:50 1419 300 2005-08-28 10:23:50 1 2006-02-16 02:30:53
  44929. 15052 2005-08-22 10:09:19 2349 147 2005-08-31 09:27:19 2 2006-02-16 02:30:53
  44930. 15053 2005-08-22 10:13:09 1065 374 2005-08-28 12:42:09 2 2006-02-16 02:30:53
  44931. 15054 2005-08-22 10:14:33 2314 44 2005-08-25 15:07:33 1 2006-02-16 02:30:53
  44932. 15055 2005-08-22 10:14:39 623 125 2005-08-25 07:25:39 2 2006-02-16 02:30:53
  44933. 15056 2005-08-22 10:15:54 1871 503 2005-08-25 07:21:54 1 2006-02-16 02:30:53
  44934. 15057 2005-08-22 10:19:58 4534 20 2005-08-28 05:12:58 1 2006-02-16 02:30:53
  44935. 15058 2005-08-22 10:20:55 3537 288 2005-08-26 12:37:55 1 2006-02-16 02:30:53
  44936. 15059 2005-08-22 10:22:00 4079 564 2005-08-29 07:01:00 2 2006-02-16 02:30:53
  44937. 15060 2005-08-22 10:24:32 2740 63 2005-08-31 11:17:32 2 2006-02-16 02:30:53
  44938. 15061 2005-08-22 10:29:44 3436 90 2005-08-24 14:40:44 1 2006-02-16 02:30:53
  44939. 15062 2005-08-22 10:34:39 4393 139 2005-08-26 13:09:39 2 2006-02-16 02:30:53
  44940. 15063 2005-08-22 10:39:51 1159 30 2005-08-25 16:03:51 2 2006-02-16 02:30:53
  44941. 15064 2005-08-22 10:41:58 1233 425 2005-08-28 13:34:58 2 2006-02-16 02:30:53
  44942. 15065 2005-08-22 10:46:44 468 510 2005-08-27 09:40:44 2 2006-02-16 02:30:53
  44943. 15066 2005-08-22 10:49:06 2712 530 2005-08-23 10:25:06 1 2006-02-16 02:30:53
  44944. 15067 2005-08-22 10:49:21 3684 461 2005-08-24 09:01:21 1 2006-02-16 02:30:53
  44945. 15068 2005-08-22 10:50:13 3268 373 2005-08-26 05:04:13 2 2006-02-16 02:30:53
  44946. 15069 2005-08-22 10:55:42 592 568 2005-08-28 06:59:42 2 2006-02-16 02:30:53
  44947. 15070 2005-08-22 10:55:45 2687 441 2005-08-26 09:23:45 1 2006-02-16 02:30:53
  44948. 15071 2005-08-22 10:58:43 417 541 2005-08-31 14:53:43 1 2006-02-16 02:30:53
  44949. 15072 2005-08-22 10:58:45 2871 405 2005-08-30 16:18:45 1 2006-02-16 02:30:53
  44950. 15073 2005-08-22 11:01:15 3970 336 2005-08-31 09:23:15 1 2006-02-16 02:30:53
  44951. 15074 2005-08-22 11:02:52 3112 567 2005-08-28 07:59:52 2 2006-02-16 02:30:53
  44952. 15075 2005-08-22 11:04:52 1938 535 2005-08-30 05:06:52 1 2006-02-16 02:30:53
  44953. 15076 2005-08-22 11:05:34 4170 287 2005-08-27 14:40:34 1 2006-02-16 02:30:53
  44954. 15077 2005-08-22 11:09:18 3142 503 2005-08-29 08:41:18 1 2006-02-16 02:30:53
  44955. 15078 2005-08-22 11:09:31 3001 197 2005-08-25 12:16:31 1 2006-02-16 02:30:53
  44956. 15079 2005-08-22 11:09:56 4552 540 2005-08-24 15:40:56 2 2006-02-16 02:30:53
  44957. 15080 2005-08-22 11:11:51 927 133 2005-08-23 13:09:51 1 2006-02-16 02:30:53
  44958. 15081 2005-08-22 11:14:31 2501 313 2005-08-28 14:23:31 2 2006-02-16 02:30:53
  44959. 15082 2005-08-22 11:17:06 2046 137 2005-08-28 06:40:06 1 2006-02-16 02:30:53
  44960. 15083 2005-08-22 11:17:37 1691 397 2005-08-28 06:27:37 2 2006-02-16 02:30:53
  44961. 15084 2005-08-22 11:17:59 821 287 2005-08-23 09:23:59 1 2006-02-16 02:30:53
  44962. 15085 2005-08-22 11:19:22 1669 67 2005-08-25 09:04:22 2 2006-02-16 02:30:53
  44963. 15086 2005-08-22 11:21:08 264 494 2005-08-30 08:18:08 2 2006-02-16 02:30:53
  44964. 15087 2005-08-22 11:24:09 233 404 2005-08-27 16:42:09 2 2006-02-16 02:30:53
  44965. 15088 2005-08-22 11:28:26 4199 377 2005-08-24 15:46:26 2 2006-02-16 02:30:53
  44966. 15089 2005-08-22 11:34:06 3288 61 2005-08-31 12:45:06 1 2006-02-16 02:30:53
  44967. 15090 2005-08-22 11:34:33 2918 582 2005-08-31 06:09:33 2 2006-02-16 02:30:53
  44968. 15091 2005-08-22 11:34:43 2092 477 2005-08-23 16:52:43 2 2006-02-16 02:30:53
  44969. 15092 2005-08-22 11:36:16 2418 464 2005-08-28 09:49:16 2 2006-02-16 02:30:53
  44970. 15093 2005-08-22 11:39:03 3534 60 2005-08-23 06:16:03 2 2006-02-16 02:30:53
  44971. 15094 2006-02-14 15:16:03 922 424 \N 1 2006-02-16 02:30:53
  44972. 15095 2005-08-22 11:41:35 489 202 2005-08-25 16:44:35 2 2006-02-16 02:30:53
  44973. 15096 2005-08-22 11:43:04 1983 33 2005-08-29 12:16:04 2 2006-02-16 02:30:53
  44974. 15097 2005-08-22 11:43:42 2838 475 2005-08-27 10:25:42 1 2006-02-16 02:30:53
  44975. 15098 2005-08-22 11:48:19 4414 88 2005-08-31 11:07:19 2 2006-02-16 02:30:53
  44976. 15099 2005-08-22 11:49:16 1940 86 2005-08-26 06:38:16 2 2006-02-16 02:30:53
  44977. 15100 2005-08-22 11:55:03 4489 312 2005-08-25 14:55:03 1 2006-02-16 02:30:53
  44978. 15101 2005-08-22 11:56:02 683 335 2005-08-28 13:08:02 2 2006-02-16 02:30:53
  44979. 15102 2005-08-22 11:58:58 2317 555 2005-08-29 08:37:58 1 2006-02-16 02:30:53
  44980. 15103 2005-08-22 12:01:06 853 101 2005-08-25 14:40:06 2 2006-02-16 02:30:53
  44981. 15104 2005-08-22 12:01:16 4550 359 2005-08-27 17:48:16 1 2006-02-16 02:30:53
  44982. 15105 2005-08-22 12:01:33 3965 338 2005-08-26 14:29:33 2 2006-02-16 02:30:53
  44983. 15106 2005-08-22 12:01:48 399 155 2005-08-27 16:12:48 1 2006-02-16 02:30:53
  44984. 15107 2005-08-22 12:05:02 2378 376 2005-08-23 11:09:02 1 2006-02-16 02:30:53
  44985. 15108 2005-08-22 12:10:07 3463 447 2005-08-26 14:46:07 2 2006-02-16 02:30:53
  44986. 15109 2005-08-22 12:12:58 565 588 2005-08-30 07:20:58 1 2006-02-16 02:30:53
  44987. 15110 2005-08-22 12:16:46 1379 72 2005-08-26 13:36:46 1 2006-02-16 02:30:53
  44988. 15111 2005-08-22 12:21:43 4101 119 2005-08-24 09:31:43 1 2006-02-16 02:30:53
  44989. 15112 2005-08-22 12:21:49 2832 160 2005-08-27 11:03:49 1 2006-02-16 02:30:53
  44990. 15113 2005-08-22 12:23:59 4338 424 2005-08-27 09:59:59 1 2006-02-16 02:30:53
  44991. 15114 2005-08-22 12:24:55 2481 121 2005-08-31 17:06:55 1 2006-02-16 02:30:53
  44992. 15115 2005-08-22 12:28:01 1739 33 2005-08-26 16:12:01 1 2006-02-16 02:30:53
  44993. 15116 2005-08-22 12:35:40 518 217 2005-08-23 17:58:40 1 2006-02-16 02:30:53
  44994. 15117 2005-08-22 12:38:20 2502 292 2005-08-27 07:36:20 2 2006-02-16 02:30:53
  44995. 15118 2005-08-22 12:38:37 2081 473 2005-08-29 14:01:37 2 2006-02-16 02:30:53
  44996. 15119 2005-08-22 12:41:33 4526 288 2005-08-23 14:44:33 2 2006-02-16 02:30:53
  44997. 15120 2005-08-22 12:42:47 3083 11 2005-08-23 14:21:47 1 2006-02-16 02:30:53
  44998. 15121 2005-08-22 12:46:37 2981 415 2005-08-25 17:42:37 1 2006-02-16 02:30:53
  44999. 15122 2005-08-22 12:47:45 1686 91 2005-08-29 13:18:45 2 2006-02-16 02:30:53
  45000. 15123 2005-08-22 12:48:44 1455 445 2005-08-27 11:07:44 1 2006-02-16 02:30:53
  45001. 15124 2005-08-22 12:51:38 1598 39 2005-08-26 09:05:38 1 2006-02-16 02:30:53
  45002. 15125 2005-08-22 12:53:22 3942 221 2005-08-29 18:44:22 1 2006-02-16 02:30:53
  45003. 15126 2005-08-22 12:53:58 1902 459 2005-08-28 07:39:58 1 2006-02-16 02:30:53
  45004. 15127 2005-08-22 12:56:29 2397 287 2005-08-26 10:58:29 1 2006-02-16 02:30:53
  45005. 15128 2005-08-22 12:57:26 3229 457 2005-08-30 11:35:26 2 2006-02-16 02:30:53
  45006. 15129 2005-08-22 13:03:52 3782 234 2005-08-29 10:56:52 2 2006-02-16 02:30:53
  45007. 15130 2005-08-22 13:04:32 2375 536 2005-08-30 17:24:32 1 2006-02-16 02:30:53
  45008. 15131 2005-08-22 13:06:26 1930 119 2005-08-30 16:43:26 1 2006-02-16 02:30:53
  45009. 15132 2005-08-22 13:11:25 3474 393 2005-08-27 17:04:25 2 2006-02-16 02:30:53
  45010. 15133 2005-08-22 13:17:43 3408 137 2005-08-26 08:40:43 1 2006-02-16 02:30:53
  45011. 15134 2005-08-22 13:18:25 4442 22 2005-08-29 18:03:25 1 2006-02-16 02:30:53
  45012. 15135 2005-08-22 13:19:19 555 284 2005-08-27 17:09:19 2 2006-02-16 02:30:53
  45013. 15136 2005-08-22 13:19:25 2606 435 2005-08-24 07:28:25 2 2006-02-16 02:30:53
  45014. 15137 2005-08-22 13:20:28 856 241 2005-08-26 09:35:28 1 2006-02-16 02:30:53
  45015. 15138 2005-08-22 13:36:30 2467 50 2005-08-27 15:35:30 1 2006-02-16 02:30:53
  45016. 15139 2005-08-22 13:38:11 2018 237 2005-08-30 09:00:11 1 2006-02-16 02:30:53
  45017. 15140 2005-08-22 13:39:20 1402 414 2005-08-30 18:19:20 2 2006-02-16 02:30:53
  45018. 15141 2005-08-22 13:41:49 227 541 2005-08-28 15:25:49 2 2006-02-16 02:30:53
  45019. 15142 2005-08-22 13:44:32 1337 351 2005-08-29 14:19:32 1 2006-02-16 02:30:53
  45020. 15143 2005-08-22 13:46:24 1519 274 2005-08-25 09:47:24 2 2006-02-16 02:30:53
  45021. 15144 2005-08-22 13:49:18 559 527 2005-08-26 11:11:18 2 2006-02-16 02:30:53
  45022. 15145 2005-08-22 13:53:04 2179 2 2005-08-31 15:51:04 1 2006-02-16 02:30:53
  45023. 15146 2005-08-22 13:57:55 3102 72 2005-08-28 12:57:55 2 2006-02-16 02:30:53
  45024. 15147 2005-08-22 13:58:23 2553 4 2005-08-28 14:33:23 2 2006-02-16 02:30:53
  45025. 15148 2005-08-22 13:59:19 3704 359 2005-08-31 13:59:19 2 2006-02-16 02:30:53
  45026. 15149 2005-08-22 14:08:06 3059 537 2005-08-25 08:25:06 1 2006-02-16 02:30:53
  45027. 15150 2005-08-22 14:12:05 1797 161 2005-08-27 12:47:05 1 2006-02-16 02:30:53
  45028. 15151 2005-08-22 14:23:11 4070 463 2005-08-30 14:01:11 1 2006-02-16 02:30:53
  45029. 15152 2005-08-22 14:25:21 739 123 2005-08-31 14:28:21 1 2006-02-16 02:30:53
  45030. 15153 2005-08-22 14:26:01 1051 512 2005-08-27 14:17:01 2 2006-02-16 02:30:53
  45031. 15154 2005-08-22 14:27:37 3395 106 2005-08-29 20:04:37 2 2006-02-16 02:30:53
  45032. 15155 2005-08-22 14:27:46 2641 43 2005-08-23 17:46:46 2 2006-02-16 02:30:53
  45033. 15156 2005-08-22 14:29:11 1174 494 2005-08-30 17:48:11 2 2006-02-16 02:30:53
  45034. 15157 2005-08-22 14:30:09 1909 580 2005-08-29 18:28:09 1 2006-02-16 02:30:53
  45035. 15158 2005-08-22 14:30:39 3614 588 2005-08-27 15:55:39 1 2006-02-16 02:30:53
  45036. 15159 2005-08-22 14:32:25 4355 525 2005-08-24 11:19:25 2 2006-02-16 02:30:53
  45037. 15160 2005-08-22 14:33:50 4321 249 2005-08-28 11:26:50 1 2006-02-16 02:30:53
  45038. 15161 2005-08-22 14:37:22 1445 20 2005-08-27 17:40:22 1 2006-02-16 02:30:53
  45039. 15162 2005-08-22 14:41:05 1756 439 2005-08-27 20:23:05 2 2006-02-16 02:30:53
  45040. 15163 2005-08-22 14:43:13 3597 100 2005-08-26 14:26:13 1 2006-02-16 02:30:53
  45041. 15164 2005-08-22 14:47:53 997 193 2005-08-25 16:05:53 1 2006-02-16 02:30:53
  45042. 15165 2005-08-22 14:59:30 3664 168 2005-08-29 15:46:30 2 2006-02-16 02:30:53
  45043. 15166 2005-08-22 15:05:37 1530 504 2005-08-30 12:22:37 2 2006-02-16 02:30:53
  45044. 15167 2006-02-14 15:16:03 973 190 \N 2 2006-02-16 02:30:53
  45045. 15168 2005-08-22 15:14:20 3218 526 2005-08-25 20:12:20 2 2006-02-16 02:30:53
  45046. 15169 2005-08-22 15:21:56 794 76 2005-08-28 09:40:56 1 2006-02-16 02:30:53
  45047. 15170 2005-08-22 15:22:15 2123 521 2005-08-23 20:32:15 1 2006-02-16 02:30:53
  45048. 15171 2005-08-22 15:23:59 1201 119 2005-08-28 12:05:59 2 2006-02-16 02:30:53
  45049. 15172 2005-08-22 15:25:33 2367 511 2005-08-23 17:29:33 1 2006-02-16 02:30:53
  45050. 15173 2005-08-22 15:26:29 2585 338 2005-08-29 14:03:29 1 2006-02-16 02:30:53
  45051. 15174 2005-08-22 15:26:36 19 111 2005-08-31 10:47:36 2 2006-02-16 02:30:53
  45052. 15175 2005-08-22 15:29:15 4318 380 2005-08-27 15:11:15 2 2006-02-16 02:30:53
  45053. 15176 2005-08-22 15:30:25 3063 115 2005-08-31 20:00:25 1 2006-02-16 02:30:53
  45054. 15177 2005-08-22 15:34:49 838 493 2005-08-26 12:54:49 1 2006-02-16 02:30:53
  45055. 15178 2005-08-22 15:36:04 1745 15 2005-08-26 21:00:04 2 2006-02-16 02:30:53
  45056. 15179 2005-08-22 15:36:22 450 328 2005-08-31 19:57:22 1 2006-02-16 02:30:53
  45057. 15180 2005-08-22 15:42:57 234 532 2005-08-24 12:49:57 2 2006-02-16 02:30:53
  45058. 15181 2005-08-22 15:46:20 3900 266 2005-08-27 09:56:20 1 2006-02-16 02:30:53
  45059. 15182 2005-08-22 15:47:05 645 443 2005-08-25 11:55:05 1 2006-02-16 02:30:53
  45060. 15183 2005-08-22 15:49:54 2696 268 2005-08-25 12:29:54 1 2006-02-16 02:30:53
  45061. 15184 2005-08-22 15:51:12 1193 471 2005-08-24 19:23:12 2 2006-02-16 02:30:53
  45062. 15185 2005-08-22 15:52:50 2948 472 2005-08-31 20:38:50 1 2006-02-16 02:30:53
  45063. 15186 2005-08-22 15:52:57 1323 104 2005-08-24 21:12:57 1 2006-02-16 02:30:53
  45064. 15187 2005-08-22 15:53:32 2338 461 2005-08-27 14:21:32 1 2006-02-16 02:30:53
  45065. 15188 2005-08-22 15:55:48 131 478 2005-08-29 19:10:48 1 2006-02-16 02:30:53
  45066. 15189 2005-08-22 15:56:42 2559 398 2005-08-29 12:20:42 1 2006-02-16 02:30:53
  45067. 15190 2005-08-22 15:57:38 2096 84 2005-08-24 13:46:38 1 2006-02-16 02:30:53
  45068. 15191 2006-02-14 15:16:03 3688 75 \N 1 2006-02-16 02:30:53
  45069. 15192 2005-08-22 16:06:23 4213 216 2005-08-27 13:12:23 1 2006-02-16 02:30:53
  45070. 15193 2005-08-22 16:06:49 1033 40 2005-08-25 17:23:49 1 2006-02-16 02:30:53
  45071. 15194 2005-08-22 16:07:34 1217 332 2005-08-26 19:16:34 1 2006-02-16 02:30:53
  45072. 15195 2005-08-22 16:08:23 1080 508 2005-08-30 17:56:23 2 2006-02-16 02:30:53
  45073. 15196 2005-08-22 16:11:32 1413 181 2005-08-30 22:06:32 1 2006-02-16 02:30:53
  45074. 15197 2005-08-22 16:14:25 2915 159 2005-08-26 16:22:25 2 2006-02-16 02:30:53
  45075. 15198 2005-08-22 16:15:33 1253 396 2005-08-29 20:49:33 1 2006-02-16 02:30:53
  45076. 15199 2005-08-22 16:17:49 18 216 2005-08-25 20:12:49 1 2006-02-16 02:30:53
  45077. 15200 2005-08-22 16:22:53 1000 374 2005-08-24 10:25:53 2 2006-02-16 02:30:53
  45078. 15201 2005-08-22 16:24:42 4456 301 2005-08-31 17:54:42 1 2006-02-16 02:30:53
  45079. 15202 2005-08-22 16:26:53 2119 374 2005-08-23 13:49:53 2 2006-02-16 02:30:53
  45080. 15203 2005-08-22 16:28:00 743 568 2005-08-26 16:55:00 2 2006-02-16 02:30:53
  45081. 15204 2005-08-22 16:30:43 1471 317 2005-08-26 20:37:43 2 2006-02-16 02:30:53
  45082. 15205 2005-08-22 16:32:23 3276 489 2005-08-27 16:08:23 1 2006-02-16 02:30:53
  45083. 15206 2005-08-22 16:33:39 3901 524 2005-08-31 11:41:39 1 2006-02-16 02:30:53
  45084. 15207 2005-08-22 16:35:25 1149 442 2005-08-23 14:06:25 1 2006-02-16 02:30:53
  45085. 15208 2005-08-22 16:35:47 4346 267 2005-08-30 15:16:47 1 2006-02-16 02:30:53
  45086. 15209 2005-08-22 16:37:32 1620 588 2005-08-25 19:04:32 1 2006-02-16 02:30:53
  45087. 15210 2005-08-22 16:37:36 3811 332 2005-08-29 11:54:36 1 2006-02-16 02:30:53
  45088. 15211 2005-08-22 16:40:21 3025 410 2005-08-28 13:33:21 2 2006-02-16 02:30:53
  45089. 15212 2005-08-22 16:44:26 2182 562 2005-08-27 20:26:26 1 2006-02-16 02:30:53
  45090. 15213 2005-08-22 16:49:02 2002 166 2005-08-31 20:22:02 1 2006-02-16 02:30:53
  45091. 15214 2005-08-22 16:53:29 1500 574 2005-08-24 14:17:29 1 2006-02-16 02:30:53
  45092. 15215 2005-08-22 16:55:26 1906 344 2005-08-25 20:19:26 1 2006-02-16 02:30:53
  45093. 15216 2005-08-22 16:57:02 1633 166 2005-08-24 16:11:02 2 2006-02-16 02:30:53
  45094. 15217 2005-08-22 16:58:31 91 90 2005-08-23 22:33:31 1 2006-02-16 02:30:53
  45095. 15218 2005-08-22 16:59:05 10 139 2005-08-30 17:01:05 1 2006-02-16 02:30:53
  45096. 15219 2005-08-22 17:00:31 3313 544 2005-08-31 20:16:31 1 2006-02-16 02:30:53
  45097. 15220 2005-08-22 17:02:23 187 128 2005-08-28 21:02:23 1 2006-02-16 02:30:53
  45098. 15221 2005-08-22 17:12:29 110 253 2005-08-24 20:46:29 2 2006-02-16 02:30:53
  45099. 15222 2005-08-22 17:12:30 1360 390 2005-08-27 15:10:30 2 2006-02-16 02:30:53
  45100. 15223 2005-08-22 17:13:39 2263 541 2005-08-27 11:17:39 2 2006-02-16 02:30:53
  45101. 15224 2005-08-22 17:18:05 33 81 2005-08-29 14:35:05 2 2006-02-16 02:30:53
  45102. 15225 2005-08-22 17:18:32 1646 224 2005-08-24 17:25:32 1 2006-02-16 02:30:53
  45103. 15226 2005-08-22 17:20:17 318 54 2005-08-31 15:36:17 1 2006-02-16 02:30:53
  45104. 15227 2005-08-22 17:22:41 2987 151 2005-08-23 20:59:41 1 2006-02-16 02:30:53
  45105. 15228 2005-08-22 17:27:23 2485 48 2005-08-29 11:38:23 2 2006-02-16 02:30:53
  45106. 15229 2005-08-22 17:30:25 320 63 2005-08-23 14:13:25 1 2006-02-16 02:30:53
  45107. 15230 2005-08-22 17:31:41 2572 466 2005-08-25 21:57:41 2 2006-02-16 02:30:53
  45108. 15231 2005-08-22 17:32:57 2980 187 2005-08-25 13:06:57 1 2006-02-16 02:30:53
  45109. 15232 2005-08-22 17:37:02 61 5 2005-08-25 18:45:02 1 2006-02-16 02:30:53
  45110. 15233 2005-08-22 17:41:53 4405 197 2005-08-24 12:59:53 2 2006-02-16 02:30:53
  45111. 15234 2006-02-14 15:16:03 908 228 \N 2 2006-02-16 02:30:53
  45112. 15235 2005-08-22 17:43:12 2726 416 2005-08-29 23:03:12 2 2006-02-16 02:30:53
  45113. 15236 2005-08-22 17:44:27 4124 557 2005-08-24 23:25:27 1 2006-02-16 02:30:53
  45114. 15237 2005-08-22 17:44:30 4485 148 2005-08-24 12:51:30 1 2006-02-16 02:30:53
  45115. 15238 2005-08-22 17:46:12 403 70 2005-08-29 16:41:12 1 2006-02-16 02:30:53
  45116. 15239 2005-08-22 17:46:17 1809 501 2005-08-26 19:03:17 1 2006-02-16 02:30:53
  45117. 15240 2005-08-22 17:46:41 2014 11 2005-08-23 15:08:41 2 2006-02-16 02:30:53
  45118. 15241 2005-08-22 17:47:40 832 337 2005-08-29 15:28:40 2 2006-02-16 02:30:53
  45119. 15242 2005-08-22 17:48:10 2106 364 2005-08-27 23:32:10 1 2006-02-16 02:30:53
  45120. 15243 2005-08-22 17:48:28 4408 308 2005-08-31 13:22:28 1 2006-02-16 02:30:53
  45121. 15244 2005-08-22 17:48:42 1486 271 2005-08-28 13:17:42 2 2006-02-16 02:30:53
  45122. 15245 2005-08-22 17:49:35 2545 298 2005-08-26 18:25:35 2 2006-02-16 02:30:53
  45123. 15246 2005-08-22 17:50:49 3786 100 2005-08-30 22:21:49 1 2006-02-16 02:30:53
  45124. 15247 2005-08-22 17:52:05 4572 250 2005-08-31 21:37:05 1 2006-02-16 02:30:53
  45125. 15248 2005-08-22 17:53:06 977 20 2005-08-25 18:43:06 2 2006-02-16 02:30:53
  45126. 15249 2005-08-22 17:58:27 121 444 2005-08-30 14:55:27 1 2006-02-16 02:30:53
  45127. 15250 2005-08-22 18:03:11 2176 143 2005-08-27 12:19:11 2 2006-02-16 02:30:53
  45128. 15251 2005-08-22 18:03:57 1994 285 2005-08-23 20:56:57 2 2006-02-16 02:30:53
  45129. 15252 2005-08-22 18:04:22 1821 453 2005-08-25 17:14:22 2 2006-02-16 02:30:53
  45130. 15253 2005-08-22 18:05:21 4143 333 2005-08-23 18:06:21 2 2006-02-16 02:30:53
  45131. 15254 2005-08-22 18:13:07 3762 209 2005-08-24 21:55:07 1 2006-02-16 02:30:53
  45132. 15255 2005-08-22 18:16:50 3415 84 2005-08-28 14:14:50 2 2006-02-16 02:30:53
  45133. 15256 2005-08-22 18:20:07 1873 198 2005-08-28 12:57:07 1 2006-02-16 02:30:53
  45134. 15257 2005-08-22 18:21:04 915 223 2005-08-30 20:13:04 1 2006-02-16 02:30:53
  45135. 15258 2005-08-22 18:22:44 788 293 2005-08-25 16:54:44 1 2006-02-16 02:30:53
  45136. 15259 2005-08-22 18:23:23 3261 488 2005-08-27 13:06:23 1 2006-02-16 02:30:53
  45137. 15260 2005-08-22 18:24:16 3135 274 2005-08-24 21:26:16 1 2006-02-16 02:30:53
  45138. 15261 2005-08-22 18:24:34 2200 140 2005-08-27 19:53:34 1 2006-02-16 02:30:53
  45139. 15262 2005-08-22 18:25:21 2534 298 2005-08-28 22:19:21 1 2006-02-16 02:30:53
  45140. 15263 2005-08-22 18:27:33 184 324 2005-08-30 14:05:33 1 2006-02-16 02:30:53
  45141. 15264 2005-08-22 18:27:38 4459 440 2005-08-24 12:39:38 1 2006-02-16 02:30:53
  45142. 15265 2005-08-22 18:35:59 1763 512 2005-08-28 21:18:59 2 2006-02-16 02:30:53
  45143. 15266 2005-08-22 18:37:24 1870 124 2005-08-23 17:34:24 2 2006-02-16 02:30:53
  45144. 15267 2005-08-22 18:37:48 2966 153 2005-08-24 00:22:48 1 2006-02-16 02:30:53
  45145. 15268 2005-08-22 18:39:11 1245 301 2005-08-26 21:46:11 1 2006-02-16 02:30:53
  45146. 15269 2005-08-22 18:39:44 524 275 2005-08-24 17:29:44 1 2006-02-16 02:30:53
  45147. 15270 2005-08-22 18:48:42 4123 262 2005-08-28 15:38:42 2 2006-02-16 02:30:53
  45148. 15271 2005-08-22 18:48:48 4232 59 2005-08-30 00:45:48 2 2006-02-16 02:30:53
  45149. 15272 2005-08-22 18:49:40 1664 422 2005-08-28 21:22:40 1 2006-02-16 02:30:53
  45150. 15273 2005-08-22 18:53:28 2558 422 2005-08-30 18:58:28 2 2006-02-16 02:30:53
  45151. 15274 2005-08-22 18:55:52 3519 515 2005-08-23 20:02:52 1 2006-02-16 02:30:53
  45152. 15275 2005-08-22 18:57:39 1522 597 2005-08-23 19:00:39 2 2006-02-16 02:30:53
  45153. 15276 2005-08-22 18:59:01 4523 490 2005-08-23 19:49:01 2 2006-02-16 02:30:53
  45154. 15277 2005-08-22 19:02:48 1780 217 2005-08-31 18:53:48 2 2006-02-16 02:30:53
  45155. 15278 2005-08-22 19:06:47 2454 472 2005-08-25 01:00:47 2 2006-02-16 02:30:53
  45156. 15279 2005-08-22 19:08:49 1088 363 2005-08-30 00:38:49 2 2006-02-16 02:30:53
  45157. 15280 2005-08-22 19:09:52 3464 317 2005-08-28 00:39:52 1 2006-02-16 02:30:53
  45158. 15281 2005-08-22 19:10:26 3992 543 2005-08-27 21:55:26 2 2006-02-16 02:30:53
  45159. 15282 2006-02-14 15:16:03 1932 163 \N 1 2006-02-16 02:30:53
  45160. 15283 2005-08-22 19:16:04 1688 219 2005-08-31 21:05:04 1 2006-02-16 02:30:53
  45161. 15284 2005-08-22 19:17:08 2265 393 2005-08-29 13:28:08 2 2006-02-16 02:30:53
  45162. 15285 2005-08-22 19:17:24 481 233 2005-08-25 00:25:24 1 2006-02-16 02:30:53
  45163. 15286 2005-08-22 19:17:56 3731 74 2005-08-29 16:08:56 2 2006-02-16 02:30:53
  45164. 15287 2005-08-22 19:19:37 308 535 2005-08-29 16:05:37 1 2006-02-16 02:30:53
  45165. 15288 2005-08-22 19:23:58 1999 475 2005-08-26 23:28:58 1 2006-02-16 02:30:53
  45166. 15289 2005-08-22 19:27:24 1026 513 2005-08-30 22:21:24 1 2006-02-16 02:30:53
  45167. 15290 2005-08-22 19:28:02 270 404 2005-08-31 20:04:02 2 2006-02-16 02:30:53
  45168. 15291 2005-08-22 19:28:04 1461 494 2005-08-26 15:07:04 1 2006-02-16 02:30:53
  45169. 15292 2005-08-22 19:28:56 3072 337 2005-08-28 22:39:56 2 2006-02-16 02:30:53
  45170. 15293 2006-02-14 15:16:03 1219 263 \N 2 2006-02-16 02:30:53
  45171. 15294 2006-02-14 15:16:03 70 108 \N 1 2006-02-16 02:30:53
  45172. 15295 2005-08-22 19:36:21 2164 186 2005-08-31 00:07:21 2 2006-02-16 02:30:53
  45173. 15296 2005-08-22 19:37:20 2715 55 2005-08-24 15:16:20 1 2006-02-16 02:30:53
  45174. 15297 2006-02-14 15:16:03 3192 327 \N 2 2006-02-16 02:30:53
  45175. 15298 2005-08-22 19:41:37 1446 1 2005-08-28 22:49:37 1 2006-02-16 02:30:53
  45176. 15299 2005-08-22 19:42:57 767 381 2005-08-23 15:29:57 2 2006-02-16 02:30:53
  45177. 15300 2005-08-22 19:44:00 2319 399 2005-08-25 22:49:00 2 2006-02-16 02:30:53
  45178. 15301 2005-08-22 19:44:16 619 454 2005-08-26 22:57:16 2 2006-02-16 02:30:53
  45179. 15302 2005-08-22 19:44:53 188 320 2005-08-24 18:13:53 2 2006-02-16 02:30:53
  45180. 15303 2005-08-22 19:44:59 1672 390 2005-08-30 21:59:59 1 2006-02-16 02:30:53
  45181. 15304 2005-08-22 19:45:57 4332 112 2005-08-28 00:21:57 2 2006-02-16 02:30:53
  45182. 15305 2005-08-22 19:46:05 671 529 2005-08-27 19:11:05 2 2006-02-16 02:30:53
  45183. 15306 2005-08-22 19:46:36 521 340 2005-08-27 14:09:36 1 2006-02-16 02:30:53
  45184. 15307 2005-08-22 19:54:26 4525 598 2005-08-29 01:38:26 2 2006-02-16 02:30:53
  45185. 15308 2005-08-22 19:54:31 987 329 2005-08-26 23:09:31 1 2006-02-16 02:30:53
  45186. 15309 2005-08-22 19:54:52 2743 141 2005-08-24 23:00:52 2 2006-02-16 02:30:53
  45187. 15310 2005-08-22 19:56:41 2546 360 2005-08-24 16:32:41 2 2006-02-16 02:30:53
  45188. 15311 2005-08-22 19:56:52 3612 176 2005-08-31 20:15:52 2 2006-02-16 02:30:53
  45189. 15312 2005-08-22 19:58:15 2509 280 2005-08-25 19:21:15 2 2006-02-16 02:30:53
  45190. 15313 2005-08-22 19:59:42 2587 333 2005-08-24 15:03:42 2 2006-02-16 02:30:53
  45191. 15314 2006-02-14 15:16:03 2754 412 \N 1 2006-02-16 02:30:53
  45192. 15315 2005-08-22 20:03:46 312 1 2005-08-30 01:51:46 2 2006-02-16 02:30:53
  45193. 15316 2005-08-22 20:07:03 1830 422 2005-08-27 18:45:03 1 2006-02-16 02:30:53
  45194. 15317 2005-08-22 20:14:13 2325 512 2005-08-29 18:32:13 1 2006-02-16 02:30:53
  45195. 15318 2005-08-22 20:15:16 1738 60 2005-08-25 14:17:16 1 2006-02-16 02:30:53
  45196. 15319 2005-08-22 20:17:17 3041 188 2005-08-25 01:06:17 2 2006-02-16 02:30:53
  45197. 15320 2005-08-22 20:17:49 648 407 2005-08-28 17:31:49 1 2006-02-16 02:30:53
  45198. 15321 2005-08-22 20:20:04 4152 384 2005-08-24 23:26:04 2 2006-02-16 02:30:53
  45199. 15322 2005-08-22 20:20:30 3553 263 2005-08-25 01:26:30 2 2006-02-16 02:30:53
  45200. 15323 2005-08-22 20:22:40 1153 178 2005-08-26 00:35:40 1 2006-02-16 02:30:53
  45201. 15324 2005-08-22 20:23:13 161 93 2005-08-29 18:23:13 1 2006-02-16 02:30:53
  45202. 15325 2005-08-22 20:27:38 3549 74 2005-08-23 15:24:38 1 2006-02-16 02:30:53
  45203. 15326 2006-02-14 15:16:03 3320 58 \N 1 2006-02-16 02:30:53
  45204. 15327 2005-08-22 20:31:24 1018 450 2005-08-30 23:52:24 1 2006-02-16 02:30:53
  45205. 15328 2005-08-22 20:31:38 4546 274 2005-08-29 20:17:38 1 2006-02-16 02:30:53
  45206. 15329 2005-08-22 20:32:39 1900 521 2005-08-23 17:15:39 1 2006-02-16 02:30:53
  45207. 15330 2005-08-22 20:35:30 689 427 2005-08-30 21:54:30 1 2006-02-16 02:30:53
  45208. 15331 2005-08-22 20:37:57 146 147 2005-08-25 21:56:57 1 2006-02-16 02:30:53
  45209. 15332 2005-08-22 20:41:53 3368 162 2005-08-24 01:45:53 1 2006-02-16 02:30:53
  45210. 15333 2005-08-22 20:44:06 1839 142 2005-08-29 22:34:06 2 2006-02-16 02:30:53
  45211. 15334 2005-08-22 20:44:35 3882 407 2005-08-29 23:03:35 2 2006-02-16 02:30:53
  45212. 15335 2005-08-22 20:44:55 1593 363 2005-08-28 21:43:55 1 2006-02-16 02:30:53
  45213. 15336 2005-08-22 20:47:48 490 461 2005-08-31 18:17:48 2 2006-02-16 02:30:53
  45214. 15337 2005-08-22 20:49:51 280 237 2005-08-26 23:27:51 1 2006-02-16 02:30:53
  45215. 15338 2005-08-22 20:51:24 502 13 2005-08-24 23:41:24 2 2006-02-16 02:30:53
  45216. 15339 2005-08-22 20:52:12 1660 331 2005-08-26 00:36:12 2 2006-02-16 02:30:53
  45217. 15340 2005-08-22 20:55:56 3653 313 2005-08-27 18:52:56 1 2006-02-16 02:30:53
  45218. 15341 2005-08-22 20:56:31 3359 91 2005-08-30 17:25:31 1 2006-02-16 02:30:53
  45219. 15342 2005-08-22 20:56:41 3287 459 2005-08-26 22:51:41 2 2006-02-16 02:30:53
  45220. 15343 2005-08-22 21:01:25 2589 538 2005-08-28 16:15:25 1 2006-02-16 02:30:53
  45221. 15344 2005-08-22 21:01:48 3560 193 2005-08-27 15:47:48 1 2006-02-16 02:30:53
  45222. 15345 2005-08-22 21:05:50 3481 277 2005-08-26 20:30:50 1 2006-02-16 02:30:53
  45223. 15346 2005-08-22 21:06:00 3525 266 2005-08-28 22:08:00 1 2006-02-16 02:30:53
  45224. 15347 2005-08-22 21:12:19 3764 519 2005-08-24 20:12:19 1 2006-02-16 02:30:53
  45225. 15348 2005-08-22 21:13:46 3846 587 2005-08-24 17:06:46 1 2006-02-16 02:30:53
  45226. 15349 2005-08-22 21:13:51 4055 587 2005-08-23 20:55:51 1 2006-02-16 02:30:53
  45227. 15350 2005-08-22 21:15:29 1170 488 2005-08-24 02:56:29 1 2006-02-16 02:30:53
  45228. 15351 2005-08-22 21:15:46 3260 154 2005-08-23 17:38:46 1 2006-02-16 02:30:53
  45229. 15352 2005-08-22 21:16:54 16 560 2005-08-31 00:38:54 2 2006-02-16 02:30:53
  45230. 15353 2005-08-22 21:18:08 3470 368 2005-08-25 20:29:08 2 2006-02-16 02:30:53
  45231. 15354 2005-08-22 21:18:59 4212 412 2005-08-27 20:12:59 2 2006-02-16 02:30:53
  45232. 15355 2005-08-22 21:19:24 3477 493 2005-08-28 20:36:24 2 2006-02-16 02:30:53
  45233. 15356 2005-08-22 21:24:19 4507 539 2005-08-25 22:32:19 2 2006-02-16 02:30:53
  45234. 15357 2005-08-22 21:28:59 727 24 2005-08-25 17:15:59 1 2006-02-16 02:30:53
  45235. 15358 2005-08-22 21:29:14 822 448 2005-08-31 00:10:14 2 2006-02-16 02:30:53
  45236. 15359 2005-08-22 21:34:00 4505 77 2005-08-29 18:59:00 1 2006-02-16 02:30:53
  45237. 15360 2005-08-22 21:36:51 1950 531 2005-08-24 16:46:51 1 2006-02-16 02:30:53
  45238. 15361 2005-08-22 21:39:45 1407 380 2005-08-23 17:32:45 2 2006-02-16 02:30:53
  45239. 15362 2005-08-22 21:40:20 1023 497 2005-08-29 15:55:20 1 2006-02-16 02:30:53
  45240. 15363 2005-08-22 21:41:40 2326 480 2005-08-23 21:40:40 1 2006-02-16 02:30:53
  45241. 15364 2005-08-22 21:41:41 4184 204 2005-08-28 00:49:41 1 2006-02-16 02:30:53
  45242. 15365 2005-08-22 21:42:17 3382 327 2005-09-01 03:14:17 2 2006-02-16 02:30:53
  45243. 15366 2005-08-22 21:45:57 1453 374 2005-08-30 16:35:57 1 2006-02-16 02:30:53
  45244. 15367 2005-08-22 21:47:53 160 355 2005-08-27 17:54:53 2 2006-02-16 02:30:53
  45245. 15368 2005-08-22 21:57:15 1130 370 2005-08-29 16:28:15 1 2006-02-16 02:30:53
  45246. 15369 2005-08-22 21:58:06 881 121 2005-08-26 00:27:06 2 2006-02-16 02:30:53
  45247. 15370 2005-08-22 21:59:29 67 10 2005-08-27 16:32:29 1 2006-02-16 02:30:53
  45248. 15371 2006-02-14 15:16:03 3672 94 \N 2 2006-02-16 02:30:53
  45249. 15372 2005-08-22 21:59:51 3876 273 2005-08-23 17:01:51 1 2006-02-16 02:30:53
  45250. 15373 2005-08-22 22:08:11 4439 14 2005-08-24 01:05:11 2 2006-02-16 02:30:53
  45251. 15374 2005-08-22 22:09:09 4275 8 2005-08-31 01:10:09 1 2006-02-16 02:30:53
  45252. 15375 2005-08-22 22:12:02 3864 191 2005-08-24 00:50:02 2 2006-02-16 02:30:53
  45253. 15376 2005-08-22 22:21:35 2963 390 2005-08-28 20:56:35 1 2006-02-16 02:30:53
  45254. 15377 2005-08-22 22:22:33 3405 551 2005-08-29 18:41:33 1 2006-02-16 02:30:53
  45255. 15378 2005-08-22 22:25:17 1483 340 2005-08-30 17:04:17 1 2006-02-16 02:30:53
  45256. 15379 2005-08-22 22:26:13 1899 148 2005-08-31 18:19:13 1 2006-02-16 02:30:53
  45257. 15380 2005-08-22 22:28:15 3642 423 2005-08-28 23:21:15 1 2006-02-16 02:30:53
  45258. 15381 2005-08-22 22:28:36 845 110 2005-08-24 19:26:36 2 2006-02-16 02:30:53
  45259. 15382 2005-08-22 22:30:50 333 376 2005-08-24 04:07:50 2 2006-02-16 02:30:53
  45260. 15383 2005-08-22 22:31:20 686 405 2005-08-28 17:43:20 1 2006-02-16 02:30:53
  45261. 15384 2005-08-22 22:34:44 3208 26 2005-08-23 23:25:44 2 2006-02-16 02:30:53
  45262. 15385 2005-08-22 22:37:34 140 434 2005-08-26 00:36:34 2 2006-02-16 02:30:53
  45263. 15386 2005-08-22 22:41:14 3056 327 2005-08-29 22:29:14 1 2006-02-16 02:30:53
  45264. 15387 2005-08-22 22:49:13 3879 323 2005-08-29 01:49:13 2 2006-02-16 02:30:53
  45265. 15388 2005-08-22 22:49:23 3995 50 2005-09-01 03:50:23 2 2006-02-16 02:30:53
  45266. 15389 2005-08-22 22:51:13 2077 231 2005-08-28 23:46:13 1 2006-02-16 02:30:53
  45267. 15390 2005-08-22 22:57:25 462 551 2005-08-31 18:06:25 1 2006-02-16 02:30:53
  45268. 15391 2005-08-22 23:01:45 3918 482 2005-08-29 02:59:45 2 2006-02-16 02:30:53
  45269. 15392 2005-08-22 23:02:15 538 410 2005-09-01 01:14:15 2 2006-02-16 02:30:53
  45270. 15393 2005-08-22 23:04:09 2924 443 2005-08-27 02:23:09 2 2006-02-16 02:30:53
  45271. 15394 2005-08-22 23:04:21 3455 507 2005-08-25 20:53:21 2 2006-02-16 02:30:53
  45272. 15395 2005-08-22 23:06:25 2880 526 2005-08-30 19:18:25 1 2006-02-16 02:30:53
  45273. 15396 2005-08-22 23:07:57 4050 319 2005-08-28 19:39:57 2 2006-02-16 02:30:53
  45274. 15397 2005-08-22 23:08:46 1482 261 2005-08-25 20:58:46 1 2006-02-16 02:30:53
  45275. 15398 2005-08-22 23:10:49 4451 109 2005-08-28 00:49:49 2 2006-02-16 02:30:53
  45276. 15399 2005-08-22 23:11:59 3858 379 2005-08-26 22:16:59 2 2006-02-16 02:30:53
  45277. 15400 2005-08-22 23:13:03 2664 473 2005-08-28 18:34:03 1 2006-02-16 02:30:53
  45278. 15401 2005-08-22 23:13:10 1721 103 2005-09-01 03:44:10 1 2006-02-16 02:30:53
  45279. 15402 2005-08-22 23:17:41 1575 293 2005-08-30 20:07:41 2 2006-02-16 02:30:53
  45280. 15403 2005-08-22 23:18:10 4315 581 2005-08-23 18:08:10 2 2006-02-16 02:30:53
  45281. 15404 2005-08-22 23:19:44 3557 211 2005-08-30 19:58:44 2 2006-02-16 02:30:53
  45282. 15405 2005-08-22 23:20:41 3263 596 2005-08-25 23:53:41 1 2006-02-16 02:30:53
  45283. 15406 2005-08-22 23:21:22 400 227 2005-08-28 22:21:22 1 2006-02-16 02:30:53
  45284. 15407 2006-02-14 15:16:03 3330 42 \N 2 2006-02-16 02:30:53
  45285. 15408 2005-08-22 23:26:32 165 156 2005-08-30 20:22:32 1 2006-02-16 02:30:53
  45286. 15409 2005-08-22 23:26:32 560 188 2005-08-24 22:44:32 1 2006-02-16 02:30:53
  45287. 15410 2005-08-22 23:27:43 2052 403 2005-08-29 05:12:43 2 2006-02-16 02:30:53
  45288. 15411 2005-08-22 23:35:41 4423 461 2005-08-26 00:51:41 1 2006-02-16 02:30:53
  45289. 15412 2005-08-22 23:37:11 1267 199 2005-08-28 23:26:11 2 2006-02-16 02:30:53
  45290. 15413 2005-08-22 23:38:01 2494 476 2005-08-23 19:27:01 2 2006-02-16 02:30:53
  45291. 15414 2005-08-22 23:43:54 718 532 2005-08-30 18:26:54 1 2006-02-16 02:30:53
  45292. 15415 2005-08-22 23:48:56 4176 204 2005-09-01 02:05:56 1 2006-02-16 02:30:53
  45293. 15416 2005-08-22 23:51:23 1167 383 2005-08-29 20:03:23 1 2006-02-16 02:30:53
  45294. 15417 2005-08-22 23:54:04 1826 305 2005-08-26 22:25:04 1 2006-02-16 02:30:53
  45295. 15418 2005-08-22 23:54:14 808 205 2005-08-28 04:23:14 2 2006-02-16 02:30:53
  45296. 15419 2005-08-22 23:54:36 1120 450 2005-08-25 00:52:36 1 2006-02-16 02:30:53
  45297. 15420 2005-08-22 23:55:51 1396 161 2005-08-31 20:09:51 2 2006-02-16 02:30:53
  45298. 15421 2005-08-22 23:56:37 3 541 2005-08-25 18:58:37 2 2006-02-16 02:30:53
  45299. 15422 2005-08-22 23:58:09 2601 309 2005-08-30 19:03:09 2 2006-02-16 02:30:53
  45300. 15423 2006-02-14 15:16:03 1786 596 \N 1 2006-02-16 02:30:53
  45301. 15424 2005-08-23 00:03:01 3452 138 2005-08-27 23:27:01 2 2006-02-16 02:30:53
  45302. 15425 2005-08-23 00:05:57 551 259 2005-09-01 05:08:57 1 2006-02-16 02:30:53
  45303. 15426 2005-08-23 00:07:19 3280 347 2005-08-26 23:19:19 1 2006-02-16 02:30:53
  45304. 15427 2005-08-23 00:07:53 2775 448 2005-09-01 02:55:53 2 2006-02-16 02:30:53
  45305. 15428 2005-08-23 00:11:52 4379 402 2005-08-24 02:35:52 1 2006-02-16 02:30:53
  45306. 15429 2005-08-23 00:20:31 740 241 2005-08-23 20:22:31 1 2006-02-16 02:30:53
  45307. 15430 2006-02-14 15:16:03 4353 282 \N 1 2006-02-16 02:30:53
  45308. 15431 2005-08-23 00:26:47 3251 550 2005-08-31 23:26:47 2 2006-02-16 02:30:53
  45309. 15432 2005-08-23 00:26:52 1896 117 2005-08-27 06:11:52 1 2006-02-16 02:30:53
  45310. 15433 2005-08-23 00:27:18 155 198 2005-08-26 21:36:18 1 2006-02-16 02:30:53
  45311. 15434 2005-08-23 00:28:16 4378 518 2005-08-26 04:27:16 2 2006-02-16 02:30:53
  45312. 15435 2005-08-23 00:28:19 2103 468 2005-08-26 00:44:19 2 2006-02-16 02:30:53
  45313. 15436 2005-08-23 00:30:26 1527 505 2005-08-28 06:29:26 1 2006-02-16 02:30:53
  45314. 15437 2005-08-23 00:31:09 4236 368 2005-08-30 06:17:09 2 2006-02-16 02:30:53
  45315. 15438 2005-08-23 00:31:57 2030 46 2005-08-26 20:02:57 1 2006-02-16 02:30:53
  45316. 15439 2005-08-23 00:34:28 3848 136 2005-08-27 01:07:28 1 2006-02-16 02:30:53
  45317. 15440 2005-08-23 00:37:21 2254 559 2005-08-24 23:24:21 1 2006-02-16 02:30:53
  45318. 15441 2006-02-14 15:16:03 258 422 \N 2 2006-02-16 02:30:53
  45319. 15442 2005-08-23 00:42:49 1452 42 2005-08-27 00:35:49 1 2006-02-16 02:30:53
  45320. 15443 2005-08-23 00:44:15 742 598 2005-09-01 05:33:15 2 2006-02-16 02:30:53
  45321. 15444 2005-08-23 00:46:52 959 153 2005-08-29 20:37:52 2 2006-02-16 02:30:53
  45322. 15445 2005-08-23 00:48:29 196 28 2005-08-28 00:33:29 1 2006-02-16 02:30:53
  45323. 15446 2005-08-23 00:49:24 503 379 2005-08-26 02:09:24 2 2006-02-16 02:30:53
  45324. 15447 2005-08-23 00:53:57 4090 331 2005-08-29 06:19:57 2 2006-02-16 02:30:53
  45325. 15448 2005-08-23 00:55:24 2903 490 2005-08-25 02:20:24 1 2006-02-16 02:30:53
  45326. 15449 2005-08-23 00:55:43 2856 461 2005-08-28 03:41:43 1 2006-02-16 02:30:53
  45327. 15450 2005-08-23 00:56:01 1102 322 2005-08-24 01:00:01 2 2006-02-16 02:30:53
  45328. 15451 2005-08-23 00:56:27 231 514 2005-08-24 00:15:27 2 2006-02-16 02:30:53
  45329. 15452 2005-08-23 00:57:12 717 115 2005-08-28 00:19:12 1 2006-02-16 02:30:53
  45330. 15453 2005-08-23 01:01:01 2 359 2005-08-30 20:08:01 1 2006-02-16 02:30:53
  45331. 15454 2006-02-14 15:16:03 2946 142 \N 2 2006-02-16 02:30:53
  45332. 15455 2005-08-23 01:05:00 3991 238 2005-08-26 22:56:00 1 2006-02-16 02:30:53
  45333. 15456 2005-08-23 01:07:01 2451 262 2005-08-24 23:28:01 2 2006-02-16 02:30:53
  45334. 15457 2005-08-23 01:07:37 4539 306 2005-08-26 19:46:37 1 2006-02-16 02:30:53
  45335. 15458 2006-02-14 15:16:03 25 590 \N 2 2006-02-16 02:30:53
  45336. 15459 2005-08-23 01:09:48 2058 346 2005-08-24 04:52:48 1 2006-02-16 02:30:53
  45337. 15460 2005-08-23 01:10:42 2907 20 2005-08-28 20:49:42 2 2006-02-16 02:30:53
  45338. 15461 2005-08-23 01:13:52 4542 103 2005-08-30 00:44:52 1 2006-02-16 02:30:53
  45339. 15462 2005-08-23 01:14:01 3267 389 2005-08-29 19:52:01 1 2006-02-16 02:30:53
  45340. 15463 2005-08-23 01:15:07 863 127 2005-08-29 06:50:07 1 2006-02-16 02:30:53
  45341. 15464 2005-08-23 01:15:18 3235 62 2005-08-29 02:58:18 2 2006-02-16 02:30:53
  45342. 15465 2005-08-23 01:16:33 362 520 2005-08-28 20:08:33 2 2006-02-16 02:30:53
  45343. 15466 2005-08-23 01:16:55 571 418 2005-08-29 22:57:55 1 2006-02-16 02:30:53
  45344. 15467 2005-08-23 01:22:12 3658 103 2005-08-29 23:42:12 2 2006-02-16 02:30:53
  45345. 15468 2005-08-23 01:25:30 2440 399 2005-08-28 01:40:30 2 2006-02-16 02:30:53
  45346. 15469 2005-08-23 01:29:59 1939 597 2005-08-27 04:02:59 1 2006-02-16 02:30:53
  45347. 15470 2005-08-23 01:35:12 3009 416 2005-09-01 05:33:12 1 2006-02-16 02:30:53
  45348. 15471 2005-08-23 01:38:48 2591 139 2005-08-31 19:47:48 1 2006-02-16 02:30:53
  45349. 15472 2005-08-23 01:39:05 4293 226 2005-08-25 04:43:05 1 2006-02-16 02:30:53
  45350. 15473 2005-08-23 01:39:10 356 259 2005-08-25 03:48:10 1 2006-02-16 02:30:53
  45351. 15474 2005-08-23 01:39:10 3015 188 2005-08-23 21:46:10 2 2006-02-16 02:30:53
  45352. 15475 2005-08-23 01:44:43 4503 562 2005-08-23 23:53:43 2 2006-02-16 02:30:53
  45353. 15476 2005-08-23 01:45:07 2478 433 2005-08-26 21:07:07 2 2006-02-16 02:30:53
  45354. 15477 2005-08-23 01:46:35 2406 142 2005-08-28 22:12:35 1 2006-02-16 02:30:53
  45355. 15478 2005-08-23 01:50:31 4563 167 2005-08-27 21:40:31 2 2006-02-16 02:30:53
  45356. 15479 2005-08-23 01:50:53 4182 149 2005-08-29 00:53:53 1 2006-02-16 02:30:53
  45357. 15480 2005-08-23 01:57:20 3298 577 2005-08-26 04:43:20 2 2006-02-16 02:30:53
  45358. 15481 2005-08-23 01:59:14 3262 414 2005-08-27 04:38:14 1 2006-02-16 02:30:53
  45359. 15482 2005-08-23 02:01:20 3923 181 2005-08-24 03:25:20 2 2006-02-16 02:30:53
  45360. 15483 2005-08-23 02:02:53 2970 173 2005-08-26 04:13:53 1 2006-02-16 02:30:53
  45361. 15484 2005-08-23 02:04:49 642 342 2005-08-24 05:46:49 1 2006-02-16 02:30:53
  45362. 15485 2005-08-23 02:04:57 281 114 2005-08-28 07:05:57 2 2006-02-16 02:30:53
  45363. 15486 2005-08-23 02:05:20 1666 502 2005-08-29 07:52:20 2 2006-02-16 02:30:53
  45364. 15487 2005-08-23 02:05:51 2636 469 2005-08-25 04:45:51 1 2006-02-16 02:30:53
  45365. 15488 2005-08-23 02:06:01 4535 385 2005-08-29 21:35:01 2 2006-02-16 02:30:53
  45366. 15489 2005-08-23 02:06:41 764 285 2005-08-25 06:50:41 1 2006-02-16 02:30:53
  45367. 15490 2005-08-23 02:08:18 3922 493 2005-08-30 06:15:18 1 2006-02-16 02:30:53
  45368. 15491 2005-08-23 02:08:40 2059 28 2005-08-23 20:23:40 2 2006-02-16 02:30:53
  45369. 15492 2005-08-23 02:13:46 1298 520 2005-08-26 21:53:46 2 2006-02-16 02:30:53
  45370. 15493 2005-08-23 02:20:53 3521 308 2005-08-25 23:02:53 1 2006-02-16 02:30:53
  45371. 15494 2005-08-23 02:25:09 2968 455 2005-08-27 00:18:09 1 2006-02-16 02:30:53
  45372. 15495 2005-08-23 02:26:10 4310 193 2005-08-30 01:07:10 2 2006-02-16 02:30:53
  45373. 15496 2005-08-23 02:30:23 1863 275 2005-08-31 03:31:23 2 2006-02-16 02:30:53
  45374. 15497 2006-02-14 15:16:03 363 107 \N 1 2006-02-16 02:30:53
  45375. 15498 2005-08-23 02:33:27 1583 83 2005-08-23 22:30:27 1 2006-02-16 02:30:53
  45376. 15499 2005-08-23 02:37:19 630 488 2005-08-23 20:57:19 1 2006-02-16 02:30:53
  45377. 15500 2005-08-23 02:39:37 886 74 2005-08-27 06:42:37 1 2006-02-16 02:30:53
  45378. 15501 2005-08-23 02:39:56 4468 138 2005-08-25 04:39:56 1 2006-02-16 02:30:53
  45379. 15502 2005-08-23 02:40:04 3219 433 2005-08-31 00:36:04 2 2006-02-16 02:30:53
  45380. 15503 2005-08-23 02:44:49 4519 582 2005-08-27 06:33:49 2 2006-02-16 02:30:53
  45381. 15504 2005-08-23 02:45:21 1967 315 2005-09-01 03:24:21 2 2006-02-16 02:30:53
  45382. 15505 2005-08-23 02:46:13 1144 375 2005-08-26 23:34:13 2 2006-02-16 02:30:53
  45383. 15506 2005-08-23 02:48:24 1914 553 2005-08-28 04:10:24 1 2006-02-16 02:30:53
  45384. 15507 2005-08-23 02:48:26 3130 563 2005-08-27 01:32:26 1 2006-02-16 02:30:53
  45385. 15508 2005-08-23 02:49:04 4035 293 2005-08-29 00:58:04 1 2006-02-16 02:30:53
  45386. 15509 2005-08-23 02:51:24 1291 6 2005-08-31 06:21:24 2 2006-02-16 02:30:53
  45387. 15510 2005-08-23 02:51:27 3239 209 2005-09-01 02:44:27 2 2006-02-16 02:30:53
  45388. 15511 2005-08-23 02:55:42 3327 303 2005-08-31 03:14:42 2 2006-02-16 02:30:53
  45389. 15512 2005-08-23 02:57:30 4336 25 2005-08-25 01:47:30 2 2006-02-16 02:30:53
  45390. 15513 2005-08-23 03:01:56 3779 147 2005-08-24 23:46:56 2 2006-02-16 02:30:53
  45391. 15514 2005-08-23 03:03:40 2824 366 2005-08-24 01:06:40 1 2006-02-16 02:30:53
  45392. 15515 2005-08-23 03:03:53 3940 307 2005-08-25 08:27:53 2 2006-02-16 02:30:53
  45393. 15516 2005-08-23 03:12:54 219 82 2005-08-30 04:02:54 1 2006-02-16 02:30:53
  45394. 15517 2005-08-23 03:13:01 2221 187 2005-08-25 21:14:01 2 2006-02-16 02:30:53
  45395. 15518 2005-08-23 03:19:34 3522 410 2005-08-24 02:55:34 1 2006-02-16 02:30:53
  45396. 15519 2005-08-23 03:23:32 542 443 2005-08-25 03:48:32 1 2006-02-16 02:30:53
  45397. 15520 2005-08-23 03:30:45 1792 163 2005-09-01 00:20:45 1 2006-02-16 02:30:53
  45398. 15521 2005-08-23 03:30:51 134 331 2005-08-28 22:09:51 1 2006-02-16 02:30:53
  45399. 15522 2005-08-23 03:32:31 2396 468 2005-08-30 02:17:31 2 2006-02-16 02:30:53
  45400. 15523 2005-08-23 03:32:36 2570 432 2005-08-26 22:08:36 2 2006-02-16 02:30:53
  45401. 15524 2005-08-23 03:36:26 2886 68 2005-08-26 06:28:26 2 2006-02-16 02:30:53
  45402. 15525 2005-08-23 03:43:32 3509 123 2005-08-25 07:31:32 2 2006-02-16 02:30:53
  45403. 15526 2005-08-23 03:44:30 2892 516 2005-08-30 08:19:30 1 2006-02-16 02:30:53
  45404. 15527 2005-08-23 03:44:51 88 393 2005-08-25 03:09:51 1 2006-02-16 02:30:53
  45405. 15528 2005-08-23 03:45:40 3033 114 2005-08-25 01:16:40 1 2006-02-16 02:30:53
  45406. 15529 2005-08-23 03:46:47 4015 19 2005-08-24 00:59:47 1 2006-02-16 02:30:53
  45407. 15530 2005-08-23 03:50:48 154 167 2005-08-28 22:17:48 2 2006-02-16 02:30:53
  45408. 15531 2005-08-23 03:52:36 2410 355 2005-08-25 23:21:36 1 2006-02-16 02:30:53
  45409. 15532 2006-02-14 15:16:03 1061 23 \N 1 2006-02-16 02:30:53
  45410. 15533 2005-08-23 03:54:39 1895 400 2005-08-26 08:27:39 2 2006-02-16 02:30:53
  45411. 15534 2005-08-23 03:55:54 544 169 2005-08-24 03:54:54 1 2006-02-16 02:30:53
  45412. 15535 2005-08-23 03:58:02 2371 346 2005-08-25 05:06:02 2 2006-02-16 02:30:53
  45413. 15536 2005-08-23 03:58:28 4004 98 2005-08-31 03:28:28 2 2006-02-16 02:30:53
  45414. 15537 2005-08-23 04:00:30 2958 137 2005-08-24 01:45:30 2 2006-02-16 02:30:53
  45415. 15538 2005-08-23 04:07:37 4226 211 2005-08-28 07:37:37 1 2006-02-16 02:30:53
  45416. 15539 2005-08-23 04:09:03 2853 582 2005-08-26 04:01:03 1 2006-02-16 02:30:53
  45417. 15540 2005-08-23 04:12:52 1696 197 2005-08-31 04:25:52 1 2006-02-16 02:30:53
  45418. 15541 2005-08-23 04:13:53 2762 148 2005-08-29 05:51:53 1 2006-02-16 02:30:53
  45419. 15542 2006-02-14 15:16:03 21 111 \N 1 2006-02-16 02:30:53
  45420. 15543 2005-08-23 04:15:41 3836 282 2005-09-01 05:09:41 2 2006-02-16 02:30:53
  45421. 15544 2005-08-23 04:17:56 1918 30 2005-09-01 00:43:56 2 2006-02-16 02:30:53
  45422. 15545 2005-08-23 04:20:16 843 513 2005-08-29 08:22:16 1 2006-02-16 02:30:53
  45423. 15546 2005-08-23 04:20:38 2087 223 2005-09-01 09:57:38 2 2006-02-16 02:30:53
  45424. 15547 2005-08-23 04:25:50 1488 69 2005-08-26 00:57:50 1 2006-02-16 02:30:53
  45425. 15548 2005-08-23 04:26:20 2350 334 2005-08-28 01:27:20 1 2006-02-16 02:30:53
  45426. 15549 2005-08-23 04:27:06 369 170 2005-09-01 06:07:06 1 2006-02-16 02:30:53
  45427. 15550 2005-08-23 04:27:54 1375 465 2005-08-29 01:29:54 1 2006-02-16 02:30:53
  45428. 15551 2005-08-23 04:28:25 3570 345 2005-08-26 07:19:25 1 2006-02-16 02:30:53
  45429. 15552 2005-08-23 04:33:23 4347 527 2005-09-01 10:25:23 2 2006-02-16 02:30:53
  45430. 15553 2005-08-23 04:33:39 1659 232 2005-08-25 07:53:39 2 2006-02-16 02:30:53
  45431. 15554 2005-08-23 04:48:12 198 280 2005-08-29 05:11:12 1 2006-02-16 02:30:53
  45432. 15555 2005-08-23 04:51:52 1869 347 2005-08-24 01:01:52 1 2006-02-16 02:30:53
  45433. 15556 2005-08-23 04:52:16 3683 108 2005-09-01 02:05:16 2 2006-02-16 02:30:53
  45434. 15557 2005-08-23 04:52:17 3641 444 2005-08-30 02:15:17 2 2006-02-16 02:30:53
  45435. 15558 2005-08-23 04:52:22 638 474 2005-09-01 02:26:22 1 2006-02-16 02:30:53
  45436. 15559 2005-08-23 04:55:05 1773 517 2005-08-30 09:01:05 2 2006-02-16 02:30:53
  45437. 15560 2005-08-23 05:01:13 3616 107 2005-09-01 05:02:13 1 2006-02-16 02:30:53
  45438. 15561 2005-08-23 05:02:31 68 469 2005-09-01 02:51:31 1 2006-02-16 02:30:53
  45439. 15562 2005-08-23 05:04:33 4238 149 2005-08-27 09:58:33 1 2006-02-16 02:30:53
  45440. 15563 2005-08-23 05:08:58 170 372 2005-08-24 04:24:58 1 2006-02-16 02:30:53
  45441. 15564 2005-08-23 05:10:42 1268 353 2005-08-30 03:17:42 1 2006-02-16 02:30:53
  45442. 15565 2005-08-23 05:13:09 71 546 2005-08-30 08:58:09 2 2006-02-16 02:30:53
  45443. 15566 2005-08-23 05:17:23 4344 76 2005-09-01 08:09:23 2 2006-02-16 02:30:53
  45444. 15567 2005-08-23 05:20:36 2506 54 2005-08-24 10:09:36 2 2006-02-16 02:30:53
  45445. 15568 2005-08-23 05:24:09 988 556 2005-08-27 08:57:09 2 2006-02-16 02:30:53
  45446. 15569 2005-08-23 05:24:29 1071 313 2005-08-30 08:23:29 2 2006-02-16 02:30:53
  45447. 15570 2005-08-23 05:24:55 4014 557 2005-08-31 07:06:55 2 2006-02-16 02:30:53
  45448. 15571 2005-08-23 05:26:30 716 57 2005-08-29 00:54:30 2 2006-02-16 02:30:53
  45449. 15572 2005-08-23 05:28:01 2816 506 2005-08-27 00:14:01 2 2006-02-16 02:30:53
  45450. 15573 2005-08-23 05:28:36 3133 561 2005-08-27 05:37:36 2 2006-02-16 02:30:53
  45451. 15574 2005-08-23 05:29:32 3253 130 2005-09-01 01:25:32 2 2006-02-16 02:30:53
  45452. 15575 2005-08-23 05:30:19 3916 218 2005-08-27 05:19:19 2 2006-02-16 02:30:53
  45453. 15576 2005-08-23 05:32:03 3257 595 2005-08-26 02:31:03 1 2006-02-16 02:30:53
  45454. 15577 2006-02-14 15:16:03 539 29 \N 2 2006-02-16 02:30:53
  45455. 15578 2005-08-23 05:37:13 2829 302 2005-08-27 01:11:13 1 2006-02-16 02:30:53
  45456. 15579 2005-08-23 05:38:41 3986 480 2005-08-29 09:18:41 1 2006-02-16 02:30:53
  45457. 15580 2005-08-23 05:39:06 754 279 2005-09-01 01:14:06 2 2006-02-16 02:30:53
  45458. 15581 2005-08-23 05:42:13 4010 462 2005-08-28 00:03:13 1 2006-02-16 02:30:53
  45459. 15582 2005-08-23 05:45:44 4264 297 2005-08-25 07:54:44 2 2006-02-16 02:30:53
  45460. 15583 2005-08-23 05:47:55 4299 215 2005-08-26 01:46:55 1 2006-02-16 02:30:53
  45461. 15584 2005-08-23 05:49:21 3526 500 2005-08-27 04:49:21 1 2006-02-16 02:30:53
  45462. 15585 2005-08-23 05:55:22 1177 545 2005-08-24 11:45:22 2 2006-02-16 02:30:53
  45463. 15586 2005-08-23 05:57:04 3232 148 2005-08-31 01:59:04 1 2006-02-16 02:30:53
  45464. 15587 2005-08-23 06:00:28 2510 499 2005-08-29 10:15:28 1 2006-02-16 02:30:53
  45465. 15588 2005-08-23 06:02:35 1810 503 2005-08-30 04:01:35 2 2006-02-16 02:30:53
  45466. 15589 2005-08-23 06:03:31 2379 22 2005-08-30 07:44:31 2 2006-02-16 02:30:53
  45467. 15590 2005-08-23 06:09:44 4048 599 2005-09-01 06:53:44 2 2006-02-16 02:30:53
  45468. 15591 2005-08-23 06:11:52 64 62 2005-08-25 05:34:52 1 2006-02-16 02:30:53
  45469. 15593 2005-08-23 06:15:09 3734 153 2005-08-27 07:47:09 2 2006-02-16 02:30:53
  45470. 15594 2005-08-23 06:18:43 4227 567 2005-09-01 09:09:43 2 2006-02-16 02:30:53
  45471. 15595 2005-08-23 06:19:12 4046 264 2005-08-31 04:52:12 1 2006-02-16 02:30:53
  45472. 15596 2005-08-23 06:19:51 3834 186 2005-08-25 03:32:51 1 2006-02-16 02:30:53
  45473. 15597 2005-08-23 06:21:20 3795 420 2005-08-28 02:47:20 2 2006-02-16 02:30:53
  45474. 15598 2005-08-23 06:23:26 2794 66 2005-09-01 05:43:26 1 2006-02-16 02:30:53
  45475. 15599 2005-08-23 06:25:07 4560 103 2005-08-29 00:48:07 1 2006-02-16 02:30:53
  45476. 15600 2005-08-23 06:31:24 2260 113 2005-08-28 06:53:24 1 2006-02-16 02:30:53
  45477. 15601 2005-08-23 06:33:26 3643 579 2005-08-24 04:10:26 1 2006-02-16 02:30:53
  45478. 15602 2005-08-23 06:41:07 1429 81 2005-08-24 07:16:07 1 2006-02-16 02:30:53
  45479. 15603 2005-08-23 06:41:32 2565 6 2005-08-28 08:51:32 1 2006-02-16 02:30:53
  45480. 15604 2005-08-23 06:44:19 4000 458 2005-08-29 07:17:19 1 2006-02-16 02:30:53
  45481. 15605 2005-08-23 06:48:47 3152 544 2005-08-28 06:09:47 1 2006-02-16 02:30:53
  45482. 15606 2005-08-23 06:50:27 1811 279 2005-08-28 04:23:27 2 2006-02-16 02:30:53
  45483. 15607 2005-08-23 06:54:06 4118 484 2005-08-26 05:03:06 2 2006-02-16 02:30:53
  45484. 15608 2005-08-23 06:55:26 2921 454 2005-08-28 10:24:26 1 2006-02-16 02:30:53
  45485. 15609 2005-08-23 06:56:04 1730 256 2005-09-01 03:25:04 1 2006-02-16 02:30:53
  45486. 15610 2005-08-23 06:56:15 2076 215 2005-08-24 07:37:15 2 2006-02-16 02:30:53
  45487. 15611 2005-08-23 06:56:18 1713 184 2005-08-25 06:10:18 1 2006-02-16 02:30:53
  45488. 15612 2005-08-23 06:59:07 3367 305 2005-09-01 11:26:07 2 2006-02-16 02:30:53
  45489. 15613 2005-08-23 07:03:19 307 461 2005-08-31 07:50:19 2 2006-02-16 02:30:53
  45490. 15614 2005-08-23 07:05:15 1216 287 2005-09-01 11:41:15 1 2006-02-16 02:30:53
  45491. 15615 2005-08-23 07:06:00 899 584 2005-08-30 11:21:00 2 2006-02-16 02:30:53
  45492. 15616 2005-08-23 07:06:38 2947 70 2005-08-30 04:16:38 1 2006-02-16 02:30:53
  45493. 15617 2005-08-23 07:07:22 4085 569 2005-08-27 01:24:22 2 2006-02-16 02:30:53
  45494. 15618 2005-08-23 07:07:58 1903 60 2005-08-29 03:48:58 1 2006-02-16 02:30:53
  45495. 15619 2005-08-23 07:10:14 2468 3 2005-08-26 07:21:14 2 2006-02-16 02:30:53
  45496. 15620 2005-08-23 07:10:22 1173 270 2005-08-28 06:51:22 2 2006-02-16 02:30:53
  45497. 15621 2005-08-23 07:13:43 3832 123 2005-08-29 08:19:43 1 2006-02-16 02:30:53
  45498. 15622 2005-08-23 07:22:02 3335 302 2005-09-01 06:08:02 2 2006-02-16 02:30:53
  45499. 15623 2005-08-23 07:23:29 3003 525 2005-08-31 01:47:29 1 2006-02-16 02:30:53
  45500. 15624 2005-08-23 07:24:27 396 105 2005-08-29 12:36:27 2 2006-02-16 02:30:53
  45501. 15625 2005-08-23 07:25:29 4200 207 2005-08-27 13:17:29 2 2006-02-16 02:30:53
  45502. 15626 2005-08-23 07:25:34 640 370 2005-08-28 11:01:34 1 2006-02-16 02:30:53
  45503. 15627 2005-08-23 07:25:38 1364 453 2005-08-31 02:53:38 2 2006-02-16 02:30:53
  45504. 15628 2005-08-23 07:28:04 1348 408 2005-08-26 04:23:04 1 2006-02-16 02:30:53
  45505. 15629 2005-08-23 07:28:22 3725 286 2005-08-29 06:29:22 2 2006-02-16 02:30:53
  45506. 15630 2005-08-23 07:29:13 3590 580 2005-08-31 04:33:13 2 2006-02-16 02:30:53
  45507. 15631 2005-08-23 07:30:23 2458 93 2005-08-24 07:23:23 1 2006-02-16 02:30:53
  45508. 15632 2005-08-23 07:30:26 2941 60 2005-08-24 07:53:26 2 2006-02-16 02:30:53
  45509. 15633 2005-08-23 07:31:10 882 497 2005-08-26 04:35:10 2 2006-02-16 02:30:53
  45510. 15634 2005-08-23 07:34:18 2517 576 2005-08-24 12:00:18 2 2006-02-16 02:30:53
  45511. 15635 2005-08-23 07:43:00 3308 4 2005-08-27 10:47:00 1 2006-02-16 02:30:53
  45512. 15636 2005-08-23 07:50:46 1169 380 2005-08-26 07:59:46 2 2006-02-16 02:30:53
  45513. 15637 2005-08-23 07:53:38 445 172 2005-08-29 03:16:38 2 2006-02-16 02:30:53
  45514. 15638 2005-08-23 07:54:54 3358 563 2005-08-30 13:33:54 2 2006-02-16 02:30:53
  45515. 15639 2005-08-23 08:03:25 42 214 2005-08-24 10:21:25 2 2006-02-16 02:30:53
  45516. 15640 2005-08-23 08:04:40 3505 262 2005-08-24 06:38:40 1 2006-02-16 02:30:53
  45517. 15641 2005-08-23 08:06:49 3126 240 2005-08-24 13:17:49 1 2006-02-16 02:30:53
  45518. 15642 2005-08-23 08:09:11 2627 160 2005-08-28 05:57:11 1 2006-02-16 02:30:53
  45519. 15643 2005-08-23 08:13:26 103 298 2005-08-25 05:18:26 2 2006-02-16 02:30:53
  45520. 15644 2006-02-14 15:16:03 3139 43 \N 2 2006-02-16 02:30:53
  45521. 15645 2006-02-14 15:16:03 3838 214 \N 2 2006-02-16 02:30:53
  45522. 15646 2005-08-23 08:19:55 3217 114 2005-08-29 02:32:55 1 2006-02-16 02:30:53
  45523. 15647 2005-08-23 08:23:56 2051 251 2005-08-26 11:00:56 1 2006-02-16 02:30:53
  45524. 15648 2005-08-23 08:27:57 4039 80 2005-08-30 08:53:57 2 2006-02-16 02:30:53
  45525. 15649 2005-08-23 08:28:03 415 60 2005-08-30 05:11:03 1 2006-02-16 02:30:53
  45526. 15650 2005-08-23 08:29:53 2447 353 2005-08-25 07:23:53 2 2006-02-16 02:30:53
  45527. 15651 2005-08-23 08:31:49 3393 451 2005-08-26 02:57:49 1 2006-02-16 02:30:53
  45528. 15652 2005-08-23 08:34:10 4440 578 2005-08-30 12:31:10 1 2006-02-16 02:30:53
  45529. 15653 2005-08-23 08:34:42 2736 439 2005-09-01 03:07:42 1 2006-02-16 02:30:53
  45530. 15654 2005-08-23 08:34:53 4360 471 2005-08-30 04:18:53 2 2006-02-16 02:30:53
  45531. 15655 2006-02-14 15:16:03 604 359 \N 1 2006-02-16 02:30:53
  45532. 15656 2005-08-23 08:38:58 4239 334 2005-08-24 04:08:58 2 2006-02-16 02:30:53
  45533. 15657 2005-08-23 08:42:40 1897 36 2005-09-01 13:08:40 1 2006-02-16 02:30:53
  45534. 15658 2005-08-23 08:48:43 3565 22 2005-08-25 05:38:43 1 2006-02-16 02:30:53
  45535. 15659 2005-08-23 08:48:43 4573 131 2005-08-27 14:19:43 2 2006-02-16 02:30:53
  45536. 15660 2005-08-23 08:51:21 3223 388 2005-08-28 06:26:21 2 2006-02-16 02:30:53
  45537. 15661 2005-08-23 08:52:03 1599 346 2005-08-30 08:17:03 2 2006-02-16 02:30:53
  45538. 15662 2005-08-23 08:52:50 3028 223 2005-08-24 08:08:50 1 2006-02-16 02:30:53
  45539. 15663 2005-08-23 08:54:26 3291 291 2005-08-29 02:56:26 1 2006-02-16 02:30:53
  45540. 15664 2005-08-23 08:57:11 2029 351 2005-08-31 14:19:11 2 2006-02-16 02:30:53
  45541. 15665 2005-08-23 08:59:12 3471 487 2005-08-24 12:50:12 2 2006-02-16 02:30:53
  45542. 15666 2005-08-23 09:01:10 3406 586 2005-08-31 12:32:10 2 2006-02-16 02:30:53
  45543. 15667 2005-08-23 09:02:03 1302 73 2005-08-24 05:47:03 1 2006-02-16 02:30:53
  45544. 15668 2005-08-23 09:02:04 1963 38 2005-08-29 03:17:04 2 2006-02-16 02:30:53
  45545. 15669 2005-08-23 09:06:17 1542 334 2005-08-30 08:10:17 2 2006-02-16 02:30:53
  45546. 15670 2005-08-23 09:07:11 2834 211 2005-08-31 04:32:11 2 2006-02-16 02:30:53
  45547. 15671 2005-08-23 09:08:16 3716 112 2005-08-29 14:01:16 1 2006-02-16 02:30:53
  45548. 15672 2005-08-23 09:09:18 701 210 2005-08-27 06:19:18 1 2006-02-16 02:30:53
  45549. 15673 2005-08-23 09:12:50 3096 321 2005-08-29 12:45:50 2 2006-02-16 02:30:53
  45550. 15674 2005-08-23 09:16:39 4482 90 2005-09-01 11:57:39 1 2006-02-16 02:30:53
  45551. 15675 2005-08-23 09:18:52 4153 293 2005-08-30 14:59:52 2 2006-02-16 02:30:53
  45552. 15676 2005-08-23 09:23:08 3874 353 2005-08-30 06:19:08 2 2006-02-16 02:30:53
  45553. 15677 2005-08-23 09:23:36 2050 109 2005-08-27 05:01:36 1 2006-02-16 02:30:53
  45554. 15678 2005-08-23 09:23:45 1345 413 2005-08-27 11:38:45 2 2006-02-16 02:30:53
  45555. 15679 2005-08-23 09:27:29 2945 103 2005-08-28 09:14:29 1 2006-02-16 02:30:53
  45556. 15680 2005-08-23 09:33:22 1370 169 2005-08-31 13:29:22 2 2006-02-16 02:30:53
  45557. 15681 2005-08-23 09:35:34 2813 61 2005-08-27 08:33:34 1 2006-02-16 02:30:53
  45558. 15682 2005-08-23 09:37:34 3293 31 2005-08-31 06:01:34 1 2006-02-16 02:30:53
  45559. 15683 2005-08-23 09:38:17 3787 168 2005-08-30 12:31:17 2 2006-02-16 02:30:53
  45560. 15684 2005-08-23 09:40:04 3976 586 2005-08-28 15:28:04 1 2006-02-16 02:30:53
  45561. 15685 2005-08-23 09:41:28 370 491 2005-08-30 10:11:28 1 2006-02-16 02:30:53
  45562. 15686 2005-08-23 09:42:21 2041 206 2005-08-29 12:22:21 1 2006-02-16 02:30:53
  45563. 15687 2005-08-23 09:46:33 276 112 2005-09-01 06:07:33 1 2006-02-16 02:30:53
  45564. 15688 2005-08-23 09:48:45 2851 105 2005-08-30 10:28:45 2 2006-02-16 02:30:53
  45565. 15689 2005-08-23 09:52:55 248 259 2005-08-29 11:15:55 1 2006-02-16 02:30:53
  45566. 15690 2005-08-23 09:53:30 2102 554 2005-08-29 10:27:30 1 2006-02-16 02:30:53
  45567. 15691 2005-08-23 09:53:54 784 200 2005-08-27 10:14:54 1 2006-02-16 02:30:53
  45568. 15692 2005-08-23 10:00:02 1852 503 2005-08-24 05:25:02 1 2006-02-16 02:30:53
  45569. 15693 2005-08-23 10:00:24 748 94 2005-08-25 08:23:24 1 2006-02-16 02:30:53
  45570. 15694 2005-08-23 10:02:46 3017 506 2005-08-31 05:46:46 2 2006-02-16 02:30:53
  45571. 15695 2006-02-14 15:16:03 2954 300 \N 1 2006-02-16 02:30:53
  45572. 15696 2005-08-23 10:04:17 2836 93 2005-08-25 08:47:17 2 2006-02-16 02:30:53
  45573. 15697 2005-08-23 10:04:36 1987 380 2005-08-24 05:00:36 2 2006-02-16 02:30:53
  45574. 15698 2005-08-23 10:11:40 4465 395 2005-08-28 08:50:40 2 2006-02-16 02:30:53
  45575. 15699 2005-08-23 10:20:35 4155 501 2005-08-30 13:56:35 1 2006-02-16 02:30:53
  45576. 15700 2005-08-23 10:21:21 2935 552 2005-08-24 15:37:21 1 2006-02-16 02:30:53
  45577. 15701 2005-08-23 10:22:21 2942 516 2005-08-24 10:52:21 1 2006-02-16 02:30:53
  45578. 15702 2005-08-23 10:23:28 1602 56 2005-08-29 11:08:28 2 2006-02-16 02:30:53
  45579. 15703 2005-08-23 10:23:48 2883 322 2005-09-01 06:54:48 2 2006-02-16 02:30:53
  45580. 15704 2005-08-23 10:25:45 738 71 2005-08-29 16:06:45 2 2006-02-16 02:30:53
  45581. 15705 2005-08-23 10:32:52 936 356 2005-08-29 13:18:52 2 2006-02-16 02:30:53
  45582. 15706 2005-08-23 10:32:52 4486 220 2005-08-24 07:03:52 2 2006-02-16 02:30:53
  45583. 15707 2005-08-23 10:35:45 3646 91 2005-08-27 10:57:45 1 2006-02-16 02:30:53
  45584. 15708 2005-08-23 10:35:51 1974 46 2005-08-27 16:02:51 1 2006-02-16 02:30:53
  45585. 15709 2005-08-23 10:36:00 346 206 2005-08-28 06:18:00 2 2006-02-16 02:30:53
  45586. 15710 2006-02-14 15:16:03 1020 421 \N 1 2006-02-16 02:30:53
  45587. 15711 2005-08-23 10:43:00 789 297 2005-08-29 16:29:00 1 2006-02-16 02:30:53
  45588. 15712 2005-08-23 10:43:56 1882 351 2005-08-29 15:35:56 2 2006-02-16 02:30:53
  45589. 15713 2005-08-23 10:56:15 337 432 2005-08-29 09:14:15 2 2006-02-16 02:30:53
  45590. 15714 2006-02-14 15:16:03 2083 56 \N 1 2006-02-16 02:30:53
  45591. 15715 2005-08-23 10:57:40 3808 86 2005-08-28 12:40:40 1 2006-02-16 02:30:53
  45592. 15716 2005-08-23 11:02:00 2812 408 2005-08-28 14:46:00 1 2006-02-16 02:30:53
  45593. 15717 2006-02-14 15:16:03 902 208 \N 2 2006-02-16 02:30:53
  45594. 15718 2005-08-23 11:05:17 2180 276 2005-08-28 12:50:17 1 2006-02-16 02:30:53
  45595. 15719 2005-08-23 11:08:46 3990 599 2005-08-25 07:25:46 1 2006-02-16 02:30:53
  45596. 15720 2005-08-23 11:15:20 2490 456 2005-08-31 09:49:20 1 2006-02-16 02:30:53
  45597. 15721 2005-08-23 11:16:16 685 154 2005-08-28 10:21:16 1 2006-02-16 02:30:53
  45598. 15722 2005-08-23 11:16:29 2809 26 2005-09-01 13:24:29 2 2006-02-16 02:30:53
  45599. 15723 2005-08-23 11:17:26 3915 504 2005-08-31 13:58:26 2 2006-02-16 02:30:53
  45600. 15724 2005-08-23 11:22:09 1025 478 2005-08-28 12:56:09 2 2006-02-16 02:30:53
  45601. 15725 2005-08-23 11:25:00 378 599 2005-08-26 11:46:00 1 2006-02-16 02:30:53
  45602. 15726 2005-08-23 11:28:26 906 503 2005-08-28 11:23:26 2 2006-02-16 02:30:53
  45603. 15727 2005-08-23 11:28:49 2184 416 2005-08-24 06:24:49 2 2006-02-16 02:30:53
  45604. 15728 2005-08-23 11:30:32 2567 323 2005-08-28 09:52:32 2 2006-02-16 02:30:53
  45605. 15729 2006-02-14 15:16:03 2699 193 \N 2 2006-02-16 02:30:53
  45606. 15730 2005-08-23 11:32:35 947 147 2005-08-30 13:46:35 2 2006-02-16 02:30:53
  45607. 15731 2005-08-23 11:33:25 3403 118 2005-08-24 07:19:25 2 2006-02-16 02:30:53
  45608. 15732 2005-08-23 11:35:12 3247 412 2005-08-26 12:50:12 2 2006-02-16 02:30:53
  45609. 15733 2005-08-23 11:37:32 4185 512 2005-08-28 16:27:32 1 2006-02-16 02:30:53
  45610. 15734 2005-08-23 11:40:08 3952 302 2005-08-27 08:16:08 1 2006-02-16 02:30:53
  45611. 15735 2006-02-14 15:16:03 3167 295 \N 1 2006-02-16 02:30:53
  45612. 15736 2005-08-23 11:40:30 4272 127 2005-08-30 12:40:30 1 2006-02-16 02:30:53
  45613. 15737 2005-08-23 11:52:18 996 83 2005-08-28 15:28:18 1 2006-02-16 02:30:53
  45614. 15738 2005-08-23 11:55:50 556 38 2005-08-30 15:07:50 1 2006-02-16 02:30:53
  45615. 15739 2005-08-23 11:56:22 266 74 2005-08-29 16:10:22 2 2006-02-16 02:30:53
  45616. 15740 2005-08-23 12:07:51 100 229 2005-08-24 13:23:51 2 2006-02-16 02:30:53
  45617. 15741 2005-08-23 12:10:54 4243 126 2005-08-24 10:08:54 2 2006-02-16 02:30:53
  45618. 15742 2005-08-23 12:11:37 1339 200 2005-08-31 07:28:37 2 2006-02-16 02:30:53
  45619. 15743 2005-08-23 12:12:05 1625 139 2005-08-26 11:35:05 1 2006-02-16 02:30:53
  45620. 15744 2005-08-23 12:15:51 2364 59 2005-08-31 17:19:51 1 2006-02-16 02:30:53
  45621. 15745 2006-02-14 15:16:03 2737 43 \N 1 2006-02-16 02:30:53
  45622. 15746 2005-08-23 12:26:19 2241 246 2005-08-26 09:51:19 2 2006-02-16 02:30:53
  45623. 15747 2005-08-23 12:29:24 1517 381 2005-08-31 08:27:24 2 2006-02-16 02:30:53
  45624. 15748 2005-08-23 12:33:00 2757 380 2005-08-25 15:15:00 2 2006-02-16 02:30:53
  45625. 15749 2005-08-23 12:33:41 4224 575 2005-08-24 10:52:41 1 2006-02-16 02:30:53
  45626. 15750 2005-08-23 12:36:05 4474 496 2005-08-24 17:40:05 2 2006-02-16 02:30:53
  45627. 15751 2005-08-23 12:41:07 697 199 2005-08-29 07:03:07 2 2006-02-16 02:30:53
  45628. 15752 2005-08-23 12:41:38 2112 17 2005-09-01 14:06:38 1 2006-02-16 02:30:53
  45629. 15753 2005-08-23 12:43:30 3451 144 2005-09-01 09:07:30 2 2006-02-16 02:30:53
  45630. 15754 2005-08-23 12:43:42 2306 356 2005-08-27 17:45:42 2 2006-02-16 02:30:53
  45631. 15755 2005-08-23 12:46:38 511 423 2005-08-25 12:59:38 1 2006-02-16 02:30:53
  45632. 15756 2005-08-23 12:47:05 878 112 2005-08-28 08:34:05 2 2006-02-16 02:30:53
  45633. 15757 2005-08-23 12:47:16 1308 356 2005-08-29 17:19:16 1 2006-02-16 02:30:53
  45634. 15758 2005-08-23 12:47:26 152 46 2005-08-29 11:05:26 2 2006-02-16 02:30:53
  45635. 15759 2005-08-23 12:47:37 1341 361 2005-09-01 11:28:37 2 2006-02-16 02:30:53
  45636. 15760 2005-08-23 12:50:00 3050 273 2005-08-29 15:41:00 2 2006-02-16 02:30:53
  45637. 15761 2005-08-23 12:55:51 4362 416 2005-08-26 16:51:51 1 2006-02-16 02:30:53
  45638. 15762 2005-08-23 13:01:43 887 351 2005-08-26 16:35:43 1 2006-02-16 02:30:53
  45639. 15763 2005-08-23 13:02:59 124 158 2005-08-24 17:45:59 2 2006-02-16 02:30:53
  45640. 15764 2005-08-23 13:05:10 2937 8 2005-08-25 16:15:10 1 2006-02-16 02:30:53
  45641. 15765 2005-08-23 13:06:19 1250 408 2005-08-31 12:18:19 1 2006-02-16 02:30:53
  45642. 15766 2005-08-23 13:10:16 1996 436 2005-08-30 09:27:16 1 2006-02-16 02:30:53
  45643. 15767 2005-08-23 13:14:15 3492 241 2005-08-27 14:43:15 2 2006-02-16 02:30:53
  45644. 15768 2005-08-23 13:14:47 662 267 2005-08-29 14:17:47 2 2006-02-16 02:30:53
  45645. 15769 2005-08-23 13:16:15 2392 276 2005-08-28 18:31:15 1 2006-02-16 02:30:53
  45646. 15770 2005-08-23 13:18:16 1424 113 2005-08-29 11:31:16 1 2006-02-16 02:30:53
  45647. 15771 2005-08-23 13:18:46 3667 262 2005-08-26 07:29:46 1 2006-02-16 02:30:53
  45648. 15772 2005-08-23 13:22:56 4343 202 2005-08-26 10:35:56 2 2006-02-16 02:30:53
  45649. 15773 2005-08-23 13:24:57 1626 189 2005-08-31 14:16:57 2 2006-02-16 02:30:53
  45650. 15774 2005-08-23 13:25:08 1273 254 2005-08-28 10:08:08 2 2006-02-16 02:30:53
  45651. 15775 2005-08-23 13:25:44 2146 173 2005-09-01 16:56:44 1 2006-02-16 02:30:53
  45652. 15776 2005-08-23 13:26:01 43 514 2005-08-29 18:17:01 1 2006-02-16 02:30:53
  45653. 15777 2005-08-23 13:29:08 4241 130 2005-08-27 18:50:08 2 2006-02-16 02:30:53
  45654. 15778 2006-02-14 15:16:03 1269 234 \N 1 2006-02-16 02:30:53
  45655. 15779 2005-08-23 13:33:46 1560 419 2005-08-28 08:40:46 2 2006-02-16 02:30:53
  45656. 15780 2006-02-14 15:16:03 2911 120 \N 2 2006-02-16 02:30:53
  45657. 15781 2005-08-23 13:41:05 4449 412 2005-08-31 13:11:05 1 2006-02-16 02:30:53
  45658. 15782 2005-08-23 13:43:26 3282 245 2005-08-30 14:03:26 1 2006-02-16 02:30:53
  45659. 15783 2005-08-23 13:45:44 397 247 2005-08-26 09:18:44 2 2006-02-16 02:30:53
  45660. 15784 2005-08-23 13:46:00 126 425 2005-08-30 11:49:00 2 2006-02-16 02:30:53
  45661. 15785 2005-08-23 13:46:27 1758 543 2005-08-27 10:16:27 2 2006-02-16 02:30:53
  45662. 15786 2005-08-23 13:48:34 3132 371 2005-08-27 15:59:34 1 2006-02-16 02:30:53
  45663. 15787 2005-08-23 13:51:57 2932 123 2005-08-27 17:06:57 1 2006-02-16 02:30:53
  45664. 15788 2005-08-23 13:54:39 13 269 2005-08-26 10:17:39 1 2006-02-16 02:30:53
  45665. 15789 2005-08-23 13:56:40 1213 350 2005-08-27 15:25:40 1 2006-02-16 02:30:53
  45666. 15790 2005-08-23 14:01:07 2887 233 2005-08-30 10:32:07 2 2006-02-16 02:30:53
  45667. 15791 2005-08-23 14:02:13 4147 445 2005-09-01 09:03:13 2 2006-02-16 02:30:53
  45668. 15792 2005-08-23 14:05:37 2175 581 2005-08-28 10:54:37 1 2006-02-16 02:30:53
  45669. 15793 2005-08-23 14:06:19 2863 22 2005-08-24 19:59:19 2 2006-02-16 02:30:53
  45670. 15794 2006-02-14 15:16:03 3917 579 \N 2 2006-02-16 02:30:53
  45671. 15795 2005-08-23 14:07:56 4371 417 2005-08-25 12:10:56 2 2006-02-16 02:30:53
  45672. 15796 2005-08-23 14:12:22 1425 158 2005-08-28 17:03:22 2 2006-02-16 02:30:53
  45673. 15797 2005-08-23 14:13:47 497 503 2005-08-25 09:16:47 2 2006-02-16 02:30:53
  45674. 15798 2005-08-23 14:23:03 3803 203 2005-08-30 17:39:03 2 2006-02-16 02:30:53
  45675. 15799 2005-08-23 14:23:23 2519 215 2005-08-24 17:15:23 2 2006-02-16 02:30:53
  45676. 15800 2005-08-23 14:23:44 963 43 2005-08-29 17:04:44 2 2006-02-16 02:30:53
  45677. 15801 2005-08-23 14:26:04 1590 165 2005-08-28 15:04:04 1 2006-02-16 02:30:53
  45678. 15802 2005-08-23 14:26:51 41 158 2005-08-29 16:28:51 2 2006-02-16 02:30:53
  45679. 15803 2005-08-23 14:27:07 500 105 2005-08-28 12:01:07 2 2006-02-16 02:30:53
  45680. 15804 2005-08-23 14:29:16 3338 585 2005-08-26 08:41:16 1 2006-02-16 02:30:53
  45681. 15805 2005-08-23 14:31:19 4511 8 2005-08-25 19:01:19 2 2006-02-16 02:30:53
  45682. 15806 2005-08-23 14:31:50 2683 166 2005-08-27 16:08:50 2 2006-02-16 02:30:53
  45683. 15807 2005-08-23 14:35:10 2705 350 2005-08-29 19:06:10 2 2006-02-16 02:30:53
  45684. 15808 2005-08-23 14:38:37 1663 446 2005-08-27 14:45:37 2 2006-02-16 02:30:53
  45685. 15809 2005-08-23 14:42:07 1885 431 2005-08-27 15:00:07 2 2006-02-16 02:30:53
  45686. 15810 2005-08-23 14:43:15 2196 171 2005-08-25 17:41:15 1 2006-02-16 02:30:53
  45687. 15811 2005-08-23 14:43:46 3487 300 2005-08-27 16:43:46 1 2006-02-16 02:30:53
  45688. 15812 2005-08-23 14:47:26 4457 45 2005-09-01 10:51:26 2 2006-02-16 02:30:53
  45689. 15813 2006-02-14 15:16:03 981 9 \N 1 2006-02-16 02:30:53
  45690. 15814 2005-08-23 14:52:50 4361 459 2005-08-27 16:12:50 2 2006-02-16 02:30:53
  45691. 15815 2005-08-23 14:55:47 316 444 2005-08-24 12:37:47 1 2006-02-16 02:30:53
  45692. 15816 2005-08-23 14:58:06 3628 31 2005-08-28 13:30:06 1 2006-02-16 02:30:53
  45693. 15817 2005-08-23 14:59:51 598 348 2005-08-25 15:27:51 1 2006-02-16 02:30:53
  45694. 15818 2005-08-23 14:59:58 2620 439 2005-08-27 13:13:58 2 2006-02-16 02:30:53
  45695. 15819 2005-08-23 15:01:54 3639 274 2005-08-31 20:01:54 2 2006-02-16 02:30:53
  45696. 15820 2005-08-23 15:03:13 4553 308 2005-08-25 20:12:13 1 2006-02-16 02:30:53
  45697. 15821 2005-08-23 15:03:58 1714 233 2005-08-24 17:46:58 2 2006-02-16 02:30:53
  45698. 15822 2005-08-23 15:05:59 3602 492 2005-08-24 11:13:59 1 2006-02-16 02:30:53
  45699. 15823 2005-08-23 15:08:00 3047 81 2005-08-24 17:52:00 2 2006-02-16 02:30:53
  45700. 15824 2005-08-23 15:09:17 2933 371 2005-08-28 15:14:17 2 2006-02-16 02:30:53
  45701. 15825 2005-08-23 15:10:42 149 346 2005-08-29 09:28:42 2 2006-02-16 02:30:53
  45702. 15826 2005-08-23 15:15:02 215 311 2005-08-31 20:39:02 2 2006-02-16 02:30:53
  45703. 15827 2005-08-23 15:15:19 1732 346 2005-08-24 10:50:19 2 2006-02-16 02:30:53
  45704. 15828 2005-08-23 15:16:32 428 327 2005-08-29 12:20:32 1 2006-02-16 02:30:53
  45705. 15829 2005-08-23 15:17:14 4387 30 2005-08-27 13:04:14 1 2006-02-16 02:30:53
  45706. 15830 2005-08-23 15:19:15 309 467 2005-08-25 18:42:15 2 2006-02-16 02:30:53
  45707. 15831 2005-08-23 15:21:19 3123 401 2005-08-24 15:47:19 2 2006-02-16 02:30:53
  45708. 15832 2005-08-23 15:21:35 1468 537 2005-08-30 15:01:35 2 2006-02-16 02:30:53
  45709. 15833 2005-08-23 15:22:15 801 349 2005-08-31 14:54:15 1 2006-02-16 02:30:53
  45710. 15834 2005-08-23 15:23:50 217 165 2005-09-01 19:31:50 1 2006-02-16 02:30:53
  45711. 15835 2005-08-23 15:25:27 1362 128 2005-09-01 16:14:27 2 2006-02-16 02:30:53
  45712. 15836 2005-08-23 15:29:17 260 468 2005-08-26 11:44:17 2 2006-02-16 02:30:53
  45713. 15837 2005-08-23 15:29:41 4388 283 2005-08-27 18:17:41 1 2006-02-16 02:30:53
  45714. 15838 2005-08-23 15:30:48 2194 579 2005-08-31 11:20:48 2 2006-02-16 02:30:53
  45715. 15839 2005-08-23 15:34:46 3726 294 2005-08-30 21:00:46 2 2006-02-16 02:30:53
  45716. 15840 2005-08-23 15:34:49 1901 316 2005-08-24 16:54:49 1 2006-02-16 02:30:53
  45717. 15841 2005-08-23 15:35:59 2865 571 2005-08-30 19:30:59 2 2006-02-16 02:30:53
  45718. 15842 2005-08-23 15:36:05 1850 146 2005-08-30 14:05:05 2 2006-02-16 02:30:53
  45719. 15843 2005-08-23 15:37:31 611 215 2005-08-28 18:41:31 2 2006-02-16 02:30:53
  45720. 15844 2005-08-23 15:38:12 2027 119 2005-08-26 15:18:12 1 2006-02-16 02:30:53
  45721. 15845 2005-08-23 15:38:34 4312 89 2005-08-25 10:06:34 1 2006-02-16 02:30:53
  45722. 15846 2005-08-23 15:39:18 3635 47 2005-08-27 14:28:18 2 2006-02-16 02:30:53
  45723. 15847 2005-08-23 15:39:38 2287 163 2005-08-24 11:46:38 1 2006-02-16 02:30:53
  45724. 15848 2005-08-23 15:41:12 2141 336 2005-08-26 10:29:12 2 2006-02-16 02:30:53
  45725. 15849 2005-08-23 15:41:20 4077 482 2005-08-27 15:47:20 2 2006-02-16 02:30:53
  45726. 15850 2005-08-23 15:45:42 586 563 2005-08-27 19:24:42 1 2006-02-16 02:30:53
  45727. 15851 2005-08-23 15:46:33 2286 469 2005-08-29 15:52:33 1 2006-02-16 02:30:53
  45728. 15852 2005-08-23 15:47:02 1506 140 2005-08-25 19:37:02 1 2006-02-16 02:30:53
  45729. 15853 2005-08-23 15:54:20 225 500 2005-08-24 18:53:20 2 2006-02-16 02:30:53
  45730. 15854 2005-08-23 15:58:05 1648 464 2005-08-26 19:23:05 1 2006-02-16 02:30:53
  45731. 15855 2005-08-23 15:59:01 2528 192 2005-08-29 20:26:01 1 2006-02-16 02:30:53
  45732. 15856 2005-08-23 15:59:12 3379 395 2005-08-25 15:36:12 1 2006-02-16 02:30:53
  45733. 15857 2005-08-23 15:59:51 2733 575 2005-08-26 12:01:51 2 2006-02-16 02:30:53
  45734. 15858 2005-08-23 16:07:15 4515 81 2005-08-25 19:36:15 2 2006-02-16 02:30:53
  45735. 15859 2005-08-23 16:08:15 4269 465 2005-08-28 11:08:15 1 2006-02-16 02:30:53
  45736. 15860 2005-08-23 16:08:40 2583 41 2005-08-28 15:35:40 1 2006-02-16 02:30:53
  45737. 15861 2005-08-23 16:15:45 1859 256 2005-09-01 11:37:45 2 2006-02-16 02:30:53
  45738. 15862 2006-02-14 15:16:03 925 215 \N 1 2006-02-16 02:30:53
  45739. 15863 2005-08-23 16:17:09 2783 328 2005-08-28 16:10:09 2 2006-02-16 02:30:53
  45740. 15864 2005-08-23 16:18:12 3014 256 2005-08-29 17:10:12 2 2006-02-16 02:30:53
  45741. 15865 2005-08-23 16:18:25 2031 482 2005-08-26 10:57:25 2 2006-02-16 02:30:53
  45742. 15866 2005-08-23 16:19:02 3828 296 2005-08-31 12:29:02 2 2006-02-16 02:30:53
  45743. 15867 2006-02-14 15:16:03 837 505 \N 2 2006-02-16 02:30:53
  45744. 15868 2005-08-23 16:19:14 2186 306 2005-08-29 16:14:14 2 2006-02-16 02:30:53
  45745. 15869 2005-08-23 16:22:20 1344 357 2005-08-27 11:52:20 1 2006-02-16 02:30:53
  45746. 15870 2005-08-23 16:23:08 590 251 2005-08-28 20:30:08 2 2006-02-16 02:30:53
  45747. 15871 2005-08-23 16:24:24 425 57 2005-09-01 13:48:24 2 2006-02-16 02:30:53
  45748. 15872 2005-08-23 16:27:24 3391 212 2005-08-31 11:57:24 1 2006-02-16 02:30:53
  45749. 15873 2005-08-23 16:27:59 4548 577 2005-08-26 11:11:59 2 2006-02-16 02:30:53
  45750. 15874 2005-08-23 16:30:55 621 132 2005-08-28 20:57:55 1 2006-02-16 02:30:53
  45751. 15875 2006-02-14 15:16:03 3611 41 \N 1 2006-02-16 02:30:53
  45752. 15876 2005-08-23 16:32:10 1735 87 2005-08-24 18:16:10 1 2006-02-16 02:30:53
  45753. 15877 2005-08-23 16:33:33 2307 559 2005-08-26 10:36:33 2 2006-02-16 02:30:53
  45754. 15878 2005-08-23 16:34:31 1592 493 2005-08-27 21:51:31 2 2006-02-16 02:30:53
  45755. 15879 2005-08-23 16:42:53 235 482 2005-08-29 16:21:53 2 2006-02-16 02:30:53
  45756. 15880 2005-08-23 16:43:54 2538 528 2005-08-31 14:40:54 2 2006-02-16 02:30:53
  45757. 15881 2005-08-23 16:44:25 617 383 2005-08-29 13:58:25 1 2006-02-16 02:30:53
  45758. 15882 2005-08-23 16:44:31 2028 312 2005-09-01 15:44:31 2 2006-02-16 02:30:53
  45759. 15883 2005-08-23 16:44:56 2792 550 2005-08-24 22:42:56 1 2006-02-16 02:30:53
  45760. 15884 2005-08-23 16:45:28 2255 81 2005-08-27 20:18:28 1 2006-02-16 02:30:53
  45761. 15885 2005-08-23 16:50:43 2116 565 2005-08-29 20:19:43 1 2006-02-16 02:30:53
  45762. 15886 2005-08-23 16:50:53 3038 91 2005-08-26 15:38:53 2 2006-02-16 02:30:53
  45763. 15887 2005-08-23 16:54:09 4263 201 2005-08-26 13:20:09 2 2006-02-16 02:30:53
  45764. 15888 2005-08-23 16:56:14 2955 321 2005-08-31 14:32:14 1 2006-02-16 02:30:53
  45765. 15889 2005-08-23 16:57:43 787 137 2005-08-27 22:14:43 1 2006-02-16 02:30:53
  45766. 15890 2005-08-23 16:58:12 3625 87 2005-08-24 12:23:12 1 2006-02-16 02:30:53
  45767. 15891 2005-08-23 17:00:12 2168 52 2005-08-31 21:12:12 1 2006-02-16 02:30:53
  45768. 15892 2005-08-23 17:01:00 1365 174 2005-08-28 12:50:00 1 2006-02-16 02:30:53
  45769. 15893 2005-08-23 17:02:00 2571 438 2005-08-30 12:45:00 2 2006-02-16 02:30:53
  45770. 15894 2006-02-14 15:16:03 4416 168 \N 1 2006-02-16 02:30:53
  45771. 15895 2005-08-23 17:09:31 2275 342 2005-08-30 17:15:31 1 2006-02-16 02:30:53
  45772. 15896 2005-08-23 17:09:56 528 585 2005-08-31 14:51:56 2 2006-02-16 02:30:53
  45773. 15897 2005-08-23 17:12:31 1652 15 2005-08-30 17:22:31 1 2006-02-16 02:30:53
  45774. 15898 2005-08-23 17:13:01 3502 88 2005-08-29 11:22:01 2 2006-02-16 02:30:53
  45775. 15899 2005-08-23 17:16:28 3851 596 2005-08-29 21:46:28 2 2006-02-16 02:30:53
  45776. 15900 2005-08-23 17:16:30 1112 562 2005-08-27 18:02:30 1 2006-02-16 02:30:53
  45777. 15901 2005-08-23 17:19:17 2761 226 2005-08-30 14:24:17 2 2006-02-16 02:30:53
  45778. 15902 2005-08-23 17:28:03 4500 172 2005-08-30 18:36:03 1 2006-02-16 02:30:53
  45779. 15903 2005-08-23 17:30:40 1289 267 2005-08-29 14:12:40 1 2006-02-16 02:30:53
  45780. 15904 2005-08-23 17:32:19 179 37 2005-08-24 21:05:19 2 2006-02-16 02:30:53
  45781. 15905 2005-08-23 17:33:04 3631 59 2005-08-26 17:38:04 2 2006-02-16 02:30:53
  45782. 15906 2005-08-23 17:36:00 3230 445 2005-08-28 15:32:00 2 2006-02-16 02:30:53
  45783. 15907 2005-08-23 17:39:35 2898 2 2005-08-25 23:23:35 1 2006-02-16 02:30:53
  45784. 15908 2005-08-23 17:42:00 2453 135 2005-08-31 22:32:00 1 2006-02-16 02:30:53
  45785. 15909 2005-08-23 17:42:42 404 452 2005-08-26 20:25:42 1 2006-02-16 02:30:53
  45786. 15910 2005-08-23 17:43:16 254 456 2005-08-24 21:55:16 2 2006-02-16 02:30:53
  45787. 15911 2005-08-23 17:44:53 3006 582 2005-09-01 19:14:53 1 2006-02-16 02:30:53
  45788. 15912 2005-08-23 17:47:40 3079 229 2005-08-31 14:43:40 2 2006-02-16 02:30:53
  45789. 15913 2005-08-23 17:48:30 3894 93 2005-08-31 21:17:30 2 2006-02-16 02:30:53
  45790. 15914 2005-08-23 17:49:26 747 557 2005-08-24 12:20:26 1 2006-02-16 02:30:53
  45791. 15915 2005-08-23 17:52:01 3566 167 2005-08-24 20:40:01 2 2006-02-16 02:30:53
  45792. 15916 2005-08-23 17:56:01 4580 327 2005-08-31 21:49:01 2 2006-02-16 02:30:53
  45793. 15917 2005-08-23 17:57:28 2093 589 2005-08-29 20:03:28 1 2006-02-16 02:30:53
  45794. 15918 2005-08-23 17:57:35 1456 262 2005-08-28 14:16:35 2 2006-02-16 02:30:53
  45795. 15919 2005-08-23 18:01:31 1746 497 2005-08-24 16:27:31 1 2006-02-16 02:30:53
  45796. 15920 2005-08-23 18:05:10 243 212 2005-08-26 18:09:10 1 2006-02-16 02:30:53
  45797. 15921 2005-08-23 18:06:54 223 522 2005-08-30 20:19:54 2 2006-02-16 02:30:53
  45798. 15922 2005-08-23 18:07:31 1702 263 2005-09-01 22:27:31 1 2006-02-16 02:30:53
  45799. 15923 2005-08-23 18:08:19 1693 276 2005-08-26 18:06:19 2 2006-02-16 02:30:53
  45800. 15924 2005-08-23 18:08:59 1114 541 2005-08-27 12:20:59 2 2006-02-16 02:30:53
  45801. 15925 2005-08-23 18:15:06 3394 440 2005-08-26 18:09:06 2 2006-02-16 02:30:53
  45802. 15926 2005-08-23 18:20:56 2231 151 2005-08-24 18:20:56 2 2006-02-16 02:30:53
  45803. 15927 2005-08-23 18:23:11 2450 401 2005-08-24 15:09:11 1 2006-02-16 02:30:53
  45804. 15928 2005-08-23 18:23:24 2086 75 2005-09-01 23:43:24 2 2006-02-16 02:30:53
  45805. 15929 2005-08-23 18:23:30 1832 477 2005-08-27 17:04:30 1 2006-02-16 02:30:53
  45806. 15930 2005-08-23 18:26:51 180 379 2005-08-31 16:12:51 1 2006-02-16 02:30:53
  45807. 15931 2005-08-23 18:28:09 1128 237 2005-08-28 23:08:09 1 2006-02-16 02:30:53
  45808. 15932 2005-08-23 18:31:40 4554 405 2005-08-24 16:30:40 2 2006-02-16 02:30:53
  45809. 15933 2005-08-23 18:36:44 3493 176 2005-08-26 12:41:44 2 2006-02-16 02:30:53
  45810. 15934 2005-08-23 18:40:41 994 216 2005-08-25 00:18:41 2 2006-02-16 02:30:53
  45811. 15935 2005-08-23 18:41:11 907 361 2005-08-25 20:59:11 1 2006-02-16 02:30:53
  45812. 15936 2005-08-23 18:43:11 1293 411 2005-08-26 00:19:11 1 2006-02-16 02:30:53
  45813. 15937 2005-08-23 18:43:22 2882 194 2005-08-24 22:53:22 1 2006-02-16 02:30:53
  45814. 15938 2005-08-23 18:43:31 2884 341 2005-08-31 00:26:31 2 2006-02-16 02:30:53
  45815. 15939 2005-08-23 18:44:21 3209 382 2005-09-01 17:25:21 2 2006-02-16 02:30:53
  45816. 15940 2005-08-23 18:45:06 1606 86 2005-08-30 13:00:06 2 2006-02-16 02:30:53
  45817. 15941 2005-08-23 18:46:44 4304 424 2005-08-31 17:31:44 1 2006-02-16 02:30:53
  45818. 15942 2005-08-23 18:48:40 1096 210 2005-09-01 18:39:40 2 2006-02-16 02:30:53
  45819. 15943 2005-08-23 18:49:32 706 462 2005-08-27 19:20:32 1 2006-02-16 02:30:53
  45820. 15944 2005-08-23 18:50:54 4559 348 2005-08-25 18:04:54 2 2006-02-16 02:30:53
  45821. 15945 2005-08-23 18:51:41 3633 43 2005-08-28 18:42:41 1 2006-02-16 02:30:53
  45822. 15946 2005-08-23 18:54:07 4549 561 2005-08-28 21:21:07 1 2006-02-16 02:30:53
  45823. 15947 2005-08-23 18:54:32 1877 580 2005-08-24 22:39:32 2 2006-02-16 02:30:53
  45824. 15948 2005-08-23 18:59:33 432 520 2005-08-31 13:02:33 2 2006-02-16 02:30:53
  45825. 15949 2005-08-23 19:06:04 1199 386 2005-08-26 18:39:04 2 2006-02-16 02:30:53
  45826. 15950 2005-08-23 19:09:39 1374 280 2005-08-31 17:03:39 2 2006-02-16 02:30:53
  45827. 15951 2005-08-23 19:10:32 3018 446 2005-08-29 14:17:32 1 2006-02-16 02:30:53
  45828. 15952 2005-08-23 19:11:29 1314 224 2005-08-28 14:41:29 1 2006-02-16 02:30:53
  45829. 15953 2005-08-23 19:13:46 3727 540 2005-08-28 23:05:46 1 2006-02-16 02:30:53
  45830. 15954 2005-08-23 19:14:07 576 460 2005-08-24 20:21:07 1 2006-02-16 02:30:53
  45831. 15955 2005-08-23 19:19:06 2247 349 2005-08-31 23:34:06 1 2006-02-16 02:30:53
  45832. 15956 2005-08-23 19:19:21 2763 354 2005-08-25 22:15:21 2 2006-02-16 02:30:53
  45833. 15957 2005-08-23 19:21:22 74 418 2005-08-31 16:42:22 1 2006-02-16 02:30:53
  45834. 15958 2005-08-23 19:22:36 4164 492 2005-08-30 01:03:36 1 2006-02-16 02:30:53
  45835. 15959 2005-08-23 19:27:04 547 415 2005-08-24 15:24:04 1 2006-02-16 02:30:53
  45836. 15960 2005-08-23 19:35:42 1497 431 2005-08-26 17:36:42 2 2006-02-16 02:30:53
  45837. 15961 2005-08-23 19:35:42 4006 200 2005-08-30 22:52:42 1 2006-02-16 02:30:53
  45838. 15962 2005-08-23 19:42:04 3491 160 2005-08-25 23:53:04 1 2006-02-16 02:30:53
  45839. 15963 2005-08-23 19:42:46 3819 134 2005-08-25 22:12:46 1 2006-02-16 02:30:53
  45840. 15964 2005-08-23 19:45:25 251 141 2005-08-26 22:43:25 2 2006-02-16 02:30:53
  45841. 15965 2005-08-23 19:46:39 3449 509 2005-08-24 20:08:39 2 2006-02-16 02:30:53
  45842. 15966 2006-02-14 15:16:03 4472 374 \N 1 2006-02-16 02:30:53
  45843. 15967 2005-08-23 19:50:06 321 257 2005-08-29 14:51:06 1 2006-02-16 02:30:53
  45844. 15968 2005-08-23 19:51:29 3598 257 2005-08-24 15:07:29 1 2006-02-16 02:30:53
  45845. 15969 2005-08-23 19:51:30 1807 327 2005-08-31 23:50:30 1 2006-02-16 02:30:53
  45846. 15970 2005-08-23 19:54:24 4509 395 2005-08-24 18:07:24 1 2006-02-16 02:30:53
  45847. 15971 2005-08-23 19:59:33 3456 187 2005-09-02 01:28:33 1 2006-02-16 02:30:53
  45848. 15972 2005-08-23 20:00:30 4428 25 2005-08-30 00:25:30 1 2006-02-16 02:30:53
  45849. 15973 2005-08-23 20:04:41 2766 343 2005-09-01 20:08:41 2 2006-02-16 02:30:53
  45850. 15974 2005-08-23 20:06:04 3518 201 2005-08-27 17:33:04 2 2006-02-16 02:30:53
  45851. 15975 2005-08-23 20:06:23 2723 174 2005-08-27 19:52:23 1 2006-02-16 02:30:53
  45852. 15976 2005-08-23 20:07:08 835 227 2005-08-25 01:47:08 2 2006-02-16 02:30:53
  45853. 15977 2005-08-23 20:07:10 1031 550 2005-09-01 22:12:10 2 2006-02-16 02:30:53
  45854. 15978 2005-08-23 20:08:18 4444 536 2005-08-31 17:35:18 2 2006-02-16 02:30:53
  45855. 15979 2005-08-23 20:08:26 3733 536 2005-08-26 19:19:26 1 2006-02-16 02:30:53
  45856. 15980 2005-08-23 20:10:13 3365 196 2005-08-24 17:44:13 2 2006-02-16 02:30:53
  45857. 15981 2005-08-23 20:12:17 2867 489 2005-08-30 20:43:17 1 2006-02-16 02:30:53
  45858. 15982 2005-08-23 20:13:31 2920 370 2005-09-01 21:51:31 2 2006-02-16 02:30:53
  45859. 15983 2005-08-23 20:13:38 3318 464 2005-08-30 18:42:38 1 2006-02-16 02:30:53
  45860. 15984 2005-08-23 20:16:27 2011 495 2005-08-27 01:43:27 1 2006-02-16 02:30:53
  45861. 15985 2005-08-23 20:20:23 2646 179 2005-08-26 20:55:23 1 2006-02-16 02:30:53
  45862. 15986 2005-08-23 20:20:37 3472 226 2005-08-29 20:49:37 1 2006-02-16 02:30:53
  45863. 15987 2005-08-23 20:22:17 3150 302 2005-08-31 21:46:17 2 2006-02-16 02:30:53
  45864. 15988 2005-08-23 20:23:08 3932 400 2005-08-28 20:50:08 1 2006-02-16 02:30:53
  45865. 15989 2005-08-23 20:24:36 38 96 2005-08-26 20:35:36 1 2006-02-16 02:30:53
  45866. 15990 2005-08-23 20:25:11 3233 512 2005-08-25 15:01:11 2 2006-02-16 02:30:53
  45867. 15991 2005-08-23 20:27:34 2078 203 2005-08-28 16:48:34 2 2006-02-16 02:30:53
  45868. 15992 2005-08-23 20:28:32 3334 589 2005-08-24 21:35:32 1 2006-02-16 02:30:53
  45869. 15993 2005-08-23 20:28:44 1638 12 2005-08-27 16:23:44 2 2006-02-16 02:30:53
  45870. 15994 2005-08-23 20:29:10 438 595 2005-08-28 01:41:10 2 2006-02-16 02:30:53
  45871. 15995 2005-08-23 20:29:56 1122 377 2005-08-30 18:09:56 1 2006-02-16 02:30:53
  45872. 15996 2005-08-23 20:31:38 3098 151 2005-08-29 20:58:38 1 2006-02-16 02:30:53
  45873. 15997 2005-08-23 20:40:31 2843 447 2005-08-26 19:47:31 1 2006-02-16 02:30:53
  45874. 15998 2005-08-23 20:41:09 1229 545 2005-08-27 00:20:09 1 2006-02-16 02:30:53
  45875. 15999 2005-08-23 20:44:10 2584 377 2005-08-31 02:38:10 2 2006-02-16 02:30:53
  45876. 16000 2005-08-23 20:44:36 282 71 2005-08-25 02:29:36 1 2006-02-16 02:30:53
  45877. 16001 2005-08-23 20:45:53 245 108 2005-08-27 15:52:53 1 2006-02-16 02:30:53
  45878. 16002 2005-08-23 20:47:12 2770 73 2005-08-27 23:07:12 1 2006-02-16 02:30:53
  45879. 16003 2005-08-23 20:47:28 3413 577 2005-08-31 23:22:28 1 2006-02-16 02:30:53
  45880. 16004 2005-08-23 20:53:20 2223 147 2005-08-31 15:15:20 2 2006-02-16 02:30:53
  45881. 16005 2005-08-23 21:00:22 3265 466 2005-09-02 02:35:22 1 2006-02-16 02:30:53
  45882. 16006 2005-08-23 21:01:09 240 533 2005-08-25 19:33:09 1 2006-02-16 02:30:53
  45883. 16007 2005-08-23 21:02:43 3236 126 2005-08-30 23:37:43 2 2006-02-16 02:30:53
  45884. 16008 2005-08-23 21:04:51 3273 189 2005-08-31 22:09:51 1 2006-02-16 02:30:53
  45885. 16009 2005-08-23 21:07:59 3055 133 2005-08-29 16:54:59 2 2006-02-16 02:30:53
  45886. 16010 2005-08-23 21:10:24 2539 173 2005-08-25 17:58:24 1 2006-02-16 02:30:53
  45887. 16011 2005-08-23 21:11:33 1093 389 2005-08-31 17:51:33 1 2006-02-16 02:30:53
  45888. 16012 2005-08-23 21:13:39 2421 80 2005-08-30 23:52:39 2 2006-02-16 02:30:53
  45889. 16013 2005-08-23 21:17:17 561 462 2005-08-26 21:15:17 1 2006-02-16 02:30:53
  45890. 16014 2005-08-23 21:18:31 3322 532 2005-08-31 17:28:31 2 2006-02-16 02:30:53
  45891. 16015 2005-08-23 21:25:03 3113 50 2005-08-24 20:05:03 2 2006-02-16 02:30:53
  45892. 16016 2005-08-23 21:26:35 3374 595 2005-08-28 16:06:35 2 2006-02-16 02:30:53
  45893. 16017 2005-08-23 21:27:11 664 535 2005-08-24 23:22:11 1 2006-02-16 02:30:53
  45894. 16018 2005-08-23 21:27:35 897 439 2005-08-30 00:36:35 1 2006-02-16 02:30:53
  45895. 16019 2005-08-23 21:30:45 3093 278 2005-08-27 23:45:45 2 2006-02-16 02:30:53
  45896. 16020 2005-08-23 21:34:33 277 311 2005-09-01 18:17:33 1 2006-02-16 02:30:53
  45897. 16021 2005-08-23 21:37:59 3057 314 2005-08-31 01:52:59 1 2006-02-16 02:30:53
  45898. 16022 2005-08-23 21:44:27 2925 504 2005-08-28 01:52:27 1 2006-02-16 02:30:53
  45899. 16023 2005-08-23 21:45:02 2347 124 2005-08-24 21:28:02 1 2006-02-16 02:30:53
  45900. 16024 2005-08-23 21:46:47 2910 473 2005-08-27 02:06:47 1 2006-02-16 02:30:53
  45901. 16025 2005-08-23 21:48:54 1777 569 2005-08-24 22:05:54 2 2006-02-16 02:30:53
  45902. 16026 2005-08-23 21:49:22 467 484 2005-08-27 00:47:22 1 2006-02-16 02:30:53
  45903. 16027 2005-08-23 21:49:33 1724 160 2005-08-30 16:19:33 2 2006-02-16 02:30:53
  45904. 16028 2005-08-23 21:52:56 2515 119 2005-08-30 18:16:56 2 2006-02-16 02:30:53
  45905. 16029 2005-08-23 21:54:02 953 143 2005-08-29 23:55:02 1 2006-02-16 02:30:53
  45906. 16030 2005-08-23 21:56:04 4161 137 2005-08-31 01:24:04 2 2006-02-16 02:30:53
  45907. 16031 2005-08-23 21:59:26 1843 102 2005-08-29 20:15:26 1 2006-02-16 02:30:53
  45908. 16032 2005-08-23 21:59:57 2527 447 2005-08-31 22:46:57 2 2006-02-16 02:30:53
  45909. 16033 2005-08-23 22:06:15 760 226 2005-09-01 02:36:15 2 2006-02-16 02:30:53
  45910. 16034 2005-08-23 22:06:34 655 502 2005-08-29 18:44:34 1 2006-02-16 02:30:53
  45911. 16035 2005-08-23 22:08:04 549 37 2005-08-28 03:46:04 1 2006-02-16 02:30:53
  45912. 16036 2005-08-23 22:12:44 1372 425 2005-08-25 17:48:44 2 2006-02-16 02:30:53
  45913. 16037 2005-08-23 22:13:04 341 45 2005-09-01 02:48:04 2 2006-02-16 02:30:53
  45914. 16038 2005-08-23 22:14:31 2612 172 2005-08-30 03:28:31 1 2006-02-16 02:30:53
  45915. 16039 2005-08-23 22:18:51 545 78 2005-08-31 19:55:51 2 2006-02-16 02:30:53
  45916. 16040 2005-08-23 22:19:33 3524 195 2005-09-02 02:19:33 2 2006-02-16 02:30:53
  45917. 16041 2005-08-23 22:20:26 4116 121 2005-08-25 20:14:26 2 2006-02-16 02:30:53
  45918. 16042 2005-08-23 22:20:40 629 131 2005-08-24 17:54:40 1 2006-02-16 02:30:53
  45919. 16043 2005-08-23 22:21:03 3869 526 2005-08-31 03:09:03 2 2006-02-16 02:30:53
  45920. 16044 2005-08-23 22:24:39 1312 468 2005-08-25 04:08:39 1 2006-02-16 02:30:53
  45921. 16045 2005-08-23 22:25:26 772 14 2005-08-25 23:54:26 1 2006-02-16 02:30:53
  45922. 16046 2005-08-23 22:26:47 4364 74 2005-08-27 18:02:47 2 2006-02-16 02:30:53
  45923. 16047 2005-08-23 22:42:48 2088 114 2005-08-25 02:48:48 2 2006-02-16 02:30:53
  45924. 16048 2005-08-23 22:43:07 2019 103 2005-08-31 21:33:07 1 2006-02-16 02:30:53
  45925. 16049 2005-08-23 22:50:12 2666 393 2005-08-30 01:01:12 2 2006-02-16 02:30:53
  45926. 1 2005-05-24 22:53:30 367 130 2005-05-26 22:04:30 1 2006-02-15 21:30:53
  45927. \.
  45928.  
  45929.  
  45930. --
  45931. -- Name: rental_rental_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  45932. --
  45933.  
  45934. SELECT pg_catalog.setval('"rental_rental_id_seq"', 16049, true);
  45935.  
  45936.  
  45937. --
  45938. -- Data for Name: staff; Type: TABLE DATA; Schema: public; Owner: postgres
  45939. --
  45940.  
  45941. COPY "staff" ("staff_id", "first_name", "last_name", "address_id", "email", "store_id", "active", "username", "password", "last_update", "picture") FROM stdin;
  45942. 1 Mike Hillyer 3 Mike.Hillyer@sakilastaff.com 1 t Mike 8cb2237d0679ca88db6464eac60da96345513964 2006-05-16 16:13:11.79328 \\x89504e470d0a5a0a
  45943. 2 Jon Stephens 4 Jon.Stephens@sakilastaff.com 2 t Jon 8cb2237d0679ca88db6464eac60da96345513964 2006-05-16 16:13:11.79328 \N
  45944. \.
  45945.  
  45946.  
  45947. --
  45948. -- Name: staff_staff_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  45949. --
  45950.  
  45951. SELECT pg_catalog.setval('"staff_staff_id_seq"', 2, true);
  45952.  
  45953.  
  45954. --
  45955. -- Data for Name: store; Type: TABLE DATA; Schema: public; Owner: postgres
  45956. --
  45957.  
  45958. COPY "store" ("store_id", "manager_staff_id", "address_id", "last_update") FROM stdin;
  45959. 1 1 1 2006-02-15 09:57:12
  45960. 2 2 2 2006-02-15 09:57:12
  45961. \.
  45962.  
  45963.  
  45964. --
  45965. -- Name: store_store_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  45966. --
  45967.  
  45968. SELECT pg_catalog.setval('"store_store_id_seq"', 2, true);
  45969.  
  45970.  
  45971. --
  45972. -- Name: actor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  45973. --
  45974.  
  45975. ALTER TABLE ONLY "actor"
  45976. ADD CONSTRAINT "actor_pkey" PRIMARY KEY ("actor_id");
  45977.  
  45978.  
  45979. --
  45980. -- Name: address_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  45981. --
  45982.  
  45983. ALTER TABLE ONLY "address"
  45984. ADD CONSTRAINT "address_pkey" PRIMARY KEY ("address_id");
  45985.  
  45986.  
  45987. --
  45988. -- Name: category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  45989. --
  45990.  
  45991. ALTER TABLE ONLY "category"
  45992. ADD CONSTRAINT "category_pkey" PRIMARY KEY ("category_id");
  45993.  
  45994.  
  45995. --
  45996. -- Name: city_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  45997. --
  45998.  
  45999. ALTER TABLE ONLY "city"
  46000. ADD CONSTRAINT "city_pkey" PRIMARY KEY ("city_id");
  46001.  
  46002.  
  46003. --
  46004. -- Name: country_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46005. --
  46006.  
  46007. ALTER TABLE ONLY "country"
  46008. ADD CONSTRAINT "country_pkey" PRIMARY KEY ("country_id");
  46009.  
  46010.  
  46011. --
  46012. -- Name: customer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46013. --
  46014.  
  46015. ALTER TABLE ONLY "customer"
  46016. ADD CONSTRAINT "customer_pkey" PRIMARY KEY ("customer_id");
  46017.  
  46018.  
  46019. --
  46020. -- Name: film_actor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46021. --
  46022.  
  46023. ALTER TABLE ONLY "film_actor"
  46024. ADD CONSTRAINT "film_actor_pkey" PRIMARY KEY ("actor_id", "film_id");
  46025.  
  46026.  
  46027. --
  46028. -- Name: film_category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46029. --
  46030.  
  46031. ALTER TABLE ONLY "film_category"
  46032. ADD CONSTRAINT "film_category_pkey" PRIMARY KEY ("film_id", "category_id");
  46033.  
  46034.  
  46035. --
  46036. -- Name: film_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46037. --
  46038.  
  46039. ALTER TABLE ONLY "film"
  46040. ADD CONSTRAINT "film_pkey" PRIMARY KEY ("film_id");
  46041.  
  46042.  
  46043. --
  46044. -- Name: inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46045. --
  46046.  
  46047. ALTER TABLE ONLY "inventory"
  46048. ADD CONSTRAINT "inventory_pkey" PRIMARY KEY ("inventory_id");
  46049.  
  46050.  
  46051. --
  46052. -- Name: language_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46053. --
  46054.  
  46055. ALTER TABLE ONLY "language"
  46056. ADD CONSTRAINT "language_pkey" PRIMARY KEY ("language_id");
  46057.  
  46058.  
  46059. --
  46060. -- Name: payment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46061. --
  46062.  
  46063. ALTER TABLE ONLY "payment"
  46064. ADD CONSTRAINT "payment_pkey" PRIMARY KEY ("payment_id");
  46065.  
  46066.  
  46067. --
  46068. -- Name: rental_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46069. --
  46070.  
  46071. ALTER TABLE ONLY "rental"
  46072. ADD CONSTRAINT "rental_pkey" PRIMARY KEY ("rental_id");
  46073.  
  46074.  
  46075. --
  46076. -- Name: staff_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46077. --
  46078.  
  46079. ALTER TABLE ONLY "staff"
  46080. ADD CONSTRAINT "staff_pkey" PRIMARY KEY ("staff_id");
  46081.  
  46082.  
  46083. --
  46084. -- Name: store_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  46085. --
  46086.  
  46087. ALTER TABLE ONLY "store"
  46088. ADD CONSTRAINT "store_pkey" PRIMARY KEY ("store_id");
  46089.  
  46090.  
  46091. --
  46092. -- Name: film_fulltext_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46093. --
  46094.  
  46095. CREATE INDEX "film_fulltext_idx" ON "film" USING "gist" ("fulltext");
  46096.  
  46097.  
  46098. --
  46099. -- Name: idx_actor_last_name; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46100. --
  46101.  
  46102. CREATE INDEX "idx_actor_last_name" ON "actor" USING "btree" ("last_name");
  46103.  
  46104.  
  46105. --
  46106. -- Name: idx_fk_address_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46107. --
  46108.  
  46109. CREATE INDEX "idx_fk_address_id" ON "customer" USING "btree" ("address_id");
  46110.  
  46111.  
  46112. --
  46113. -- Name: idx_fk_city_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46114. --
  46115.  
  46116. CREATE INDEX "idx_fk_city_id" ON "address" USING "btree" ("city_id");
  46117.  
  46118.  
  46119. --
  46120. -- Name: idx_fk_country_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46121. --
  46122.  
  46123. CREATE INDEX "idx_fk_country_id" ON "city" USING "btree" ("country_id");
  46124.  
  46125.  
  46126. --
  46127. -- Name: idx_fk_customer_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46128. --
  46129.  
  46130. CREATE INDEX "idx_fk_customer_id" ON "payment" USING "btree" ("customer_id");
  46131.  
  46132.  
  46133. --
  46134. -- Name: idx_fk_film_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46135. --
  46136.  
  46137. CREATE INDEX "idx_fk_film_id" ON "film_actor" USING "btree" ("film_id");
  46138.  
  46139.  
  46140. --
  46141. -- Name: idx_fk_inventory_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46142. --
  46143.  
  46144. CREATE INDEX "idx_fk_inventory_id" ON "rental" USING "btree" ("inventory_id");
  46145.  
  46146.  
  46147. --
  46148. -- Name: idx_fk_language_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46149. --
  46150.  
  46151. CREATE INDEX "idx_fk_language_id" ON "film" USING "btree" ("language_id");
  46152.  
  46153.  
  46154. --
  46155. -- Name: idx_fk_rental_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46156. --
  46157.  
  46158. CREATE INDEX "idx_fk_rental_id" ON "payment" USING "btree" ("rental_id");
  46159.  
  46160.  
  46161. --
  46162. -- Name: idx_fk_staff_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46163. --
  46164.  
  46165. CREATE INDEX "idx_fk_staff_id" ON "payment" USING "btree" ("staff_id");
  46166.  
  46167.  
  46168. --
  46169. -- Name: idx_fk_store_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46170. --
  46171.  
  46172. CREATE INDEX "idx_fk_store_id" ON "customer" USING "btree" ("store_id");
  46173.  
  46174.  
  46175. --
  46176. -- Name: idx_last_name; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46177. --
  46178.  
  46179. CREATE INDEX "idx_last_name" ON "customer" USING "btree" ("last_name");
  46180.  
  46181.  
  46182. --
  46183. -- Name: idx_store_id_film_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46184. --
  46185.  
  46186. CREATE INDEX "idx_store_id_film_id" ON "inventory" USING "btree" ("store_id", "film_id");
  46187.  
  46188.  
  46189. --
  46190. -- Name: idx_title; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46191. --
  46192.  
  46193. CREATE INDEX "idx_title" ON "film" USING "btree" ("title");
  46194.  
  46195.  
  46196. --
  46197. -- Name: idx_unq_manager_staff_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46198. --
  46199.  
  46200. CREATE UNIQUE INDEX "idx_unq_manager_staff_id" ON "store" USING "btree" ("manager_staff_id");
  46201.  
  46202.  
  46203. --
  46204. -- Name: idx_unq_rental_rental_date_inventory_id_customer_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  46205. --
  46206.  
  46207. CREATE UNIQUE INDEX "idx_unq_rental_rental_date_inventory_id_customer_id" ON "rental" USING "btree" ("rental_date", "inventory_id", "customer_id");
  46208.  
  46209.  
  46210. --
  46211. -- Name: film_fulltext_trigger; Type: TRIGGER; Schema: public; Owner: postgres
  46212. --
  46213.  
  46214. CREATE TRIGGER "film_fulltext_trigger" BEFORE INSERT OR UPDATE ON "film" FOR EACH ROW EXECUTE PROCEDURE "tsvector_update_trigger"('fulltext', 'pg_catalog.english', 'title', 'description');
  46215.  
  46216.  
  46217. --
  46218. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46219. --
  46220.  
  46221. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "actor" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46222.  
  46223.  
  46224. --
  46225. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46226. --
  46227.  
  46228. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "address" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46229.  
  46230.  
  46231. --
  46232. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46233. --
  46234.  
  46235. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "category" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46236.  
  46237.  
  46238. --
  46239. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46240. --
  46241.  
  46242. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "city" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46243.  
  46244.  
  46245. --
  46246. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46247. --
  46248.  
  46249. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "country" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46250.  
  46251.  
  46252. --
  46253. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46254. --
  46255.  
  46256. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "customer" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46257.  
  46258.  
  46259. --
  46260. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46261. --
  46262.  
  46263. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "film" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46264.  
  46265.  
  46266. --
  46267. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46268. --
  46269.  
  46270. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "film_actor" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46271.  
  46272.  
  46273. --
  46274. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46275. --
  46276.  
  46277. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "film_category" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46278.  
  46279.  
  46280. --
  46281. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46282. --
  46283.  
  46284. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "inventory" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46285.  
  46286.  
  46287. --
  46288. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46289. --
  46290.  
  46291. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "language" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46292.  
  46293.  
  46294. --
  46295. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46296. --
  46297.  
  46298. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "rental" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46299.  
  46300.  
  46301. --
  46302. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46303. --
  46304.  
  46305. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "staff" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46306.  
  46307.  
  46308. --
  46309. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  46310. --
  46311.  
  46312. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "store" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  46313.  
  46314.  
  46315. --
  46316. -- Name: customer_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46317. --
  46318.  
  46319. ALTER TABLE ONLY "customer"
  46320. ADD CONSTRAINT "customer_address_id_fkey" FOREIGN KEY ("address_id") REFERENCES "address"("address_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46321.  
  46322.  
  46323. --
  46324. -- Name: film_actor_actor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46325. --
  46326.  
  46327. ALTER TABLE ONLY "film_actor"
  46328. ADD CONSTRAINT "film_actor_actor_id_fkey" FOREIGN KEY ("actor_id") REFERENCES "actor"("actor_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46329.  
  46330.  
  46331. --
  46332. -- Name: film_actor_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46333. --
  46334.  
  46335. ALTER TABLE ONLY "film_actor"
  46336. ADD CONSTRAINT "film_actor_film_id_fkey" FOREIGN KEY ("film_id") REFERENCES "film"("film_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46337.  
  46338.  
  46339. --
  46340. -- Name: film_category_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46341. --
  46342.  
  46343. ALTER TABLE ONLY "film_category"
  46344. ADD CONSTRAINT "film_category_category_id_fkey" FOREIGN KEY ("category_id") REFERENCES "category"("category_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46345.  
  46346.  
  46347. --
  46348. -- Name: film_category_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46349. --
  46350.  
  46351. ALTER TABLE ONLY "film_category"
  46352. ADD CONSTRAINT "film_category_film_id_fkey" FOREIGN KEY ("film_id") REFERENCES "film"("film_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46353.  
  46354.  
  46355. --
  46356. -- Name: film_language_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46357. --
  46358.  
  46359. ALTER TABLE ONLY "film"
  46360. ADD CONSTRAINT "film_language_id_fkey" FOREIGN KEY ("language_id") REFERENCES "language"("language_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46361.  
  46362.  
  46363. --
  46364. -- Name: fk_address_city; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46365. --
  46366.  
  46367. ALTER TABLE ONLY "address"
  46368. ADD CONSTRAINT "fk_address_city" FOREIGN KEY ("city_id") REFERENCES "city"("city_id");
  46369.  
  46370.  
  46371. --
  46372. -- Name: fk_city; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46373. --
  46374.  
  46375. ALTER TABLE ONLY "city"
  46376. ADD CONSTRAINT "fk_city" FOREIGN KEY ("country_id") REFERENCES "country"("country_id");
  46377.  
  46378.  
  46379. --
  46380. -- Name: inventory_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46381. --
  46382.  
  46383. ALTER TABLE ONLY "inventory"
  46384. ADD CONSTRAINT "inventory_film_id_fkey" FOREIGN KEY ("film_id") REFERENCES "film"("film_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46385.  
  46386.  
  46387. --
  46388. -- Name: payment_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46389. --
  46390.  
  46391. ALTER TABLE ONLY "payment"
  46392. ADD CONSTRAINT "payment_customer_id_fkey" FOREIGN KEY ("customer_id") REFERENCES "customer"("customer_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46393.  
  46394.  
  46395. --
  46396. -- Name: payment_rental_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46397. --
  46398.  
  46399. ALTER TABLE ONLY "payment"
  46400. ADD CONSTRAINT "payment_rental_id_fkey" FOREIGN KEY ("rental_id") REFERENCES "rental"("rental_id") ON UPDATE CASCADE ON DELETE SET NULL;
  46401.  
  46402.  
  46403. --
  46404. -- Name: payment_staff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46405. --
  46406.  
  46407. ALTER TABLE ONLY "payment"
  46408. ADD CONSTRAINT "payment_staff_id_fkey" FOREIGN KEY ("staff_id") REFERENCES "staff"("staff_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46409.  
  46410.  
  46411. --
  46412. -- Name: rental_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46413. --
  46414.  
  46415. ALTER TABLE ONLY "rental"
  46416. ADD CONSTRAINT "rental_customer_id_fkey" FOREIGN KEY ("customer_id") REFERENCES "customer"("customer_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46417.  
  46418.  
  46419. --
  46420. -- Name: rental_inventory_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46421. --
  46422.  
  46423. ALTER TABLE ONLY "rental"
  46424. ADD CONSTRAINT "rental_inventory_id_fkey" FOREIGN KEY ("inventory_id") REFERENCES "inventory"("inventory_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46425.  
  46426.  
  46427. --
  46428. -- Name: rental_staff_id_key; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46429. --
  46430.  
  46431. ALTER TABLE ONLY "rental"
  46432. ADD CONSTRAINT "rental_staff_id_key" FOREIGN KEY ("staff_id") REFERENCES "staff"("staff_id");
  46433.  
  46434.  
  46435. --
  46436. -- Name: staff_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46437. --
  46438.  
  46439. ALTER TABLE ONLY "staff"
  46440. ADD CONSTRAINT "staff_address_id_fkey" FOREIGN KEY ("address_id") REFERENCES "address"("address_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46441.  
  46442.  
  46443. --
  46444. -- Name: store_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46445. --
  46446.  
  46447. ALTER TABLE ONLY "store"
  46448. ADD CONSTRAINT "store_address_id_fkey" FOREIGN KEY ("address_id") REFERENCES "address"("address_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46449.  
  46450.  
  46451. --
  46452. -- Name: store_manager_staff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  46453. --
  46454.  
  46455. ALTER TABLE ONLY "store"
  46456. ADD CONSTRAINT "store_manager_staff_id_fkey" FOREIGN KEY ("manager_staff_id") REFERENCES "staff"("staff_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  46457.  
  46458.  
  46459. --
  46460. -- Name: public; Type: ACL; Schema: -; Owner: postgres
  46461. --
  46462.  
  46463. REVOKE ALL ON SCHEMA "public" FROM PUBLIC;
  46464. REVOKE ALL ON SCHEMA "public" FROM "postgres";
  46465. GRANT ALL ON SCHEMA "public" TO "postgres";
  46466. GRANT ALL ON SCHEMA "public" TO PUBLIC;
  46467.  
  46468.  
  46469. --
  46470. -- Name: _group_concat("text", "text"); Type: ACL; Schema: public; Owner: postgres
  46471. --
  46472.  
  46473. REVOKE ALL ON FUNCTION "_group_concat"("text", "text") FROM PUBLIC;
  46474. REVOKE ALL ON FUNCTION "_group_concat"("text", "text") FROM "postgres";
  46475. GRANT ALL ON FUNCTION "_group_concat"("text", "text") TO "postgres";
  46476. GRANT ALL ON FUNCTION "_group_concat"("text", "text") TO PUBLIC;
  46477. GRANT ALL ON FUNCTION "_group_concat"("text", "text") TO "dsr";
  46478.  
  46479.  
  46480. --
  46481. -- Name: film_in_stock(integer, integer); Type: ACL; Schema: public; Owner: postgres
  46482. --
  46483.  
  46484. REVOKE ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM PUBLIC;
  46485. REVOKE ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM "postgres";
  46486. GRANT ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "postgres";
  46487. GRANT ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO PUBLIC;
  46488. GRANT ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "dsr";
  46489.  
  46490.  
  46491. --
  46492. -- Name: film_not_in_stock(integer, integer); Type: ACL; Schema: public; Owner: postgres
  46493. --
  46494.  
  46495. REVOKE ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM PUBLIC;
  46496. REVOKE ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM "postgres";
  46497. GRANT ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "postgres";
  46498. GRANT ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO PUBLIC;
  46499. GRANT ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "dsr";
  46500.  
  46501.  
  46502. --
  46503. -- Name: get_customer_balance(integer, timestamp without time zone); Type: ACL; Schema: public; Owner: postgres
  46504. --
  46505.  
  46506. REVOKE ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) FROM PUBLIC;
  46507. REVOKE ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) FROM "postgres";
  46508. GRANT ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) TO "postgres";
  46509. GRANT ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) TO PUBLIC;
  46510. GRANT ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) TO "dsr";
  46511.  
  46512.  
  46513. --
  46514. -- Name: inventory_held_by_customer(integer); Type: ACL; Schema: public; Owner: postgres
  46515. --
  46516.  
  46517. REVOKE ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) FROM PUBLIC;
  46518. REVOKE ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) FROM "postgres";
  46519. GRANT ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) TO "postgres";
  46520. GRANT ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) TO PUBLIC;
  46521. GRANT ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) TO "dsr";
  46522.  
  46523.  
  46524. --
  46525. -- Name: inventory_in_stock(integer); Type: ACL; Schema: public; Owner: postgres
  46526. --
  46527.  
  46528. REVOKE ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) FROM PUBLIC;
  46529. REVOKE ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) FROM "postgres";
  46530. GRANT ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) TO "postgres";
  46531. GRANT ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) TO PUBLIC;
  46532. GRANT ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) TO "dsr";
  46533.  
  46534.  
  46535. --
  46536. -- Name: last_day(timestamp without time zone); Type: ACL; Schema: public; Owner: postgres
  46537. --
  46538.  
  46539. REVOKE ALL ON FUNCTION "last_day"(timestamp without time zone) FROM PUBLIC;
  46540. REVOKE ALL ON FUNCTION "last_day"(timestamp without time zone) FROM "postgres";
  46541. GRANT ALL ON FUNCTION "last_day"(timestamp without time zone) TO "postgres";
  46542. GRANT ALL ON FUNCTION "last_day"(timestamp without time zone) TO PUBLIC;
  46543. GRANT ALL ON FUNCTION "last_day"(timestamp without time zone) TO "dsr";
  46544.  
  46545.  
  46546. --
  46547. -- Name: last_updated(); Type: ACL; Schema: public; Owner: postgres
  46548. --
  46549.  
  46550. REVOKE ALL ON FUNCTION "last_updated"() FROM PUBLIC;
  46551. REVOKE ALL ON FUNCTION "last_updated"() FROM "postgres";
  46552. GRANT ALL ON FUNCTION "last_updated"() TO "postgres";
  46553. GRANT ALL ON FUNCTION "last_updated"() TO PUBLIC;
  46554. GRANT ALL ON FUNCTION "last_updated"() TO "dsr";
  46555.  
  46556.  
  46557. --
  46558. -- Name: customer; Type: ACL; Schema: public; Owner: postgres
  46559. --
  46560.  
  46561. REVOKE ALL ON TABLE "customer" FROM PUBLIC;
  46562. REVOKE ALL ON TABLE "customer" FROM "postgres";
  46563. GRANT ALL ON TABLE "customer" TO "postgres";
  46564. GRANT SELECT ON TABLE "customer" TO "dsr";
  46565.  
  46566.  
  46567. --
  46568. -- Name: rewards_report(integer, numeric); Type: ACL; Schema: public; Owner: postgres
  46569. --
  46570.  
  46571. REVOKE ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) FROM PUBLIC;
  46572. REVOKE ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) FROM "postgres";
  46573. GRANT ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) TO "postgres";
  46574. GRANT ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) TO PUBLIC;
  46575. GRANT ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) TO "dsr";
  46576.  
  46577.  
  46578. --
  46579. -- Name: group_concat("text"); Type: ACL; Schema: public; Owner: postgres
  46580. --
  46581.  
  46582. REVOKE ALL ON FUNCTION "group_concat"("text") FROM PUBLIC;
  46583. REVOKE ALL ON FUNCTION "group_concat"("text") FROM "postgres";
  46584. GRANT ALL ON FUNCTION "group_concat"("text") TO "postgres";
  46585. GRANT ALL ON FUNCTION "group_concat"("text") TO PUBLIC;
  46586. GRANT ALL ON FUNCTION "group_concat"("text") TO "dsr";
  46587.  
  46588.  
  46589. --
  46590. -- Name: actor; Type: ACL; Schema: public; Owner: postgres
  46591. --
  46592.  
  46593. REVOKE ALL ON TABLE "actor" FROM PUBLIC;
  46594. REVOKE ALL ON TABLE "actor" FROM "postgres";
  46595. GRANT ALL ON TABLE "actor" TO "postgres";
  46596. GRANT SELECT ON TABLE "actor" TO "dsr";
  46597.  
  46598.  
  46599. --
  46600. -- Name: category; Type: ACL; Schema: public; Owner: postgres
  46601. --
  46602.  
  46603. REVOKE ALL ON TABLE "category" FROM PUBLIC;
  46604. REVOKE ALL ON TABLE "category" FROM "postgres";
  46605. GRANT ALL ON TABLE "category" TO "postgres";
  46606. GRANT SELECT ON TABLE "category" TO "dsr";
  46607.  
  46608.  
  46609. --
  46610. -- Name: film; Type: ACL; Schema: public; Owner: postgres
  46611. --
  46612.  
  46613. REVOKE ALL ON TABLE "film" FROM PUBLIC;
  46614. REVOKE ALL ON TABLE "film" FROM "postgres";
  46615. GRANT ALL ON TABLE "film" TO "postgres";
  46616. GRANT SELECT ON TABLE "film" TO "dsr";
  46617.  
  46618.  
  46619. --
  46620. -- Name: film_actor; Type: ACL; Schema: public; Owner: postgres
  46621. --
  46622.  
  46623. REVOKE ALL ON TABLE "film_actor" FROM PUBLIC;
  46624. REVOKE ALL ON TABLE "film_actor" FROM "postgres";
  46625. GRANT ALL ON TABLE "film_actor" TO "postgres";
  46626. GRANT SELECT ON TABLE "film_actor" TO "dsr";
  46627.  
  46628.  
  46629. --
  46630. -- Name: film_category; Type: ACL; Schema: public; Owner: postgres
  46631. --
  46632.  
  46633. REVOKE ALL ON TABLE "film_category" FROM PUBLIC;
  46634. REVOKE ALL ON TABLE "film_category" FROM "postgres";
  46635. GRANT ALL ON TABLE "film_category" TO "postgres";
  46636. GRANT SELECT ON TABLE "film_category" TO "dsr";
  46637.  
  46638.  
  46639. --
  46640. -- Name: actor_info; Type: ACL; Schema: public; Owner: postgres
  46641. --
  46642.  
  46643. REVOKE ALL ON TABLE "actor_info" FROM PUBLIC;
  46644. REVOKE ALL ON TABLE "actor_info" FROM "postgres";
  46645. GRANT ALL ON TABLE "actor_info" TO "postgres";
  46646. GRANT SELECT ON TABLE "actor_info" TO "dsr";
  46647.  
  46648.  
  46649. --
  46650. -- Name: address; Type: ACL; Schema: public; Owner: postgres
  46651. --
  46652.  
  46653. REVOKE ALL ON TABLE "address" FROM PUBLIC;
  46654. REVOKE ALL ON TABLE "address" FROM "postgres";
  46655. GRANT ALL ON TABLE "address" TO "postgres";
  46656. GRANT SELECT ON TABLE "address" TO "dsr";
  46657.  
  46658.  
  46659. --
  46660. -- Name: city; Type: ACL; Schema: public; Owner: postgres
  46661. --
  46662.  
  46663. REVOKE ALL ON TABLE "city" FROM PUBLIC;
  46664. REVOKE ALL ON TABLE "city" FROM "postgres";
  46665. GRANT ALL ON TABLE "city" TO "postgres";
  46666. GRANT SELECT ON TABLE "city" TO "dsr";
  46667.  
  46668.  
  46669. --
  46670. -- Name: country; Type: ACL; Schema: public; Owner: postgres
  46671. --
  46672.  
  46673. REVOKE ALL ON TABLE "country" FROM PUBLIC;
  46674. REVOKE ALL ON TABLE "country" FROM "postgres";
  46675. GRANT ALL ON TABLE "country" TO "postgres";
  46676. GRANT SELECT ON TABLE "country" TO "dsr";
  46677.  
  46678.  
  46679. --
  46680. -- Name: customer_list; Type: ACL; Schema: public; Owner: postgres
  46681. --
  46682.  
  46683. REVOKE ALL ON TABLE "customer_list" FROM PUBLIC;
  46684. REVOKE ALL ON TABLE "customer_list" FROM "postgres";
  46685. GRANT ALL ON TABLE "customer_list" TO "postgres";
  46686. GRANT SELECT ON TABLE "customer_list" TO "dsr";
  46687.  
  46688.  
  46689. --
  46690. -- Name: film_list; Type: ACL; Schema: public; Owner: postgres
  46691. --
  46692.  
  46693. REVOKE ALL ON TABLE "film_list" FROM PUBLIC;
  46694. REVOKE ALL ON TABLE "film_list" FROM "postgres";
  46695. GRANT ALL ON TABLE "film_list" TO "postgres";
  46696. GRANT SELECT ON TABLE "film_list" TO "dsr";
  46697.  
  46698.  
  46699. --
  46700. -- Name: inventory; Type: ACL; Schema: public; Owner: postgres
  46701. --
  46702.  
  46703. REVOKE ALL ON TABLE "inventory" FROM PUBLIC;
  46704. REVOKE ALL ON TABLE "inventory" FROM "postgres";
  46705. GRANT ALL ON TABLE "inventory" TO "postgres";
  46706. GRANT SELECT ON TABLE "inventory" TO "dsr";
  46707.  
  46708.  
  46709. --
  46710. -- Name: language; Type: ACL; Schema: public; Owner: postgres
  46711. --
  46712.  
  46713. REVOKE ALL ON TABLE "language" FROM PUBLIC;
  46714. REVOKE ALL ON TABLE "language" FROM "postgres";
  46715. GRANT ALL ON TABLE "language" TO "postgres";
  46716. GRANT SELECT ON TABLE "language" TO "dsr";
  46717.  
  46718.  
  46719. --
  46720. -- Name: nicer_but_slower_film_list; Type: ACL; Schema: public; Owner: postgres
  46721. --
  46722.  
  46723. REVOKE ALL ON TABLE "nicer_but_slower_film_list" FROM PUBLIC;
  46724. REVOKE ALL ON TABLE "nicer_but_slower_film_list" FROM "postgres";
  46725. GRANT ALL ON TABLE "nicer_but_slower_film_list" TO "postgres";
  46726. GRANT SELECT ON TABLE "nicer_but_slower_film_list" TO "dsr";
  46727.  
  46728.  
  46729. --
  46730. -- Name: payment; Type: ACL; Schema: public; Owner: postgres
  46731. --
  46732.  
  46733. REVOKE ALL ON TABLE "payment" FROM PUBLIC;
  46734. REVOKE ALL ON TABLE "payment" FROM "postgres";
  46735. GRANT ALL ON TABLE "payment" TO "postgres";
  46736. GRANT SELECT ON TABLE "payment" TO "dsr";
  46737.  
  46738.  
  46739. --
  46740. -- Name: rental; Type: ACL; Schema: public; Owner: postgres
  46741. --
  46742.  
  46743. REVOKE ALL ON TABLE "rental" FROM PUBLIC;
  46744. REVOKE ALL ON TABLE "rental" FROM "postgres";
  46745. GRANT ALL ON TABLE "rental" TO "postgres";
  46746. GRANT SELECT ON TABLE "rental" TO "dsr";
  46747.  
  46748.  
  46749. --
  46750. -- Name: sales_by_film_category; Type: ACL; Schema: public; Owner: postgres
  46751. --
  46752.  
  46753. REVOKE ALL ON TABLE "sales_by_film_category" FROM PUBLIC;
  46754. REVOKE ALL ON TABLE "sales_by_film_category" FROM "postgres";
  46755. GRANT ALL ON TABLE "sales_by_film_category" TO "postgres";
  46756. GRANT SELECT ON TABLE "sales_by_film_category" TO "dsr";
  46757.  
  46758.  
  46759. --
  46760. -- Name: staff; Type: ACL; Schema: public; Owner: postgres
  46761. --
  46762.  
  46763. REVOKE ALL ON TABLE "staff" FROM PUBLIC;
  46764. REVOKE ALL ON TABLE "staff" FROM "postgres";
  46765. GRANT ALL ON TABLE "staff" TO "postgres";
  46766. GRANT SELECT ON TABLE "staff" TO "dsr";
  46767.  
  46768.  
  46769. --
  46770. -- Name: store; Type: ACL; Schema: public; Owner: postgres
  46771. --
  46772.  
  46773. REVOKE ALL ON TABLE "store" FROM PUBLIC;
  46774. REVOKE ALL ON TABLE "store" FROM "postgres";
  46775. GRANT ALL ON TABLE "store" TO "postgres";
  46776. GRANT SELECT ON TABLE "store" TO "dsr";
  46777.  
  46778.  
  46779. --
  46780. -- Name: sales_by_store; Type: ACL; Schema: public; Owner: postgres
  46781. --
  46782.  
  46783. REVOKE ALL ON TABLE "sales_by_store" FROM PUBLIC;
  46784. REVOKE ALL ON TABLE "sales_by_store" FROM "postgres";
  46785. GRANT ALL ON TABLE "sales_by_store" TO "postgres";
  46786. GRANT SELECT ON TABLE "sales_by_store" TO "dsr";
  46787.  
  46788.  
  46789. --
  46790. -- Name: staff_list; Type: ACL; Schema: public; Owner: postgres
  46791. --
  46792.  
  46793. REVOKE ALL ON TABLE "staff_list" FROM PUBLIC;
  46794. REVOKE ALL ON TABLE "staff_list" FROM "postgres";
  46795. GRANT ALL ON TABLE "staff_list" TO "postgres";
  46796. GRANT SELECT ON TABLE "staff_list" TO "dsr";
  46797.  
  46798.  
  46799. --
  46800. -- PostgreSQL database dump complete
  46801. --
  46802.  
  46803. \connect "postgres"
  46804.  
  46805. SET default_transaction_read_only = off;
  46806.  
  46807. --
  46808. -- PostgreSQL database dump
  46809. --
  46810.  
  46811. SET statement_timeout = 0;
  46812. SET lock_timeout = 0;
  46813. SET client_encoding = 'UTF8';
  46814. SET standard_conforming_strings = on;
  46815. SET check_function_bodies = false;
  46816. SET client_min_messages = warning;
  46817.  
  46818. --
  46819. -- Name: postgres; Type: COMMENT; Schema: -; Owner: postgres
  46820. --
  46821.  
  46822. COMMENT ON DATABASE "postgres" IS 'default administrative connection database';
  46823.  
  46824.  
  46825. --
  46826. -- Name: SCHEMA "public"; Type: COMMENT; Schema: -; Owner: postgres
  46827. --
  46828.  
  46829. COMMENT ON SCHEMA "public" IS 'Standard public schema';
  46830.  
  46831.  
  46832. --
  46833. -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
  46834. --
  46835.  
  46836. CREATE EXTENSION IF NOT EXISTS "plpgsql" WITH SCHEMA "pg_catalog";
  46837.  
  46838.  
  46839. --
  46840. -- Name: EXTENSION "plpgsql"; Type: COMMENT; Schema: -; Owner:
  46841. --
  46842.  
  46843. COMMENT ON EXTENSION "plpgsql" IS 'PL/pgSQL procedural language';
  46844.  
  46845.  
  46846. SET search_path = "public", pg_catalog;
  46847.  
  46848. --
  46849. -- Name: mpaa_rating; Type: TYPE; Schema: public; Owner: postgres
  46850. --
  46851.  
  46852. CREATE TYPE "mpaa_rating" AS ENUM (
  46853. 'G',
  46854. 'PG',
  46855. 'PG-13',
  46856. 'R',
  46857. 'NC-17'
  46858. );
  46859.  
  46860.  
  46861. ALTER TYPE "public"."mpaa_rating" OWNER TO "postgres";
  46862.  
  46863. --
  46864. -- Name: year; Type: DOMAIN; Schema: public; Owner: postgres
  46865. --
  46866.  
  46867. CREATE DOMAIN "year" AS integer
  46868. CONSTRAINT "year_check" CHECK (((VALUE >= 1901) AND (VALUE <= 2155)));
  46869.  
  46870.  
  46871. ALTER DOMAIN "public"."year" OWNER TO "postgres";
  46872.  
  46873. --
  46874. -- Name: _group_concat("text", "text"); Type: FUNCTION; Schema: public; Owner: postgres
  46875. --
  46876.  
  46877. CREATE FUNCTION "_group_concat"("text", "text") RETURNS "text"
  46878. LANGUAGE "sql" IMMUTABLE
  46879. AS $_$
  46880. SELECT CASE
  46881. WHEN $2 IS NULL THEN $1
  46882. WHEN $1 IS NULL THEN $2
  46883. ELSE $1 || ', ' || $2
  46884. END
  46885. $_$;
  46886.  
  46887.  
  46888. ALTER FUNCTION "public"."_group_concat"("text", "text") OWNER TO "postgres";
  46889.  
  46890. --
  46891. -- Name: film_in_stock(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres
  46892. --
  46893.  
  46894. CREATE FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) RETURNS SETOF integer
  46895. LANGUAGE "sql"
  46896. AS $_$
  46897. SELECT inventory_id
  46898. FROM inventory
  46899. WHERE film_id = $1
  46900. AND store_id = $2
  46901. AND inventory_in_stock(inventory_id);
  46902. $_$;
  46903.  
  46904.  
  46905. ALTER FUNCTION "public"."film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) OWNER TO "postgres";
  46906.  
  46907. --
  46908. -- Name: film_not_in_stock(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres
  46909. --
  46910.  
  46911. CREATE FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) RETURNS SETOF integer
  46912. LANGUAGE "sql"
  46913. AS $_$
  46914. SELECT inventory_id
  46915. FROM inventory
  46916. WHERE film_id = $1
  46917. AND store_id = $2
  46918. AND NOT inventory_in_stock(inventory_id);
  46919. $_$;
  46920.  
  46921.  
  46922. ALTER FUNCTION "public"."film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) OWNER TO "postgres";
  46923.  
  46924. --
  46925. -- Name: get_customer_balance(integer, timestamp without time zone); Type: FUNCTION; Schema: public; Owner: postgres
  46926. --
  46927.  
  46928. CREATE FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) RETURNS numeric
  46929. LANGUAGE "plpgsql"
  46930. AS $$
  46931. --#OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE
  46932. --#THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS:
  46933. --# 1) RENTAL FEES FOR ALL PREVIOUS RENTALS
  46934. --# 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE
  46935. --# 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST
  46936. --# 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED
  46937. DECLARE
  46938. v_rentfees DECIMAL(5,2); --#FEES PAID TO RENT THE VIDEOS INITIALLY
  46939. v_overfees INTEGER; --#LATE FEES FOR PRIOR RENTALS
  46940. v_payments DECIMAL(5,2); --#SUM OF PAYMENTS MADE PREVIOUSLY
  46941. BEGIN
  46942. SELECT COALESCE(SUM(film.rental_rate),0) INTO v_rentfees
  46943. FROM film, inventory, rental
  46944. WHERE film.film_id = inventory.film_id
  46945. AND inventory.inventory_id = rental.inventory_id
  46946. AND rental.rental_date <= p_effective_date
  46947. AND rental.customer_id = p_customer_id;
  46948.  
  46949. SELECT COALESCE(SUM(IF((rental.return_date - rental.rental_date) > (film.rental_duration * '1 day'::interval),
  46950. ((rental.return_date - rental.rental_date) - (film.rental_duration * '1 day'::interval)),0)),0) INTO v_overfees
  46951. FROM rental, inventory, film
  46952. WHERE film.film_id = inventory.film_id
  46953. AND inventory.inventory_id = rental.inventory_id
  46954. AND rental.rental_date <= p_effective_date
  46955. AND rental.customer_id = p_customer_id;
  46956.  
  46957. SELECT COALESCE(SUM(payment.amount),0) INTO v_payments
  46958. FROM payment
  46959. WHERE payment.payment_date <= p_effective_date
  46960. AND payment.customer_id = p_customer_id;
  46961.  
  46962. RETURN v_rentfees + v_overfees - v_payments;
  46963. END
  46964. $$;
  46965.  
  46966.  
  46967. ALTER FUNCTION "public"."get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) OWNER TO "postgres";
  46968.  
  46969. --
  46970. -- Name: inventory_held_by_customer(integer); Type: FUNCTION; Schema: public; Owner: postgres
  46971. --
  46972.  
  46973. CREATE FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) RETURNS integer
  46974. LANGUAGE "plpgsql"
  46975. AS $$
  46976. DECLARE
  46977. v_customer_id INTEGER;
  46978. BEGIN
  46979.  
  46980. SELECT customer_id INTO v_customer_id
  46981. FROM rental
  46982. WHERE return_date IS NULL
  46983. AND inventory_id = p_inventory_id;
  46984.  
  46985. RETURN v_customer_id;
  46986. END $$;
  46987.  
  46988.  
  46989. ALTER FUNCTION "public"."inventory_held_by_customer"("p_inventory_id" integer) OWNER TO "postgres";
  46990.  
  46991. --
  46992. -- Name: inventory_in_stock(integer); Type: FUNCTION; Schema: public; Owner: postgres
  46993. --
  46994.  
  46995. CREATE FUNCTION "inventory_in_stock"("p_inventory_id" integer) RETURNS boolean
  46996. LANGUAGE "plpgsql"
  46997. AS $$
  46998. DECLARE
  46999. v_rentals INTEGER;
  47000. v_out INTEGER;
  47001. BEGIN
  47002. -- AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE
  47003. -- FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED
  47004.  
  47005. SELECT count(*) INTO v_rentals
  47006. FROM rental
  47007. WHERE inventory_id = p_inventory_id;
  47008.  
  47009. IF v_rentals = 0 THEN
  47010. RETURN TRUE;
  47011. END IF;
  47012.  
  47013. SELECT COUNT(rental_id) INTO v_out
  47014. FROM inventory LEFT JOIN rental USING(inventory_id)
  47015. WHERE inventory.inventory_id = p_inventory_id
  47016. AND rental.return_date IS NULL;
  47017.  
  47018. IF v_out > 0 THEN
  47019. RETURN FALSE;
  47020. ELSE
  47021. RETURN TRUE;
  47022. END IF;
  47023. END $$;
  47024.  
  47025.  
  47026. ALTER FUNCTION "public"."inventory_in_stock"("p_inventory_id" integer) OWNER TO "postgres";
  47027.  
  47028. --
  47029. -- Name: last_day(timestamp without time zone); Type: FUNCTION; Schema: public; Owner: postgres
  47030. --
  47031.  
  47032. CREATE FUNCTION "last_day"(timestamp without time zone) RETURNS "date"
  47033. LANGUAGE "sql" IMMUTABLE STRICT
  47034. AS $_$
  47035. SELECT CASE
  47036. WHEN EXTRACT(MONTH FROM $1) = 12 THEN
  47037. (((EXTRACT(YEAR FROM $1) + 1) operator(pg_catalog.||) '-01-01')::date - INTERVAL '1 day')::date
  47038. ELSE
  47039. ((EXTRACT(YEAR FROM $1) operator(pg_catalog.||) '-' operator(pg_catalog.||) (EXTRACT(MONTH FROM $1) + 1) operator(pg_catalog.||) '-01')::date - INTERVAL '1 day')::date
  47040. END
  47041. $_$;
  47042.  
  47043.  
  47044. ALTER FUNCTION "public"."last_day"(timestamp without time zone) OWNER TO "postgres";
  47045.  
  47046. --
  47047. -- Name: last_updated(); Type: FUNCTION; Schema: public; Owner: postgres
  47048. --
  47049.  
  47050. CREATE FUNCTION "last_updated"() RETURNS "trigger"
  47051. LANGUAGE "plpgsql"
  47052. AS $$
  47053. BEGIN
  47054. NEW.last_update = CURRENT_TIMESTAMP;
  47055. RETURN NEW;
  47056. END $$;
  47057.  
  47058.  
  47059. ALTER FUNCTION "public"."last_updated"() OWNER TO "postgres";
  47060.  
  47061. --
  47062. -- Name: customer_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47063. --
  47064.  
  47065. CREATE SEQUENCE "customer_customer_id_seq"
  47066. START WITH 1
  47067. INCREMENT BY 1
  47068. NO MINVALUE
  47069. NO MAXVALUE
  47070. CACHE 1;
  47071.  
  47072.  
  47073. ALTER TABLE "public"."customer_customer_id_seq" OWNER TO "postgres";
  47074.  
  47075. SET default_tablespace = '';
  47076.  
  47077. SET default_with_oids = false;
  47078.  
  47079. --
  47080. -- Name: customer; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47081. --
  47082.  
  47083. CREATE TABLE "customer" (
  47084. "customer_id" integer DEFAULT "nextval"('"customer_customer_id_seq"'::"regclass") NOT NULL,
  47085. "store_id" smallint NOT NULL,
  47086. "first_name" character varying(45) NOT NULL,
  47087. "last_name" character varying(45) NOT NULL,
  47088. "email" character varying(50),
  47089. "address_id" smallint NOT NULL,
  47090. "activebool" boolean DEFAULT true NOT NULL,
  47091. "create_date" "date" DEFAULT ('now'::"text")::"date" NOT NULL,
  47092. "last_update" timestamp without time zone DEFAULT "now"(),
  47093. "active" integer
  47094. );
  47095.  
  47096.  
  47097. ALTER TABLE "public"."customer" OWNER TO "postgres";
  47098.  
  47099. --
  47100. -- Name: rewards_report(integer, numeric); Type: FUNCTION; Schema: public; Owner: postgres
  47101. --
  47102.  
  47103. CREATE FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) RETURNS SETOF "customer"
  47104. LANGUAGE "plpgsql" SECURITY DEFINER
  47105. AS $_$
  47106. DECLARE
  47107. last_month_start DATE;
  47108. last_month_end DATE;
  47109. rr RECORD;
  47110. tmpSQL TEXT;
  47111. BEGIN
  47112.  
  47113. /* Some sanity checks... */
  47114. IF min_monthly_purchases = 0 THEN
  47115. RAISE EXCEPTION 'Minimum monthly purchases parameter must be > 0';
  47116. END IF;
  47117. IF min_dollar_amount_purchased = 0.00 THEN
  47118. RAISE EXCEPTION 'Minimum monthly dollar amount purchased parameter must be > $0.00';
  47119. END IF;
  47120.  
  47121. last_month_start := CURRENT_DATE - '3 month'::interval;
  47122. last_month_start := to_date((extract(YEAR FROM last_month_start) || '-' || extract(MONTH FROM last_month_start) || '-01'),'YYYY-MM-DD');
  47123. last_month_end := LAST_DAY(last_month_start);
  47124.  
  47125. /*
  47126. Create a temporary storage area for Customer IDs.
  47127. */
  47128. CREATE TEMPORARY TABLE tmpCustomer (customer_id INTEGER NOT NULL PRIMARY KEY);
  47129.  
  47130. /*
  47131. Find all customers meeting the monthly purchase requirements
  47132. */
  47133.  
  47134. tmpSQL := 'INSERT INTO tmpCustomer (customer_id)
  47135. SELECT p.customer_id
  47136. FROM payment AS p
  47137. WHERE DATE(p.payment_date) BETWEEN '||quote_literal(last_month_start) ||' AND '|| quote_literal(last_month_end) || '
  47138. GROUP BY customer_id
  47139. HAVING SUM(p.amount) > '|| min_dollar_amount_purchased || '
  47140. AND COUNT(customer_id) > ' ||min_monthly_purchases ;
  47141.  
  47142. EXECUTE tmpSQL;
  47143.  
  47144. /*
  47145. Output ALL customer information of matching rewardees.
  47146. Customize output as needed.
  47147. */
  47148. FOR rr IN EXECUTE 'SELECT c.* FROM tmpCustomer AS t INNER JOIN customer AS c ON t.customer_id = c.customer_id' LOOP
  47149. RETURN NEXT rr;
  47150. END LOOP;
  47151.  
  47152. /* Clean up */
  47153. tmpSQL := 'DROP TABLE tmpCustomer';
  47154. EXECUTE tmpSQL;
  47155.  
  47156. RETURN;
  47157. END
  47158. $_$;
  47159.  
  47160.  
  47161. ALTER FUNCTION "public"."rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) OWNER TO "postgres";
  47162.  
  47163. --
  47164. -- Name: group_concat("text"); Type: AGGREGATE; Schema: public; Owner: postgres
  47165. --
  47166.  
  47167. CREATE AGGREGATE "group_concat"("text") (
  47168. SFUNC = "_group_concat",
  47169. STYPE = "text"
  47170. );
  47171.  
  47172.  
  47173. ALTER AGGREGATE "public"."group_concat"("text") OWNER TO "postgres";
  47174.  
  47175. --
  47176. -- Name: actor_actor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47177. --
  47178.  
  47179. CREATE SEQUENCE "actor_actor_id_seq"
  47180. START WITH 1
  47181. INCREMENT BY 1
  47182. NO MINVALUE
  47183. NO MAXVALUE
  47184. CACHE 1;
  47185.  
  47186.  
  47187. ALTER TABLE "public"."actor_actor_id_seq" OWNER TO "postgres";
  47188.  
  47189. --
  47190. -- Name: actor; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47191. --
  47192.  
  47193. CREATE TABLE "actor" (
  47194. "actor_id" integer DEFAULT "nextval"('"actor_actor_id_seq"'::"regclass") NOT NULL,
  47195. "first_name" character varying(45) NOT NULL,
  47196. "last_name" character varying(45) NOT NULL,
  47197. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47198. );
  47199.  
  47200.  
  47201. ALTER TABLE "public"."actor" OWNER TO "postgres";
  47202.  
  47203. --
  47204. -- Name: category_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47205. --
  47206.  
  47207. CREATE SEQUENCE "category_category_id_seq"
  47208. START WITH 1
  47209. INCREMENT BY 1
  47210. NO MINVALUE
  47211. NO MAXVALUE
  47212. CACHE 1;
  47213.  
  47214.  
  47215. ALTER TABLE "public"."category_category_id_seq" OWNER TO "postgres";
  47216.  
  47217. --
  47218. -- Name: category; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47219. --
  47220.  
  47221. CREATE TABLE "category" (
  47222. "category_id" integer DEFAULT "nextval"('"category_category_id_seq"'::"regclass") NOT NULL,
  47223. "name" character varying(25) NOT NULL,
  47224. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47225. );
  47226.  
  47227.  
  47228. ALTER TABLE "public"."category" OWNER TO "postgres";
  47229.  
  47230. --
  47231. -- Name: film_film_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47232. --
  47233.  
  47234. CREATE SEQUENCE "film_film_id_seq"
  47235. START WITH 1
  47236. INCREMENT BY 1
  47237. NO MINVALUE
  47238. NO MAXVALUE
  47239. CACHE 1;
  47240.  
  47241.  
  47242. ALTER TABLE "public"."film_film_id_seq" OWNER TO "postgres";
  47243.  
  47244. --
  47245. -- Name: film; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47246. --
  47247.  
  47248. CREATE TABLE "film" (
  47249. "film_id" integer DEFAULT "nextval"('"film_film_id_seq"'::"regclass") NOT NULL,
  47250. "title" character varying(255) NOT NULL,
  47251. "description" "text",
  47252. "release_year" "year",
  47253. "language_id" smallint NOT NULL,
  47254. "rental_duration" smallint DEFAULT 3 NOT NULL,
  47255. "rental_rate" numeric(4,2) DEFAULT 4.99 NOT NULL,
  47256. "length" smallint,
  47257. "replacement_cost" numeric(5,2) DEFAULT 19.99 NOT NULL,
  47258. "rating" "mpaa_rating" DEFAULT 'G'::"mpaa_rating",
  47259. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL,
  47260. "special_features" "text"[],
  47261. "fulltext" "tsvector" NOT NULL
  47262. );
  47263.  
  47264.  
  47265. ALTER TABLE "public"."film" OWNER TO "postgres";
  47266.  
  47267. --
  47268. -- Name: film_actor; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47269. --
  47270.  
  47271. CREATE TABLE "film_actor" (
  47272. "actor_id" smallint NOT NULL,
  47273. "film_id" smallint NOT NULL,
  47274. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47275. );
  47276.  
  47277.  
  47278. ALTER TABLE "public"."film_actor" OWNER TO "postgres";
  47279.  
  47280. --
  47281. -- Name: film_category; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47282. --
  47283.  
  47284. CREATE TABLE "film_category" (
  47285. "film_id" smallint NOT NULL,
  47286. "category_id" smallint NOT NULL,
  47287. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47288. );
  47289.  
  47290.  
  47291. ALTER TABLE "public"."film_category" OWNER TO "postgres";
  47292.  
  47293. --
  47294. -- Name: actor_info; Type: VIEW; Schema: public; Owner: postgres
  47295. --
  47296.  
  47297. CREATE VIEW "actor_info" AS
  47298. SELECT "a"."actor_id",
  47299. "a"."first_name",
  47300. "a"."last_name",
  47301. "group_concat"(DISTINCT ((("c"."name")::"text" || ': '::"text") || ( SELECT "group_concat"(("f"."title")::"text") AS "group_concat"
  47302. FROM (("film" "f"
  47303. JOIN "film_category" "fc_1" ON (("f"."film_id" = "fc_1"."film_id")))
  47304. JOIN "film_actor" "fa_1" ON (("f"."film_id" = "fa_1"."film_id")))
  47305. WHERE (("fc_1"."category_id" = "c"."category_id") AND ("fa_1"."actor_id" = "a"."actor_id"))
  47306. GROUP BY "fa_1"."actor_id"))) AS "film_info"
  47307. FROM ((("actor" "a"
  47308. LEFT JOIN "film_actor" "fa" ON (("a"."actor_id" = "fa"."actor_id")))
  47309. LEFT JOIN "film_category" "fc" ON (("fa"."film_id" = "fc"."film_id")))
  47310. LEFT JOIN "category" "c" ON (("fc"."category_id" = "c"."category_id")))
  47311. GROUP BY "a"."actor_id", "a"."first_name", "a"."last_name";
  47312.  
  47313.  
  47314. ALTER TABLE "public"."actor_info" OWNER TO "postgres";
  47315.  
  47316. --
  47317. -- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47318. --
  47319.  
  47320. CREATE SEQUENCE "address_address_id_seq"
  47321. START WITH 1
  47322. INCREMENT BY 1
  47323. NO MINVALUE
  47324. NO MAXVALUE
  47325. CACHE 1;
  47326.  
  47327.  
  47328. ALTER TABLE "public"."address_address_id_seq" OWNER TO "postgres";
  47329.  
  47330. --
  47331. -- Name: address; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47332. --
  47333.  
  47334. CREATE TABLE "address" (
  47335. "address_id" integer DEFAULT "nextval"('"address_address_id_seq"'::"regclass") NOT NULL,
  47336. "address" character varying(50) NOT NULL,
  47337. "address2" character varying(50),
  47338. "district" character varying(20) NOT NULL,
  47339. "city_id" smallint NOT NULL,
  47340. "postal_code" character varying(10),
  47341. "phone" character varying(20) NOT NULL,
  47342. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47343. );
  47344.  
  47345.  
  47346. ALTER TABLE "public"."address" OWNER TO "postgres";
  47347.  
  47348. --
  47349. -- Name: city_city_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47350. --
  47351.  
  47352. CREATE SEQUENCE "city_city_id_seq"
  47353. START WITH 1
  47354. INCREMENT BY 1
  47355. NO MINVALUE
  47356. NO MAXVALUE
  47357. CACHE 1;
  47358.  
  47359.  
  47360. ALTER TABLE "public"."city_city_id_seq" OWNER TO "postgres";
  47361.  
  47362. --
  47363. -- Name: city; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47364. --
  47365.  
  47366. CREATE TABLE "city" (
  47367. "city_id" integer DEFAULT "nextval"('"city_city_id_seq"'::"regclass") NOT NULL,
  47368. "city" character varying(50) NOT NULL,
  47369. "country_id" smallint NOT NULL,
  47370. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47371. );
  47372.  
  47373.  
  47374. ALTER TABLE "public"."city" OWNER TO "postgres";
  47375.  
  47376. --
  47377. -- Name: country_country_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47378. --
  47379.  
  47380. CREATE SEQUENCE "country_country_id_seq"
  47381. START WITH 1
  47382. INCREMENT BY 1
  47383. NO MINVALUE
  47384. NO MAXVALUE
  47385. CACHE 1;
  47386.  
  47387.  
  47388. ALTER TABLE "public"."country_country_id_seq" OWNER TO "postgres";
  47389.  
  47390. --
  47391. -- Name: country; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47392. --
  47393.  
  47394. CREATE TABLE "country" (
  47395. "country_id" integer DEFAULT "nextval"('"country_country_id_seq"'::"regclass") NOT NULL,
  47396. "country" character varying(50) NOT NULL,
  47397. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47398. );
  47399.  
  47400.  
  47401. ALTER TABLE "public"."country" OWNER TO "postgres";
  47402.  
  47403. --
  47404. -- Name: customer_list; Type: VIEW; Schema: public; Owner: postgres
  47405. --
  47406.  
  47407. CREATE VIEW "customer_list" AS
  47408. SELECT "cu"."customer_id" AS "id",
  47409. ((("cu"."first_name")::"text" || ' '::"text") || ("cu"."last_name")::"text") AS "name",
  47410. "a"."address",
  47411. "a"."postal_code" AS "zip code",
  47412. "a"."phone",
  47413. "city"."city",
  47414. "country"."country",
  47415. CASE
  47416. WHEN "cu"."activebool" THEN 'active'::"text"
  47417. ELSE ''::"text"
  47418. END AS "notes",
  47419. "cu"."store_id" AS "sid"
  47420. FROM ((("customer" "cu"
  47421. JOIN "address" "a" ON (("cu"."address_id" = "a"."address_id")))
  47422. JOIN "city" ON (("a"."city_id" = "city"."city_id")))
  47423. JOIN "country" ON (("city"."country_id" = "country"."country_id")));
  47424.  
  47425.  
  47426. ALTER TABLE "public"."customer_list" OWNER TO "postgres";
  47427.  
  47428. --
  47429. -- Name: film_list; Type: VIEW; Schema: public; Owner: postgres
  47430. --
  47431.  
  47432. CREATE VIEW "film_list" AS
  47433. SELECT "film"."film_id" AS "fid",
  47434. "film"."title",
  47435. "film"."description",
  47436. "category"."name" AS "category",
  47437. "film"."rental_rate" AS "price",
  47438. "film"."length",
  47439. "film"."rating",
  47440. "group_concat"(((("actor"."first_name")::"text" || ' '::"text") || ("actor"."last_name")::"text")) AS "actors"
  47441. FROM (((("category"
  47442. LEFT JOIN "film_category" ON (("category"."category_id" = "film_category"."category_id")))
  47443. LEFT JOIN "film" ON (("film_category"."film_id" = "film"."film_id")))
  47444. JOIN "film_actor" ON (("film"."film_id" = "film_actor"."film_id")))
  47445. JOIN "actor" ON (("film_actor"."actor_id" = "actor"."actor_id")))
  47446. GROUP BY "film"."film_id", "film"."title", "film"."description", "category"."name", "film"."rental_rate", "film"."length", "film"."rating";
  47447.  
  47448.  
  47449. ALTER TABLE "public"."film_list" OWNER TO "postgres";
  47450.  
  47451. --
  47452. -- Name: inventory_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47453. --
  47454.  
  47455. CREATE SEQUENCE "inventory_inventory_id_seq"
  47456. START WITH 1
  47457. INCREMENT BY 1
  47458. NO MINVALUE
  47459. NO MAXVALUE
  47460. CACHE 1;
  47461.  
  47462.  
  47463. ALTER TABLE "public"."inventory_inventory_id_seq" OWNER TO "postgres";
  47464.  
  47465. --
  47466. -- Name: inventory; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47467. --
  47468.  
  47469. CREATE TABLE "inventory" (
  47470. "inventory_id" integer DEFAULT "nextval"('"inventory_inventory_id_seq"'::"regclass") NOT NULL,
  47471. "film_id" smallint NOT NULL,
  47472. "store_id" smallint NOT NULL,
  47473. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47474. );
  47475.  
  47476.  
  47477. ALTER TABLE "public"."inventory" OWNER TO "postgres";
  47478.  
  47479. --
  47480. -- Name: language_language_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47481. --
  47482.  
  47483. CREATE SEQUENCE "language_language_id_seq"
  47484. START WITH 1
  47485. INCREMENT BY 1
  47486. NO MINVALUE
  47487. NO MAXVALUE
  47488. CACHE 1;
  47489.  
  47490.  
  47491. ALTER TABLE "public"."language_language_id_seq" OWNER TO "postgres";
  47492.  
  47493. --
  47494. -- Name: language; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47495. --
  47496.  
  47497. CREATE TABLE "language" (
  47498. "language_id" integer DEFAULT "nextval"('"language_language_id_seq"'::"regclass") NOT NULL,
  47499. "name" character(20) NOT NULL,
  47500. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47501. );
  47502.  
  47503.  
  47504. ALTER TABLE "public"."language" OWNER TO "postgres";
  47505.  
  47506. --
  47507. -- Name: nicer_but_slower_film_list; Type: VIEW; Schema: public; Owner: postgres
  47508. --
  47509.  
  47510. CREATE VIEW "nicer_but_slower_film_list" AS
  47511. SELECT "film"."film_id" AS "fid",
  47512. "film"."title",
  47513. "film"."description",
  47514. "category"."name" AS "category",
  47515. "film"."rental_rate" AS "price",
  47516. "film"."length",
  47517. "film"."rating",
  47518. "group_concat"(((("upper"("substring"(("actor"."first_name")::"text", 1, 1)) || "lower"("substring"(("actor"."first_name")::"text", 2))) || "upper"("substring"(("actor"."last_name")::"text", 1, 1))) || "lower"("substring"(("actor"."last_name")::"text", 2)))) AS "actors"
  47519. FROM (((("category"
  47520. LEFT JOIN "film_category" ON (("category"."category_id" = "film_category"."category_id")))
  47521. LEFT JOIN "film" ON (("film_category"."film_id" = "film"."film_id")))
  47522. JOIN "film_actor" ON (("film"."film_id" = "film_actor"."film_id")))
  47523. JOIN "actor" ON (("film_actor"."actor_id" = "actor"."actor_id")))
  47524. GROUP BY "film"."film_id", "film"."title", "film"."description", "category"."name", "film"."rental_rate", "film"."length", "film"."rating";
  47525.  
  47526.  
  47527. ALTER TABLE "public"."nicer_but_slower_film_list" OWNER TO "postgres";
  47528.  
  47529. --
  47530. -- Name: payment_payment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47531. --
  47532.  
  47533. CREATE SEQUENCE "payment_payment_id_seq"
  47534. START WITH 1
  47535. INCREMENT BY 1
  47536. NO MINVALUE
  47537. NO MAXVALUE
  47538. CACHE 1;
  47539.  
  47540.  
  47541. ALTER TABLE "public"."payment_payment_id_seq" OWNER TO "postgres";
  47542.  
  47543. --
  47544. -- Name: payment; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47545. --
  47546.  
  47547. CREATE TABLE "payment" (
  47548. "payment_id" integer DEFAULT "nextval"('"payment_payment_id_seq"'::"regclass") NOT NULL,
  47549. "customer_id" smallint NOT NULL,
  47550. "staff_id" smallint NOT NULL,
  47551. "rental_id" integer NOT NULL,
  47552. "amount" numeric(5,2) NOT NULL,
  47553. "payment_date" timestamp without time zone NOT NULL
  47554. );
  47555.  
  47556.  
  47557. ALTER TABLE "public"."payment" OWNER TO "postgres";
  47558.  
  47559. --
  47560. -- Name: rental_rental_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47561. --
  47562.  
  47563. CREATE SEQUENCE "rental_rental_id_seq"
  47564. START WITH 1
  47565. INCREMENT BY 1
  47566. NO MINVALUE
  47567. NO MAXVALUE
  47568. CACHE 1;
  47569.  
  47570.  
  47571. ALTER TABLE "public"."rental_rental_id_seq" OWNER TO "postgres";
  47572.  
  47573. --
  47574. -- Name: rental; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47575. --
  47576.  
  47577. CREATE TABLE "rental" (
  47578. "rental_id" integer DEFAULT "nextval"('"rental_rental_id_seq"'::"regclass") NOT NULL,
  47579. "rental_date" timestamp without time zone NOT NULL,
  47580. "inventory_id" integer NOT NULL,
  47581. "customer_id" smallint NOT NULL,
  47582. "return_date" timestamp without time zone,
  47583. "staff_id" smallint NOT NULL,
  47584. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47585. );
  47586.  
  47587.  
  47588. ALTER TABLE "public"."rental" OWNER TO "postgres";
  47589.  
  47590. --
  47591. -- Name: sales_by_film_category; Type: VIEW; Schema: public; Owner: postgres
  47592. --
  47593.  
  47594. CREATE VIEW "sales_by_film_category" AS
  47595. SELECT "c"."name" AS "category",
  47596. "sum"("p"."amount") AS "total_sales"
  47597. FROM ((((("payment" "p"
  47598. JOIN "rental" "r" ON (("p"."rental_id" = "r"."rental_id")))
  47599. JOIN "inventory" "i" ON (("r"."inventory_id" = "i"."inventory_id")))
  47600. JOIN "film" "f" ON (("i"."film_id" = "f"."film_id")))
  47601. JOIN "film_category" "fc" ON (("f"."film_id" = "fc"."film_id")))
  47602. JOIN "category" "c" ON (("fc"."category_id" = "c"."category_id")))
  47603. GROUP BY "c"."name"
  47604. ORDER BY "sum"("p"."amount") DESC;
  47605.  
  47606.  
  47607. ALTER TABLE "public"."sales_by_film_category" OWNER TO "postgres";
  47608.  
  47609. --
  47610. -- Name: staff_staff_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47611. --
  47612.  
  47613. CREATE SEQUENCE "staff_staff_id_seq"
  47614. START WITH 1
  47615. INCREMENT BY 1
  47616. NO MINVALUE
  47617. NO MAXVALUE
  47618. CACHE 1;
  47619.  
  47620.  
  47621. ALTER TABLE "public"."staff_staff_id_seq" OWNER TO "postgres";
  47622.  
  47623. --
  47624. -- Name: staff; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47625. --
  47626.  
  47627. CREATE TABLE "staff" (
  47628. "staff_id" integer DEFAULT "nextval"('"staff_staff_id_seq"'::"regclass") NOT NULL,
  47629. "first_name" character varying(45) NOT NULL,
  47630. "last_name" character varying(45) NOT NULL,
  47631. "address_id" smallint NOT NULL,
  47632. "email" character varying(50),
  47633. "store_id" smallint NOT NULL,
  47634. "active" boolean DEFAULT true NOT NULL,
  47635. "username" character varying(16) NOT NULL,
  47636. "password" character varying(40),
  47637. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL,
  47638. "picture" "bytea"
  47639. );
  47640.  
  47641.  
  47642. ALTER TABLE "public"."staff" OWNER TO "postgres";
  47643.  
  47644. --
  47645. -- Name: store_store_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
  47646. --
  47647.  
  47648. CREATE SEQUENCE "store_store_id_seq"
  47649. START WITH 1
  47650. INCREMENT BY 1
  47651. NO MINVALUE
  47652. NO MAXVALUE
  47653. CACHE 1;
  47654.  
  47655.  
  47656. ALTER TABLE "public"."store_store_id_seq" OWNER TO "postgres";
  47657.  
  47658. --
  47659. -- Name: store; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  47660. --
  47661.  
  47662. CREATE TABLE "store" (
  47663. "store_id" integer DEFAULT "nextval"('"store_store_id_seq"'::"regclass") NOT NULL,
  47664. "manager_staff_id" smallint NOT NULL,
  47665. "address_id" smallint NOT NULL,
  47666. "last_update" timestamp without time zone DEFAULT "now"() NOT NULL
  47667. );
  47668.  
  47669.  
  47670. ALTER TABLE "public"."store" OWNER TO "postgres";
  47671.  
  47672. --
  47673. -- Name: sales_by_store; Type: VIEW; Schema: public; Owner: postgres
  47674. --
  47675.  
  47676. CREATE VIEW "sales_by_store" AS
  47677. SELECT ((("c"."city")::"text" || ','::"text") || ("cy"."country")::"text") AS "store",
  47678. ((("m"."first_name")::"text" || ' '::"text") || ("m"."last_name")::"text") AS "manager",
  47679. "sum"("p"."amount") AS "total_sales"
  47680. FROM ((((((("payment" "p"
  47681. JOIN "rental" "r" ON (("p"."rental_id" = "r"."rental_id")))
  47682. JOIN "inventory" "i" ON (("r"."inventory_id" = "i"."inventory_id")))
  47683. JOIN "store" "s" ON (("i"."store_id" = "s"."store_id")))
  47684. JOIN "address" "a" ON (("s"."address_id" = "a"."address_id")))
  47685. JOIN "city" "c" ON (("a"."city_id" = "c"."city_id")))
  47686. JOIN "country" "cy" ON (("c"."country_id" = "cy"."country_id")))
  47687. JOIN "staff" "m" ON (("s"."manager_staff_id" = "m"."staff_id")))
  47688. GROUP BY "cy"."country", "c"."city", "s"."store_id", "m"."first_name", "m"."last_name"
  47689. ORDER BY "cy"."country", "c"."city";
  47690.  
  47691.  
  47692. ALTER TABLE "public"."sales_by_store" OWNER TO "postgres";
  47693.  
  47694. --
  47695. -- Name: staff_list; Type: VIEW; Schema: public; Owner: postgres
  47696. --
  47697.  
  47698. CREATE VIEW "staff_list" AS
  47699. SELECT "s"."staff_id" AS "id",
  47700. ((("s"."first_name")::"text" || ' '::"text") || ("s"."last_name")::"text") AS "name",
  47701. "a"."address",
  47702. "a"."postal_code" AS "zip code",
  47703. "a"."phone",
  47704. "city"."city",
  47705. "country"."country",
  47706. "s"."store_id" AS "sid"
  47707. FROM ((("staff" "s"
  47708. JOIN "address" "a" ON (("s"."address_id" = "a"."address_id")))
  47709. JOIN "city" ON (("a"."city_id" = "city"."city_id")))
  47710. JOIN "country" ON (("city"."country_id" = "country"."country_id")));
  47711.  
  47712.  
  47713. ALTER TABLE "public"."staff_list" OWNER TO "postgres";
  47714.  
  47715. --
  47716. -- Data for Name: actor; Type: TABLE DATA; Schema: public; Owner: postgres
  47717. --
  47718.  
  47719. COPY "actor" ("actor_id", "first_name", "last_name", "last_update") FROM stdin;
  47720. \.
  47721.  
  47722.  
  47723. --
  47724. -- Name: actor_actor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47725. --
  47726.  
  47727. SELECT pg_catalog.setval('"actor_actor_id_seq"', 200, true);
  47728.  
  47729.  
  47730. --
  47731. -- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: postgres
  47732. --
  47733.  
  47734. COPY "address" ("address_id", "address", "address2", "district", "city_id", "postal_code", "phone", "last_update") FROM stdin;
  47735. \.
  47736.  
  47737.  
  47738. --
  47739. -- Name: address_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47740. --
  47741.  
  47742. SELECT pg_catalog.setval('"address_address_id_seq"', 605, true);
  47743.  
  47744.  
  47745. --
  47746. -- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: postgres
  47747. --
  47748.  
  47749. COPY "category" ("category_id", "name", "last_update") FROM stdin;
  47750. \.
  47751.  
  47752.  
  47753. --
  47754. -- Name: category_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47755. --
  47756.  
  47757. SELECT pg_catalog.setval('"category_category_id_seq"', 16, true);
  47758.  
  47759.  
  47760. --
  47761. -- Data for Name: city; Type: TABLE DATA; Schema: public; Owner: postgres
  47762. --
  47763.  
  47764. COPY "city" ("city_id", "city", "country_id", "last_update") FROM stdin;
  47765. \.
  47766.  
  47767.  
  47768. --
  47769. -- Name: city_city_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47770. --
  47771.  
  47772. SELECT pg_catalog.setval('"city_city_id_seq"', 600, true);
  47773.  
  47774.  
  47775. --
  47776. -- Data for Name: country; Type: TABLE DATA; Schema: public; Owner: postgres
  47777. --
  47778.  
  47779. COPY "country" ("country_id", "country", "last_update") FROM stdin;
  47780. \.
  47781.  
  47782.  
  47783. --
  47784. -- Name: country_country_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47785. --
  47786.  
  47787. SELECT pg_catalog.setval('"country_country_id_seq"', 109, true);
  47788.  
  47789.  
  47790. --
  47791. -- Data for Name: customer; Type: TABLE DATA; Schema: public; Owner: postgres
  47792. --
  47793.  
  47794. COPY "customer" ("customer_id", "store_id", "first_name", "last_name", "email", "address_id", "activebool", "create_date", "last_update", "active") FROM stdin;
  47795. \.
  47796.  
  47797.  
  47798. --
  47799. -- Name: customer_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47800. --
  47801.  
  47802. SELECT pg_catalog.setval('"customer_customer_id_seq"', 599, true);
  47803.  
  47804.  
  47805. --
  47806. -- Data for Name: film; Type: TABLE DATA; Schema: public; Owner: postgres
  47807. --
  47808.  
  47809. COPY "film" ("film_id", "title", "description", "release_year", "language_id", "rental_duration", "rental_rate", "length", "replacement_cost", "rating", "last_update", "special_features", "fulltext") FROM stdin;
  47810. \.
  47811.  
  47812.  
  47813. --
  47814. -- Data for Name: film_actor; Type: TABLE DATA; Schema: public; Owner: postgres
  47815. --
  47816.  
  47817. COPY "film_actor" ("actor_id", "film_id", "last_update") FROM stdin;
  47818. \.
  47819.  
  47820.  
  47821. --
  47822. -- Data for Name: film_category; Type: TABLE DATA; Schema: public; Owner: postgres
  47823. --
  47824.  
  47825. COPY "film_category" ("film_id", "category_id", "last_update") FROM stdin;
  47826. \.
  47827.  
  47828.  
  47829. --
  47830. -- Name: film_film_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47831. --
  47832.  
  47833. SELECT pg_catalog.setval('"film_film_id_seq"', 1000, true);
  47834.  
  47835.  
  47836. --
  47837. -- Data for Name: inventory; Type: TABLE DATA; Schema: public; Owner: postgres
  47838. --
  47839.  
  47840. COPY "inventory" ("inventory_id", "film_id", "store_id", "last_update") FROM stdin;
  47841. \.
  47842.  
  47843.  
  47844. --
  47845. -- Name: inventory_inventory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47846. --
  47847.  
  47848. SELECT pg_catalog.setval('"inventory_inventory_id_seq"', 4581, true);
  47849.  
  47850.  
  47851. --
  47852. -- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: postgres
  47853. --
  47854.  
  47855. COPY "language" ("language_id", "name", "last_update") FROM stdin;
  47856. \.
  47857.  
  47858.  
  47859. --
  47860. -- Name: language_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47861. --
  47862.  
  47863. SELECT pg_catalog.setval('"language_language_id_seq"', 6, true);
  47864.  
  47865.  
  47866. --
  47867. -- Data for Name: payment; Type: TABLE DATA; Schema: public; Owner: postgres
  47868. --
  47869.  
  47870. COPY "payment" ("payment_id", "customer_id", "staff_id", "rental_id", "amount", "payment_date") FROM stdin;
  47871. \.
  47872.  
  47873.  
  47874. --
  47875. -- Name: payment_payment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47876. --
  47877.  
  47878. SELECT pg_catalog.setval('"payment_payment_id_seq"', 32098, true);
  47879.  
  47880.  
  47881. --
  47882. -- Data for Name: rental; Type: TABLE DATA; Schema: public; Owner: postgres
  47883. --
  47884.  
  47885. COPY "rental" ("rental_id", "rental_date", "inventory_id", "customer_id", "return_date", "staff_id", "last_update") FROM stdin;
  47886. \.
  47887.  
  47888.  
  47889. --
  47890. -- Name: rental_rental_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47891. --
  47892.  
  47893. SELECT pg_catalog.setval('"rental_rental_id_seq"', 16049, true);
  47894.  
  47895.  
  47896. --
  47897. -- Data for Name: staff; Type: TABLE DATA; Schema: public; Owner: postgres
  47898. --
  47899.  
  47900. COPY "staff" ("staff_id", "first_name", "last_name", "address_id", "email", "store_id", "active", "username", "password", "last_update", "picture") FROM stdin;
  47901. \.
  47902.  
  47903.  
  47904. --
  47905. -- Name: staff_staff_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47906. --
  47907.  
  47908. SELECT pg_catalog.setval('"staff_staff_id_seq"', 2, true);
  47909.  
  47910.  
  47911. --
  47912. -- Data for Name: store; Type: TABLE DATA; Schema: public; Owner: postgres
  47913. --
  47914.  
  47915. COPY "store" ("store_id", "manager_staff_id", "address_id", "last_update") FROM stdin;
  47916. \.
  47917.  
  47918.  
  47919. --
  47920. -- Name: store_store_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
  47921. --
  47922.  
  47923. SELECT pg_catalog.setval('"store_store_id_seq"', 2, true);
  47924.  
  47925.  
  47926. --
  47927. -- Name: actor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47928. --
  47929.  
  47930. ALTER TABLE ONLY "actor"
  47931. ADD CONSTRAINT "actor_pkey" PRIMARY KEY ("actor_id");
  47932.  
  47933.  
  47934. --
  47935. -- Name: address_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47936. --
  47937.  
  47938. ALTER TABLE ONLY "address"
  47939. ADD CONSTRAINT "address_pkey" PRIMARY KEY ("address_id");
  47940.  
  47941.  
  47942. --
  47943. -- Name: category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47944. --
  47945.  
  47946. ALTER TABLE ONLY "category"
  47947. ADD CONSTRAINT "category_pkey" PRIMARY KEY ("category_id");
  47948.  
  47949.  
  47950. --
  47951. -- Name: city_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47952. --
  47953.  
  47954. ALTER TABLE ONLY "city"
  47955. ADD CONSTRAINT "city_pkey" PRIMARY KEY ("city_id");
  47956.  
  47957.  
  47958. --
  47959. -- Name: country_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47960. --
  47961.  
  47962. ALTER TABLE ONLY "country"
  47963. ADD CONSTRAINT "country_pkey" PRIMARY KEY ("country_id");
  47964.  
  47965.  
  47966. --
  47967. -- Name: customer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47968. --
  47969.  
  47970. ALTER TABLE ONLY "customer"
  47971. ADD CONSTRAINT "customer_pkey" PRIMARY KEY ("customer_id");
  47972.  
  47973.  
  47974. --
  47975. -- Name: film_actor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47976. --
  47977.  
  47978. ALTER TABLE ONLY "film_actor"
  47979. ADD CONSTRAINT "film_actor_pkey" PRIMARY KEY ("actor_id", "film_id");
  47980.  
  47981.  
  47982. --
  47983. -- Name: film_category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47984. --
  47985.  
  47986. ALTER TABLE ONLY "film_category"
  47987. ADD CONSTRAINT "film_category_pkey" PRIMARY KEY ("film_id", "category_id");
  47988.  
  47989.  
  47990. --
  47991. -- Name: film_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  47992. --
  47993.  
  47994. ALTER TABLE ONLY "film"
  47995. ADD CONSTRAINT "film_pkey" PRIMARY KEY ("film_id");
  47996.  
  47997.  
  47998. --
  47999. -- Name: inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  48000. --
  48001.  
  48002. ALTER TABLE ONLY "inventory"
  48003. ADD CONSTRAINT "inventory_pkey" PRIMARY KEY ("inventory_id");
  48004.  
  48005.  
  48006. --
  48007. -- Name: language_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  48008. --
  48009.  
  48010. ALTER TABLE ONLY "language"
  48011. ADD CONSTRAINT "language_pkey" PRIMARY KEY ("language_id");
  48012.  
  48013.  
  48014. --
  48015. -- Name: payment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  48016. --
  48017.  
  48018. ALTER TABLE ONLY "payment"
  48019. ADD CONSTRAINT "payment_pkey" PRIMARY KEY ("payment_id");
  48020.  
  48021.  
  48022. --
  48023. -- Name: rental_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  48024. --
  48025.  
  48026. ALTER TABLE ONLY "rental"
  48027. ADD CONSTRAINT "rental_pkey" PRIMARY KEY ("rental_id");
  48028.  
  48029.  
  48030. --
  48031. -- Name: staff_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  48032. --
  48033.  
  48034. ALTER TABLE ONLY "staff"
  48035. ADD CONSTRAINT "staff_pkey" PRIMARY KEY ("staff_id");
  48036.  
  48037.  
  48038. --
  48039. -- Name: store_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  48040. --
  48041.  
  48042. ALTER TABLE ONLY "store"
  48043. ADD CONSTRAINT "store_pkey" PRIMARY KEY ("store_id");
  48044.  
  48045.  
  48046. --
  48047. -- Name: film_fulltext_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48048. --
  48049.  
  48050. CREATE INDEX "film_fulltext_idx" ON "film" USING "gist" ("fulltext");
  48051.  
  48052.  
  48053. --
  48054. -- Name: idx_actor_last_name; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48055. --
  48056.  
  48057. CREATE INDEX "idx_actor_last_name" ON "actor" USING "btree" ("last_name");
  48058.  
  48059.  
  48060. --
  48061. -- Name: idx_fk_address_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48062. --
  48063.  
  48064. CREATE INDEX "idx_fk_address_id" ON "customer" USING "btree" ("address_id");
  48065.  
  48066.  
  48067. --
  48068. -- Name: idx_fk_city_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48069. --
  48070.  
  48071. CREATE INDEX "idx_fk_city_id" ON "address" USING "btree" ("city_id");
  48072.  
  48073.  
  48074. --
  48075. -- Name: idx_fk_country_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48076. --
  48077.  
  48078. CREATE INDEX "idx_fk_country_id" ON "city" USING "btree" ("country_id");
  48079.  
  48080.  
  48081. --
  48082. -- Name: idx_fk_customer_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48083. --
  48084.  
  48085. CREATE INDEX "idx_fk_customer_id" ON "payment" USING "btree" ("customer_id");
  48086.  
  48087.  
  48088. --
  48089. -- Name: idx_fk_film_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48090. --
  48091.  
  48092. CREATE INDEX "idx_fk_film_id" ON "film_actor" USING "btree" ("film_id");
  48093.  
  48094.  
  48095. --
  48096. -- Name: idx_fk_inventory_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48097. --
  48098.  
  48099. CREATE INDEX "idx_fk_inventory_id" ON "rental" USING "btree" ("inventory_id");
  48100.  
  48101.  
  48102. --
  48103. -- Name: idx_fk_language_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48104. --
  48105.  
  48106. CREATE INDEX "idx_fk_language_id" ON "film" USING "btree" ("language_id");
  48107.  
  48108.  
  48109. --
  48110. -- Name: idx_fk_rental_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48111. --
  48112.  
  48113. CREATE INDEX "idx_fk_rental_id" ON "payment" USING "btree" ("rental_id");
  48114.  
  48115.  
  48116. --
  48117. -- Name: idx_fk_staff_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48118. --
  48119.  
  48120. CREATE INDEX "idx_fk_staff_id" ON "payment" USING "btree" ("staff_id");
  48121.  
  48122.  
  48123. --
  48124. -- Name: idx_fk_store_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48125. --
  48126.  
  48127. CREATE INDEX "idx_fk_store_id" ON "customer" USING "btree" ("store_id");
  48128.  
  48129.  
  48130. --
  48131. -- Name: idx_last_name; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48132. --
  48133.  
  48134. CREATE INDEX "idx_last_name" ON "customer" USING "btree" ("last_name");
  48135.  
  48136.  
  48137. --
  48138. -- Name: idx_store_id_film_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48139. --
  48140.  
  48141. CREATE INDEX "idx_store_id_film_id" ON "inventory" USING "btree" ("store_id", "film_id");
  48142.  
  48143.  
  48144. --
  48145. -- Name: idx_title; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48146. --
  48147.  
  48148. CREATE INDEX "idx_title" ON "film" USING "btree" ("title");
  48149.  
  48150.  
  48151. --
  48152. -- Name: idx_unq_manager_staff_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48153. --
  48154.  
  48155. CREATE UNIQUE INDEX "idx_unq_manager_staff_id" ON "store" USING "btree" ("manager_staff_id");
  48156.  
  48157.  
  48158. --
  48159. -- Name: idx_unq_rental_rental_date_inventory_id_customer_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
  48160. --
  48161.  
  48162. CREATE UNIQUE INDEX "idx_unq_rental_rental_date_inventory_id_customer_id" ON "rental" USING "btree" ("rental_date", "inventory_id", "customer_id");
  48163.  
  48164.  
  48165. --
  48166. -- Name: film_fulltext_trigger; Type: TRIGGER; Schema: public; Owner: postgres
  48167. --
  48168.  
  48169. CREATE TRIGGER "film_fulltext_trigger" BEFORE INSERT OR UPDATE ON "film" FOR EACH ROW EXECUTE PROCEDURE "tsvector_update_trigger"('fulltext', 'pg_catalog.english', 'title', 'description');
  48170.  
  48171.  
  48172. --
  48173. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48174. --
  48175.  
  48176. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "actor" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48177.  
  48178.  
  48179. --
  48180. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48181. --
  48182.  
  48183. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "address" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48184.  
  48185.  
  48186. --
  48187. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48188. --
  48189.  
  48190. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "category" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48191.  
  48192.  
  48193. --
  48194. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48195. --
  48196.  
  48197. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "city" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48198.  
  48199.  
  48200. --
  48201. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48202. --
  48203.  
  48204. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "country" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48205.  
  48206.  
  48207. --
  48208. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48209. --
  48210.  
  48211. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "customer" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48212.  
  48213.  
  48214. --
  48215. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48216. --
  48217.  
  48218. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "film" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48219.  
  48220.  
  48221. --
  48222. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48223. --
  48224.  
  48225. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "film_actor" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48226.  
  48227.  
  48228. --
  48229. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48230. --
  48231.  
  48232. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "film_category" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48233.  
  48234.  
  48235. --
  48236. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48237. --
  48238.  
  48239. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "inventory" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48240.  
  48241.  
  48242. --
  48243. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48244. --
  48245.  
  48246. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "language" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48247.  
  48248.  
  48249. --
  48250. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48251. --
  48252.  
  48253. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "rental" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48254.  
  48255.  
  48256. --
  48257. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48258. --
  48259.  
  48260. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "staff" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48261.  
  48262.  
  48263. --
  48264. -- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
  48265. --
  48266.  
  48267. CREATE TRIGGER "last_updated" BEFORE UPDATE ON "store" FOR EACH ROW EXECUTE PROCEDURE "last_updated"();
  48268.  
  48269.  
  48270. --
  48271. -- Name: customer_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48272. --
  48273.  
  48274. ALTER TABLE ONLY "customer"
  48275. ADD CONSTRAINT "customer_address_id_fkey" FOREIGN KEY ("address_id") REFERENCES "address"("address_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48276.  
  48277.  
  48278. --
  48279. -- Name: film_actor_actor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48280. --
  48281.  
  48282. ALTER TABLE ONLY "film_actor"
  48283. ADD CONSTRAINT "film_actor_actor_id_fkey" FOREIGN KEY ("actor_id") REFERENCES "actor"("actor_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48284.  
  48285.  
  48286. --
  48287. -- Name: film_actor_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48288. --
  48289.  
  48290. ALTER TABLE ONLY "film_actor"
  48291. ADD CONSTRAINT "film_actor_film_id_fkey" FOREIGN KEY ("film_id") REFERENCES "film"("film_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48292.  
  48293.  
  48294. --
  48295. -- Name: film_category_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48296. --
  48297.  
  48298. ALTER TABLE ONLY "film_category"
  48299. ADD CONSTRAINT "film_category_category_id_fkey" FOREIGN KEY ("category_id") REFERENCES "category"("category_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48300.  
  48301.  
  48302. --
  48303. -- Name: film_category_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48304. --
  48305.  
  48306. ALTER TABLE ONLY "film_category"
  48307. ADD CONSTRAINT "film_category_film_id_fkey" FOREIGN KEY ("film_id") REFERENCES "film"("film_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48308.  
  48309.  
  48310. --
  48311. -- Name: film_language_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48312. --
  48313.  
  48314. ALTER TABLE ONLY "film"
  48315. ADD CONSTRAINT "film_language_id_fkey" FOREIGN KEY ("language_id") REFERENCES "language"("language_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48316.  
  48317.  
  48318. --
  48319. -- Name: fk_address_city; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48320. --
  48321.  
  48322. ALTER TABLE ONLY "address"
  48323. ADD CONSTRAINT "fk_address_city" FOREIGN KEY ("city_id") REFERENCES "city"("city_id");
  48324.  
  48325.  
  48326. --
  48327. -- Name: fk_city; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48328. --
  48329.  
  48330. ALTER TABLE ONLY "city"
  48331. ADD CONSTRAINT "fk_city" FOREIGN KEY ("country_id") REFERENCES "country"("country_id");
  48332.  
  48333.  
  48334. --
  48335. -- Name: inventory_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48336. --
  48337.  
  48338. ALTER TABLE ONLY "inventory"
  48339. ADD CONSTRAINT "inventory_film_id_fkey" FOREIGN KEY ("film_id") REFERENCES "film"("film_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48340.  
  48341.  
  48342. --
  48343. -- Name: payment_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48344. --
  48345.  
  48346. ALTER TABLE ONLY "payment"
  48347. ADD CONSTRAINT "payment_customer_id_fkey" FOREIGN KEY ("customer_id") REFERENCES "customer"("customer_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48348.  
  48349.  
  48350. --
  48351. -- Name: payment_rental_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48352. --
  48353.  
  48354. ALTER TABLE ONLY "payment"
  48355. ADD CONSTRAINT "payment_rental_id_fkey" FOREIGN KEY ("rental_id") REFERENCES "rental"("rental_id") ON UPDATE CASCADE ON DELETE SET NULL;
  48356.  
  48357.  
  48358. --
  48359. -- Name: payment_staff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48360. --
  48361.  
  48362. ALTER TABLE ONLY "payment"
  48363. ADD CONSTRAINT "payment_staff_id_fkey" FOREIGN KEY ("staff_id") REFERENCES "staff"("staff_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48364.  
  48365.  
  48366. --
  48367. -- Name: rental_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48368. --
  48369.  
  48370. ALTER TABLE ONLY "rental"
  48371. ADD CONSTRAINT "rental_customer_id_fkey" FOREIGN KEY ("customer_id") REFERENCES "customer"("customer_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48372.  
  48373.  
  48374. --
  48375. -- Name: rental_inventory_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48376. --
  48377.  
  48378. ALTER TABLE ONLY "rental"
  48379. ADD CONSTRAINT "rental_inventory_id_fkey" FOREIGN KEY ("inventory_id") REFERENCES "inventory"("inventory_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48380.  
  48381.  
  48382. --
  48383. -- Name: rental_staff_id_key; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48384. --
  48385.  
  48386. ALTER TABLE ONLY "rental"
  48387. ADD CONSTRAINT "rental_staff_id_key" FOREIGN KEY ("staff_id") REFERENCES "staff"("staff_id");
  48388.  
  48389.  
  48390. --
  48391. -- Name: staff_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48392. --
  48393.  
  48394. ALTER TABLE ONLY "staff"
  48395. ADD CONSTRAINT "staff_address_id_fkey" FOREIGN KEY ("address_id") REFERENCES "address"("address_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48396.  
  48397.  
  48398. --
  48399. -- Name: store_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48400. --
  48401.  
  48402. ALTER TABLE ONLY "store"
  48403. ADD CONSTRAINT "store_address_id_fkey" FOREIGN KEY ("address_id") REFERENCES "address"("address_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48404.  
  48405.  
  48406. --
  48407. -- Name: store_manager_staff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
  48408. --
  48409.  
  48410. ALTER TABLE ONLY "store"
  48411. ADD CONSTRAINT "store_manager_staff_id_fkey" FOREIGN KEY ("manager_staff_id") REFERENCES "staff"("staff_id") ON UPDATE CASCADE ON DELETE RESTRICT;
  48412.  
  48413.  
  48414. --
  48415. -- Name: public; Type: ACL; Schema: -; Owner: postgres
  48416. --
  48417.  
  48418. REVOKE ALL ON SCHEMA "public" FROM PUBLIC;
  48419. REVOKE ALL ON SCHEMA "public" FROM "postgres";
  48420. GRANT ALL ON SCHEMA "public" TO "postgres";
  48421. GRANT ALL ON SCHEMA "public" TO PUBLIC;
  48422.  
  48423.  
  48424. --
  48425. -- Name: _group_concat("text", "text"); Type: ACL; Schema: public; Owner: postgres
  48426. --
  48427.  
  48428. REVOKE ALL ON FUNCTION "_group_concat"("text", "text") FROM PUBLIC;
  48429. REVOKE ALL ON FUNCTION "_group_concat"("text", "text") FROM "postgres";
  48430. GRANT ALL ON FUNCTION "_group_concat"("text", "text") TO "postgres";
  48431. GRANT ALL ON FUNCTION "_group_concat"("text", "text") TO PUBLIC;
  48432. GRANT ALL ON FUNCTION "_group_concat"("text", "text") TO "dsr";
  48433.  
  48434.  
  48435. --
  48436. -- Name: film_in_stock(integer, integer); Type: ACL; Schema: public; Owner: postgres
  48437. --
  48438.  
  48439. REVOKE ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM PUBLIC;
  48440. REVOKE ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM "postgres";
  48441. GRANT ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "postgres";
  48442. GRANT ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO PUBLIC;
  48443. GRANT ALL ON FUNCTION "film_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "dsr";
  48444.  
  48445.  
  48446. --
  48447. -- Name: film_not_in_stock(integer, integer); Type: ACL; Schema: public; Owner: postgres
  48448. --
  48449.  
  48450. REVOKE ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM PUBLIC;
  48451. REVOKE ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) FROM "postgres";
  48452. GRANT ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "postgres";
  48453. GRANT ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO PUBLIC;
  48454. GRANT ALL ON FUNCTION "film_not_in_stock"("p_film_id" integer, "p_store_id" integer, OUT "p_film_count" integer) TO "dsr";
  48455.  
  48456.  
  48457. --
  48458. -- Name: get_customer_balance(integer, timestamp without time zone); Type: ACL; Schema: public; Owner: postgres
  48459. --
  48460.  
  48461. REVOKE ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) FROM PUBLIC;
  48462. REVOKE ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) FROM "postgres";
  48463. GRANT ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) TO "postgres";
  48464. GRANT ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) TO PUBLIC;
  48465. GRANT ALL ON FUNCTION "get_customer_balance"("p_customer_id" integer, "p_effective_date" timestamp without time zone) TO "dsr";
  48466.  
  48467.  
  48468. --
  48469. -- Name: inventory_held_by_customer(integer); Type: ACL; Schema: public; Owner: postgres
  48470. --
  48471.  
  48472. REVOKE ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) FROM PUBLIC;
  48473. REVOKE ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) FROM "postgres";
  48474. GRANT ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) TO "postgres";
  48475. GRANT ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) TO PUBLIC;
  48476. GRANT ALL ON FUNCTION "inventory_held_by_customer"("p_inventory_id" integer) TO "dsr";
  48477.  
  48478.  
  48479. --
  48480. -- Name: inventory_in_stock(integer); Type: ACL; Schema: public; Owner: postgres
  48481. --
  48482.  
  48483. REVOKE ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) FROM PUBLIC;
  48484. REVOKE ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) FROM "postgres";
  48485. GRANT ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) TO "postgres";
  48486. GRANT ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) TO PUBLIC;
  48487. GRANT ALL ON FUNCTION "inventory_in_stock"("p_inventory_id" integer) TO "dsr";
  48488.  
  48489.  
  48490. --
  48491. -- Name: last_day(timestamp without time zone); Type: ACL; Schema: public; Owner: postgres
  48492. --
  48493.  
  48494. REVOKE ALL ON FUNCTION "last_day"(timestamp without time zone) FROM PUBLIC;
  48495. REVOKE ALL ON FUNCTION "last_day"(timestamp without time zone) FROM "postgres";
  48496. GRANT ALL ON FUNCTION "last_day"(timestamp without time zone) TO "postgres";
  48497. GRANT ALL ON FUNCTION "last_day"(timestamp without time zone) TO PUBLIC;
  48498. GRANT ALL ON FUNCTION "last_day"(timestamp without time zone) TO "dsr";
  48499.  
  48500.  
  48501. --
  48502. -- Name: last_updated(); Type: ACL; Schema: public; Owner: postgres
  48503. --
  48504.  
  48505. REVOKE ALL ON FUNCTION "last_updated"() FROM PUBLIC;
  48506. REVOKE ALL ON FUNCTION "last_updated"() FROM "postgres";
  48507. GRANT ALL ON FUNCTION "last_updated"() TO "postgres";
  48508. GRANT ALL ON FUNCTION "last_updated"() TO PUBLIC;
  48509. GRANT ALL ON FUNCTION "last_updated"() TO "dsr";
  48510.  
  48511.  
  48512. --
  48513. -- Name: customer; Type: ACL; Schema: public; Owner: postgres
  48514. --
  48515.  
  48516. REVOKE ALL ON TABLE "customer" FROM PUBLIC;
  48517. REVOKE ALL ON TABLE "customer" FROM "postgres";
  48518. GRANT ALL ON TABLE "customer" TO "postgres";
  48519. GRANT SELECT ON TABLE "customer" TO "dsr";
  48520. GRANT SELECT ON TABLE "customer" TO PUBLIC;
  48521.  
  48522.  
  48523. --
  48524. -- Name: rewards_report(integer, numeric); Type: ACL; Schema: public; Owner: postgres
  48525. --
  48526.  
  48527. REVOKE ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) FROM PUBLIC;
  48528. REVOKE ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) FROM "postgres";
  48529. GRANT ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) TO "postgres";
  48530. GRANT ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) TO PUBLIC;
  48531. GRANT ALL ON FUNCTION "rewards_report"("min_monthly_purchases" integer, "min_dollar_amount_purchased" numeric) TO "dsr";
  48532.  
  48533.  
  48534. --
  48535. -- Name: group_concat("text"); Type: ACL; Schema: public; Owner: postgres
  48536. --
  48537.  
  48538. REVOKE ALL ON FUNCTION "group_concat"("text") FROM PUBLIC;
  48539. REVOKE ALL ON FUNCTION "group_concat"("text") FROM "postgres";
  48540. GRANT ALL ON FUNCTION "group_concat"("text") TO "postgres";
  48541. GRANT ALL ON FUNCTION "group_concat"("text") TO PUBLIC;
  48542. GRANT ALL ON FUNCTION "group_concat"("text") TO "dsr";
  48543.  
  48544.  
  48545. --
  48546. -- Name: actor; Type: ACL; Schema: public; Owner: postgres
  48547. --
  48548.  
  48549. REVOKE ALL ON TABLE "actor" FROM PUBLIC;
  48550. REVOKE ALL ON TABLE "actor" FROM "postgres";
  48551. GRANT ALL ON TABLE "actor" TO "postgres";
  48552. GRANT SELECT ON TABLE "actor" TO "dsr";
  48553. GRANT SELECT ON TABLE "actor" TO PUBLIC;
  48554.  
  48555.  
  48556. --
  48557. -- Name: category; Type: ACL; Schema: public; Owner: postgres
  48558. --
  48559.  
  48560. REVOKE ALL ON TABLE "category" FROM PUBLIC;
  48561. REVOKE ALL ON TABLE "category" FROM "postgres";
  48562. GRANT ALL ON TABLE "category" TO "postgres";
  48563. GRANT SELECT ON TABLE "category" TO "dsr";
  48564. GRANT SELECT ON TABLE "category" TO PUBLIC;
  48565.  
  48566.  
  48567. --
  48568. -- Name: film; Type: ACL; Schema: public; Owner: postgres
  48569. --
  48570.  
  48571. REVOKE ALL ON TABLE "film" FROM PUBLIC;
  48572. REVOKE ALL ON TABLE "film" FROM "postgres";
  48573. GRANT ALL ON TABLE "film" TO "postgres";
  48574. GRANT SELECT ON TABLE "film" TO "dsr";
  48575. GRANT SELECT ON TABLE "film" TO PUBLIC;
  48576.  
  48577.  
  48578. --
  48579. -- Name: film_actor; Type: ACL; Schema: public; Owner: postgres
  48580. --
  48581.  
  48582. REVOKE ALL ON TABLE "film_actor" FROM PUBLIC;
  48583. REVOKE ALL ON TABLE "film_actor" FROM "postgres";
  48584. GRANT ALL ON TABLE "film_actor" TO "postgres";
  48585. GRANT SELECT ON TABLE "film_actor" TO "dsr";
  48586. GRANT SELECT ON TABLE "film_actor" TO PUBLIC;
  48587.  
  48588.  
  48589. --
  48590. -- Name: film_category; Type: ACL; Schema: public; Owner: postgres
  48591. --
  48592.  
  48593. REVOKE ALL ON TABLE "film_category" FROM PUBLIC;
  48594. REVOKE ALL ON TABLE "film_category" FROM "postgres";
  48595. GRANT ALL ON TABLE "film_category" TO "postgres";
  48596. GRANT SELECT ON TABLE "film_category" TO "dsr";
  48597. GRANT SELECT ON TABLE "film_category" TO PUBLIC;
  48598.  
  48599.  
  48600. --
  48601. -- Name: actor_info; Type: ACL; Schema: public; Owner: postgres
  48602. --
  48603.  
  48604. REVOKE ALL ON TABLE "actor_info" FROM PUBLIC;
  48605. REVOKE ALL ON TABLE "actor_info" FROM "postgres";
  48606. GRANT ALL ON TABLE "actor_info" TO "postgres";
  48607. GRANT SELECT ON TABLE "actor_info" TO "dsr";
  48608. GRANT SELECT ON TABLE "actor_info" TO PUBLIC;
  48609.  
  48610.  
  48611. --
  48612. -- Name: address; Type: ACL; Schema: public; Owner: postgres
  48613. --
  48614.  
  48615. REVOKE ALL ON TABLE "address" FROM PUBLIC;
  48616. REVOKE ALL ON TABLE "address" FROM "postgres";
  48617. GRANT ALL ON TABLE "address" TO "postgres";
  48618. GRANT SELECT ON TABLE "address" TO "dsr";
  48619. GRANT SELECT ON TABLE "address" TO PUBLIC;
  48620.  
  48621.  
  48622. --
  48623. -- Name: city; Type: ACL; Schema: public; Owner: postgres
  48624. --
  48625.  
  48626. REVOKE ALL ON TABLE "city" FROM PUBLIC;
  48627. REVOKE ALL ON TABLE "city" FROM "postgres";
  48628. GRANT ALL ON TABLE "city" TO "postgres";
  48629. GRANT SELECT ON TABLE "city" TO "dsr";
  48630. GRANT SELECT ON TABLE "city" TO PUBLIC;
  48631.  
  48632.  
  48633. --
  48634. -- Name: country; Type: ACL; Schema: public; Owner: postgres
  48635. --
  48636.  
  48637. REVOKE ALL ON TABLE "country" FROM PUBLIC;
  48638. REVOKE ALL ON TABLE "country" FROM "postgres";
  48639. GRANT ALL ON TABLE "country" TO "postgres";
  48640. GRANT SELECT ON TABLE "country" TO "dsr";
  48641. GRANT SELECT ON TABLE "country" TO PUBLIC;
  48642.  
  48643.  
  48644. --
  48645. -- Name: customer_list; Type: ACL; Schema: public; Owner: postgres
  48646. --
  48647.  
  48648. REVOKE ALL ON TABLE "customer_list" FROM PUBLIC;
  48649. REVOKE ALL ON TABLE "customer_list" FROM "postgres";
  48650. GRANT ALL ON TABLE "customer_list" TO "postgres";
  48651. GRANT SELECT ON TABLE "customer_list" TO "dsr";
  48652. GRANT SELECT ON TABLE "customer_list" TO PUBLIC;
  48653.  
  48654.  
  48655. --
  48656. -- Name: film_list; Type: ACL; Schema: public; Owner: postgres
  48657. --
  48658.  
  48659. REVOKE ALL ON TABLE "film_list" FROM PUBLIC;
  48660. REVOKE ALL ON TABLE "film_list" FROM "postgres";
  48661. GRANT ALL ON TABLE "film_list" TO "postgres";
  48662. GRANT SELECT ON TABLE "film_list" TO "dsr";
  48663. GRANT SELECT ON TABLE "film_list" TO PUBLIC;
  48664.  
  48665.  
  48666. --
  48667. -- Name: inventory; Type: ACL; Schema: public; Owner: postgres
  48668. --
  48669.  
  48670. REVOKE ALL ON TABLE "inventory" FROM PUBLIC;
  48671. REVOKE ALL ON TABLE "inventory" FROM "postgres";
  48672. GRANT ALL ON TABLE "inventory" TO "postgres";
  48673. GRANT SELECT ON TABLE "inventory" TO "dsr";
  48674. GRANT SELECT ON TABLE "inventory" TO PUBLIC;
  48675.  
  48676.  
  48677. --
  48678. -- Name: language; Type: ACL; Schema: public; Owner: postgres
  48679. --
  48680.  
  48681. REVOKE ALL ON TABLE "language" FROM PUBLIC;
  48682. REVOKE ALL ON TABLE "language" FROM "postgres";
  48683. GRANT ALL ON TABLE "language" TO "postgres";
  48684. GRANT SELECT ON TABLE "language" TO "dsr";
  48685. GRANT SELECT ON TABLE "language" TO PUBLIC;
  48686.  
  48687.  
  48688. --
  48689. -- Name: nicer_but_slower_film_list; Type: ACL; Schema: public; Owner: postgres
  48690. --
  48691.  
  48692. REVOKE ALL ON TABLE "nicer_but_slower_film_list" FROM PUBLIC;
  48693. REVOKE ALL ON TABLE "nicer_but_slower_film_list" FROM "postgres";
  48694. GRANT ALL ON TABLE "nicer_but_slower_film_list" TO "postgres";
  48695. GRANT SELECT ON TABLE "nicer_but_slower_film_list" TO "dsr";
  48696. GRANT SELECT ON TABLE "nicer_but_slower_film_list" TO PUBLIC;
  48697.  
  48698.  
  48699. --
  48700. -- Name: payment; Type: ACL; Schema: public; Owner: postgres
  48701. --
  48702.  
  48703. REVOKE ALL ON TABLE "payment" FROM PUBLIC;
  48704. REVOKE ALL ON TABLE "payment" FROM "postgres";
  48705. GRANT ALL ON TABLE "payment" TO "postgres";
  48706. GRANT SELECT ON TABLE "payment" TO "dsr";
  48707. GRANT SELECT ON TABLE "payment" TO PUBLIC;
  48708.  
  48709.  
  48710. --
  48711. -- Name: rental; Type: ACL; Schema: public; Owner: postgres
  48712. --
  48713.  
  48714. REVOKE ALL ON TABLE "rental" FROM PUBLIC;
  48715. REVOKE ALL ON TABLE "rental" FROM "postgres";
  48716. GRANT ALL ON TABLE "rental" TO "postgres";
  48717. GRANT SELECT ON TABLE "rental" TO "dsr";
  48718. GRANT SELECT ON TABLE "rental" TO PUBLIC;
  48719.  
  48720.  
  48721. --
  48722. -- Name: sales_by_film_category; Type: ACL; Schema: public; Owner: postgres
  48723. --
  48724.  
  48725. REVOKE ALL ON TABLE "sales_by_film_category" FROM PUBLIC;
  48726. REVOKE ALL ON TABLE "sales_by_film_category" FROM "postgres";
  48727. GRANT ALL ON TABLE "sales_by_film_category" TO "postgres";
  48728. GRANT SELECT ON TABLE "sales_by_film_category" TO "dsr";
  48729. GRANT SELECT ON TABLE "sales_by_film_category" TO PUBLIC;
  48730.  
  48731.  
  48732. --
  48733. -- Name: staff; Type: ACL; Schema: public; Owner: postgres
  48734. --
  48735.  
  48736. REVOKE ALL ON TABLE "staff" FROM PUBLIC;
  48737. REVOKE ALL ON TABLE "staff" FROM "postgres";
  48738. GRANT ALL ON TABLE "staff" TO "postgres";
  48739. GRANT SELECT ON TABLE "staff" TO "dsr";
  48740. GRANT SELECT ON TABLE "staff" TO PUBLIC;
  48741.  
  48742.  
  48743. --
  48744. -- Name: store; Type: ACL; Schema: public; Owner: postgres
  48745. --
  48746.  
  48747. REVOKE ALL ON TABLE "store" FROM PUBLIC;
  48748. REVOKE ALL ON TABLE "store" FROM "postgres";
  48749. GRANT ALL ON TABLE "store" TO "postgres";
  48750. GRANT SELECT ON TABLE "store" TO "dsr";
  48751. GRANT SELECT ON TABLE "store" TO PUBLIC;
  48752.  
  48753.  
  48754. --
  48755. -- Name: sales_by_store; Type: ACL; Schema: public; Owner: postgres
  48756. --
  48757.  
  48758. REVOKE ALL ON TABLE "sales_by_store" FROM PUBLIC;
  48759. REVOKE ALL ON TABLE "sales_by_store" FROM "postgres";
  48760. GRANT ALL ON TABLE "sales_by_store" TO "postgres";
  48761. GRANT SELECT ON TABLE "sales_by_store" TO "dsr";
  48762. GRANT SELECT ON TABLE "sales_by_store" TO PUBLIC;
  48763.  
  48764.  
  48765. --
  48766. -- Name: staff_list; Type: ACL; Schema: public; Owner: postgres
  48767. --
  48768.  
  48769. REVOKE ALL ON TABLE "staff_list" FROM PUBLIC;
  48770. REVOKE ALL ON TABLE "staff_list" FROM "postgres";
  48771. GRANT ALL ON TABLE "staff_list" TO "postgres";
  48772. GRANT SELECT ON TABLE "staff_list" TO "dsr";
  48773. GRANT SELECT ON TABLE "staff_list" TO PUBLIC;
  48774.  
  48775.  
  48776. --
  48777. -- PostgreSQL database dump complete
  48778. --
  48779.  
  48780. \connect "template1"
  48781.  
  48782. SET default_transaction_read_only = off;
  48783.  
  48784. --
  48785. -- PostgreSQL database dump
  48786. --
  48787.  
  48788. SET statement_timeout = 0;
  48789. SET lock_timeout = 0;
  48790. SET client_encoding = 'UTF8';
  48791. SET standard_conforming_strings = on;
  48792. SET check_function_bodies = false;
  48793. SET client_min_messages = warning;
  48794.  
  48795. --
  48796. -- Name: template1; Type: COMMENT; Schema: -; Owner: postgres
  48797. --
  48798.  
  48799. COMMENT ON DATABASE "template1" IS 'default template for new databases';
  48800.  
  48801.  
  48802. --
  48803. -- Name: SCHEMA "public"; Type: COMMENT; Schema: -; Owner: postgres
  48804. --
  48805.  
  48806. COMMENT ON SCHEMA "public" IS 'standard public schema';
  48807.  
  48808.  
  48809. --
  48810. -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
  48811. --
  48812.  
  48813. CREATE EXTENSION IF NOT EXISTS "plpgsql" WITH SCHEMA "pg_catalog";
  48814.  
  48815.  
  48816. --
  48817. -- Name: EXTENSION "plpgsql"; Type: COMMENT; Schema: -; Owner:
  48818. --
  48819.  
  48820. COMMENT ON EXTENSION "plpgsql" IS 'PL/pgSQL procedural language';
  48821.  
  48822.  
  48823. --
  48824. -- Name: public; Type: ACL; Schema: -; Owner: postgres
  48825. --
  48826.  
  48827. REVOKE ALL ON SCHEMA "public" FROM PUBLIC;
  48828. REVOKE ALL ON SCHEMA "public" FROM "postgres";
  48829. GRANT ALL ON SCHEMA "public" TO "postgres";
  48830. GRANT ALL ON SCHEMA "public" TO PUBLIC;
  48831.  
  48832.  
  48833. --
  48834. -- PostgreSQL database dump complete
  48835. --
  48836.  
  48837. --
  48838. -- PostgreSQL database cluster dump complete
  48839. --
Add Comment
Please, Sign In to add comment