Advertisement
Guest User

Untitled

a guest
May 2nd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 263.08 KB | None | 0 0
  1. --
  2. -- PostgreSQL database dump
  3. --
  4.  
  5. SET statement_timeout = 0;
  6. SET lock_timeout = 0;
  7. SET client_encoding = 'UTF8';
  8. SET standard_conforming_strings = on;
  9. SET check_function_bodies = false;
  10. SET client_min_messages = warning;
  11.  
  12. --
  13. -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
  14. --
  15.  
  16. CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
  17.  
  18.  
  19. --
  20. -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
  21. --
  22.  
  23. COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
  24.  
  25.  
  26. SET search_path = public, pg_catalog;
  27.  
  28. --
  29. -- Name: branchtype; Type: TYPE; Schema: public; Owner: critic
  30. --
  31.  
  32. CREATE TYPE branchtype AS ENUM (
  33. 'normal',
  34. 'review'
  35. );
  36.  
  37.  
  38. ALTER TYPE public.branchtype OWNER TO critic;
  39.  
  40. --
  41. -- Name: changesettype; Type: TYPE; Schema: public; Owner: critic
  42. --
  43.  
  44. CREATE TYPE changesettype AS ENUM (
  45. 'direct',
  46. 'custom',
  47. 'merge',
  48. 'conflicts'
  49. );
  50.  
  51.  
  52. ALTER TYPE public.changesettype OWNER TO critic;
  53.  
  54. --
  55. -- Name: commentchainchangestate; Type: TYPE; Schema: public; Owner: critic
  56. --
  57.  
  58. CREATE TYPE commentchainchangestate AS ENUM (
  59. 'draft',
  60. 'performed',
  61. 'rejected'
  62. );
  63.  
  64.  
  65. ALTER TYPE public.commentchainchangestate OWNER TO critic;
  66.  
  67. --
  68. -- Name: commentchainlinesstate; Type: TYPE; Schema: public; Owner: critic
  69. --
  70.  
  71. CREATE TYPE commentchainlinesstate AS ENUM (
  72. 'draft',
  73. 'current'
  74. );
  75.  
  76.  
  77. ALTER TYPE public.commentchainlinesstate OWNER TO critic;
  78.  
  79. --
  80. -- Name: commentchainorigin; Type: TYPE; Schema: public; Owner: critic
  81. --
  82.  
  83. CREATE TYPE commentchainorigin AS ENUM (
  84. 'old',
  85. 'new'
  86. );
  87.  
  88.  
  89. ALTER TYPE public.commentchainorigin OWNER TO critic;
  90.  
  91. --
  92. -- Name: commentchainstate; Type: TYPE; Schema: public; Owner: critic
  93. --
  94.  
  95. CREATE TYPE commentchainstate AS ENUM (
  96. 'draft',
  97. 'open',
  98. 'addressed',
  99. 'closed',
  100. 'empty'
  101. );
  102.  
  103.  
  104. ALTER TYPE public.commentchainstate OWNER TO critic;
  105.  
  106. --
  107. -- Name: commentchaintype; Type: TYPE; Schema: public; Owner: critic
  108. --
  109.  
  110. CREATE TYPE commentchaintype AS ENUM (
  111. 'issue',
  112. 'note'
  113. );
  114.  
  115.  
  116. ALTER TYPE public.commentchaintype OWNER TO critic;
  117.  
  118. --
  119. -- Name: commentstate; Type: TYPE; Schema: public; Owner: critic
  120. --
  121.  
  122. CREATE TYPE commentstate AS ENUM (
  123. 'draft',
  124. 'current',
  125. 'edited',
  126. 'deleted'
  127. );
  128.  
  129.  
  130. ALTER TYPE public.commentstate OWNER TO critic;
  131.  
  132. --
  133. -- Name: filtertype; Type: TYPE; Schema: public; Owner: critic
  134. --
  135.  
  136. CREATE TYPE filtertype AS ENUM (
  137. 'reviewer',
  138. 'watcher',
  139. 'ignored'
  140. );
  141.  
  142.  
  143. ALTER TYPE public.filtertype OWNER TO critic;
  144.  
  145. --
  146. -- Name: preferencetype; Type: TYPE; Schema: public; Owner: critic
  147. --
  148.  
  149. CREATE TYPE preferencetype AS ENUM (
  150. 'boolean',
  151. 'integer',
  152. 'string'
  153. );
  154.  
  155.  
  156. ALTER TYPE public.preferencetype OWNER TO critic;
  157.  
  158. --
  159. -- Name: reviewfilechangestate; Type: TYPE; Schema: public; Owner: critic
  160. --
  161.  
  162. CREATE TYPE reviewfilechangestate AS ENUM (
  163. 'draft',
  164. 'performed',
  165. 'rejected'
  166. );
  167.  
  168.  
  169. ALTER TYPE public.reviewfilechangestate OWNER TO critic;
  170.  
  171. --
  172. -- Name: reviewfilestate; Type: TYPE; Schema: public; Owner: critic
  173. --
  174.  
  175. CREATE TYPE reviewfilestate AS ENUM (
  176. 'pending',
  177. 'reviewed'
  178. );
  179.  
  180.  
  181. ALTER TYPE public.reviewfilestate OWNER TO critic;
  182.  
  183. --
  184. -- Name: reviewstate; Type: TYPE; Schema: public; Owner: critic
  185. --
  186.  
  187. CREATE TYPE reviewstate AS ENUM (
  188. 'draft',
  189. 'open',
  190. 'closed',
  191. 'dropped'
  192. );
  193.  
  194.  
  195. ALTER TYPE public.reviewstate OWNER TO critic;
  196.  
  197. --
  198. -- Name: reviewtype; Type: TYPE; Schema: public; Owner: critic
  199. --
  200.  
  201. CREATE TYPE reviewtype AS ENUM (
  202. 'official',
  203. 'rfc',
  204. 'ad-hoc'
  205. );
  206.  
  207.  
  208. ALTER TYPE public.reviewtype OWNER TO critic;
  209.  
  210. --
  211. -- Name: reviewusertype; Type: TYPE; Schema: public; Owner: critic
  212. --
  213.  
  214. CREATE TYPE reviewusertype AS ENUM (
  215. 'automatic',
  216. 'manual'
  217. );
  218.  
  219.  
  220. ALTER TYPE public.reviewusertype OWNER TO critic;
  221.  
  222. --
  223. -- Name: userstatus; Type: TYPE; Schema: public; Owner: critic
  224. --
  225.  
  226. CREATE TYPE userstatus AS ENUM (
  227. 'unknown',
  228. 'current',
  229. 'absent',
  230. 'retired'
  231. );
  232.  
  233.  
  234. ALTER TYPE public.userstatus OWNER TO critic;
  235.  
  236. --
  237. -- Name: chaincomments(integer); Type: FUNCTION; Schema: public; Owner: critic
  238. --
  239.  
  240. CREATE FUNCTION chaincomments(chain_id integer) RETURNS integer
  241. LANGUAGE plpgsql
  242. AS $$
  243. DECLARE
  244. result INTEGER;
  245. BEGIN
  246. SELECT COUNT(*) INTO STRICT result FROM comments WHERE chain=chain_id AND state='current';
  247. RETURN result;
  248. END;
  249. $$;
  250.  
  251.  
  252. ALTER FUNCTION public.chaincomments(chain_id integer) OWNER TO critic;
  253.  
  254. --
  255. -- Name: chainunread(integer, integer); Type: FUNCTION; Schema: public; Owner: critic
  256. --
  257.  
  258. CREATE FUNCTION chainunread(chain_id integer, user_id integer) RETURNS integer
  259. LANGUAGE plpgsql
  260. AS $$
  261. DECLARE
  262. result INTEGER;
  263. BEGIN
  264. SELECT COUNT(*) INTO STRICT result FROM commentstoread JOIN comments ON (comments.id=commentstoread.comment) WHERE comments.chain=chain_id AND comments.state='current' AND commentstoread.uid=user_id;
  265. RETURN result;
  266. END;
  267. $$;
  268.  
  269.  
  270. ALTER FUNCTION public.chainunread(chain_id integer, user_id integer) OWNER TO critic;
  271.  
  272. SET default_tablespace = '';
  273.  
  274. SET default_with_oids = false;
  275.  
  276. --
  277. -- Name: batches; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  278. --
  279.  
  280. CREATE TABLE batches (
  281. id integer NOT NULL,
  282. review integer NOT NULL,
  283. uid integer NOT NULL,
  284. comment integer,
  285. "time" timestamp without time zone DEFAULT now() NOT NULL
  286. );
  287.  
  288.  
  289. ALTER TABLE public.batches OWNER TO critic;
  290.  
  291. --
  292. -- Name: batches_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  293. --
  294.  
  295. CREATE SEQUENCE batches_id_seq
  296. START WITH 1
  297. INCREMENT BY 1
  298. NO MINVALUE
  299. NO MAXVALUE
  300. CACHE 1;
  301.  
  302.  
  303. ALTER TABLE public.batches_id_seq OWNER TO critic;
  304.  
  305. --
  306. -- Name: batches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  307. --
  308.  
  309. ALTER SEQUENCE batches_id_seq OWNED BY batches.id;
  310.  
  311.  
  312. --
  313. -- Name: branches; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  314. --
  315.  
  316. CREATE TABLE branches (
  317. id integer NOT NULL,
  318. name character varying(256) NOT NULL,
  319. repository integer NOT NULL,
  320. head integer NOT NULL,
  321. base integer,
  322. tail integer,
  323. type branchtype DEFAULT 'normal'::branchtype NOT NULL,
  324. archived boolean DEFAULT false NOT NULL
  325. );
  326.  
  327.  
  328. ALTER TABLE public.branches OWNER TO critic;
  329.  
  330. --
  331. -- Name: branches_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  332. --
  333.  
  334. CREATE SEQUENCE branches_id_seq
  335. START WITH 1
  336. INCREMENT BY 1
  337. NO MINVALUE
  338. NO MAXVALUE
  339. CACHE 1;
  340.  
  341.  
  342. ALTER TABLE public.branches_id_seq OWNER TO critic;
  343.  
  344. --
  345. -- Name: branches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  346. --
  347.  
  348. ALTER SEQUENCE branches_id_seq OWNED BY branches.id;
  349.  
  350.  
  351. --
  352. -- Name: changesets; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  353. --
  354.  
  355. CREATE TABLE changesets (
  356. id integer NOT NULL,
  357. parent integer,
  358. child integer NOT NULL,
  359. type changesettype NOT NULL
  360. );
  361.  
  362.  
  363. ALTER TABLE public.changesets OWNER TO critic;
  364.  
  365. --
  366. -- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  367. --
  368.  
  369. CREATE SEQUENCE changesets_id_seq
  370. START WITH 1
  371. INCREMENT BY 1
  372. NO MINVALUE
  373. NO MAXVALUE
  374. CACHE 1;
  375.  
  376.  
  377. ALTER TABLE public.changesets_id_seq OWNER TO critic;
  378.  
  379. --
  380. -- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  381. --
  382.  
  383. ALTER SEQUENCE changesets_id_seq OWNED BY changesets.id;
  384.  
  385.  
  386. --
  387. -- Name: checkbranchnotes; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  388. --
  389.  
  390. CREATE TABLE checkbranchnotes (
  391. repository integer NOT NULL,
  392. branch character varying(256) NOT NULL,
  393. upstream character varying(256) NOT NULL,
  394. sha1 character(40) NOT NULL,
  395. uid integer NOT NULL,
  396. review integer,
  397. text text
  398. );
  399.  
  400.  
  401. ALTER TABLE public.checkbranchnotes OWNER TO critic;
  402.  
  403. --
  404. -- Name: chunks; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  405. --
  406.  
  407. CREATE TABLE chunks (
  408. id integer NOT NULL,
  409. changeset integer NOT NULL,
  410. file integer NOT NULL,
  411. deleteoffset integer NOT NULL,
  412. deletecount integer NOT NULL,
  413. insertoffset integer NOT NULL,
  414. insertcount integer NOT NULL,
  415. analysis text,
  416. whitespace integer NOT NULL
  417. );
  418.  
  419.  
  420. ALTER TABLE public.chunks OWNER TO critic;
  421.  
  422. --
  423. -- Name: chunks_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  424. --
  425.  
  426. CREATE SEQUENCE chunks_id_seq
  427. START WITH 1
  428. INCREMENT BY 1
  429. NO MINVALUE
  430. NO MAXVALUE
  431. CACHE 1;
  432.  
  433.  
  434. ALTER TABLE public.chunks_id_seq OWNER TO critic;
  435.  
  436. --
  437. -- Name: chunks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  438. --
  439.  
  440. ALTER SEQUENCE chunks_id_seq OWNED BY chunks.id;
  441.  
  442.  
  443. --
  444. -- Name: codecontexts; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  445. --
  446.  
  447. CREATE TABLE codecontexts (
  448. sha1 character(40),
  449. context character varying(256) NOT NULL,
  450. first_line integer NOT NULL,
  451. last_line integer NOT NULL
  452. );
  453.  
  454.  
  455. ALTER TABLE public.codecontexts OWNER TO critic;
  456.  
  457. --
  458. -- Name: commentchainchanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  459. --
  460.  
  461. CREATE TABLE commentchainchanges (
  462. batch integer,
  463. uid integer NOT NULL,
  464. chain integer NOT NULL,
  465. "time" timestamp without time zone DEFAULT now() NOT NULL,
  466. state commentchainchangestate DEFAULT 'draft'::commentchainchangestate NOT NULL,
  467. from_type commentchaintype,
  468. to_type commentchaintype,
  469. from_state commentchainstate,
  470. to_state commentchainstate,
  471. from_last_commit integer,
  472. to_last_commit integer,
  473. from_addressed_by integer,
  474. to_addressed_by integer
  475. );
  476.  
  477.  
  478. ALTER TABLE public.commentchainchanges OWNER TO critic;
  479.  
  480. --
  481. -- Name: commentchainlines; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  482. --
  483.  
  484. CREATE TABLE commentchainlines (
  485. chain integer NOT NULL,
  486. uid integer,
  487. "time" timestamp without time zone DEFAULT now() NOT NULL,
  488. state commentchainlinesstate DEFAULT 'draft'::commentchainlinesstate NOT NULL,
  489. sha1 character(40) NOT NULL,
  490. first_line integer NOT NULL,
  491. last_line integer NOT NULL
  492. );
  493.  
  494.  
  495. ALTER TABLE public.commentchainlines OWNER TO critic;
  496.  
  497. --
  498. -- Name: commentchains; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  499. --
  500.  
  501. CREATE TABLE commentchains (
  502. id integer NOT NULL,
  503. review integer NOT NULL,
  504. batch integer,
  505. uid integer NOT NULL,
  506. "time" timestamp without time zone DEFAULT now() NOT NULL,
  507. type commentchaintype DEFAULT 'issue'::commentchaintype NOT NULL,
  508. state commentchainstate DEFAULT 'draft'::commentchainstate NOT NULL,
  509. origin commentchainorigin,
  510. file integer,
  511. first_commit integer,
  512. last_commit integer,
  513. closed_by integer,
  514. addressed_by integer,
  515. first_comment integer
  516. );
  517.  
  518.  
  519. ALTER TABLE public.commentchains OWNER TO critic;
  520.  
  521. --
  522. -- Name: commentchains_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  523. --
  524.  
  525. CREATE SEQUENCE commentchains_id_seq
  526. START WITH 1
  527. INCREMENT BY 1
  528. NO MINVALUE
  529. NO MAXVALUE
  530. CACHE 1;
  531.  
  532.  
  533. ALTER TABLE public.commentchains_id_seq OWNER TO critic;
  534.  
  535. --
  536. -- Name: commentchains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  537. --
  538.  
  539. ALTER SEQUENCE commentchains_id_seq OWNED BY commentchains.id;
  540.  
  541.  
  542. --
  543. -- Name: commentchainusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  544. --
  545.  
  546. CREATE TABLE commentchainusers (
  547. chain integer NOT NULL,
  548. uid integer NOT NULL
  549. );
  550.  
  551.  
  552. ALTER TABLE public.commentchainusers OWNER TO critic;
  553.  
  554. --
  555. -- Name: commentmessageids; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  556. --
  557.  
  558. CREATE TABLE commentmessageids (
  559. uid integer NOT NULL,
  560. comment integer NOT NULL,
  561. messageid character(24) NOT NULL
  562. );
  563.  
  564.  
  565. ALTER TABLE public.commentmessageids OWNER TO critic;
  566.  
  567. --
  568. -- Name: comments; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  569. --
  570.  
  571. CREATE TABLE comments (
  572. id integer NOT NULL,
  573. chain integer NOT NULL,
  574. batch integer,
  575. uid integer NOT NULL,
  576. "time" timestamp without time zone NOT NULL,
  577. state commentstate NOT NULL,
  578. comment text,
  579. code text
  580. );
  581.  
  582.  
  583. ALTER TABLE public.comments OWNER TO critic;
  584.  
  585. --
  586. -- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  587. --
  588.  
  589. CREATE SEQUENCE comments_id_seq
  590. START WITH 1
  591. INCREMENT BY 1
  592. NO MINVALUE
  593. NO MAXVALUE
  594. CACHE 1;
  595.  
  596.  
  597. ALTER TABLE public.comments_id_seq OWNER TO critic;
  598.  
  599. --
  600. -- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  601. --
  602.  
  603. ALTER SEQUENCE comments_id_seq OWNED BY comments.id;
  604.  
  605.  
  606. --
  607. -- Name: commentstoread; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  608. --
  609.  
  610. CREATE TABLE commentstoread (
  611. uid integer NOT NULL,
  612. comment integer NOT NULL
  613. );
  614.  
  615.  
  616. ALTER TABLE public.commentstoread OWNER TO critic;
  617.  
  618. --
  619. -- Name: commits; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  620. --
  621.  
  622. CREATE TABLE commits (
  623. id integer NOT NULL,
  624. sha1 character(40) NOT NULL,
  625. author_gituser integer NOT NULL,
  626. commit_gituser integer NOT NULL,
  627. author_time timestamp without time zone NOT NULL,
  628. commit_time timestamp without time zone NOT NULL
  629. );
  630.  
  631.  
  632. ALTER TABLE public.commits OWNER TO critic;
  633.  
  634. --
  635. -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  636. --
  637.  
  638. CREATE SEQUENCE commits_id_seq
  639. START WITH 1
  640. INCREMENT BY 1
  641. NO MINVALUE
  642. NO MAXVALUE
  643. CACHE 1;
  644.  
  645.  
  646. ALTER TABLE public.commits_id_seq OWNER TO critic;
  647.  
  648. --
  649. -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  650. --
  651.  
  652. ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
  653.  
  654.  
  655. --
  656. -- Name: customchangesets; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  657. --
  658.  
  659. CREATE TABLE customchangesets (
  660. changeset integer NOT NULL,
  661. "time" timestamp without time zone
  662. );
  663.  
  664.  
  665. ALTER TABLE public.customchangesets OWNER TO critic;
  666.  
  667. --
  668. -- Name: edges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  669. --
  670.  
  671. CREATE TABLE edges (
  672. parent integer NOT NULL,
  673. child integer NOT NULL
  674. );
  675.  
  676.  
  677. ALTER TABLE public.edges OWNER TO critic;
  678.  
  679. --
  680. -- Name: extensionfilterhookcommits; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  681. --
  682.  
  683. CREATE TABLE extensionfilterhookcommits (
  684. event integer NOT NULL,
  685. commit integer NOT NULL
  686. );
  687.  
  688.  
  689. ALTER TABLE public.extensionfilterhookcommits OWNER TO critic;
  690.  
  691. --
  692. -- Name: extensionfilterhookevents; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  693. --
  694.  
  695. CREATE TABLE extensionfilterhookevents (
  696. id integer NOT NULL,
  697. filter integer NOT NULL,
  698. review integer NOT NULL,
  699. uid integer NOT NULL,
  700. data text
  701. );
  702.  
  703.  
  704. ALTER TABLE public.extensionfilterhookevents OWNER TO critic;
  705.  
  706. --
  707. -- Name: extensionfilterhookevents_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  708. --
  709.  
  710. CREATE SEQUENCE extensionfilterhookevents_id_seq
  711. START WITH 1
  712. INCREMENT BY 1
  713. NO MINVALUE
  714. NO MAXVALUE
  715. CACHE 1;
  716.  
  717.  
  718. ALTER TABLE public.extensionfilterhookevents_id_seq OWNER TO critic;
  719.  
  720. --
  721. -- Name: extensionfilterhookevents_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  722. --
  723.  
  724. ALTER SEQUENCE extensionfilterhookevents_id_seq OWNED BY extensionfilterhookevents.id;
  725.  
  726.  
  727. --
  728. -- Name: extensionfilterhookfiles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  729. --
  730.  
  731. CREATE TABLE extensionfilterhookfiles (
  732. event integer NOT NULL,
  733. file integer NOT NULL
  734. );
  735.  
  736.  
  737. ALTER TABLE public.extensionfilterhookfiles OWNER TO critic;
  738.  
  739. --
  740. -- Name: extensionfilterhookroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  741. --
  742.  
  743. CREATE TABLE extensionfilterhookroles (
  744. role integer NOT NULL,
  745. name character varying(64) NOT NULL,
  746. title character varying(64) NOT NULL,
  747. role_description text,
  748. data_description text
  749. );
  750.  
  751.  
  752. ALTER TABLE public.extensionfilterhookroles OWNER TO critic;
  753.  
  754. --
  755. -- Name: extensionhookfilters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  756. --
  757.  
  758. CREATE TABLE extensionhookfilters (
  759. id integer NOT NULL,
  760. uid integer NOT NULL,
  761. extension integer NOT NULL,
  762. repository integer NOT NULL,
  763. name character varying(64) NOT NULL,
  764. path text NOT NULL,
  765. data text
  766. );
  767.  
  768.  
  769. ALTER TABLE public.extensionhookfilters OWNER TO critic;
  770.  
  771. --
  772. -- Name: extensionhookfilters_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  773. --
  774.  
  775. CREATE SEQUENCE extensionhookfilters_id_seq
  776. START WITH 1
  777. INCREMENT BY 1
  778. NO MINVALUE
  779. NO MAXVALUE
  780. CACHE 1;
  781.  
  782.  
  783. ALTER TABLE public.extensionhookfilters_id_seq OWNER TO critic;
  784.  
  785. --
  786. -- Name: extensionhookfilters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  787. --
  788.  
  789. ALTER SEQUENCE extensionhookfilters_id_seq OWNED BY extensionhookfilters.id;
  790.  
  791.  
  792. --
  793. -- Name: extensioninjectroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  794. --
  795.  
  796. CREATE TABLE extensioninjectroles (
  797. role integer NOT NULL,
  798. path character varying(64) NOT NULL
  799. );
  800.  
  801.  
  802. ALTER TABLE public.extensioninjectroles OWNER TO critic;
  803.  
  804. --
  805. -- Name: extensioninstalls; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  806. --
  807.  
  808. CREATE TABLE extensioninstalls (
  809. id integer NOT NULL,
  810. uid integer,
  811. extension integer NOT NULL,
  812. version integer
  813. );
  814.  
  815.  
  816. ALTER TABLE public.extensioninstalls OWNER TO critic;
  817.  
  818. --
  819. -- Name: extensioninstalls_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  820. --
  821.  
  822. CREATE SEQUENCE extensioninstalls_id_seq
  823. START WITH 1
  824. INCREMENT BY 1
  825. NO MINVALUE
  826. NO MAXVALUE
  827. CACHE 1;
  828.  
  829.  
  830. ALTER TABLE public.extensioninstalls_id_seq OWNER TO critic;
  831.  
  832. --
  833. -- Name: extensioninstalls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  834. --
  835.  
  836. ALTER SEQUENCE extensioninstalls_id_seq OWNED BY extensioninstalls.id;
  837.  
  838.  
  839. --
  840. -- Name: extensionlog; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  841. --
  842.  
  843. CREATE TABLE extensionlog (
  844. extension integer NOT NULL,
  845. uid integer NOT NULL,
  846. category character varying(64) DEFAULT 'default'::character varying NOT NULL,
  847. "time" timestamp without time zone DEFAULT now() NOT NULL,
  848. text text NOT NULL
  849. );
  850.  
  851.  
  852. ALTER TABLE public.extensionlog OWNER TO critic;
  853.  
  854. --
  855. -- Name: extensionpageroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  856. --
  857.  
  858. CREATE TABLE extensionpageroles (
  859. role integer NOT NULL,
  860. path character varying(64) NOT NULL
  861. );
  862.  
  863.  
  864. ALTER TABLE public.extensionpageroles OWNER TO critic;
  865.  
  866. --
  867. -- Name: extensionprocesscommitsroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  868. --
  869.  
  870. CREATE TABLE extensionprocesscommitsroles (
  871. role integer NOT NULL
  872. );
  873.  
  874.  
  875. ALTER TABLE public.extensionprocesscommitsroles OWNER TO critic;
  876.  
  877. --
  878. -- Name: extensionroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  879. --
  880.  
  881. CREATE TABLE extensionroles (
  882. id integer NOT NULL,
  883. version integer NOT NULL,
  884. script character varying(64) NOT NULL,
  885. function character varying(64) NOT NULL
  886. );
  887.  
  888.  
  889. ALTER TABLE public.extensionroles OWNER TO critic;
  890.  
  891. --
  892. -- Name: extensionroles_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  893. --
  894.  
  895. CREATE SEQUENCE extensionroles_id_seq
  896. START WITH 1
  897. INCREMENT BY 1
  898. NO MINVALUE
  899. NO MAXVALUE
  900. CACHE 1;
  901.  
  902.  
  903. ALTER TABLE public.extensionroles_id_seq OWNER TO critic;
  904.  
  905. --
  906. -- Name: extensionroles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  907. --
  908.  
  909. ALTER SEQUENCE extensionroles_id_seq OWNED BY extensionroles.id;
  910.  
  911.  
  912. --
  913. -- Name: extensionroles_inject; Type: VIEW; Schema: public; Owner: critic
  914. --
  915.  
  916. CREATE VIEW extensionroles_inject AS
  917. SELECT extensionroles.version,
  918. extensioninjectroles.path,
  919. extensionroles.script,
  920. extensionroles.function
  921. FROM (extensionroles
  922. JOIN extensioninjectroles ON ((extensioninjectroles.role = extensionroles.id)));
  923.  
  924.  
  925. ALTER TABLE public.extensionroles_inject OWNER TO critic;
  926.  
  927. --
  928. -- Name: extensionroles_page; Type: VIEW; Schema: public; Owner: critic
  929. --
  930.  
  931. CREATE VIEW extensionroles_page AS
  932. SELECT extensionroles.version,
  933. extensionpageroles.path,
  934. extensionroles.script,
  935. extensionroles.function
  936. FROM (extensionroles
  937. JOIN extensionpageroles ON ((extensionpageroles.role = extensionroles.id)));
  938.  
  939.  
  940. ALTER TABLE public.extensionroles_page OWNER TO critic;
  941.  
  942. --
  943. -- Name: extensions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  944. --
  945.  
  946. CREATE TABLE extensions (
  947. id integer NOT NULL,
  948. author integer,
  949. name character varying(64) NOT NULL
  950. );
  951.  
  952.  
  953. ALTER TABLE public.extensions OWNER TO critic;
  954.  
  955. --
  956. -- Name: extensions_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  957. --
  958.  
  959. CREATE SEQUENCE extensions_id_seq
  960. START WITH 1
  961. INCREMENT BY 1
  962. NO MINVALUE
  963. NO MAXVALUE
  964. CACHE 1;
  965.  
  966.  
  967. ALTER TABLE public.extensions_id_seq OWNER TO critic;
  968.  
  969. --
  970. -- Name: extensions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  971. --
  972.  
  973. ALTER SEQUENCE extensions_id_seq OWNED BY extensions.id;
  974.  
  975.  
  976. --
  977. -- Name: extensionstorage; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  978. --
  979.  
  980. CREATE TABLE extensionstorage (
  981. extension integer NOT NULL,
  982. uid integer NOT NULL,
  983. key character varying(64) NOT NULL,
  984. text text NOT NULL
  985. );
  986.  
  987.  
  988. ALTER TABLE public.extensionstorage OWNER TO critic;
  989.  
  990. --
  991. -- Name: extensionversions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  992. --
  993.  
  994. CREATE TABLE extensionversions (
  995. id integer NOT NULL,
  996. extension integer NOT NULL,
  997. name character varying(256) NOT NULL,
  998. sha1 character(40) NOT NULL
  999. );
  1000.  
  1001.  
  1002. ALTER TABLE public.extensionversions OWNER TO critic;
  1003.  
  1004. --
  1005. -- Name: extensionversions_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1006. --
  1007.  
  1008. CREATE SEQUENCE extensionversions_id_seq
  1009. START WITH 1
  1010. INCREMENT BY 1
  1011. NO MINVALUE
  1012. NO MAXVALUE
  1013. CACHE 1;
  1014.  
  1015.  
  1016. ALTER TABLE public.extensionversions_id_seq OWNER TO critic;
  1017.  
  1018. --
  1019. -- Name: extensionversions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1020. --
  1021.  
  1022. ALTER SEQUENCE extensionversions_id_seq OWNED BY extensionversions.id;
  1023.  
  1024.  
  1025. --
  1026. -- Name: externalusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1027. --
  1028.  
  1029. CREATE TABLE externalusers (
  1030. id integer NOT NULL,
  1031. uid integer,
  1032. provider character varying(16) NOT NULL,
  1033. account character varying(256) NOT NULL,
  1034. email character varying(256),
  1035. token character varying(256)
  1036. );
  1037.  
  1038.  
  1039. ALTER TABLE public.externalusers OWNER TO critic;
  1040.  
  1041. --
  1042. -- Name: externalusers_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1043. --
  1044.  
  1045. CREATE SEQUENCE externalusers_id_seq
  1046. START WITH 1
  1047. INCREMENT BY 1
  1048. NO MINVALUE
  1049. NO MAXVALUE
  1050. CACHE 1;
  1051.  
  1052.  
  1053. ALTER TABLE public.externalusers_id_seq OWNER TO critic;
  1054.  
  1055. --
  1056. -- Name: externalusers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1057. --
  1058.  
  1059. ALTER SEQUENCE externalusers_id_seq OWNED BY externalusers.id;
  1060.  
  1061.  
  1062. --
  1063. -- Name: files; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1064. --
  1065.  
  1066. CREATE TABLE files (
  1067. id integer NOT NULL,
  1068. path text NOT NULL
  1069. );
  1070.  
  1071.  
  1072. ALTER TABLE public.files OWNER TO critic;
  1073.  
  1074. --
  1075. -- Name: files_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1076. --
  1077.  
  1078. CREATE SEQUENCE files_id_seq
  1079. START WITH 1
  1080. INCREMENT BY 1
  1081. NO MINVALUE
  1082. NO MAXVALUE
  1083. CACHE 1;
  1084.  
  1085.  
  1086. ALTER TABLE public.files_id_seq OWNER TO critic;
  1087.  
  1088. --
  1089. -- Name: files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1090. --
  1091.  
  1092. ALTER SEQUENCE files_id_seq OWNED BY files.id;
  1093.  
  1094.  
  1095. --
  1096. -- Name: fileversions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1097. --
  1098.  
  1099. CREATE TABLE fileversions (
  1100. changeset integer NOT NULL,
  1101. file integer NOT NULL,
  1102. old_sha1 character(40),
  1103. new_sha1 character(40),
  1104. old_mode character(6),
  1105. new_mode character(6)
  1106. );
  1107.  
  1108.  
  1109. ALTER TABLE public.fileversions OWNER TO critic;
  1110.  
  1111. --
  1112. -- Name: filters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1113. --
  1114.  
  1115. CREATE TABLE filters (
  1116. id integer NOT NULL,
  1117. uid integer NOT NULL,
  1118. repository integer NOT NULL,
  1119. path text NOT NULL,
  1120. type filtertype NOT NULL,
  1121. delegate text
  1122. );
  1123.  
  1124.  
  1125. ALTER TABLE public.filters OWNER TO critic;
  1126.  
  1127. --
  1128. -- Name: filters_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1129. --
  1130.  
  1131. CREATE SEQUENCE filters_id_seq
  1132. START WITH 1
  1133. INCREMENT BY 1
  1134. NO MINVALUE
  1135. NO MAXVALUE
  1136. CACHE 1;
  1137.  
  1138.  
  1139. ALTER TABLE public.filters_id_seq OWNER TO critic;
  1140.  
  1141. --
  1142. -- Name: filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1143. --
  1144.  
  1145. ALTER SEQUENCE filters_id_seq OWNED BY filters.id;
  1146.  
  1147.  
  1148. --
  1149. -- Name: reviewfiles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1150. --
  1151.  
  1152. CREATE TABLE reviewfiles (
  1153. id integer NOT NULL,
  1154. review integer NOT NULL,
  1155. changeset integer NOT NULL,
  1156. file integer NOT NULL,
  1157. deleted integer NOT NULL,
  1158. inserted integer NOT NULL,
  1159. state reviewfilestate DEFAULT 'pending'::reviewfilestate NOT NULL,
  1160. reviewer integer,
  1161. "time" timestamp without time zone
  1162. );
  1163.  
  1164.  
  1165. ALTER TABLE public.reviewfiles OWNER TO critic;
  1166.  
  1167. --
  1168. -- Name: reviewuserfiles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1169. --
  1170.  
  1171. CREATE TABLE reviewuserfiles (
  1172. file integer NOT NULL,
  1173. uid integer NOT NULL,
  1174. "time" timestamp without time zone DEFAULT now()
  1175. );
  1176.  
  1177.  
  1178. ALTER TABLE public.reviewuserfiles OWNER TO critic;
  1179.  
  1180. --
  1181. -- Name: fullreviewuserfiles; Type: VIEW; Schema: public; Owner: critic
  1182. --
  1183.  
  1184. CREATE VIEW fullreviewuserfiles AS
  1185. SELECT reviewfiles.review,
  1186. reviewfiles.changeset,
  1187. reviewfiles.file,
  1188. reviewfiles.deleted,
  1189. reviewfiles.inserted,
  1190. reviewfiles.state,
  1191. reviewfiles.reviewer,
  1192. reviewuserfiles.uid AS assignee
  1193. FROM (reviewfiles
  1194. JOIN reviewuserfiles ON ((reviewuserfiles.file = reviewfiles.id)));
  1195.  
  1196.  
  1197. ALTER TABLE public.fullreviewuserfiles OWNER TO critic;
  1198.  
  1199. --
  1200. -- Name: gitusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1201. --
  1202.  
  1203. CREATE TABLE gitusers (
  1204. id integer NOT NULL,
  1205. email character varying(256) NOT NULL,
  1206. fullname character varying(256) NOT NULL
  1207. );
  1208.  
  1209.  
  1210. ALTER TABLE public.gitusers OWNER TO critic;
  1211.  
  1212. --
  1213. -- Name: gitusers_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1214. --
  1215.  
  1216. CREATE SEQUENCE gitusers_id_seq
  1217. START WITH 1
  1218. INCREMENT BY 1
  1219. NO MINVALUE
  1220. NO MAXVALUE
  1221. CACHE 1;
  1222.  
  1223.  
  1224. ALTER TABLE public.gitusers_id_seq OWNER TO critic;
  1225.  
  1226. --
  1227. -- Name: gitusers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1228. --
  1229.  
  1230. ALTER SEQUENCE gitusers_id_seq OWNED BY gitusers.id;
  1231.  
  1232.  
  1233. --
  1234. -- Name: knownremotes; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1235. --
  1236.  
  1237. CREATE TABLE knownremotes (
  1238. url character varying(256) NOT NULL,
  1239. pushing boolean NOT NULL
  1240. );
  1241.  
  1242.  
  1243. ALTER TABLE public.knownremotes OWNER TO critic;
  1244.  
  1245. --
  1246. -- Name: lockedreviews; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1247. --
  1248.  
  1249. CREATE TABLE lockedreviews (
  1250. review integer NOT NULL
  1251. );
  1252.  
  1253.  
  1254. ALTER TABLE public.lockedreviews OWNER TO critic;
  1255.  
  1256. --
  1257. -- Name: mergebases; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1258. --
  1259.  
  1260. CREATE TABLE mergebases (
  1261. commit integer NOT NULL,
  1262. mergebase character(40)
  1263. );
  1264.  
  1265.  
  1266. ALTER TABLE public.mergebases OWNER TO critic;
  1267.  
  1268. --
  1269. -- Name: mergereplays; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1270. --
  1271.  
  1272. CREATE TABLE mergereplays (
  1273. original integer NOT NULL,
  1274. replay integer NOT NULL
  1275. );
  1276.  
  1277.  
  1278. ALTER TABLE public.mergereplays OWNER TO critic;
  1279.  
  1280. --
  1281. -- Name: newsitems; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1282. --
  1283.  
  1284. CREATE TABLE newsitems (
  1285. id integer NOT NULL,
  1286. date date DEFAULT now(),
  1287. text text NOT NULL
  1288. );
  1289.  
  1290.  
  1291. ALTER TABLE public.newsitems OWNER TO critic;
  1292.  
  1293. --
  1294. -- Name: newsitems_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1295. --
  1296.  
  1297. CREATE SEQUENCE newsitems_id_seq
  1298. START WITH 1
  1299. INCREMENT BY 1
  1300. NO MINVALUE
  1301. NO MAXVALUE
  1302. CACHE 1;
  1303.  
  1304.  
  1305. ALTER TABLE public.newsitems_id_seq OWNER TO critic;
  1306.  
  1307. --
  1308. -- Name: newsitems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1309. --
  1310.  
  1311. ALTER SEQUENCE newsitems_id_seq OWNED BY newsitems.id;
  1312.  
  1313.  
  1314. --
  1315. -- Name: newsread; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1316. --
  1317.  
  1318. CREATE TABLE newsread (
  1319. item integer NOT NULL,
  1320. uid integer NOT NULL
  1321. );
  1322.  
  1323.  
  1324. ALTER TABLE public.newsread OWNER TO critic;
  1325.  
  1326. --
  1327. -- Name: oauthstates; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1328. --
  1329.  
  1330. CREATE TABLE oauthstates (
  1331. state character varying(64) NOT NULL,
  1332. url text,
  1333. "time" timestamp without time zone DEFAULT now() NOT NULL
  1334. );
  1335.  
  1336.  
  1337. ALTER TABLE public.oauthstates OWNER TO critic;
  1338.  
  1339. --
  1340. -- Name: preferences; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1341. --
  1342.  
  1343. CREATE TABLE preferences (
  1344. item character varying(64) NOT NULL,
  1345. type preferencetype NOT NULL,
  1346. description text NOT NULL,
  1347. per_system boolean DEFAULT true NOT NULL,
  1348. per_user boolean DEFAULT true NOT NULL,
  1349. per_repository boolean DEFAULT false NOT NULL,
  1350. per_filter boolean DEFAULT false NOT NULL
  1351. );
  1352.  
  1353.  
  1354. ALTER TABLE public.preferences OWNER TO critic;
  1355.  
  1356. --
  1357. -- Name: previousreachable; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1358. --
  1359.  
  1360. CREATE TABLE previousreachable (
  1361. rebase integer NOT NULL,
  1362. commit integer NOT NULL
  1363. );
  1364.  
  1365.  
  1366. ALTER TABLE public.previousreachable OWNER TO critic;
  1367.  
  1368. --
  1369. -- Name: reachable; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1370. --
  1371.  
  1372. CREATE TABLE reachable (
  1373. branch integer NOT NULL,
  1374. commit integer NOT NULL
  1375. );
  1376.  
  1377.  
  1378. ALTER TABLE public.reachable OWNER TO critic;
  1379.  
  1380. --
  1381. -- Name: relevantcommits; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1382. --
  1383.  
  1384. CREATE TABLE relevantcommits (
  1385. commit integer NOT NULL,
  1386. parent smallint NOT NULL,
  1387. file integer NOT NULL,
  1388. relevant integer NOT NULL
  1389. );
  1390.  
  1391.  
  1392. ALTER TABLE public.relevantcommits OWNER TO critic;
  1393.  
  1394. --
  1395. -- Name: repositories; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1396. --
  1397.  
  1398. CREATE TABLE repositories (
  1399. id integer NOT NULL,
  1400. parent integer,
  1401. name character varying(64) NOT NULL,
  1402. path character varying(256) NOT NULL
  1403. );
  1404.  
  1405.  
  1406. ALTER TABLE public.repositories OWNER TO critic;
  1407.  
  1408. --
  1409. -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1410. --
  1411.  
  1412. CREATE SEQUENCE repositories_id_seq
  1413. START WITH 1
  1414. INCREMENT BY 1
  1415. NO MINVALUE
  1416. NO MAXVALUE
  1417. CACHE 1;
  1418.  
  1419.  
  1420. ALTER TABLE public.repositories_id_seq OWNER TO critic;
  1421.  
  1422. --
  1423. -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1424. --
  1425.  
  1426. ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
  1427.  
  1428.  
  1429. --
  1430. -- Name: reviewassignmentchanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1431. --
  1432.  
  1433. CREATE TABLE reviewassignmentchanges (
  1434. transaction integer NOT NULL,
  1435. file integer NOT NULL,
  1436. uid integer NOT NULL,
  1437. assigned boolean NOT NULL
  1438. );
  1439.  
  1440.  
  1441. ALTER TABLE public.reviewassignmentchanges OWNER TO critic;
  1442.  
  1443. --
  1444. -- Name: reviewassignmentstransactions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1445. --
  1446.  
  1447. CREATE TABLE reviewassignmentstransactions (
  1448. id integer NOT NULL,
  1449. review integer NOT NULL,
  1450. assigner integer NOT NULL,
  1451. note text,
  1452. "time" timestamp without time zone DEFAULT now()
  1453. );
  1454.  
  1455.  
  1456. ALTER TABLE public.reviewassignmentstransactions OWNER TO critic;
  1457.  
  1458. --
  1459. -- Name: reviewassignmentstransactions_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1460. --
  1461.  
  1462. CREATE SEQUENCE reviewassignmentstransactions_id_seq
  1463. START WITH 1
  1464. INCREMENT BY 1
  1465. NO MINVALUE
  1466. NO MAXVALUE
  1467. CACHE 1;
  1468.  
  1469.  
  1470. ALTER TABLE public.reviewassignmentstransactions_id_seq OWNER TO critic;
  1471.  
  1472. --
  1473. -- Name: reviewassignmentstransactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1474. --
  1475.  
  1476. ALTER SEQUENCE reviewassignmentstransactions_id_seq OWNED BY reviewassignmentstransactions.id;
  1477.  
  1478.  
  1479. --
  1480. -- Name: reviewchangesets; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1481. --
  1482.  
  1483. CREATE TABLE reviewchangesets (
  1484. review integer NOT NULL,
  1485. changeset integer NOT NULL
  1486. );
  1487.  
  1488.  
  1489. ALTER TABLE public.reviewchangesets OWNER TO critic;
  1490.  
  1491. --
  1492. -- Name: reviewfilechanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1493. --
  1494.  
  1495. CREATE TABLE reviewfilechanges (
  1496. batch integer,
  1497. file integer NOT NULL,
  1498. uid integer NOT NULL,
  1499. "time" timestamp without time zone DEFAULT now() NOT NULL,
  1500. state reviewfilechangestate DEFAULT 'draft'::reviewfilechangestate NOT NULL,
  1501. from_state reviewfilestate NOT NULL,
  1502. to_state reviewfilestate NOT NULL
  1503. );
  1504.  
  1505.  
  1506. ALTER TABLE public.reviewfilechanges OWNER TO critic;
  1507.  
  1508. --
  1509. -- Name: reviewfiles_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1510. --
  1511.  
  1512. CREATE SEQUENCE reviewfiles_id_seq
  1513. START WITH 1
  1514. INCREMENT BY 1
  1515. NO MINVALUE
  1516. NO MAXVALUE
  1517. CACHE 1;
  1518.  
  1519.  
  1520. ALTER TABLE public.reviewfiles_id_seq OWNER TO critic;
  1521.  
  1522. --
  1523. -- Name: reviewfiles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1524. --
  1525.  
  1526. ALTER SEQUENCE reviewfiles_id_seq OWNED BY reviewfiles.id;
  1527.  
  1528.  
  1529. --
  1530. -- Name: users; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1531. --
  1532.  
  1533. CREATE TABLE users (
  1534. id integer NOT NULL,
  1535. name character varying(64) NOT NULL,
  1536. fullname character varying(256),
  1537. password character varying(256),
  1538. email integer,
  1539. status userstatus DEFAULT 'unknown'::userstatus NOT NULL
  1540. );
  1541.  
  1542.  
  1543. ALTER TABLE public.users OWNER TO critic;
  1544.  
  1545. --
  1546. -- Name: reviewfilesharing; Type: VIEW; Schema: public; Owner: critic
  1547. --
  1548.  
  1549. CREATE VIEW reviewfilesharing AS
  1550. SELECT reviewfiles.review,
  1551. reviewfiles.id AS file,
  1552. count(reviewuserfiles.uid) AS reviewers
  1553. FROM ((reviewfiles
  1554. JOIN reviewuserfiles ON ((reviewfiles.id = reviewuserfiles.file)))
  1555. JOIN users ON ((users.id = reviewuserfiles.uid)))
  1556. WHERE (users.status = 'current'::userstatus)
  1557. GROUP BY reviewfiles.review, reviewfiles.id;
  1558.  
  1559.  
  1560. ALTER TABLE public.reviewfilesharing OWNER TO critic;
  1561.  
  1562. --
  1563. -- Name: reviewfilterchanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1564. --
  1565.  
  1566. CREATE TABLE reviewfilterchanges (
  1567. transaction integer NOT NULL,
  1568. uid integer NOT NULL,
  1569. path text NOT NULL,
  1570. type filtertype NOT NULL,
  1571. created boolean NOT NULL
  1572. );
  1573.  
  1574.  
  1575. ALTER TABLE public.reviewfilterchanges OWNER TO critic;
  1576.  
  1577. --
  1578. -- Name: reviewfilters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1579. --
  1580.  
  1581. CREATE TABLE reviewfilters (
  1582. id integer NOT NULL,
  1583. review integer NOT NULL,
  1584. uid integer NOT NULL,
  1585. path text NOT NULL,
  1586. type filtertype NOT NULL,
  1587. creator integer NOT NULL
  1588. );
  1589.  
  1590.  
  1591. ALTER TABLE public.reviewfilters OWNER TO critic;
  1592.  
  1593. --
  1594. -- Name: reviewfilters_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1595. --
  1596.  
  1597. CREATE SEQUENCE reviewfilters_id_seq
  1598. START WITH 1
  1599. INCREMENT BY 1
  1600. NO MINVALUE
  1601. NO MAXVALUE
  1602. CACHE 1;
  1603.  
  1604.  
  1605. ALTER TABLE public.reviewfilters_id_seq OWNER TO critic;
  1606.  
  1607. --
  1608. -- Name: reviewfilters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1609. --
  1610.  
  1611. ALTER SEQUENCE reviewfilters_id_seq OWNED BY reviewfilters.id;
  1612.  
  1613.  
  1614. --
  1615. -- Name: reviewmergeconfirmations; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1616. --
  1617.  
  1618. CREATE TABLE reviewmergeconfirmations (
  1619. id integer NOT NULL,
  1620. review integer NOT NULL,
  1621. uid integer NOT NULL,
  1622. merge integer NOT NULL,
  1623. tail integer,
  1624. confirmed boolean DEFAULT false NOT NULL
  1625. );
  1626.  
  1627.  
  1628. ALTER TABLE public.reviewmergeconfirmations OWNER TO critic;
  1629.  
  1630. --
  1631. -- Name: reviewmergeconfirmations_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1632. --
  1633.  
  1634. CREATE SEQUENCE reviewmergeconfirmations_id_seq
  1635. START WITH 1
  1636. INCREMENT BY 1
  1637. NO MINVALUE
  1638. NO MAXVALUE
  1639. CACHE 1;
  1640.  
  1641.  
  1642. ALTER TABLE public.reviewmergeconfirmations_id_seq OWNER TO critic;
  1643.  
  1644. --
  1645. -- Name: reviewmergeconfirmations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1646. --
  1647.  
  1648. ALTER SEQUENCE reviewmergeconfirmations_id_seq OWNED BY reviewmergeconfirmations.id;
  1649.  
  1650.  
  1651. --
  1652. -- Name: reviewmergecontributions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1653. --
  1654.  
  1655. CREATE TABLE reviewmergecontributions (
  1656. id integer NOT NULL,
  1657. merged integer NOT NULL
  1658. );
  1659.  
  1660.  
  1661. ALTER TABLE public.reviewmergecontributions OWNER TO critic;
  1662.  
  1663. --
  1664. -- Name: reviewmessageids; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1665. --
  1666.  
  1667. CREATE TABLE reviewmessageids (
  1668. uid integer NOT NULL,
  1669. review integer NOT NULL,
  1670. messageid character(24) NOT NULL
  1671. );
  1672.  
  1673.  
  1674. ALTER TABLE public.reviewmessageids OWNER TO critic;
  1675.  
  1676. --
  1677. -- Name: reviewrebases; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1678. --
  1679.  
  1680. CREATE TABLE reviewrebases (
  1681. id integer NOT NULL,
  1682. review integer NOT NULL,
  1683. old_head integer NOT NULL,
  1684. new_head integer,
  1685. old_upstream integer,
  1686. new_upstream integer,
  1687. equivalent_merge integer,
  1688. replayed_rebase integer,
  1689. uid integer NOT NULL,
  1690. branch character varying(256)
  1691. );
  1692.  
  1693.  
  1694. ALTER TABLE public.reviewrebases OWNER TO critic;
  1695.  
  1696. --
  1697. -- Name: reviewrebases_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1698. --
  1699.  
  1700. CREATE SEQUENCE reviewrebases_id_seq
  1701. START WITH 1
  1702. INCREMENT BY 1
  1703. NO MINVALUE
  1704. NO MAXVALUE
  1705. CACHE 1;
  1706.  
  1707.  
  1708. ALTER TABLE public.reviewrebases_id_seq OWNER TO critic;
  1709.  
  1710. --
  1711. -- Name: reviewrebases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1712. --
  1713.  
  1714. ALTER SEQUENCE reviewrebases_id_seq OWNED BY reviewrebases.id;
  1715.  
  1716.  
  1717. --
  1718. -- Name: reviewrecipientfilters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1719. --
  1720.  
  1721. CREATE TABLE reviewrecipientfilters (
  1722. review integer NOT NULL,
  1723. uid integer,
  1724. include boolean NOT NULL
  1725. );
  1726.  
  1727.  
  1728. ALTER TABLE public.reviewrecipientfilters OWNER TO critic;
  1729.  
  1730. --
  1731. -- Name: reviews; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1732. --
  1733.  
  1734. CREATE TABLE reviews (
  1735. id integer NOT NULL,
  1736. type reviewtype NOT NULL,
  1737. branch integer NOT NULL,
  1738. origin integer,
  1739. state reviewstate NOT NULL,
  1740. serial integer DEFAULT 0 NOT NULL,
  1741. closed_by integer,
  1742. dropped_by integer,
  1743. applyfilters boolean NOT NULL,
  1744. applyparentfilters boolean NOT NULL,
  1745. summary text,
  1746. description text
  1747. );
  1748.  
  1749.  
  1750. ALTER TABLE public.reviews OWNER TO critic;
  1751.  
  1752. --
  1753. -- Name: reviews_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1754. --
  1755.  
  1756. CREATE SEQUENCE reviews_id_seq
  1757. START WITH 1
  1758. INCREMENT BY 1
  1759. NO MINVALUE
  1760. NO MAXVALUE
  1761. CACHE 1;
  1762.  
  1763.  
  1764. ALTER TABLE public.reviews_id_seq OWNER TO critic;
  1765.  
  1766. --
  1767. -- Name: reviews_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1768. --
  1769.  
  1770. ALTER SEQUENCE reviews_id_seq OWNED BY reviews.id;
  1771.  
  1772.  
  1773. --
  1774. -- Name: reviewusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1775. --
  1776.  
  1777. CREATE TABLE reviewusers (
  1778. review integer NOT NULL,
  1779. uid integer NOT NULL,
  1780. owner boolean DEFAULT false NOT NULL,
  1781. type reviewusertype DEFAULT 'automatic'::reviewusertype NOT NULL
  1782. );
  1783.  
  1784.  
  1785. ALTER TABLE public.reviewusers OWNER TO critic;
  1786.  
  1787. --
  1788. -- Name: roles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1789. --
  1790.  
  1791. CREATE TABLE roles (
  1792. name character varying(64) NOT NULL,
  1793. description text
  1794. );
  1795.  
  1796.  
  1797. ALTER TABLE public.roles OWNER TO critic;
  1798.  
  1799. --
  1800. -- Name: scheduledreviewbrancharchivals; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1801. --
  1802.  
  1803. CREATE TABLE scheduledreviewbrancharchivals (
  1804. review integer NOT NULL,
  1805. deadline timestamp without time zone NOT NULL
  1806. );
  1807.  
  1808.  
  1809. ALTER TABLE public.scheduledreviewbrancharchivals OWNER TO critic;
  1810.  
  1811. --
  1812. -- Name: systemidentities; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1813. --
  1814.  
  1815. CREATE TABLE systemidentities (
  1816. key character varying(32) NOT NULL,
  1817. name character varying(64),
  1818. anonymous_scheme character varying(5) NOT NULL,
  1819. authenticated_scheme character varying(5) NOT NULL,
  1820. hostname character varying(265) NOT NULL,
  1821. description character varying(256) NOT NULL,
  1822. installed_sha1 character(40) NOT NULL,
  1823. installed_at timestamp without time zone DEFAULT now() NOT NULL
  1824. );
  1825.  
  1826.  
  1827. ALTER TABLE public.systemidentities OWNER TO critic;
  1828.  
  1829. --
  1830. -- Name: tags; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1831. --
  1832.  
  1833. CREATE TABLE tags (
  1834. id integer NOT NULL,
  1835. name character varying(256) NOT NULL,
  1836. repository integer NOT NULL,
  1837. sha1 character(40) NOT NULL
  1838. );
  1839.  
  1840.  
  1841. ALTER TABLE public.tags OWNER TO critic;
  1842.  
  1843. --
  1844. -- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1845. --
  1846.  
  1847. CREATE SEQUENCE tags_id_seq
  1848. START WITH 1
  1849. INCREMENT BY 1
  1850. NO MINVALUE
  1851. NO MAXVALUE
  1852. CACHE 1;
  1853.  
  1854.  
  1855. ALTER TABLE public.tags_id_seq OWNER TO critic;
  1856.  
  1857. --
  1858. -- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1859. --
  1860.  
  1861. ALTER SEQUENCE tags_id_seq OWNED BY tags.id;
  1862.  
  1863.  
  1864. --
  1865. -- Name: timezones; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1866. --
  1867.  
  1868. CREATE TABLE timezones (
  1869. name character varying(256) NOT NULL,
  1870. abbrev character varying(16) NOT NULL,
  1871. utc_offset interval NOT NULL
  1872. );
  1873.  
  1874.  
  1875. ALTER TABLE public.timezones OWNER TO critic;
  1876.  
  1877. --
  1878. -- Name: trackedbranches; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1879. --
  1880.  
  1881. CREATE TABLE trackedbranches (
  1882. id integer NOT NULL,
  1883. repository integer NOT NULL,
  1884. local_name character varying(256) NOT NULL,
  1885. remote character varying(256) NOT NULL,
  1886. remote_name character varying(256) NOT NULL,
  1887. forced boolean NOT NULL,
  1888. disabled boolean DEFAULT false NOT NULL,
  1889. updating boolean DEFAULT false NOT NULL,
  1890. delay interval NOT NULL,
  1891. previous timestamp without time zone,
  1892. next timestamp without time zone
  1893. );
  1894.  
  1895.  
  1896. ALTER TABLE public.trackedbranches OWNER TO critic;
  1897.  
  1898. --
  1899. -- Name: trackedbranches_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1900. --
  1901.  
  1902. CREATE SEQUENCE trackedbranches_id_seq
  1903. START WITH 1
  1904. INCREMENT BY 1
  1905. NO MINVALUE
  1906. NO MAXVALUE
  1907. CACHE 1;
  1908.  
  1909.  
  1910. ALTER TABLE public.trackedbranches_id_seq OWNER TO critic;
  1911.  
  1912. --
  1913. -- Name: trackedbranches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1914. --
  1915.  
  1916. ALTER SEQUENCE trackedbranches_id_seq OWNED BY trackedbranches.id;
  1917.  
  1918.  
  1919. --
  1920. -- Name: trackedbranchlog; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1921. --
  1922.  
  1923. CREATE TABLE trackedbranchlog (
  1924. branch integer NOT NULL,
  1925. "time" timestamp without time zone DEFAULT now() NOT NULL,
  1926. from_sha1 character(40),
  1927. to_sha1 character(40) NOT NULL,
  1928. hook_output text NOT NULL,
  1929. successful boolean NOT NULL
  1930. );
  1931.  
  1932.  
  1933. ALTER TABLE public.trackedbranchlog OWNER TO critic;
  1934.  
  1935. --
  1936. -- Name: trackedbranchusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1937. --
  1938.  
  1939. CREATE TABLE trackedbranchusers (
  1940. branch integer NOT NULL,
  1941. uid integer NOT NULL
  1942. );
  1943.  
  1944.  
  1945. ALTER TABLE public.trackedbranchusers OWNER TO critic;
  1946.  
  1947. --
  1948. -- Name: userabsence; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1949. --
  1950.  
  1951. CREATE TABLE userabsence (
  1952. uid integer NOT NULL,
  1953. until date
  1954. );
  1955.  
  1956.  
  1957. ALTER TABLE public.userabsence OWNER TO critic;
  1958.  
  1959. --
  1960. -- Name: useremails; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1961. --
  1962.  
  1963. CREATE TABLE useremails (
  1964. id integer NOT NULL,
  1965. uid integer NOT NULL,
  1966. email character varying(256) NOT NULL,
  1967. verified boolean,
  1968. verification_token character varying(256)
  1969. );
  1970.  
  1971.  
  1972. ALTER TABLE public.useremails OWNER TO critic;
  1973.  
  1974. --
  1975. -- Name: useremails_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  1976. --
  1977.  
  1978. CREATE SEQUENCE useremails_id_seq
  1979. START WITH 1
  1980. INCREMENT BY 1
  1981. NO MINVALUE
  1982. NO MAXVALUE
  1983. CACHE 1;
  1984.  
  1985.  
  1986. ALTER TABLE public.useremails_id_seq OWNER TO critic;
  1987.  
  1988. --
  1989. -- Name: useremails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  1990. --
  1991.  
  1992. ALTER SEQUENCE useremails_id_seq OWNED BY useremails.id;
  1993.  
  1994.  
  1995. --
  1996. -- Name: usergitemails; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  1997. --
  1998.  
  1999. CREATE TABLE usergitemails (
  2000. email character varying(256) NOT NULL,
  2001. uid integer NOT NULL
  2002. );
  2003.  
  2004.  
  2005. ALTER TABLE public.usergitemails OWNER TO critic;
  2006.  
  2007. --
  2008. -- Name: userpreferences; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  2009. --
  2010.  
  2011. CREATE TABLE userpreferences (
  2012. item character varying(64) NOT NULL,
  2013. uid integer,
  2014. repository integer,
  2015. filter integer,
  2016. "integer" integer,
  2017. string text,
  2018. CONSTRAINT check_repository_filter CHECK (((repository IS NULL) OR (filter IS NULL))),
  2019. CONSTRAINT check_uid_filter CHECK (((filter IS NULL) OR (uid IS NOT NULL)))
  2020. );
  2021.  
  2022.  
  2023. ALTER TABLE public.userpreferences OWNER TO critic;
  2024.  
  2025. --
  2026. -- Name: userresources; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  2027. --
  2028.  
  2029. CREATE TABLE userresources (
  2030. uid integer NOT NULL,
  2031. name character varying(32) NOT NULL,
  2032. revision integer DEFAULT 0 NOT NULL,
  2033. source text NOT NULL
  2034. );
  2035.  
  2036.  
  2037. ALTER TABLE public.userresources OWNER TO critic;
  2038.  
  2039. --
  2040. -- Name: userroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  2041. --
  2042.  
  2043. CREATE TABLE userroles (
  2044. uid integer NOT NULL,
  2045. role character varying(64) NOT NULL
  2046. );
  2047.  
  2048.  
  2049. ALTER TABLE public.userroles OWNER TO critic;
  2050.  
  2051. --
  2052. -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
  2053. --
  2054.  
  2055. CREATE SEQUENCE users_id_seq
  2056. START WITH 1
  2057. INCREMENT BY 1
  2058. NO MINVALUE
  2059. NO MAXVALUE
  2060. CACHE 1;
  2061.  
  2062.  
  2063. ALTER TABLE public.users_id_seq OWNER TO critic;
  2064.  
  2065. --
  2066. -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
  2067. --
  2068.  
  2069. ALTER SEQUENCE users_id_seq OWNED BY users.id;
  2070.  
  2071.  
  2072. --
  2073. -- Name: usersessions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
  2074. --
  2075.  
  2076. CREATE TABLE usersessions (
  2077. key character(28) NOT NULL,
  2078. uid integer NOT NULL,
  2079. atime timestamp without time zone DEFAULT now()
  2080. );
  2081.  
  2082.  
  2083. ALTER TABLE public.usersessions OWNER TO critic;
  2084.  
  2085. --
  2086. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2087. --
  2088.  
  2089. ALTER TABLE ONLY batches ALTER COLUMN id SET DEFAULT nextval('batches_id_seq'::regclass);
  2090.  
  2091.  
  2092. --
  2093. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2094. --
  2095.  
  2096. ALTER TABLE ONLY branches ALTER COLUMN id SET DEFAULT nextval('branches_id_seq'::regclass);
  2097.  
  2098.  
  2099. --
  2100. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2101. --
  2102.  
  2103. ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass);
  2104.  
  2105.  
  2106. --
  2107. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2108. --
  2109.  
  2110. ALTER TABLE ONLY chunks ALTER COLUMN id SET DEFAULT nextval('chunks_id_seq'::regclass);
  2111.  
  2112.  
  2113. --
  2114. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2115. --
  2116.  
  2117. ALTER TABLE ONLY commentchains ALTER COLUMN id SET DEFAULT nextval('commentchains_id_seq'::regclass);
  2118.  
  2119.  
  2120. --
  2121. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2122. --
  2123.  
  2124. ALTER TABLE ONLY comments ALTER COLUMN id SET DEFAULT nextval('comments_id_seq'::regclass);
  2125.  
  2126.  
  2127. --
  2128. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2129. --
  2130.  
  2131. ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
  2132.  
  2133.  
  2134. --
  2135. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2136. --
  2137.  
  2138. ALTER TABLE ONLY extensionfilterhookevents ALTER COLUMN id SET DEFAULT nextval('extensionfilterhookevents_id_seq'::regclass);
  2139.  
  2140.  
  2141. --
  2142. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2143. --
  2144.  
  2145. ALTER TABLE ONLY extensionhookfilters ALTER COLUMN id SET DEFAULT nextval('extensionhookfilters_id_seq'::regclass);
  2146.  
  2147.  
  2148. --
  2149. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2150. --
  2151.  
  2152. ALTER TABLE ONLY extensioninstalls ALTER COLUMN id SET DEFAULT nextval('extensioninstalls_id_seq'::regclass);
  2153.  
  2154.  
  2155. --
  2156. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2157. --
  2158.  
  2159. ALTER TABLE ONLY extensionroles ALTER COLUMN id SET DEFAULT nextval('extensionroles_id_seq'::regclass);
  2160.  
  2161.  
  2162. --
  2163. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2164. --
  2165.  
  2166. ALTER TABLE ONLY extensions ALTER COLUMN id SET DEFAULT nextval('extensions_id_seq'::regclass);
  2167.  
  2168.  
  2169. --
  2170. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2171. --
  2172.  
  2173. ALTER TABLE ONLY extensionversions ALTER COLUMN id SET DEFAULT nextval('extensionversions_id_seq'::regclass);
  2174.  
  2175.  
  2176. --
  2177. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2178. --
  2179.  
  2180. ALTER TABLE ONLY externalusers ALTER COLUMN id SET DEFAULT nextval('externalusers_id_seq'::regclass);
  2181.  
  2182.  
  2183. --
  2184. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2185. --
  2186.  
  2187. ALTER TABLE ONLY files ALTER COLUMN id SET DEFAULT nextval('files_id_seq'::regclass);
  2188.  
  2189.  
  2190. --
  2191. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2192. --
  2193.  
  2194. ALTER TABLE ONLY filters ALTER COLUMN id SET DEFAULT nextval('filters_id_seq'::regclass);
  2195.  
  2196.  
  2197. --
  2198. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2199. --
  2200.  
  2201. ALTER TABLE ONLY gitusers ALTER COLUMN id SET DEFAULT nextval('gitusers_id_seq'::regclass);
  2202.  
  2203.  
  2204. --
  2205. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2206. --
  2207.  
  2208. ALTER TABLE ONLY newsitems ALTER COLUMN id SET DEFAULT nextval('newsitems_id_seq'::regclass);
  2209.  
  2210.  
  2211. --
  2212. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2213. --
  2214.  
  2215. ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
  2216.  
  2217.  
  2218. --
  2219. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2220. --
  2221.  
  2222. ALTER TABLE ONLY reviewassignmentstransactions ALTER COLUMN id SET DEFAULT nextval('reviewassignmentstransactions_id_seq'::regclass);
  2223.  
  2224.  
  2225. --
  2226. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2227. --
  2228.  
  2229. ALTER TABLE ONLY reviewfiles ALTER COLUMN id SET DEFAULT nextval('reviewfiles_id_seq'::regclass);
  2230.  
  2231.  
  2232. --
  2233. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2234. --
  2235.  
  2236. ALTER TABLE ONLY reviewfilters ALTER COLUMN id SET DEFAULT nextval('reviewfilters_id_seq'::regclass);
  2237.  
  2238.  
  2239. --
  2240. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2241. --
  2242.  
  2243. ALTER TABLE ONLY reviewmergeconfirmations ALTER COLUMN id SET DEFAULT nextval('reviewmergeconfirmations_id_seq'::regclass);
  2244.  
  2245.  
  2246. --
  2247. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2248. --
  2249.  
  2250. ALTER TABLE ONLY reviewrebases ALTER COLUMN id SET DEFAULT nextval('reviewrebases_id_seq'::regclass);
  2251.  
  2252.  
  2253. --
  2254. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2255. --
  2256.  
  2257. ALTER TABLE ONLY reviews ALTER COLUMN id SET DEFAULT nextval('reviews_id_seq'::regclass);
  2258.  
  2259.  
  2260. --
  2261. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2262. --
  2263.  
  2264. ALTER TABLE ONLY tags ALTER COLUMN id SET DEFAULT nextval('tags_id_seq'::regclass);
  2265.  
  2266.  
  2267. --
  2268. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2269. --
  2270.  
  2271. ALTER TABLE ONLY trackedbranches ALTER COLUMN id SET DEFAULT nextval('trackedbranches_id_seq'::regclass);
  2272.  
  2273.  
  2274. --
  2275. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2276. --
  2277.  
  2278. ALTER TABLE ONLY useremails ALTER COLUMN id SET DEFAULT nextval('useremails_id_seq'::regclass);
  2279.  
  2280.  
  2281. --
  2282. -- Name: id; Type: DEFAULT; Schema: public; Owner: critic
  2283. --
  2284.  
  2285. ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
  2286.  
  2287.  
  2288. --
  2289. -- Data for Name: batches; Type: TABLE DATA; Schema: public; Owner: critic
  2290. --
  2291.  
  2292. COPY batches (id, review, uid, comment, "time") FROM stdin;
  2293. \.
  2294.  
  2295.  
  2296. --
  2297. -- Name: batches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  2298. --
  2299.  
  2300. SELECT pg_catalog.setval('batches_id_seq', 1, false);
  2301.  
  2302.  
  2303. --
  2304. -- Data for Name: branches; Type: TABLE DATA; Schema: public; Owner: critic
  2305. --
  2306.  
  2307. COPY branches (id, name, repository, head, base, tail, type, archived) FROM stdin;
  2308. 1 master 1 1 \N \N normal f
  2309. 2 master 2 953 \N \N normal f
  2310. 3 master 3 957 \N \N normal f
  2311. \.
  2312.  
  2313.  
  2314. --
  2315. -- Name: branches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  2316. --
  2317.  
  2318. SELECT pg_catalog.setval('branches_id_seq', 3, true);
  2319.  
  2320.  
  2321. --
  2322. -- Data for Name: changesets; Type: TABLE DATA; Schema: public; Owner: critic
  2323. --
  2324.  
  2325. COPY changesets (id, parent, child, type) FROM stdin;
  2326. \.
  2327.  
  2328.  
  2329. --
  2330. -- Name: changesets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  2331. --
  2332.  
  2333. SELECT pg_catalog.setval('changesets_id_seq', 1, false);
  2334.  
  2335.  
  2336. --
  2337. -- Data for Name: checkbranchnotes; Type: TABLE DATA; Schema: public; Owner: critic
  2338. --
  2339.  
  2340. COPY checkbranchnotes (repository, branch, upstream, sha1, uid, review, text) FROM stdin;
  2341. \.
  2342.  
  2343.  
  2344. --
  2345. -- Data for Name: chunks; Type: TABLE DATA; Schema: public; Owner: critic
  2346. --
  2347.  
  2348. COPY chunks (id, changeset, file, deleteoffset, deletecount, insertoffset, insertcount, analysis, whitespace) FROM stdin;
  2349. \.
  2350.  
  2351.  
  2352. --
  2353. -- Name: chunks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  2354. --
  2355.  
  2356. SELECT pg_catalog.setval('chunks_id_seq', 1, false);
  2357.  
  2358.  
  2359. --
  2360. -- Data for Name: codecontexts; Type: TABLE DATA; Schema: public; Owner: critic
  2361. --
  2362.  
  2363. COPY codecontexts (sha1, context, first_line, last_line) FROM stdin;
  2364. \.
  2365.  
  2366.  
  2367. --
  2368. -- Data for Name: commentchainchanges; Type: TABLE DATA; Schema: public; Owner: critic
  2369. --
  2370.  
  2371. COPY commentchainchanges (batch, uid, chain, "time", state, from_type, to_type, from_state, to_state, from_last_commit, to_last_commit, from_addressed_by, to_addressed_by) FROM stdin;
  2372. \.
  2373.  
  2374.  
  2375. --
  2376. -- Data for Name: commentchainlines; Type: TABLE DATA; Schema: public; Owner: critic
  2377. --
  2378.  
  2379. COPY commentchainlines (chain, uid, "time", state, sha1, first_line, last_line) FROM stdin;
  2380. \.
  2381.  
  2382.  
  2383. --
  2384. -- Data for Name: commentchains; Type: TABLE DATA; Schema: public; Owner: critic
  2385. --
  2386.  
  2387. COPY commentchains (id, review, batch, uid, "time", type, state, origin, file, first_commit, last_commit, closed_by, addressed_by, first_comment) FROM stdin;
  2388. \.
  2389.  
  2390.  
  2391. --
  2392. -- Name: commentchains_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  2393. --
  2394.  
  2395. SELECT pg_catalog.setval('commentchains_id_seq', 1, false);
  2396.  
  2397.  
  2398. --
  2399. -- Data for Name: commentchainusers; Type: TABLE DATA; Schema: public; Owner: critic
  2400. --
  2401.  
  2402. COPY commentchainusers (chain, uid) FROM stdin;
  2403. \.
  2404.  
  2405.  
  2406. --
  2407. -- Data for Name: commentmessageids; Type: TABLE DATA; Schema: public; Owner: critic
  2408. --
  2409.  
  2410. COPY commentmessageids (uid, comment, messageid) FROM stdin;
  2411. \.
  2412.  
  2413.  
  2414. --
  2415. -- Data for Name: comments; Type: TABLE DATA; Schema: public; Owner: critic
  2416. --
  2417.  
  2418. COPY comments (id, chain, batch, uid, "time", state, comment, code) FROM stdin;
  2419. \.
  2420.  
  2421.  
  2422. --
  2423. -- Name: comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  2424. --
  2425.  
  2426. SELECT pg_catalog.setval('comments_id_seq', 1, false);
  2427.  
  2428.  
  2429. --
  2430. -- Data for Name: commentstoread; Type: TABLE DATA; Schema: public; Owner: critic
  2431. --
  2432.  
  2433. COPY commentstoread (uid, comment) FROM stdin;
  2434. \.
  2435.  
  2436.  
  2437. --
  2438. -- Data for Name: commits; Type: TABLE DATA; Schema: public; Owner: critic
  2439. --
  2440.  
  2441. COPY commits (id, sha1, author_gituser, commit_gituser, author_time, commit_time) FROM stdin;
  2442. 1 0a0520fc75bd1570bcb77c22db1d26df91d4d74d 1 1 2015-10-21 12:17:32 2015-10-22 06:22:02
  2443. 2 5f8e4dcc124b3651cdc6e020153d5a9f7075e95a 1 2 2015-06-29 11:05:27 2015-10-18 11:53:34
  2444. 3 e5191199449af617baeb5f7c6e04be0bb3544d54 1 2 2015-06-29 09:27:04 2015-10-18 11:53:34
  2445. 4 4aa760fcc4986b1fd69d949cff2a28e258be26c7 1 2 2015-06-29 09:14:53 2015-10-18 11:53:34
  2446. 5 5114c4368f4d1398ca2ac97556d0606ccd227325 1 2 2015-06-29 09:18:52 2015-10-18 11:53:34
  2447. 6 0600c0a6313a5536c9ed452b9d6149788d6220c2 1 2 2015-06-30 06:43:43 2015-10-18 11:53:34
  2448. 7 21fc8f2740b2b5ab134948ad2470dce55313ed29 3 2 2015-10-16 03:32:19 2015-10-16 07:41:12
  2449. 8 849e24044f0f4e66a626df7eeb040bc96b69d1b8 4 2 2015-09-03 23:53:51 2015-09-30 07:02:15
  2450. 9 8eb0611583911980e5aab4b383f0cedb7488337b 1 1 2015-07-17 12:51:00 2015-07-17 12:51:00
  2451. 10 f32a41b8c209440b2cbf208b1790320ef6ba3ecb 1 2 2015-06-23 08:15:38 2015-07-14 09:12:28
  2452. 11 2e1fc8efa09a448f65aea7528d0d0bf12cc1211d 1 2 2014-12-01 12:05:17 2015-07-14 09:12:28
  2453. 12 7571948b669b7848550ac1f0e863d634342ea919 5 5 2015-07-07 21:20:02 2015-07-07 21:20:02
  2454. 13 31a73931748db6eb7966c23cf57d2724d8cbcb24 2 2 2015-06-01 15:47:09 2015-06-02 14:36:14
  2455. 14 7610768ee0cc0cc97374711a06ff62adc022863c 1 2 2015-06-02 12:38:33 2015-06-02 14:36:14
  2456. 15 383eea10d7b0735b44fd3e8a90e4e8b7688a388d 1 1 2015-02-02 12:36:14 2015-02-02 12:36:14
  2457. 16 ba1568b2bc291193de49c7f0650842595a807889 1 2 2015-01-13 16:31:55 2015-01-19 14:21:12
  2458. 17 3932633878e2cf193e8985ac4d141ee52aa77802 1 2 2015-01-14 12:15:19 2015-01-19 14:21:12
  2459. 18 528b9200e872db5c101accb2098373bf438a6c75 1 2 2015-01-13 16:26:08 2015-01-19 14:21:12
  2460. 19 bdb3902a5a00d06c84407eba039a508b2ade9c73 1 2 2015-01-13 16:14:31 2015-01-19 14:21:12
  2461. 20 19ca048ae0f2d9bef8aedb0f3dd84b5b9d07c0df 1 2 2015-01-13 16:12:17 2015-01-19 14:21:12
  2462. 21 0b0507320fe7cfb81c2a15e3e57a85926801d4ae 6 2 2015-01-02 12:25:12 2015-01-08 15:23:03
  2463. 22 844357723bbab9200b85da1eaf018792cf3ca495 6 6 2014-12-29 11:29:12 2015-01-02 11:27:01
  2464. 23 cb2a72530ff9e4f9b67c5458b8296b09cb7c640d 6 2 2014-12-29 10:36:01 2015-01-02 11:20:50
  2465. 24 75ef2821fa2175af28955987b44701539959f519 6 2 2014-12-29 10:34:10 2015-01-02 11:20:50
  2466. 25 5364fffd9ba65959ce40347f957806f5d69ec460 2 2 2014-12-30 11:58:01 2014-12-30 12:03:10
  2467. 26 3172e2e9dc5bceaf9e8eecaaca0c825a603b6305 1 2 2014-12-19 14:33:25 2014-12-28 10:42:46
  2468. 27 b59915071d5078953f127b1a36ccdc36e1724c05 1 2 2014-12-11 11:42:43 2014-12-18 12:14:40
  2469. 28 80d30b517de955316d23109df956a6825cc6aa7e 1 2 2014-10-15 10:14:23 2014-12-10 15:51:29
  2470. 29 0103797d252e133d9b50479375dd272a38124609 1 2 2014-09-18 15:09:04 2014-12-10 14:24:34
  2471. 30 89a1e66ef5203c4e64c9e0e1fb1ecac847e3482e 1 2 2014-09-18 14:43:55 2014-12-10 14:24:34
  2472. 31 cfd11e616defa6e0c9510bc8d393a3ad712d7f0e 1 2 2014-09-15 15:47:06 2014-12-10 11:41:54
  2473. 32 bf402d6c8d3f01350bcbfbb50a166951e629d4ba 1 2 2014-09-15 15:42:05 2014-12-10 11:41:54
  2474. 33 e4486e331749a130785241cdc614fbcc2cc112ac 7 7 2014-12-08 17:59:26 2014-12-08 17:59:26
  2475. 34 da5cfeb0b00035b2b7a6e315fdadde15bf3a4446 1 1 2014-11-24 11:40:28 2014-11-24 11:40:28
  2476. 35 3ed61976e3d91f08310824075d805d32df5599e9 1 1 2014-11-24 11:40:13 2014-11-24 11:40:13
  2477. 36 3db5c3d02a51ba2cf699f18e502dd098e0664667 6 2 2014-10-21 10:11:50 2014-11-11 07:46:45
  2478. 37 366d65b841ba372130cc40ed873d19568e128a0a 1 2 2014-10-15 12:10:45 2014-11-11 07:46:45
  2479. 38 559fa244c8910a22af3a223fd27132d95d859b0e 6 2 2014-10-14 15:19:31 2014-11-11 07:46:45
  2480. 39 2c01388f0766ea6f61e179c05bcbfdb8ae05e435 1 2 2014-09-30 13:52:36 2014-11-11 07:46:45
  2481. 40 10423056f30238347246c6e3d251a04e9a6f370c 1 2 2014-09-30 13:51:31 2014-11-11 07:46:45
  2482. 41 a7a24ed80e348ef877105a590b232792905cb29b 1 2 2014-09-30 13:49:43 2014-11-11 07:46:45
  2483. 42 14b60862e76fdf064902cfd8812fb1a64a8530e2 1 2 2014-09-30 13:48:20 2014-11-11 07:46:45
  2484. 43 2840aca8b064beb6cc5ac3ef4a737ecd2d33ddaa 6 2 2014-09-06 17:50:03 2014-11-11 07:46:44
  2485. 44 a4df693d9d2f6e16e05ae46259b8ac38d84c5088 1 2 2014-09-30 13:22:56 2014-11-11 07:46:44
  2486. 45 0847f71464548423ad8aaf683ffada535e1d56ee 1 2 2014-09-04 06:56:12 2014-11-11 07:46:44
  2487. 46 928543ca3833219bd4d972f3e58425df273d349c 1 1 2014-10-22 10:40:30 2014-10-22 10:43:40
  2488. 47 bd79c50cfc5741ea2b67eca12241b1911280d968 1 1 2014-10-16 08:08:47 2014-10-16 08:08:47
  2489. 48 1a9e4bf50fe88af7f23a773d9e5523668555430b 1 2 2014-10-09 11:04:17 2014-10-10 12:09:41
  2490. 49 cb3d2a63024828fd441d6161744cf7d551713495 1 2 2014-10-07 06:44:39 2014-10-10 12:09:40
  2491. 50 88b46a93a3d2f4163633193273944c17626f0568 8 9 2014-10-04 15:57:17 2014-10-05 20:19:53
  2492. 51 8227e63a9568195007dae7041fe1a108eb1a3f38 1 2 2014-09-18 11:38:32 2014-09-20 09:04:15
  2493. 52 c5650e382826275963b36a1c06e5a1386a124b12 6 2 2014-09-17 04:30:20 2014-09-20 08:52:30
  2494. 53 22c9411d1b764b3d94a04fb02981ecfd4caeebcb 1 2 2014-09-14 09:05:44 2014-09-17 11:44:16
  2495. 54 6968fb097ac63891eec326d2cc86ea94eff0b22d 6 2 2014-03-27 17:02:59 2014-09-17 11:44:16
  2496. 55 0a155d3e1f544cd2784fcb8ba2e77b82a18a84c3 6 2 2014-04-22 11:41:06 2014-09-17 11:44:16
  2497. 56 40ca01ba1dfb4eb09b0cae5b0ebb4e4c20e415e5 6 2 2014-03-15 09:01:07 2014-09-17 11:44:16
  2498. 57 fff52839005f1b0e0f56cc07968decc5135b2c3d 6 2 2014-03-14 15:06:22 2014-09-17 11:44:16
  2499. 58 67091a0a60fb10571a1dbf1624f11760283acaf1 6 2 2013-12-09 10:56:25 2014-09-17 11:44:16
  2500. 59 265c2b2b0ec4578d3e67df854fac4c1ace687361 6 2 2013-11-18 11:23:00 2014-09-17 11:44:16
  2501. 60 9282233e30fa6ed9214451978b1aee9ea7e4686e 6 2 2013-11-18 11:11:41 2014-09-17 11:44:16
  2502. 61 5d1275eafa208469f13b82f3943b10fd32c5a378 6 2 2013-11-18 11:07:42 2014-09-17 11:44:16
  2503. 62 afe0019765d49f2dd54190dd95be5a6701708086 6 2 2013-11-18 09:45:41 2014-09-17 11:44:16
  2504. 63 fe5986586931bce803e5525e1420c67405977377 6 2 2013-11-17 17:45:31 2014-09-17 11:44:16
  2505. 64 8b1b5a6cd827850a1423cd27807bd40696ed86ab 6 2 2013-11-17 17:40:56 2014-09-17 11:44:16
  2506. 65 71ab2efbd8b851816b3573b1887718928c0f0dcd 6 2 2013-11-17 17:39:29 2014-09-17 11:44:15
  2507. 66 e38e7e88b66fb7c35df86c019589a02952c66f09 6 2 2013-11-17 17:37:18 2014-09-17 11:44:15
  2508. 67 31b5a597e5258cbd7a7367ed00ce83c7ba3df3ca 6 2 2013-11-16 15:26:41 2014-09-17 11:44:15
  2509. 68 4e6d5d6ba285a8bb2a642b1e8a724ecba7ab9ce9 6 2 2013-11-16 15:24:33 2014-09-17 11:44:15
  2510. 69 aba5c98e385b9122c280f54583759964ffa7d370 6 2 2013-11-16 15:23:06 2014-09-17 11:44:15
  2511. 70 f63b95b53ee50d0fd00ea5b28d4c26f923f6c8e7 6 2 2013-11-15 14:10:02 2014-09-17 11:44:15
  2512. 71 1eb6c38e4294308af3e41467aaf4a724b3724652 6 2 2013-11-15 14:03:18 2014-09-17 11:44:15
  2513. 72 aa02c72071169cb92b0fb836872193d2f09821f6 6 2 2013-11-15 11:00:06 2014-09-17 11:44:15
  2514. 73 3632f3d3de0e56a140bb208e5cb71108d9fb1f4f 6 2 2013-11-15 10:52:31 2014-09-17 11:44:15
  2515. 74 269c95fd702d9fb3b62d5bd99a5582db63ace558 6 2 2013-11-15 10:50:44 2014-09-17 11:44:15
  2516. 75 f435dcf40e1d03186ca9b4ec5e1c70cd92ee0eb2 6 2 2013-11-15 10:46:05 2014-09-17 11:44:15
  2517. 76 f08457c220bb30f15c921f10bd4d8d99894fc682 6 2 2014-09-04 06:23:34 2014-09-17 11:44:14
  2518. 77 1587963a1d7f4e49f34f15c87bac29d059b0c556 5 5 2014-09-16 09:15:54 2014-09-16 09:16:54
  2519. 78 5ec73b9a9d0dcf621c1a069b15b27c69010a53fe 1 2 2014-09-10 15:45:06 2014-09-12 08:51:55
  2520. 79 6123508048b9eb3ae108e256d62372b119f0f997 6 2 2014-04-03 15:22:51 2014-09-11 15:18:20
  2521. 80 6012b982df6f992f08402c8df2fcc81d861053fa 6 2 2014-04-03 12:01:04 2014-09-11 15:18:20
  2522. 81 d2e7b26c1226bd5569d9aa74d4ad0c69e8c0da5a 6 2 2014-04-03 10:36:20 2014-09-11 15:18:20
  2523. 82 371d4b99d09ca07d76fb9632fdf5f3da5defcd00 6 2 2014-04-04 06:04:35 2014-09-11 15:18:20
  2524. 83 4954e0d229f105482700fb37be4fb52d2644c457 6 2 2014-04-04 06:01:58 2014-09-11 15:18:20
  2525. 84 b28729afd5cccb0fc097747d8785e905c914f119 6 2 2014-04-03 14:59:53 2014-09-11 15:18:20
  2526. 85 3b4726095c8160c300f0b500717d359cff438cb3 6 2 2014-04-03 14:56:03 2014-09-11 15:18:20
  2527. 86 fee6b9905d36d3f7f0ef35349c10f7cd476af536 6 2 2014-04-03 14:54:44 2014-09-11 15:18:20
  2528. 87 fa5bc1c30589bfc83aed8cf49250fa5b94e7588a 6 2 2014-04-03 14:51:10 2014-09-11 15:18:20
  2529. 88 5145107f022a3fe5ec1e6667840ba8240d03084b 6 2 2014-04-03 13:49:53 2014-09-11 15:18:20
  2530. 89 76672a43d536c0fa7c9c4e74f42aa5508b31f024 6 2 2014-04-16 11:40:37 2014-09-10 11:42:07
  2531. 90 a5f76e5d321278f9dfef2f8b0d54ee985592e5de 1 2 2014-09-08 11:09:45 2014-09-10 11:42:07
  2532. 91 ca1ce0bce105c917910c2ae428ee32143689eadb 1 2 2014-08-28 15:09:03 2014-09-10 11:42:07
  2533. 92 d86733e34c5ed0eafadfe0621b7e530ddd4e937d 1 1 2014-09-10 09:24:48 2014-09-10 09:24:48
  2534. 93 2e88973c2dc614c6ab689f7ab412ce922c9c853a 1 2 2014-09-04 15:38:38 2014-09-05 09:27:27
  2535. 94 085595107c6f9e5af2bcef90a71e4eeae8a9568c 1 2 2014-09-04 15:53:07 2014-09-05 09:09:56
  2536. 95 388e4160721577e684a704974c7e2a65be168ac7 1 1 2014-09-04 14:03:19 2014-09-04 14:04:14
  2537. 96 4fd78405ff112cf2f9b4dfb66b8d3c44867b6a0a 6 2 2014-02-16 16:41:35 2014-09-02 10:00:59
  2538. 97 64c9dee88970dee9b7f4ddec0f8966b9a173a4c4 1 2 2014-08-26 08:44:19 2014-09-02 10:00:58
  2539. 98 ea02a14ecdb261bf74e208a991ff648df021d346 1 2 2014-08-29 09:55:35 2014-08-29 13:24:30
  2540. 99 f9bef4053781b487f10d2d1c1da988a48df05dd0 1 2 2014-08-29 10:48:23 2014-08-29 13:24:30
  2541. 100 1d554e04ec58c087d76502c60a154aee50d02eb0 1 2 2014-08-29 10:27:06 2014-08-29 13:24:30
  2542. 101 ced50ca2208c8440becbccdee7239994435c879a 1 1 2014-08-27 11:15:12 2014-08-27 11:15:27
  2543. 102 399f0e5b6f01126000af704830c016f8c8a55af9 5 5 2014-08-27 09:16:34 2014-08-27 10:46:10
  2544. 103 e0e46a507476b18f72d92b0f107ce51537115f89 1 1 2014-08-27 07:46:15 2014-08-27 07:46:47
  2545. 104 673763ac8b93df2707fe4b5858e74e2c8037387e 6 10 2014-02-28 14:01:33 2014-08-26 17:44:46
  2546. 105 cf3cfa628632b6d0978af58bf8edefff820e6a3d 6 10 2014-06-30 15:21:07 2014-08-25 20:00:23
  2547. 106 253235f5c20c9ec5e8e520a3fef35fc59491332f 6 10 2014-06-30 15:12:30 2014-08-25 20:00:22
  2548. 107 32e8f3cdbac1089000ab58b16b23591a5a5c5f35 6 10 2014-06-09 14:23:43 2014-08-25 11:29:19
  2549. 108 694ba15763dd1505eefc509a3c05687cb15fd484 6 10 2014-06-09 14:21:35 2014-08-25 11:29:19
  2550. 109 3d56ba6814853fe0a031cb2af42f9fe493099ca5 6 10 2014-06-09 10:58:16 2014-08-25 11:29:19
  2551. 110 184d3c5db8f24acfa5bbbfbf1e63fdb4f3285bf6 6 10 2014-06-09 10:53:59 2014-08-25 11:29:18
  2552. 111 6660968e498a4066b1cb4b87e0bfd747eb0fd6f2 6 10 2014-08-22 11:51:44 2014-08-24 09:18:12
  2553. 112 48c4b857053b352a00b975c305d900d611fc77c9 6 10 2014-08-22 11:24:21 2014-08-24 09:18:12
  2554. 113 448e971d018dd8d1d2e2f3208f98ac13bc6ea050 1 10 2014-08-24 09:05:09 2014-08-24 09:18:11
  2555. 114 9ba7216e2c8861855621542f96231dd81eb21524 1 10 2014-08-24 09:01:05 2014-08-24 09:18:11
  2556. 115 3a4938bf8c73b252f4594c1a2ad0327ffc5569c8 6 10 2014-08-22 11:20:40 2014-08-24 09:18:11
  2557. 116 b60dc44645d964009106e5c76ac6947f4770abb7 6 10 2014-03-03 07:12:59 2014-08-24 09:18:11
  2558. 117 a469663dcc613202fb89e8d2f4116ca8bd054cae 6 10 2014-03-02 09:51:35 2014-08-24 09:18:11
  2559. 118 4ba5d45781ff24e5a74b872160e162b1053984eb 6 10 2014-03-02 09:47:32 2014-08-24 09:18:11
  2560. 119 cb4b7a9ef64537edd16a3bb986be9c301ead8b05 6 10 2014-03-02 09:43:58 2014-08-24 09:18:10
  2561. 120 1f17fd8c01c5daef2e92cf28ff5db9531e41c0bf 6 10 2014-03-02 09:40:44 2014-08-24 09:18:10
  2562. 121 70459167c9b4324d552d227e8efd6f944e1eec28 6 10 2014-03-01 13:02:53 2014-08-24 09:18:10
  2563. 122 33f8023b7218ed7ded13a92545211cca26c4d3d7 6 10 2014-03-01 12:46:17 2014-08-24 09:18:10
  2564. 123 d3f643652078a3666e25ed5518b79df938e5f010 6 10 2014-03-01 12:41:43 2014-08-24 09:18:10
  2565. 124 f8b46c354196cabd40d4d999a9094ecf50ce2a58 6 10 2014-03-01 12:37:23 2014-08-24 09:18:09
  2566. 125 35f5e0367c962ac1127a524c66466b3844a39487 6 10 2014-03-01 12:33:28 2014-08-24 09:18:09
  2567. 126 8d0c3f8c4c195e46767994f73ec84b35a669e122 6 10 2014-03-01 12:23:19 2014-08-24 09:18:09
  2568. 127 6d0c8a7252def4f5c257bc68e6f6a0cb5e18d79d 6 10 2014-03-01 12:21:50 2014-08-24 09:18:09
  2569. 128 e7be8e52086fb19f4724f6a71306821ed7c4b4dc 6 10 2014-03-01 12:15:48 2014-08-24 09:18:09
  2570. 129 4e794fdd2e3c8f9a1e4aeab6e0f7ab9d187a451c 6 10 2014-03-01 12:09:43 2014-08-24 09:18:09
  2571. 130 64640578dabf8eb56c6a5243f3bfd57b04332fc5 6 10 2014-03-01 12:07:17 2014-08-24 09:18:08
  2572. 131 f79b29bf39598c69b2457ae76990307c27cb7fd5 6 10 2014-03-01 12:05:25 2014-08-24 09:18:08
  2573. 132 050ef655ee5a0863d9030ed68bdf286ec5c3d6a9 6 10 2014-03-01 12:03:08 2014-08-24 09:18:08
  2574. 133 e673ec849304de12a95556a25fd529fce58a93d7 6 10 2014-03-01 11:55:07 2014-08-24 09:18:08
  2575. 134 ac8632cf9394312dae3f505d5d26b112f4f607bd 6 10 2014-03-01 11:42:55 2014-08-24 09:18:08
  2576. 135 ae9a6ffc34174c6ad015438ccb03c5963b42d8a6 6 10 2014-03-01 11:35:48 2014-08-24 09:18:08
  2577. 136 28acd2ab4648db8cf4dac7b784148c5eb572b244 6 10 2014-02-28 17:01:38 2014-08-24 09:18:08
  2578. 137 bcaccdec061503e5ab382c1b1fd024393862bb72 6 10 2014-01-14 16:29:29 2014-08-24 09:18:08
  2579. 138 491612f1534cb9ea4065cd32916cf6d79642ccd9 6 10 2013-09-20 11:30:50 2014-08-24 09:18:08
  2580. 139 f05a817399e4efb3e643bab780ba224a69d9a32f 6 10 2013-07-02 13:57:01 2014-08-24 09:18:08
  2581. 140 b8fb6cb4ac9f1b0f2adc45d2d0fddd0a48ee1266 6 10 2013-05-30 07:40:53 2014-08-24 09:18:08
  2582. 141 6ef0eed59b61913635baf35cb9468250b6e08546 6 10 2014-07-09 13:57:04 2014-08-20 14:07:39
  2583. 142 ff707c0dcfa49e399a47042eaa834d02ab343a48 6 10 2014-07-09 12:37:33 2014-08-20 13:42:25
  2584. 143 66f25ae79dcc5e200b136388771b5924a1b5ae56 6 10 2014-07-03 14:04:43 2014-08-20 13:42:25
  2585. 144 cab39ed7672545e478476db7083e0b395838828f 6 10 2014-08-13 05:30:11 2014-08-13 09:56:13
  2586. 145 461216b58bc08f937d08fb0e91fada406d074f47 11 11 2014-08-04 14:31:00 2014-08-04 14:31:00
  2587. 146 07ac59181ea43cc75b16f144e42c7763a7922fbc 5 5 2014-06-25 12:09:41 2014-07-07 12:09:54
  2588. 147 84235599dd7e9daa361244b5311c6f08a261ac7f 5 5 2014-06-25 12:15:49 2014-07-07 12:05:27
  2589. 148 41989b6fcb78832d92be6daecc3b6213e064c4ab 5 5 2014-07-07 12:04:44 2014-07-07 12:05:27
  2590. 149 979820d7cb09238484778e3b4a9e505f85775e03 12 10 2014-07-04 14:04:17 2014-07-05 07:58:39
  2591. 150 240ea1c6711c002e3ec288036444e8eb16c352c7 12 12 2014-07-04 14:03:06 2014-07-04 14:03:06
  2592. 151 f7483bc808340f9b354a6285e9881b67fe0db95f 6 10 2014-06-30 08:04:35 2014-07-01 18:53:19
  2593. 152 c1596154e2153632166a4192ac9069830e872eeb 6 10 2014-07-01 09:10:05 2014-07-01 18:53:19
  2594. 153 fe80b8560a0853e14c71fda0803378ece305086f 6 10 2014-05-26 13:54:44 2014-06-29 09:41:47
  2595. 154 bc5d3fa6d8150e70d66fcbff38861633542b5f11 6 10 2014-05-26 13:27:17 2014-06-29 09:41:47
  2596. 155 2d87d95011d1fa68bb3a50abf8f1fdcc8aebc956 6 10 2014-05-26 11:11:01 2014-06-29 09:41:46
  2597. 156 049d6b1f1620e0143870578b47f9caf01315e133 6 10 2014-05-26 10:44:47 2014-06-29 09:41:46
  2598. 157 0e42ae47eec5b013662daf1b64a22bac140dfc78 6 10 2014-06-24 12:29:16 2014-06-26 18:27:44
  2599. 158 daaf8ea1dc7331735b324397f7155c66c90837ea 6 10 2014-06-10 13:53:43 2014-06-25 08:38:33
  2600. 159 2991d3c426c2da316397b936821ef4a3423dcd52 5 5 2014-06-24 06:17:57 2014-06-24 06:17:57
  2601. 160 540d5f91e2e3e64a89fc8b9c1adafd541bf95e6a 13 10 2014-06-23 16:11:30 2014-06-23 20:13:09
  2602. 161 927d21ed793e827094feab36bc5215f437e734b6 6 10 2014-06-04 14:24:51 2014-06-10 13:54:47
  2603. 162 dee45e95fa8b91af7d032b636ec3ed3f6b616e78 6 10 2014-04-03 09:56:05 2014-05-26 20:52:24
  2604. 163 6da841106cf48499c8dbfcc12083310e203a59d7 6 10 2014-04-17 10:46:48 2014-04-24 11:17:15
  2605. 164 2c6a27f9ce5411a037bcce4aa7cb8094079498dc 6 10 2014-03-25 16:45:01 2014-04-16 15:43:52
  2606. 165 321fbdae93f536df266ec48fdc03e09c93649800 6 10 2014-03-26 07:11:55 2014-04-16 15:43:52
  2607. 166 d09830c4a6de268a3a244a43bb54b50c8421af8d 6 10 2014-03-25 14:06:54 2014-04-16 15:43:52
  2608. 167 893483da3c9d6ef01cd581ed56e8e82c097c1bf6 6 10 2014-03-25 14:05:40 2014-04-16 15:43:52
  2609. 168 0e9c8b595c8b7a4a3b500fa84c7cb7ca5708814c 6 10 2014-03-25 14:03:29 2014-04-16 15:43:52
  2610. 169 c88afd3feebe77173d4bfb271c6ae74328753d69 6 10 2014-03-25 13:56:15 2014-04-16 15:43:52
  2611. 170 095b00f07330891d9a7c1dc48fa39cbd77379829 6 10 2014-03-25 13:54:38 2014-04-16 15:43:51
  2612. 171 c6349cb372782833569439692d4b3eb49436287d 14 10 2014-04-16 11:40:01 2014-04-16 13:22:11
  2613. 172 88eab5163b0ff981d5f7f78da4fd6fb83c16debc 6 10 2014-04-08 10:39:48 2014-04-14 11:17:51
  2614. 173 1527aa3a280991f5da70e0552c97e5ac209d9ef2 5 5 2014-02-25 21:38:56 2014-04-09 09:45:55
  2615. 174 0824316aeecd8dd3a00f3e07510aa731a37414cf 5 5 2014-02-25 21:11:05 2014-04-09 09:45:55
  2616. 175 387ad6463bc24151a93ffc69aaf2e0138e332684 5 5 2014-04-05 19:06:12 2014-04-05 19:43:25
  2617. 176 aed1aebc3efc1b866847c281b9eb014591373ad4 6 15 2014-03-25 19:34:21 2014-03-31 11:24:44
  2618. 177 ccc434292f5ba46df748c5cc2599c51e5a8a699d 6 6 2014-03-25 11:03:26 2014-03-25 11:03:26
  2619. 178 128153c210d9254c1308c867909e9bbaf407cc6b 6 15 2014-03-13 12:25:54 2014-03-24 08:12:31
  2620. 179 a83dfbe529eedeb9e31dc10edda4f20df597882b 6 15 2014-03-13 12:30:46 2014-03-24 08:12:31
  2621. 180 a26964ed3423b222f13f257d90d6ffcf6bc45d01 6 15 2014-03-13 11:52:37 2014-03-24 08:12:31
  2622. 181 5a35192770fdc5366a6d5f478e6b19aaf744e45e 6 15 2014-03-14 10:13:40 2014-03-24 08:12:31
  2623. 182 380568f6238c91546aec17ae262baa25c5eee53e 6 15 2014-03-14 10:12:33 2014-03-24 08:12:31
  2624. 183 d16ca5ea5865026add77c8a8dbfb1fbca41e90a9 6 15 2014-03-18 16:32:13 2014-03-21 12:41:26
  2625. 184 4be40b157586164e0279aa404a6e79effc8a10ae 6 15 2014-03-06 15:09:24 2014-03-21 12:41:26
  2626. 185 f1b0e4bed5dcb9b59c7bcde95280b4b0f347142b 6 15 2014-03-20 12:20:18 2014-03-21 11:43:53
  2627. 186 744196da44c27fdb724ad840d261660eced1e849 5 5 2014-03-20 12:02:58 2014-03-20 14:13:31
  2628. 187 7ee9f1ad92a91f78dc004767ef8fda30770627b8 5 5 2014-03-20 10:16:24 2014-03-20 14:13:31
  2629. 188 a8443b043e307355d2ce37f2ae4de8ffa140f202 5 5 2014-03-20 09:52:15 2014-03-20 14:13:31
  2630. 189 1b4f25b91ed6069af1d8adb9e577642bfb7f4931 5 5 2014-03-20 09:41:02 2014-03-20 14:13:31
  2631. 190 eee2a8526815a021f3f65f5f4565117fdc3e843f 5 5 2014-03-17 15:47:04 2014-03-20 14:13:30
  2632. 191 742c0a9304339698689e725dc48016c6cd5b7ba5 5 5 2014-03-20 08:52:37 2014-03-20 14:13:30
  2633. 192 2cfcaf38a0b5b090568349d316bead119aa107de 5 5 2014-03-18 14:00:13 2014-03-20 14:13:30
  2634. 193 fdb7167a4cec9e22ddadd6ff32f0d6e8a059e29e 6 5 2014-03-17 13:00:41 2014-03-20 14:13:30
  2635. 194 eb4151633eef6bac669ca465d097f3ec78b251aa 5 5 2014-03-17 20:55:54 2014-03-20 12:20:28
  2636. 195 b762eab396929a6ebde1acfe954383539dfdcbc7 6 15 2014-03-04 16:11:01 2014-03-17 08:03:04
  2637. 196 469eb60f2f8168b7e5ff66474797f57806f76725 6 15 2014-03-15 13:43:52 2014-03-17 06:00:48
  2638. 197 2cba89da053b8f174500e5855dfba0c7aed34dd7 6 6 2014-03-15 14:54:55 2014-03-15 14:54:55
  2639. 198 83b9618b9f9b2d156a840e708e47efaa3eae0589 6 6 2014-02-25 12:00:48 2014-03-13 14:49:00
  2640. 199 d813c559852adf0e0efe71ff3dd9c2a02c2e03c5 6 15 2014-03-04 16:07:48 2014-03-13 10:15:43
  2641. 200 80512c5a80b29d269fb6f955e1f757920e63d211 6 15 2014-03-02 13:04:37 2014-03-06 13:45:10
  2642. 201 e73fc75396539a81a9fb78b92a391a499b7b5ab7 5 5 2014-03-06 10:28:47 2014-03-06 11:08:15
  2643. 202 3a67e3038d4a927648678f3c5e1b27ac69292c00 5 5 2014-03-06 08:25:17 2014-03-06 09:14:16
  2644. 203 6ed501e3c8686c5a113d749f5f074e2910d7f975 6 15 2013-11-19 13:37:38 2014-03-05 08:15:58
  2645. 204 82a2c318ece611245c01a75917487ab1ff3f7918 5 5 2014-03-01 20:37:37 2014-03-01 20:37:53
  2646. 205 46f3179bb078142660307750aa330ef50e5df186 6 15 2014-02-28 16:32:52 2014-03-01 08:58:56
  2647. 206 c62f145563f9e01adeff81a138a37b58a49b979c 6 15 2014-02-17 10:34:07 2014-02-26 09:20:24
  2648. 207 32f27f5ac4cde1451a7bcad19e7957bfa45b16b7 6 5 2014-02-09 10:39:54 2014-02-25 22:22:34
  2649. 208 61aad850518c151a47ffb2977c767b47085014a8 6 6 2014-02-18 10:07:41 2014-02-18 10:12:12
  2650. 209 94bf082f3b5097055bdd8825bb9ce2b90ee60c9b 6 5 2013-09-19 10:22:06 2014-02-15 06:33:20
  2651. 210 5fa518a10e34c3e713ab8681a391b975f2abf3e6 6 5 2013-07-22 10:55:34 2014-02-15 06:33:20
  2652. 211 c025b89299fd14cd02105c5f3a6b33c97c3906a1 6 5 2013-07-15 14:58:16 2014-02-15 06:33:20
  2653. 212 2fe3c91075322487077ed03339599d04761f20ed 6 5 2013-04-28 20:47:20 2014-02-15 06:33:20
  2654. 213 9109f015a6a70e72b66ae0e41421b313a2afd834 6 5 2013-04-28 16:51:31 2014-02-15 06:33:20
  2655. 214 1fd74a1319c7d1b6b281c743dcbaa3f1bccbd82d 6 5 2013-04-26 20:56:02 2014-02-15 06:33:20
  2656. 215 5bbbda8e91a3eef541b6fa2b1cb7c51e30f3108e 6 5 2013-04-25 22:28:23 2014-02-15 06:33:20
  2657. 216 f14b12a2ad7c074abedc0b074751b2ebc28c92f6 6 5 2014-02-12 06:44:43 2014-02-15 06:33:19
  2658. 217 cfffe85c848d1ea9d156f630be600e667ae66880 6 5 2014-02-11 06:15:19 2014-02-15 06:33:19
  2659. 218 638635919a0629dd3ef96861f63017c7c68e020d 6 5 2014-02-11 06:12:23 2014-02-15 06:33:19
  2660. 219 d01088f73cf81b4697dc6751686aaee7f7ead6d0 6 5 2014-02-12 06:42:24 2014-02-15 06:33:19
  2661. 220 8c3cdf0ea0734b16dd9d37a64a45e16734e8d4b0 6 5 2014-02-10 11:36:08 2014-02-15 06:33:19
  2662. 221 448e77694071a35ee1f05af69965b7685754d334 6 5 2013-04-28 16:55:28 2014-02-15 06:33:19
  2663. 222 f6e9496426aa41a2fedeab933a743f366fa9927c 6 5 2013-04-11 14:29:42 2014-02-15 06:33:19
  2664. 223 5c0bf67033e7ba46aa2e5899d81f788cbfdb9aa7 6 5 2013-04-25 19:17:44 2014-02-15 06:33:19
  2665. 224 c9653c7bbbca8de0a3bcc80cc8c7cc0d10366c59 6 5 2013-05-19 11:44:50 2014-02-15 06:33:19
  2666. 225 8ada9ddfa6e38f1113d9ddecca85e7d4900ef044 5 5 2014-02-14 13:46:45 2014-02-14 15:23:40
  2667. 226 de65dcbda731224ea1468cd4f41cc7052caa62a1 6 6 2014-02-13 12:13:15 2014-02-13 12:20:35
  2668. 227 3444a7d0dadc393e0b47ef70331b04e93b3d6e2c 6 15 2014-01-31 10:30:32 2014-02-12 07:00:36
  2669. 228 87a3deff2cc97ef9d7a3f91091abe8d5d0a05dd2 5 5 2014-02-11 13:41:27 2014-02-11 13:41:27
  2670. 229 23151f995f1b84dbaf614f05d1531890af694be3 5 5 2014-02-10 16:03:16 2014-02-10 16:04:16
  2671. 230 2b7794ce253032eccf18952063b7dfc83bc5e6d5 6 6 2014-02-09 15:31:54 2014-02-09 15:31:54
  2672. 231 7c856dc430144efb175fc290f030b1d2ebae0c5b 6 6 2014-02-09 15:25:53 2014-02-09 15:25:53
  2673. 232 c60d31e030c9fadb895d3d1c36de1e5797976544 5 5 2014-02-08 13:25:45 2014-02-08 13:27:50
  2674. 233 889c4fff2d239ed97a20fcf9fd98f29faaca4988 6 15 2014-02-03 11:53:05 2014-02-07 09:49:53
  2675. 234 7dc9fe8f696e8c85f1e58c0e5932949f59455c9f 6 15 2014-01-30 08:00:00 2014-02-07 09:49:52
  2676. 235 8e83ce2d43b6e1f940acb6aafec8de9756176cb0 6 15 2014-02-04 07:45:18 2014-02-07 09:49:52
  2677. 236 77b27567a7021363169b088ee2581ac92906c022 6 15 2014-02-05 16:24:16 2014-02-07 09:49:52
  2678. 237 b4a0ed529780010e09ae856fc61952ce537b7163 6 15 2013-12-12 10:51:03 2014-02-07 09:49:52
  2679. 238 e64f1171ca3fb5a1bbda8e64a6744b691a320fbe 6 15 2014-02-06 08:19:05 2014-02-07 09:49:52
  2680. 239 595c18025320b93e72c2bbb536d7b3359c8b51ac 6 15 2014-02-02 14:51:29 2014-02-07 09:49:52
  2681. 240 046e045777b6f2d1bd1b1c9c1ce08b341c12ca76 6 15 2014-01-30 07:37:26 2014-02-07 09:49:52
  2682. 241 e74d3fe44bc011d50712d40aba8f180b2dc25c7a 6 15 2014-01-30 06:54:59 2014-02-07 09:49:52
  2683. 242 5e61ca9e9fe90cae707e6cf758501eb3d202b18b 6 15 2014-01-28 16:51:59 2014-02-07 09:49:52
  2684. 243 fdced0811c46d24306108aa0396244cb49ee3cd0 6 15 2014-02-03 14:55:04 2014-02-07 09:49:52
  2685. 244 1b9eeb60c4a95bbd65ec9adc78a6d17d3304511f 6 6 2014-02-06 13:12:21 2014-02-06 13:12:37
  2686. 245 3045bc3138195c915a8424069aecadbb11001c45 6 6 2014-02-01 16:43:12 2014-02-01 16:43:12
  2687. 246 a074103721a9422499e8e995fea3b1197a5b29aa 16 16 2014-01-08 20:48:08 2014-01-31 09:06:35
  2688. 247 3b5ac2a3e5c8c65185ea83c10f086a20fadaec3f 16 16 2014-01-07 22:32:55 2014-01-31 09:06:10
  2689. 248 315070354a8f977f416630faf816bea8819abb8e 16 16 2014-01-01 23:30:07 2014-01-31 09:06:10
  2690. 249 56f0f9ae3c5869492a16b0526af402e6165e742d 16 16 2013-12-30 20:54:04 2014-01-31 09:06:04
  2691. 250 13e0a528c446faf068bb0f70e30632025cc0de46 6 6 2014-01-30 11:16:59 2014-01-30 11:18:15
  2692. 251 32603537c71abef76c6dc4c954c6f3146710c4d3 6 15 2014-01-27 17:08:56 2014-01-28 09:17:11
  2693. 252 bfbc86d588e16032251c5740b9be3b12fc08b552 6 15 2014-01-27 17:05:25 2014-01-28 09:17:11
  2694. 253 5ec60e304dfcaf5e438a111bb85ce7aeef595796 6 6 2014-01-23 15:15:49 2014-01-23 15:17:22
  2695. 254 426e8af472ae5e7b8c203b234f16564eef8a0c5f 6 15 2014-01-22 16:24:09 2014-01-23 08:08:09
  2696. 255 ee9b41bfce26c93bb2da3a2eaf3018a625fb4b22 5 5 2014-01-22 22:30:53 2014-01-23 06:55:01
  2697. 256 a93d4071cb47704de188e4df92b083e6c4c5afc1 5 5 2014-01-22 21:08:59 2014-01-22 22:04:04
  2698. 257 b072cc9ccfa203a68a85987819f0d177bc6d47b7 6 15 2014-01-16 17:42:56 2014-01-21 15:05:49
  2699. 258 d9c4111e0ebe84ba5275563a5e794c6472194bd1 5 5 2014-01-11 09:40:00 2014-01-11 09:40:00
  2700. 259 fc18a65b1342676be194e5abe64a01bc6d4a86ea 16 16 2013-12-26 13:01:15 2014-01-02 13:37:11
  2701. 260 4e54807a5390a6629d53d9b9c4065d30b481fa4a 16 16 2013-12-20 22:31:21 2014-01-02 13:37:11
  2702. 261 fc1d3cff420ed55a28f41a03aeddf1c2a7083e0f 16 16 2013-12-04 21:42:29 2014-01-02 13:37:11
  2703. 262 e30861f4a72b9bf427bd4e846f9d81018d5098f5 16 16 2013-11-30 21:27:02 2014-01-02 13:37:11
  2704. 263 7a1c974c8bae93e83234da3db506bed9fae1a94a 16 16 2013-11-30 21:25:15 2014-01-02 13:37:11
  2705. 264 b804fd1fec33d264613e1a2d9de4395b6be173e7 16 16 2013-11-23 22:22:59 2014-01-02 13:37:11
  2706. 265 64fb929504e48e7888fa1f3229a1c0eb94664d32 16 16 2013-12-07 14:55:31 2013-12-11 09:08:27
  2707. 266 865c5a00f0bf758bce22529eb0540d4e332b2285 16 16 2013-12-01 15:45:53 2013-12-11 09:08:27
  2708. 267 04a730c1a0d078ff6e242db1631e6d37c0245d5f 16 16 2013-11-30 15:18:19 2013-12-11 09:08:27
  2709. 268 cc75619f33101d609f895773a2a68523a67a1911 16 16 2013-11-30 15:05:41 2013-12-11 09:08:27
  2710. 269 71b5b9c8d93b6fc23848c706c76def761de1daf3 16 16 2013-11-30 14:28:01 2013-12-11 09:08:26
  2711. 270 bd5c8ec41e63a6e99dc2f23ad19057c280c176e3 16 16 2013-11-22 22:31:06 2013-12-11 09:08:26
  2712. 271 9dec431c1168f2d1bca2f5cb3ec3d5473caeef83 5 5 2013-12-08 08:12:01 2013-12-08 12:17:15
  2713. 272 748ce3c7e322b989bb64ddbfa3e3bf89c9616028 5 5 2013-12-07 23:29:47 2013-12-08 12:02:02
  2714. 273 7591f82e4f60c20e3a995bbbd7fc31fa500a18c4 5 5 2013-12-07 19:50:08 2013-12-08 10:47:30
  2715. 274 938f27d7397be1bb61a55200f741038e8b827807 5 5 2013-12-07 16:44:57 2013-12-08 10:47:30
  2716. 275 d1f81e263840d680d6d2242019b91c8c3e956640 5 5 2013-12-07 16:10:11 2013-12-08 10:47:30
  2717. 276 937fd9eb19b4b7c81281ba6ef2949f89ed170081 5 5 2013-12-07 18:40:01 2013-12-08 10:47:30
  2718. 277 18c60d9f9593051f99959c61b773e38075612a55 5 5 2013-12-03 14:39:06 2013-12-08 10:47:30
  2719. 278 c5302b2fc44f1fcb12ebc722502296f1274492d6 5 5 2013-12-02 22:06:19 2013-12-08 10:47:30
  2720. 279 fa3d433dd7ec1cfe436af088817e0cb28c8721fb 5 5 2013-11-23 21:47:06 2013-12-08 10:47:30
  2721. 280 181c57fca94ed68afd39ef2af48e7606c646dc5a 5 5 2013-12-01 22:38:12 2013-12-08 10:47:30
  2722. 281 198d4b6ce590db5d3c2298f68bbc19aaa4cc4d96 5 5 2013-11-22 20:38:36 2013-12-08 10:47:30
  2723. 282 0b870a811a0407fc02f7319a407faa0cee217eaa 6 15 2013-12-02 14:49:55 2013-12-02 14:52:16
  2724. 283 aa46a5379e0b616de72052f22f40fe9cd48b0fd6 6 6 2013-12-02 12:15:52 2013-12-02 12:15:52
  2725. 284 8dcc8622ff88adcc5e84c8207d225dd08fac8ddc 6 15 2013-11-21 08:38:19 2013-12-02 06:36:09
  2726. 285 97d6bc60ba87c1cca7b524d93ee7e576a846ac21 6 15 2013-11-21 08:36:33 2013-12-02 06:36:09
  2727. 286 f0460c4c62b5c34a18660bc09ce69ee5b54b4694 6 15 2013-11-21 07:59:29 2013-12-02 06:36:09
  2728. 287 85c46e5a6b4daa596c0836160668650f9cc9733e 6 15 2013-09-20 06:28:12 2013-12-02 06:36:09
  2729. 288 9aaa3d76e951ac3183f0a218ac8ee0336983891f 6 15 2013-11-20 14:42:02 2013-12-02 06:36:09
  2730. 289 a8ada3115b59339f3e1be0ccb229ebe9e524dad3 16 16 2013-11-24 11:24:50 2013-11-24 12:05:30
  2731. 290 14708a45ebab3ab536fcb949fb20470eb70e4474 16 16 2013-11-23 22:09:28 2013-11-24 12:05:30
  2732. 291 4e15c49885da298d5bdacc14b8cb432b3398c564 16 16 2013-11-22 20:55:36 2013-11-24 12:05:30
  2733. 292 a4e4912db08124d802ebac884bcd8eeba98210f7 16 16 2013-11-22 20:33:26 2013-11-23 22:29:13
  2734. 293 25071daf9a824a50216ab8b8929c3bce60ae32dd 5 5 2013-11-17 21:06:21 2013-11-18 18:10:26
  2735. 294 7b106dba5882465f72e1456b401b1c428c8d2cb9 5 5 2013-11-17 20:49:40 2013-11-18 18:10:26
  2736. 295 19938249dce899a49e01885f663452d5cf5737ce 5 5 2013-11-17 20:47:50 2013-11-18 18:10:26
  2737. 296 5da5c1eb2060efa884cd398f06697f83d7949d38 5 5 2013-11-17 19:11:01 2013-11-18 18:10:26
  2738. 297 3b96198a31b542c03b3b657a89288261d3730a11 5 5 2013-11-15 22:14:10 2013-11-18 18:10:26
  2739. 298 bd2615f388ea5d05091f6e27479352cdbb67b259 5 5 2013-11-15 21:59:09 2013-11-18 18:10:26
  2740. 299 db5ea2e1b9497601e1597cc67afbba01b4db9660 5 5 2013-11-16 23:35:54 2013-11-17 18:06:47
  2741. 300 030afecdfb40235af03faa52a2a193c7d8199b66 5 5 2013-11-17 13:53:28 2013-11-17 13:53:28
  2742. 301 1f9a6cefc738078125ecd54ad7be2b97fc397c7c 5 5 2013-10-19 21:47:53 2013-11-17 00:24:45
  2743. 302 59d3eaad411623cf7088ae4c13b3e2b4a7b651dd 5 5 2013-10-25 21:29:40 2013-11-16 23:55:45
  2744. 303 3e398a81bc899ffc48b44c0a31af9a555681b606 5 5 2013-10-19 21:31:44 2013-11-17 00:24:45
  2745. 304 875befe4c82ead7729ad29713876792848ca7d58 5 5 2013-10-25 21:25:53 2013-11-16 23:55:45
  2746. 305 919d0e5cd220fa4299bf5fc23beac29ff67814cf 6 15 2013-11-15 09:09:13 2013-11-16 10:05:07
  2747. 306 b9727d6c2a38af6643f0191c4605051ff0156a75 5 5 2013-10-19 13:57:37 2013-11-16 23:55:45
  2748. 307 d4d7125f5028c166590d75547a7088f5305f6822 6 15 2013-10-15 13:50:39 2013-11-16 10:05:07
  2749. 308 a5119810e28f505c7152c946614ba16f16d7784e 6 15 2013-10-15 13:46:28 2013-11-16 10:05:07
  2750. 309 a84e5a125489608c15b56b31518a6a0d8066a96e 6 15 2013-09-12 11:01:54 2013-11-16 10:05:07
  2751. 310 b4853d9c6ce02d8a7601199b6e7a67d213845936 6 15 2013-09-12 10:49:00 2013-11-16 10:05:07
  2752. 311 37bfd1ee7d301b364d0a8c716e9bca36efd5d139 6 15 2013-10-15 13:44:11 2013-11-16 10:05:07
  2753. 312 22afd9377add956e1e8d8dd6efa378fad9237532 6 15 2013-10-15 13:40:03 2013-11-16 10:05:06
  2754. 313 702c1b1a4043d8837e788317698cfc88c5570ff8 6 15 2013-11-07 10:03:32 2013-11-16 08:45:41
  2755. 314 435e283ec5b96dd9fc142a96b932f5968419f325 6 15 2013-11-06 15:43:37 2013-11-16 08:45:41
  2756. 315 d0fb57912ca9493141ee9c03d613ceafd6761b81 6 15 2013-11-07 09:38:05 2013-11-16 08:45:41
  2757. 316 eddb93cf246535ed29aedb1fd411b3d03202afa7 6 15 2013-11-12 14:19:44 2013-11-16 08:45:41
  2758. 317 a2af69bde1e27bcdab7987b2af516105fe8b78b4 6 15 2013-11-06 08:20:10 2013-11-16 08:45:41
  2759. 318 dcb106a9d9fc29614d120528f983781e59f8f6e8 6 15 2013-11-06 08:08:18 2013-11-16 08:45:41
  2760. 319 d80841f062335cefbba9d6271beba1c1c3a9c751 6 6 2013-11-12 12:50:52 2013-11-14 14:41:56
  2761. 320 649668ab85f7387dc10ec92b567f69cd65caa6a8 6 15 2013-11-13 11:58:01 2013-11-13 19:18:15
  2762. 321 b16c28e55ae034ec6efe9c489fcaff26e03285e9 6 15 2013-11-13 09:35:58 2013-11-13 19:18:14
  2763. 322 58fcc825dc24850f086181915e505c3af0168ad1 6 15 2013-10-31 13:48:16 2013-11-13 19:18:14
  2764. 323 77ff93b94cc7b05f7505a0f148da1c7d6323c121 5 5 2013-10-28 05:49:02 2013-10-28 16:08:22
  2765. 324 a608b47d16908a9bef3bbd161d1dc2ecf33c8d27 5 5 2013-10-28 05:48:57 2013-10-28 16:08:22
  2766. 325 3d5fe83cd15de13e10dea2a71f41fed5bc9401f4 5 5 2013-10-28 05:48:56 2013-10-28 16:08:22
  2767. 326 40da22a45842ffc84fe01a8e94a3442508bf407c 5 5 2013-10-28 05:48:55 2013-10-28 16:08:22
  2768. 327 a26a54e75e534a85e4a7c7b6ac5fbecd3d5b60dd 5 5 2013-10-28 05:48:54 2013-10-28 16:08:22
  2769. 328 0a9df5672b1f483e1e4f53d7a23a79bdd627cc34 5 5 2013-10-28 05:48:53 2013-10-28 16:08:22
  2770. 329 f84bd8a8338feac526924f04a8f174fb1bed64ba 5 5 2013-10-28 05:48:52 2013-10-28 16:08:22
  2771. 330 715c87e7ad7db22b821a484e93bf63776cf85811 5 5 2013-10-28 05:48:49 2013-10-28 16:08:22
  2772. 331 6d9ddbb4bae8192c1cc194803194b7aae4e798dc 5 5 2013-10-28 05:48:26 2013-10-28 16:08:22
  2773. 332 ad0d2464c2d31c736ccc99a379b1b92ab724137f 5 5 2013-10-25 20:19:18 2013-10-27 11:12:28
  2774. 333 7342ad17770f7ce2320de94b3c906b4615d80c61 5 5 2013-10-26 22:58:23 2013-10-27 10:03:26
  2775. 334 986bfa8c10b9f9a08e20f4b95f2c305f84890a8c 5 5 2013-10-26 22:45:13 2013-10-27 10:03:26
  2776. 335 a0fc85bbe06e6af0b7fbdbcaac928855e983245b 5 5 2013-10-26 22:24:49 2013-10-27 10:03:25
  2777. 336 6d104b3a46cb44f5bada967c0fbdda8ad950afda 5 5 2013-10-26 22:15:05 2013-10-27 10:03:25
  2778. 337 02b5da40d3bc8bccdf86bd1a4549efbb3c331d2b 5 5 2013-10-26 22:01:19 2013-10-27 10:03:25
  2779. 338 9d09f3ae45d0b37fb899c5323409c06e8622a2a1 5 15 2013-10-18 21:29:38 2013-10-20 14:25:29
  2780. 339 d5e4fc35ee4e5054880ed1be2ddd869e53866b39 6 15 2013-10-17 08:39:12 2013-10-17 08:43:08
  2781. 340 820e5d140fbb35ad4fe1aef44d807b15b382e55a 6 15 2013-10-16 09:24:45 2013-10-17 08:43:08
  2782. 341 bf11131c6a553d3cad78dd1acc5d1068486cb162 6 15 2013-10-15 12:18:55 2013-10-16 08:52:33
  2783. 342 ea1902a5db450b8d7ebd19f023cceecd565034d5 6 15 2013-10-16 08:33:16 2013-10-16 08:52:33
  2784. 343 91480fe22b7fcc9db684edd38e175827930ed20e 6 15 2013-10-15 09:36:39 2013-10-16 08:52:33
  2785. 344 1760496f12a998e1df71025119d7bd999cf768e7 6 15 2013-05-25 11:22:03 2013-10-14 12:15:48
  2786. 345 d6aea2dcf6398fee32c0a2f3a8306811d5d083bd 6 15 2013-05-18 16:07:05 2013-10-14 12:15:48
  2787. 346 fffc5acc708878104eeab295a229485e5c83a6de 6 15 2013-05-18 15:57:23 2013-10-14 12:15:48
  2788. 347 bf62d5d4cb0ef78bfbebc31d7d7413f358bc7fd3 6 15 2013-05-18 15:56:13 2013-10-14 12:15:48
  2789. 348 ebfa28c13a4017a300cf3e9c302b9c3174478c7a 6 15 2013-05-18 15:54:58 2013-10-14 12:15:48
  2790. 349 0095eb6126e9c7afcc42c15430668756d16306f8 6 15 2013-05-18 15:52:09 2013-10-14 12:15:48
  2791. 350 62ec02595b5b3c379348c8941a6c452bb4ea9866 6 15 2013-10-14 07:36:21 2013-10-14 10:04:02
  2792. 351 0804257f4fede4c81808a0f860e2235f77c1f649 5 5 2013-10-12 22:00:28 2013-10-12 22:14:09
  2793. 352 7ac79cbc9bb4fe3fc6a6ac2bb701fed577fa1640 5 5 2013-10-12 21:30:28 2013-10-12 22:12:56
  2794. 353 061b7c4af6a10c8b921d43887958355208dbce14 5 5 2013-10-12 20:19:42 2013-10-12 22:12:56
  2795. 354 bed89e7294a5d5e65df1671acef321fecad663f3 5 5 2013-10-12 20:12:04 2013-10-12 22:12:56
  2796. 355 e1863f60a3140b2eed7ea69c6738b3cc26fbce8d 5 5 2013-10-12 19:56:55 2013-10-12 22:12:56
  2797. 356 5bbe97666efa4bf24ac6fd5ea7bf7025731721d8 5 5 2013-10-12 19:19:35 2013-10-12 19:19:35
  2798. 357 2a254e94a3167d856617dc6219ac60442a340eef 5 5 2013-09-30 19:06:38 2013-10-05 10:50:07
  2799. 358 a6f80a72133cc100382632c60f358332661d7c27 5 5 2013-10-03 13:10:17 2013-10-05 10:29:50
  2800. 359 c4f84f6ab83b40946242237a9f501bab3eab3a85 5 5 2013-09-29 22:07:54 2013-09-30 07:11:28
  2801. 360 54be5c399a75ee3d79d5c193e96239aabe90233a 5 5 2013-09-29 19:21:06 2013-09-30 07:11:28
  2802. 361 fc7d01d922b53a65653a2d319ecdcca2036ab860 5 5 2013-09-29 18:42:43 2013-09-30 07:11:28
  2803. 362 c7c15227c91aaa278689b1232bb725fdbba3499d 5 5 2013-09-29 16:05:19 2013-09-30 07:11:28
  2804. 363 7770b5be08295f744af732ad89c31e5f57caf31a 5 5 2013-09-29 15:22:44 2013-09-30 07:11:28
  2805. 364 0e6470a0a5eb90dd43ff62c9c8d05a929db207fa 5 5 2013-09-29 15:11:18 2013-09-30 07:11:28
  2806. 365 80552936be3e6991a77df9115e331b295e5e63de 5 5 2013-09-29 14:26:26 2013-09-30 07:11:28
  2807. 366 886a1fdfdbaff5421c101a4580ae8c76baf0e18b 5 5 2013-09-29 14:23:28 2013-09-30 07:11:28
  2808. 367 352a9776af50a7fe977edc8ee727c3a5ae49bb14 5 5 2013-09-29 14:00:23 2013-09-30 07:11:28
  2809. 368 7b4bcd15352b767d8a542dfa48a8474ac753810b 5 5 2013-09-29 13:54:19 2013-09-30 07:11:28
  2810. 369 0ab0af0bc7d2eb144a3997cf0751c5dbe8c908d0 5 5 2013-09-29 13:49:20 2013-09-30 07:11:27
  2811. 370 dfcc9f04bdbb7672ca6171f2ae450da4201e974d 5 5 2013-09-29 13:26:45 2013-09-30 07:11:27
  2812. 371 226107e261040a2fd9d9bbb0d57e189e9107cca5 5 5 2013-09-10 21:24:01 2013-09-30 07:11:27
  2813. 372 cfd0667aa7a9d90e43a18b0b81546d72e7716902 5 5 2013-09-10 20:20:18 2013-09-30 07:11:27
  2814. 373 ef945e63468cc110aa77f9311362da1bb0c80691 5 5 2013-09-27 21:53:40 2013-09-30 06:36:16
  2815. 374 cc8497d89540f9989a6146f62c6e891c14aa4f9f 5 5 2013-09-27 21:41:26 2013-09-30 06:36:16
  2816. 375 5360e5d734e3b990c0dc67496c7a83f94013d01d 5 5 2013-09-27 21:34:33 2013-09-30 06:36:16
  2817. 376 e98bb60556679a5a9e93eaec9a7a1370622f23bb 5 5 2013-09-27 21:26:12 2013-09-30 06:36:16
  2818. 377 951cd5c45a5afc81c782b4e5f5069cbde4442ad7 5 5 2013-09-27 21:22:01 2013-09-30 06:36:16
  2819. 378 9e21e6a4113ac44ddb9b33ff69eaa14d92e65df0 5 5 2013-09-27 21:14:03 2013-09-30 06:36:15
  2820. 379 8093576c71609045ebd972fb3cdc5b9843fc3616 5 5 2013-09-26 21:35:43 2013-09-30 06:36:15
  2821. 380 d5a2fc6dba77ca10a887c8cb4803d56dbd3ae9e3 6 15 2013-09-27 09:10:00 2013-09-28 09:28:19
  2822. 381 2975972e03752a9115f6c39aca26a40e4ef07e7b 6 15 2013-09-25 12:31:36 2013-09-27 10:38:16
  2823. 382 97918dd62d5b093bdcec8a0eb76bd5a0d0f00a29 6 15 2013-09-18 11:21:56 2013-09-23 06:01:16
  2824. 383 46c92b9c1bb38839ceb47e6b4173594a5dd5a59e 5 5 2013-09-19 22:48:18 2013-09-19 22:57:03
  2825. 384 33a5ba6551a01fa7862653fa820662e88be91f4c 5 5 2013-09-19 22:22:59 2013-09-19 22:27:15
  2826. 385 6ca0db0e2ef5beaca806f57f271240bbdf8c2d45 6 15 2013-09-18 06:46:35 2013-09-18 13:44:28
  2827. 386 18db724faccfb2f8d04c81309feadf05b48ec9e3 5 5 2013-09-14 06:53:18 2013-09-14 06:56:05
  2828. 387 1ddadfb89a0954f40d7d238bbd3f84de55e8ffc4 6 15 2013-07-22 10:41:52 2013-09-13 11:43:29
  2829. 388 39b7c1e62feb12cffde446a54fa890f52789a7c4 6 15 2013-07-19 13:49:39 2013-09-13 11:43:29
  2830. 389 2a879f22c1d5ff6d7a1ac036febf71136d637478 6 15 2013-05-19 11:57:12 2013-09-13 11:43:29
  2831. 390 e8c7b5826b40235b9a211531bb097dbbb160dcd3 6 15 2013-06-18 07:47:25 2013-09-13 11:43:29
  2832. 391 95e52c53a4a183c9f0eada7401e1da174353e00e 6 15 2013-05-13 17:51:33 2013-09-13 11:43:29
  2833. 392 94391a18858c05b2619dfea4b58507d08d932bd3 6 15 2013-05-03 13:27:17 2013-09-13 11:43:29
  2834. 393 0083ccd166fc66e0050179ad596a20a57e20469e 6 15 2013-05-03 13:24:48 2013-09-13 11:43:29
  2835. 394 e93f04a668f92a0e8a2f84f67b8721d20b570a51 6 15 2013-05-03 13:19:53 2013-09-13 11:43:28
  2836. 395 ba26df66333fd0894bb602175286e2dc3cfc74ac 6 6 2013-09-12 09:45:49 2013-09-12 10:04:45
  2837. 396 954c1d53776a30d0601d4b94feb50e1b94d7daba 6 6 2013-09-12 10:00:49 2013-09-12 10:04:42
  2838. 397 8134439e7a7a0e8f3381ef84dddfc4b154941ef7 5 5 2013-09-10 20:41:04 2013-09-11 08:24:09
  2839. 398 fea1d8d40c1278cd0de962b65d482a0f8b609b05 6 6 2013-09-10 06:12:25 2013-09-10 06:13:07
  2840. 399 11c8b2f588bf858097ede65eeed186de80898bed 5 5 2013-09-09 17:53:58 2013-09-09 18:38:05
  2841. 400 22fa499fc0bba5159653bb7459977e5cdab18dc5 5 5 2013-09-09 11:51:16 2013-09-09 11:51:16
  2842. 401 73745cc921661a9bb08f0f37a93f31d01f559c73 5 5 2013-09-09 11:50:29 2013-09-09 11:50:29
  2843. 402 a6db8a0acd697729208913cdd09462264098f5bb 5 5 2013-09-09 11:48:01 2013-09-09 11:49:49
  2844. 403 59377667d4d85ea0878c1dd2d3ac523cd3f4b59e 6 15 2013-09-09 06:41:22 2013-09-09 08:11:30
  2845. 404 594d4b4a6717d6eaa3ea262283a86b9b72f68aa5 6 15 2013-09-09 06:40:47 2013-09-09 08:11:30
  2846. 405 5d545b0b957b4c942a01ca9f0133547eafcf8f96 6 15 2013-09-03 14:05:30 2013-09-09 08:11:30
  2847. 406 d566c6e18c5651ce9bea346bd69eb8ac8ef130b0 5 5 2013-09-07 22:15:46 2013-09-08 13:15:21
  2848. 407 cde9e0d4b401c4d8966d99d004987eb514e16958 5 5 2013-09-07 16:12:20 2013-09-08 13:15:21
  2849. 408 19b6ef586ecd06e2ee5009fab939d44acd4f98de 5 5 2013-09-07 14:46:25 2013-09-08 11:04:21
  2850. 409 e38535956083d5e029fedbe86f45d9d0c6a74232 5 5 2013-09-05 19:41:34 2013-09-05 20:05:14
  2851. 410 91042661a4af19d5efa5a82123064f7ecb0a5ea9 5 5 2013-09-05 19:18:18 2013-09-05 19:49:49
  2852. 411 d2e138be607e779bc9047fab67639c310d71b469 6 5 2013-09-05 12:14:54 2013-09-05 15:10:13
  2853. 412 db395f164005717547ef124ec8aa11e0816ebc24 6 5 2013-09-04 07:36:30 2013-09-05 15:10:13
  2854. 413 a63d915cdf39abeb53b2bd7aafe987e60f01ae8d 5 5 2013-09-05 12:13:05 2013-09-05 12:43:18
  2855. 414 e81ac918af027797606f2c36ca169f8d5b3f54c3 5 5 2013-09-04 19:12:07 2013-09-05 12:43:18
  2856. 415 5c82b60bb0ea041d891a609c0e272a5b476b7826 5 5 2013-09-04 18:59:11 2013-09-05 12:43:18
  2857. 416 a8c32682654837c5a69fd12e87591d53d1202ef4 6 15 2013-09-02 09:58:03 2013-09-05 10:11:43
  2858. 417 8e068de321f696c2126f4f9b3a9a1997cefea753 6 15 2013-08-29 13:28:14 2013-09-05 10:11:43
  2859. 418 b200e83c7cb98a764dde49aa5b32a2efaac41cf3 6 6 2013-09-04 14:37:34 2013-09-04 14:38:22
  2860. 419 378a00935735431d5408dc8acbca77e6887f91c6 6 6 2013-08-29 13:32:32 2013-08-29 13:33:28
  2861. 420 c555cd816ce800e42d5326f173859d2d4808cc0b 5 5 2013-07-29 21:00:15 2013-08-26 18:17:30
  2862. 421 bb3bd08076246c03b0cd1d4048c2c7dbd3a99ad4 5 5 2013-07-29 20:29:35 2013-08-26 18:17:30
  2863. 422 938361215952985d933d62184915e62d825d75ef 6 15 2013-07-23 09:53:32 2013-07-24 17:53:27
  2864. 423 9b44dcb69bf076690cf5e9d9d9d3dbf018068bc5 6 6 2013-07-22 13:36:55 2013-07-22 13:42:56
  2865. 424 7c85d87436ec7111bd6732bd3cbec929c2dadc49 6 15 2013-07-16 08:36:14 2013-07-16 12:20:05
  2866. 425 cc1c1a2550556c001010f746791ef155e7eb9953 5 5 2013-07-15 20:24:38 2013-07-16 11:39:28
  2867. 426 264810c79fe2d7aeddf01090a94d0e78c9c36327 5 5 2013-07-15 20:20:38 2013-07-16 11:39:28
  2868. 427 fdde5545dd832c1bef6ff1cb165a1158654b1eef 5 5 2013-07-15 20:15:55 2013-07-16 11:39:28
  2869. 428 c979a9acc832039a1da8bc898db8f091ad07f2a1 5 5 2013-07-15 20:11:36 2013-07-16 11:39:28
  2870. 429 ac3e9d88306b5677d93362cdb61a9d586350c8ec 5 5 2013-07-15 22:08:39 2013-07-16 08:13:02
  2871. 430 699d197ec9964ec9763ce9defb21c9c9d74d9b79 5 5 2013-07-15 21:22:32 2013-07-16 08:13:02
  2872. 431 c86d4503a068561d88a358590721eca4945c69a0 5 5 2013-07-15 21:08:32 2013-07-16 08:13:02
  2873. 432 5834988d51ce33e621a4f172da1f7c5a2e794a13 5 5 2013-07-15 18:13:32 2013-07-15 18:59:17
  2874. 433 314b78fabc020c0064e328328d9172a878a3502a 5 5 2013-07-14 08:59:42 2013-07-14 16:44:51
  2875. 434 98475a72b31d1eabb5d2bc4058c17fe16d882ff8 5 5 2013-07-12 13:42:04 2013-07-12 14:31:51
  2876. 435 f0dac59921d615672a19e1eb49edc3022c41ee0f 5 5 2013-07-11 21:17:33 2013-07-12 09:06:51
  2877. 436 72712f2bbfe8db7d855f8c037ab9b0cc709e219a 5 5 2013-07-11 19:49:53 2013-07-12 09:06:51
  2878. 437 7dbd6fb1dcd9638fa90ba62f6e5ff5f63374b296 6 6 2013-07-08 11:28:53 2013-07-10 13:59:15
  2879. 438 d0d6c137a9163d2d22d38ec4ac989ee86b586116 6 6 2013-07-08 10:55:14 2013-07-10 13:57:58
  2880. 439 742c2905164f8fe45c56df9fb44f99a978ffeea2 6 6 2013-06-28 13:33:57 2013-07-10 13:57:58
  2881. 440 c3443f9e311c38c54ff350ba3e9eac56b1ab4526 6 15 2013-07-09 09:54:25 2013-07-10 10:36:58
  2882. 441 c36cbd25a84a5836b6cbdde672230757e4087769 6 15 2013-05-25 13:10:56 2013-07-10 10:36:58
  2883. 442 aca38ec5a8d13c3073cfed5298c9a2f60106efd6 6 15 2013-04-27 12:40:28 2013-07-10 10:36:58
  2884. 443 d96764cf1e7d9904fb1002a082e1c120c0494b7a 6 15 2013-04-19 14:37:03 2013-07-10 10:36:57
  2885. 444 07cfbf8cdaea14428e928cc584b793ac47d6e694 6 15 2013-06-06 08:53:38 2013-07-10 10:36:57
  2886. 445 c53d67e2290a4a872d963957457e17d612dcfa07 6 15 2012-11-11 22:01:33 2013-07-10 10:36:57
  2887. 446 48aee8f6ea7cab38412bc1703eae4dc4b949c0a4 6 15 2013-06-04 10:12:58 2013-07-10 07:34:21
  2888. 447 9d818d968154bcd5e1d9956d199f850c47fe81ec 6 15 2013-06-04 10:09:04 2013-07-10 07:34:21
  2889. 448 154e5d490691d885d2fe3f3611378a212f0913cb 6 15 2013-06-04 10:05:56 2013-07-10 07:34:21
  2890. 449 2d3b107dd7272c92db7479cf540f90f039e4a05b 6 15 2013-06-04 09:50:59 2013-07-10 07:34:20
  2891. 450 b7ee94804f5db020493790b77192623aec681502 6 15 2013-06-04 09:48:46 2013-07-10 07:34:20
  2892. 451 a63241e71fb9871353a4f0b8c41f9b3b376734f8 6 15 2013-06-04 09:47:00 2013-07-10 07:34:20
  2893. 452 0832859a46bee161240f7668980d8153bc300d43 6 15 2013-06-04 09:36:53 2013-07-10 07:34:20
  2894. 453 0a278ff225082d922ec5178b1f3e661d4df0d3ff 6 15 2013-06-04 09:35:30 2013-07-10 07:34:20
  2895. 454 4f967bcc4340ae555aeccdaf20f2d4c89f2494c1 6 6 2013-07-03 13:58:51 2013-07-09 07:36:43
  2896. 455 980159a630012c9adfbb6f07839297bb59ec3068 6 6 2013-07-08 13:35:10 2013-07-08 14:04:33
  2897. 456 f30a330a8280f75374da9ac8b6c890b68d363e69 5 5 2013-07-07 21:00:02 2013-07-07 21:14:56
  2898. 457 10690e53e26c4808dd24f98f122884912bd1f40b 6 15 2013-07-07 19:37:40 2013-07-07 20:53:45
  2899. 458 e0066cde191305991949dd90c22069cfa47e0ac1 6 15 2013-07-07 09:27:04 2013-07-07 20:53:45
  2900. 459 a63ed1daed2346f9ec2002ad925f4da051ec9846 6 15 2013-07-03 20:47:44 2013-07-07 20:53:45
  2901. 460 14b5c324d6fc3161c9e949ca2b0b7284125b7dbf 6 15 2013-07-03 20:38:52 2013-07-07 20:53:44
  2902. 461 95724bc9cb43111862db434639bbde3b7710cf96 17 15 2013-07-06 20:38:05 2013-07-07 13:07:20
  2903. 462 1803667f73ff736a606a27bb0eb3e527ae1367e9 6 15 2013-06-28 11:11:07 2013-07-02 21:01:13
  2904. 463 c39c2b2c18ba032101c437505499cce6e604b4dd 6 15 2013-06-28 11:09:25 2013-07-02 21:01:13
  2905. 464 0ee5675656ba1ee62e0074b3947b0f6cb305193f 6 15 2013-06-15 10:44:47 2013-07-02 21:01:13
  2906. 465 25a7a9e1c49f8759cc9e09331fd3974411271c22 6 15 2013-06-07 12:52:25 2013-07-02 21:01:13
  2907. 466 8e7852ca376eb0969fda26ef8bd7e9181e98ba55 6 15 2013-06-07 12:48:45 2013-07-02 21:01:13
  2908. 467 c1976500b3b1761e30af5bd6578d396684c4ef28 6 15 2013-06-05 10:34:58 2013-07-02 21:01:13
  2909. 468 3c9fdfcbc5030e4383e21b63e86a808aac11f103 6 15 2013-05-27 17:14:10 2013-07-02 21:01:13
  2910. 469 1d52a525bd8c4f3b80483a17c2ff2f481f7364d4 6 15 2013-04-19 13:18:26 2013-07-02 21:01:13
  2911. 470 d64c7f958b83b7c3be127a0cb3f5eeae9866a541 6 15 2013-04-18 14:16:36 2013-07-02 21:01:12
  2912. 471 c39329991e910abbfd6817d4ad57de73167f8cf3 6 15 2013-04-18 14:14:51 2013-07-02 21:01:12
  2913. 472 fa4a3d40a658461d1373d4603c39446912a42469 6 15 2013-04-17 14:54:21 2013-07-02 21:01:12
  2914. 473 c27cfee23ba86dd046db9e8bd0985719fd2ac8fe 6 15 2013-04-17 10:11:03 2013-07-02 21:01:12
  2915. 474 223d0752a0d49e0f2e34a3a282bf2b890ad60281 6 15 2013-04-12 10:00:12 2013-07-02 21:01:12
  2916. 475 78559466f2b8253ce69d2aa24c7d7c7259159632 6 15 2013-04-11 14:44:19 2013-07-02 21:01:12
  2917. 476 b2d36066c55b7a4a4902412c99aa535791f15f3e 6 15 2013-04-11 14:40:56 2013-07-02 21:01:12
  2918. 477 9762cda21975f4930004c07d72523cab6cde9555 6 15 2013-04-11 10:58:51 2013-07-02 21:01:12
  2919. 478 fa98b03bd55d3299752387847656443ef6a9af58 6 15 2013-04-10 14:54:39 2013-07-02 21:01:12
  2920. 479 4a104543fd74f12c66a8f8d60ded4a8201af7bc7 6 15 2013-04-10 14:50:14 2013-07-02 21:01:12
  2921. 480 79df9653c21b7104ffb324177d399c46d84045e2 6 15 2013-05-03 10:24:03 2013-07-02 21:01:12
  2922. 481 10cd122259bb97b2f83449518b5c40b76375c590 6 15 2013-04-08 14:27:51 2013-07-02 21:01:12
  2923. 482 ffb4a6b14563f1b483fb4e654e1c646d6cde358c 6 15 2013-04-08 14:24:09 2013-07-02 21:01:12
  2924. 483 6a1576b09a78199a3eda91aa9488d0f5f92884f7 6 15 2013-04-08 14:20:20 2013-07-02 21:01:12
  2925. 484 8e36a982baa4dd560653dcba1ed237f8e569cc3b 6 15 2013-04-08 13:14:36 2013-07-02 21:01:12
  2926. 485 8038354ba8a45e9fe9ca426bb32b06198e10d3fa 6 15 2013-04-08 10:21:38 2013-07-02 21:01:12
  2927. 486 28e30f6a5a65a0010b7685cc0c01732a02388a44 6 15 2013-03-26 12:36:21 2013-07-02 21:01:11
  2928. 487 0bce8fd05dd66147c503f763f76c4930832aa91c 6 15 2013-03-26 12:29:21 2013-07-02 21:01:11
  2929. 488 3b9e26cd4a34f642d6675f6c9bfd8311021a1cb2 6 15 2013-03-18 06:08:26 2013-07-02 21:01:11
  2930. 489 1b587020e478e1be43dee70536f48621224f144e 6 15 2013-03-14 10:51:07 2013-07-02 21:01:11
  2931. 490 44bbc879b73d8aa5c480583da538120d239cd86e 6 15 2013-04-09 11:13:09 2013-07-02 21:01:11
  2932. 491 c7bbf8b915e3523b3dca9c2f13fb8579de5b233d 6 15 2013-03-12 11:56:49 2013-07-02 21:01:11
  2933. 492 38d93a0ee4cd23a739956ddebde44d1216970da3 6 15 2013-06-26 13:23:19 2013-07-02 20:38:26
  2934. 493 2ecb21bf2bd1d6f53bbe66dca3e78b5bef628486 6 6 2013-06-27 14:06:56 2013-07-02 07:05:30
  2935. 494 3608827b9071d27890aff3ea56559de4e7beb728 6 15 2013-06-11 11:31:14 2013-07-01 08:59:02
  2936. 495 9e52082d13165b09655ca23348cf86bace478c88 6 15 2013-06-11 10:30:28 2013-07-01 08:59:02
  2937. 496 5fd8908ded30edb21bb9cad5ebde736fb2810354 6 15 2013-06-11 07:49:59 2013-07-01 08:59:01
  2938. 497 b7fd4cde2c0a1f1edfe3e2e49e7e1ef3175e84b7 6 15 2013-06-11 07:47:18 2013-07-01 08:59:01
  2939. 498 1f5af43a55e5471ab7f83f1d92ef27f2078900aa 6 15 2013-06-11 11:26:55 2013-07-01 08:59:01
  2940. 499 fef6f82aeee74ed6af87c17de05c45e2144cac32 5 15 2013-06-09 21:35:49 2013-07-01 08:59:01
  2941. 500 6ef2dd39cca4df96427cd3f654c85f0312fdea45 6 15 2013-06-04 12:02:21 2013-07-01 08:59:01
  2942. 501 4a9ec0a37f7c01caf6d32a08071a0260a0086628 6 15 2013-06-11 10:28:03 2013-07-01 08:59:01
  2943. 502 bd78750a2a00d6021e18a443d95cbb77f46f4a9b 6 15 2013-06-11 10:21:44 2013-07-01 08:59:01
  2944. 503 70a99d05cc24bff897219eab32bbfeacec9906ea 6 15 2013-06-11 10:10:05 2013-07-01 08:59:01
  2945. 504 665d3c6484a54a59f9e9383626fe05a8b84b2cb7 6 15 2013-06-13 14:56:59 2013-06-26 14:12:56
  2946. 505 a2b67556cda90d6da66efdec4f08e1cf28d055a4 6 15 2013-06-13 14:54:31 2013-06-26 14:12:56
  2947. 506 bf06417215f4c09d3ebfd4886de5be0ff05b5176 6 15 2013-06-13 14:48:17 2013-06-26 14:12:56
  2948. 507 47469bbcd2c25e0c850f03b8f1fe3496b32aa012 6 15 2013-06-13 14:47:59 2013-06-26 14:12:55
  2949. 508 3b6e3d23a9e4d534c4ea54a3d05c5458121cd2e1 6 15 2013-06-13 14:47:30 2013-06-26 14:12:55
  2950. 509 d0dd472d211e65741ea2ee9831cd380b1f657997 6 15 2013-06-22 10:18:29 2013-06-25 18:52:58
  2951. 510 7a307490dd1ae6ef5d6f8d2a8a123e004f6bf061 6 15 2013-06-19 13:29:08 2013-06-25 18:52:58
  2952. 511 913b4aacf82c5dc831a98ea48aa693c7e38e3f3b 6 15 2013-06-14 13:42:35 2013-06-25 18:52:58
  2953. 512 ecc87818f45c02d2ab3b35f5d76174aca59c083b 6 15 2013-05-16 09:29:18 2013-06-25 18:52:57
  2954. 513 bc1d8a8ea1412053de2e18be026518941e255590 6 15 2013-05-16 09:25:03 2013-06-25 18:52:57
  2955. 514 e74e2f1572f56b57457d9b927d90992453605520 6 15 2013-05-16 09:23:43 2013-06-25 18:52:57
  2956. 515 8306fe0faca85f53ffbc91384c449050cb7e4272 6 15 2013-05-16 09:20:36 2013-06-25 18:52:57
  2957. 516 d688b35d14e0c3f8df37d6a81cd4b6bd3994f7ce 6 15 2013-05-16 09:16:13 2013-06-25 18:52:57
  2958. 517 c31d0d99534add025447ce9045ed0143a4a9b95e 6 15 2013-05-16 09:09:01 2013-06-25 18:52:57
  2959. 518 4c9a16275cfb8cb965fb0110ba62930f3739e80f 6 15 2013-06-09 14:04:26 2013-06-14 10:57:49
  2960. 519 40a246a16553fc3a1a2d4e41a1473b38a3e08e0a 6 15 2013-05-17 16:54:06 2013-06-14 10:57:49
  2961. 520 76daf351333444a05284a2993151a22769776a1a 6 15 2013-04-26 17:17:35 2013-06-14 10:57:49
  2962. 521 4956df2ef824c2c92ecd5986fde5a221b5f198cd 6 6 2013-05-26 10:44:50 2013-06-13 13:52:51
  2963. 522 6176a80b9513b87a841ea99ee5191bfa513a79b3 6 6 2013-05-26 10:39:27 2013-06-13 13:52:51
  2964. 523 d0fd93b1ac8414aaee7e1b397a213f6c2cf71f6d 6 6 2013-05-26 10:36:53 2013-06-13 13:52:51
  2965. 524 2ff6ea0051fb9b5d6c815c4264534b498553203a 6 6 2013-05-20 19:39:33 2013-06-13 13:52:51
  2966. 525 33e959de9eaca22596585cc02783d23296cc4c9d 6 6 2013-05-24 16:42:41 2013-06-13 13:52:51
  2967. 526 846932113bae2945c9c3cc924936b929032ac492 6 6 2013-05-20 19:42:19 2013-06-13 13:51:18
  2968. 527 8c9333ddf6dfe37a63bff0486c57a4feaa92f6f2 6 6 2013-05-26 08:12:44 2013-06-13 13:51:18
  2969. 528 105b084ca9e9d09125e3852317f310e127b07380 6 6 2013-05-20 20:11:26 2013-06-13 13:51:18
  2970. 529 d7a495eab89909149a173378943445bacbc66d1b 6 15 2013-06-12 07:50:29 2013-06-13 09:07:12
  2971. 530 bc2ad27f2c2efa7ecd0eb7f19a36d1f5a5a51e4c 6 6 2013-06-10 09:34:23 2013-06-10 09:34:23
  2972. 531 ad665f7196eb8281ce6e03060e930fc8a171dc60 6 15 2013-05-27 13:58:37 2013-06-09 14:59:17
  2973. 532 8808682b7d93e92aeda5655eec50568641ef202a 5 5 2013-06-03 08:46:03 2013-06-04 18:17:17
  2974. 533 e3cfa76ee72918175cc735fbf2855640b7a555d8 5 5 2013-06-02 20:36:29 2013-06-04 18:17:17
  2975. 534 6007ecb84fcb33ca6de7b2c8116a8c353738907e 5 5 2013-06-02 18:59:53 2013-06-04 18:17:17
  2976. 535 bea430f34c7138c6ca69fcb15aa3ba9b2071f1de 5 5 2013-06-02 19:32:37 2013-06-04 18:17:17
  2977. 536 b87087bb3ed081736e33a1915f9bc8f0587704f9 5 5 2013-06-02 17:54:54 2013-06-04 18:17:17
  2978. 537 e53722657011c3521974f92f24beca8413426fc5 5 5 2013-06-02 16:30:47 2013-06-04 18:17:17
  2979. 538 383e8bb039da873e92d68d0f3f29991ba1b13cd4 5 5 2013-06-01 21:38:14 2013-06-02 12:01:06
  2980. 539 5c472b27defb4057d1535be2d17feafe17e3fb5e 5 5 2013-05-31 20:58:48 2013-05-31 20:58:48
  2981. 540 7e767dc9b285fc7bb60f2b9582247107a8952871 5 5 2013-05-31 20:41:38 2013-05-31 20:51:07
  2982. 541 5beaf66ec5d53bf741d7037eb4ceacefaf6151a9 5 5 2013-05-31 20:33:35 2013-05-31 20:35:51
  2983. 542 ee2f43ff9eb4137672a714c3a136972f36ea6f25 5 5 2013-05-31 20:30:45 2013-05-31 20:30:45
  2984. 543 9c0ddde7c140640dd5169514f15919ce8d64371c 5 5 2013-05-31 20:27:21 2013-05-31 20:27:21
  2985. 544 2aab912291b3e4ef146c707a759dad48cc0adc09 5 5 2013-05-31 20:23:47 2013-05-31 20:23:47
  2986. 545 9fa6717fe9846d1d07cd0fa612dcafb48fb895b9 5 5 2013-05-31 20:17:27 2013-05-31 20:17:27
  2987. 546 4a528f2427bb9263034f67e5df386b0fc56b6238 5 5 2013-05-31 20:14:33 2013-05-31 20:14:33
  2988. 547 a10f3a51127abb4b62336b8c8c4d0bf95e415899 5 5 2013-05-31 20:08:01 2013-05-31 20:08:01
  2989. 548 e60d6542f53d8af48f5fbff00613763ea7d747e7 5 5 2013-05-30 20:35:29 2013-05-30 22:03:47
  2990. 549 99a645119a1d6c7aaec435c46d116182e6971baa 5 5 2013-05-30 18:57:45 2013-05-30 22:03:47
  2991. 550 bf3067279105b7a9646b1d777950b3b6f8d2b955 5 5 2013-05-29 21:17:27 2013-05-29 21:20:04
  2992. 551 f7d36867d630490a8933f8430390bca7f4903691 5 5 2013-05-29 21:12:40 2013-05-29 21:13:41
  2993. 552 71405a1582fc7edf956b6cd23e0d285c01a94965 5 5 2013-05-29 21:06:50 2013-05-29 21:13:41
  2994. 553 02317d86fc93db284b853259613b7281c02c183e 5 5 2013-05-29 21:00:29 2013-05-29 21:13:35
  2995. 554 65e17047a0c0462d5729accf3840403d2131eb83 5 5 2013-05-29 18:01:23 2013-05-29 18:01:23
  2996. 555 aca30b7e0cba90067118afdd3c178aeee289c8fc 5 5 2013-05-29 18:00:42 2013-05-29 18:00:42
  2997. 556 ed601bcc50b2e3dceb02300a91a423554bc0c93d 5 5 2013-05-28 21:20:52 2013-05-28 21:50:48
  2998. 557 79683f8e9ad4f68f0c70af5c932e1d4f079e7afa 6 5 2013-05-28 18:48:36 2013-05-28 20:49:28
  2999. 558 f1b68e55f508ba3f6bf6b7a3960b5f28ab1c4851 5 5 2013-05-28 11:27:54 2013-05-28 20:49:28
  3000. 559 1cb449188f817d9e5dbd0f3ab9d5c25e8002cfe7 5 5 2013-05-28 06:53:51 2013-05-28 20:49:28
  3001. 560 12d2745dd249f74af596db635e5764a97ebf5929 5 5 2013-05-28 08:13:59 2013-05-28 20:49:28
  3002. 561 e48bf668b31129f38d668dd15f26ed485d17cae6 6 5 2013-05-28 19:04:53 2013-05-28 20:49:28
  3003. 562 bc17d0aaa409321ad02f5201b5ef58b53d0e6eaf 8 15 2013-05-26 23:09:12 2013-05-27 22:00:13
  3004. 563 a301c70230978c546f6a019e3681185455cc7821 8 15 2013-05-26 00:09:49 2013-05-27 22:00:13
  3005. 564 b8014a673d941357c9b2cc8362f607b3ee3e27e5 8 15 2013-05-25 23:57:49 2013-05-27 22:00:13
  3006. 565 2a3b90797f5cf1d1aae06f4768def84302622f38 8 15 2013-05-25 23:36:10 2013-05-27 22:00:13
  3007. 566 3500c0ca00cc4b61c719bbd1cae9057df6090828 8 15 2013-05-25 23:14:27 2013-05-27 22:00:13
  3008. 567 b1785f67d186905b3f446d0fec749b0421dbc302 5 5 2013-05-27 20:08:47 2013-05-27 20:25:19
  3009. 568 58229666df5fb94c62e529b415c96cc68c6a6ba3 5 5 2013-05-27 20:03:05 2013-05-27 20:25:19
  3010. 569 a458f366e8889c2aaf0418d7f92afef867aae537 5 5 2013-05-27 19:33:21 2013-05-27 20:25:19
  3011. 570 40abe5f3606b1256534aa4fb613b5d6dc2fd12a9 5 5 2013-05-27 19:14:19 2013-05-27 20:25:19
  3012. 571 881bf33bfb536c1cccdf65abda98b8e5043ff0f6 5 5 2013-05-27 18:59:53 2013-05-27 20:25:19
  3013. 572 240095b4c83917fe7425cb141a41e7419e3937a2 6 15 2013-05-26 12:25:27 2013-05-26 14:24:25
  3014. 573 844fe72f5c87e45c9bcefb6afa9868026b8095a5 6 15 2013-05-25 12:14:50 2013-05-26 14:24:24
  3015. 574 2aa7e73d2babc7933e08aad11419efecc98e9d52 6 15 2013-05-25 12:07:30 2013-05-26 14:24:24
  3016. 575 88df6de257edbe2d766ccb8f11ce769f938d36d7 6 15 2013-05-25 12:30:09 2013-05-26 14:24:24
  3017. 576 674ef4a39038791cd2506f14b760b832d41cf3cb 6 15 2013-05-25 11:49:12 2013-05-26 14:24:24
  3018. 577 6a8ad7c617f59de211dfe847e547c194f00b5f2b 6 15 2013-05-25 09:50:28 2013-05-26 14:24:24
  3019. 578 d916521b0e431a2d216a17f48d7e13e9c193339c 6 15 2013-05-25 09:55:30 2013-05-26 14:24:24
  3020. 579 30e472de475d17048a7a7933a31bf34c9bfa2a85 6 15 2013-04-25 14:55:25 2013-05-26 14:24:24
  3021. 580 2f263e738b3416d7cb58fe2df3ea5ee68be40b48 6 15 2013-04-25 09:47:05 2013-05-26 14:24:24
  3022. 581 3770147e6a3a949ebcc907d2d9cd29afa8948012 6 15 2013-04-09 11:14:17 2013-05-26 11:40:35
  3023. 582 97a5a0d0b9ed9149edccf65ad9f4876e9722761f 6 15 2013-05-25 20:07:24 2013-05-26 11:40:35
  3024. 583 83961d629de4628eb6583922735c42f897009507 6 15 2013-05-25 20:19:04 2013-05-26 11:40:35
  3025. 584 bcf12ab48c993ee079cbff48305f230e9a9f557c 6 15 2013-05-25 13:49:58 2013-05-25 17:27:19
  3026. 585 2a5ed724677633cb026dbd27496d9867e8322513 18 15 2013-05-24 09:25:42 2013-05-25 16:31:15
  3027. 586 d6c3ade5c39bed78e8b5f9e63b7711e0db172cf0 6 15 2013-04-17 10:53:40 2013-05-25 13:54:05
  3028. 587 c5c59c5bce51715a3b1d309f0d8d2aa3df2b16e8 6 15 2013-05-24 10:37:23 2013-05-25 12:48:31
  3029. 588 23931aaa7e868e241be97bc7a38d640ff68c5622 6 6 2013-05-22 17:13:00 2013-05-23 20:31:51
  3030. 589 b080e0ed032bc53f883ff46b52f8267c274e59a5 6 6 2013-05-12 19:55:27 2013-05-23 20:31:51
  3031. 590 a9fc833869b05004c541f8463f32fadea8a49c82 6 6 2013-05-12 18:59:44 2013-05-23 20:29:44
  3032. 591 aea08ae016a890ee9291eb4fa5141a18af8f0db4 6 6 2013-05-12 13:21:06 2013-05-23 20:29:44
  3033. 592 48533cbd4ed832719c75c28dbc534cd61c065b21 6 6 2013-05-10 14:44:27 2013-05-23 20:26:56
  3034. 593 aca57d0899e5193232dbbea726d94a838a4274ed 6 6 2013-04-08 10:13:54 2013-05-23 20:23:43
  3035. 594 ca89553db7a2ba22fef70535a65beedf33c97216 6 15 2013-05-22 12:52:30 2013-05-23 18:46:31
  3036. 595 a5edc9cf092934f600bce3096d365935de9c0175 6 6 2013-05-22 11:55:45 2013-05-23 18:09:12
  3037. 596 21a67d8aa47ca6e9fcf980f9c3a76e0d8191021f 6 6 2013-05-22 11:52:50 2013-05-23 18:09:12
  3038. 597 44469aee3c09248fa425ed8096687a88e843f535 6 6 2013-05-22 11:50:56 2013-05-23 18:09:12
  3039. 598 06bff94ea3612517f3e09a37165d2d421ff229b4 6 6 2013-05-22 11:47:29 2013-05-23 18:09:12
  3040. 599 0ce93ba8d096676c3d26dd16ed93090918052d47 6 6 2013-05-22 11:46:45 2013-05-23 18:09:12
  3041. 600 0b5a4e3d4f183af04a13e014a019c983e39e7e0e 18 6 2013-05-17 10:54:44 2013-05-23 18:09:12
  3042. 601 132dbfb7c2ac0f4333fb483a70f1e8cce0333d11 6 15 2013-05-22 16:20:39 2013-05-22 21:05:30
  3043. 602 0497dbc2d6124a3831e430e7c3fc6475a0783f02 6 15 2013-05-22 16:22:35 2013-05-22 21:05:30
  3044. 603 52efcada27d9281b84d2273c037c0c5b7920f7a6 18 6 2013-05-22 16:47:37 2013-05-22 17:34:39
  3045. 604 7d405043a9bac702cfd158fbbca146aec6e838fa 18 6 2013-05-22 16:43:33 2013-05-22 17:34:39
  3046. 605 e83afd62f389b61fb8eb8a9ed1f2cd7d40771bad 5 5 2013-05-22 16:18:23 2013-05-22 16:44:46
  3047. 606 f22389e86725df3bf27dad511cb814d45d1119ab 5 5 2013-05-22 15:39:02 2013-05-22 16:44:46
  3048. 607 0b03993ff696f88f1537111e9d260e8cbe0f1748 5 5 2013-05-22 15:15:11 2013-05-22 16:44:46
  3049. 608 46bed99ff30f439a765951f4ca28651c9af1c5b5 5 5 2013-05-22 15:09:11 2013-05-22 16:44:45
  3050. 609 c03de0b1019af9b3e56865b8bf876540e335e63c 6 6 2013-05-22 15:46:05 2013-05-22 15:46:05
  3051. 610 c28b0a3b373fcec16711240e65b6678ed3b2b0d6 19 19 2013-05-22 11:55:38 2013-05-22 13:09:00
  3052. 611 1275699a0ce5355bb338b6c0c726b14df608ea4a 5 5 2013-05-20 18:37:53 2013-05-20 21:03:59
  3053. 612 bfd8c9e40d5d70e3319ca48a269dbf8a61e34444 5 5 2013-05-20 18:29:40 2013-05-20 21:03:59
  3054. 613 4f7781565320f472274a4801d259d74e746e3d23 5 5 2013-05-20 18:26:39 2013-05-20 20:57:15
  3055. 614 a991971ac26b214ce6a492c359062fabb99ba297 5 5 2013-05-20 18:25:14 2013-05-20 20:57:15
  3056. 615 52af0e68d2bb140c21c87544d0c5fbc469a78c92 6 6 2013-05-20 20:43:51 2013-05-20 20:51:30
  3057. 616 1f8851d2cd0abfc09a32c741dcd7d433f4f73944 8 8 2013-05-19 21:16:52 2013-05-19 21:58:04
  3058. 617 62a9ec80987aa28c67c0bfc815a3a7d3dd2c2c24 8 8 2012-12-21 11:35:25 2013-05-19 21:34:09
  3059. 618 2b603ea26205065f4c242a2a7188bd1d41559807 6 6 2013-05-18 22:10:33 2013-05-18 22:27:18
  3060. 619 47baceff0f7729be9255c8f6f0f8816eb9685e2e 5 5 2013-05-18 20:36:03 2013-05-18 22:12:45
  3061. 620 83cc6c00429359dfde6aa031b1183ca532c14ffe 5 5 2013-05-18 21:30:49 2013-05-18 22:12:45
  3062. 621 904b3eb88edee760684640807819e9895cd99fb8 19 19 2013-05-18 18:51:36 2013-05-18 21:45:43
  3063. 622 3db69c2cc6ef96e8f0daa545b863ed9acc9c175b 19 19 2013-05-15 14:34:11 2013-05-18 21:45:43
  3064. 623 db6d5bfcf2e107b250c60e1dbe471cd394ac433d 19 19 2013-05-15 14:31:52 2013-05-18 21:45:43
  3065. 624 04947a406a3b4694183cf291ac3e484e35fd64b2 19 19 2013-05-15 14:03:57 2013-05-18 21:45:43
  3066. 625 dd51dea67c4c462c2710a3e858bf95303ef59ffd 6 6 2013-04-05 07:52:01 2013-05-18 20:14:02
  3067. 626 69feed5a64935f83f19b4927afecfc8dee61c309 6 6 2013-05-17 16:15:45 2013-05-17 21:52:23
  3068. 627 a08619bfb89ee08b7e71da2a78afbedf40f2c70d 6 6 2013-05-17 14:53:36 2013-05-17 21:52:23
  3069. 628 0966754ea73d30965d8b93a47522e894d009d6fe 6 6 2013-05-17 14:38:12 2013-05-17 21:52:23
  3070. 629 1ba70ffe1b519ec8b69ec6f8800dd243a2a8390f 5 5 2013-05-17 14:49:32 2013-05-17 15:17:37
  3071. 630 310ba24ef8be8501d0eac75af82fe1d48f607460 5 5 2013-05-17 11:12:32 2013-05-17 15:17:37
  3072. 631 8afed5e9be0dedf1fbf9f69c45e5fcf9e6f66fe3 5 5 2013-05-17 10:59:02 2013-05-17 15:17:37
  3073. 632 092ed1c48fdec99bfa16534aaf6fe640189554a9 6 15 2013-05-15 12:26:47 2013-05-15 18:31:25
  3074. 633 4d14735c42b6568954c4a05e249108c564120b99 6 15 2013-05-15 10:21:17 2013-05-15 18:31:25
  3075. 634 a663c6189a828b07e6e5985fcd43c60ba3ab4378 18 15 2013-05-15 07:45:22 2013-05-15 18:31:25
  3076. 635 bc661163b11234e85ec7b0efe1195cce473f234a 5 5 2013-05-08 22:02:46 2013-05-08 22:02:46
  3077. 636 01bd2a980fdbd0773ecfae144155745a67a95694 5 5 2013-05-08 20:49:05 2013-05-08 21:54:27
  3078. 637 d4fb1f81667faddfddfcf9473fa0aca7555bd300 5 5 2013-05-07 16:38:48 2013-05-08 16:47:49
  3079. 638 b323c10c4913154ce798f532dad282454a8c21b4 5 5 2013-05-08 13:20:24 2013-05-08 13:20:24
  3080. 639 b3524ef0bb155f6047c636ae436bc27ee3dd7591 5 5 2013-05-07 19:56:29 2013-05-07 19:56:29
  3081. 640 08362454ab503ce0206ab16b701dba50176b6d62 6 6 2013-05-07 19:37:16 2013-05-07 19:37:16
  3082. 641 e382cd2b70739a5a88cb574e7c379424bedea3c1 6 6 2013-05-06 18:53:44 2013-05-07 09:11:21
  3083. 642 14abaeb0e8042dc27acd1dc8ee81925f639b1423 6 6 2013-04-24 19:50:55 2013-05-07 09:11:21
  3084. 643 fe43393a34eb5e7035e467d398c351a5d4776ef8 6 6 2013-04-24 19:47:56 2013-05-07 09:11:21
  3085. 644 9ef9fcaff6ab7d76e2040c18ae8f7e80676071ff 6 15 2013-05-03 12:57:52 2013-05-04 15:42:36
  3086. 645 99113cb848c883bc6d76933b3c274ff9973a243c 6 15 2013-05-03 11:06:02 2013-05-04 15:42:36
  3087. 646 7315d405a56e65318f56733d12b9eedc64e4d777 6 15 2013-05-03 11:02:42 2013-05-04 15:42:36
  3088. 647 aa640b3cc98f969d8055a05bc46b6ed6b0b660d4 6 15 2013-04-28 09:17:08 2013-04-28 19:27:08
  3089. 648 8230797a67c4c4f80b3a3f74c7c8aecda31fa91b 6 15 2013-04-27 09:37:14 2013-04-28 19:27:08
  3090. 649 44a5cbdbca1d916f08a5c7c1a211499a4b15b8ab 6 15 2013-04-27 09:34:19 2013-04-28 19:27:08
  3091. 650 2b25d82acb2f86f3b9c341b825bc9d251aedbf1f 6 15 2013-03-19 11:55:18 2013-04-28 19:27:08
  3092. 651 e9be2592152286e6f6299850bc0205e0e6c0d8a6 5 5 2013-04-25 18:42:29 2013-04-25 18:42:29
  3093. 652 ba3fe553e7dc446919197616767f5f65d4f0e738 6 6 2013-03-13 08:37:17 2013-04-24 14:07:14
  3094. 653 51857cd696420d18a1274a4ede1faa2534733f7d 6 6 2013-04-23 12:05:36 2013-04-23 12:05:36
  3095. 654 891de2d9ce7db1b5ac870250ea81382347e12bee 6 6 2013-04-22 18:03:09 2013-04-22 18:03:09
  3096. 655 b61eda9e4feb9feba43d51111bf0a4c8857c52b7 6 6 2013-04-22 17:58:11 2013-04-22 17:58:11
  3097. 656 650cf3d10dce7f1f374a9d99de3f9284d74ac313 6 6 2013-04-22 10:55:01 2013-04-22 10:56:58
  3098. 657 e5401e01442b1fc23e4eb87f34bf9012dfbf71ee 6 6 2013-04-21 18:32:08 2013-04-21 18:32:08
  3099. 658 47c6cea51af517107c403d96810fce946825aacc 6 6 2013-04-21 18:10:32 2013-04-21 18:10:32
  3100. 659 e73afd450cffeca374bccf6103e8c17f737f9378 6 6 2013-04-21 15:24:52 2013-04-21 16:57:13
  3101. 660 ec6668ae0da023052812f7d16bd70902fead6a36 6 6 2013-04-18 14:12:40 2013-04-21 16:57:13
  3102. 661 3cc7de2fbc9c818f65b1ba996b39b2b3f4404c3f 6 6 2013-04-08 15:19:11 2013-04-21 16:57:13
  3103. 662 35dcf15de491117a0b4ff118fe8d158869ec5edd 6 6 2013-03-19 09:43:26 2013-04-21 16:57:13
  3104. 663 80ff10842a1f16bd384da7da8a4a663685915b5d 6 6 2013-03-13 16:36:55 2013-04-21 16:57:13
  3105. 664 f559eeda32d1253effba18137fa64f2b461511c7 6 6 2013-03-13 12:54:02 2013-04-21 16:57:13
  3106. 665 f9fa32646c5fc77083fdd9cadf395626334933fe 6 6 2013-03-03 21:20:29 2013-04-21 16:57:13
  3107. 666 298b4a58bdf5dcb64a8d4ef8dd861d42db14b95b 6 6 2013-02-27 17:03:42 2013-04-21 16:57:13
  3108. 667 3ffaced8e9a4d8c1fdeb8434664fe96fb202e364 6 6 2013-02-27 17:03:02 2013-04-21 16:57:13
  3109. 668 12d0126c883b97bf051df688cfd101e82dc7188a 6 6 2013-04-21 15:23:04 2013-04-21 16:57:13
  3110. 669 558e05034da06a37d73f06fea2e54cc34cdba6c5 6 6 2013-02-27 16:15:58 2013-04-21 16:57:13
  3111. 670 e1751b39620a1596a21226519ddef040113df206 6 6 2013-02-27 16:12:50 2013-04-21 16:57:13
  3112. 671 a533c6f25a11683c081d27aab24af3c644e4fc7a 6 6 2013-02-25 11:28:17 2013-04-21 16:57:13
  3113. 672 0fa6f511892025790d247f40d132ee3084fade05 6 6 2013-02-23 15:46:45 2013-04-21 16:57:13
  3114. 673 6bce71fedc9ce12bc25f41f02d6f4dc01a949bd3 6 6 2013-04-08 15:15:40 2013-04-21 16:57:13
  3115. 674 40486c11db3071870ce50267b609cd4403d9ca30 6 6 2013-02-23 14:39:38 2013-04-21 16:57:13
  3116. 675 2a16041cd0d9d0c06e1c563734cb1559f8cb2564 6 6 2013-02-23 14:37:12 2013-04-21 16:57:13
  3117. 676 1b5ca71f631c3aa68fc44e949d82303107f1a11d 6 6 2013-02-23 14:30:50 2013-04-21 16:57:13
  3118. 677 a94f20e0f370c3cd7a021c7079841d5ef3b6b987 6 6 2013-02-23 14:29:02 2013-04-21 16:57:13
  3119. 678 396ccfaceb363ec1b1d0b458e7725264ac85dead 6 6 2013-02-23 14:26:56 2013-04-21 16:57:12
  3120. 679 5fcd1d7e4e03bbfce880f44927df6284b88b834e 6 6 2013-02-21 17:22:41 2013-04-21 16:57:12
  3121. 680 5d234ee4e33b50c0f7083ff3cb4da77b2acb00e2 6 6 2013-02-18 13:45:56 2013-04-21 16:57:12
  3122. 681 6916f84636298949dae099306d1d7c88719b74fa 6 6 2013-02-17 21:27:50 2013-04-21 16:57:12
  3123. 682 e0892183f38932cec0d33408bdfebb290a13f8f3 6 6 2013-02-17 14:38:15 2013-04-21 16:57:12
  3124. 683 f771149aba230c4712c9cb9c6af4ccfea2b7967d 6 6 2013-02-17 20:51:52 2013-04-21 16:57:12
  3125. 684 20b88cb9dd0e55b628d18551442c3a6a01d67871 6 6 2013-02-17 14:36:57 2013-04-21 16:57:12
  3126. 685 79e404229c60f7639c1b8e220a462265eeb3a032 6 6 2013-02-15 15:36:52 2013-04-21 16:57:12
  3127. 686 8379857e734b8db9c9c3f71d786def2ff0f63cc3 6 6 2013-02-15 15:35:16 2013-04-21 16:57:12
  3128. 687 04c77c0e8bce28471ac64d76b9b7b7b8338ddecf 6 6 2013-02-15 15:34:38 2013-04-21 16:57:12
  3129. 688 bc244668c9117cfea63199b0a48952de7fed4537 6 6 2013-02-15 15:33:35 2013-04-21 16:57:12
  3130. 689 c53b11f83c6c9eefe8de5a0952e43aa835d797a2 6 6 2013-02-15 15:28:56 2013-04-21 16:57:12
  3131. 690 500c4575a722982dc6dce5883f79c0180a917959 6 6 2013-02-15 15:28:24 2013-04-21 16:57:12
  3132. 691 ef5fe2975b0db31625e2979a8b2064ddaf90743a 6 6 2013-04-08 15:14:27 2013-04-21 16:57:12
  3133. 692 6c2d499f37201d5f50e49bd5d4215d24382eab69 6 6 2013-02-14 10:51:26 2013-04-21 16:57:12
  3134. 693 f591859dab1410d9efdbc92db2255920eb2360a9 6 6 2013-02-05 16:33:40 2013-04-21 16:57:12
  3135. 694 b8a4e837bdc4c392538df32d03fe1f61ee07a6d7 6 6 2013-02-05 10:55:39 2013-04-21 16:57:12
  3136. 695 8fc6d84cf6519487ac681b86d72e92d1658bf8a3 6 6 2013-01-31 15:36:59 2013-04-21 16:57:12
  3137. 696 0c2bf0fb0b5a74cfc8a066bf19398a61a04f7da4 6 6 2013-01-31 15:18:22 2013-04-21 16:57:12
  3138. 697 95591227347fb6e165ef4c552c0c0ef0b5927e98 6 6 2013-01-31 15:13:11 2013-04-21 16:57:12
  3139. 698 de2bc924293d617aa90df76bec8217a50ec01719 6 6 2013-01-31 15:02:26 2013-04-21 16:57:12
  3140. 699 c7f98bd872d0d958a8d4081451205aca423c6d21 6 6 2013-01-31 12:11:26 2013-04-21 16:57:12
  3141. 700 f01b45908ef6bc15cf07924cfea0d33ecc4191e6 6 6 2013-01-28 14:38:17 2013-04-21 16:57:11
  3142. 701 c40a7dd1f3dc50e74103d917b19eea34863aaf69 6 6 2013-01-28 14:36:13 2013-04-21 16:57:11
  3143. 702 21d35943d9b828a47ef5890c816748f455bec5ea 6 6 2013-01-28 14:35:35 2013-04-21 16:57:11
  3144. 703 c462392560c1075a2dda65ae0c6eaa690f6f118a 6 6 2013-01-28 14:34:04 2013-04-21 16:57:11
  3145. 704 8b30e84657a1851a832f26268ac2bdd03f62d276 6 6 2013-01-28 14:29:26 2013-04-21 16:57:11
  3146. 705 fbd208bb731de6e1fc2bae59931c4a71b5325316 6 6 2013-01-28 14:28:28 2013-04-21 16:57:11
  3147. 706 ec22b6fb699ca5cc9e2f6d9b33257e25d377d76d 6 6 2013-01-28 14:27:42 2013-04-21 16:57:11
  3148. 707 f948560f3b20d270c109834306cca5d4713c4f4e 6 6 2013-01-28 14:25:05 2013-04-21 16:57:11
  3149. 708 06621492c2017d5bc1ae0cf9d3a2482106518ce0 6 6 2013-01-28 14:24:39 2013-04-21 16:57:11
  3150. 709 583ceca3d7db6dafe344748edc268f3226ce221f 6 6 2013-01-28 14:21:33 2013-04-21 16:57:11
  3151. 710 d259975cde10c23285a2ea04c8178693fae57d27 6 6 2013-01-28 14:20:36 2013-04-21 16:57:11
  3152. 711 26b8f2333ca04bfe7e0128d99356a676124d41a5 6 6 2013-01-28 14:18:05 2013-04-21 16:57:11
  3153. 712 bb64283ecbc765dc8b56df53fdfc1fc6d730c507 6 6 2013-01-28 14:16:39 2013-04-21 16:57:11
  3154. 713 5528f133157d80007452a00f148d33e287795a7c 6 6 2013-01-28 14:14:55 2013-04-21 16:57:11
  3155. 714 86f221962b4ced6c5cdebdd414febf85d2565fa4 6 6 2013-01-28 14:11:59 2013-04-21 16:57:11
  3156. 715 c8ad73c531a5f56d28902c3a261854b35c907b7d 6 6 2013-01-28 14:08:52 2013-04-21 16:57:11
  3157. 716 cc679301a437fc4661dd19866c47b2a45d8268e2 6 6 2013-04-08 15:13:11 2013-04-21 16:57:11
  3158. 717 15e1528193583b5001ec831fcc7bc5627a9dc8c4 6 6 2013-01-17 09:58:41 2013-04-21 16:57:11
  3159. 718 1ce94bf1314835bb56f200011163607d5a1f9e55 6 6 2013-04-08 15:09:26 2013-04-21 16:57:11
  3160. 719 d608c034b23d683bdf3afb276b89540d343efaf5 6 6 2013-01-08 09:54:16 2013-04-21 16:57:11
  3161. 720 13d40ca4ed75dd8153d41014c54b7465b40dcfe6 6 6 2013-04-21 15:21:31 2013-04-21 16:57:11
  3162. 721 746ac4496d5e3897f5b98a577ade0e9f5688ee2b 6 6 2013-04-21 15:20:15 2013-04-21 16:57:10
  3163. 722 43b5cd3c6d0e5f45e51e69a561357536f2754b7f 6 6 2013-04-21 15:35:46 2013-04-21 16:57:10
  3164. 723 3b436177c6b8ef3128509610d954933dc6f52417 6 6 2012-12-18 11:14:45 2013-04-21 15:33:33
  3165. 724 c4bcb9c81f9d08893575e5baaf282d84bc9e4e71 6 6 2012-12-18 11:13:23 2013-04-21 15:33:33
  3166. 725 665119764622fcda2f178170418e01070b5e0629 6 6 2013-04-08 15:05:07 2013-04-21 15:33:33
  3167. 726 c41e26804f38429cd8e84199fc5ebd2ed170885e 6 6 2012-12-17 11:01:25 2013-04-21 15:33:33
  3168. 727 3d5b02970a45208e7f53e046ac096ecb5aad54bc 6 6 2012-12-17 10:56:12 2013-04-21 15:33:33
  3169. 728 f2d92aca3cbea01696851f0ac1b3808c8764eff6 6 6 2012-12-12 14:50:21 2013-04-21 15:33:33
  3170. 729 654220379d0b70b77ece0a784e658ea5f477e63d 6 6 2012-12-07 15:16:20 2013-04-21 15:33:33
  3171. 730 dfeb0e54d183787283d02775f6b09e3e603ec870 6 6 2012-12-06 10:08:30 2013-04-21 15:33:33
  3172. 731 d58eaf5ad6891e890ed8aa72f7b57fecabc4e871 6 6 2012-11-27 11:56:49 2013-04-21 15:33:33
  3173. 732 0e56a785b8e1c2eaef8131d47b93b96eed66f3b6 6 6 2012-11-26 15:03:06 2013-04-21 15:33:33
  3174. 733 9648ebf6b04dad5f1736f6aea88e0fff421ffa1d 6 6 2012-12-04 11:38:56 2013-04-21 15:33:33
  3175. 734 2df74970e32fad43ee2f3bbbee8dab216f58ab9a 8 8 2013-04-06 16:12:18 2013-04-08 21:10:38
  3176. 735 78d7849db854f3544d7291cce96a0a4fa6d6843d 6 6 2013-03-27 16:40:00 2013-04-07 21:24:08
  3177. 736 cf0ecdeafb682bd03fba9a5bbc94e125101a5a0f 6 6 2013-04-07 20:50:36 2013-04-07 21:24:08
  3178. 737 78af734b861a1f42a5381aec8e3ec165f280bb25 6 6 2013-04-03 20:02:19 2013-04-07 21:24:08
  3179. 738 1b26661ba838fa7d50128c0ff384bd4494745d87 6 6 2013-04-06 19:33:54 2013-04-07 21:24:08
  3180. 739 d7c4e5eb82937b56968dbb0436d7eb2c3e3fc6dc 6 6 2013-04-06 19:31:14 2013-04-07 21:24:08
  3181. 740 b786f62914c1088657b2fa748cefbe8bc065577e 6 6 2013-03-21 12:01:34 2013-04-07 21:24:08
  3182. 741 15e081a967f44e418a0dc641cece0493cbefc187 6 6 2013-03-16 12:55:18 2013-04-07 16:44:29
  3183. 742 16422e08f5b384a7008f17feac0b6e4b94d95126 6 6 2013-03-16 12:49:53 2013-04-07 16:44:29
  3184. 743 d1cf6cae3d49b888ffd7b50f3a4abca0d5fb7c67 6 6 2013-03-19 15:42:59 2013-04-07 16:44:29
  3185. 744 1b339b6cc2b33cafd1de17a4de44f6e3fbbe3151 6 6 2013-04-05 13:40:58 2013-04-07 16:44:29
  3186. 745 47f8e75e0c52a206d6aa8d3be873a80c4ba8a1c2 6 6 2013-04-06 19:35:40 2013-04-07 16:44:29
  3187. 746 be7613a3fd504423632d13f4cf275a442af159cf 6 6 2013-03-15 16:04:14 2013-04-07 16:44:29
  3188. 747 5395dfd16657cda0d1bc596fe9a3f2ccb41c9fc6 6 6 2013-03-15 14:14:36 2013-04-07 16:44:29
  3189. 748 66f3cb0c2c313c0853ca47ed65763e4ee4e2aa47 5 5 2013-04-04 22:18:47 2013-04-04 22:25:46
  3190. 749 f9cdf012b72bfe21f8c12fedfcfd323ef4f8d6cb 5 5 2013-04-04 22:14:30 2013-04-04 22:24:57
  3191. 750 97f308ceb3bc3c451c038eb99214303702308fda 5 5 2013-04-04 22:09:22 2013-04-04 22:09:22
  3192. 751 969ba42f68538dc9e94469a2909b4ff437181bd3 5 5 2013-04-03 21:09:27 2013-04-03 21:09:27
  3193. 752 fe7be8c6cd24fa72d8c22c33598c5549b41771e9 5 5 2013-03-21 04:25:41 2013-03-21 15:16:29
  3194. 753 9e4b7b5c8cd79cd579c49c13c8b8d39a05a416e0 5 5 2013-03-19 14:47:42 2013-03-21 15:16:29
  3195. 754 55808455116e415921d2fc788ea04df364cb24b0 5 5 2013-03-19 14:44:33 2013-03-21 15:16:29
  3196. 755 257800b3bda50c3c6148d904054ddbcd01c8b5df 5 5 2013-03-19 14:40:27 2013-03-21 15:16:28
  3197. 756 927e2ba833cb0c9ce588b5f59c42bbb246e3e20c 5 5 2013-03-19 14:34:27 2013-03-21 15:16:28
  3198. 757 d0e19bdc29fe54cf282d1c43b605c687407d7391 5 5 2013-03-19 14:24:19 2013-03-20 15:47:55
  3199. 758 c2f68c9b301d0deba484efbf87a9aa2e0fa60e93 5 5 2013-03-19 14:13:49 2013-03-20 15:47:55
  3200. 759 1e040605b631dd172745c0c8d781090595a2fd80 5 5 2013-03-19 13:59:16 2013-03-20 15:47:55
  3201. 760 42cc1c47a4f02f6dedccb619552c55b835800a2e 5 5 2013-03-19 13:37:59 2013-03-20 15:47:55
  3202. 761 687cfc6a95acacd344e1644207f6673d1e60f2a2 5 5 2013-03-19 13:30:38 2013-03-20 15:47:55
  3203. 762 6cb85d0193bbcc65615876202da57bd317373d7c 5 5 2013-03-19 13:30:00 2013-03-20 15:47:55
  3204. 763 ec4ba73a990ff0059755ca0295e77bced3a9993b 6 6 2013-03-13 22:51:56 2013-03-13 23:06:09
  3205. 764 a41b0a30a77bc5ebed4ef9e08251cf5fdf844baf 6 6 2013-03-13 18:06:47 2013-03-13 21:32:27
  3206. 765 677cdd043fcce4397d981ca03e1eb4b416fe2631 6 6 2013-03-05 20:06:21 2013-03-12 21:02:31
  3207. 766 57206a2285c0163fc247ae112cfb32913c8c766e 6 6 2013-02-28 12:08:16 2013-03-12 21:02:31
  3208. 767 38667dc87a03397d3cdbd39d1bfba986b3a41a74 6 6 2013-02-11 15:50:39 2013-03-12 21:02:29
  3209. 768 3d442f95f1cde8d5b0218fe32918ef5b5ea7cbec 6 6 2013-03-12 11:08:50 2013-03-12 14:54:36
  3210. 769 fe7dd8039f8cc045e0a2cda99b504d30bb7edc0c 20 6 2013-03-12 08:46:09 2013-03-12 14:54:36
  3211. 770 a14f5c65bf32ad4543f9d922c083c6d591374a77 6 6 2013-03-12 11:37:23 2013-03-12 11:38:55
  3212. 771 e3cfb5930184ad5a12af2076c1a17b4bf8dad9ae 6 6 2013-03-07 10:47:29 2013-03-11 15:03:40
  3213. 772 370912fdf79724f65f3fc8123c3dd6e818b3d3a4 5 5 2013-03-09 20:13:33 2013-03-10 12:43:39
  3214. 773 af7cb57514e13fe79fd54fe263ca27324046d741 5 5 2013-03-09 20:03:57 2013-03-10 12:43:30
  3215. 774 9a551c8fcaf7b4e97a050ba0d5327e1a5ecbfebc 5 5 2013-03-09 16:42:20 2013-03-10 12:43:22
  3216. 775 f2eb4975d2b739da7e40bbfebcb2b5e9a6d35474 5 5 2013-03-09 14:27:14 2013-03-09 20:41:35
  3217. 776 aba01e1901ee48a4090e3831ef305a58acf13418 5 5 2013-03-09 12:58:55 2013-03-09 20:41:15
  3218. 777 3561093af8f1c54ee6dca119a18fd0e18e3b33e9 5 5 2013-03-09 12:21:15 2013-03-09 13:26:23
  3219. 778 b1733c943fe54770a4ff680028965ed31577412b 6 6 2013-03-05 15:59:05 2013-03-05 19:29:23
  3220. 779 27c7314bc93c4ab2dd5f4346c61d1576a7135d1b 5 5 2013-03-04 21:02:28 2013-03-04 21:32:12
  3221. 780 054dc2fcf0fe1bf06c3971742ca2bea25eb962bd 5 5 2013-03-04 20:56:57 2013-03-04 21:32:12
  3222. 781 a7be9d68aa7267c119f2b5eb38d689cd26d3518c 5 5 2013-03-04 20:41:04 2013-03-04 21:32:12
  3223. 782 c5d5c4073ed135ad041cd29cc6c75795a0140cd4 5 5 2013-03-04 20:02:41 2013-03-04 21:32:12
  3224. 783 23c2f5544f6730f5a9268af6353fbfc68f68a137 8 6 2013-02-16 19:57:37 2013-03-01 12:37:45
  3225. 784 13d3dbbb07d494fc13c9200f11f9f3800d93644b 5 5 2013-02-28 21:44:23 2013-03-01 10:14:51
  3226. 785 7453e7923077db22615d6d0a4095799b7d2e7f2e 5 5 2013-02-27 21:44:21 2013-02-27 21:54:17
  3227. 786 6a3b88adeb5a513c5bc123e50820affb72189a22 5 5 2013-02-26 21:44:19 2013-02-27 21:27:35
  3228. 787 af2eb625caaef6b1a1555c22221dcf8409d3274f 6 6 2013-01-28 11:34:53 2013-02-25 14:45:19
  3229. 788 5185b1f0068e5dd987dc3d36edd15ece4b5f5e01 5 5 2013-02-18 16:17:41 2013-02-18 19:17:12
  3230. 789 06f2fd6f77544608cef0d4af1bbf2b18926b1336 8 8 2013-02-02 17:51:53 2013-02-13 19:35:37
  3231. 790 4eaa04747609e8ed64925347bb0993f1548c270a 8 8 2013-01-12 19:46:45 2013-01-30 11:18:23
  3232. 791 11d11785855d26039bdcfbd34f84b9ccc6cd0e6b 8 8 2013-01-12 19:32:58 2013-01-30 11:18:22
  3233. 792 379538edcad6c7da1da0bdbaf27cde64a4a676f8 6 6 2012-12-05 17:25:14 2013-01-08 11:41:01
  3234. 793 4ccd7bc8bcc60e4b8b0b8b7391c3cc01f8eaddcf 5 5 2012-12-19 08:37:29 2012-12-19 08:38:14
  3235. 794 20e8368c868e8c84f36c3f44a3acb5574a9a28b9 11 5 2012-12-18 14:24:02 2012-12-19 08:38:14
  3236. 795 3b6624af4754f344f766836ba86c2d63c0527a4e 21 21 2012-12-19 08:28:40 2012-12-19 08:28:40
  3237. 796 a1ceebfbd556140a8971ab1a0ceeb932aa1e1725 5 5 2012-12-10 18:49:21 2012-12-11 08:36:27
  3238. 797 8faae259130974e1aec2ea91197191cdbd6ba39d 8 8 2012-11-26 20:20:32 2012-11-26 20:20:32
  3239. 798 79f0a3fe81885619ef12d9f79706e02fe2b8e7e8 5 5 2012-12-10 18:53:15 2012-12-11 08:35:36
  3240. 799 7c12a6990a0cd0258694b983ef3da0d68e03af05 6 6 2012-11-26 11:15:39 2012-11-26 11:48:13
  3241. 800 10f937ab152f85ee2ca7593e89f304c6b9762a01 5 5 2012-12-10 18:43:33 2012-12-11 08:35:18
  3242. 801 a2530c7414d8cd345c93bd2c0a2922996719911e 6 6 2012-11-23 15:19:32 2012-11-26 11:48:13
  3243. 802 0064fd5536c74eb6ca8907b12ab7b0c8dba3e8d7 5 5 2012-12-09 21:09:33 2012-12-10 08:34:48
  3244. 803 83758a8baee39cdc4ee066a4327cf35c7de4169a 6 6 2012-11-26 11:46:15 2012-11-26 11:46:15
  3245. 804 168769803521a4591c344891823aaab7de0bf3a7 6 6 2012-12-04 11:53:52 2012-12-04 12:20:33
  3246. 805 fe9dc1d1d8588863941a196cc8acf957314f5771 6 6 2012-11-19 13:50:49 2012-11-26 11:44:20
  3247. 806 3c5d1e9d87a76d1b814a8438e9218877102b511f 6 6 2012-11-28 16:04:54 2012-12-03 15:51:03
  3248. 807 a3c4c2928f3e61b899eeadbd73b9a934ffbb0925 6 6 2012-11-18 19:30:41 2012-11-26 11:43:17
  3249. 808 3623e1beffb52a8b6b68f1ad5eaa98d1ccee7558 6 6 2012-11-28 15:42:15 2012-12-03 15:51:03
  3250. 809 da484526b35edaa80b35c3abcf61e09562707a42 6 6 2012-11-18 19:19:33 2012-11-26 11:43:17
  3251. 810 761f52e1a9cf497b087a2883669181b5d84d5b17 6 6 2012-11-28 15:34:15 2012-12-03 15:51:03
  3252. 811 1d3ad378d8626ce10bf7ba3d19a92a4b62aac1c7 5 5 2012-11-24 19:36:21 2012-11-25 11:12:15
  3253. 812 c06c9dc1aa9797ea5072f64fa187ded5b5dd21cc 6 6 2012-11-28 15:30:53 2012-12-03 15:51:03
  3254. 813 731eaa07685b05a4b35f54c944946932de9e0177 5 5 2012-11-24 19:35:07 2012-11-25 11:12:09
  3255. 814 ea7aadad4d33664ee9a7ba712f8a14bf5b05f049 6 6 2012-11-28 15:29:40 2012-12-03 15:51:03
  3256. 815 63f4d4aed89f550cdc1d406111fe407368e8d12e 5 5 2012-11-24 19:34:18 2012-11-25 11:12:02
  3257. 816 c87580862a342d80a17b18fdca5a11a9fecc568b 6 6 2012-11-28 14:42:27 2012-12-03 15:51:03
  3258. 817 6956b1039a06d3399f2bf46f69c8f48d08fa20fd 5 5 2012-11-24 13:16:24 2012-11-25 11:11:50
  3259. 818 1dd1be50d01818e08994553c5becabab43292bd7 6 6 2012-11-28 14:33:15 2012-12-03 15:51:03
  3260. 819 4f935e7f9c83b54b10555049a7fda769a80ab68e 5 5 2012-11-24 11:06:41 2012-11-25 11:11:31
  3261. 820 aa544c7706071c84a36af905dda4cbe5cf9a442e 6 6 2012-11-28 14:26:32 2012-12-03 15:51:03
  3262. 821 006e4e8d73803855e7041c9a7b2f0c2916b7da93 5 5 2012-11-24 10:46:15 2012-11-25 11:11:25
  3263. 822 7d41e53bb8f97437bf961ceed02dfc9a38c9b9c5 6 6 2012-11-28 14:23:07 2012-12-03 15:51:03
  3264. 823 10d1f6e09119af6a0b030b0580f0d3899eec6015 6 6 2012-11-17 12:33:22 2012-11-18 19:07:50
  3265. 824 a8a1f14fab6bb1acae0330fa05f13d0cac0c4df1 6 6 2012-11-28 14:21:05 2012-12-03 15:51:03
  3266. 825 9224aa25445e0e7a57561f650d1069b27c9949ca 6 6 2012-11-16 21:06:19 2012-11-18 19:05:53
  3267. 826 b478efc1ffa41732bcefbb190807c6095863c9cd 6 6 2012-11-28 14:06:30 2012-12-03 15:51:03
  3268. 827 ed2dc63288ab89252c7eb169885d045fc34a92a4 6 6 2012-11-16 16:35:32 2012-11-18 19:05:53
  3269. 828 1e29aca6c4d991a1b01510338e8e6eba8869e760 6 6 2012-11-28 14:03:09 2012-12-03 15:51:03
  3270. 829 d9ae2b9de863500ef4911c9e9cc0ba5170728698 6 6 2012-11-16 11:10:20 2012-11-18 19:01:04
  3271. 830 4b912fa1c62c415f62e2733c09831457c081c3c3 6 6 2012-11-28 12:32:53 2012-12-03 15:47:31
  3272. 831 8914ab733d813e7fcb27476d0b96aab91f387e22 6 6 2012-11-12 11:49:56 2012-11-18 19:01:04
  3273. 832 799eb185a62edc208fd554b1ffbf667e36cabc90 5 5 2012-11-03 13:03:26 2012-12-02 21:13:33
  3274. 833 0a3e03eead774e551bdd13e7415b1aae387c8e32 6 6 2012-11-18 17:03:12 2012-11-18 18:58:34
  3275. 834 c38aadec4ead6adf8c8bb5d5a3bd015fc5363ba9 5 5 2012-11-29 20:57:08 2012-11-29 21:51:16
  3276. 835 fb3d86a66415aa215e57c062d0bbb9954296720e 6 6 2012-11-18 09:22:11 2012-11-18 09:22:11
  3277. 836 baabacea49a0e10e39c53d79e5d3808c76bc65ef 5 5 2012-11-27 20:19:51 2012-11-29 21:51:16
  3278. 837 60a98add24ead19b8b058799b4feb5ea7f398622 6 6 2012-11-18 09:20:09 2012-11-18 09:20:09
  3279. 838 e4271d799d78c02d3cc21d2aab010c6e730acfbd 5 5 2012-11-27 21:13:46 2012-11-29 21:51:16
  3280. 839 c1d084afae528a92e0cc4776170578acbe5a9df2 6 6 2012-11-16 20:55:14 2012-11-16 20:58:16
  3281. 840 de6eb5cec0fe57a10c472037f33d5fa52b141033 5 5 2012-11-27 20:59:20 2012-11-29 21:51:16
  3282. 841 a6fb70c06107233c592503b9eb437995837b9f3f 22 6 2012-11-12 23:09:35 2012-11-16 20:45:19
  3283. 842 16ad006fc730deb15a7cae8ffc891f2b78a2be6c 5 5 2012-11-27 20:26:59 2012-11-29 21:51:16
  3284. 843 4117e5c939ccc4efe7976b3570485600179f6ad4 6 6 2012-11-08 20:14:40 2012-11-16 16:30:06
  3285. 844 0dae70537be5dd51bb9e413428ea9f5a8d868bc0 5 5 2012-11-27 20:17:00 2012-11-29 21:51:16
  3286. 845 cd7894f8e4d639c40a46e5b2fb366dcc6ea9f07b 6 6 2012-11-16 10:58:34 2012-11-16 10:58:45
  3287. 846 8ebec44af03197c9679f08afc2b19606c839db99 21 21 2012-11-28 20:41:48 2012-11-28 20:41:48
  3288. 847 483ecf53bf634da8722a8033bb862d4a29284654 6 6 2012-11-12 11:53:56 2012-11-15 10:52:29
  3289. 848 ad0b56b395ba51e0795a7b9c64d24a76ef05c701 21 21 2012-11-28 20:41:37 2012-11-28 20:41:37
  3290. 849 675b907f084e8eaec6526fc82510c312f43829ca 8 8 2012-11-28 19:04:34 2012-11-28 19:08:09
  3291. 850 2197fec7e2e2a30dc249d48608c9fe93c0ccf63e 6 6 2012-11-12 11:40:19 2012-11-15 10:44:25
  3292. 851 6beba0e0baa64396996f8b11c0f62bfca033ed67 8 8 2012-11-28 18:54:05 2012-11-28 19:02:37
  3293. 852 0df60af17707e503eb07296a46b80e6e684d939a 5 5 2012-11-13 20:34:51 2012-11-15 06:46:57
  3294. 853 bc7728ea713a5ee027ebe42f64298bc6faed411b 5 5 2012-11-12 07:45:17 2012-11-12 07:45:17
  3295. 854 d7c8554c2e1476df3009d716d948e8490ffa5088 5 5 2012-11-11 20:59:16 2012-11-12 07:44:52
  3296. 855 11699898f5d66b0ec0b816eee847f057556ef94c 6 6 2012-11-11 21:37:45 2012-11-11 21:37:45
  3297. 856 53c9f4860f613494a433942c3bd0a36f62f6e614 6 6 2012-11-08 20:17:39 2012-11-11 21:33:28
  3298. 857 64976e26d778908832f8cf7a0d4ad548bb8cf1fc 21 21 2012-11-11 21:06:39 2012-11-11 21:06:39
  3299. 858 ba975cdf2383c4a409184c0b679a766a9bb384c8 5 5 2012-11-11 19:42:17 2012-11-11 19:55:50
  3300. 859 f24a4d767a6625872417c3a3ccd80955ede8ed64 6 6 2012-11-08 16:39:47 2012-11-11 20:58:03
  3301. 860 a796dd932533f1a91e50f29f2c2b79e11ec78162 21 21 2012-11-11 09:34:33 2012-11-11 09:34:33
  3302. 861 0e31865fbfab40c42fe280dedc8e04fab54cb651 6 6 2012-11-10 20:54:25 2012-11-11 20:58:03
  3303. 862 d6b8152a1e7623254e182fc5bf1d95bee17cad9c 21 21 2012-11-10 21:27:56 2012-11-10 21:27:56
  3304. 863 fc8921d102f50afd182aea3b1744806c5a610b61 5 5 2012-11-11 09:29:45 2012-11-11 09:29:45
  3305. 864 cd368263500da9e52d19bd1d9943a37b9ca43be2 6 6 2012-11-10 20:44:13 2012-11-11 20:58:03
  3306. 865 adcaf81749b65f62afd1c643ec0623d39823cb4b 5 5 2012-11-06 21:02:17 2012-11-06 21:04:04
  3307. 866 5f0389f4940035fa73f19772f4c5b83936d2ea38 6 6 2012-11-10 15:36:34 2012-11-10 15:36:34
  3308. 867 41942764bb217535887f77fc6ce23eca8d88d829 6 6 2012-11-06 15:14:51 2012-11-06 15:15:05
  3309. 868 a661cdfed9752f3a7a54a31081b6c48f70149c95 6 6 2012-11-08 14:13:43 2012-11-08 14:14:40
  3310. 869 90e4080addf00ac40ce956f65b2a80efee09e5bf 21 21 2012-11-06 13:12:55 2012-11-06 13:12:55
  3311. 870 d5f2689ceae1f295fc77402b037e377288b8b409 6 6 2012-11-08 13:31:46 2012-11-08 13:32:35
  3312. 871 3fbb64efee9eca1000b0801befc0c3fc23369edc 5 5 2012-11-06 08:20:31 2012-11-06 12:15:13
  3313. 872 d3d4190fd9035216e1ab3522e651f04450f26b11 6 6 2012-11-06 08:14:49 2012-11-06 08:17:01
  3314. 873 b80063146a45a1c007b321ee14715fc87692d0c0 6 6 2012-11-08 13:29:58 2012-11-08 13:32:35
  3315. 874 1a5027651f4c34f1b2ab24a5535977c3edfd19b5 5 5 2012-11-06 07:54:19 2012-11-06 12:15:13
  3316. 875 b28c27e0bfee3775d04fe03780142cd79907c807 21 21 2012-11-05 11:39:12 2012-11-05 11:39:12
  3317. 876 4db50925d190f88696c3620f613d230e4892f5eb 6 6 2012-11-08 13:28:57 2012-11-08 13:32:35
  3318. 877 f9d9c5c0434d8f54d11c1bf195f813d7a447fd52 5 5 2012-11-03 12:01:08 2012-11-03 12:27:48
  3319. 878 0d8c2d2c45198775e0b57aa711cc0c45acee26f9 21 21 2012-11-02 11:49:54 2012-11-02 11:49:54
  3320. 879 e58a0e5661c1baf21c175563aea768354d205162 6 6 2012-11-08 13:26:49 2012-11-08 13:32:35
  3321. 880 4c2e0519850c05bceb86ee90b6b83464444e9e56 5 5 2012-11-01 21:22:37 2012-11-01 21:22:37
  3322. 881 2c4ecaa5d0e07ea2d6a10b8f97df2db21a476f63 6 6 2012-11-01 19:28:43 2012-11-01 19:28:43
  3323. 882 7f85f00601a80cba473a44c395dd495e997e137c 6 6 2012-11-08 13:25:36 2012-11-08 13:32:35
  3324. 883 6c63e18b88feb5733ebf590dfb9778941da2d72d 5 5 2012-11-01 21:18:57 2012-11-01 21:18:57
  3325. 884 e1579dc47d08157db67a73a07c36b7dccd4904b6 6 6 2012-11-01 11:30:45 2012-11-01 11:30:45
  3326. 885 f0836a5d4fb68e79cb3548159dcd58a4c5c4ade0 6 6 2012-11-08 13:24:19 2012-11-08 13:32:35
  3327. 886 4490446b5c4eb1dc693b61918bf00a0dfb9e6da3 5 5 2012-11-01 21:15:01 2012-11-01 21:15:20
  3328. 887 94f72eb428cd5c49c9f0356c7561563a40f16f43 21 21 2012-10-31 21:13:00 2012-10-31 21:13:00
  3329. 888 927faf713794c0b3973d0ce2caeddf42dbfb219a 6 6 2012-11-08 13:23:48 2012-11-08 13:32:35
  3330. 889 355c1cc97d26f6f8cb5a30fd5d803872a5ab5744 5 5 2012-11-01 21:13:55 2012-11-01 21:13:55
  3331. 890 067acb0b9389f91fdaa309c015f6198f27a46e01 5 5 2012-10-31 20:20:13 2012-10-31 20:20:13
  3332. 891 783f9c1aa1d9b1e49b31de56e6156ce2a0783492 21 21 2012-10-31 21:12:25 2012-10-31 21:12:25
  3333. 892 0c53efe19ef897e52dd55243da39115a5b653f47 6 6 2012-11-08 13:22:32 2012-11-08 13:32:35
  3334. 893 77e00201d4cfa6e03b51b913b9c386d34bdbc969 5 5 2012-11-01 21:12:22 2012-11-01 21:12:43
  3335. 894 a3e1e08be1e0e0881a33560bdbfd914a71a56b88 6 6 2012-10-31 16:38:36 2012-10-31 16:38:36
  3336. 895 f6d866b8800cdeb29fe4917ed5cd49f50dbc9cbb 5 5 2012-10-31 21:05:07 2012-10-31 21:05:07
  3337. 896 ea2d09337331aae2d244d8f80c129cb86005f87d 6 6 2012-11-07 21:31:30 2012-11-08 13:19:01
  3338. 897 310759e8d4aa295553f484e3ada3c29f933bca9e 5 5 2012-11-01 21:08:53 2012-11-01 21:08:53
  3339. 898 0af93ef9e0192ede13ab21ee406c339b138ad5d2 6 6 2012-10-31 16:37:59 2012-10-31 16:37:59
  3340. 899 d3469ee24653575bb21eb122cd00a5024becb8aa 5 5 2012-10-31 20:54:30 2012-10-31 20:54:30
  3341. 900 5af7c95bdeded8c3ff86588aa523ab906e86619c 21 21 2012-11-07 21:10:57 2012-11-07 21:10:57
  3342. 901 de6cb7516413b269868ec8655ab7935003c07c39 5 5 2012-11-01 21:05:39 2012-11-01 21:06:25
  3343. 902 928e78952f7ba86bde06be41e9c9af87987f4bfe 6 6 2012-10-31 16:36:43 2012-10-31 16:36:43
  3344. 903 4cbe2767afeeaaeb2bf286033783890d7d742b59 5 5 2012-10-31 20:53:33 2012-10-31 20:53:33
  3345. 904 2a947c8ad5cc91b4cf69f8a6fd9ec3b308b92247 5 5 2012-11-06 19:17:50 2012-11-06 19:17:50
  3346. 905 bd20fd62329015b73aee98b31f766fce01521e29 21 21 2012-11-07 21:10:19 2012-11-07 21:10:19
  3347. 906 9c2f66a82c0fe8ab7442347b8dfdc41345c48e74 5 5 2012-11-01 20:55:30 2012-11-01 20:55:30
  3348. 907 30c4f10154f1e787e96d217f7a24aafc9afd2b8e 6 6 2012-10-31 11:41:48 2012-10-31 11:42:52
  3349. 908 7c54841adf68b8be1ac8817d483461e0e0d464bb 5 5 2012-10-31 20:37:32 2012-10-31 20:37:32
  3350. 909 ab5159ff3ab014b368fa28e3e7a2494d2dc7764c 5 5 2012-11-07 20:26:38 2012-11-07 20:29:31
  3351. 910 95cef255873a48ecebf4138574199c8939750a0d 6 6 2012-11-07 10:37:18 2012-11-07 10:37:18
  3352. 911 bb56312c243aa922b0c742c2a85c2d672245db22 5 5 2012-11-01 20:45:47 2012-11-01 20:46:38
  3353. 912 68eb489112e0ee74bd39b220d3479ea90e95cd67 6 6 2012-10-31 11:37:53 2012-10-31 11:42:52
  3354. 913 ff07b466713d8b4d0d19f78f343fea85d0428f0d 5 5 2012-10-31 20:33:03 2012-10-31 20:35:45
  3355. 914 cb944a52a60e072ccd14c26f530a99bf8ccad482 6 6 2012-11-07 09:20:57 2012-11-07 09:20:57
  3356. 915 0f202dcc600ba3b9b6f54f5851231629c7d2841c 6 6 2012-10-31 11:35:31 2012-10-31 11:42:52
  3357. 916 e4f7ec927c3503ea002fc6e0b00e9223b519606c 6 6 2012-10-31 11:33:22 2012-10-31 11:42:52
  3358. 917 ee5c62dd0b534591c940f830da40bc050bdd95d6 21 21 2012-10-30 15:42:24 2012-10-30 15:42:24
  3359. 918 984f12cd7ae4f25f546c8a7dde8d7e83bed3a21d 6 6 2012-10-30 14:09:33 2012-10-30 14:27:25
  3360. 919 20334bce9b391043558337b5b1ece9d35abc851a 23 23 2012-10-30 15:24:11 2012-10-30 15:24:11
  3361. 920 f8dc4dcbf88661b733b724e48a3fc25dc701538b 6 6 2012-10-30 11:44:32 2012-10-30 14:27:25
  3362. 921 40f3baff7cc6da730df87bfc2f6a3909908234e4 6 6 2012-10-30 10:52:32 2012-10-30 14:27:25
  3363. 922 f580dd74f1474b596ae78cfbcf27626b8f8ab63b 21 21 2012-10-30 14:13:19 2012-10-30 14:13:19
  3364. 923 887a216a16abcaac2abf6585f0946b7501e98a01 5 5 2012-10-30 13:56:50 2012-10-30 14:04:25
  3365. 924 5dd5c2d9a4ddb16b912d5e43aed4fcbd55c6ec33 21 21 2012-10-30 13:55:26 2012-10-30 13:55:26
  3366. 925 69102e5e8731375523bdd101465a533720de24c1 6 6 2012-10-29 22:22:39 2012-10-29 22:22:39
  3367. 926 bdc76e5ca09cbe9dbeb08921e7fc178be6193298 5 5 2012-10-30 13:13:41 2012-10-30 13:13:41
  3368. 927 2a0f980689116c3252b380ded55bfda8f9d911db 6 6 2012-10-29 22:17:45 2012-10-29 22:17:45
  3369. 928 e0c9307e53067d8be3f342c720192428a368c667 5 5 2012-10-29 20:20:39 2012-10-29 20:22:22
  3370. 929 6504d278de424061539bd78286dc1f70dae7ef24 6 6 2012-10-29 17:03:54 2012-10-29 17:03:54
  3371. 930 9a3f31db91588b010798e764e26bdda5be2ec9e3 5 5 2012-10-29 20:18:02 2012-10-29 20:22:09
  3372. 931 451eef2fd485bd906801940c565ac01780ddf53a 6 6 2012-10-29 17:03:07 2012-10-29 17:03:07
  3373. 932 4884ab86123f0eeb1dea9c20e3a0481d3fdf7cf8 5 5 2012-10-29 20:08:35 2012-10-29 20:14:23
  3374. 933 089b0403cf897531adbdf6ed8a03f5bf9e49db04 24 24 2012-10-29 15:35:58 2012-10-29 15:35:58
  3375. 934 f0a3141496d591505196022e60a3c3bcd3346c0f 5 5 2012-10-29 19:31:32 2012-10-29 19:36:22
  3376. 935 ae547c0e3dffdc1fe80e172beea6e382a87cbefd 14 14 2012-10-29 12:05:44 2012-10-29 12:05:44
  3377. 936 007b4b53a2a8e9561f5143eff27300ea693ca621 6 6 2012-10-29 09:51:21 2012-10-29 15:28:36
  3378. 937 2f308ec7b9c2d85f6564a4c7504b93574485a063 14 14 2012-10-29 10:17:49 2012-10-29 10:17:49
  3379. 938 016f2149c334ff7dabac98700e74a7e9500e702e 6 6 2012-10-29 12:17:23 2012-10-29 14:19:02
  3380. 939 fc0eac5a4d06208d1e13cc90fc91df224475723a 14 14 2012-10-29 09:46:55 2012-10-29 09:46:55
  3381. 940 fa686f55782c5fc38d8727625060677f3eab89f2 6 6 2012-10-29 12:14:41 2012-10-29 14:18:50
  3382. 941 f33662b6e0f08a0446a251d74f85913da8323708 14 14 2012-10-29 09:43:30 2012-10-29 09:43:30
  3383. 942 a08fa6ef90778627504dad5e2ff0b935cff723ba 6 6 2012-10-29 12:13:11 2012-10-29 14:18:25
  3384. 943 57a886e6352b229991c81e7ba43244ace7e02d76 24 24 2012-10-29 08:59:44 2012-10-29 08:59:44
  3385. 944 3e9d8c845ea84ea6faa354a946fd4c7c42535930 24 24 2012-10-29 11:53:58 2012-10-29 11:53:58
  3386. 945 2959a7ecf01462ec7e5a083b315c5d3741145ab1 5 5 2012-10-29 05:21:53 2012-10-29 05:44:54
  3387. 946 3328eb2b9b709cc8c62ae04e3bd7d23bd8d14e35 24 24 2012-10-29 08:58:37 2012-10-29 08:58:37
  3388. 947 1e4c71aeafb66abeda647c6503f37e70ff3ad86f 5 5 2012-10-29 11:45:27 2012-10-29 11:45:27
  3389. 948 ee37c47f6f6a14afa6912c1cc58a9f49d2a29acd 6 6 2012-10-28 19:51:59 2012-10-28 20:00:38
  3390. 949 aa15bc746d3340bda912a1cc4759b332b9adff55 6 6 2012-10-29 08:52:49 2012-10-29 08:52:49
  3391. 950 3909431417c95773fb3a2ddd83cef63608d5043f 23 23 2012-10-29 00:12:36 2012-10-29 00:24:47
  3392. 951 1fc3b208869e5ce79a84211ab9fa04aa95c5ee45 5 5 2012-10-29 10:42:14 2012-10-29 11:45:11
  3393. 952 b2b78ca013b49c73231bee11674bcdb3edf6d3f2 5 5 2012-10-29 11:45:05 2012-10-29 11:45:05
  3394. 953 4a35ba4f937bc02e8c8c4dc8628e85727753dff3 25 25 2014-05-10 04:18:46 2014-05-10 04:18:46
  3395. 954 d33f21c4f8c8a6cb52e3c0f2bd9bcbafd0e38dad 25 25 2009-03-15 19:54:50 2009-03-15 19:54:50
  3396. 955 95784753bd61158ac026775daf29e5e1a767b438 26 26 2014-05-09 20:22:44 2014-05-09 20:22:44
  3397. 956 603ff2a412784272c5be8496b9bc60065105ce82 25 25 2009-03-15 19:54:25 2009-03-15 19:54:25
  3398. 957 2d96e01d3b53a9d47dd913051b2eb1dc9afb6548 27 5 2013-06-14 12:19:31 2013-06-14 12:19:31
  3399. 958 ff9d89694e308d0c406f6f1a690971a8ea92bf44 5 5 2013-06-13 22:17:30 2013-06-13 22:17:30
  3400. 959 0af8d4c520da4174fed5584aa3f25bd1ccdd56be 5 5 2013-06-13 22:16:44 2013-06-13 22:16:44
  3401. 960 030887f57ff75e9ac1aa2dc9b8328589cd6d882b 5 5 2013-06-13 22:15:41 2013-06-13 22:15:41
  3402. 961 3fda92229bb72cbe48f10acf9e74f089aaa305ec 5 5 2013-06-13 22:13:44 2013-06-13 22:13:44
  3403. 962 b127468796c8dcd4343b350f9bedf45f4da3d4c7 5 5 2013-06-13 22:12:45 2013-06-13 22:12:45
  3404. 963 316682254c81d2ba467a3d7175f75ddd0fd6ad8a 5 5 2013-06-13 22:10:17 2013-06-13 22:10:17
  3405. 964 87314bd8ad2065d4b1dd994411d0cc4670c85b5c 5 5 2013-06-13 22:09:06 2013-06-13 22:09:06
  3406. 965 75140795f18592642582f0d38f249206b2990eab 5 5 2013-06-13 22:02:40 2013-06-13 22:07:48
  3407. 966 15aa00fd0e06bb8c94704b03ecc0294237557cfa 5 5 2013-06-13 22:00:22 2013-06-13 22:07:43
  3408. 967 9aa8c4b8bbd5d262a5b2034653662912d7a19975 5 5 2013-06-13 21:59:21 2013-06-13 22:07:38
  3409. 968 b3beb031480c61055ebce7559ecc799594f7eaec 5 5 2013-06-13 21:57:57 2013-06-13 22:07:31
  3410. 969 bc71dc71aa1b35e0ed6187a6c95b096d160f36a8 5 5 2013-06-13 21:56:54 2013-06-13 22:07:27
  3411. 970 d0958fd198fa0ef61d68341c72d7e4b20c32a5c8 5 5 2013-06-13 21:55:51 2013-06-13 22:07:22
  3412. 971 046d25fa872d8988147ed058df7ce70b05b5aee0 5 5 2013-06-13 21:54:20 2013-06-13 21:54:20
  3413. 972 f38cf6e8f241dcaa0d3e22aff1250eb79df4614b 5 5 2013-06-13 21:52:21 2013-06-13 21:52:21
  3414. \.
  3415.  
  3416.  
  3417. --
  3418. -- Name: commits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  3419. --
  3420.  
  3421. SELECT pg_catalog.setval('commits_id_seq', 972, true);
  3422.  
  3423.  
  3424. --
  3425. -- Data for Name: customchangesets; Type: TABLE DATA; Schema: public; Owner: critic
  3426. --
  3427.  
  3428. COPY customchangesets (changeset, "time") FROM stdin;
  3429. \.
  3430.  
  3431.  
  3432. --
  3433. -- Data for Name: edges; Type: TABLE DATA; Schema: public; Owner: critic
  3434. --
  3435.  
  3436. COPY edges (parent, child) FROM stdin;
  3437. 2 1
  3438. 3 2
  3439. 4 3
  3440. 5 4
  3441. 6 5
  3442. 7 6
  3443. 8 7
  3444. 9 8
  3445. 10 9
  3446. 11 10
  3447. 12 11
  3448. 13 12
  3449. 14 13
  3450. 15 14
  3451. 16 15
  3452. 17 16
  3453. 18 17
  3454. 19 18
  3455. 20 19
  3456. 21 20
  3457. 22 21
  3458. 23 22
  3459. 24 23
  3460. 25 24
  3461. 26 25
  3462. 27 26
  3463. 28 27
  3464. 29 28
  3465. 30 29
  3466. 31 30
  3467. 32 31
  3468. 33 32
  3469. 34 33
  3470. 35 34
  3471. 36 35
  3472. 37 36
  3473. 38 37
  3474. 39 38
  3475. 40 39
  3476. 41 40
  3477. 42 41
  3478. 43 42
  3479. 44 43
  3480. 45 44
  3481. 46 45
  3482. 47 46
  3483. 48 47
  3484. 49 48
  3485. 50 49
  3486. 51 50
  3487. 52 51
  3488. 53 52
  3489. 54 53
  3490. 55 54
  3491. 56 55
  3492. 57 56
  3493. 58 57
  3494. 59 58
  3495. 60 59
  3496. 61 60
  3497. 62 61
  3498. 63 62
  3499. 64 63
  3500. 65 64
  3501. 66 65
  3502. 67 66
  3503. 68 67
  3504. 69 68
  3505. 70 69
  3506. 71 70
  3507. 72 71
  3508. 73 72
  3509. 74 73
  3510. 75 74
  3511. 76 75
  3512. 77 76
  3513. 78 77
  3514. 79 78
  3515. 80 79
  3516. 81 80
  3517. 82 81
  3518. 83 82
  3519. 84 83
  3520. 85 84
  3521. 86 85
  3522. 87 86
  3523. 88 87
  3524. 89 88
  3525. 90 89
  3526. 91 90
  3527. 92 91
  3528. 93 92
  3529. 94 93
  3530. 95 94
  3531. 96 95
  3532. 97 96
  3533. 98 97
  3534. 99 98
  3535. 100 99
  3536. 101 100
  3537. 102 101
  3538. 103 102
  3539. 104 103
  3540. 105 104
  3541. 106 105
  3542. 107 106
  3543. 108 107
  3544. 109 108
  3545. 110 109
  3546. 111 110
  3547. 112 111
  3548. 113 112
  3549. 114 113
  3550. 115 114
  3551. 116 115
  3552. 117 116
  3553. 118 117
  3554. 119 118
  3555. 120 119
  3556. 121 120
  3557. 122 121
  3558. 123 122
  3559. 124 123
  3560. 125 124
  3561. 126 125
  3562. 127 126
  3563. 128 127
  3564. 129 128
  3565. 130 129
  3566. 131 130
  3567. 132 131
  3568. 133 132
  3569. 134 133
  3570. 135 134
  3571. 136 135
  3572. 137 136
  3573. 138 137
  3574. 139 138
  3575. 140 139
  3576. 141 140
  3577. 142 141
  3578. 143 142
  3579. 144 143
  3580. 145 144
  3581. 146 145
  3582. 147 146
  3583. 148 147
  3584. 149 148
  3585. 150 149
  3586. 151 150
  3587. 152 151
  3588. 153 152
  3589. 154 153
  3590. 155 154
  3591. 156 155
  3592. 157 156
  3593. 158 157
  3594. 159 158
  3595. 160 159
  3596. 161 160
  3597. 162 161
  3598. 163 162
  3599. 164 163
  3600. 165 164
  3601. 166 165
  3602. 167 166
  3603. 168 167
  3604. 169 168
  3605. 170 169
  3606. 171 170
  3607. 172 171
  3608. 173 172
  3609. 174 173
  3610. 175 174
  3611. 176 175
  3612. 177 176
  3613. 178 177
  3614. 179 178
  3615. 180 179
  3616. 181 180
  3617. 182 181
  3618. 183 182
  3619. 184 183
  3620. 185 184
  3621. 186 185
  3622. 187 186
  3623. 188 187
  3624. 189 188
  3625. 190 189
  3626. 191 190
  3627. 192 191
  3628. 193 192
  3629. 194 193
  3630. 195 194
  3631. 196 195
  3632. 197 196
  3633. 198 197
  3634. 199 198
  3635. 200 199
  3636. 201 200
  3637. 202 201
  3638. 203 202
  3639. 204 203
  3640. 205 204
  3641. 206 205
  3642. 207 206
  3643. 208 207
  3644. 209 208
  3645. 210 209
  3646. 211 210
  3647. 212 211
  3648. 213 212
  3649. 214 213
  3650. 215 214
  3651. 216 215
  3652. 217 216
  3653. 218 217
  3654. 219 218
  3655. 220 219
  3656. 221 220
  3657. 222 221
  3658. 223 222
  3659. 224 223
  3660. 225 224
  3661. 226 225
  3662. 227 226
  3663. 228 227
  3664. 229 228
  3665. 230 229
  3666. 231 230
  3667. 232 231
  3668. 233 232
  3669. 234 233
  3670. 235 234
  3671. 236 235
  3672. 237 236
  3673. 238 237
  3674. 239 238
  3675. 240 239
  3676. 241 240
  3677. 242 241
  3678. 243 242
  3679. 244 243
  3680. 245 244
  3681. 246 245
  3682. 247 246
  3683. 248 247
  3684. 249 248
  3685. 250 249
  3686. 251 250
  3687. 252 251
  3688. 253 252
  3689. 254 253
  3690. 255 254
  3691. 256 255
  3692. 257 256
  3693. 258 257
  3694. 259 258
  3695. 260 259
  3696. 261 260
  3697. 262 261
  3698. 263 262
  3699. 264 263
  3700. 265 264
  3701. 266 265
  3702. 267 266
  3703. 268 267
  3704. 269 268
  3705. 270 269
  3706. 271 270
  3707. 272 271
  3708. 273 272
  3709. 274 273
  3710. 275 274
  3711. 276 275
  3712. 277 276
  3713. 278 277
  3714. 279 278
  3715. 280 279
  3716. 281 280
  3717. 282 281
  3718. 283 282
  3719. 284 283
  3720. 285 284
  3721. 286 285
  3722. 287 286
  3723. 288 287
  3724. 289 288
  3725. 290 289
  3726. 291 290
  3727. 292 291
  3728. 293 292
  3729. 294 293
  3730. 295 294
  3731. 296 295
  3732. 297 296
  3733. 298 297
  3734. 299 298
  3735. 300 299
  3736. 301 300
  3737. 302 300
  3738. 303 301
  3739. 304 302
  3740. 305 303
  3741. 306 304
  3742. 307 305
  3743. 305 306
  3744. 308 307
  3745. 309 308
  3746. 310 309
  3747. 311 310
  3748. 312 311
  3749. 313 312
  3750. 314 313
  3751. 315 314
  3752. 316 315
  3753. 317 316
  3754. 318 317
  3755. 319 318
  3756. 320 319
  3757. 321 320
  3758. 322 321
  3759. 323 322
  3760. 324 323
  3761. 325 324
  3762. 326 325
  3763. 327 326
  3764. 328 327
  3765. 329 328
  3766. 330 329
  3767. 331 330
  3768. 332 331
  3769. 333 332
  3770. 334 333
  3771. 335 334
  3772. 336 335
  3773. 337 336
  3774. 338 337
  3775. 339 338
  3776. 340 339
  3777. 341 340
  3778. 342 341
  3779. 343 342
  3780. 344 343
  3781. 345 344
  3782. 346 345
  3783. 347 346
  3784. 348 347
  3785. 349 348
  3786. 350 349
  3787. 351 350
  3788. 352 351
  3789. 353 352
  3790. 354 353
  3791. 355 354
  3792. 356 355
  3793. 357 356
  3794. 358 357
  3795. 359 358
  3796. 360 359
  3797. 361 360
  3798. 362 361
  3799. 363 362
  3800. 364 363
  3801. 365 364
  3802. 366 365
  3803. 367 366
  3804. 368 367
  3805. 369 368
  3806. 370 369
  3807. 371 370
  3808. 372 371
  3809. 373 372
  3810. 374 373
  3811. 375 374
  3812. 376 375
  3813. 377 376
  3814. 378 377
  3815. 379 378
  3816. 380 379
  3817. 381 380
  3818. 382 381
  3819. 383 382
  3820. 384 383
  3821. 385 384
  3822. 386 385
  3823. 387 386
  3824. 388 387
  3825. 389 388
  3826. 390 389
  3827. 391 390
  3828. 392 391
  3829. 393 392
  3830. 394 393
  3831. 395 394
  3832. 396 395
  3833. 397 396
  3834. 398 397
  3835. 399 398
  3836. 400 399
  3837. 401 400
  3838. 402 401
  3839. 403 402
  3840. 404 403
  3841. 405 404
  3842. 406 405
  3843. 407 406
  3844. 408 407
  3845. 409 408
  3846. 410 409
  3847. 411 410
  3848. 412 411
  3849. 413 412
  3850. 414 413
  3851. 415 414
  3852. 416 415
  3853. 417 416
  3854. 418 417
  3855. 419 418
  3856. 420 419
  3857. 421 420
  3858. 422 421
  3859. 423 422
  3860. 424 423
  3861. 425 424
  3862. 426 425
  3863. 427 426
  3864. 428 427
  3865. 429 428
  3866. 430 429
  3867. 431 430
  3868. 432 431
  3869. 433 432
  3870. 434 433
  3871. 435 434
  3872. 436 435
  3873. 437 436
  3874. 438 437
  3875. 439 438
  3876. 440 439
  3877. 441 440
  3878. 442 441
  3879. 443 442
  3880. 444 443
  3881. 445 444
  3882. 446 445
  3883. 447 446
  3884. 448 447
  3885. 449 448
  3886. 450 449
  3887. 451 450
  3888. 452 451
  3889. 453 452
  3890. 454 453
  3891. 455 454
  3892. 456 455
  3893. 457 456
  3894. 458 457
  3895. 459 458
  3896. 460 459
  3897. 461 460
  3898. 462 461
  3899. 463 462
  3900. 464 463
  3901. 465 464
  3902. 466 465
  3903. 467 466
  3904. 468 467
  3905. 469 468
  3906. 470 469
  3907. 471 470
  3908. 472 471
  3909. 473 472
  3910. 474 473
  3911. 475 474
  3912. 476 475
  3913. 477 476
  3914. 478 477
  3915. 479 478
  3916. 480 479
  3917. 481 480
  3918. 482 481
  3919. 483 482
  3920. 484 483
  3921. 485 484
  3922. 486 485
  3923. 487 486
  3924. 488 487
  3925. 489 488
  3926. 490 489
  3927. 491 490
  3928. 492 491
  3929. 493 492
  3930. 494 493
  3931. 495 494
  3932. 496 495
  3933. 497 496
  3934. 498 497
  3935. 499 498
  3936. 500 499
  3937. 501 500
  3938. 502 501
  3939. 503 502
  3940. 504 503
  3941. 505 504
  3942. 506 505
  3943. 507 506
  3944. 508 507
  3945. 509 508
  3946. 510 509
  3947. 511 510
  3948. 512 511
  3949. 513 512
  3950. 514 513
  3951. 515 514
  3952. 516 515
  3953. 517 516
  3954. 518 517
  3955. 519 518
  3956. 520 519
  3957. 521 520
  3958. 522 521
  3959. 523 522
  3960. 524 523
  3961. 525 524
  3962. 526 525
  3963. 527 526
  3964. 528 527
  3965. 529 528
  3966. 530 529
  3967. 531 530
  3968. 532 531
  3969. 533 532
  3970. 534 533
  3971. 535 534
  3972. 536 535
  3973. 537 536
  3974. 538 537
  3975. 539 538
  3976. 540 539
  3977. 541 540
  3978. 542 541
  3979. 543 542
  3980. 544 543
  3981. 545 544
  3982. 546 545
  3983. 547 546
  3984. 548 547
  3985. 549 548
  3986. 550 549
  3987. 551 550
  3988. 552 551
  3989. 553 552
  3990. 554 553
  3991. 555 554
  3992. 556 555
  3993. 557 556
  3994. 558 557
  3995. 559 558
  3996. 560 559
  3997. 561 560
  3998. 562 561
  3999. 563 562
  4000. 564 563
  4001. 565 564
  4002. 566 565
  4003. 567 566
  4004. 568 567
  4005. 569 568
  4006. 570 569
  4007. 571 570
  4008. 572 571
  4009. 573 572
  4010. 574 573
  4011. 575 574
  4012. 576 575
  4013. 577 576
  4014. 578 577
  4015. 579 578
  4016. 580 579
  4017. 581 580
  4018. 582 581
  4019. 583 582
  4020. 584 583
  4021. 585 584
  4022. 586 585
  4023. 587 586
  4024. 588 587
  4025. 589 588
  4026. 590 589
  4027. 591 590
  4028. 592 591
  4029. 593 592
  4030. 594 593
  4031. 595 594
  4032. 596 595
  4033. 597 596
  4034. 598 597
  4035. 599 598
  4036. 600 599
  4037. 601 600
  4038. 602 601
  4039. 603 602
  4040. 604 603
  4041. 605 604
  4042. 606 605
  4043. 607 606
  4044. 608 607
  4045. 609 608
  4046. 610 609
  4047. 611 610
  4048. 612 611
  4049. 613 612
  4050. 614 613
  4051. 615 614
  4052. 616 615
  4053. 617 616
  4054. 618 617
  4055. 619 618
  4056. 620 619
  4057. 621 620
  4058. 622 621
  4059. 623 622
  4060. 624 623
  4061. 625 624
  4062. 626 625
  4063. 627 626
  4064. 628 627
  4065. 629 628
  4066. 630 629
  4067. 631 630
  4068. 632 631
  4069. 633 632
  4070. 634 633
  4071. 635 634
  4072. 636 635
  4073. 637 636
  4074. 638 637
  4075. 639 638
  4076. 640 639
  4077. 641 640
  4078. 642 641
  4079. 643 642
  4080. 644 643
  4081. 645 644
  4082. 646 645
  4083. 647 646
  4084. 648 647
  4085. 649 648
  4086. 650 649
  4087. 651 650
  4088. 652 651
  4089. 653 652
  4090. 654 653
  4091. 655 654
  4092. 656 655
  4093. 657 656
  4094. 658 657
  4095. 659 658
  4096. 660 659
  4097. 661 660
  4098. 662 661
  4099. 663 662
  4100. 664 663
  4101. 665 664
  4102. 666 665
  4103. 667 666
  4104. 668 667
  4105. 669 668
  4106. 670 669
  4107. 671 670
  4108. 672 671
  4109. 673 672
  4110. 674 673
  4111. 675 674
  4112. 676 675
  4113. 677 676
  4114. 678 677
  4115. 679 678
  4116. 680 679
  4117. 681 680
  4118. 682 681
  4119. 683 682
  4120. 684 683
  4121. 685 684
  4122. 686 685
  4123. 687 686
  4124. 688 687
  4125. 689 688
  4126. 690 689
  4127. 691 690
  4128. 692 691
  4129. 693 692
  4130. 694 693
  4131. 695 694
  4132. 696 695
  4133. 697 696
  4134. 698 697
  4135. 699 698
  4136. 700 699
  4137. 701 700
  4138. 702 701
  4139. 703 702
  4140. 704 703
  4141. 705 704
  4142. 706 705
  4143. 707 706
  4144. 708 707
  4145. 709 708
  4146. 710 709
  4147. 711 710
  4148. 712 711
  4149. 713 712
  4150. 714 713
  4151. 715 714
  4152. 716 715
  4153. 717 716
  4154. 718 717
  4155. 719 718
  4156. 720 719
  4157. 721 720
  4158. 722 721
  4159. 723 722
  4160. 724 723
  4161. 725 724
  4162. 726 725
  4163. 727 726
  4164. 728 727
  4165. 729 728
  4166. 730 729
  4167. 731 730
  4168. 732 731
  4169. 733 732
  4170. 734 733
  4171. 735 734
  4172. 736 735
  4173. 737 736
  4174. 738 737
  4175. 739 738
  4176. 740 739
  4177. 741 740
  4178. 742 741
  4179. 743 742
  4180. 744 743
  4181. 745 744
  4182. 746 745
  4183. 747 746
  4184. 748 747
  4185. 749 748
  4186. 750 749
  4187. 751 750
  4188. 752 751
  4189. 753 752
  4190. 754 753
  4191. 755 754
  4192. 756 755
  4193. 757 756
  4194. 758 757
  4195. 759 758
  4196. 760 759
  4197. 761 760
  4198. 762 761
  4199. 763 762
  4200. 764 763
  4201. 765 764
  4202. 766 765
  4203. 767 766
  4204. 768 767
  4205. 769 768
  4206. 770 769
  4207. 771 770
  4208. 772 771
  4209. 773 772
  4210. 774 773
  4211. 775 774
  4212. 776 775
  4213. 777 776
  4214. 778 777
  4215. 779 778
  4216. 780 779
  4217. 781 780
  4218. 782 781
  4219. 783 782
  4220. 784 783
  4221. 785 784
  4222. 786 785
  4223. 787 786
  4224. 788 787
  4225. 789 788
  4226. 790 789
  4227. 791 790
  4228. 792 791
  4229. 793 792
  4230. 794 793
  4231. 795 794
  4232. 796 795
  4233. 797 795
  4234. 798 796
  4235. 799 797
  4236. 800 798
  4237. 801 799
  4238. 802 800
  4239. 803 801
  4240. 804 802
  4241. 805 803
  4242. 806 804
  4243. 807 805
  4244. 808 806
  4245. 809 807
  4246. 810 808
  4247. 811 809
  4248. 812 810
  4249. 813 811
  4250. 814 812
  4251. 815 813
  4252. 816 814
  4253. 817 815
  4254. 818 816
  4255. 819 817
  4256. 820 818
  4257. 821 819
  4258. 822 820
  4259. 823 821
  4260. 824 822
  4261. 825 823
  4262. 826 824
  4263. 827 825
  4264. 828 826
  4265. 829 827
  4266. 830 828
  4267. 831 829
  4268. 832 830
  4269. 833 831
  4270. 834 832
  4271. 835 833
  4272. 836 834
  4273. 837 835
  4274. 838 836
  4275. 839 837
  4276. 840 838
  4277. 841 839
  4278. 842 840
  4279. 843 841
  4280. 844 842
  4281. 845 843
  4282. 846 844
  4283. 847 845
  4284. 848 846
  4285. 849 846
  4286. 850 847
  4287. 851 848
  4288. 799 848
  4289. 799 849
  4290. 852 850
  4291. 799 851
  4292. 853 852
  4293. 854 853
  4294. 855 854
  4295. 856 855
  4296. 857 856
  4297. 858 857
  4298. 859 857
  4299. 860 858
  4300. 861 859
  4301. 862 860
  4302. 863 860
  4303. 864 861
  4304. 865 862
  4305. 866 862
  4306. 862 863
  4307. 860 864
  4308. 867 865
  4309. 868 866
  4310. 869 867
  4311. 870 868
  4312. 871 869
  4313. 872 869
  4314. 873 870
  4315. 874 871
  4316. 875 872
  4317. 876 873
  4318. 872 874
  4319. 877 875
  4320. 878 875
  4321. 879 876
  4322. 878 877
  4323. 880 878
  4324. 881 878
  4325. 882 879
  4326. 883 880
  4327. 884 881
  4328. 885 882
  4329. 886 883
  4330. 887 884
  4331. 888 885
  4332. 889 886
  4333. 890 887
  4334. 891 887
  4335. 892 888
  4336. 893 889
  4337. 894 890
  4338. 895 891
  4339. 894 891
  4340. 896 892
  4341. 897 893
  4342. 898 894
  4343. 899 895
  4344. 900 896
  4345. 901 897
  4346. 902 898
  4347. 903 899
  4348. 904 900
  4349. 905 900
  4350. 906 901
  4351. 907 902
  4352. 908 903
  4353. 867 904
  4354. 909 905
  4355. 910 905
  4356. 911 906
  4357. 912 907
  4358. 913 908
  4359. 867 909
  4360. 914 910
  4361. 881 911
  4362. 915 912
  4363. 894 913
  4364. 867 914
  4365. 916 915
  4366. 917 916
  4367. 918 917
  4368. 919 917
  4369. 920 918
  4370. 918 919
  4371. 921 920
  4372. 922 921
  4373. 923 922
  4374. 924 922
  4375. 924 923
  4376. 925 924
  4377. 926 924
  4378. 927 925
  4379. 928 926
  4380. 929 927
  4381. 930 928
  4382. 931 929
  4383. 932 930
  4384. 933 931
  4385. 934 932
  4386. 935 933
  4387. 936 933
  4388. 929 934
  4389. 937 935
  4390. 938 936
  4391. 939 937
  4392. 940 938
  4393. 941 939
  4394. 942 940
  4395. 943 941
  4396. 944 942
  4397. 945 943
  4398. 946 943
  4399. 943 944
  4400. 947 944
  4401. 948 945
  4402. 949 946
  4403. 950 946
  4404. 951 947
  4405. 948 949
  4406. 948 950
  4407. 952 951
  4408. 943 952
  4409. 954 953
  4410. 955 953
  4411. 956 954
  4412. 954 955
  4413. 958 957
  4414. 959 958
  4415. 960 959
  4416. 961 960
  4417. 962 961
  4418. 963 962
  4419. 964 963
  4420. 965 964
  4421. 966 965
  4422. 967 966
  4423. 968 967
  4424. 969 968
  4425. 970 969
  4426. 971 970
  4427. 972 971
  4428. \.
  4429.  
  4430.  
  4431. --
  4432. -- Data for Name: extensionfilterhookcommits; Type: TABLE DATA; Schema: public; Owner: critic
  4433. --
  4434.  
  4435. COPY extensionfilterhookcommits (event, commit) FROM stdin;
  4436. \.
  4437.  
  4438.  
  4439. --
  4440. -- Data for Name: extensionfilterhookevents; Type: TABLE DATA; Schema: public; Owner: critic
  4441. --
  4442.  
  4443. COPY extensionfilterhookevents (id, filter, review, uid, data) FROM stdin;
  4444. \.
  4445.  
  4446.  
  4447. --
  4448. -- Name: extensionfilterhookevents_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4449. --
  4450.  
  4451. SELECT pg_catalog.setval('extensionfilterhookevents_id_seq', 1, false);
  4452.  
  4453.  
  4454. --
  4455. -- Data for Name: extensionfilterhookfiles; Type: TABLE DATA; Schema: public; Owner: critic
  4456. --
  4457.  
  4458. COPY extensionfilterhookfiles (event, file) FROM stdin;
  4459. \.
  4460.  
  4461.  
  4462. --
  4463. -- Data for Name: extensionfilterhookroles; Type: TABLE DATA; Schema: public; Owner: critic
  4464. --
  4465.  
  4466. COPY extensionfilterhookroles (role, name, title, role_description, data_description) FROM stdin;
  4467. \.
  4468.  
  4469.  
  4470. --
  4471. -- Data for Name: extensionhookfilters; Type: TABLE DATA; Schema: public; Owner: critic
  4472. --
  4473.  
  4474. COPY extensionhookfilters (id, uid, extension, repository, name, path, data) FROM stdin;
  4475. \.
  4476.  
  4477.  
  4478. --
  4479. -- Name: extensionhookfilters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4480. --
  4481.  
  4482. SELECT pg_catalog.setval('extensionhookfilters_id_seq', 1, false);
  4483.  
  4484.  
  4485. --
  4486. -- Data for Name: extensioninjectroles; Type: TABLE DATA; Schema: public; Owner: critic
  4487. --
  4488.  
  4489. COPY extensioninjectroles (role, path) FROM stdin;
  4490. \.
  4491.  
  4492.  
  4493. --
  4494. -- Data for Name: extensioninstalls; Type: TABLE DATA; Schema: public; Owner: critic
  4495. --
  4496.  
  4497. COPY extensioninstalls (id, uid, extension, version) FROM stdin;
  4498. \.
  4499.  
  4500.  
  4501. --
  4502. -- Name: extensioninstalls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4503. --
  4504.  
  4505. SELECT pg_catalog.setval('extensioninstalls_id_seq', 1, false);
  4506.  
  4507.  
  4508. --
  4509. -- Data for Name: extensionlog; Type: TABLE DATA; Schema: public; Owner: critic
  4510. --
  4511.  
  4512. COPY extensionlog (extension, uid, category, "time", text) FROM stdin;
  4513. \.
  4514.  
  4515.  
  4516. --
  4517. -- Data for Name: extensionpageroles; Type: TABLE DATA; Schema: public; Owner: critic
  4518. --
  4519.  
  4520. COPY extensionpageroles (role, path) FROM stdin;
  4521. \.
  4522.  
  4523.  
  4524. --
  4525. -- Data for Name: extensionprocesscommitsroles; Type: TABLE DATA; Schema: public; Owner: critic
  4526. --
  4527.  
  4528. COPY extensionprocesscommitsroles (role) FROM stdin;
  4529. \.
  4530.  
  4531.  
  4532. --
  4533. -- Data for Name: extensionroles; Type: TABLE DATA; Schema: public; Owner: critic
  4534. --
  4535.  
  4536. COPY extensionroles (id, version, script, function) FROM stdin;
  4537. \.
  4538.  
  4539.  
  4540. --
  4541. -- Name: extensionroles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4542. --
  4543.  
  4544. SELECT pg_catalog.setval('extensionroles_id_seq', 1, false);
  4545.  
  4546.  
  4547. --
  4548. -- Data for Name: extensions; Type: TABLE DATA; Schema: public; Owner: critic
  4549. --
  4550.  
  4551. COPY extensions (id, author, name) FROM stdin;
  4552. \.
  4553.  
  4554.  
  4555. --
  4556. -- Name: extensions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4557. --
  4558.  
  4559. SELECT pg_catalog.setval('extensions_id_seq', 1, false);
  4560.  
  4561.  
  4562. --
  4563. -- Data for Name: extensionstorage; Type: TABLE DATA; Schema: public; Owner: critic
  4564. --
  4565.  
  4566. COPY extensionstorage (extension, uid, key, text) FROM stdin;
  4567. \.
  4568.  
  4569.  
  4570. --
  4571. -- Data for Name: extensionversions; Type: TABLE DATA; Schema: public; Owner: critic
  4572. --
  4573.  
  4574. COPY extensionversions (id, extension, name, sha1) FROM stdin;
  4575. \.
  4576.  
  4577.  
  4578. --
  4579. -- Name: extensionversions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4580. --
  4581.  
  4582. SELECT pg_catalog.setval('extensionversions_id_seq', 1, false);
  4583.  
  4584.  
  4585. --
  4586. -- Data for Name: externalusers; Type: TABLE DATA; Schema: public; Owner: critic
  4587. --
  4588.  
  4589. COPY externalusers (id, uid, provider, account, email, token) FROM stdin;
  4590. \.
  4591.  
  4592.  
  4593. --
  4594. -- Name: externalusers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4595. --
  4596.  
  4597. SELECT pg_catalog.setval('externalusers_id_seq', 1, false);
  4598.  
  4599.  
  4600. --
  4601. -- Data for Name: files; Type: TABLE DATA; Schema: public; Owner: critic
  4602. --
  4603.  
  4604. COPY files (id, path) FROM stdin;
  4605. \.
  4606.  
  4607.  
  4608. --
  4609. -- Name: files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4610. --
  4611.  
  4612. SELECT pg_catalog.setval('files_id_seq', 1, false);
  4613.  
  4614.  
  4615. --
  4616. -- Data for Name: fileversions; Type: TABLE DATA; Schema: public; Owner: critic
  4617. --
  4618.  
  4619. COPY fileversions (changeset, file, old_sha1, new_sha1, old_mode, new_mode) FROM stdin;
  4620. \.
  4621.  
  4622.  
  4623. --
  4624. -- Data for Name: filters; Type: TABLE DATA; Schema: public; Owner: critic
  4625. --
  4626.  
  4627. COPY filters (id, uid, repository, path, type, delegate) FROM stdin;
  4628. \.
  4629.  
  4630.  
  4631. --
  4632. -- Name: filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4633. --
  4634.  
  4635. SELECT pg_catalog.setval('filters_id_seq', 1, false);
  4636.  
  4637.  
  4638. --
  4639. -- Data for Name: gitusers; Type: TABLE DATA; Schema: public; Owner: critic
  4640. --
  4641.  
  4642. COPY gitusers (id, email, fullname) FROM stdin;
  4643. 1 jl@opera.com Jens Widell
  4644. 2 jl@critic-review.org Jens Widell
  4645. 3 grubbyfans@gmail.com HUANG Wei
  4646. 4 pni@thule.no Petter Nilsen
  4647. 5 martin@minimum.se Martin Olsson
  4648. 6 jl@opera.com Jens Lindstrom
  4649. 7 manishsmail@gmail.com Manish Goregaokar
  4650. 8 rchlodnicki@opera.com Rafal Chlodnicki
  4651. 9 rchl2k@gmail.com Rafał Chłodnicki
  4652. 10 jl@critic-review.org Jens Lindstrom
  4653. 11 ohrn@opera.com Fredrik Öhrn
  4654. 12 ato@mozilla.com Andreas Tolfsen
  4655. 13 felix.ekblom@gmail.com Felix Ekblom
  4656. 14 bratell@lysator.liu.se Daniel Bratell
  4657. 15 jl@critic-review.org Jens Lindström
  4658. 16 jacob@jacobrask.net Jacob Rask
  4659. 17 ryan.fowler@singlewire.com Ryan Fowler
  4660. 18 pengphy@gmail.com Pengfei Xue
  4661. 19 jherland@cisco.com Johan Herland
  4662. 20 peter@softwolves.pp.se Peter Krefting
  4663. 21 jl@opera.com Jens Lindström
  4664. 22 jl@sloth.whyi.org Jens Lindstrom
  4665. 23 odin.omdal@gmail.com Odin Hørthe Omdal
  4666. 24 jl@sloth.whyi.org Jens Lindström
  4667. 25 johnw@newartisans.com John Wiegley
  4668. 26 david.hofer@gmail.com David Hofer
  4669. 27 ประเทศจีน@a.com ประเทศจีน
  4670. \.
  4671.  
  4672.  
  4673. --
  4674. -- Name: gitusers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4675. --
  4676.  
  4677. SELECT pg_catalog.setval('gitusers_id_seq', 27, true);
  4678.  
  4679.  
  4680. --
  4681. -- Data for Name: knownremotes; Type: TABLE DATA; Schema: public; Owner: critic
  4682. --
  4683.  
  4684. COPY knownremotes (url, pushing) FROM stdin;
  4685. \.
  4686.  
  4687.  
  4688. --
  4689. -- Data for Name: lockedreviews; Type: TABLE DATA; Schema: public; Owner: critic
  4690. --
  4691.  
  4692. COPY lockedreviews (review) FROM stdin;
  4693. \.
  4694.  
  4695.  
  4696. --
  4697. -- Data for Name: mergebases; Type: TABLE DATA; Schema: public; Owner: critic
  4698. --
  4699.  
  4700. COPY mergebases (commit, mergebase) FROM stdin;
  4701. \.
  4702.  
  4703.  
  4704. --
  4705. -- Data for Name: mergereplays; Type: TABLE DATA; Schema: public; Owner: critic
  4706. --
  4707.  
  4708. COPY mergereplays (original, replay) FROM stdin;
  4709. \.
  4710.  
  4711.  
  4712. --
  4713. -- Data for Name: newsitems; Type: TABLE DATA; Schema: public; Owner: critic
  4714. --
  4715.  
  4716. COPY newsitems (id, date, text) FROM stdin;
  4717. \.
  4718.  
  4719.  
  4720. --
  4721. -- Name: newsitems_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  4722. --
  4723.  
  4724. SELECT pg_catalog.setval('newsitems_id_seq', 1, false);
  4725.  
  4726.  
  4727. --
  4728. -- Data for Name: newsread; Type: TABLE DATA; Schema: public; Owner: critic
  4729. --
  4730.  
  4731. COPY newsread (item, uid) FROM stdin;
  4732. \.
  4733.  
  4734.  
  4735. --
  4736. -- Data for Name: oauthstates; Type: TABLE DATA; Schema: public; Owner: critic
  4737. --
  4738.  
  4739. COPY oauthstates (state, url, "time") FROM stdin;
  4740. \.
  4741.  
  4742.  
  4743. --
  4744. -- Data for Name: preferences; Type: TABLE DATA; Schema: public; Owner: critic
  4745. --
  4746.  
  4747. COPY preferences (item, type, description, per_system, per_user, per_repository, per_filter) FROM stdin;
  4748. comment.diff.contextLines integer Default number of context lines added to diffs when displaying comment chains. Can be overridden by 'context' URI parameter. t t f f
  4749. commit.diff.collapseSimpleHunks boolean When a hunk in a diff contains only deleted or only inserted lines, collapse the "other" side, so that the hunk is displayed as a single wide column. NOT FULLY FUNCTIONAL! t t f f
  4750. commit.diff.compactMode boolean Generate more compact HTML for diffs, and generate some HTML on-demand client-side. Faster download and initial rendering, and slower interaction. t t f f
  4751. commit.diff.contextLines integer Default number of context lines added to diffs when displaying commits. Can be overridden by 'context' URI parameter. t t f f
  4752. commit.diff.highlightIllegalWhitespace boolean Use an angry red color scheme for illegal whitespace (trailing whitespace or tabs in files with "intent-tabs-mode: nil".) t t f f
  4753. commit.diff.rulerColumn integer The column at which a ruler is shown. Can be set to 0 to disable the ruler. t t t f
  4754. commit.diff.visualTabs boolean Replace tab characters with U+2192 (RIGHTWARDS ARROW) styled to the correct width (taking the file's Emacs mode-line into account.) t t f f
  4755. commit.expandAllFiles boolean On the 'showcommit' page, expand the diffs in all files on page load. t t f f
  4756. commit.expandFilesLimit integer If 'commit.expandAllFiles' is enabled, and this limit is non-zero, all files are initially collapsed if the diff contains changes in more files than this limit. t t f f
  4757. dashboard.defaultGroups string Review groups to show on the dashboard by default. Available groups are owned, draft, active, watched, open and closed. t t f f
  4758. debug.enabled boolean Enable debugging preferences. t t f f
  4759. debug.extensions.customProcessCommits boolean Enable button for performing installed ProcessCommits hooks on arbitrary sets of commits for testing. t t f f
  4760. debug.profiling.abortChanges boolean Enable profiling of /abortchanges. t t f f
  4761. debug.profiling.databaseQueries boolean Enable profiling of database queries. t t f f
  4762. debug.profiling.pageGeneration boolean Enable profiling of generation of various pages. Results are emitted as a comment at the end of the HTML. t t f f
  4763. debug.profiling.submitChanges boolean Enable profiling of /submitchanges. t t f f
  4764. defaultPage string The default page displayed when accessing the system. t t f f
  4765. defaultRepository string Name of default repository. In situations where the repository is not implied, this is the one that is used, or preferred. t t f f
  4766. email.activated boolean Must be enabled before the system sends any emails to the user. t t f f
  4767. email.comment.contextLines integer Default number of context lines added to code excerpts when displaying comment threads in emails. t t f f
  4768. email.enableAssociationRecipients boolean Add phony recipients to review emails representing your associations with the review. t t t f
  4769. email.ignoreOwnChanges boolean Don't send emails about own changes (reviewing, commits added to reviews and rebased reviews.) t t f f
  4770. email.lineLength integer Maximum line length in emails sent. Plain text will be reflowed to adhere to this. Diffs and other non-prose items are never reflowed. t t f f
  4771. email.listId string Identifier used to construct a List-Id header for review emails. Used for the $id in "<$id.$hostname>" in the header value. t t t f
  4772. email.newReview.diff.contextLines integer Number of context lines added to diffs in the email sent when a new review is submitted. t t f f
  4773. email.newReview.diff.maxLines integer Maximum number of lines of diffs to include in the email sent when a new review is submitted. If exceeded, no diffs are included at all. t t f f
  4774. email.newReview.displayCommits boolean Include a list of all commits to be reviewed in the email sent when a new review is submitted. t t f f
  4775. email.newReview.displayDiffs boolean Include diffs of each commit to be reviewed in the email sent when a new review is submitted. t t f f
  4776. email.newReview.displayReviewers boolean Include a list of all assigned reviewers in the email sent when a new review is submitted. t t f f
  4777. email.newReview.displayStats boolean Include --stat output for commits added to the review. t t f f
  4778. email.newReview.displayWatchers boolean Include a list of all additional watchers in the email sent when a new review is submitted. t t f f
  4779. email.newReview.stats.maxLines integer Maximum number of lines of commit stats to include in the email sent when a review is submitted. If exceeded, no stats are included at all. t t f f
  4780. email.subjectLine.newReview string Python format string for subject line of email sent for newly created reviews. t t f f
  4781. email.subjectLine.newishReview string Python format string for subject line of email sent for new(ish) reviews. t t f f
  4782. email.subjectLine.pingedReview string Python format string for subject line of email sent when someone pings a review. t t f f
  4783. email.subjectLine.updatedReview.assignmentsChanged string Python format string for subject line of email sent when someone changes review assignments. t t f f
  4784. email.subjectLine.updatedReview.commitsPushed string Python format string for subject line of email sent when someone pushes additional commits to a review. t t f f
  4785. email.subjectLine.updatedReview.parentFiltersApplied string Python format string for subject line of email sent when someone applies parent repository filters to a review. t t f f
  4786. email.subjectLine.updatedReview.reviewRebased string Python format string for subject line of email sent when someone rebases a review branch. t t f f
  4787. email.subjectLine.updatedReview.submittedChanges string Python format string for subject line of email sent when someone submits changes to a review. t t f f
  4788. email.updatedReview.commentThreading boolean Send emails containing comments so that comment threads form email threads. This will increase the number of emails sent from Critic to the user. t t f f
  4789. email.updatedReview.diff.contextLines integer Number of context lines added to diffs in the email sent when a review is updated. t t f f
  4790. email.updatedReview.diff.maxLines integer Maximum number of lines of diffs to include in the email sent when a review is updated. If exceeded, no diffs are included at all. t t f f
  4791. email.updatedReview.displayCommits boolean Include a list of all new commits to be reviewed in the email sent when a review is updated. t t f f
  4792. email.updatedReview.displayStats boolean Include --stat output for commits added to the review. t t f f
  4793. email.updatedReview.quotedComments string Selection of comments in a comment thread that are quoted when new replies are submitted. t t f f
  4794. email.updatedReview.relevantChangesOnly boolean Only generate emails about reviewed files and written comments that are relevant. t t f f
  4795. email.updatedReview.stats.maxLines integer Maximum number of lines of commit stats to include in the email sent when a review is updated. If exceeded, no stats are included at all. t t f f
  4796. email.urlType string Type of URLs used in emails. t t f f
  4797. repository.urlType string Type of repository URL to display. t t f f
  4798. review.applyUpstreamFilters boolean If enabled, filters from upstream repositories are applied when creating review via push. t t f f
  4799. review.branchArchiveDelay.closed integer If non-zero, archive review branches belonging to closed reviews this number of days after the review was (last) closed. t t t f
  4800. review.branchArchiveDelay.dropped integer If non-zero, archive review branches belonging to dropped reviews this number of days after the review was (last) dropped. t t t f
  4801. review.createViaPush boolean If enabled, reviews can be requested by pushing a new branch whose name starts with "r/" to the repository. t t f f
  4802. review.defaultOptOut boolean Opt out of receiving review emails (except for "New review" emails) by default. t t t t
  4803. review.dropAnyReview boolean Show the "Drop Review" button on the front-page of every review, instead of only those you own. t t f f
  4804. review.pingAnyReview boolean Show the "Ping Review" button on the front-page of every review, instead of only those you own. t t f f
  4805. review.updateCheckInterval integer Check for updates of reviews every N seconds while displaying review front pages. If zero, the check is disabled. t t f f
  4806. review.useMustRevalidate boolean Deliver review front-pages with "Cache-Control: must-revalidate" to prevent history navigation to stale versions. t t f f
  4807. style.defaultFont string Font setting applied to the BODY element on every page. t t f f
  4808. style.sourceFont string Font setting applied to source code text in diff display. t t f f
  4809. style.tutorialFont string Font setting applied to tutorial text. t t f f
  4810. timezone string Timezone to present (most) dates in. t t f f
  4811. ui.asynchronousReviewMarking boolean Mark changes as reviewed (or not reviewed) using an asynchronous XMLHttpRequest. t t f f
  4812. ui.convertIssueToNote boolean Enable "Convert To Note" operation for issues. This operation is considered an inferior alternative to resolving an issue; use of it is not recommended. t t f f
  4813. ui.keyboardShortcuts boolean Enabled keyboard shortcuts on those pages that define any. t t f f
  4814. ui.resolveIssueWarning boolean Show a warning when resolving an issue raised by another user. t t f f
  4815. ui.title.showReview string Python format string for title of review front-page documents. t t f f
  4816. \.
  4817.  
  4818.  
  4819. --
  4820. -- Data for Name: previousreachable; Type: TABLE DATA; Schema: public; Owner: critic
  4821. --
  4822.  
  4823. COPY previousreachable (rebase, commit) FROM stdin;
  4824. \.
  4825.  
  4826.  
  4827. --
  4828. -- Data for Name: reachable; Type: TABLE DATA; Schema: public; Owner: critic
  4829. --
  4830.  
  4831. COPY reachable (branch, commit) FROM stdin;
  4832. 1 1
  4833. 1 2
  4834. 1 3
  4835. 1 4
  4836. 1 5
  4837. 1 6
  4838. 1 7
  4839. 1 8
  4840. 1 9
  4841. 1 10
  4842. 1 11
  4843. 1 12
  4844. 1 13
  4845. 1 14
  4846. 1 15
  4847. 1 16
  4848. 1 17
  4849. 1 18
  4850. 1 19
  4851. 1 20
  4852. 1 21
  4853. 1 22
  4854. 1 23
  4855. 1 24
  4856. 1 25
  4857. 1 26
  4858. 1 27
  4859. 1 28
  4860. 1 29
  4861. 1 30
  4862. 1 31
  4863. 1 32
  4864. 1 33
  4865. 1 34
  4866. 1 35
  4867. 1 36
  4868. 1 37
  4869. 1 38
  4870. 1 39
  4871. 1 40
  4872. 1 41
  4873. 1 42
  4874. 1 43
  4875. 1 44
  4876. 1 45
  4877. 1 46
  4878. 1 47
  4879. 1 48
  4880. 1 49
  4881. 1 50
  4882. 1 51
  4883. 1 52
  4884. 1 53
  4885. 1 54
  4886. 1 55
  4887. 1 56
  4888. 1 57
  4889. 1 58
  4890. 1 59
  4891. 1 60
  4892. 1 61
  4893. 1 62
  4894. 1 63
  4895. 1 64
  4896. 1 65
  4897. 1 66
  4898. 1 67
  4899. 1 68
  4900. 1 69
  4901. 1 70
  4902. 1 71
  4903. 1 72
  4904. 1 73
  4905. 1 74
  4906. 1 75
  4907. 1 76
  4908. 1 77
  4909. 1 78
  4910. 1 79
  4911. 1 80
  4912. 1 81
  4913. 1 82
  4914. 1 83
  4915. 1 84
  4916. 1 85
  4917. 1 86
  4918. 1 87
  4919. 1 88
  4920. 1 89
  4921. 1 90
  4922. 1 91
  4923. 1 92
  4924. 1 93
  4925. 1 94
  4926. 1 95
  4927. 1 96
  4928. 1 97
  4929. 1 98
  4930. 1 99
  4931. 1 100
  4932. 1 101
  4933. 1 102
  4934. 1 103
  4935. 1 104
  4936. 1 105
  4937. 1 106
  4938. 1 107
  4939. 1 108
  4940. 1 109
  4941. 1 110
  4942. 1 111
  4943. 1 112
  4944. 1 113
  4945. 1 114
  4946. 1 115
  4947. 1 116
  4948. 1 117
  4949. 1 118
  4950. 1 119
  4951. 1 120
  4952. 1 121
  4953. 1 122
  4954. 1 123
  4955. 1 124
  4956. 1 125
  4957. 1 126
  4958. 1 127
  4959. 1 128
  4960. 1 129
  4961. 1 130
  4962. 1 131
  4963. 1 132
  4964. 1 133
  4965. 1 134
  4966. 1 135
  4967. 1 136
  4968. 1 137
  4969. 1 138
  4970. 1 139
  4971. 1 140
  4972. 1 141
  4973. 1 142
  4974. 1 143
  4975. 1 144
  4976. 1 145
  4977. 1 146
  4978. 1 147
  4979. 1 148
  4980. 1 149
  4981. 1 150
  4982. 1 151
  4983. 1 152
  4984. 1 153
  4985. 1 154
  4986. 1 155
  4987. 1 156
  4988. 1 157
  4989. 1 158
  4990. 1 159
  4991. 1 160
  4992. 1 161
  4993. 1 162
  4994. 1 163
  4995. 1 164
  4996. 1 165
  4997. 1 166
  4998. 1 167
  4999. 1 168
  5000. 1 169
  5001. 1 170
  5002. 1 171
  5003. 1 172
  5004. 1 173
  5005. 1 174
  5006. 1 175
  5007. 1 176
  5008. 1 177
  5009. 1 178
  5010. 1 179
  5011. 1 180
  5012. 1 181
  5013. 1 182
  5014. 1 183
  5015. 1 184
  5016. 1 185
  5017. 1 186
  5018. 1 187
  5019. 1 188
  5020. 1 189
  5021. 1 190
  5022. 1 191
  5023. 1 192
  5024. 1 193
  5025. 1 194
  5026. 1 195
  5027. 1 196
  5028. 1 197
  5029. 1 198
  5030. 1 199
  5031. 1 200
  5032. 1 201
  5033. 1 202
  5034. 1 203
  5035. 1 204
  5036. 1 205
  5037. 1 206
  5038. 1 207
  5039. 1 208
  5040. 1 209
  5041. 1 210
  5042. 1 211
  5043. 1 212
  5044. 1 213
  5045. 1 214
  5046. 1 215
  5047. 1 216
  5048. 1 217
  5049. 1 218
  5050. 1 219
  5051. 1 220
  5052. 1 221
  5053. 1 222
  5054. 1 223
  5055. 1 224
  5056. 1 225
  5057. 1 226
  5058. 1 227
  5059. 1 228
  5060. 1 229
  5061. 1 230
  5062. 1 231
  5063. 1 232
  5064. 1 233
  5065. 1 234
  5066. 1 235
  5067. 1 236
  5068. 1 237
  5069. 1 238
  5070. 1 239
  5071. 1 240
  5072. 1 241
  5073. 1 242
  5074. 1 243
  5075. 1 244
  5076. 1 245
  5077. 1 246
  5078. 1 247
  5079. 1 248
  5080. 1 249
  5081. 1 250
  5082. 1 251
  5083. 1 252
  5084. 1 253
  5085. 1 254
  5086. 1 255
  5087. 1 256
  5088. 1 257
  5089. 1 258
  5090. 1 259
  5091. 1 260
  5092. 1 261
  5093. 1 262
  5094. 1 263
  5095. 1 264
  5096. 1 265
  5097. 1 266
  5098. 1 267
  5099. 1 268
  5100. 1 269
  5101. 1 270
  5102. 1 271
  5103. 1 272
  5104. 1 273
  5105. 1 274
  5106. 1 275
  5107. 1 276
  5108. 1 277
  5109. 1 278
  5110. 1 279
  5111. 1 280
  5112. 1 281
  5113. 1 282
  5114. 1 283
  5115. 1 284
  5116. 1 285
  5117. 1 286
  5118. 1 287
  5119. 1 288
  5120. 1 289
  5121. 1 290
  5122. 1 291
  5123. 1 292
  5124. 1 293
  5125. 1 294
  5126. 1 295
  5127. 1 296
  5128. 1 297
  5129. 1 298
  5130. 1 299
  5131. 1 300
  5132. 1 301
  5133. 1 302
  5134. 1 303
  5135. 1 304
  5136. 1 305
  5137. 1 306
  5138. 1 307
  5139. 1 308
  5140. 1 309
  5141. 1 310
  5142. 1 311
  5143. 1 312
  5144. 1 313
  5145. 1 314
  5146. 1 315
  5147. 1 316
  5148. 1 317
  5149. 1 318
  5150. 1 319
  5151. 1 320
  5152. 1 321
  5153. 1 322
  5154. 1 323
  5155. 1 324
  5156. 1 325
  5157. 1 326
  5158. 1 327
  5159. 1 328
  5160. 1 329
  5161. 1 330
  5162. 1 331
  5163. 1 332
  5164. 1 333
  5165. 1 334
  5166. 1 335
  5167. 1 336
  5168. 1 337
  5169. 1 338
  5170. 1 339
  5171. 1 340
  5172. 1 341
  5173. 1 342
  5174. 1 343
  5175. 1 344
  5176. 1 345
  5177. 1 346
  5178. 1 347
  5179. 1 348
  5180. 1 349
  5181. 1 350
  5182. 1 351
  5183. 1 352
  5184. 1 353
  5185. 1 354
  5186. 1 355
  5187. 1 356
  5188. 1 357
  5189. 1 358
  5190. 1 359
  5191. 1 360
  5192. 1 361
  5193. 1 362
  5194. 1 363
  5195. 1 364
  5196. 1 365
  5197. 1 366
  5198. 1 367
  5199. 1 368
  5200. 1 369
  5201. 1 370
  5202. 1 371
  5203. 1 372
  5204. 1 373
  5205. 1 374
  5206. 1 375
  5207. 1 376
  5208. 1 377
  5209. 1 378
  5210. 1 379
  5211. 1 380
  5212. 1 381
  5213. 1 382
  5214. 1 383
  5215. 1 384
  5216. 1 385
  5217. 1 386
  5218. 1 387
  5219. 1 388
  5220. 1 389
  5221. 1 390
  5222. 1 391
  5223. 1 392
  5224. 1 393
  5225. 1 394
  5226. 1 395
  5227. 1 396
  5228. 1 397
  5229. 1 398
  5230. 1 399
  5231. 1 400
  5232. 1 401
  5233. 1 402
  5234. 1 403
  5235. 1 404
  5236. 1 405
  5237. 1 406
  5238. 1 407
  5239. 1 408
  5240. 1 409
  5241. 1 410
  5242. 1 411
  5243. 1 412
  5244. 1 413
  5245. 1 414
  5246. 1 415
  5247. 1 416
  5248. 1 417
  5249. 1 418
  5250. 1 419
  5251. 1 420
  5252. 1 421
  5253. 1 422
  5254. 1 423
  5255. 1 424
  5256. 1 425
  5257. 1 426
  5258. 1 427
  5259. 1 428
  5260. 1 429
  5261. 1 430
  5262. 1 431
  5263. 1 432
  5264. 1 433
  5265. 1 434
  5266. 1 435
  5267. 1 436
  5268. 1 437
  5269. 1 438
  5270. 1 439
  5271. 1 440
  5272. 1 441
  5273. 1 442
  5274. 1 443
  5275. 1 444
  5276. 1 445
  5277. 1 446
  5278. 1 447
  5279. 1 448
  5280. 1 449
  5281. 1 450
  5282. 1 451
  5283. 1 452
  5284. 1 453
  5285. 1 454
  5286. 1 455
  5287. 1 456
  5288. 1 457
  5289. 1 458
  5290. 1 459
  5291. 1 460
  5292. 1 461
  5293. 1 462
  5294. 1 463
  5295. 1 464
  5296. 1 465
  5297. 1 466
  5298. 1 467
  5299. 1 468
  5300. 1 469
  5301. 1 470
  5302. 1 471
  5303. 1 472
  5304. 1 473
  5305. 1 474
  5306. 1 475
  5307. 1 476
  5308. 1 477
  5309. 1 478
  5310. 1 479
  5311. 1 480
  5312. 1 481
  5313. 1 482
  5314. 1 483
  5315. 1 484
  5316. 1 485
  5317. 1 486
  5318. 1 487
  5319. 1 488
  5320. 1 489
  5321. 1 490
  5322. 1 491
  5323. 1 492
  5324. 1 493
  5325. 1 494
  5326. 1 495
  5327. 1 496
  5328. 1 497
  5329. 1 498
  5330. 1 499
  5331. 1 500
  5332. 1 501
  5333. 1 502
  5334. 1 503
  5335. 1 504
  5336. 1 505
  5337. 1 506
  5338. 1 507
  5339. 1 508
  5340. 1 509
  5341. 1 510
  5342. 1 511
  5343. 1 512
  5344. 1 513
  5345. 1 514
  5346. 1 515
  5347. 1 516
  5348. 1 517
  5349. 1 518
  5350. 1 519
  5351. 1 520
  5352. 1 521
  5353. 1 522
  5354. 1 523
  5355. 1 524
  5356. 1 525
  5357. 1 526
  5358. 1 527
  5359. 1 528
  5360. 1 529
  5361. 1 530
  5362. 1 531
  5363. 1 532
  5364. 1 533
  5365. 1 534
  5366. 1 535
  5367. 1 536
  5368. 1 537
  5369. 1 538
  5370. 1 539
  5371. 1 540
  5372. 1 541
  5373. 1 542
  5374. 1 543
  5375. 1 544
  5376. 1 545
  5377. 1 546
  5378. 1 547
  5379. 1 548
  5380. 1 549
  5381. 1 550
  5382. 1 551
  5383. 1 552
  5384. 1 553
  5385. 1 554
  5386. 1 555
  5387. 1 556
  5388. 1 557
  5389. 1 558
  5390. 1 559
  5391. 1 560
  5392. 1 561
  5393. 1 562
  5394. 1 563
  5395. 1 564
  5396. 1 565
  5397. 1 566
  5398. 1 567
  5399. 1 568
  5400. 1 569
  5401. 1 570
  5402. 1 571
  5403. 1 572
  5404. 1 573
  5405. 1 574
  5406. 1 575
  5407. 1 576
  5408. 1 577
  5409. 1 578
  5410. 1 579
  5411. 1 580
  5412. 1 581
  5413. 1 582
  5414. 1 583
  5415. 1 584
  5416. 1 585
  5417. 1 586
  5418. 1 587
  5419. 1 588
  5420. 1 589
  5421. 1 590
  5422. 1 591
  5423. 1 592
  5424. 1 593
  5425. 1 594
  5426. 1 595
  5427. 1 596
  5428. 1 597
  5429. 1 598
  5430. 1 599
  5431. 1 600
  5432. 1 601
  5433. 1 602
  5434. 1 603
  5435. 1 604
  5436. 1 605
  5437. 1 606
  5438. 1 607
  5439. 1 608
  5440. 1 609
  5441. 1 610
  5442. 1 611
  5443. 1 612
  5444. 1 613
  5445. 1 614
  5446. 1 615
  5447. 1 616
  5448. 1 617
  5449. 1 618
  5450. 1 619
  5451. 1 620
  5452. 1 621
  5453. 1 622
  5454. 1 623
  5455. 1 624
  5456. 1 625
  5457. 1 626
  5458. 1 627
  5459. 1 628
  5460. 1 629
  5461. 1 630
  5462. 1 631
  5463. 1 632
  5464. 1 633
  5465. 1 634
  5466. 1 635
  5467. 1 636
  5468. 1 637
  5469. 1 638
  5470. 1 639
  5471. 1 640
  5472. 1 641
  5473. 1 642
  5474. 1 643
  5475. 1 644
  5476. 1 645
  5477. 1 646
  5478. 1 647
  5479. 1 648
  5480. 1 649
  5481. 1 650
  5482. 1 651
  5483. 1 652
  5484. 1 653
  5485. 1 654
  5486. 1 655
  5487. 1 656
  5488. 1 657
  5489. 1 658
  5490. 1 659
  5491. 1 660
  5492. 1 661
  5493. 1 662
  5494. 1 663
  5495. 1 664
  5496. 1 665
  5497. 1 666
  5498. 1 667
  5499. 1 668
  5500. 1 669
  5501. 1 670
  5502. 1 671
  5503. 1 672
  5504. 1 673
  5505. 1 674
  5506. 1 675
  5507. 1 676
  5508. 1 677
  5509. 1 678
  5510. 1 679
  5511. 1 680
  5512. 1 681
  5513. 1 682
  5514. 1 683
  5515. 1 684
  5516. 1 685
  5517. 1 686
  5518. 1 687
  5519. 1 688
  5520. 1 689
  5521. 1 690
  5522. 1 691
  5523. 1 692
  5524. 1 693
  5525. 1 694
  5526. 1 695
  5527. 1 696
  5528. 1 697
  5529. 1 698
  5530. 1 699
  5531. 1 700
  5532. 1 701
  5533. 1 702
  5534. 1 703
  5535. 1 704
  5536. 1 705
  5537. 1 706
  5538. 1 707
  5539. 1 708
  5540. 1 709
  5541. 1 710
  5542. 1 711
  5543. 1 712
  5544. 1 713
  5545. 1 714
  5546. 1 715
  5547. 1 716
  5548. 1 717
  5549. 1 718
  5550. 1 719
  5551. 1 720
  5552. 1 721
  5553. 1 722
  5554. 1 723
  5555. 1 724
  5556. 1 725
  5557. 1 726
  5558. 1 727
  5559. 1 728
  5560. 1 729
  5561. 1 730
  5562. 1 731
  5563. 1 732
  5564. 1 733
  5565. 1 734
  5566. 1 735
  5567. 1 736
  5568. 1 737
  5569. 1 738
  5570. 1 739
  5571. 1 740
  5572. 1 741
  5573. 1 742
  5574. 1 743
  5575. 1 744
  5576. 1 745
  5577. 1 746
  5578. 1 747
  5579. 1 748
  5580. 1 749
  5581. 1 750
  5582. 1 751
  5583. 1 752
  5584. 1 753
  5585. 1 754
  5586. 1 755
  5587. 1 756
  5588. 1 757
  5589. 1 758
  5590. 1 759
  5591. 1 760
  5592. 1 761
  5593. 1 762
  5594. 1 763
  5595. 1 764
  5596. 1 765
  5597. 1 766
  5598. 1 767
  5599. 1 768
  5600. 1 769
  5601. 1 770
  5602. 1 771
  5603. 1 772
  5604. 1 773
  5605. 1 774
  5606. 1 775
  5607. 1 776
  5608. 1 777
  5609. 1 778
  5610. 1 779
  5611. 1 780
  5612. 1 781
  5613. 1 782
  5614. 1 783
  5615. 1 784
  5616. 1 785
  5617. 1 786
  5618. 1 787
  5619. 1 788
  5620. 1 789
  5621. 1 790
  5622. 1 791
  5623. 1 792
  5624. 1 793
  5625. 1 794
  5626. 1 795
  5627. 1 796
  5628. 1 797
  5629. 1 798
  5630. 1 799
  5631. 1 800
  5632. 1 801
  5633. 1 802
  5634. 1 803
  5635. 1 804
  5636. 1 805
  5637. 1 806
  5638. 1 807
  5639. 1 808
  5640. 1 809
  5641. 1 810
  5642. 1 811
  5643. 1 812
  5644. 1 813
  5645. 1 814
  5646. 1 815
  5647. 1 816
  5648. 1 817
  5649. 1 818
  5650. 1 819
  5651. 1 820
  5652. 1 821
  5653. 1 822
  5654. 1 823
  5655. 1 824
  5656. 1 825
  5657. 1 826
  5658. 1 827
  5659. 1 828
  5660. 1 829
  5661. 1 830
  5662. 1 831
  5663. 1 832
  5664. 1 833
  5665. 1 834
  5666. 1 835
  5667. 1 836
  5668. 1 837
  5669. 1 838
  5670. 1 839
  5671. 1 840
  5672. 1 841
  5673. 1 842
  5674. 1 843
  5675. 1 844
  5676. 1 845
  5677. 1 846
  5678. 1 847
  5679. 1 848
  5680. 1 849
  5681. 1 850
  5682. 1 851
  5683. 1 852
  5684. 1 853
  5685. 1 854
  5686. 1 855
  5687. 1 856
  5688. 1 857
  5689. 1 859
  5690. 1 858
  5691. 1 861
  5692. 1 860
  5693. 1 864
  5694. 1 862
  5695. 1 863
  5696. 1 866
  5697. 1 865
  5698. 1 868
  5699. 1 867
  5700. 1 870
  5701. 1 869
  5702. 1 873
  5703. 1 872
  5704. 1 871
  5705. 1 876
  5706. 1 875
  5707. 1 874
  5708. 1 879
  5709. 1 878
  5710. 1 877
  5711. 1 882
  5712. 1 881
  5713. 1 880
  5714. 1 885
  5715. 1 884
  5716. 1 883
  5717. 1 888
  5718. 1 887
  5719. 1 886
  5720. 1 892
  5721. 1 891
  5722. 1 890
  5723. 1 889
  5724. 1 896
  5725. 1 894
  5726. 1 895
  5727. 1 893
  5728. 1 900
  5729. 1 898
  5730. 1 899
  5731. 1 897
  5732. 1 905
  5733. 1 904
  5734. 1 902
  5735. 1 903
  5736. 1 901
  5737. 1 910
  5738. 1 909
  5739. 1 907
  5740. 1 908
  5741. 1 906
  5742. 1 914
  5743. 1 912
  5744. 1 913
  5745. 1 911
  5746. 1 915
  5747. 1 916
  5748. 1 917
  5749. 1 918
  5750. 1 919
  5751. 1 920
  5752. 1 921
  5753. 1 922
  5754. 1 924
  5755. 1 923
  5756. 1 925
  5757. 1 926
  5758. 1 927
  5759. 1 928
  5760. 1 929
  5761. 1 930
  5762. 1 931
  5763. 1 932
  5764. 1 933
  5765. 1 934
  5766. 1 936
  5767. 1 935
  5768. 1 938
  5769. 1 937
  5770. 1 940
  5771. 1 939
  5772. 1 942
  5773. 1 941
  5774. 1 944
  5775. 1 943
  5776. 1 947
  5777. 1 946
  5778. 1 945
  5779. 1 951
  5780. 1 949
  5781. 1 950
  5782. 1 948
  5783. 1 952
  5784. 2 953
  5785. 2 954
  5786. 2 955
  5787. 2 956
  5788. 3 957
  5789. 3 958
  5790. 3 959
  5791. 3 960
  5792. 3 961
  5793. 3 962
  5794. 3 963
  5795. 3 964
  5796. 3 965
  5797. 3 966
  5798. 3 967
  5799. 3 968
  5800. 3 969
  5801. 3 970
  5802. 3 971
  5803. 3 972
  5804. \.
  5805.  
  5806.  
  5807. --
  5808. -- Data for Name: relevantcommits; Type: TABLE DATA; Schema: public; Owner: critic
  5809. --
  5810.  
  5811. COPY relevantcommits (commit, parent, file, relevant) FROM stdin;
  5812. \.
  5813.  
  5814.  
  5815. --
  5816. -- Data for Name: repositories; Type: TABLE DATA; Schema: public; Owner: critic
  5817. --
  5818.  
  5819. COPY repositories (id, parent, name, path) FROM stdin;
  5820. 1 \N c /var/git/c.git
  5821. 2 \N h /var/git/h.git
  5822. 3 \N z /var/git/z.git
  5823. \.
  5824.  
  5825.  
  5826. --
  5827. -- Name: repositories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5828. --
  5829.  
  5830. SELECT pg_catalog.setval('repositories_id_seq', 3, true);
  5831.  
  5832.  
  5833. --
  5834. -- Data for Name: reviewassignmentchanges; Type: TABLE DATA; Schema: public; Owner: critic
  5835. --
  5836.  
  5837. COPY reviewassignmentchanges (transaction, file, uid, assigned) FROM stdin;
  5838. \.
  5839.  
  5840.  
  5841. --
  5842. -- Data for Name: reviewassignmentstransactions; Type: TABLE DATA; Schema: public; Owner: critic
  5843. --
  5844.  
  5845. COPY reviewassignmentstransactions (id, review, assigner, note, "time") FROM stdin;
  5846. \.
  5847.  
  5848.  
  5849. --
  5850. -- Name: reviewassignmentstransactions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5851. --
  5852.  
  5853. SELECT pg_catalog.setval('reviewassignmentstransactions_id_seq', 1, false);
  5854.  
  5855.  
  5856. --
  5857. -- Data for Name: reviewchangesets; Type: TABLE DATA; Schema: public; Owner: critic
  5858. --
  5859.  
  5860. COPY reviewchangesets (review, changeset) FROM stdin;
  5861. \.
  5862.  
  5863.  
  5864. --
  5865. -- Data for Name: reviewfilechanges; Type: TABLE DATA; Schema: public; Owner: critic
  5866. --
  5867.  
  5868. COPY reviewfilechanges (batch, file, uid, "time", state, from_state, to_state) FROM stdin;
  5869. \.
  5870.  
  5871.  
  5872. --
  5873. -- Data for Name: reviewfiles; Type: TABLE DATA; Schema: public; Owner: critic
  5874. --
  5875.  
  5876. COPY reviewfiles (id, review, changeset, file, deleted, inserted, state, reviewer, "time") FROM stdin;
  5877. \.
  5878.  
  5879.  
  5880. --
  5881. -- Name: reviewfiles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5882. --
  5883.  
  5884. SELECT pg_catalog.setval('reviewfiles_id_seq', 1, false);
  5885.  
  5886.  
  5887. --
  5888. -- Data for Name: reviewfilterchanges; Type: TABLE DATA; Schema: public; Owner: critic
  5889. --
  5890.  
  5891. COPY reviewfilterchanges (transaction, uid, path, type, created) FROM stdin;
  5892. \.
  5893.  
  5894.  
  5895. --
  5896. -- Data for Name: reviewfilters; Type: TABLE DATA; Schema: public; Owner: critic
  5897. --
  5898.  
  5899. COPY reviewfilters (id, review, uid, path, type, creator) FROM stdin;
  5900. \.
  5901.  
  5902.  
  5903. --
  5904. -- Name: reviewfilters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5905. --
  5906.  
  5907. SELECT pg_catalog.setval('reviewfilters_id_seq', 1, false);
  5908.  
  5909.  
  5910. --
  5911. -- Data for Name: reviewmergeconfirmations; Type: TABLE DATA; Schema: public; Owner: critic
  5912. --
  5913.  
  5914. COPY reviewmergeconfirmations (id, review, uid, merge, tail, confirmed) FROM stdin;
  5915. \.
  5916.  
  5917.  
  5918. --
  5919. -- Name: reviewmergeconfirmations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5920. --
  5921.  
  5922. SELECT pg_catalog.setval('reviewmergeconfirmations_id_seq', 1, false);
  5923.  
  5924.  
  5925. --
  5926. -- Data for Name: reviewmergecontributions; Type: TABLE DATA; Schema: public; Owner: critic
  5927. --
  5928.  
  5929. COPY reviewmergecontributions (id, merged) FROM stdin;
  5930. \.
  5931.  
  5932.  
  5933. --
  5934. -- Data for Name: reviewmessageids; Type: TABLE DATA; Schema: public; Owner: critic
  5935. --
  5936.  
  5937. COPY reviewmessageids (uid, review, messageid) FROM stdin;
  5938. \.
  5939.  
  5940.  
  5941. --
  5942. -- Data for Name: reviewrebases; Type: TABLE DATA; Schema: public; Owner: critic
  5943. --
  5944.  
  5945. COPY reviewrebases (id, review, old_head, new_head, old_upstream, new_upstream, equivalent_merge, replayed_rebase, uid, branch) FROM stdin;
  5946. \.
  5947.  
  5948.  
  5949. --
  5950. -- Name: reviewrebases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5951. --
  5952.  
  5953. SELECT pg_catalog.setval('reviewrebases_id_seq', 1, false);
  5954.  
  5955.  
  5956. --
  5957. -- Data for Name: reviewrecipientfilters; Type: TABLE DATA; Schema: public; Owner: critic
  5958. --
  5959.  
  5960. COPY reviewrecipientfilters (review, uid, include) FROM stdin;
  5961. \.
  5962.  
  5963.  
  5964. --
  5965. -- Data for Name: reviews; Type: TABLE DATA; Schema: public; Owner: critic
  5966. --
  5967.  
  5968. COPY reviews (id, type, branch, origin, state, serial, closed_by, dropped_by, applyfilters, applyparentfilters, summary, description) FROM stdin;
  5969. \.
  5970.  
  5971.  
  5972. --
  5973. -- Name: reviews_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  5974. --
  5975.  
  5976. SELECT pg_catalog.setval('reviews_id_seq', 1, false);
  5977.  
  5978.  
  5979. --
  5980. -- Data for Name: reviewuserfiles; Type: TABLE DATA; Schema: public; Owner: critic
  5981. --
  5982.  
  5983. COPY reviewuserfiles (file, uid, "time") FROM stdin;
  5984. \.
  5985.  
  5986.  
  5987. --
  5988. -- Data for Name: reviewusers; Type: TABLE DATA; Schema: public; Owner: critic
  5989. --
  5990.  
  5991. COPY reviewusers (review, uid, owner, type) FROM stdin;
  5992. \.
  5993.  
  5994.  
  5995. --
  5996. -- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: critic
  5997. --
  5998.  
  5999. COPY roles (name, description) FROM stdin;
  6000. administrator Almighty system administrator.
  6001. repositories Allowed to add and configure repositories.
  6002. developer System developer.
  6003. newswriter Allowed to add and edit news items.
  6004. \.
  6005.  
  6006.  
  6007. --
  6008. -- Data for Name: scheduledreviewbrancharchivals; Type: TABLE DATA; Schema: public; Owner: critic
  6009. --
  6010.  
  6011. COPY scheduledreviewbrancharchivals (review, deadline) FROM stdin;
  6012. \.
  6013.  
  6014.  
  6015. --
  6016. -- Data for Name: systemidentities; Type: TABLE DATA; Schema: public; Owner: critic
  6017. --
  6018.  
  6019. COPY systemidentities (key, name, anonymous_scheme, authenticated_scheme, hostname, description, installed_sha1, installed_at) FROM stdin;
  6020. main main http http molsson Main 74e94e52ca8f423b0febcdd93db01013adf641db 2016-03-14 10:14:01.520015
  6021. \.
  6022.  
  6023.  
  6024. --
  6025. -- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: critic
  6026. --
  6027.  
  6028. COPY tags (id, name, repository, sha1) FROM stdin;
  6029. \.
  6030.  
  6031.  
  6032. --
  6033. -- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  6034. --
  6035.  
  6036. SELECT pg_catalog.setval('tags_id_seq', 1, false);
  6037.  
  6038.  
  6039. --
  6040. -- Data for Name: timezones; Type: TABLE DATA; Schema: public; Owner: critic
  6041. --
  6042.  
  6043. COPY timezones (name, abbrev, utc_offset) FROM stdin;
  6044. Universal/UTC UTC 00:00:00
  6045. Pacific/Saipan ChST 10:00:00
  6046. Pacific/Guadalcanal SBT 11:00:00
  6047. Pacific/Rarotonga CKT -1 days +14:00:00
  6048. Pacific/Bougainville BST 11:00:00
  6049. Pacific/Marquesas MART -1 days +14:30:00
  6050. Pacific/Easter EAST -1 days +19:00:00
  6051. Pacific/Pitcairn PST -1 days +16:00:00
  6052. Pacific/Kiritimati LINT 14:00:00
  6053. Pacific/Galapagos GALT -1 days +18:00:00
  6054. Pacific/Tongatapu TOT 13:00:00
  6055. Pacific/Kosrae KOST 11:00:00
  6056. Pacific/Tahiti TAHT -1 days +14:00:00
  6057. Pacific/Noumea NCT 11:00:00
  6058. Pacific/Palau PWT 09:00:00
  6059. Pacific/Chatham CHADT 13:45:00
  6060. Pacific/Apia WSDT 14:00:00
  6061. Pacific/Port_Moresby PGT 10:00:00
  6062. Pacific/Enderbury PHOT 13:00:00
  6063. Pacific/Johnston HST -1 days +14:00:00
  6064. Pacific/Auckland NZDT 13:00:00
  6065. Pacific/Wake WAKT 12:00:00
  6066. Pacific/Fiji FJT 12:00:00
  6067. Pacific/Fakaofo TKT 13:00:00
  6068. Pacific/Midway SST -1 days +13:00:00
  6069. Pacific/Funafuti TVT 12:00:00
  6070. Pacific/Samoa SST -1 days +13:00:00
  6071. Pacific/Wallis WFT 12:00:00
  6072. Pacific/Pohnpei PONT 11:00:00
  6073. Pacific/Yap CHUT 10:00:00
  6074. Pacific/Honolulu HST -1 days +14:00:00
  6075. Pacific/Gambier GAMT -1 days +15:00:00
  6076. Pacific/Truk CHUT 10:00:00
  6077. Pacific/Pago_Pago SST -1 days +13:00:00
  6078. Pacific/Majuro MHT 12:00:00
  6079. Pacific/Chuuk CHUT 10:00:00
  6080. Pacific/Niue NUT -1 days +13:00:00
  6081. Pacific/Efate VUT 11:00:00
  6082. Pacific/Guam ChST 10:00:00
  6083. Pacific/Tarawa GILT 12:00:00
  6084. Pacific/Kwajalein MHT 12:00:00
  6085. Pacific/Norfolk NFT 11:00:00
  6086. Pacific/Ponape PONT 11:00:00
  6087. Pacific/Nauru NRT 12:00:00
  6088. Canada/Pacific PDT -1 days +17:00:00
  6089. Canada/Saskatchewan CST -1 days +18:00:00
  6090. Canada/Newfoundland NDT -1 days +21:30:00
  6091. Canada/Eastern EDT -1 days +20:00:00
  6092. Canada/Yukon PDT -1 days +17:00:00
  6093. Canada/Mountain MDT -1 days +18:00:00
  6094. Canada/Central CDT -1 days +19:00:00
  6095. Canada/Atlantic ADT -1 days +21:00:00
  6096. Canada/East-Saskatchewan CST -1 days +18:00:00
  6097. Arctic/Longyearbyen CET 01:00:00
  6098. Mexico/General CST -1 days +18:00:00
  6099. Mexico/BajaSur MST -1 days +17:00:00
  6100. Mexico/BajaNorte PDT -1 days +17:00:00
  6101. Antarctica/Mawson MAWT 05:00:00
  6102. Antarctica/DumontDUrville DDUT 10:00:00
  6103. Antarctica/Vostok VOST 06:00:00
  6104. Antarctica/Rothera ROTT -1 days +21:00:00
  6105. Antarctica/Palmer CLT -1 days +21:00:00
  6106. Antarctica/Macquarie MIST 11:00:00
  6107. Antarctica/Davis DAVT 07:00:00
  6108. Antarctica/Troll UTC 00:00:00
  6109. Antarctica/McMurdo NZDT 13:00:00
  6110. Antarctica/Casey AWST 08:00:00
  6111. Antarctica/South_Pole NZDT 13:00:00
  6112. Antarctica/Syowa SYOT 03:00:00
  6113. Asia/Kuala_Lumpur MYT 08:00:00
  6114. Asia/Kathmandu NPT 05:45:00
  6115. Asia/Ujung_Pandang WITA 08:00:00
  6116. Asia/Dubai GST 04:00:00
  6117. Asia/Bishkek KGT 06:00:00
  6118. Asia/Dhaka BDT 06:00:00
  6119. Asia/Tel_Aviv IST 02:00:00
  6120. Asia/Amman EET 02:00:00
  6121. Asia/Samarkand UZT 05:00:00
  6122. Asia/Baghdad AST 03:00:00
  6123. Asia/Ust-Nera VLAT 10:00:00
  6124. Asia/Ulaanbaatar ULAT 08:00:00
  6125. Asia/Istanbul EET 02:00:00
  6126. Asia/Gaza EET 02:00:00
  6127. Asia/Aqtau AQTT 05:00:00
  6128. Asia/Vladivostok VLAT 10:00:00
  6129. Asia/Dacca BDT 06:00:00
  6130. Asia/Macau CST 08:00:00
  6131. Asia/Beirut EET 02:00:00
  6132. Asia/Ho_Chi_Minh ICT 07:00:00
  6133. Asia/Singapore SGT 08:00:00
  6134. Asia/Tashkent UZT 05:00:00
  6135. Asia/Kolkata IST 05:30:00
  6136. Asia/Pyongyang KST 08:30:00
  6137. Asia/Brunei BNT 08:00:00
  6138. Asia/Kabul AFT 04:30:00
  6139. Asia/Jayapura WIT 09:00:00
  6140. Asia/Seoul KST 09:00:00
  6141. Asia/Anadyr ANAT 12:00:00
  6142. Asia/Muscat GST 04:00:00
  6143. Asia/Riyadh AST 03:00:00
  6144. Asia/Rangoon MMT 06:30:00
  6145. Asia/Aden AST 03:00:00
  6146. Asia/Damascus EET 02:00:00
  6147. Asia/Yakutsk YAKT 09:00:00
  6148. Asia/Hong_Kong HKT 08:00:00
  6149. Asia/Ulan_Bator ULAT 08:00:00
  6150. Asia/Novokuznetsk KRAT 07:00:00
  6151. Asia/Chita IRKT 08:00:00
  6152. Asia/Qatar AST 03:00:00
  6153. Asia/Irkutsk IRKT 08:00:00
  6154. Asia/Manila PHT 08:00:00
  6155. Asia/Hebron EET 02:00:00
  6156. Asia/Thimphu BTT 06:00:00
  6157. Asia/Khandyga YAKT 09:00:00
  6158. Asia/Magadan MAGT 10:00:00
  6159. Asia/Dushanbe TJT 05:00:00
  6160. Asia/Saigon ICT 07:00:00
  6161. Asia/Chungking CST 08:00:00
  6162. Asia/Yerevan AMT 04:00:00
  6163. Asia/Phnom_Penh ICT 07:00:00
  6164. Asia/Taipei CST 08:00:00
  6165. Asia/Ashkhabad TMT 05:00:00
  6166. Asia/Tehran IRST 03:30:00
  6167. Asia/Calcutta IST 05:30:00
  6168. Asia/Chongqing CST 08:00:00
  6169. Asia/Tbilisi GET 04:00:00
  6170. Asia/Novosibirsk NOVT 06:00:00
  6171. Asia/Karachi PKT 05:00:00
  6172. Asia/Baku AZT 04:00:00
  6173. Asia/Qyzylorda QYZT 06:00:00
  6174. Asia/Kamchatka PETT 12:00:00
  6175. Asia/Hovd HOVT 07:00:00
  6176. Asia/Pontianak WIB 07:00:00
  6177. Asia/Kashgar XJT 06:00:00
  6178. Asia/Katmandu NPT 05:45:00
  6179. Asia/Bangkok ICT 07:00:00
  6180. Asia/Bahrain AST 03:00:00
  6181. Asia/Nicosia EET 02:00:00
  6182. Asia/Jerusalem IST 02:00:00
  6183. Asia/Yekaterinburg YEKT 05:00:00
  6184. Asia/Kuching MYT 08:00:00
  6185. Asia/Colombo IST 05:30:00
  6186. Asia/Tokyo JST 09:00:00
  6187. Asia/Macao CST 08:00:00
  6188. Asia/Shanghai CST 08:00:00
  6189. Asia/Urumqi XJT 06:00:00
  6190. Asia/Kuwait AST 03:00:00
  6191. Asia/Thimbu BTT 06:00:00
  6192. Asia/Omsk OMST 06:00:00
  6193. Asia/Sakhalin SAKT 10:00:00
  6194. Asia/Choibalsan CHOT 08:00:00
  6195. Asia/Vientiane ICT 07:00:00
  6196. Asia/Srednekolymsk SRET 11:00:00
  6197. Asia/Dili TLT 09:00:00
  6198. Asia/Makassar WITA 08:00:00
  6199. Asia/Krasnoyarsk KRAT 07:00:00
  6200. Asia/Harbin CST 08:00:00
  6201. Asia/Almaty ALMT 06:00:00
  6202. Asia/Oral ORAT 05:00:00
  6203. Asia/Aqtobe AQTT 05:00:00
  6204. Asia/Jakarta WIB 07:00:00
  6205. Asia/Ashgabat TMT 05:00:00
  6206. SystemV/EST5EDT EDT -1 days +20:00:00
  6207. SystemV/AST4ADT ADT -1 days +21:00:00
  6208. SystemV/MST7MDT MDT -1 days +18:00:00
  6209. SystemV/PST8PDT PDT -1 days +17:00:00
  6210. SystemV/EST5 EST -1 days +19:00:00
  6211. SystemV/PST8 PST -1 days +16:00:00
  6212. SystemV/AST4 AST -1 days +20:00:00
  6213. SystemV/CST6CDT CDT -1 days +19:00:00
  6214. SystemV/HST10 HST -1 days +14:00:00
  6215. SystemV/YST9 GAMT -1 days +15:00:00
  6216. SystemV/CST6 CST -1 days +18:00:00
  6217. SystemV/MST7 MST -1 days +17:00:00
  6218. SystemV/YST9YDT AKDT -1 days +16:00:00
  6219. Africa/Bujumbura CAT 02:00:00
  6220. Africa/Lome GMT 00:00:00
  6221. Africa/Maseru SAST 02:00:00
  6222. Africa/Mogadishu EAT 03:00:00
  6223. Africa/Mbabane SAST 02:00:00
  6224. Africa/Bamako GMT 00:00:00
  6225. Africa/Ceuta CET 01:00:00
  6226. Africa/Lusaka CAT 02:00:00
  6227. Africa/Malabo WAT 01:00:00
  6228. Africa/Windhoek WAST 02:00:00
  6229. Africa/Cairo EET 02:00:00
  6230. Africa/Luanda WAT 01:00:00
  6231. Africa/Asmara EAT 03:00:00
  6232. Africa/Addis_Ababa EAT 03:00:00
  6233. Africa/Nairobi EAT 03:00:00
  6234. Africa/Douala WAT 01:00:00
  6235. Africa/Casablanca WET 00:00:00
  6236. Africa/Harare CAT 02:00:00
  6237. Africa/Lubumbashi CAT 02:00:00
  6238. Africa/Kigali CAT 02:00:00
  6239. Africa/El_Aaiun WET 00:00:00
  6240. Africa/Brazzaville WAT 01:00:00
  6241. Africa/Conakry GMT 00:00:00
  6242. Africa/Porto-Novo WAT 01:00:00
  6243. Africa/Bangui WAT 01:00:00
  6244. Africa/Ndjamena WAT 01:00:00
  6245. Africa/Juba EAT 03:00:00
  6246. Africa/Algiers CET 01:00:00
  6247. Africa/Tunis CET 01:00:00
  6248. Africa/Monrovia GMT 00:00:00
  6249. Africa/Bissau GMT 00:00:00
  6250. Africa/Accra GMT 00:00:00
  6251. Africa/Sao_Tome GMT 00:00:00
  6252. Africa/Timbuktu GMT 00:00:00
  6253. Africa/Khartoum EAT 03:00:00
  6254. Africa/Kampala EAT 03:00:00
  6255. Africa/Freetown GMT 00:00:00
  6256. Africa/Dakar GMT 00:00:00
  6257. Africa/Niamey WAT 01:00:00
  6258. Africa/Asmera EAT 03:00:00
  6259. Africa/Libreville WAT 01:00:00
  6260. Africa/Johannesburg SAST 02:00:00
  6261. Africa/Lagos WAT 01:00:00
  6262. Africa/Banjul GMT 00:00:00
  6263. Africa/Nouakchott GMT 00:00:00
  6264. Africa/Dar_es_Salaam EAT 03:00:00
  6265. Africa/Blantyre CAT 02:00:00
  6266. Africa/Abidjan GMT 00:00:00
  6267. Africa/Djibouti EAT 03:00:00
  6268. Africa/Ouagadougou GMT 00:00:00
  6269. Africa/Kinshasa WAT 01:00:00
  6270. Africa/Maputo CAT 02:00:00
  6271. Africa/Tripoli EET 02:00:00
  6272. Africa/Gaborone CAT 02:00:00
  6273. Australia/Lord_Howe LHDT 11:00:00
  6274. Australia/Canberra AEDT 11:00:00
  6275. Australia/Victoria AEDT 11:00:00
  6276. Australia/Darwin ACST 09:30:00
  6277. Australia/ACT AEDT 11:00:00
  6278. Australia/North ACST 09:30:00
  6279. Australia/LHI LHDT 11:00:00
  6280. Australia/Adelaide ACDT 10:30:00
  6281. Australia/Eucla ACWST 08:45:00
  6282. Australia/South ACDT 10:30:00
  6283. Australia/Sydney AEDT 11:00:00
  6284. Australia/Perth AWST 08:00:00
  6285. Australia/Brisbane AEST 10:00:00
  6286. Australia/Hobart AEDT 11:00:00
  6287. Australia/Tasmania AEDT 11:00:00
  6288. Australia/Broken_Hill ACDT 10:30:00
  6289. Australia/Lindeman AEST 10:00:00
  6290. Australia/Yancowinna ACDT 10:30:00
  6291. Australia/Queensland AEST 10:00:00
  6292. Australia/NSW AEDT 11:00:00
  6293. Australia/Melbourne AEDT 11:00:00
  6294. Australia/West AWST 08:00:00
  6295. Australia/Currie AEDT 11:00:00
  6296. Europe/Minsk MSK 03:00:00
  6297. Europe/Copenhagen CET 01:00:00
  6298. Europe/Istanbul EET 02:00:00
  6299. Europe/Luxembourg CET 01:00:00
  6300. Europe/Belfast GMT 00:00:00
  6301. Europe/Budapest CET 01:00:00
  6302. Europe/Rome CET 01:00:00
  6303. Europe/Paris CET 01:00:00
  6304. Europe/Belgrade CET 01:00:00
  6305. Europe/Riga EET 02:00:00
  6306. Europe/Busingen CET 01:00:00
  6307. Europe/Dublin GMT 00:00:00
  6308. Europe/Monaco CET 01:00:00
  6309. Europe/Oslo CET 01:00:00
  6310. Europe/Tirane CET 01:00:00
  6311. Europe/Amsterdam CET 01:00:00
  6312. Europe/Uzhgorod EET 02:00:00
  6313. Europe/Bratislava CET 01:00:00
  6314. Europe/Helsinki EET 02:00:00
  6315. Europe/Jersey GMT 00:00:00
  6316. Europe/London GMT 00:00:00
  6317. Europe/Vilnius EET 02:00:00
  6318. Europe/Zagreb CET 01:00:00
  6319. Europe/Lisbon WET 00:00:00
  6320. Europe/Madrid CET 01:00:00
  6321. Europe/Tiraspol EET 02:00:00
  6322. Europe/Podgorica CET 01:00:00
  6323. Europe/Zaporozhye EET 02:00:00
  6324. Europe/Moscow MSK 03:00:00
  6325. Europe/Stockholm CET 01:00:00
  6326. Europe/Guernsey GMT 00:00:00
  6327. Europe/Samara SAMT 04:00:00
  6328. Europe/Bucharest EET 02:00:00
  6329. Europe/Volgograd MSK 03:00:00
  6330. Europe/Skopje CET 01:00:00
  6331. Europe/Vienna CET 01:00:00
  6332. Europe/Kaliningrad EET 02:00:00
  6333. Europe/Simferopol MSK 03:00:00
  6334. Europe/Athens EET 02:00:00
  6335. Europe/Ljubljana CET 01:00:00
  6336. Europe/Prague CET 01:00:00
  6337. Europe/Andorra CET 01:00:00
  6338. Europe/Kiev EET 02:00:00
  6339. Europe/Isle_of_Man GMT 00:00:00
  6340. Europe/Berlin CET 01:00:00
  6341. Europe/Nicosia EET 02:00:00
  6342. Europe/Sofia EET 02:00:00
  6343. Europe/Tallinn EET 02:00:00
  6344. Europe/Warsaw CET 01:00:00
  6345. Europe/Vatican CET 01:00:00
  6346. Europe/Malta CET 01:00:00
  6347. Europe/Gibraltar CET 01:00:00
  6348. Europe/Chisinau EET 02:00:00
  6349. Europe/Mariehamn EET 02:00:00
  6350. Europe/Brussels CET 01:00:00
  6351. Europe/Vaduz CET 01:00:00
  6352. Europe/San_Marino CET 01:00:00
  6353. Europe/Zurich CET 01:00:00
  6354. Europe/Sarajevo CET 01:00:00
  6355. Brazil/Acre ACT -1 days +19:00:00
  6356. Brazil/DeNoronha FNT -1 days +22:00:00
  6357. Brazil/East BRT -1 days +21:00:00
  6358. Brazil/West AMT -1 days +20:00:00
  6359. US/Pacific PDT -1 days +17:00:00
  6360. US/Aleutian HDT -1 days +15:00:00
  6361. US/East-Indiana EDT -1 days +20:00:00
  6362. US/Eastern EDT -1 days +20:00:00
  6363. US/Michigan EDT -1 days +20:00:00
  6364. US/Mountain MDT -1 days +18:00:00
  6365. US/Alaska AKDT -1 days +16:00:00
  6366. US/Samoa SST -1 days +13:00:00
  6367. US/Central CDT -1 days +19:00:00
  6368. US/Hawaii HST -1 days +14:00:00
  6369. US/Indiana-Starke CDT -1 days +19:00:00
  6370. US/Arizona MST -1 days +17:00:00
  6371. US/Pacific-New PDT -1 days +17:00:00
  6372. Chile/EasterIsland EAST -1 days +19:00:00
  6373. Chile/Continental CLT -1 days +21:00:00
  6374. Atlantic/Jan_Mayen CET 01:00:00
  6375. Atlantic/Faroe WET 00:00:00
  6376. Atlantic/Faeroe WET 00:00:00
  6377. Atlantic/St_Helena GMT 00:00:00
  6378. Atlantic/Azores AZOT -1 days +23:00:00
  6379. Atlantic/Bermuda ADT -1 days +21:00:00
  6380. Atlantic/Reykjavik GMT 00:00:00
  6381. Atlantic/Cape_Verde CVT -1 days +23:00:00
  6382. Atlantic/South_Georgia GST -1 days +22:00:00
  6383. Atlantic/Stanley FKST -1 days +21:00:00
  6384. Atlantic/Canary WET 00:00:00
  6385. Atlantic/Madeira WET 00:00:00
  6386. Indian/Christmas CXT 07:00:00
  6387. Indian/Reunion RET 04:00:00
  6388. Indian/Kerguelen TFT 05:00:00
  6389. Indian/Antananarivo EAT 03:00:00
  6390. Indian/Cocos CCT 06:30:00
  6391. Indian/Chagos IOT 06:00:00
  6392. Indian/Mayotte EAT 03:00:00
  6393. Indian/Mauritius MUT 04:00:00
  6394. Indian/Maldives MVT 05:00:00
  6395. Indian/Comoro EAT 03:00:00
  6396. Indian/Mahe SCT 04:00:00
  6397. America/Thule ADT -1 days +21:00:00
  6398. America/Managua CST -1 days +18:00:00
  6399. America/Detroit EDT -1 days +20:00:00
  6400. America/Miquelon PMDT -1 days +22:00:00
  6401. America/Yellowknife MDT -1 days +18:00:00
  6402. America/Kralendijk AST -1 days +20:00:00
  6403. America/Ojinaga MDT -1 days +18:00:00
  6404. America/Menominee CDT -1 days +19:00:00
  6405. America/Tortola AST -1 days +20:00:00
  6406. America/Nome AKDT -1 days +16:00:00
  6407. America/Marigot AST -1 days +20:00:00
  6408. America/Maceio BRT -1 days +21:00:00
  6409. America/Recife BRT -1 days +21:00:00
  6410. America/Yakutat AKDT -1 days +16:00:00
  6411. America/Montevideo UYT -1 days +21:00:00
  6412. America/Bogota COT -1 days +19:00:00
  6413. America/St_Thomas AST -1 days +20:00:00
  6414. America/Rio_Branco ACT -1 days +19:00:00
  6415. America/Louisville EDT -1 days +20:00:00
  6416. America/New_York EDT -1 days +20:00:00
  6417. America/Santa_Isabel PST -1 days +16:00:00
  6418. America/Atikokan EST -1 days +19:00:00
  6419. America/Cordoba ART -1 days +21:00:00
  6420. America/Guyana GYT -1 days +20:00:00
  6421. America/Lima PET -1 days +19:00:00
  6422. America/Nassau EDT -1 days +20:00:00
  6423. America/Curacao AST -1 days +20:00:00
  6424. America/Mazatlan MST -1 days +17:00:00
  6425. America/Phoenix MST -1 days +17:00:00
  6426. America/St_Johns NDT -1 days +21:30:00
  6427. America/Caracas VET -1 days +19:30:00
  6428. America/Mendoza ART -1 days +21:00:00
  6429. America/Bahia BRT -1 days +21:00:00
  6430. America/Panama EST -1 days +19:00:00
  6431. America/Santarem BRT -1 days +21:00:00
  6432. America/Buenos_Aires ART -1 days +21:00:00
  6433. America/Scoresbysund EGT -1 days +23:00:00
  6434. America/Tijuana PDT -1 days +17:00:00
  6435. America/Araguaina BRT -1 days +21:00:00
  6436. America/Danmarkshavn GMT 00:00:00
  6437. America/Knox_IN CDT -1 days +19:00:00
  6438. America/Vancouver PDT -1 days +17:00:00
  6439. America/Santiago CLT -1 days +21:00:00
  6440. America/Juneau AKDT -1 days +16:00:00
  6441. America/St_Barthelemy AST -1 days +20:00:00
  6442. America/Blanc-Sablon AST -1 days +20:00:00
  6443. America/Los_Angeles PDT -1 days +17:00:00
  6444. America/Winnipeg CDT -1 days +19:00:00
  6445. America/Fort_Wayne EDT -1 days +20:00:00
  6446. America/Sao_Paulo BRT -1 days +21:00:00
  6447. America/Pangnirtung EDT -1 days +20:00:00
  6448. America/Porto_Velho AMT -1 days +20:00:00
  6449. America/Grenada AST -1 days +20:00:00
  6450. America/Sitka AKDT -1 days +16:00:00
  6451. America/Adak HDT -1 days +15:00:00
  6452. America/Cancun EST -1 days +19:00:00
  6453. America/St_Lucia AST -1 days +20:00:00
  6454. America/Rankin_Inlet CDT -1 days +19:00:00
  6455. America/Coral_Harbour EST -1 days +19:00:00
  6456. America/Belize CST -1 days +18:00:00
  6457. America/Merida CST -1 days +18:00:00
  6458. America/Boa_Vista AMT -1 days +20:00:00
  6459. America/Porto_Acre ACT -1 days +19:00:00
  6460. America/Regina CST -1 days +18:00:00
  6461. America/Fort_Nelson MST -1 days +17:00:00
  6462. America/Belem BRT -1 days +21:00:00
  6463. America/Hermosillo MST -1 days +17:00:00
  6464. America/Montserrat AST -1 days +20:00:00
  6465. America/Chihuahua MST -1 days +17:00:00
  6466. America/Asuncion PYST -1 days +21:00:00
  6467. America/Montreal EDT -1 days +20:00:00
  6468. America/Monterrey CST -1 days +18:00:00
  6469. America/Martinique AST -1 days +20:00:00
  6470. America/Chicago CDT -1 days +19:00:00
  6471. America/Iqaluit EDT -1 days +20:00:00
  6472. America/Resolute CDT -1 days +19:00:00
  6473. America/Cayman EDT -1 days +20:00:00
  6474. America/Paramaribo SRT -1 days +21:00:00
  6475. America/Guadeloupe AST -1 days +20:00:00
  6476. America/St_Vincent AST -1 days +20:00:00
  6477. America/Antigua AST -1 days +20:00:00
  6478. America/Indianapolis EDT -1 days +20:00:00
  6479. America/Catamarca ART -1 days +21:00:00
  6480. America/Lower_Princes AST -1 days +20:00:00
  6481. America/Rainy_River CDT -1 days +19:00:00
  6482. America/Tegucigalpa CST -1 days +18:00:00
  6483. America/Cambridge_Bay MDT -1 days +18:00:00
  6484. America/Glace_Bay ADT -1 days +21:00:00
  6485. America/Shiprock MDT -1 days +18:00:00
  6486. America/Grand_Turk AST -1 days +20:00:00
  6487. America/Puerto_Rico AST -1 days +20:00:00
  6488. America/Toronto EDT -1 days +20:00:00
  6489. America/Aruba AST -1 days +20:00:00
  6490. America/Campo_Grande AMT -1 days +20:00:00
  6491. America/Port-au-Prince EDT -1 days +20:00:00
  6492. America/Denver MDT -1 days +18:00:00
  6493. America/Creston MST -1 days +17:00:00
  6494. America/Cuiaba AMT -1 days +20:00:00
  6495. America/Matamoros CDT -1 days +19:00:00
  6496. America/Thunder_Bay EDT -1 days +20:00:00
  6497. America/El_Salvador CST -1 days +18:00:00
  6498. America/Dominica AST -1 days +20:00:00
  6499. America/Inuvik MDT -1 days +18:00:00
  6500. America/Havana CDT -1 days +20:00:00
  6501. America/Cayenne GFT -1 days +21:00:00
  6502. America/Moncton ADT -1 days +21:00:00
  6503. America/Manaus AMT -1 days +20:00:00
  6504. America/Ensenada PDT -1 days +17:00:00
  6505. America/Halifax ADT -1 days +21:00:00
  6506. America/Noronha FNT -1 days +22:00:00
  6507. America/Jujuy ART -1 days +21:00:00
  6508. America/Dawson PDT -1 days +17:00:00
  6509. America/Edmonton MDT -1 days +18:00:00
  6510. America/Fortaleza BRT -1 days +21:00:00
  6511. America/Boise MDT -1 days +18:00:00
  6512. America/Anchorage AKDT -1 days +16:00:00
  6513. America/Atka HDT -1 days +15:00:00
  6514. America/Dawson_Creek MST -1 days +17:00:00
  6515. America/La_Paz BOT -1 days +20:00:00
  6516. America/Port_of_Spain AST -1 days +20:00:00
  6517. America/Nipigon EDT -1 days +20:00:00
  6518. America/Guatemala CST -1 days +18:00:00
  6519. America/Guayaquil ECT -1 days +19:00:00
  6520. America/Jamaica EST -1 days +19:00:00
  6521. America/Santo_Domingo AST -1 days +20:00:00
  6522. America/Barbados AST -1 days +20:00:00
  6523. America/Rosario ART -1 days +21:00:00
  6524. America/Swift_Current CST -1 days +18:00:00
  6525. America/Eirunepe ACT -1 days +19:00:00
  6526. America/Whitehorse PDT -1 days +17:00:00
  6527. America/Costa_Rica CST -1 days +18:00:00
  6528. America/Anguilla AST -1 days +20:00:00
  6529. America/Virgin AST -1 days +20:00:00
  6530. America/Metlakatla PST -1 days +16:00:00
  6531. America/Mexico_City CST -1 days +18:00:00
  6532. America/Goose_Bay ADT -1 days +21:00:00
  6533. America/Bahia_Banderas CST -1 days +18:00:00
  6534. America/St_Kitts AST -1 days +20:00:00
  6535. America/Godthab WGT -1 days +21:00:00
  6536. \.
  6537.  
  6538.  
  6539. --
  6540. -- Data for Name: trackedbranches; Type: TABLE DATA; Schema: public; Owner: critic
  6541. --
  6542.  
  6543. COPY trackedbranches (id, repository, local_name, remote, remote_name, forced, disabled, updating, delay, previous, next) FROM stdin;
  6544. 1 1 * git://github.com/jensl/critic.git * t f f 1 day 2016-03-14 10:14:06.487938 2016-03-15 10:14:06.487938
  6545. 2 1 master git://github.com/jensl/critic.git master t f f 1 day 2016-03-14 10:14:06.770064 2016-03-15 10:14:06.770064
  6546. 3 2 * https://github.com/jwiegley/helloworld.git * t f f 1 day 2016-03-14 10:14:09.419314 2016-03-15 10:14:09.419314
  6547. 4 2 master https://github.com/jwiegley/helloworld.git master t f f 1 day 2016-03-14 10:14:10.231924 2016-03-15 10:14:10.231924
  6548. 5 3 * git://github.com/mo/non_ascii.git * t f f 1 day 2016-03-14 10:14:12.043438 2016-03-15 10:14:12.043438
  6549. 6 3 master git://github.com/mo/non_ascii.git master t f f 1 day 2016-03-14 10:14:12.326985 2016-03-15 10:14:12.326985
  6550. \.
  6551.  
  6552.  
  6553. --
  6554. -- Name: trackedbranches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  6555. --
  6556.  
  6557. SELECT pg_catalog.setval('trackedbranches_id_seq', 6, true);
  6558.  
  6559.  
  6560. --
  6561. -- Data for Name: trackedbranchlog; Type: TABLE DATA; Schema: public; Owner: critic
  6562. --
  6563.  
  6564. COPY trackedbranchlog (branch, "time", from_sha1, to_sha1, hook_output, successful) FROM stdin;
  6565. 2 2016-03-14 10:14:09.409335 0000000000000000000000000000000000000000 0a0520fc75bd1570bcb77c22db1d26df91d4d74d t
  6566. 4 2016-03-14 10:14:12.033377 0000000000000000000000000000000000000000 4a35ba4f937bc02e8c8c4dc8628e85727753dff3 t
  6567. 6 2016-03-14 10:14:13.721775 0000000000000000000000000000000000000000 2d96e01d3b53a9d47dd913051b2eb1dc9afb6548 t
  6568. \.
  6569.  
  6570.  
  6571. --
  6572. -- Data for Name: trackedbranchusers; Type: TABLE DATA; Schema: public; Owner: critic
  6573. --
  6574.  
  6575. COPY trackedbranchusers (branch, uid) FROM stdin;
  6576. \.
  6577.  
  6578.  
  6579. --
  6580. -- Data for Name: userabsence; Type: TABLE DATA; Schema: public; Owner: critic
  6581. --
  6582.  
  6583. COPY userabsence (uid, until) FROM stdin;
  6584. \.
  6585.  
  6586.  
  6587. --
  6588. -- Data for Name: useremails; Type: TABLE DATA; Schema: public; Owner: critic
  6589. --
  6590.  
  6591. COPY useremails (id, uid, email, verified, verification_token) FROM stdin;
  6592. 1 1 m@minimum.se \N \N
  6593. 2 2 toto@minimum.se \N \N
  6594. 3 3 alice@minimum.se \N \N
  6595. 4 4 bob@minimum.se \N \N
  6596. 5 5 dave@minimum.se \N \N
  6597. 6 6 erin@minimum.se \N \N
  6598. 7 7 conan@minimum.se \N \N
  6599. 8 8 justin.bc.bieber@devops.recordedfuture.com \N \N
  6600. \.
  6601.  
  6602.  
  6603. --
  6604. -- Name: useremails_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  6605. --
  6606.  
  6607. SELECT pg_catalog.setval('useremails_id_seq', 8, true);
  6608.  
  6609.  
  6610. --
  6611. -- Data for Name: usergitemails; Type: TABLE DATA; Schema: public; Owner: critic
  6612. --
  6613.  
  6614. COPY usergitemails (email, uid) FROM stdin;
  6615. m@minimum.se 1
  6616. toto@minimum.se 2
  6617. alice@minimum.se 3
  6618. bob@minimum.se 4
  6619. dave@minimum.se 5
  6620. erin@minimum.se 6
  6621. conan@minimum.se 7
  6622. justin.bc.bieber@devops.recordedfuture.com 8
  6623. \.
  6624.  
  6625.  
  6626. --
  6627. -- Data for Name: userpreferences; Type: TABLE DATA; Schema: public; Owner: critic
  6628. --
  6629.  
  6630. COPY userpreferences (item, uid, repository, filter, "integer", string) FROM stdin;
  6631. comment.diff.contextLines \N \N \N 3 \N
  6632. commit.diff.collapseSimpleHunks \N \N \N 0 \N
  6633. commit.diff.compactMode \N \N \N 1 \N
  6634. commit.diff.contextLines \N \N \N 5 \N
  6635. commit.diff.highlightIllegalWhitespace \N \N \N 1 \N
  6636. commit.diff.rulerColumn \N \N \N 0 \N
  6637. commit.diff.visualTabs \N \N \N 0 \N
  6638. commit.expandAllFiles \N \N \N 0 \N
  6639. commit.expandFilesLimit \N \N \N 0 \N
  6640. dashboard.defaultGroups \N \N \N \N owned,draft,active,watched
  6641. debug.enabled \N \N \N 0 \N
  6642. debug.extensions.customProcessCommits \N \N \N 0 \N
  6643. debug.profiling.abortChanges \N \N \N 0 \N
  6644. debug.profiling.databaseQueries \N \N \N 0 \N
  6645. debug.profiling.pageGeneration \N \N \N 0 \N
  6646. debug.profiling.submitChanges \N \N \N 0 \N
  6647. defaultPage \N \N \N \N home
  6648. defaultRepository \N \N \N \N
  6649. email.activated \N \N \N 1 \N
  6650. email.comment.contextLines \N \N \N 0 \N
  6651. email.enableAssociationRecipients \N \N \N 0 \N
  6652. email.ignoreOwnChanges \N \N \N 0 \N
  6653. email.lineLength \N \N \N 80 \N
  6654. email.listId \N \N \N \N
  6655. email.newReview.diff.contextLines \N \N \N 3 \N
  6656. email.newReview.diff.maxLines \N \N \N 250 \N
  6657. email.newReview.displayCommits \N \N \N 1 \N
  6658. email.newReview.displayDiffs \N \N \N 1 \N
  6659. email.newReview.displayReviewers \N \N \N 1 \N
  6660. email.newReview.displayStats \N \N \N 0 \N
  6661. email.newReview.displayWatchers \N \N \N 1 \N
  6662. email.newReview.stats.maxLines \N \N \N 250 \N
  6663. email.subjectLine.newReview \N \N \N \N New Review: %(summary)s
  6664. email.subjectLine.newishReview \N \N \N \N New(ish) Review: %(summary)s
  6665. email.subjectLine.pingedReview \N \N \N \N Pinged Review: %(summary)s
  6666. email.subjectLine.updatedReview.assignmentsChanged \N \N \N \N Updated Review: %(summary)s
  6667. email.subjectLine.updatedReview.commitsPushed \N \N \N \N Updated Review: %(summary)s
  6668. email.subjectLine.updatedReview.parentFiltersApplied \N \N \N \N Updated Review: %(summary)s
  6669. email.subjectLine.updatedReview.reviewRebased \N \N \N \N Updated Review: %(summary)s
  6670. email.subjectLine.updatedReview.submittedChanges \N \N \N \N Updated Review: %(summary)s
  6671. email.updatedReview.commentThreading \N \N \N 0 \N
  6672. email.updatedReview.diff.contextLines \N \N \N 3 \N
  6673. email.updatedReview.diff.maxLines \N \N \N 250 \N
  6674. email.updatedReview.displayCommits \N \N \N 1 \N
  6675. email.updatedReview.displayStats \N \N \N 0 \N
  6676. email.updatedReview.quotedComments \N \N \N \N all
  6677. email.updatedReview.relevantChangesOnly \N \N \N 0 \N
  6678. email.updatedReview.stats.maxLines \N \N \N 250 \N
  6679. email.urlType \N \N \N \N main
  6680. repository.urlType \N \N \N \N http
  6681. review.applyUpstreamFilters \N \N \N 1 \N
  6682. review.branchArchiveDelay.closed \N \N \N 7 \N
  6683. review.branchArchiveDelay.dropped \N \N \N 1 \N
  6684. review.createViaPush \N \N \N 0 \N
  6685. review.defaultOptOut \N \N \N 0 \N
  6686. review.dropAnyReview \N \N \N 0 \N
  6687. review.pingAnyReview \N \N \N 0 \N
  6688. review.updateCheckInterval \N \N \N 300 \N
  6689. review.useMustRevalidate \N \N \N 1 \N
  6690. style.defaultFont \N \N \N \N font-size: 10pt; font-family: sans-serif
  6691. style.sourceFont \N \N \N \N font-size: 10pt; font-family: monospace
  6692. style.tutorialFont \N \N \N \N font-size: 11pt; font-family: serif
  6693. timezone \N \N \N \N Universal/UTC
  6694. ui.asynchronousReviewMarking \N \N \N 0 \N
  6695. ui.convertIssueToNote \N \N \N 0 \N
  6696. ui.keyboardShortcuts \N \N \N 1 \N
  6697. ui.resolveIssueWarning \N \N \N 1 \N
  6698. ui.title.showReview \N \N \N \N %(id)s (%(progress)s) - %(summary)s - Opera Critic
  6699. defaultRepository 1 \N \N \N c
  6700. commit.diff.compactMode 1 \N \N 0 \N
  6701. review.createViaPush 1 \N \N 1 \N
  6702. \.
  6703.  
  6704.  
  6705. --
  6706. -- Data for Name: userresources; Type: TABLE DATA; Schema: public; Owner: critic
  6707. --
  6708.  
  6709. COPY userresources (uid, name, revision, source) FROM stdin;
  6710. \.
  6711.  
  6712.  
  6713. --
  6714. -- Data for Name: userroles; Type: TABLE DATA; Schema: public; Owner: critic
  6715. --
  6716.  
  6717. COPY userroles (uid, role) FROM stdin;
  6718. 1 administrator
  6719. 1 repositories
  6720. 1 newswriter
  6721. 1 developer
  6722. 7 administrator
  6723. \.
  6724.  
  6725.  
  6726. --
  6727. -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: critic
  6728. --
  6729.  
  6730. COPY users (id, name, fullname, password, email, status) FROM stdin;
  6731. 1 molsson molsson ö $2a$10$hkTIwxjFKQvT1nG3gNB2VuUz8aXyHCMA4.QHDx6mz4hyg51.W77DS 1 current
  6732. 2 toto To To $2a$10$hd20GywdtXPEKMa7fA3yEO0ymZn8/SI9d57rayfSLX6A5uZYekN76 2 retired
  6733. 3 alice Alice $2a$10$FiMlSeA2VXbigQf3Ygjn1.DH4RGFD6YAqRXJfYgZL6FnFn1nG3YrC 3 current
  6734. 4 bob Bob $2a$10$Q8OC7BD.SG9cMN74dd.sLe46JJ5J6oN.hnVvqw/flh0CNPxY1u3s6 4 current
  6735. 5 dave Dave $2a$10$21LLnSh3YxkQiaR9dDfiZ.HFuQ8K0uRaekUfa5z5kLdq/JIqYMPFi 5 current
  6736. 6 erin Erin $2a$10$GTx5RbWwos2THWaiSvX8leNFyIB6BKeJh9Mu5OlGprg6zqglf0JYK 6 current
  6737. 7 conan Conan $2a$10$R5H.ACNDcRqoX7aKvR0c9e0QWk0U98.knRttsn1QUQyfyeJFgn88G 7 current
  6738. 8 justin.bieber.bc.devops Justin BCRIPZ Biebz $2a$10$bUa8sfeak0HMl0TWOqhfQ.9FyRHtvFTje.kb5sx8cywz3ytImNhYa 8 current
  6739. \.
  6740.  
  6741.  
  6742. --
  6743. -- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
  6744. --
  6745.  
  6746. SELECT pg_catalog.setval('users_id_seq', 8, true);
  6747.  
  6748.  
  6749. --
  6750. -- Data for Name: usersessions; Type: TABLE DATA; Schema: public; Owner: critic
  6751. --
  6752.  
  6753. COPY usersessions (key, uid, atime) FROM stdin;
  6754. y2Jgo5DlBqnbkyifyCeITtgndDo= 1 2016-03-14 10:14:06.150462
  6755. sVGIxl8r/sevYEak24EQfRsWq8M= 1 2016-03-14 10:14:06.599571
  6756. EXLS3niBUrW4mZAKvdq5Ad5WWSg= 1 2016-03-14 10:14:07.502226
  6757. 0bNZPZYmYEUBCk6Z30FCb2uLyPA= 1 2016-03-14 10:14:07.918332
  6758. iMY2G73Y6cDA/nbecB4SJua4gwY= 1 2016-03-14 10:14:08.042609
  6759. FWbiecVRciefoBmwvcTbKa4a0nU= 1 2016-03-14 10:14:08.168718
  6760. \.
  6761.  
  6762.  
  6763. --
  6764. -- Name: batches_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6765. --
  6766.  
  6767. ALTER TABLE ONLY batches
  6768. ADD CONSTRAINT batches_pkey PRIMARY KEY (id);
  6769.  
  6770.  
  6771. --
  6772. -- Name: branches_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6773. --
  6774.  
  6775. ALTER TABLE ONLY branches
  6776. ADD CONSTRAINT branches_pkey PRIMARY KEY (id);
  6777.  
  6778.  
  6779. --
  6780. -- Name: branches_repository_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6781. --
  6782.  
  6783. ALTER TABLE ONLY branches
  6784. ADD CONSTRAINT branches_repository_name_key UNIQUE (repository, name);
  6785.  
  6786.  
  6787. --
  6788. -- Name: changesets_parent_child_type_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6789. --
  6790.  
  6791. ALTER TABLE ONLY changesets
  6792. ADD CONSTRAINT changesets_parent_child_type_key UNIQUE (parent, child, type);
  6793.  
  6794.  
  6795. --
  6796. -- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6797. --
  6798.  
  6799. ALTER TABLE ONLY changesets
  6800. ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
  6801.  
  6802.  
  6803. --
  6804. -- Name: checkbranchnotes_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6805. --
  6806.  
  6807. ALTER TABLE ONLY checkbranchnotes
  6808. ADD CONSTRAINT checkbranchnotes_pkey PRIMARY KEY (repository, branch, upstream, sha1);
  6809.  
  6810.  
  6811. --
  6812. -- Name: chunks_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6813. --
  6814.  
  6815. ALTER TABLE ONLY chunks
  6816. ADD CONSTRAINT chunks_pkey PRIMARY KEY (id);
  6817.  
  6818.  
  6819. --
  6820. -- Name: commentchainlines_chain_sha1_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6821. --
  6822.  
  6823. ALTER TABLE ONLY commentchainlines
  6824. ADD CONSTRAINT commentchainlines_chain_sha1_key UNIQUE (chain, sha1);
  6825.  
  6826.  
  6827. --
  6828. -- Name: commentchains_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6829. --
  6830.  
  6831. ALTER TABLE ONLY commentchains
  6832. ADD CONSTRAINT commentchains_pkey PRIMARY KEY (id);
  6833.  
  6834.  
  6835. --
  6836. -- Name: commentchainusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6837. --
  6838.  
  6839. ALTER TABLE ONLY commentchainusers
  6840. ADD CONSTRAINT commentchainusers_pkey PRIMARY KEY (chain, uid);
  6841.  
  6842.  
  6843. --
  6844. -- Name: commentmessageids_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6845. --
  6846.  
  6847. ALTER TABLE ONLY commentmessageids
  6848. ADD CONSTRAINT commentmessageids_pkey PRIMARY KEY (uid, comment);
  6849.  
  6850.  
  6851. --
  6852. -- Name: comments_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6853. --
  6854.  
  6855. ALTER TABLE ONLY comments
  6856. ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
  6857.  
  6858.  
  6859. --
  6860. -- Name: commentstoread_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6861. --
  6862.  
  6863. ALTER TABLE ONLY commentstoread
  6864. ADD CONSTRAINT commentstoread_pkey PRIMARY KEY (uid, comment);
  6865.  
  6866.  
  6867. --
  6868. -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6869. --
  6870.  
  6871. ALTER TABLE ONLY commits
  6872. ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
  6873.  
  6874.  
  6875. --
  6876. -- Name: commits_sha1_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6877. --
  6878.  
  6879. ALTER TABLE ONLY commits
  6880. ADD CONSTRAINT commits_sha1_key UNIQUE (sha1);
  6881.  
  6882.  
  6883. --
  6884. -- Name: customchangesets_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6885. --
  6886.  
  6887. ALTER TABLE ONLY customchangesets
  6888. ADD CONSTRAINT customchangesets_pkey PRIMARY KEY (changeset);
  6889.  
  6890.  
  6891. --
  6892. -- Name: extensionfilterhookevents_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6893. --
  6894.  
  6895. ALTER TABLE ONLY extensionfilterhookevents
  6896. ADD CONSTRAINT extensionfilterhookevents_pkey PRIMARY KEY (id);
  6897.  
  6898.  
  6899. --
  6900. -- Name: extensionhookfilters_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6901. --
  6902.  
  6903. ALTER TABLE ONLY extensionhookfilters
  6904. ADD CONSTRAINT extensionhookfilters_pkey PRIMARY KEY (id);
  6905.  
  6906.  
  6907. --
  6908. -- Name: extensioninstalls_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6909. --
  6910.  
  6911. ALTER TABLE ONLY extensioninstalls
  6912. ADD CONSTRAINT extensioninstalls_pkey PRIMARY KEY (id);
  6913.  
  6914.  
  6915. --
  6916. -- Name: extensioninstalls_uid_extension_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6917. --
  6918.  
  6919. ALTER TABLE ONLY extensioninstalls
  6920. ADD CONSTRAINT extensioninstalls_uid_extension_key UNIQUE (uid, extension);
  6921.  
  6922.  
  6923. --
  6924. -- Name: extensionroles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6925. --
  6926.  
  6927. ALTER TABLE ONLY extensionroles
  6928. ADD CONSTRAINT extensionroles_pkey PRIMARY KEY (id);
  6929.  
  6930.  
  6931. --
  6932. -- Name: extensions_author_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6933. --
  6934.  
  6935. ALTER TABLE ONLY extensions
  6936. ADD CONSTRAINT extensions_author_name_key UNIQUE (author, name);
  6937.  
  6938.  
  6939. --
  6940. -- Name: extensions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6941. --
  6942.  
  6943. ALTER TABLE ONLY extensions
  6944. ADD CONSTRAINT extensions_pkey PRIMARY KEY (id);
  6945.  
  6946.  
  6947. --
  6948. -- Name: extensionstorage_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6949. --
  6950.  
  6951. ALTER TABLE ONLY extensionstorage
  6952. ADD CONSTRAINT extensionstorage_pkey PRIMARY KEY (extension, uid, key);
  6953.  
  6954.  
  6955. --
  6956. -- Name: extensionversions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6957. --
  6958.  
  6959. ALTER TABLE ONLY extensionversions
  6960. ADD CONSTRAINT extensionversions_pkey PRIMARY KEY (id);
  6961.  
  6962.  
  6963. --
  6964. -- Name: extensionversions_sha1_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6965. --
  6966.  
  6967. ALTER TABLE ONLY extensionversions
  6968. ADD CONSTRAINT extensionversions_sha1_key UNIQUE (sha1);
  6969.  
  6970.  
  6971. --
  6972. -- Name: externalusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6973. --
  6974.  
  6975. ALTER TABLE ONLY externalusers
  6976. ADD CONSTRAINT externalusers_pkey PRIMARY KEY (id);
  6977.  
  6978.  
  6979. --
  6980. -- Name: externalusers_provider_account_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6981. --
  6982.  
  6983. ALTER TABLE ONLY externalusers
  6984. ADD CONSTRAINT externalusers_provider_account_key UNIQUE (provider, account);
  6985.  
  6986.  
  6987. --
  6988. -- Name: files_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6989. --
  6990.  
  6991. ALTER TABLE ONLY files
  6992. ADD CONSTRAINT files_pkey PRIMARY KEY (id);
  6993.  
  6994.  
  6995. --
  6996. -- Name: fileversions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  6997. --
  6998.  
  6999. ALTER TABLE ONLY fileversions
  7000. ADD CONSTRAINT fileversions_pkey PRIMARY KEY (changeset, file);
  7001.  
  7002.  
  7003. --
  7004. -- Name: filters_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7005. --
  7006.  
  7007. ALTER TABLE ONLY filters
  7008. ADD CONSTRAINT filters_pkey PRIMARY KEY (id);
  7009.  
  7010.  
  7011. --
  7012. -- Name: gitusers_email_fullname_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7013. --
  7014.  
  7015. ALTER TABLE ONLY gitusers
  7016. ADD CONSTRAINT gitusers_email_fullname_key UNIQUE (email, fullname);
  7017.  
  7018.  
  7019. --
  7020. -- Name: gitusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7021. --
  7022.  
  7023. ALTER TABLE ONLY gitusers
  7024. ADD CONSTRAINT gitusers_pkey PRIMARY KEY (id);
  7025.  
  7026.  
  7027. --
  7028. -- Name: knownremotes_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7029. --
  7030.  
  7031. ALTER TABLE ONLY knownremotes
  7032. ADD CONSTRAINT knownremotes_pkey PRIMARY KEY (url);
  7033.  
  7034.  
  7035. --
  7036. -- Name: lockedreviews_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7037. --
  7038.  
  7039. ALTER TABLE ONLY lockedreviews
  7040. ADD CONSTRAINT lockedreviews_pkey PRIMARY KEY (review);
  7041.  
  7042.  
  7043. --
  7044. -- Name: mergebases_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7045. --
  7046.  
  7047. ALTER TABLE ONLY mergebases
  7048. ADD CONSTRAINT mergebases_pkey PRIMARY KEY (commit);
  7049.  
  7050.  
  7051. --
  7052. -- Name: mergereplays_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7053. --
  7054.  
  7055. ALTER TABLE ONLY mergereplays
  7056. ADD CONSTRAINT mergereplays_pkey PRIMARY KEY (original);
  7057.  
  7058.  
  7059. --
  7060. -- Name: newsitems_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7061. --
  7062.  
  7063. ALTER TABLE ONLY newsitems
  7064. ADD CONSTRAINT newsitems_pkey PRIMARY KEY (id);
  7065.  
  7066.  
  7067. --
  7068. -- Name: oauthstates_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7069. --
  7070.  
  7071. ALTER TABLE ONLY oauthstates
  7072. ADD CONSTRAINT oauthstates_pkey PRIMARY KEY (state);
  7073.  
  7074.  
  7075. --
  7076. -- Name: preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7077. --
  7078.  
  7079. ALTER TABLE ONLY preferences
  7080. ADD CONSTRAINT preferences_pkey PRIMARY KEY (item);
  7081.  
  7082.  
  7083. --
  7084. -- Name: reachable_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7085. --
  7086.  
  7087. ALTER TABLE ONLY reachable
  7088. ADD CONSTRAINT reachable_pkey PRIMARY KEY (branch, commit);
  7089.  
  7090.  
  7091. --
  7092. -- Name: relevantcommits_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7093. --
  7094.  
  7095. ALTER TABLE ONLY relevantcommits
  7096. ADD CONSTRAINT relevantcommits_pkey PRIMARY KEY (commit, parent, file, relevant);
  7097.  
  7098.  
  7099. --
  7100. -- Name: repositories_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7101. --
  7102.  
  7103. ALTER TABLE ONLY repositories
  7104. ADD CONSTRAINT repositories_name_key UNIQUE (name);
  7105.  
  7106.  
  7107. --
  7108. -- Name: repositories_path_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7109. --
  7110.  
  7111. ALTER TABLE ONLY repositories
  7112. ADD CONSTRAINT repositories_path_key UNIQUE (path);
  7113.  
  7114.  
  7115. --
  7116. -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7117. --
  7118.  
  7119. ALTER TABLE ONLY repositories
  7120. ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
  7121.  
  7122.  
  7123. --
  7124. -- Name: reviewassignmentchanges_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7125. --
  7126.  
  7127. ALTER TABLE ONLY reviewassignmentchanges
  7128. ADD CONSTRAINT reviewassignmentchanges_pkey PRIMARY KEY (transaction, file, uid);
  7129.  
  7130.  
  7131. --
  7132. -- Name: reviewassignmentstransactions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7133. --
  7134.  
  7135. ALTER TABLE ONLY reviewassignmentstransactions
  7136. ADD CONSTRAINT reviewassignmentstransactions_pkey PRIMARY KEY (id);
  7137.  
  7138.  
  7139. --
  7140. -- Name: reviewchangesets_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7141. --
  7142.  
  7143. ALTER TABLE ONLY reviewchangesets
  7144. ADD CONSTRAINT reviewchangesets_pkey PRIMARY KEY (review, changeset);
  7145.  
  7146.  
  7147. --
  7148. -- Name: reviewfiles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7149. --
  7150.  
  7151. ALTER TABLE ONLY reviewfiles
  7152. ADD CONSTRAINT reviewfiles_pkey PRIMARY KEY (id);
  7153.  
  7154.  
  7155. --
  7156. -- Name: reviewfilters_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7157. --
  7158.  
  7159. ALTER TABLE ONLY reviewfilters
  7160. ADD CONSTRAINT reviewfilters_pkey PRIMARY KEY (id);
  7161.  
  7162.  
  7163. --
  7164. -- Name: reviewmergeconfirmations_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7165. --
  7166.  
  7167. ALTER TABLE ONLY reviewmergeconfirmations
  7168. ADD CONSTRAINT reviewmergeconfirmations_pkey PRIMARY KEY (id);
  7169.  
  7170.  
  7171. --
  7172. -- Name: reviewmergeconfirmations_review_uid_merge_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7173. --
  7174.  
  7175. ALTER TABLE ONLY reviewmergeconfirmations
  7176. ADD CONSTRAINT reviewmergeconfirmations_review_uid_merge_key UNIQUE (review, uid, merge);
  7177.  
  7178.  
  7179. --
  7180. -- Name: reviewmergecontributions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7181. --
  7182.  
  7183. ALTER TABLE ONLY reviewmergecontributions
  7184. ADD CONSTRAINT reviewmergecontributions_pkey PRIMARY KEY (id, merged);
  7185.  
  7186.  
  7187. --
  7188. -- Name: reviewmessageids_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7189. --
  7190.  
  7191. ALTER TABLE ONLY reviewmessageids
  7192. ADD CONSTRAINT reviewmessageids_pkey PRIMARY KEY (uid, review);
  7193.  
  7194.  
  7195. --
  7196. -- Name: reviewrebases_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7197. --
  7198.  
  7199. ALTER TABLE ONLY reviewrebases
  7200. ADD CONSTRAINT reviewrebases_pkey PRIMARY KEY (id);
  7201.  
  7202.  
  7203. --
  7204. -- Name: reviewrebases_review_old_head_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7205. --
  7206.  
  7207. ALTER TABLE ONLY reviewrebases
  7208. ADD CONSTRAINT reviewrebases_review_old_head_key UNIQUE (review, old_head);
  7209.  
  7210.  
  7211. --
  7212. -- Name: reviewrecipientfilters_review_uid_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7213. --
  7214.  
  7215. ALTER TABLE ONLY reviewrecipientfilters
  7216. ADD CONSTRAINT reviewrecipientfilters_review_uid_key UNIQUE (review, uid);
  7217.  
  7218.  
  7219. --
  7220. -- Name: reviews_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7221. --
  7222.  
  7223. ALTER TABLE ONLY reviews
  7224. ADD CONSTRAINT reviews_pkey PRIMARY KEY (id);
  7225.  
  7226.  
  7227. --
  7228. -- Name: reviewuserfiles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7229. --
  7230.  
  7231. ALTER TABLE ONLY reviewuserfiles
  7232. ADD CONSTRAINT reviewuserfiles_pkey PRIMARY KEY (file, uid);
  7233.  
  7234.  
  7235. --
  7236. -- Name: reviewusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7237. --
  7238.  
  7239. ALTER TABLE ONLY reviewusers
  7240. ADD CONSTRAINT reviewusers_pkey PRIMARY KEY (review, uid);
  7241.  
  7242.  
  7243. --
  7244. -- Name: roles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7245. --
  7246.  
  7247. ALTER TABLE ONLY roles
  7248. ADD CONSTRAINT roles_pkey PRIMARY KEY (name);
  7249.  
  7250.  
  7251. --
  7252. -- Name: scheduledreviewbrancharchivals_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7253. --
  7254.  
  7255. ALTER TABLE ONLY scheduledreviewbrancharchivals
  7256. ADD CONSTRAINT scheduledreviewbrancharchivals_pkey PRIMARY KEY (review);
  7257.  
  7258.  
  7259. --
  7260. -- Name: systemidentities_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7261. --
  7262.  
  7263. ALTER TABLE ONLY systemidentities
  7264. ADD CONSTRAINT systemidentities_name_key UNIQUE (name);
  7265.  
  7266.  
  7267. --
  7268. -- Name: systemidentities_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7269. --
  7270.  
  7271. ALTER TABLE ONLY systemidentities
  7272. ADD CONSTRAINT systemidentities_pkey PRIMARY KEY (key);
  7273.  
  7274.  
  7275. --
  7276. -- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7277. --
  7278.  
  7279. ALTER TABLE ONLY tags
  7280. ADD CONSTRAINT tags_pkey PRIMARY KEY (id);
  7281.  
  7282.  
  7283. --
  7284. -- Name: tags_repository_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7285. --
  7286.  
  7287. ALTER TABLE ONLY tags
  7288. ADD CONSTRAINT tags_repository_name_key UNIQUE (repository, name);
  7289.  
  7290.  
  7291. --
  7292. -- Name: timezones_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7293. --
  7294.  
  7295. ALTER TABLE ONLY timezones
  7296. ADD CONSTRAINT timezones_pkey PRIMARY KEY (name);
  7297.  
  7298.  
  7299. --
  7300. -- Name: trackedbranches_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7301. --
  7302.  
  7303. ALTER TABLE ONLY trackedbranches
  7304. ADD CONSTRAINT trackedbranches_pkey PRIMARY KEY (id);
  7305.  
  7306.  
  7307. --
  7308. -- Name: trackedbranches_repository_local_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7309. --
  7310.  
  7311. ALTER TABLE ONLY trackedbranches
  7312. ADD CONSTRAINT trackedbranches_repository_local_name_key UNIQUE (repository, local_name);
  7313.  
  7314.  
  7315. --
  7316. -- Name: trackedbranchusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7317. --
  7318.  
  7319. ALTER TABLE ONLY trackedbranchusers
  7320. ADD CONSTRAINT trackedbranchusers_pkey PRIMARY KEY (branch, uid);
  7321.  
  7322.  
  7323. --
  7324. -- Name: useremails_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7325. --
  7326.  
  7327. ALTER TABLE ONLY useremails
  7328. ADD CONSTRAINT useremails_pkey PRIMARY KEY (id);
  7329.  
  7330.  
  7331. --
  7332. -- Name: useremails_uid_email_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7333. --
  7334.  
  7335. ALTER TABLE ONLY useremails
  7336. ADD CONSTRAINT useremails_uid_email_key UNIQUE (uid, email);
  7337.  
  7338.  
  7339. --
  7340. -- Name: usergitemails_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7341. --
  7342.  
  7343. ALTER TABLE ONLY usergitemails
  7344. ADD CONSTRAINT usergitemails_pkey PRIMARY KEY (email, uid);
  7345.  
  7346.  
  7347. --
  7348. -- Name: userresources_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7349. --
  7350.  
  7351. ALTER TABLE ONLY userresources
  7352. ADD CONSTRAINT userresources_pkey PRIMARY KEY (uid, name, revision);
  7353.  
  7354.  
  7355. --
  7356. -- Name: users_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7357. --
  7358.  
  7359. ALTER TABLE ONLY users
  7360. ADD CONSTRAINT users_name_key UNIQUE (name);
  7361.  
  7362.  
  7363. --
  7364. -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7365. --
  7366.  
  7367. ALTER TABLE ONLY users
  7368. ADD CONSTRAINT users_pkey PRIMARY KEY (id);
  7369.  
  7370.  
  7371. --
  7372. -- Name: usersessions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
  7373. --
  7374.  
  7375. ALTER TABLE ONLY usersessions
  7376. ADD CONSTRAINT usersessions_pkey PRIMARY KEY (key);
  7377.  
  7378.  
  7379. --
  7380. -- Name: batches_review_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7381. --
  7382.  
  7383. CREATE INDEX batches_review_uid ON batches USING btree (review, uid);
  7384.  
  7385.  
  7386. --
  7387. -- Name: changesets_child; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7388. --
  7389.  
  7390. CREATE INDEX changesets_child ON changesets USING btree (child);
  7391.  
  7392.  
  7393. --
  7394. -- Name: chunks_changeset_file; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7395. --
  7396.  
  7397. CREATE INDEX chunks_changeset_file ON chunks USING btree (changeset, file);
  7398.  
  7399.  
  7400. --
  7401. -- Name: codecontexts_sha1_first_last; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7402. --
  7403.  
  7404. CREATE INDEX codecontexts_sha1_first_last ON codecontexts USING btree (sha1, first_line, last_line);
  7405.  
  7406.  
  7407. --
  7408. -- Name: commentchainchanges_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7409. --
  7410.  
  7411. CREATE INDEX commentchainchanges_batch ON commentchainchanges USING btree (batch);
  7412.  
  7413.  
  7414. --
  7415. -- Name: commentchainchanges_chain; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7416. --
  7417.  
  7418. CREATE INDEX commentchainchanges_chain ON commentchainchanges USING btree (chain);
  7419.  
  7420.  
  7421. --
  7422. -- Name: commentchainlines_chain_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7423. --
  7424.  
  7425. CREATE INDEX commentchainlines_chain_sha1 ON commentchainlines USING btree (chain, sha1);
  7426.  
  7427.  
  7428. --
  7429. -- Name: commentchains_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7430. --
  7431.  
  7432. CREATE INDEX commentchains_batch ON commentchains USING btree (batch);
  7433.  
  7434.  
  7435. --
  7436. -- Name: commentchains_review_file; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7437. --
  7438.  
  7439. CREATE INDEX commentchains_review_file ON commentchains USING btree (review, file);
  7440.  
  7441.  
  7442. --
  7443. -- Name: commentchains_review_type_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7444. --
  7445.  
  7446. CREATE INDEX commentchains_review_type_state ON commentchains USING btree (review, type, state);
  7447.  
  7448.  
  7449. --
  7450. -- Name: commentmessageids_comment; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7451. --
  7452.  
  7453. CREATE INDEX commentmessageids_comment ON commentmessageids USING btree (comment);
  7454.  
  7455.  
  7456. --
  7457. -- Name: comments_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7458. --
  7459.  
  7460. CREATE INDEX comments_batch ON comments USING btree (batch);
  7461.  
  7462.  
  7463. --
  7464. -- Name: comments_chain_uid_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7465. --
  7466.  
  7467. CREATE INDEX comments_chain_uid_state ON comments USING btree (chain, uid, state);
  7468.  
  7469.  
  7470. --
  7471. -- Name: comments_id_chain; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7472. --
  7473.  
  7474. CREATE INDEX comments_id_chain ON comments USING btree (id, chain);
  7475.  
  7476.  
  7477. --
  7478. -- Name: commentstoread_comment; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7479. --
  7480.  
  7481. CREATE INDEX commentstoread_comment ON commentstoread USING btree (comment);
  7482.  
  7483.  
  7484. --
  7485. -- Name: edges_child; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7486. --
  7487.  
  7488. CREATE INDEX edges_child ON edges USING btree (child);
  7489.  
  7490.  
  7491. --
  7492. -- Name: edges_parent; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7493. --
  7494.  
  7495. CREATE INDEX edges_parent ON edges USING btree (parent);
  7496.  
  7497.  
  7498. --
  7499. -- Name: extensionfilterhookcommits_event; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7500. --
  7501.  
  7502. CREATE INDEX extensionfilterhookcommits_event ON extensionfilterhookcommits USING btree (event);
  7503.  
  7504.  
  7505. --
  7506. -- Name: extensionfilterhookfiles_event; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7507. --
  7508.  
  7509. CREATE INDEX extensionfilterhookfiles_event ON extensionfilterhookfiles USING btree (event);
  7510.  
  7511.  
  7512. --
  7513. -- Name: extensionhookfilters_repository; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7514. --
  7515.  
  7516. CREATE INDEX extensionhookfilters_repository ON extensionhookfilters USING btree (repository);
  7517.  
  7518.  
  7519. --
  7520. -- Name: extensionhookfilters_uid_extension; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7521. --
  7522.  
  7523. CREATE INDEX extensionhookfilters_uid_extension ON extensionhookfilters USING btree (uid, extension);
  7524.  
  7525.  
  7526. --
  7527. -- Name: extensionlog_extension_uid_category; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7528. --
  7529.  
  7530. CREATE INDEX extensionlog_extension_uid_category ON extensionlog USING btree (extension, uid, category);
  7531.  
  7532.  
  7533. --
  7534. -- Name: files_path_gin; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7535. --
  7536.  
  7537. CREATE INDEX files_path_gin ON files USING gin (string_to_array(path, '/'::text));
  7538.  
  7539.  
  7540. --
  7541. -- Name: files_path_md5; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7542. --
  7543.  
  7544. CREATE UNIQUE INDEX files_path_md5 ON files USING btree (md5(path));
  7545.  
  7546.  
  7547. --
  7548. -- Name: fileversions_new_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7549. --
  7550.  
  7551. CREATE INDEX fileversions_new_sha1 ON fileversions USING btree (file, new_sha1);
  7552.  
  7553.  
  7554. --
  7555. -- Name: fileversions_old_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7556. --
  7557.  
  7558. CREATE INDEX fileversions_old_sha1 ON fileversions USING btree (file, old_sha1);
  7559.  
  7560.  
  7561. --
  7562. -- Name: filters_uid_repository_path_md5; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7563. --
  7564.  
  7565. CREATE UNIQUE INDEX filters_uid_repository_path_md5 ON filters USING btree (uid, repository, md5(path));
  7566.  
  7567.  
  7568. --
  7569. -- Name: previousreachable_rebase; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7570. --
  7571.  
  7572. CREATE INDEX previousreachable_rebase ON previousreachable USING btree (rebase);
  7573.  
  7574.  
  7575. --
  7576. -- Name: reachable_branch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7577. --
  7578.  
  7579. CREATE INDEX reachable_branch ON reachable USING btree (branch);
  7580.  
  7581.  
  7582. --
  7583. -- Name: reachable_commit; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7584. --
  7585.  
  7586. CREATE INDEX reachable_commit ON reachable USING btree (commit);
  7587.  
  7588.  
  7589. --
  7590. -- Name: reviewfilechanges_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7591. --
  7592.  
  7593. CREATE INDEX reviewfilechanges_batch ON reviewfilechanges USING btree (batch);
  7594.  
  7595.  
  7596. --
  7597. -- Name: reviewfilechanges_file; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7598. --
  7599.  
  7600. CREATE INDEX reviewfilechanges_file ON reviewfilechanges USING btree (file);
  7601.  
  7602.  
  7603. --
  7604. -- Name: reviewfilechanges_time; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7605. --
  7606.  
  7607. CREATE INDEX reviewfilechanges_time ON reviewfilechanges USING btree ("time");
  7608.  
  7609.  
  7610. --
  7611. -- Name: reviewfilechanges_uid_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7612. --
  7613.  
  7614. CREATE INDEX reviewfilechanges_uid_state ON reviewfilechanges USING btree (uid, state);
  7615.  
  7616.  
  7617. --
  7618. -- Name: reviewfiles_review_changeset; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7619. --
  7620.  
  7621. CREATE INDEX reviewfiles_review_changeset ON reviewfiles USING btree (review, changeset);
  7622.  
  7623.  
  7624. --
  7625. -- Name: reviewfiles_review_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7626. --
  7627.  
  7628. CREATE INDEX reviewfiles_review_state ON reviewfiles USING btree (review, state);
  7629.  
  7630.  
  7631. --
  7632. -- Name: reviewfilters_review_uid_path_md5; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7633. --
  7634.  
  7635. CREATE UNIQUE INDEX reviewfilters_review_uid_path_md5 ON reviewfilters USING btree (review, uid, md5(path));
  7636.  
  7637.  
  7638. --
  7639. -- Name: reviewmessageids_review; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7640. --
  7641.  
  7642. CREATE INDEX reviewmessageids_review ON reviewmessageids USING btree (review);
  7643.  
  7644.  
  7645. --
  7646. -- Name: reviews_branch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7647. --
  7648.  
  7649. CREATE INDEX reviews_branch ON reviews USING btree (branch);
  7650.  
  7651.  
  7652. --
  7653. -- Name: reviewuserfiles_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7654. --
  7655.  
  7656. CREATE INDEX reviewuserfiles_uid ON reviewuserfiles USING btree (uid);
  7657.  
  7658.  
  7659. --
  7660. -- Name: reviewusers_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7661. --
  7662.  
  7663. CREATE INDEX reviewusers_uid ON reviewusers USING btree (uid);
  7664.  
  7665.  
  7666. --
  7667. -- Name: tags_repository_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7668. --
  7669.  
  7670. CREATE INDEX tags_repository_sha1 ON tags USING btree (repository, sha1);
  7671.  
  7672.  
  7673. --
  7674. -- Name: trackedbranchlog_branch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7675. --
  7676.  
  7677. CREATE INDEX trackedbranchlog_branch ON trackedbranchlog USING btree (branch);
  7678.  
  7679.  
  7680. --
  7681. -- Name: userabsence_uid_until; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7682. --
  7683.  
  7684. CREATE INDEX userabsence_uid_until ON userabsence USING btree (uid, until);
  7685.  
  7686.  
  7687. --
  7688. -- Name: usergitemails_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7689. --
  7690.  
  7691. CREATE INDEX usergitemails_uid ON usergitemails USING btree (uid);
  7692.  
  7693.  
  7694. --
  7695. -- Name: userpreferences_item; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7696. --
  7697.  
  7698. CREATE UNIQUE INDEX userpreferences_item ON userpreferences USING btree (item) WHERE (((uid IS NULL) AND (repository IS NULL)) AND (filter IS NULL));
  7699.  
  7700.  
  7701. --
  7702. -- Name: userpreferences_item_repository; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7703. --
  7704.  
  7705. CREATE UNIQUE INDEX userpreferences_item_repository ON userpreferences USING btree (item, repository) WHERE (((uid IS NULL) AND (repository IS NOT NULL)) AND (filter IS NULL));
  7706.  
  7707.  
  7708. --
  7709. -- Name: userpreferences_item_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7710. --
  7711.  
  7712. CREATE UNIQUE INDEX userpreferences_item_uid ON userpreferences USING btree (item, uid) WHERE (((uid IS NOT NULL) AND (repository IS NULL)) AND (filter IS NULL));
  7713.  
  7714.  
  7715. --
  7716. -- Name: userpreferences_item_uid_filter; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7717. --
  7718.  
  7719. CREATE UNIQUE INDEX userpreferences_item_uid_filter ON userpreferences USING btree (item, uid, filter) WHERE (((uid IS NOT NULL) AND (repository IS NULL)) AND (filter IS NOT NULL));
  7720.  
  7721.  
  7722. --
  7723. -- Name: userpreferences_item_uid_repository; Type: INDEX; Schema: public; Owner: critic; Tablespace:
  7724. --
  7725.  
  7726. CREATE UNIQUE INDEX userpreferences_item_uid_repository ON userpreferences USING btree (item, uid, repository) WHERE (((uid IS NOT NULL) AND (repository IS NOT NULL)) AND (filter IS NULL));
  7727.  
  7728.  
  7729. --
  7730. -- Name: batches_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7731. --
  7732.  
  7733. ALTER TABLE ONLY batches
  7734. ADD CONSTRAINT batches_comment_fkey FOREIGN KEY (comment) REFERENCES commentchains(id) ON DELETE CASCADE;
  7735.  
  7736.  
  7737. --
  7738. -- Name: batches_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7739. --
  7740.  
  7741. ALTER TABLE ONLY batches
  7742. ADD CONSTRAINT batches_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  7743.  
  7744.  
  7745. --
  7746. -- Name: batches_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7747. --
  7748.  
  7749. ALTER TABLE ONLY batches
  7750. ADD CONSTRAINT batches_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  7751.  
  7752.  
  7753. --
  7754. -- Name: branches_base_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7755. --
  7756.  
  7757. ALTER TABLE ONLY branches
  7758. ADD CONSTRAINT branches_base_fkey FOREIGN KEY (base) REFERENCES branches(id);
  7759.  
  7760.  
  7761. --
  7762. -- Name: branches_head_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7763. --
  7764.  
  7765. ALTER TABLE ONLY branches
  7766. ADD CONSTRAINT branches_head_fkey FOREIGN KEY (head) REFERENCES commits(id);
  7767.  
  7768.  
  7769. --
  7770. -- Name: branches_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7771. --
  7772.  
  7773. ALTER TABLE ONLY branches
  7774. ADD CONSTRAINT branches_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
  7775.  
  7776.  
  7777. --
  7778. -- Name: branches_tail_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7779. --
  7780.  
  7781. ALTER TABLE ONLY branches
  7782. ADD CONSTRAINT branches_tail_fkey FOREIGN KEY (tail) REFERENCES commits(id);
  7783.  
  7784.  
  7785. --
  7786. -- Name: changesets_child_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7787. --
  7788.  
  7789. ALTER TABLE ONLY changesets
  7790. ADD CONSTRAINT changesets_child_fkey FOREIGN KEY (child) REFERENCES commits(id) ON DELETE CASCADE;
  7791.  
  7792.  
  7793. --
  7794. -- Name: changesets_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7795. --
  7796.  
  7797. ALTER TABLE ONLY changesets
  7798. ADD CONSTRAINT changesets_parent_fkey FOREIGN KEY (parent) REFERENCES commits(id) ON DELETE CASCADE;
  7799.  
  7800.  
  7801. --
  7802. -- Name: checkbranchnotes_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7803. --
  7804.  
  7805. ALTER TABLE ONLY checkbranchnotes
  7806. ADD CONSTRAINT checkbranchnotes_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
  7807.  
  7808.  
  7809. --
  7810. -- Name: checkbranchnotes_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7811. --
  7812.  
  7813. ALTER TABLE ONLY checkbranchnotes
  7814. ADD CONSTRAINT checkbranchnotes_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE SET NULL;
  7815.  
  7816.  
  7817. --
  7818. -- Name: checkbranchnotes_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7819. --
  7820.  
  7821. ALTER TABLE ONLY checkbranchnotes
  7822. ADD CONSTRAINT checkbranchnotes_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  7823.  
  7824.  
  7825. --
  7826. -- Name: chunks_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7827. --
  7828.  
  7829. ALTER TABLE ONLY chunks
  7830. ADD CONSTRAINT chunks_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
  7831.  
  7832.  
  7833. --
  7834. -- Name: chunks_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7835. --
  7836.  
  7837. ALTER TABLE ONLY chunks
  7838. ADD CONSTRAINT chunks_file_fkey FOREIGN KEY (file) REFERENCES files(id);
  7839.  
  7840.  
  7841. --
  7842. -- Name: commentchainchanges_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7843. --
  7844.  
  7845. ALTER TABLE ONLY commentchainchanges
  7846. ADD CONSTRAINT commentchainchanges_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id) ON DELETE CASCADE;
  7847.  
  7848.  
  7849. --
  7850. -- Name: commentchainchanges_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7851. --
  7852.  
  7853. ALTER TABLE ONLY commentchainchanges
  7854. ADD CONSTRAINT commentchainchanges_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
  7855.  
  7856.  
  7857. --
  7858. -- Name: commentchainchanges_from_addressed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7859. --
  7860.  
  7861. ALTER TABLE ONLY commentchainchanges
  7862. ADD CONSTRAINT commentchainchanges_from_addressed_by_fkey FOREIGN KEY (from_addressed_by) REFERENCES commits(id);
  7863.  
  7864.  
  7865. --
  7866. -- Name: commentchainchanges_from_last_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7867. --
  7868.  
  7869. ALTER TABLE ONLY commentchainchanges
  7870. ADD CONSTRAINT commentchainchanges_from_last_commit_fkey FOREIGN KEY (from_last_commit) REFERENCES commits(id);
  7871.  
  7872.  
  7873. --
  7874. -- Name: commentchainchanges_to_addressed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7875. --
  7876.  
  7877. ALTER TABLE ONLY commentchainchanges
  7878. ADD CONSTRAINT commentchainchanges_to_addressed_by_fkey FOREIGN KEY (to_addressed_by) REFERENCES commits(id);
  7879.  
  7880.  
  7881. --
  7882. -- Name: commentchainchanges_to_last_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7883. --
  7884.  
  7885. ALTER TABLE ONLY commentchainchanges
  7886. ADD CONSTRAINT commentchainchanges_to_last_commit_fkey FOREIGN KEY (to_last_commit) REFERENCES commits(id);
  7887.  
  7888.  
  7889. --
  7890. -- Name: commentchainchanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7891. --
  7892.  
  7893. ALTER TABLE ONLY commentchainchanges
  7894. ADD CONSTRAINT commentchainchanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  7895.  
  7896.  
  7897. --
  7898. -- Name: commentchainlines_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7899. --
  7900.  
  7901. ALTER TABLE ONLY commentchainlines
  7902. ADD CONSTRAINT commentchainlines_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
  7903.  
  7904.  
  7905. --
  7906. -- Name: commentchainlines_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7907. --
  7908.  
  7909. ALTER TABLE ONLY commentchainlines
  7910. ADD CONSTRAINT commentchainlines_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  7911.  
  7912.  
  7913. --
  7914. -- Name: commentchains_addressed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7915. --
  7916.  
  7917. ALTER TABLE ONLY commentchains
  7918. ADD CONSTRAINT commentchains_addressed_by_fkey FOREIGN KEY (addressed_by) REFERENCES commits(id);
  7919.  
  7920.  
  7921. --
  7922. -- Name: commentchains_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7923. --
  7924.  
  7925. ALTER TABLE ONLY commentchains
  7926. ADD CONSTRAINT commentchains_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id) ON DELETE CASCADE;
  7927.  
  7928.  
  7929. --
  7930. -- Name: commentchains_closed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7931. --
  7932.  
  7933. ALTER TABLE ONLY commentchains
  7934. ADD CONSTRAINT commentchains_closed_by_fkey FOREIGN KEY (closed_by) REFERENCES users(id);
  7935.  
  7936.  
  7937. --
  7938. -- Name: commentchains_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7939. --
  7940.  
  7941. ALTER TABLE ONLY commentchains
  7942. ADD CONSTRAINT commentchains_file_fkey FOREIGN KEY (file) REFERENCES files(id);
  7943.  
  7944.  
  7945. --
  7946. -- Name: commentchains_first_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7947. --
  7948.  
  7949. ALTER TABLE ONLY commentchains
  7950. ADD CONSTRAINT commentchains_first_comment_fkey FOREIGN KEY (first_comment) REFERENCES comments(id);
  7951.  
  7952.  
  7953. --
  7954. -- Name: commentchains_first_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7955. --
  7956.  
  7957. ALTER TABLE ONLY commentchains
  7958. ADD CONSTRAINT commentchains_first_commit_fkey FOREIGN KEY (first_commit) REFERENCES commits(id);
  7959.  
  7960.  
  7961. --
  7962. -- Name: commentchains_last_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7963. --
  7964.  
  7965. ALTER TABLE ONLY commentchains
  7966. ADD CONSTRAINT commentchains_last_commit_fkey FOREIGN KEY (last_commit) REFERENCES commits(id);
  7967.  
  7968.  
  7969. --
  7970. -- Name: commentchains_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7971. --
  7972.  
  7973. ALTER TABLE ONLY commentchains
  7974. ADD CONSTRAINT commentchains_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
  7975.  
  7976.  
  7977. --
  7978. -- Name: commentchains_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7979. --
  7980.  
  7981. ALTER TABLE ONLY commentchains
  7982. ADD CONSTRAINT commentchains_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  7983.  
  7984.  
  7985. --
  7986. -- Name: commentchainusers_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7987. --
  7988.  
  7989. ALTER TABLE ONLY commentchainusers
  7990. ADD CONSTRAINT commentchainusers_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
  7991.  
  7992.  
  7993. --
  7994. -- Name: commentchainusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  7995. --
  7996.  
  7997. ALTER TABLE ONLY commentchainusers
  7998. ADD CONSTRAINT commentchainusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  7999.  
  8000.  
  8001. --
  8002. -- Name: commentmessageids_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8003. --
  8004.  
  8005. ALTER TABLE ONLY commentmessageids
  8006. ADD CONSTRAINT commentmessageids_comment_fkey FOREIGN KEY (comment) REFERENCES comments(id) ON DELETE CASCADE;
  8007.  
  8008.  
  8009. --
  8010. -- Name: commentmessageids_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8011. --
  8012.  
  8013. ALTER TABLE ONLY commentmessageids
  8014. ADD CONSTRAINT commentmessageids_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8015.  
  8016.  
  8017. --
  8018. -- Name: comments_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8019. --
  8020.  
  8021. ALTER TABLE ONLY comments
  8022. ADD CONSTRAINT comments_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id) ON DELETE CASCADE;
  8023.  
  8024.  
  8025. --
  8026. -- Name: comments_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8027. --
  8028.  
  8029. ALTER TABLE ONLY comments
  8030. ADD CONSTRAINT comments_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
  8031.  
  8032.  
  8033. --
  8034. -- Name: comments_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8035. --
  8036.  
  8037. ALTER TABLE ONLY comments
  8038. ADD CONSTRAINT comments_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8039.  
  8040.  
  8041. --
  8042. -- Name: commentstoread_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8043. --
  8044.  
  8045. ALTER TABLE ONLY commentstoread
  8046. ADD CONSTRAINT commentstoread_comment_fkey FOREIGN KEY (comment) REFERENCES comments(id) ON DELETE CASCADE;
  8047.  
  8048.  
  8049. --
  8050. -- Name: commentstoread_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8051. --
  8052.  
  8053. ALTER TABLE ONLY commentstoread
  8054. ADD CONSTRAINT commentstoread_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8055.  
  8056.  
  8057. --
  8058. -- Name: commits_author_gituser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8059. --
  8060.  
  8061. ALTER TABLE ONLY commits
  8062. ADD CONSTRAINT commits_author_gituser_fkey FOREIGN KEY (author_gituser) REFERENCES gitusers(id);
  8063.  
  8064.  
  8065. --
  8066. -- Name: commits_commit_gituser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8067. --
  8068.  
  8069. ALTER TABLE ONLY commits
  8070. ADD CONSTRAINT commits_commit_gituser_fkey FOREIGN KEY (commit_gituser) REFERENCES gitusers(id);
  8071.  
  8072.  
  8073. --
  8074. -- Name: customchangesets_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8075. --
  8076.  
  8077. ALTER TABLE ONLY customchangesets
  8078. ADD CONSTRAINT customchangesets_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
  8079.  
  8080.  
  8081. --
  8082. -- Name: edges_child_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8083. --
  8084.  
  8085. ALTER TABLE ONLY edges
  8086. ADD CONSTRAINT edges_child_fkey FOREIGN KEY (child) REFERENCES commits(id) ON DELETE CASCADE;
  8087.  
  8088.  
  8089. --
  8090. -- Name: edges_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8091. --
  8092.  
  8093. ALTER TABLE ONLY edges
  8094. ADD CONSTRAINT edges_parent_fkey FOREIGN KEY (parent) REFERENCES commits(id) ON DELETE CASCADE;
  8095.  
  8096.  
  8097. --
  8098. -- Name: extensionfilterhookcommits_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8099. --
  8100.  
  8101. ALTER TABLE ONLY extensionfilterhookcommits
  8102. ADD CONSTRAINT extensionfilterhookcommits_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id);
  8103.  
  8104.  
  8105. --
  8106. -- Name: extensionfilterhookcommits_event_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8107. --
  8108.  
  8109. ALTER TABLE ONLY extensionfilterhookcommits
  8110. ADD CONSTRAINT extensionfilterhookcommits_event_fkey FOREIGN KEY (event) REFERENCES extensionfilterhookevents(id) ON DELETE CASCADE;
  8111.  
  8112.  
  8113. --
  8114. -- Name: extensionfilterhookevents_filter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8115. --
  8116.  
  8117. ALTER TABLE ONLY extensionfilterhookevents
  8118. ADD CONSTRAINT extensionfilterhookevents_filter_fkey FOREIGN KEY (filter) REFERENCES extensionhookfilters(id) ON DELETE CASCADE;
  8119.  
  8120.  
  8121. --
  8122. -- Name: extensionfilterhookevents_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8123. --
  8124.  
  8125. ALTER TABLE ONLY extensionfilterhookevents
  8126. ADD CONSTRAINT extensionfilterhookevents_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8127.  
  8128.  
  8129. --
  8130. -- Name: extensionfilterhookevents_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8131. --
  8132.  
  8133. ALTER TABLE ONLY extensionfilterhookevents
  8134. ADD CONSTRAINT extensionfilterhookevents_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8135.  
  8136.  
  8137. --
  8138. -- Name: extensionfilterhookfiles_event_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8139. --
  8140.  
  8141. ALTER TABLE ONLY extensionfilterhookfiles
  8142. ADD CONSTRAINT extensionfilterhookfiles_event_fkey FOREIGN KEY (event) REFERENCES extensionfilterhookevents(id) ON DELETE CASCADE;
  8143.  
  8144.  
  8145. --
  8146. -- Name: extensionfilterhookfiles_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8147. --
  8148.  
  8149. ALTER TABLE ONLY extensionfilterhookfiles
  8150. ADD CONSTRAINT extensionfilterhookfiles_file_fkey FOREIGN KEY (file) REFERENCES files(id);
  8151.  
  8152.  
  8153. --
  8154. -- Name: extensionfilterhookroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8155. --
  8156.  
  8157. ALTER TABLE ONLY extensionfilterhookroles
  8158. ADD CONSTRAINT extensionfilterhookroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
  8159.  
  8160.  
  8161. --
  8162. -- Name: extensionhookfilters_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8163. --
  8164.  
  8165. ALTER TABLE ONLY extensionhookfilters
  8166. ADD CONSTRAINT extensionhookfilters_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id) ON DELETE CASCADE;
  8167.  
  8168.  
  8169. --
  8170. -- Name: extensionhookfilters_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8171. --
  8172.  
  8173. ALTER TABLE ONLY extensionhookfilters
  8174. ADD CONSTRAINT extensionhookfilters_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
  8175.  
  8176.  
  8177. --
  8178. -- Name: extensionhookfilters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8179. --
  8180.  
  8181. ALTER TABLE ONLY extensionhookfilters
  8182. ADD CONSTRAINT extensionhookfilters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8183.  
  8184.  
  8185. --
  8186. -- Name: extensioninjectroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8187. --
  8188.  
  8189. ALTER TABLE ONLY extensioninjectroles
  8190. ADD CONSTRAINT extensioninjectroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
  8191.  
  8192.  
  8193. --
  8194. -- Name: extensioninstalls_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8195. --
  8196.  
  8197. ALTER TABLE ONLY extensioninstalls
  8198. ADD CONSTRAINT extensioninstalls_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
  8199.  
  8200.  
  8201. --
  8202. -- Name: extensioninstalls_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8203. --
  8204.  
  8205. ALTER TABLE ONLY extensioninstalls
  8206. ADD CONSTRAINT extensioninstalls_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8207.  
  8208.  
  8209. --
  8210. -- Name: extensioninstalls_version_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8211. --
  8212.  
  8213. ALTER TABLE ONLY extensioninstalls
  8214. ADD CONSTRAINT extensioninstalls_version_fkey FOREIGN KEY (version) REFERENCES extensionversions(id);
  8215.  
  8216.  
  8217. --
  8218. -- Name: extensionlog_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8219. --
  8220.  
  8221. ALTER TABLE ONLY extensionlog
  8222. ADD CONSTRAINT extensionlog_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
  8223.  
  8224.  
  8225. --
  8226. -- Name: extensionlog_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8227. --
  8228.  
  8229. ALTER TABLE ONLY extensionlog
  8230. ADD CONSTRAINT extensionlog_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8231.  
  8232.  
  8233. --
  8234. -- Name: extensionpageroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8235. --
  8236.  
  8237. ALTER TABLE ONLY extensionpageroles
  8238. ADD CONSTRAINT extensionpageroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
  8239.  
  8240.  
  8241. --
  8242. -- Name: extensionprocesscommitsroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8243. --
  8244.  
  8245. ALTER TABLE ONLY extensionprocesscommitsroles
  8246. ADD CONSTRAINT extensionprocesscommitsroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
  8247.  
  8248.  
  8249. --
  8250. -- Name: extensionroles_version_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8251. --
  8252.  
  8253. ALTER TABLE ONLY extensionroles
  8254. ADD CONSTRAINT extensionroles_version_fkey FOREIGN KEY (version) REFERENCES extensionversions(id);
  8255.  
  8256.  
  8257. --
  8258. -- Name: extensions_author_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8259. --
  8260.  
  8261. ALTER TABLE ONLY extensions
  8262. ADD CONSTRAINT extensions_author_fkey FOREIGN KEY (author) REFERENCES users(id);
  8263.  
  8264.  
  8265. --
  8266. -- Name: extensionstorage_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8267. --
  8268.  
  8269. ALTER TABLE ONLY extensionstorage
  8270. ADD CONSTRAINT extensionstorage_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
  8271.  
  8272.  
  8273. --
  8274. -- Name: extensionstorage_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8275. --
  8276.  
  8277. ALTER TABLE ONLY extensionstorage
  8278. ADD CONSTRAINT extensionstorage_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8279.  
  8280.  
  8281. --
  8282. -- Name: extensionversions_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8283. --
  8284.  
  8285. ALTER TABLE ONLY extensionversions
  8286. ADD CONSTRAINT extensionversions_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
  8287.  
  8288.  
  8289. --
  8290. -- Name: externalusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8291. --
  8292.  
  8293. ALTER TABLE ONLY externalusers
  8294. ADD CONSTRAINT externalusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8295.  
  8296.  
  8297. --
  8298. -- Name: fileversions_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8299. --
  8300.  
  8301. ALTER TABLE ONLY fileversions
  8302. ADD CONSTRAINT fileversions_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
  8303.  
  8304.  
  8305. --
  8306. -- Name: fileversions_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8307. --
  8308.  
  8309. ALTER TABLE ONLY fileversions
  8310. ADD CONSTRAINT fileversions_file_fkey FOREIGN KEY (file) REFERENCES files(id);
  8311.  
  8312.  
  8313. --
  8314. -- Name: filters_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8315. --
  8316.  
  8317. ALTER TABLE ONLY filters
  8318. ADD CONSTRAINT filters_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
  8319.  
  8320.  
  8321. --
  8322. -- Name: filters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8323. --
  8324.  
  8325. ALTER TABLE ONLY filters
  8326. ADD CONSTRAINT filters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8327.  
  8328.  
  8329. --
  8330. -- Name: lockedreviews_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8331. --
  8332.  
  8333. ALTER TABLE ONLY lockedreviews
  8334. ADD CONSTRAINT lockedreviews_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
  8335.  
  8336.  
  8337. --
  8338. -- Name: mergebases_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8339. --
  8340.  
  8341. ALTER TABLE ONLY mergebases
  8342. ADD CONSTRAINT mergebases_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id) ON DELETE CASCADE;
  8343.  
  8344.  
  8345. --
  8346. -- Name: mergereplays_original_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8347. --
  8348.  
  8349. ALTER TABLE ONLY mergereplays
  8350. ADD CONSTRAINT mergereplays_original_fkey FOREIGN KEY (original) REFERENCES commits(id) ON DELETE CASCADE;
  8351.  
  8352.  
  8353. --
  8354. -- Name: mergereplays_replay_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8355. --
  8356.  
  8357. ALTER TABLE ONLY mergereplays
  8358. ADD CONSTRAINT mergereplays_replay_fkey FOREIGN KEY (replay) REFERENCES commits(id) ON DELETE CASCADE;
  8359.  
  8360.  
  8361. --
  8362. -- Name: newsread_item_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8363. --
  8364.  
  8365. ALTER TABLE ONLY newsread
  8366. ADD CONSTRAINT newsread_item_fkey FOREIGN KEY (item) REFERENCES newsitems(id) ON DELETE CASCADE;
  8367.  
  8368.  
  8369. --
  8370. -- Name: newsread_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8371. --
  8372.  
  8373. ALTER TABLE ONLY newsread
  8374. ADD CONSTRAINT newsread_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8375.  
  8376.  
  8377. --
  8378. -- Name: previousreachable_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8379. --
  8380.  
  8381. ALTER TABLE ONLY previousreachable
  8382. ADD CONSTRAINT previousreachable_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id);
  8383.  
  8384.  
  8385. --
  8386. -- Name: previousreachable_rebase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8387. --
  8388.  
  8389. ALTER TABLE ONLY previousreachable
  8390. ADD CONSTRAINT previousreachable_rebase_fkey FOREIGN KEY (rebase) REFERENCES reviewrebases(id) ON DELETE CASCADE;
  8391.  
  8392.  
  8393. --
  8394. -- Name: reachable_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8395. --
  8396.  
  8397. ALTER TABLE ONLY reachable
  8398. ADD CONSTRAINT reachable_branch_fkey FOREIGN KEY (branch) REFERENCES branches(id) ON DELETE CASCADE;
  8399.  
  8400.  
  8401. --
  8402. -- Name: reachable_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8403. --
  8404.  
  8405. ALTER TABLE ONLY reachable
  8406. ADD CONSTRAINT reachable_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id);
  8407.  
  8408.  
  8409. --
  8410. -- Name: relevantcommits_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8411. --
  8412.  
  8413. ALTER TABLE ONLY relevantcommits
  8414. ADD CONSTRAINT relevantcommits_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id) ON DELETE CASCADE;
  8415.  
  8416.  
  8417. --
  8418. -- Name: relevantcommits_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8419. --
  8420.  
  8421. ALTER TABLE ONLY relevantcommits
  8422. ADD CONSTRAINT relevantcommits_file_fkey FOREIGN KEY (file) REFERENCES files(id);
  8423.  
  8424.  
  8425. --
  8426. -- Name: relevantcommits_relevant_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8427. --
  8428.  
  8429. ALTER TABLE ONLY relevantcommits
  8430. ADD CONSTRAINT relevantcommits_relevant_fkey FOREIGN KEY (relevant) REFERENCES commits(id) ON DELETE CASCADE;
  8431.  
  8432.  
  8433. --
  8434. -- Name: repositories_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8435. --
  8436.  
  8437. ALTER TABLE ONLY repositories
  8438. ADD CONSTRAINT repositories_parent_fkey FOREIGN KEY (parent) REFERENCES repositories(id);
  8439.  
  8440.  
  8441. --
  8442. -- Name: reviewassignmentchanges_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8443. --
  8444.  
  8445. ALTER TABLE ONLY reviewassignmentchanges
  8446. ADD CONSTRAINT reviewassignmentchanges_file_fkey FOREIGN KEY (file) REFERENCES reviewfiles(id) ON DELETE CASCADE;
  8447.  
  8448.  
  8449. --
  8450. -- Name: reviewassignmentchanges_transaction_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8451. --
  8452.  
  8453. ALTER TABLE ONLY reviewassignmentchanges
  8454. ADD CONSTRAINT reviewassignmentchanges_transaction_fkey FOREIGN KEY (transaction) REFERENCES reviewassignmentstransactions(id);
  8455.  
  8456.  
  8457. --
  8458. -- Name: reviewassignmentchanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8459. --
  8460.  
  8461. ALTER TABLE ONLY reviewassignmentchanges
  8462. ADD CONSTRAINT reviewassignmentchanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8463.  
  8464.  
  8465. --
  8466. -- Name: reviewassignmentstransactions_assigner_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8467. --
  8468.  
  8469. ALTER TABLE ONLY reviewassignmentstransactions
  8470. ADD CONSTRAINT reviewassignmentstransactions_assigner_fkey FOREIGN KEY (assigner) REFERENCES users(id);
  8471.  
  8472.  
  8473. --
  8474. -- Name: reviewassignmentstransactions_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8475. --
  8476.  
  8477. ALTER TABLE ONLY reviewassignmentstransactions
  8478. ADD CONSTRAINT reviewassignmentstransactions_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8479.  
  8480.  
  8481. --
  8482. -- Name: reviewchangesets_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8483. --
  8484.  
  8485. ALTER TABLE ONLY reviewchangesets
  8486. ADD CONSTRAINT reviewchangesets_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id);
  8487.  
  8488.  
  8489. --
  8490. -- Name: reviewchangesets_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8491. --
  8492.  
  8493. ALTER TABLE ONLY reviewchangesets
  8494. ADD CONSTRAINT reviewchangesets_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8495.  
  8496.  
  8497. --
  8498. -- Name: reviewfilechanges_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8499. --
  8500.  
  8501. ALTER TABLE ONLY reviewfilechanges
  8502. ADD CONSTRAINT reviewfilechanges_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id);
  8503.  
  8504.  
  8505. --
  8506. -- Name: reviewfilechanges_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8507. --
  8508.  
  8509. ALTER TABLE ONLY reviewfilechanges
  8510. ADD CONSTRAINT reviewfilechanges_file_fkey FOREIGN KEY (file) REFERENCES reviewfiles(id);
  8511.  
  8512.  
  8513. --
  8514. -- Name: reviewfilechanges_file_fkey1; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8515. --
  8516.  
  8517. ALTER TABLE ONLY reviewfilechanges
  8518. ADD CONSTRAINT reviewfilechanges_file_fkey1 FOREIGN KEY (file, uid) REFERENCES reviewuserfiles(file, uid) ON DELETE CASCADE;
  8519.  
  8520.  
  8521. --
  8522. -- Name: reviewfilechanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8523. --
  8524.  
  8525. ALTER TABLE ONLY reviewfilechanges
  8526. ADD CONSTRAINT reviewfilechanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8527.  
  8528.  
  8529. --
  8530. -- Name: reviewfiles_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8531. --
  8532.  
  8533. ALTER TABLE ONLY reviewfiles
  8534. ADD CONSTRAINT reviewfiles_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
  8535.  
  8536.  
  8537. --
  8538. -- Name: reviewfiles_changeset_fkey1; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8539. --
  8540.  
  8541. ALTER TABLE ONLY reviewfiles
  8542. ADD CONSTRAINT reviewfiles_changeset_fkey1 FOREIGN KEY (changeset, file) REFERENCES fileversions(changeset, file) ON DELETE CASCADE;
  8543.  
  8544.  
  8545. --
  8546. -- Name: reviewfiles_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8547. --
  8548.  
  8549. ALTER TABLE ONLY reviewfiles
  8550. ADD CONSTRAINT reviewfiles_file_fkey FOREIGN KEY (file) REFERENCES files(id) ON DELETE CASCADE;
  8551.  
  8552.  
  8553. --
  8554. -- Name: reviewfiles_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8555. --
  8556.  
  8557. ALTER TABLE ONLY reviewfiles
  8558. ADD CONSTRAINT reviewfiles_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8559.  
  8560.  
  8561. --
  8562. -- Name: reviewfiles_review_fkey1; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8563. --
  8564.  
  8565. ALTER TABLE ONLY reviewfiles
  8566. ADD CONSTRAINT reviewfiles_review_fkey1 FOREIGN KEY (review, changeset) REFERENCES reviewchangesets(review, changeset) ON DELETE CASCADE;
  8567.  
  8568.  
  8569. --
  8570. -- Name: reviewfiles_reviewer_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8571. --
  8572.  
  8573. ALTER TABLE ONLY reviewfiles
  8574. ADD CONSTRAINT reviewfiles_reviewer_fkey FOREIGN KEY (reviewer) REFERENCES users(id) ON DELETE SET NULL;
  8575.  
  8576.  
  8577. --
  8578. -- Name: reviewfilterchanges_transaction_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8579. --
  8580.  
  8581. ALTER TABLE ONLY reviewfilterchanges
  8582. ADD CONSTRAINT reviewfilterchanges_transaction_fkey FOREIGN KEY (transaction) REFERENCES reviewassignmentstransactions(id) ON DELETE CASCADE;
  8583.  
  8584.  
  8585. --
  8586. -- Name: reviewfilterchanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8587. --
  8588.  
  8589. ALTER TABLE ONLY reviewfilterchanges
  8590. ADD CONSTRAINT reviewfilterchanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8591.  
  8592.  
  8593. --
  8594. -- Name: reviewfilters_creator_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8595. --
  8596.  
  8597. ALTER TABLE ONLY reviewfilters
  8598. ADD CONSTRAINT reviewfilters_creator_fkey FOREIGN KEY (creator) REFERENCES users(id) ON DELETE CASCADE;
  8599.  
  8600.  
  8601. --
  8602. -- Name: reviewfilters_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8603. --
  8604.  
  8605. ALTER TABLE ONLY reviewfilters
  8606. ADD CONSTRAINT reviewfilters_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8607.  
  8608.  
  8609. --
  8610. -- Name: reviewfilters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8611. --
  8612.  
  8613. ALTER TABLE ONLY reviewfilters
  8614. ADD CONSTRAINT reviewfilters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8615.  
  8616.  
  8617. --
  8618. -- Name: reviewmergeconfirmations_merge_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8619. --
  8620.  
  8621. ALTER TABLE ONLY reviewmergeconfirmations
  8622. ADD CONSTRAINT reviewmergeconfirmations_merge_fkey FOREIGN KEY (merge) REFERENCES commits(id) ON DELETE CASCADE;
  8623.  
  8624.  
  8625. --
  8626. -- Name: reviewmergeconfirmations_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8627. --
  8628.  
  8629. ALTER TABLE ONLY reviewmergeconfirmations
  8630. ADD CONSTRAINT reviewmergeconfirmations_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8631.  
  8632.  
  8633. --
  8634. -- Name: reviewmergeconfirmations_tail_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8635. --
  8636.  
  8637. ALTER TABLE ONLY reviewmergeconfirmations
  8638. ADD CONSTRAINT reviewmergeconfirmations_tail_fkey FOREIGN KEY (tail) REFERENCES commits(id) ON DELETE CASCADE;
  8639.  
  8640.  
  8641. --
  8642. -- Name: reviewmergeconfirmations_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8643. --
  8644.  
  8645. ALTER TABLE ONLY reviewmergeconfirmations
  8646. ADD CONSTRAINT reviewmergeconfirmations_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8647.  
  8648.  
  8649. --
  8650. -- Name: reviewmergecontributions_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8651. --
  8652.  
  8653. ALTER TABLE ONLY reviewmergecontributions
  8654. ADD CONSTRAINT reviewmergecontributions_id_fkey FOREIGN KEY (id) REFERENCES reviewmergeconfirmations(id) ON DELETE CASCADE;
  8655.  
  8656.  
  8657. --
  8658. -- Name: reviewmergecontributions_merged_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8659. --
  8660.  
  8661. ALTER TABLE ONLY reviewmergecontributions
  8662. ADD CONSTRAINT reviewmergecontributions_merged_fkey FOREIGN KEY (merged) REFERENCES commits(id) ON DELETE CASCADE;
  8663.  
  8664.  
  8665. --
  8666. -- Name: reviewmessageids_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8667. --
  8668.  
  8669. ALTER TABLE ONLY reviewmessageids
  8670. ADD CONSTRAINT reviewmessageids_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8671.  
  8672.  
  8673. --
  8674. -- Name: reviewmessageids_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8675. --
  8676.  
  8677. ALTER TABLE ONLY reviewmessageids
  8678. ADD CONSTRAINT reviewmessageids_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8679.  
  8680.  
  8681. --
  8682. -- Name: reviewrebases_equivalent_merge_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8683. --
  8684.  
  8685. ALTER TABLE ONLY reviewrebases
  8686. ADD CONSTRAINT reviewrebases_equivalent_merge_fkey FOREIGN KEY (equivalent_merge) REFERENCES commits(id);
  8687.  
  8688.  
  8689. --
  8690. -- Name: reviewrebases_new_head_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8691. --
  8692.  
  8693. ALTER TABLE ONLY reviewrebases
  8694. ADD CONSTRAINT reviewrebases_new_head_fkey FOREIGN KEY (new_head) REFERENCES commits(id);
  8695.  
  8696.  
  8697. --
  8698. -- Name: reviewrebases_new_upstream_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8699. --
  8700.  
  8701. ALTER TABLE ONLY reviewrebases
  8702. ADD CONSTRAINT reviewrebases_new_upstream_fkey FOREIGN KEY (new_upstream) REFERENCES commits(id);
  8703.  
  8704.  
  8705. --
  8706. -- Name: reviewrebases_old_head_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8707. --
  8708.  
  8709. ALTER TABLE ONLY reviewrebases
  8710. ADD CONSTRAINT reviewrebases_old_head_fkey FOREIGN KEY (old_head) REFERENCES commits(id);
  8711.  
  8712.  
  8713. --
  8714. -- Name: reviewrebases_old_upstream_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8715. --
  8716.  
  8717. ALTER TABLE ONLY reviewrebases
  8718. ADD CONSTRAINT reviewrebases_old_upstream_fkey FOREIGN KEY (old_upstream) REFERENCES commits(id);
  8719.  
  8720.  
  8721. --
  8722. -- Name: reviewrebases_replayed_rebase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8723. --
  8724.  
  8725. ALTER TABLE ONLY reviewrebases
  8726. ADD CONSTRAINT reviewrebases_replayed_rebase_fkey FOREIGN KEY (replayed_rebase) REFERENCES commits(id);
  8727.  
  8728.  
  8729. --
  8730. -- Name: reviewrebases_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8731. --
  8732.  
  8733. ALTER TABLE ONLY reviewrebases
  8734. ADD CONSTRAINT reviewrebases_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8735.  
  8736.  
  8737. --
  8738. -- Name: reviewrebases_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8739. --
  8740.  
  8741. ALTER TABLE ONLY reviewrebases
  8742. ADD CONSTRAINT reviewrebases_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8743.  
  8744.  
  8745. --
  8746. -- Name: reviewrecipientfilters_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8747. --
  8748.  
  8749. ALTER TABLE ONLY reviewrecipientfilters
  8750. ADD CONSTRAINT reviewrecipientfilters_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
  8751.  
  8752.  
  8753. --
  8754. -- Name: reviewrecipientfilters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8755. --
  8756.  
  8757. ALTER TABLE ONLY reviewrecipientfilters
  8758. ADD CONSTRAINT reviewrecipientfilters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8759.  
  8760.  
  8761. --
  8762. -- Name: reviews_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8763. --
  8764.  
  8765. ALTER TABLE ONLY reviews
  8766. ADD CONSTRAINT reviews_branch_fkey FOREIGN KEY (branch) REFERENCES branches(id);
  8767.  
  8768.  
  8769. --
  8770. -- Name: reviews_closed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8771. --
  8772.  
  8773. ALTER TABLE ONLY reviews
  8774. ADD CONSTRAINT reviews_closed_by_fkey FOREIGN KEY (closed_by) REFERENCES users(id);
  8775.  
  8776.  
  8777. --
  8778. -- Name: reviews_dropped_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8779. --
  8780.  
  8781. ALTER TABLE ONLY reviews
  8782. ADD CONSTRAINT reviews_dropped_by_fkey FOREIGN KEY (dropped_by) REFERENCES users(id);
  8783.  
  8784.  
  8785. --
  8786. -- Name: reviews_origin_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8787. --
  8788.  
  8789. ALTER TABLE ONLY reviews
  8790. ADD CONSTRAINT reviews_origin_fkey FOREIGN KEY (origin) REFERENCES branches(id) ON DELETE SET NULL;
  8791.  
  8792.  
  8793. --
  8794. -- Name: reviewuserfiles_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8795. --
  8796.  
  8797. ALTER TABLE ONLY reviewuserfiles
  8798. ADD CONSTRAINT reviewuserfiles_file_fkey FOREIGN KEY (file) REFERENCES reviewfiles(id) ON DELETE CASCADE;
  8799.  
  8800.  
  8801. --
  8802. -- Name: reviewuserfiles_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8803. --
  8804.  
  8805. ALTER TABLE ONLY reviewuserfiles
  8806. ADD CONSTRAINT reviewuserfiles_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8807.  
  8808.  
  8809. --
  8810. -- Name: reviewusers_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8811. --
  8812.  
  8813. ALTER TABLE ONLY reviewusers
  8814. ADD CONSTRAINT reviewusers_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
  8815.  
  8816.  
  8817. --
  8818. -- Name: reviewusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8819. --
  8820.  
  8821. ALTER TABLE ONLY reviewusers
  8822. ADD CONSTRAINT reviewusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8823.  
  8824.  
  8825. --
  8826. -- Name: scheduledreviewbrancharchivals_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8827. --
  8828.  
  8829. ALTER TABLE ONLY scheduledreviewbrancharchivals
  8830. ADD CONSTRAINT scheduledreviewbrancharchivals_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
  8831.  
  8832.  
  8833. --
  8834. -- Name: tags_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8835. --
  8836.  
  8837. ALTER TABLE ONLY tags
  8838. ADD CONSTRAINT tags_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
  8839.  
  8840.  
  8841. --
  8842. -- Name: trackedbranches_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8843. --
  8844.  
  8845. ALTER TABLE ONLY trackedbranches
  8846. ADD CONSTRAINT trackedbranches_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id);
  8847.  
  8848.  
  8849. --
  8850. -- Name: trackedbranchlog_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8851. --
  8852.  
  8853. ALTER TABLE ONLY trackedbranchlog
  8854. ADD CONSTRAINT trackedbranchlog_branch_fkey FOREIGN KEY (branch) REFERENCES trackedbranches(id) ON DELETE CASCADE;
  8855.  
  8856.  
  8857. --
  8858. -- Name: trackedbranchusers_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8859. --
  8860.  
  8861. ALTER TABLE ONLY trackedbranchusers
  8862. ADD CONSTRAINT trackedbranchusers_branch_fkey FOREIGN KEY (branch) REFERENCES trackedbranches(id) ON DELETE CASCADE;
  8863.  
  8864.  
  8865. --
  8866. -- Name: trackedbranchusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8867. --
  8868.  
  8869. ALTER TABLE ONLY trackedbranchusers
  8870. ADD CONSTRAINT trackedbranchusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8871.  
  8872.  
  8873. --
  8874. -- Name: userabsence_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8875. --
  8876.  
  8877. ALTER TABLE ONLY userabsence
  8878. ADD CONSTRAINT userabsence_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8879.  
  8880.  
  8881. --
  8882. -- Name: useremails_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8883. --
  8884.  
  8885. ALTER TABLE ONLY useremails
  8886. ADD CONSTRAINT useremails_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8887.  
  8888.  
  8889. --
  8890. -- Name: usergitemails_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8891. --
  8892.  
  8893. ALTER TABLE ONLY usergitemails
  8894. ADD CONSTRAINT usergitemails_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8895.  
  8896.  
  8897. --
  8898. -- Name: userpreferences_filter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8899. --
  8900.  
  8901. ALTER TABLE ONLY userpreferences
  8902. ADD CONSTRAINT userpreferences_filter_fkey FOREIGN KEY (filter) REFERENCES filters(id) ON DELETE CASCADE;
  8903.  
  8904.  
  8905. --
  8906. -- Name: userpreferences_item_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8907. --
  8908.  
  8909. ALTER TABLE ONLY userpreferences
  8910. ADD CONSTRAINT userpreferences_item_fkey FOREIGN KEY (item) REFERENCES preferences(item);
  8911.  
  8912.  
  8913. --
  8914. -- Name: userpreferences_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8915. --
  8916.  
  8917. ALTER TABLE ONLY userpreferences
  8918. ADD CONSTRAINT userpreferences_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
  8919.  
  8920.  
  8921. --
  8922. -- Name: userpreferences_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8923. --
  8924.  
  8925. ALTER TABLE ONLY userpreferences
  8926. ADD CONSTRAINT userpreferences_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8927.  
  8928.  
  8929. --
  8930. -- Name: userresources_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8931. --
  8932.  
  8933. ALTER TABLE ONLY userresources
  8934. ADD CONSTRAINT userresources_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
  8935.  
  8936.  
  8937. --
  8938. -- Name: userroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8939. --
  8940.  
  8941. ALTER TABLE ONLY userroles
  8942. ADD CONSTRAINT userroles_role_fkey FOREIGN KEY (role) REFERENCES roles(name);
  8943.  
  8944.  
  8945. --
  8946. -- Name: userroles_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8947. --
  8948.  
  8949. ALTER TABLE ONLY userroles
  8950. ADD CONSTRAINT userroles_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8951.  
  8952.  
  8953. --
  8954. -- Name: users_email_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8955. --
  8956.  
  8957. ALTER TABLE ONLY users
  8958. ADD CONSTRAINT users_email_fkey FOREIGN KEY (email) REFERENCES useremails(id);
  8959.  
  8960.  
  8961. --
  8962. -- Name: usersessions_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
  8963. --
  8964.  
  8965. ALTER TABLE ONLY usersessions
  8966. ADD CONSTRAINT usersessions_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
  8967.  
  8968.  
  8969. --
  8970. -- Name: public; Type: ACL; Schema: -; Owner: postgres
  8971. --
  8972.  
  8973. REVOKE ALL ON SCHEMA public FROM PUBLIC;
  8974. REVOKE ALL ON SCHEMA public FROM postgres;
  8975. GRANT ALL ON SCHEMA public TO postgres;
  8976. GRANT ALL ON SCHEMA public TO PUBLIC;
  8977.  
  8978.  
  8979. --
  8980. -- PostgreSQL database dump complete
  8981. --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement