--
-- PostgreSQL database dump
--

\connect - calpp

SET search_path = public, pg_catalog;

--
-- TOC entry 6 (OID 38664)
-- Name: contacts; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE contacts (
    contact_id serial NOT NULL,
    title text DEFAULT '',
    initials text DEFAULT '',
    name text NOT NULL,
    qualification text,
    classification text,
    birth_date date,
    termination_date date,
    given_age smallint,
    care_of text,
    guardian text,
    religion text,
    caste text,
    "language" text,
    is_literate boolean DEFAULT true,
    is_active boolean DEFAULT true,
    calling text,
    calling_at text,
    login_name text,
    phone_home text,
    phone_office text,
    phone_mobile text,
    phone_pager text,
    phone_fax text,
    email text,
    web_address text NOT NULL,
    door_no text,
    street text,
    village text,
    taluk text,
    district text,
    state text,
    country text,
    pincode text,
    landmark text,
    office_address text,
    introduced_by_contact_id integer,
    monthly_income money,
    educational_level text,
    login_rights text,
    is_juristic boolean DEFAULT false,
    main_occupation text,
    specialisation text,
    relationship_with_owner text,
    is_friend boolean DEFAULT true,
    access_code text,
    notes text,
    "password" text,
    height text DEFAULT 0,
    built character(1) DEFAULT 'm',
    is_entity boolean DEFAULT 'f',
    css_stylesheet text DEFAULT 'stylesheets/calpp.css',
    group_name text DEFAULT 'public'
);


--
-- TOC entry 7 (OID 38682)
-- Name: procedures; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE procedures (
    procedure_id serial NOT NULL,
    procedure_code text NOT NULL,
    procedure_name text NOT NULL,
    source text NOT NULL,
    main_head text NOT NULL,
    sub_head text NOT NULL,
    country_code character varying(3) DEFAULT 'ind' NOT NULL,
    sub_procedure_in text,
    first_step_code text,
    first_step real,
    invoking_group text DEFAULT 'admin',
    verifying_group text DEFAULT 'manager',
    work_area text,
    script text,
    is_singleton boolean DEFAULT 'f',
    organization text DEFAULT ''
);


--
-- TOC entry 8 (OID 38693)
-- Name: steps; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE steps (
    step_id serial NOT NULL,
    step_code text NOT NULL,
    step_name text NOT NULL,
    procedure_code text NOT NULL,
    step real NOT NULL,
    next_step_code text NOT NULL,
    next_step real NOT NULL,
    next_time_limit real,
    next_time_limit_unit text,
    time_bar_step_code text,
    time_bar_step real,
    default_step real,
    action_by text NOT NULL,
    step_source text NOT NULL,
    is_multi_step boolean,
    script text,
    input_form text
);


--
-- TOC entry 9 (OID 38701)
-- Name: particulars; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE particulars (
    particular_id serial NOT NULL,
    step_id integer NOT NULL,
    heading text DEFAULT '' NOT NULL,
    particular_code text DEFAULT '' NOT NULL,
    particular_name text DEFAULT '' NOT NULL,
    data_type text DEFAULT 'txt' NOT NULL,
    control text DEFAULT 'text' NOT NULL,
    control_tags text DEFAULT '' NOT NULL,
    rank real DEFAULT 1 NOT NULL,
    min_heading smallint DEFAULT 1 NOT NULL,
    max_heading smallint DEFAULT 1 NOT NULL,
    min_key smallint DEFAULT 1 NOT NULL,
    max_key smallint DEFAULT 1 NOT NULL,
    default_min_heading smallint DEFAULT 1 NOT NULL,
    default_min_key smallint DEFAULT 1 NOT NULL,
    stored_in_table text DEFAULT 'facts' NOT NULL,
    field_name text DEFAULT 'fact' NOT NULL,
    default_value text DEFAULT '',
    id_in_table text DEFAULT '',
    scope text DEFAULT 'procedure',
    data_nature character(1) DEFAULT 'R',
    notes text,
    script text
);


--
-- TOC entry 10 (OID 38728)
-- Name: proceedings; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE proceedings (
    proceeding_id serial NOT NULL,
    procedure_code text NOT NULL,
    proceeding_code text NOT NULL,
    proceeding_name text NOT NULL,
    last_completed_step_id integer,
    next_step_due_date date,
    next_step_reminder_date date,
    branch_contact_id integer,
    custom_cat1 text,
    custom_cat2 text,
    entity_id integer,
    start_timestamp timestamp without time zone DEFAULT "timestamp"('now'::text),
    close_timestamp timestamp without time zone,
    status text DEFAULT 'open'
);


--
-- TOC entry 11 (OID 38738)
-- Name: events; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE events (
    event_id serial NOT NULL,
    proceeding_id integer NOT NULL,
    step_id integer NOT NULL,
    step_count integer,
    entry_contact_id integer NOT NULL,
    verification_contact_id integer,
    audit_contact_id integer,
    entry_timestamp timestamp without time zone DEFAULT "timestamp"('now'::text),
    verification_timestamp timestamp without time zone,
    audit_timestamp timestamp without time zone
);


--
-- TOC entry 12 (OID 38744)
-- Name: assertions; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE assertions (
    assertion_id serial NOT NULL,
    event_id integer NOT NULL,
    particular_id integer NOT NULL,
    heading_count smallint DEFAULT 0,
    key_count smallint DEFAULT 0,
    "assertion" text DEFAULT ''
);


--
-- TOC entry 13 (OID 38755)
-- Name: facts; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE facts (
    fact_id serial NOT NULL,
    event_id integer NOT NULL,
    particular_id integer NOT NULL,
    heading_count smallint DEFAULT 1,
    key_count smallint DEFAULT 1,
    fact text
);


--
-- TOC entry 14 (OID 38765)
-- Name: acheads; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE acheads (
    achead_id serial NOT NULL,
    achead_name text NOT NULL,
    nature text NOT NULL,
    achead_type text DEFAULT 'cash' NOT NULL,
    custom_cat1 text DEFAULT '' NOT NULL,
    custom_cat2 text DEFAULT '' NOT NULL,
    is_affecting_profit boolean DEFAULT 'f' NOT NULL,
    is_post_auto_only boolean DEFAULT 'f' NOT NULL,
    is_owned_fund boolean DEFAULT 'f' NOT NULL,
    is_cash_equivalent boolean DEFAULT 'f'
);


--
-- TOC entry 15 (OID 38780)
-- Name: accounts; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE accounts (
    account_id serial NOT NULL,
    account_code text NOT NULL,
    account_name text NOT NULL,
    achead_id integer NOT NULL,
    opening_balance numeric(10,2) DEFAULT 0 NOT NULL,
    achead_sub_name text DEFAULT '',
    entity_id integer
);


--
-- TOC entry 16 (OID 38790)
-- Name: bills; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE bills (
    bill_id serial NOT NULL,
    bill_number text DEFAULT '' NOT NULL,
    bill_date date DEFAULT ('now'::text)::date NOT NULL,
    cash_mode character(1) DEFAULT 'c' NOT NULL,
    recpay character(1) DEFAULT 'r' NOT NULL,
    subgen character(1) DEFAULT 's' NOT NULL,
    chitgroup_code text,
    ticket_number smallint,
    payee_id integer,
    entity_id integer
);


--
-- TOC entry 17 (OID 38803)
-- Name: bill_items; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE bill_items (
    bill_item_id serial NOT NULL,
    bill_id integer NOT NULL,
    rank smallint DEFAULT 0 NOT NULL,
    bill_ac_id integer NOT NULL,
    particular_id integer,
    part_payment smallint DEFAULT 0 NOT NULL,
    narration text NOT NULL,
    debit numeric(10,2) DEFAULT 0 NOT NULL,
    credit numeric(10,2) DEFAULT 0 NOT NULL,
    CHECK ((((debit > 0::numeric) AND (credit = 0::numeric)) OR ((debit = 0::numeric) AND (credit > 0::numeric))))
);


--
-- TOC entry 18 (OID 38816)
-- Name: ledgers; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE ledgers (
    ledger_id serial NOT NULL,
    bill_item_id integer NOT NULL,
    ledger_ac_id integer NOT NULL,
    ledger_detail_ac_id integer NOT NULL,
    ledger_debit numeric(10,2) NOT NULL,
    ledger_credit numeric(10,2) NOT NULL,
    CHECK ((((ledger_debit > 0::numeric) AND (ledger_credit = 0::numeric)) OR ((ledger_debit = 0::numeric) AND (ledger_credit > 0::numeric))))
);


--
-- TOC entry 19 (OID 38822)
-- Name: cheques; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE cheques (
    cheque_id serial NOT NULL,
    bill_id integer NOT NULL,
    cheque_number text,
    cheque_date date,
    drawee_bank text,
    drawee_branch text,
    presented_date date,
    collected_date date
);


--
-- TOC entry 20 (OID 38830)
-- Name: chitgrouptypes; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE chitgrouptypes (
    chitgrouptype_id serial NOT NULL,
    subscribers smallint NOT NULL,
    subscription numeric(10,2) NOT NULL,
    chit_substance text DEFAULT 'money' NOT NULL,
    chit_amount numeric(10,2) NOT NULL,
    instalments smallint NOT NULL,
    chitgroup_prefix text,
    draw_interval text DEFAULT 'monthly' NOT NULL,
    default_foreman_contact_id integer NOT NULL,
    default_foreman_commission real DEFAULT 5 NOT NULL,
    default_foreman_instalment smallint DEFAULT 1 NOT NULL,
    default_si_prized real DEFAULT 0 NOT NULL,
    default_si_non_prized real DEFAULT 0 NOT NULL,
    default_penalty_prized numeric(10,2) DEFAULT 0 NOT NULL,
    default_penalty_non_prized numeric(10,2) DEFAULT 0 NOT NULL
);


--
-- TOC entry 21 (OID 38846)
-- Name: chitgroups; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE chitgroups (
    chitgroup_id serial NOT NULL,
    chitgroup_code text NOT NULL,
    chitgrouptype_id integer NOT NULL,
    proceeding_id integer NOT NULL,
    foreman_commission real DEFAULT 5 NOT NULL,
    foreman_instalment smallint DEFAULT 1 NOT NULL,
    si_prized real DEFAULT 0 NOT NULL,
    si_non_prized real DEFAULT 0 NOT NULL,
    penalty_prized numeric(10,2) DEFAULT 0 NOT NULL,
    penalty_non_prized numeric(10,2) DEFAULT 0 NOT NULL,
    commencement_date date,
    termination_date date,
    last_draw_date date,
    next_draw_date date,
    account_id integer NOT NULL,
    foreman_contact_id integer NOT NULL,
    all_auctions_over_date date,
    prize_paid_to_all_date date,
    all_arrears_collected_date date,
    account_closed_date date,
    current_instalment smallint,
    interest_mode character varying(3) DEFAULT 'cip' NOT NULL
);


--
-- TOC entry 22 (OID 38861)
-- Name: chit_subscribers; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE chit_subscribers (
    chit_subscriber_id serial NOT NULL,
    chit_subscriber_code text,
    ticket_number smallint,
    chitgroup_code text,
    contact_id integer,
    joint_holder_contact_id integer,
    nominee_contact_id integer,
    agent_contact_id integer,
    mode_of_service text DEFAULT 'post',
    rank_sign smallint,
    agreement_signed_date date,
    fraction text DEFAULT 'full',
    prized_date date,
    last_instalment_fully_paid smallint,
    is_defaulter boolean DEFAULT 'n'
);


--
-- TOC entry 23 (OID 38872)
-- Name: chit_transfers; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE chit_transfers (
    chit_transfer_id serial NOT NULL,
    chit_subscriber_code integer NOT NULL,
    removed_contact_id integer NOT NULL,
    added_contact_id integer,
    asnsub character(1) NOT NULL,
    removal_date date,
    substitution_date date,
    is_cancelled boolean DEFAULT 'n',
    old_chit_subscriber_id integer,
    new_chit_subscriber_id integer
);


--
-- TOC entry 24 (OID 38878)
-- Name: auctions; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE auctions (
    auction_id serial NOT NULL,
    auction_date date NOT NULL,
    chitgroup_code text NOT NULL,
    prized_contact_id integer,
    bid_amount numeric(10,2),
    fmc_amount numeric(10,2),
    dividend_amount numeric(10,2),
    share_amount numeric(10,2),
    prize_amount numeric(10,2),
    security_amount numeric(10,2),
    instalment integer,
    prize_paid_date date,
    auction_mode text,
    is_cancelled boolean,
    chit_subscriber_id integer
);


--
-- TOC entry 25 (OID 38886)
-- Name: cheque_returns; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE cheque_returns (
    cheque_return_id serial NOT NULL,
    cheque_id integer NOT NULL,
    return_date date NOT NULL,
    return_reason text NOT NULL,
    action_taken_date date,
    action_taken text
);


--
-- TOC entry 26 (OID 38894)
-- Name: lists; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE lists (
    list_id serial NOT NULL,
    list_name text NOT NULL,
    list_code text,
    list_value text,
    description text
);


--
-- TOC entry 27 (OID 38902)
-- Name: list_sql; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE list_sql (
    list_sql_id serial NOT NULL,
    sql_name text NOT NULL,
    sql_string text NOT NULL,
    description text
);


--
-- TOC entry 28 (OID 38910)
-- Name: tests; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE tests (
    test_id serial NOT NULL,
    test_name text DEFAULT 'test data',
    test_date date DEFAULT date("timestamp"('now'::text)),
    test_time time without time zone DEFAULT "time"("timestamp"('now'::text)),
    test_timestamp timestamp without time zone DEFAULT "timestamp"('now'::text),
    test_bool boolean DEFAULT 'f',
    test_int2 smallint DEFAULT 0,
    test_int4 integer DEFAULT 0,
    test_float real DEFAULT 0,
    test_numeric numeric(10,2) DEFAULT 0
);


--
-- TOC entry 29 (OID 38927)
-- Name: dtps; Type: TABLE; Schema: public; Owner: calpp
--

CREATE TABLE dtps (
    dtp_id serial NOT NULL,
    description text,
    maximum_value text,
    minimum_value text,
    examples text
);


--
-- TOC entry 2 (OID 39465)
-- Name: tokens_seq; Type: SEQUENCE; Schema: public; Owner: calpp
--

CREATE SEQUENCE tokens_seq
    START 1
    INCREMENT 1
    MAXVALUE 9223372036854775807
    MINVALUE 1
    CACHE 1;


\connect - ramanraj

SET search_path = public, pg_catalog;

--
-- TOC entry 30 (OID 39467)
-- Name: tokens; Type: TABLE; Schema: public; Owner: ramanraj
--

CREATE TABLE tokens (
    token_id text NOT NULL,
    contact_id integer NOT NULL
);


--
-- TOC entry 31 (OID 56521)
-- Name: vwh_contacts_name_address_phone; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW vwh_contacts_name_address_phone AS
    SELECT contacts.contact_id, ((((((((((((((((((((((('<p><a href=Contacts.php?action=EditContact&contact_id='::text || (contacts.contact_id)::text) || '>'::text) || contacts.title) || ' '::text) || ' '::text) || contacts.name) || ', '::text) || contacts.qualification) || '</a> '::text) || contacts.care_of) || ' '::text) || contacts.guardian) || ', '::text) || contacts.door_no) || ' '::text) || contacts.street) || ', '::text) || contacts.village) || ', '::text) || ' '::text) || contacts.district) || ', '::text) || contacts.pincode) AS particulars, contacts.phone_home, contacts.phone_office, contacts.phone_mobile, (((('<a href=mailto:'::text || contacts.email) || '>'::text) || contacts.email) || '</a>'::text) AS mail FROM contacts;


--
-- TOC entry 32 (OID 56601)
-- Name: words; Type: TABLE; Schema: public; Owner: ramanraj
--

CREATE TABLE words (
    word_id serial NOT NULL,
    word text,
    word_meaning text,
    word_notes text
);


--
-- TOC entry 33 (OID 56660)
-- Name: test; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW test AS
    SELECT bill_items.credit AS cr, bill_items.debit AS dr FROM bill_items;


--
-- TOC entry 34 (OID 65219)
-- Name: details; Type: TABLE; Schema: public; Owner: ramanraj
--

CREATE TABLE details (
    detail_id serial NOT NULL,
    event_id integer NOT NULL,
    particular_id integer NOT NULL,
    heading_count smallint NOT NULL,
    key_count smallint NOT NULL,
    detail text DEFAULT '' NOT NULL
);


--
-- TOC entry 35 (OID 65233)
-- Name: v_bills_ext; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_bills_ext AS
    SELECT bill_items.bill_item_id, bill_items.bill_id, bill_items.rank, bill_items.bill_ac_id, bill_items.particular_id, bill_items.part_payment, bill_items.narration, bill_items.debit, bill_items.credit, bills.bill_number, bills.bill_date, bills.cash_mode, bills.recpay, bills.subgen, bills.chitgroup_code, bills.ticket_number, bills.payee_id, bills.entity_id FROM bill_items, bills WHERE (bill_items.bill_id = bills.bill_id);


--
-- TOC entry 36 (OID 65237)
-- Name: index_sqls; Type: TABLE; Schema: public; Owner: ramanraj
--

CREATE TABLE index_sqls (
    index_sql_id serial NOT NULL,
    index_name text NOT NULL,
    start_table text DEFAULT '' NOT NULL,
    end_sql text DEFAULT '' NOT NULL
);


--
-- TOC entry 37 (OID 65251)
-- Name: index_headings; Type: TABLE; Schema: public; Owner: ramanraj
--

CREATE TABLE index_headings (
    index_heading_id serial NOT NULL,
    index_sql_id integer NOT NULL,
    heading_name text DEFAULT '' NOT NULL,
    index_path text DEFAULT '' NOT NULL
);


--
-- TOC entry 38 (OID 65311)
-- Name: v_acheads_accounts; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_acheads_accounts AS
    SELECT accounts.account_id, accounts.account_code, accounts.account_name, accounts.opening_balance, accounts.achead_sub_name, accounts.entity_id, acheads.achead_id, acheads.achead_name, acheads.nature, acheads.achead_type, acheads.custom_cat1, acheads.custom_cat2, acheads.is_affecting_profit, acheads.is_post_auto_only, acheads.is_owned_fund, acheads.is_cash_equivalent FROM accounts, acheads WHERE (acheads.achead_id = accounts.achead_id);


--
-- TOC entry 39 (OID 65316)
-- Name: v_procedures_steps; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_procedures_steps AS
    SELECT procedures.procedure_id, procedures.procedure_code, procedures.procedure_name, procedures.source, procedures.main_head, procedures.sub_head, procedures.country_code, procedures.sub_procedure_in, procedures.first_step_code, procedures.first_step, procedures.invoking_group, procedures.verifying_group, procedures.work_area, steps.step_id, steps.step_code, steps.step_name, steps.step, steps.next_step_code, steps.next_step, steps.next_time_limit, steps.next_time_limit_unit, steps.time_bar_step_code, steps.time_bar_step, steps.default_step, steps.action_by, steps.step_source, steps.is_multi_step, steps.script, steps.input_form FROM procedures, steps WHERE (procedures.procedure_code = steps.procedure_code);


--
-- TOC entry 40 (OID 65321)
-- Name: v_procedures_steps_particulars; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_procedures_steps_particulars AS
    SELECT particulars.particular_id, particulars.heading, particulars.particular_code, particulars.particular_name, particulars.data_type, particulars.control, particulars.control_tags, particulars.rank, particulars.min_heading, particulars.max_heading, particulars.min_key, particulars.max_key, particulars.default_min_heading, particulars.default_min_key, particulars.stored_in_table, particulars.field_name, particulars.default_value, particulars.id_in_table, particulars.scope, particulars.data_nature, particulars.notes, v_procedures_steps.procedure_id, v_procedures_steps.procedure_code, v_procedures_steps.procedure_name, v_procedures_steps.source, v_procedures_steps.main_head, v_procedures_steps.sub_head, v_procedures_steps.country_code, v_procedures_steps.sub_procedure_in, v_procedures_steps.first_step_code, v_procedures_steps.first_step, v_procedures_steps.invoking_group, v_procedures_steps.verifying_group, v_procedures_steps.work_area, v_procedures_steps.step_id, v_procedures_steps.step_code, v_procedures_steps.step_name, v_procedures_steps.step, v_procedures_steps.next_step_code, v_procedures_steps.next_step, v_procedures_steps.next_time_limit, v_procedures_steps.next_time_limit_unit, v_procedures_steps.time_bar_step_code, v_procedures_steps.time_bar_step, v_procedures_steps.default_step, v_procedures_steps.action_by, v_procedures_steps.step_source, v_procedures_steps.is_multi_step, v_procedures_steps.input_form FROM particulars, v_procedures_steps WHERE (particulars.step_id = v_procedures_steps.step_id);


--
-- TOC entry 41 (OID 65364)
-- Name: v_pp; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_pp AS
    SELECT procedures.procedure_id, procedures.procedure_code, procedures.procedure_name, procedures.source, procedures.main_head, procedures.sub_head, procedures.country_code, procedures.sub_procedure_in, procedures.first_step_code, procedures.first_step, procedures.invoking_group, procedures.verifying_group, procedures.work_area, proceedings.proceeding_id, proceedings.proceeding_code, proceedings.proceeding_name, proceedings.last_completed_step_id, proceedings.next_step_due_date, proceedings.next_step_reminder_date, proceedings.branch_contact_id, proceedings.custom_cat1, proceedings.custom_cat2, proceedings.entity_id, proceedings.start_timestamp, proceedings.close_timestamp, proceedings.status FROM procedures, proceedings WHERE (procedures.procedure_code = proceedings.procedure_code);


--
-- TOC entry 42 (OID 65368)
-- Name: v_pp_s; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_pp_s AS
    SELECT steps.step_id, steps.step_code, steps.step_name, steps.step, steps.next_step_code, steps.next_step, steps.next_time_limit, steps.next_time_limit_unit, steps.time_bar_step_code, steps.time_bar_step, steps.default_step, steps.action_by, steps.step_source, steps.is_multi_step, steps.input_form, v_pp.procedure_id, v_pp.procedure_code, v_pp.procedure_name, v_pp.source, v_pp.main_head, v_pp.sub_head, v_pp.country_code, v_pp.sub_procedure_in, v_pp.first_step_code, v_pp.first_step, v_pp.invoking_group, v_pp.verifying_group, v_pp.work_area, v_pp.proceeding_id, v_pp.proceeding_code, v_pp.proceeding_name, v_pp.last_completed_step_id, v_pp.next_step_due_date, v_pp.next_step_reminder_date, v_pp.branch_contact_id, v_pp.custom_cat1, v_pp.custom_cat2, v_pp.entity_id, v_pp.start_timestamp, v_pp.close_timestamp, v_pp.status FROM steps, v_pp WHERE (v_pp.procedure_code = steps.procedure_code);


--
-- TOC entry 43 (OID 65372)
-- Name: v_pp_se; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_pp_se AS
    SELECT events.event_id, events.step_count, events.entry_contact_id, events.verification_contact_id, events.audit_contact_id, events.entry_timestamp, events.verification_timestamp, events.audit_timestamp, v_pp_s.step_id, v_pp_s.step_code, v_pp_s.step_name, v_pp_s.step, v_pp_s.next_step_code, v_pp_s.next_step, v_pp_s.next_time_limit, v_pp_s.next_time_limit_unit, v_pp_s.time_bar_step_code, v_pp_s.time_bar_step, v_pp_s.default_step, v_pp_s.action_by, v_pp_s.step_source, v_pp_s.is_multi_step, v_pp_s.input_form, v_pp_s.procedure_id, v_pp_s.procedure_code, v_pp_s.procedure_name, v_pp_s.source, v_pp_s.main_head, v_pp_s.sub_head, v_pp_s.country_code, v_pp_s.sub_procedure_in, v_pp_s.first_step_code, v_pp_s.first_step, v_pp_s.invoking_group, v_pp_s.verifying_group, v_pp_s.work_area, v_pp_s.proceeding_id, v_pp_s.proceeding_code, v_pp_s.proceeding_name, v_pp_s.last_completed_step_id, v_pp_s.next_step_due_date, v_pp_s.next_step_reminder_date, v_pp_s.branch_contact_id, v_pp_s.custom_cat1, v_pp_s.custom_cat2, v_pp_s.entity_id, v_pp_s.start_timestamp, v_pp_s.close_timestamp, v_pp_s.status FROM events, v_pp_s WHERE (events.proceeding_id = v_pp_s.proceeding_id);


--
-- TOC entry 44 (OID 65378)
-- Name: v_proceedings_events; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_proceedings_events AS
    SELECT events.event_id, events.step_id, events.step_count, events.entry_contact_id, events.verification_contact_id, events.audit_contact_id, events.entry_timestamp, events.verification_timestamp, events.audit_timestamp, proceedings.proceeding_id, proceedings.procedure_code, proceedings.proceeding_code, proceedings.proceeding_name, proceedings.last_completed_step_id, proceedings.next_step_due_date, proceedings.next_step_reminder_date, proceedings.branch_contact_id, proceedings.custom_cat1, proceedings.custom_cat2, proceedings.entity_id, proceedings.start_timestamp, proceedings.close_timestamp, proceedings.status FROM events, proceedings WHERE (proceedings.proceeding_id = events.proceeding_id);


--
-- TOC entry 45 (OID 65381)
-- Name: v_proceedings_events_assertions; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_proceedings_events_assertions AS
    SELECT assertions.assertion_id, assertions.particular_id, assertions.heading_count, assertions.key_count, assertions."assertion", v_proceedings_events.event_id, v_proceedings_events.step_id, v_proceedings_events.step_count, v_proceedings_events.entry_contact_id, v_proceedings_events.verification_contact_id, v_proceedings_events.audit_contact_id, v_proceedings_events.entry_timestamp, v_proceedings_events.verification_timestamp, v_proceedings_events.audit_timestamp, v_proceedings_events.proceeding_id, v_proceedings_events.procedure_code, v_proceedings_events.proceeding_code, v_proceedings_events.proceeding_name, v_proceedings_events.last_completed_step_id, v_proceedings_events.next_step_due_date, v_proceedings_events.next_step_reminder_date, v_proceedings_events.branch_contact_id, v_proceedings_events.custom_cat1, v_proceedings_events.custom_cat2, v_proceedings_events.entity_id, v_proceedings_events.start_timestamp, v_proceedings_events.close_timestamp, v_proceedings_events.status FROM assertions, v_proceedings_events WHERE (v_proceedings_events.event_id = assertions.event_id);


--
-- TOC entry 46 (OID 65386)
-- Name: v_calpp; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_calpp AS
    SELECT v_procedures_steps_particulars.particular_id, v_procedures_steps_particulars.heading, v_procedures_steps_particulars.particular_code, v_procedures_steps_particulars.particular_name, v_procedures_steps_particulars.data_type, v_procedures_steps_particulars.control, v_procedures_steps_particulars.control_tags, v_procedures_steps_particulars.rank, v_procedures_steps_particulars.min_heading, v_procedures_steps_particulars.max_heading, v_procedures_steps_particulars.min_key, v_procedures_steps_particulars.max_key, v_procedures_steps_particulars.default_min_heading, v_procedures_steps_particulars.default_min_key, v_procedures_steps_particulars.stored_in_table, v_procedures_steps_particulars.field_name, v_procedures_steps_particulars.default_value, v_procedures_steps_particulars.id_in_table, v_procedures_steps_particulars.scope, v_procedures_steps_particulars.data_nature, v_procedures_steps_particulars.notes, v_procedures_steps_particulars.procedure_id, v_procedures_steps_particulars.procedure_code, v_procedures_steps_particulars.procedure_name, v_procedures_steps_particulars.source, v_procedures_steps_particulars.main_head, v_procedures_steps_particulars.sub_head, v_procedures_steps_particulars.country_code, v_procedures_steps_particulars.sub_procedure_in, v_procedures_steps_particulars.first_step_code, v_procedures_steps_particulars.first_step, v_procedures_steps_particulars.invoking_group, v_procedures_steps_particulars.verifying_group, v_procedures_steps_particulars.work_area, v_procedures_steps_particulars.step_id, v_procedures_steps_particulars.step_code, v_procedures_steps_particulars.step_name, v_procedures_steps_particulars.step, v_procedures_steps_particulars.next_step_code, v_procedures_steps_particulars.next_step, v_procedures_steps_particulars.next_time_limit, v_procedures_steps_particulars.next_time_limit_unit, v_procedures_steps_particulars.time_bar_step_code, v_procedures_steps_particulars.time_bar_step, v_procedures_steps_particulars.default_step, v_procedures_steps_particulars.action_by, v_procedures_steps_particulars.step_source, v_procedures_steps_particulars.is_multi_step, v_procedures_steps_particulars.input_form, v_proceedings_events_assertions.assertion_id, v_proceedings_events_assertions.heading_count, v_proceedings_events_assertions.key_count, v_proceedings_events_assertions."assertion", v_proceedings_events_assertions.event_id, v_proceedings_events_assertions.step_count, v_proceedings_events_assertions.entry_contact_id, v_proceedings_events_assertions.verification_contact_id, v_proceedings_events_assertions.audit_contact_id, v_proceedings_events_assertions.entry_timestamp, v_proceedings_events_assertions.verification_timestamp, v_proceedings_events_assertions.audit_timestamp, v_proceedings_events_assertions.proceeding_id, v_proceedings_events_assertions.proceeding_code, v_proceedings_events_assertions.proceeding_name, v_proceedings_events_assertions.last_completed_step_id, v_proceedings_events_assertions.next_step_due_date, v_proceedings_events_assertions.next_step_reminder_date, v_proceedings_events_assertions.branch_contact_id, v_proceedings_events_assertions.custom_cat1, v_proceedings_events_assertions.custom_cat2, v_proceedings_events_assertions.entity_id, v_proceedings_events_assertions.start_timestamp, v_proceedings_events_assertions.close_timestamp, v_proceedings_events_assertions.status FROM v_procedures_steps_particulars, v_proceedings_events_assertions WHERE (((v_procedures_steps_particulars.procedure_code = v_procedures_steps_particulars.procedure_code) AND (v_procedures_steps_particulars.particular_id = v_proceedings_events_assertions.particular_id)) AND (v_procedures_steps_particulars.step_id = v_proceedings_events_assertions.step_id));


--
-- TOC entry 47 (OID 65426)
-- Name: v_calpp_contacts; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_calpp_contacts AS
    SELECT contacts.contact_id, contacts.title, contacts.initials, contacts.name, contacts.qualification, contacts.classification, contacts.birth_date, contacts.termination_date, contacts.given_age, contacts.care_of, contacts.guardian, contacts.religion, contacts.caste, contacts."language", contacts.is_literate, contacts.is_active, contacts.calling, contacts.calling_at, contacts.login_name, contacts.phone_home, contacts.phone_office, contacts.phone_mobile, contacts.phone_pager, contacts.phone_fax, contacts.email, contacts.web_address, contacts.door_no, contacts.street, contacts.village, contacts.taluk, contacts.district, contacts.state, contacts.country, contacts.pincode, contacts.landmark, contacts.office_address, contacts.introduced_by_contact_id, contacts.monthly_income, contacts.educational_level, contacts.login_rights, contacts.is_juristic, contacts.main_occupation, contacts.specialisation, contacts.relationship_with_owner, contacts.is_friend, contacts.access_code, contacts."password", contacts.height, contacts.built, contacts.is_entity, contacts.css_stylesheet, contacts.group_name, v_calpp.particular_id, v_calpp.heading, v_calpp.particular_code, v_calpp.particular_name, v_calpp.data_type, v_calpp.control, v_calpp.control_tags, v_calpp.rank, v_calpp.min_heading, v_calpp.max_heading, v_calpp.min_key, v_calpp.max_key, v_calpp.default_min_heading, v_calpp.default_min_key, v_calpp.stored_in_table, v_calpp.field_name, v_calpp.default_value, v_calpp.id_in_table, v_calpp.scope, v_calpp.data_nature, v_calpp.notes, v_calpp.procedure_id, v_calpp.procedure_code, v_calpp.procedure_name, v_calpp.source, v_calpp.main_head, v_calpp.sub_head, v_calpp.country_code, v_calpp.sub_procedure_in, v_calpp.first_step_code, v_calpp.first_step, v_calpp.invoking_group, v_calpp.verifying_group, v_calpp.work_area, v_calpp.step_id, v_calpp.step_code, v_calpp.step_name, v_calpp.step, v_calpp.next_step_code, v_calpp.next_step, v_calpp.next_time_limit, v_calpp.next_time_limit_unit, v_calpp.time_bar_step_code, v_calpp.time_bar_step, v_calpp.default_step, v_calpp.action_by, v_calpp.step_source, v_calpp.is_multi_step, v_calpp.input_form, v_calpp.assertion_id, v_calpp.heading_count, v_calpp.key_count, v_calpp."assertion", v_calpp.event_id, v_calpp.step_count, v_calpp.entry_contact_id, v_calpp.verification_contact_id, v_calpp.audit_contact_id, v_calpp.entry_timestamp, v_calpp.verification_timestamp, v_calpp.audit_timestamp, v_calpp.proceeding_id, v_calpp.proceeding_code, v_calpp.proceeding_name, v_calpp.last_completed_step_id, v_calpp.next_step_due_date, v_calpp.next_step_reminder_date, v_calpp.branch_contact_id, v_calpp.custom_cat1, v_calpp.custom_cat2, v_calpp.entity_id, v_calpp.start_timestamp, v_calpp.close_timestamp, v_calpp.status FROM contacts, v_calpp WHERE (((contacts.contact_id)::text = v_calpp."assertion") AND (v_calpp.id_in_table = 'contacts'::text));


--
-- TOC entry 48 (OID 65430)
-- Name: v_calpp_entries; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_calpp_entries AS
    SELECT contacts.contact_id, contacts.title, contacts.initials, contacts.name, contacts.qualification, contacts.classification, contacts.birth_date, contacts.termination_date, contacts.given_age, contacts.care_of, contacts.guardian, contacts.religion, contacts.caste, contacts."language", contacts.is_literate, contacts.is_active, contacts.calling, contacts.calling_at, contacts.login_name, contacts.phone_home, contacts.phone_office, contacts.phone_mobile, contacts.phone_pager, contacts.phone_fax, contacts.email, contacts.web_address, contacts.door_no, contacts.street, contacts.village, contacts.taluk, contacts.district, contacts.state, contacts.country, contacts.pincode, contacts.landmark, contacts.office_address, contacts.introduced_by_contact_id, contacts.monthly_income, contacts.educational_level, contacts.login_rights, contacts.is_juristic, contacts.main_occupation, contacts.specialisation, contacts.relationship_with_owner, contacts.is_friend, contacts.access_code, contacts."password", contacts.height, contacts.built, contacts.is_entity, contacts.css_stylesheet, contacts.group_name, v_calpp.particular_id, v_calpp.heading, v_calpp.particular_code, v_calpp.particular_name, v_calpp.data_type, v_calpp.control, v_calpp.control_tags, v_calpp.rank, v_calpp.min_heading, v_calpp.max_heading, v_calpp.min_key, v_calpp.max_key, v_calpp.default_min_heading, v_calpp.default_min_key, v_calpp.stored_in_table, v_calpp.field_name, v_calpp.default_value, v_calpp.id_in_table, v_calpp.scope, v_calpp.data_nature, v_calpp.notes, v_calpp.procedure_id, v_calpp.procedure_code, v_calpp.procedure_name, v_calpp.source, v_calpp.main_head, v_calpp.sub_head, v_calpp.country_code, v_calpp.sub_procedure_in, v_calpp.first_step_code, v_calpp.first_step, v_calpp.invoking_group, v_calpp.verifying_group, v_calpp.work_area, v_calpp.step_id, v_calpp.step_code, v_calpp.step_name, v_calpp.step, v_calpp.next_step_code, v_calpp.next_step, v_calpp.next_time_limit, v_calpp.next_time_limit_unit, v_calpp.time_bar_step_code, v_calpp.time_bar_step, v_calpp.default_step, v_calpp.action_by, v_calpp.step_source, v_calpp.is_multi_step, v_calpp.input_form, v_calpp.assertion_id, v_calpp.heading_count, v_calpp.key_count, v_calpp."assertion", v_calpp.event_id, v_calpp.step_count, v_calpp.entry_contact_id, v_calpp.verification_contact_id, v_calpp.audit_contact_id, v_calpp.entry_timestamp, v_calpp.verification_timestamp, v_calpp.audit_timestamp, v_calpp.proceeding_id, v_calpp.proceeding_code, v_calpp.proceeding_name, v_calpp.last_completed_step_id, v_calpp.next_step_due_date, v_calpp.next_step_reminder_date, v_calpp.branch_contact_id, v_calpp.custom_cat1, v_calpp.custom_cat2, v_calpp.entity_id, v_calpp.start_timestamp, v_calpp.close_timestamp, v_calpp.status FROM contacts, v_calpp WHERE (contacts.contact_id = v_calpp.entry_contact_id);


--
-- TOC entry 4 (OID 65483)
-- Name: proceedings_name_seq; Type: SEQUENCE; Schema: public; Owner: ramanraj
--

CREATE SEQUENCE proceedings_name_seq
    START 1
    INCREMENT 1
    MAXVALUE 9223372036854775807
    MINVALUE 1
    CACHE 1;


--
-- TOC entry 49 (OID 65573)
-- Name: documents; Type: TABLE; Schema: public; Owner: ramanraj
--

CREATE TABLE documents (
    document_id serial NOT NULL,
    document_title text,
    document text
);


--
-- TOC entry 50 (OID 65607)
-- Name: v_calpp_documents; Type: VIEW; Schema: public; Owner: ramanraj
--

CREATE VIEW v_calpp_documents AS
    SELECT documents.document_id, documents.document_title, documents.document, v_calpp.particular_id, v_calpp.heading, v_calpp.particular_code, v_calpp.particular_name, v_calpp.data_type, v_calpp.control, v_calpp.control_tags, v_calpp.rank, v_calpp.min_heading, v_calpp.max_heading, v_calpp.min_key, v_calpp.max_key, v_calpp.default_min_heading, v_calpp.default_min_key, v_calpp.stored_in_table, v_calpp.field_name, v_calpp.default_value, v_calpp.id_in_table, v_calpp.scope, v_calpp.data_nature, v_calpp.notes, v_calpp.procedure_id, v_calpp.procedure_code, v_calpp.procedure_name, v_calpp.source, v_calpp.main_head, v_calpp.sub_head, v_calpp.country_code, v_calpp.sub_procedure_in, v_calpp.first_step_code, v_calpp.first_step, v_calpp.invoking_group, v_calpp.verifying_group, v_calpp.work_area, v_calpp.step_id, v_calpp.step_code, v_calpp.step_name, v_calpp.step, v_calpp.next_step_code, v_calpp.next_step, v_calpp.next_time_limit, v_calpp.next_time_limit_unit, v_calpp.time_bar_step_code, v_calpp.time_bar_step, v_calpp.default_step, v_calpp.action_by, v_calpp.step_source, v_calpp.is_multi_step, v_calpp.input_form, v_calpp.assertion_id, v_calpp.heading_count, v_calpp.key_count, v_calpp."assertion", v_calpp.event_id, v_calpp.step_count, v_calpp.entry_contact_id, v_calpp.verification_contact_id, v_calpp.audit_contact_id, v_calpp.entry_timestamp, v_calpp.verification_timestamp, v_calpp.audit_timestamp, v_calpp.proceeding_id, v_calpp.proceeding_code, v_calpp.proceeding_name, v_calpp.last_completed_step_id, v_calpp.next_step_due_date, v_calpp.next_step_reminder_date, v_calpp.branch_contact_id, v_calpp.custom_cat1, v_calpp.custom_cat2, v_calpp.entity_id, v_calpp.start_timestamp, v_calpp.close_timestamp, v_calpp.status FROM documents, v_calpp WHERE (((documents.document_id)::text = v_calpp."assertion") AND (v_calpp.control = 'form'::text));


\connect - calpp

SET search_path = public, pg_catalog;

--
-- Data for TOC entry 115 (OID 38664)
-- Name: contacts; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY contacts (contact_id, title, initials, name, qualification, classification, birth_date, termination_date, given_age, care_of, guardian, religion, caste, "language", is_literate, is_active, calling, calling_at, login_name, phone_home, phone_office, phone_mobile, phone_pager, phone_fax, email, web_address, door_no, street, village, taluk, district, state, country, pincode, landmark, office_address, introduced_by_contact_id, monthly_income, educational_level, login_rights, is_juristic, main_occupation, specialisation, relationship_with_owner, is_friend, access_code, notes, "password", height, built, is_entity, css_stylesheet, group_name) FROM stdin;
78	M/s	S.N.	Sri Ram Jaya Ram		Partnership Firm	1900-01-01	\N	\N					English	t	t			\N											\N		Tamil Nadu	India				\N	\N	\N	\N	f	Utility	AC Mechanic	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
1	Mr	K.	Ramanraj	M.L.	Male	1968-12-07	2001-09-21	33					English	t	t			ramanraj									First Main Road,	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			0	$0.00		a	f	Advocate	Civil and Criminal		t	\N		897c933573f04aa7e90e86ec4c629a74	\N	\N	f	stylesheets/strawberrypink.css	\N
2	Mrs	A.	Easware		Female	1972-07-21	\N	29					English	t	t			bhuvana									First Main Road,	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			0	$0.00			f			\N	\N	\N			\N	\N	f	stylesheets/calpp.css	\N
3	Baby		Snappy Snoop		Female	1998-11-16	\N	2					English	t	t			neha									First Main Road,	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			0	$0.00			f			\N	\N	\N			\N	\N	f	stylesheets/calpp.css	
4	Mr		Calpp Hacker		Others	2000-09-29	2001-09-11	0					English	t	t			calpp									Terminal Lane	Global Village		Chennai	Tamil Nadu	India	600041			0	$0.00			f	Computer	Hacking		t	\N		6ca7858c1aebe661840e7e53f9fcd2ef	\N	\N	t	stylesheets/calpp.css	
5	Mr	R.M.	Krist Guru	M.L.	Male	1938-09-06	\N	63					English	t	t			rmk									First Main Road	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N			\N	\N	f	stylesheets/calpp.css	\N
6	Mr	B.S.	Arunachalam	B.Com.	Male	1947-02-17	\N	0					English	t	t			arunbs									Sami Road	Lucky Nagar		Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Business	Finance	\N	t	\N			\N	\N	f	stylesheets/calpp.css	\N
7	Dr		Sundaran		Male	1947-01-01	\N	0					English	t	t			drgs									Singaram Avenue	Tambaram		Chennai	Tamil Nadu	India	600059			\N	$0.00	\N	\N	f	Doctor	Paediatrician	\N	t	\N			\N	\N	f	stylesheets/calpp.css	\N
8	Mr	G.	Lingeswaran	B.E. M.B.A.	Male	1972-01-01	\N	0					English	t	t			siva									Mahalingapuram	Nungambakkam		Chennai	Tamil Nadu	India	600006			\N	$0.00	\N	\N	f	Engineer	Insulation and Fabrication	\N	t	\N			\N	\N	f	stylesheets/calpp.css	
9	Dr (Mrs)		Julian Madhy	M.D., D.G.O.	Female	1955-01-01	\N	0					English	t	t			drrmjm									Sriram Street	T. Nagar		Chennai	Tamil Nadu	India	600007			\N	$0.00	\N	\N	f	Doctor	Gynaecologist	\N	t	\N			\N	\N	f	stylesheets/calpp.css	
10	Mrs		Judy Glo	B.A.	Female	1970-09-01	\N	0					English	t	t			jayjay									Stone Hill	Fort Wayne		Indiana	Indiana	USA	IN 46814			\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N			\N	\N	f	stylesheets/calpp.css	
20	M/s		Green Forrest		Private Limited Company	1995-01-01	\N	\N					English	t	t			\N									Omalur Main Road	A.V.K. Nagar		Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Business	Chits	\N	t	\N			0	m	t	stylesheets/calpp.css	\N
21	Mr	K	Ramasamy	B.L. Grad. C.W.A.	Male	1900-01-01	\N	12					English	t	t			\N									Thanikachalam Road	T. Nagar		Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Advocate	Tax Consultant	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	\N
22	Mr	P	Gunasamy	B.A. LL.B.	Male	1900-01-01	\N	0					English	t	t			\N									1st Street	Royapettah		Chennai	Tamil Nadu	India	600014			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	\N
23	Mr	K.S.	Stoneman		Male	1900-01-01	\N	0					English	t	t			\N									A.G.S. Colony	Kottivakkam		Chennai	Tamil Nadu	India	600 041			\N	$0.00	\N	\N	f	Government Service	Collector	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	\N
24	Mr	S.A.	Kid Ferrocious		Male	1990-01-01	\N	0					English	t	t			\N									Flower Compound	Triplicane		Chennai	Tamil Nadu	India	600005			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
25	Mr		Milk Jayapalan		Male	1900-01-01	\N	0					English	t	t			\N									Mariamman Koil Street	Ponnamapet		Salem	Tamil Nadu	India	636001			\N	$0.00	\N	\N	f	Government Service	Geologist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	\N
26	Mr	D.S.D	Chandrakumar		Male	1900-01-01	\N	0					English	t	t			\N									Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	\N
27	Mr		Govindan		Male	1990-01-01	\N	0					English	t	t			\N									Mohan Street	Tambaram (East)		Chennai	Tamil Nadu	India	600059			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	\N
28	Mr	T.A	Preman		Male	1990-01-01	\N	0					English	t	t			\N									Fish Monger Street	Royapettah		Chennai	Tamil Nadu	India	600014			\N	$0.00	\N	\N	f	Service	Workers Education	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
29	Mr	R	Nandu		Male	1900-01-01	\N	0					English	t	t			\N									TTK Road	Alwarpet		Chennai	Tamil Nadu	India	600018			\N	$0.00	\N	\N	f	Advocate	Corporate Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
30	Mr	V	Vishnu Bagwan		Male	1900-01-01	\N	0					English	t	t			\N									TTK Road	Alwarpet		Chennai	Tamil Nadu	India	600018			\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
31	Mr	V	Naran		Male	1968-01-01	\N	30					English	t	t			\N									Green Gardens	Raja Annamalaipuram		Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Business	Chemicals	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
32	Mr	S	Vesu Daven Singh	B.L.	Male	1968-01-01	\N	0					English	t	t			\N									8th Main Road	Raja Annamalaipuram		Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
33	Dr (Ms)	A	Sandi	M.D.S.	Female	1976-05-11	\N	0					English	t	t			\N									2nd Street	A.V.K. Nagar		Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Doctor	Prosthodontist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
34	Dr (Ms)		Vinayagan		Female	1900-01-01	\N	0					English	t	t			\N									East Coast Road	Thiruvanmiyur		Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Doctor	Opthamologist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
35	Mr	R.M.	Sree Raja	M.Arch. A.I.I.A	Male	1968-01-01	\N	35					English	t	t			\N									Suramangalam Main Road	Suramangalam	\N	Salem	Tamil Nadu	India	636005			\N	$0.00	\N	\N	f	Architect	Architecture, Interiors	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
36	Mr	V	Radhakrishnan	B.Com. D.A.E.	Male	1900-01-01	\N	0					English	t	t			\N									6th Main Road	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Car Mechanic	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
37	Mr	S	Mukunth	B.Com. B.L.	Male	1990-01-01	\N	0					English	t	t			\N									Sivan Nagar	Ramanathapuram		Coimbatore	Tamil Nadu	India	641045			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
38	Dr	A	Nathikan		Male	1900-01-01	\N	0					English	t	t			\N									First Main Road	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Doctor	General Practitioner	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
39	Mr	M	Sivan	M.Tech. M.B.A.	Male	1964-05-11	\N	39					English	t	t			\N									Murugan Nagar	Vadavalli	\N	Coimbatore	Tamil Nadu	India	641 041			\N	$0.00	\N	\N	f	Engineer	Chemicals, Finance	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
40	M/s		Expect International		Others	1900-01-01	\N	\N					English	t	t			\N									Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Waste Recycling	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
41	M/s		Southern Tourways		Others	\N	\N	\N					English	t	t			\N													Tamil Nadu	India				\N	$0.00	\N	\N	f	Utility	Railways	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
42	M/s		Kosagan News Agency		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N													Tamil Nadu	India				\N	$0.00	\N	\N	f	Utility	Newspapers	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
43	M/s		Story Stores		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									First Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Groceries	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
44	M/s		Medicus Hospital		Private Limited Company	\N	\N	\N					English	t	t			\N									Anna Salai	Teynampet		Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Hospital	Cancer Speciality	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
45	M/s		Under Groud Gas Agency		Others	1900-01-01	\N	\N					English	t	t			\N											\N		Tamil Nadu	India				\N	\N	\N	\N	f	Utility	Gas	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
46	M/s		Milk Vendor		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									Thiruvalluvar Nagar	Thiruvanmiyur		Chennai	Tamil Nadu	India	6000041			\N	$0.00	\N	\N	f	Utility	Aavin Milk	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
47			Books and CDS Club		Others	1873-01-01	\N	\N					English	t	t			\N									Anna Salai	Thousand Lights		Chennai	Tamil Nadu	India	600002			\N	$0.00	\N	\N	f	Utility	Club	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
48	M/s		Stingy Stores		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									First Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Vegetables	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
49	M/s		Sickman Medicals		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Pharmacist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
50	M/s		Tea and Coffee Center		Others	1900-01-01	\N	\N					English	t	t			\N									Audippan Naicken Street	George Town		Chennai	Tamil Nadu	India	600001			\N	$0.00	\N	\N	f	Utility	Refined Oil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
51	Mr	M	Ramesh	MJF	Male	1900-01-01	\N	0					English	t	t			\N									Mill Road			Coimbatore	Tamil Nadu	India	641001			\N	$0.00	\N	\N	f	Business	Tea Estates	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
52	Mr	M	Kumara Sing	M.B.A.	Male	1900-01-01	\N	0					English	t	t			\N									Rangai Gowder Street			Coimbatore	Tamil Nadu	India	641001			\N	$0.00	\N	\N	f	Business	Garments	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
53	M/s		Quick and Happy Computers		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									Anna Salai		\N	Chennai	Tamil Nadu	India	600002			\N	\N	\N	\N	f	Computer	Hardware	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
54	Mr	D.K.	Babu Sing	B.E.	Male	1990-01-01	\N	0					English	t	t			\N									Poojai Lani	Near Surampatti Nal Road		Erode	Tamil Nadu	India	638009			\N	$0.00	\N	\N	f	Engineer	Civil Constructions	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
55	M/s		Computer Tech Associates		Others	1900-01-01	\N	\N					English	t	t			\N									Ritchie Street	Anna Salai	\N	Chennai	Tamil Nadu	India	600002			\N	\N	\N	\N	f	Computer	Hardware	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
56	M/s		New Blue Computers		Others	1900-01-01	\N	\N					English	t	t			\N									Broadway			Chennai	Tamil Nadu	India	600108			\N	$0.00	\N	\N	f	Computer	Software and Hardware	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
57	M/s		Mil Ice Creams		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									6th Main Road	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Ice Cream	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
58	Mr	R.P.	Kaadilan		Male	1900-01-01	\N	0					English	t	t			\N									Nachiappan Guru Street	Mylapore	\N	Chennai	Tamil Nadu	India	600004			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
59	Mr	R	Sundaravelan		Male	1900-01-01	\N	0					English	t	t			\N									Trichy Road		\N	Coimbatore	Tamil Nadu	India	641018			\N	$0.00	\N	\N	f	Engineer	Space Research	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
60	Mr	G.D.	Dinger		Male	1900-01-01	\N	0					English	t	t			\N									Ashoka Nagar			New Delhi	Delhi	India	110018			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
61	Mr	R	Subramaniam		Male	1900-01-01	\N	0					English	t	t			\N										Mylapore		Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
62	Mr	U	Nagamani	B.A. LL.B.	Male	1968-01-01	\N	35					English	t	t			\N									Nagathamman Koil Street Extension	Ashok Nagar	\N	Chennai	Tamil Nadu	India	600000			\N	$0.00	\N	\N	f	Advocate	Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
63	M/s		Supari and Sons		Partnership Firm	1900-01-01	\N	\N					English	t	t			\N									Ellaiamman Koil Street	Besant Nagar	\N	Chennai	Tamil Nadu	India	600090			\N	\N	\N	\N	f	Utility	Tailor	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
64	M/s		Padi Enterprises		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									Periyar Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	\N	\N	\N	f	Computer	Service - TVS UPS, Printer	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
65	M/s		Rice and Wheat Shop		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N											\N		Tamil Nadu	India				\N	\N	\N	\N	f	Utility	Rice	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
66	Mr		Kothandaraman		Male	1900-01-01	\N	0					English	t	t			\N												Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
67	Mr	S.M.	Vambalan		Male	1900-01-01	\N	0					English	t	t			\N									Zoo Road	Park Town		Chennai	Tamil Nadu	India	600003			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
68	Mr		Ledger Mani		Male	1900-01-01	\N	0					English	t	t			\N													Tamil Nadu	India				\N	$0.00	\N	\N	f	Auditor		\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
69	Dr	L	Ragupathi	M.D.	Male	1900-01-01	\N	0					English	t	t			\N									Salem Main Road			Krishnagiri	Tamil Nadu	India				\N	$0.00	\N	\N	f	Doctor	General Practitioner	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
70	Mr	S.R.	Kamaluleshwar	M.A. B.L.	Male	1900-01-01	\N	0					English	t	t			\N									Thillaipuram		\N	Namakkal	Tamil Nadu	India	637001			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
71	Mr	K.D.	Singer	M.L.	Male	1900-01-01	\N	0					English	t	t			\N										Neethi Bagh		New Delhi	Delhi	India	110049			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
72	Mr	G.N.U.	Nachiketan	I.C.W.A.	Male	1900-01-01	\N	0					English	t	t			\N									Amrutha Ant Hills	Punjagutta		Hyderabad	Andhra Pradesh	India	500082			\N	$0.00	\N	\N	f	Auditor		\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
73	Mr	A	Srinivasan		Male	1900-01-01	\N	0					English	t	t			\N											\N		Tamil Nadu	India				\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
74	Dr	K	Semmlagai Selvan	M.B.B.S.	Male	1900-01-01	\N	0					English	t	t			\N									A.G.S. Colony	Kottivakkam		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Doctor	General Practitioner	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
75	Mr	R	Mountainman		Male	1900-01-01	\N	0					English	t	t			\N									Lingappa Road			Coimbatore	Tamil Nadu	India	641001			\N	$0.00	\N	\N	f	Business	Yarn	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
76	Mr	B.S.	Surian		Male	1900-01-01	\N	0					English	t	t			\N									Lakshmi Street, Advaitha Ashram Road	Fairlands		Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Business	Oils and Fats	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
77	Mr	M.U.	Ram Chand Jain		Male	1900-01-01	\N	0					English	t	t			\N									Gandhi Road	West Mambalam	\N	Chennai	Tamil Nadu	India	600033			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
79	Mr		Sunny Brightman		Male	1900-01-01	\N	0					English	t	t			\N												Erode	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
80	Dr (Mrs)		Hillman		Female	1900-01-01	\N	0					English	t	t			\N									9th Cross Street, Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Doctor	Paediatrician	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
81	M/s		Valluvar		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									9th Cross Street, Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Pharmacist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
82	Mr	R	Stinger		Male	1900-01-01	\N	0					English	t	t			\N									Periapalli Street	Mandavelipakkam		Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Utility	Stamp Vendor	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
83	Mrs	S	Meraima		Female	1900-01-01	\N	0					English	t	t			\N									11th Main Road	Anna Nagar		Chennai	Tamil Nadu	India	600104			\N	$0.00	\N	\N	f	Service	Social Worker	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
84	M/s		Silico Chips		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									Ritchie Street	Thousand Lights	\N	Chennai	Tamil Nadu	India	600002			\N	\N	\N	\N	f	Computer	Hardware	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
85	Mr	J	Immortal Man		Male	1900-01-01	\N	0					English	t	t			\N									27th Cross	Rustam Bagh Layout		Bangalore	Karnataka	India	560017			\N	$0.00	\N	\N	f	Computer	Software and Hardware	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
86	Mr		Bakthan		Male	1971-06-09	\N	0					English	t	t			\N													Ohio	USA				\N	$0.00	\N	\N	f	Computer	Business Analyst	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
87	Mr	D.S.	Selvaraj		Male	1900-01-01	\N	0					English	t	t			\N									Habibullah Road	T. Nagar		Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Academic	High School	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
88	Mr	K	Lagaram		Male	1968-01-01	\N	35					English	t	t			\N										Royapuram		Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
89	Mr	D	Ragub		Male	1968-01-01	\N	35					English	t	t			\N											\N		Tamil Nadu	India				\N	$0.00	\N	\N	f	Computer	Education	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
90	Dr	S	Rajaji		Male	1900-01-01	\N	0					English	t	t			\N									Soorappa Mudali Street	Triplicane	\N	Chennai	Tamil Nadu	India	600005			\N	$0.00	\N	\N	f	Advocate	Notary Public	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
92	Mr	A.D.	Lingam		Male	1900-01-01	\N	0					English	t	t			\N									Swarnambigai Street		\N	Salem	Tamil Nadu	India	636001			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
93	Mr	S.P.	Sohan Kumar		Male	1900-01-01	\N	0					English	t	t			\N									Gandhi Street	Noida		New Delhi	Delhi	India	201301			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
94	Mr		Elamaran		Male	1968-01-01	\N	0					English	t	t			\N									Jawaharlal Nehru Road	Opposite Ulavar Santhai	\N	Thiruvallore	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
95	Thirumathi		Kamala Ammal		Female	1900-01-01	\N	0					English	t	t			\N									Bashyagarulu Street	R.S. Puram	\N	Coimbatore	Tamil Nadu	India				\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
96	Dr		Thiruvenkadam		Male	1900-01-01	\N	0					English	t	t			\N									G.N. Chetty Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Doctor	Respiratory Diseases	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
97	Mr		Senthil Kumar 		Male	1968-01-01	\N	35					English	t	t			\N											\N		Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Corporate Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
98	M/s		Dingy Bang Taxis		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N												Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Utility	Call Taxi	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
99	Mr	R.D.	Balan		Male	1900-01-01	\N	0					English	t	t			\N									First Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Academic	International Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
100	Mr		Sunman		Male	1968-01-01	\N	0					English	t	t			\N												New Delhi	Delhi	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
101	Mr	K	Munni		Male	1968-01-01	\N	0					English	t	t			\N									Motilal Street	T. Nagar		Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Engineer	Refrigiration	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
102	Mr		Sherman		Male	1964-06-13	\N	0					English	t	t			\N									Stone Hill	Fort Wayne		Indiana	Indiana	USA	IN 46814			\N	$0.00	\N	\N	f	Engineer	Bio Tech	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
103	Mrs	H	Lotus		Female	1947-11-15	\N	0					English	t	t			\N									First Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
104	M/s		Arch Rival Consultancy		Others	1900-01-01	\N	\N					English	t	t			\N									Sastri Nagar	Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	\N	\N	\N	f	Insurance	Mediclaim	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
105	M/s		Inside Out Nursing Home		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									5th Avenue	Kilpauk		Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Hospital	Polyclinic	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
106	Dr		Suri		Male	1900-01-01	\N	0					English	t	t			\N									Lake Area	Nungambakkam	\N	Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Doctor	Gastroenterologist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
107	M/s		Lime-and-Lemony Taxis		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N											\N	Chennai	Tamil Nadu	India				\N	\N	\N	\N	f	Utility	Call Taxi	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
108	M/s		Fast Track Call Taxi		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N											\N	Chennai	Tamil Nadu	India				\N	\N	\N	\N	f	Utility	Call Taxi	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
109	M/s		Call-a-Taxi-now		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N											\N	Chennai	Tamil Nadu	India				\N	\N	\N	\N	f	Utility	Call Taxi	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
110	M/s		Aluminium Bird Travels		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									Anna Salai			Chennai	Tamil Nadu	India	600006			\N	$0.00	\N	\N	f	Utility	Travel Agency	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
111	Dr	M.P.	Ringerman		Male	1900-01-01	\N	0					English	t	t			\N									Rani Street	Sanjeevi Nagar		Erode	Tamil Nadu	India	638009			\N	$0.00	\N	\N	f	Doctor	Dentist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
112	M/s		Boring Cable Network		Sole Proprietory	2003-01-01	\N	\N					English	t	t			\N									32nd Cross Street, Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	\N	\N	\N	f	Utility	Cable Network	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
113	Mr	V	Dingyman		Male	1900-01-01	\N	0					English	t	t			\N									Luz	Mylapore		Chennai	Tamil Nadu	India	600004			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
114	Mr	G.	Jade		Male	1900-01-01	\N	0					English	t	t			\N									L.B. Road	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
115	Mr	P	Sun		Male	1900-01-01	\N	0					English	t	t			\N									Burkit Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Business	Finance	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
116	Mrs		Chandramalika		Female	1900-01-01	\N	0					English	t	t			\N									Gokulam Colony, 1st Street, Second Cross	Pammal		Chennai	Tamil Nadu	India	600073			\N	$0.00	\N	\N	f	Academic	Arts	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
117	Mr		Kothandaraman		Male	1900-01-01	\N	0					English	t	t			\N									Norton 3rd Street	Mandaiveli	\N	Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Utility	Cause List Supplier	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
118	Mr		Vijayan		Male	1900-01-01	\N	0					English	t	t			\N									Rukmini Road, Kalakshetra Colony	Besant Nagar	\N	Chennai	Tamil Nadu	India	600090			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
119	Mr		Narayanan		Male	1900-01-01	\N	0					English	t	t			\N											\N	Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
120	Mrs		Gunnyman		Female	1900-01-01	\N	0					English	t	t			\N									Mahalakshmi Street	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Journalist	Magazines	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
121	Mrs		Bini Mini		Female	1900-01-01	\N	0					English	t	t			\N									Ramiah Street	Shenoy Nagar		Chennai	Tamil Nadu	India	600030			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
122	Mr		Ramanujam		Male	1900-01-01	\N	0					English	t	t			\N									Bhagirathi Ammal Street	T. Nagar		Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Advocate	Notary Public	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
123	Mr		Siva		Male	1900-01-01	\N	0					English	t	t			\N									Syed Wahab Hussain Sahib Street	Mylapore	\N	Chennai	Tamil Nadu	India	600004			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
124	Mr		Baboo		Male	1900-01-01	\N	0					English	t	t			\N									3rd Main Road, Gandhi Nagar	Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
125	Mrs		Devi		Female	1900-01-01	\N	0					English	t	t			\N									Cholan Road, Vidya Nagar	Ammapet	\N	Salem	Tamil Nadu	India	636003			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
126	Mr		Suprian		Male	1900-01-01	\N	0					English	t	t			\N									Soundarya Street	Ammapet	\N	Salem	Tamil Nadu	India	636003			\N	$0.00	\N	\N	f	Business	Common Salt	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
127	Mr		Genius		Male	1900-01-01	\N	0					English	t	t			\N										Hasthampatti	\N	Salem	Tamil Nadu	India	636007			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
128	M/s		Power Electricity Board		Others	1900-01-01	\N	\N					English	t	t			\N										Kottivakkam	\N	Chennai	Tamil Nadu	India	600104			\N	\N	\N	\N	f	Utility	Electricity	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
129	M/s		New Thread Link Tailors		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									2nd Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	\N	\N	\N	f	Utility	Tailor	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
130	Mr		Victory Raman		Male	1900-01-01	\N	0					English	t	t			\N									6th Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Carpentar	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
131	M/s		Useful Home Services		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N											\N	Chennai	Tamil Nadu	India				\N	\N	\N	\N	f	Utility	TVS Washing Machine Service	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
132	M/s		Ramu, Somu and Gomu Co		Partnership Firm	1900-01-01	\N	\N					English	t	t			\N									Dr. Radhakrishnan Road	Mylapore	\N	Chennai	Tamil Nadu	India	600004			\N	\N	\N	\N	f	Auditor		\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
133	Mr	T.X.	Sund Raman		Male	1968-01-01	\N	0					English	t	t			\N											\N		Tamil Nadu	India				\N	$0.00	\N	\N	f	Academic	Tamil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
134	M/s		Min and Shine		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N									1st Cross Street, Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Utility	Electrical and Plumbing	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
135	Mr	M.N.	Natesharen		Male	1900-01-01	\N	0					English	t	t			\N									Rajaji Colony		\N	Attur	Tamil Nadu	India	636102			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
136	Mr		Flame Man		Male	1900-01-01	\N	0					English	t	t			\N									Near Pillaiyar Koil Street	Ranipet	\N	Attur	Tamil Nadu	India	636102			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
137	Mrs	P	Sweetie		Female	1900-01-01	\N	0					English	t	t			\N									O.V. Road		\N	Ambur	Tamil Nadu	India	635802			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
138	Mrs		Kinky Pearson		Female	1900-01-01	\N	0					English	t	t			\N									SIDCO Nagar	Villivakkam	\N	Chennai	Tamil Nadu	India	600049			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
139	Mr	W.R.	music Rajan		Male	1900-01-01	\N	0					English	t	t			\N									2nd Crescent Park Road, Gandhi Nagar	Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
140	Mr	D	Three Lord		Male	1968-01-01	\N	0					English	t	t			\N									Saradha College Road	Five Roads	\N	Salem	Tamil Nadu	India	636016			\N	$0.00	\N	\N	f	Business	Hardwares	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
141	Mr	X	Sivasu		Male	1900-01-01	\N	0					English	t	t			\N									Perumal Mudaliar Plot	Venkatesapuram	\N	Salem	Tamil Nadu	India	636007			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
142	Mr		Paswan Khan Roy		Male	1900-01-01	\N	0					English	t	t			\N									Bamanwada	Sahar		Mumbai	Maharashtra	India	400099			\N	$0.00	\N	\N	f	Engineer	Bio Technology	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
143	Mr		Murugan dance king		Male	1900-01-01	\N	0					English	t	t			\N									West Bryn Mawr	STE 1100	\N	Chicago	Illinois	USA	IL 60631			\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
144	Mr		Cho Ko Min		Male	1900-01-01	\N	0					English	t	t			\N									Takamo	Sara-shi		Kanaga		Japan				\N	$0.00	\N	\N	f	Business	Fisheries	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
145	Dr	G	Arulan		Male	1900-01-01	\N	0					English	t	t			\N									North Usman Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
146	Mr		Arivasan		Male	1968-01-12	\N	0					English	t	t			\N													San Francisco	USA				\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
147	M/s		Sukhbir Food Service Private Limited		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									5th Main Road, Kasturba Nagar	Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	\N	\N	\N	f	Engineer	Power Generation	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
148	Mr	W	Macho		Male	1968-01-01	\N	0					English	t	t			\N									Govindappa Naicken Street	George Town	\N	Chennai	Tamil Nadu	India	600001			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
149	M/s		The Triple Cow Wagon		Others	1900-01-01	\N	\N					English	t	t			\N									Anna Salai			Chennai	Tamil Nadu	India	600002			\N	$0.00	\N	\N	f	Utility	Garments	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
150	Mr	P.J.	Rainbowman		Male	1900-01-01	\N	0					English	t	t			\N									Malony Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Advocate	Corporate Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
151	Mr	Q	Kinker		Male	1900-01-01	\N	0					English	t	t			\N									4th Main Road	Besant Nagar	\N	Chennai	Tamil Nadu	India	600090			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
152	Mr	S	Nindan		Male	1900-01-01	\N	0					English	t	t			\N									Leith Castle South Street	Foreshore Estate	\N	Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Advocate	Notary Public	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
153	M/s		Boremen Association		Others	1900-01-01	\N	\N					English	t	t			\N									High Court Buildings	High Court	\N	Chennai	Tamil Nadu	India	600104			\N	\N	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
154	Mr	A	Bajji		Male	1900-01-01	\N	0					English	t	t			\N									Agraharam Street	Chintadripet	\N	Chennai	Tamil Nadu	India	600002			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
155	Mr	N.V.	Mamesh		Male	1968-01-01	\N	0					English	t	t			\N									Venkataramiyer Street, V. Nagar	Mint	\N	Chennai	Tamil Nadu	India	600079			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
156	Mr	H.G	Nanvan		Male	1968-01-01	\N	0					English	t	t			\N									Vellala Street	Purasawalkam	\N	Chennai	Tamil Nadu	India	600084			\N	$0.00	\N	\N	f	Advocate	Law Officer	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
157	Dr	P	Arun		Male	1900-01-01	\N	0					English	t	t			\N									Thiruvalluvar Salai South Avenue	Thiruvanmiyur	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Doctor	Periodontics	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
158	Mr		Joy Man Center		Male	1967-01-01	\N	0					English	t	t			\N									Second Street, Sait Colony	Egmore	\N	Chennai	Tamil Nadu	India	600008			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
159	Mr	H	Vadhan		Male	1968-01-01	\N	0					English	t	t			\N									Thiruvalluvar Street	Mehta Nagar		Chennai	Tamil Nadu	India	600029			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
160	Mr	G	Bundran		Male	1968-01-01	\N	0					English	t	t			\N									20th East Street, Kamarajar Nagar	Thiruvanmiyur	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
161	Mr	B.M.	Rajan		Male	1967-01-01	\N	0					English	t	t			\N									T.T.K. Road	Royapettah	\N	Chennai	Tamil Nadu	India	600014			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
162	M/s		Sarvan Associates		Partnership Firm	1900-01-01	\N	\N					English	t	t			\N									2nd Street, Jagadambal Colony	Royapettah	\N	Chennai	Tamil Nadu	India	600014			\N	\N	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
163	Mr	HG.K.	Sridhar		Male	1968-01-01	\N	0					English	t	t			\N									Gandhi Nagar	Adayar		Chennai	Tamil Nadu	India	600020			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
164	Mr	F.L.	Suremar		Male	1968-01-01	\N	0					English	t	t			\N										Anna Nagar	\N	Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
165	Mr	D.D/	Vakumen		Male	1900-01-01	\N	0					English	t	t			\N									Thanikachalam  Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Advocate	Corporate Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
166	Mrs		Paru		Female	1900-01-01	\N	0					English	t	t			\N									Indira Nagar	Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
167	M/s		Holy Faith English School and Junior College		Others	1900-01-01	\N	\N					English	t	t			\N									2nd Cross Street, Mico Colony	Besant Nagar		Chennai	Tamil Nadu	India	600020			\N	$0.00	\N	\N	f	Academic	High School	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
168	Dr	N.B.	Theepan		Male	1968-01-01	\N	0					English	t	t			\N											\N	Coimbatore	Tamil Nadu	India				\N	$0.00	\N	\N	f	Doctor	Anesthetist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
169	Mrs	A.	Kaveri		Female	1900-01-01	\N	0					English	t	t			\N									SM Plaza, Armenian Street	George Town	\N	Chennai	Tamil Nadu	India	600001			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
170	Mr		Alagu Mahesan		Male	1900-01-01	\N	0					English	t	t			\N									Sivaperumal Street, Seetharaman Road			Salem	Tamil Nadu	India	636009			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
171	M/s		Stable Software Private Limited		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									Ega Trade Center	Kilpauk	\N	Chennai	Tamil Nadu	India	600000			\N	\N	\N	\N	f	Computer	Web Hosting	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
172	Mr		Inder		Male	1968-01-01	\N	0					English	t	t			\N									28th Cross Street, Indira Nagar	Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	$3,000.00	\N	\N	f	Utility	Driver	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
173	Dr		sami		Male	1900-01-01	\N	0					English	t	t			\N												Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Doctor	Anesthetist	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
174	Mr		Natajan		Male	1900-01-01	\N	0					English	t	t			\N									Thadagam Road		\N	Coimbatore	Tamil Nadu	India	641001			\N	$0.00	\N	\N	f	Engineer	Construction	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
175	Mr	Z.	Venasan		Male	1900-01-01	\N	0					English	t	t			\N									Prithiv Avenue	Abhiramapuram		Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Industrialist	Steel	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
176	Mr		Mokeram		Male	1900-01-01	\N	0					English	t	t			\N									Madley Road	T. Nagar	\N	Chennai	Tamil Nadu	India	600017			\N	$0.00	\N	\N	f	Management	Hospitals	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
177	Mr	D	Subiram		Male	1900-01-01	\N	0					English	t	t			\N									Kodambakkam High Road	Kodambakkam	\N	Chennai	Tamil Nadu	India	600000			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
178	Mrs		Swetha Sreedhar		Female	1974-09-01	\N	0					English	t	t			\N													New Jersy	USA				\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
179	M/s		Rocky Mountain Inc.		Public Limited Company	1900-01-01	\N	\N					English	t	t			\N									Sivananda Salai	Chepauk	\N	Chennai	Tamil Nadu	India	600005			\N	\N	\N	\N	f	Computer	ISP	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
180	Mr	N.T.	Ramagurusaminathan		Male	1968-01-01	\N	0					English	t	t			\N									Raman Salai	Periyar Nagar	\N	Chennai	Tamil Nadu	India	600082			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
181	Mr		Lad		Male	1968-01-01	\N	0					English	t	t			\N									Jagannatha Nagar	Arumbakkam	\N	Chennai	Tamil Nadu	India	600106			\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
182	Mr	K.	Giri Prakash		Male	1968-01-01	\N	0					English	t	t			\N									Main Road	Alwarpet	\N	Chennai	Tamil Nadu	India	600018			\N	$0.00	\N	\N	f	Advocate	Sales Tax	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
183	Mr	C.R.	Maralidharan		Male	1968-01-01	\N	0					English	t	t			\N											\N	Chennai	Tamil Nadu	India				\N	$0.00	\N	\N	f	Advocate	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
184	Mr		Subran		Male	1900-01-01	\N	0					English	t	t			\N									EVK Sampath Road	Vepery	\N	Chennai	Tamil Nadu	India	600007			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
185			Govaan		Others	1900-01-01	\N	\N					English	t	t			\N										Esplanade		Chennai	Tamil Nadu	India	600108			\N	$0.00	\N	\N	f	Judiciary	Liquidator	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
186			Tea and Coffee Limited		Public Limited Company	1900-01-01	\N	\N					English	t	t			\N									Anna Salai			Chennai	Tamil Nadu	India	600006			\N	$0.00	\N	\N	f	Publisher	Yellow Pages	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
187	M/s		Murugan and Valli Plumbers		Sole Proprietory	1900-01-01	\N	\N					English	t	t			\N											\N		Tamil Nadu	India				\N	\N	\N	\N	f	Utility	Plumbing	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
188	Mr		Kingler		Male	1900-01-01	\N	0					English	t	t			\N									L.B. Road, Kamaraj Nagar	Thiruvanmiyur		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Advocate	High Court, Chennai	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
189	Mr	K	Snegaun		Male	1900-01-01	\N	0					English	t	t			\N									3rd Street, Saraswathi Nagar	Adambakkam		Chennai	Tamil Nadu	India	600088			\N	$0.00	\N	\N	f	Engineer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
190	Mr		Moon Chandran		Male	1900-01-01	\N	0					English	t	t			\N									First Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension	\N	Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f	Publisher	Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
192	Mr	D.C.	Prosperun		Male	\N	\N	0					English	t	t			\N									Thiruvallur High Road			Chennai	Tamil Nadu	India	600056			\N	$0.00	\N	\N	f	Business	Granites	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
193	Mr	B.S.	Selvan		Male	\N	\N	0					English	t	t			\N									Raman Road	A.V.K. Nagar	\N	Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Business	Oil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
194	Dr	S.S.	Sadasivan		Male	1900-01-01	\N	0					English	t	t			\N									South Canal Bank Road	Mandaiveli		Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Doctor	ENT	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
195	Dr		Code Varrior		Male	1900-01-01	\N	0					English	t	t			\N									P.S. Sivasamy Salai	Mylapore	\N	Chennai	Tamil Nadu	India	600004			\N	$0.00	\N	\N	f	Doctor	ENT	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
196	M/s		Murukku Shop		Private Limited Company	1995-01-01	\N	\N					English	t	t			\N									Omalur Main Road	A.V.K. Nagar		Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Business	Finance	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
197	Mrs		Selvi Mata		Female	\N	\N	0					English	t	t			\N									First Main Road, Thiruvalluvar Nagar	Thiruvanmiyur Extension		Chennai	Tamil Nadu	India	600041			\N	$0.00	\N	\N	f			\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
198	Mr	M	Rajendra Hari Kumar		Male	\N	\N	40					English	t	t			\N									Janjai Edayar Village	Velur Post		Namakkal	Tamil Nadu	India	638182			\N	$0.00	\N	\N	f	Governance	Town Panchayat	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
199	Mr	C.P.	Kala Mohan		Male	\N	\N	0					English	t	t			\N									Koil Street	Triplicane		Chennai	Tamil Nadu	India	600005			\N	$0.00	\N	\N	f	Advocate	Civil and Criminal	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
200	Mr		Srigunam		Male	\N	\N	0					English	t	t			\N									Near Kabaleeswarar Koil	Mylapore	\N	Chennai	Tamil Nadu	India	600028			\N	$0.00	\N	\N	f	Advocate	Corporate Law	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
201	Mr	C.M.	David		Male	\N	\N	0					English	t	t			\N									Velachery Main Road	Selaiyur		Chennai	Tamil Nadu	India	600073			\N	$0.00	\N	\N	f	Advocate	Trade Marks and Patents	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
202	Mr	P.G.	Kauravan		Male	\N	\N	30					English	t	t			\N									Selathampatti	Sooramangalam		Salem	Tamil Nadu	India	636005			\N	$0.00	\N	\N	f	Governance	Town Panchayat	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
203	M/s		T.K.S. Electricals		Sole Proprietory	\N	\N	\N					English	t	t			\N									Thiruvalluvar Salai	Thiruvanmiyur	\N	Chennai	Tamil Nadu	India	600041			\N	\N	\N	\N	f	Utility	Electrical and Plumbing	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
204	M/s		Grey and Binary Technologies		Public Limited Company	\N	\N	\N					English	t	t			\N									Jawaharlal Nehru Road	Guindy	\N	Chennai	Tamil Nadu	India	600097			\N	\N	\N	\N	f	Computer	Hardware and Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
205	Mr	B	Arivalagan		Male	\N	\N	0					English	t	t			\N										Adayar	\N	Chennai	Tamil Nadu	India	600020			\N	$0.00	\N	\N	f	Business	Charity	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
206	M/s		Kailas and Co		Private Limited Company	\N	\N	\N					English	t	t			\N									Cathedral Road		\N	Chennai	Tamil Nadu	India	600086			\N	\N	\N	\N	f	Business	Chemicals	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
207	M/s		Zitty Ditty Dot Com		Private Limited Company	\N	\N	\N					English	t	t			\N									Some Lane There	Mountain View		CA	California	USA	94043			\N	$0.00	\N	\N	f	Computer	Security	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
208	M/s		Lots of Securities Limited		Public Limited Company	\N	\N	\N					English	t	t			\N									Chinthamani	Anna Nagar East	\N	Chennai	Tamil Nadu	India	600102			\N	\N	\N	\N	f	Business	Share Broker	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
209	M/s		King, Queen and Associates		Partnership Firm	\N	\N	\N					English	t	t			\N									Casa Major Road	Egmore	\N	Chennai	Tamil Nadu	India	600008			\N	\N	\N	\N	f	Auditor		\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
210	Mr	B.C.D.	Divinglur		Male	\N	\N	0					English	t	t			\N									Raman Road	A.V.K. Nagar	\N	Salem	Tamil Nadu	India	636004			\N	$0.00	\N	\N	f	Computer	Software	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
211	Mrs	A.D.	Kanagam		Female	1972-01-01	\N	0					English	t	t			\N									Mahalingapuram	Nungambakkam		Chennai	Tamil Nadu	India	600006			\N	$0.00	\N	\N	f	House-wife		\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
212	Selvi	S.A.	Radani		Female	1972-01-01	\N	0					English	t	t			\N									Mahalingapuram	Nungambakkam		Chennai	Tamil Nadu	India	600006			\N	$0.00	\N	\N	f	Engineer	Insulation and Fabrication	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
213	M/s		Securities Incharge of India Ltd		Public Limited Company	\N	\N	\N					English	t	t			\N											\N		Tamil Nadu	India				\N	\N	\N	\N	f	Shares	DP	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	utility
214	Mr	N.D.	Sekarian		Male	\N	\N	0					English	t	t			\N									Rose Tulip Avenue	#05-07 Green Garden Lodge		Singapore	Singapore	Singapore	546143			\N	$0.00	\N	\N	f	Business	Book Store	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
215	Mr	S	Rama Lakshmanan		Male	\N	\N	0					English	t	t			\N									Lotus Colony	Nandhanam		Chennai	Tamil Nadu	India	600018			\N	$0.00	\N	\N	f	Egineer	Civil	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
91	M/s		High Tension Enterprises		Private Limited Company	1900-01-01	\N	\N					English	t	t			\N									New Town Street	Hanumantha Nagar		Bangalore	Karnataka	India	560019			\N	$0.00	\N	\N	f	Business	Landlord	\N	t	\N		\N	0	m	f	stylesheets/calpp.css	
\.


--
-- Data for TOC entry 116 (OID 38682)
-- Name: procedures; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY procedures (procedure_id, procedure_code, procedure_name, source, main_head, sub_head, country_code, sub_procedure_in, first_step_code, first_step, invoking_group, verifying_group, work_area, script, is_singleton, organization) FROM stdin;
17	Journal	Journal	accounting-practice	Transactions	Journal	IND		Journal	1	ADMIN	MANAGER	chits	\N	\N	\N
10	CreateNewProcedure	Create New Procedure	Calpp Base Project	Procedures	Create New Procedure	IND		CreateNewProcedure	1	ADMIN	MANAGER	chits	\N	\N	\N
11	ManageProcedures	Manage Procedures	Calpp Base Project	Procedures	Manage Procedures	IND		ManageProcedures	1	ADMIN	MANAGER	chits	\N	\N	\N
14	ManageChitGroupTypes	Manage Chit Group Types	self-imposed	Classification	Chit Group Types	IND		ManageChitGroupTypes	1	ADMIN	MANAGER	chits	\N	\N	\N
12	ManageSystemLists	Manage System Lists	self-imposed	Classification	System Lists	IND		ManageSystemLists	1	ADMIN	MANAGER	chits	\N	\N	\N
13	ManageAccountHeadingTypes	Manage Account Heading Types	self-imposed	Classification	Account Heads	IND		ManageAccountHeadingTypes	1	ADMIN	MANAGER	chits	\N	\N	\N
15	Payment	Payment	accounting-practice	Transactions	Payment	IND		Payment	1	ADMIN	MANAGER	chits	\N	\N	\N
16	Receipt	Receipt	accounting-practice	Transactions	Receipt	IND		Receipt	1	ADMIN	MANAGER	chits	\N	\N	\N
19	InsertAccount	Insert New Account	accounting-practice	Accounts	Insert Account	IND		InsertAccount	1	ADMIN	MANAGER	chits	\N	\N	\N
20	EditAccount	Edit Account	accounting-practice	Accounts	Edit Account	IND		EditAccount	1	ADMIN	MANAGER	chits	\N	\N	\N
22	SubstitutionOfSecurity	Substitution of Security	ChitFundsAct; TNChitFundsRules;	Sub-Proceedings	Substitution of Security	IND	ConductChitGroup	SubstitutionOfSecurity	1	ADMIN	MANAGER	chits	\N	\N	\N
23	Proceedings	Query Proceedings	Calpp Base Project	Proceedings	Query Proceedings	IND		QueryProceedings	1	ADMIN	MANAGER	chits	\N	\N	\N
21	DeleteAccount	Delete Account	accounting-practice	Accounts	Delete Account	IND		DeleteAccount	1	ADMIN	MANAGER	chits	\N	\N	\N
24	ChitTransactions	Chit Financial Transactions	ChitFundsAct; TNChitFundRules	Transactions	Chit-Transactions	IND	ConductChitGroup	ChitTransactions	1	ADMIN	MANAGER	chits	\N	\N	\N
2	EditContact	Edit Contact Particulars	self-imposed	Contacts	Edit Contact	IND		EditContact	1		MANAGER	chits	\N	\N	\N
3	DeleteContact	Delete Contact 	self-imposed	Contacts	Delete Contact	IND		DeleteContact	1		MANAGER	chits	\N	\N	\N
8	DeleteContactRelationship	Delete a Relationship made between Contacts	self-imposed	Contacts	Delete Contact Relationship	IND		DeleteContactRelationship	1		MANAGER	chits	\N	\N	\N
7	InsertContactRelationship	Insert a Relationship between Contacts	self-imposed	Contacts	Insert Contact Relationship	IND		InsertContactRelationship	1		MANAGER	chits	\N	\N	\N
1	InsertContact	Insert New Contact	self-imposed	Contacts	Insert Contact	IND		InsertContact	1		MANAGER	chits	\N	\N	\N
9	QueryContacts	Query Contact Information	self-imposed	Contacts	Query Contacts	IND		QueryContacts	1		MANAGER	chits	\N	\N	\N
25	CalppMain	Introduction to Calpp: Computer Aided Legal Procedures and Proceedings	calpp_base_project	Help	Calpp	IND		CalppHelp	1	ADMIN	MANAGER	\N	\N	\N	\N
26	CalppQueries	Calpp Database Queries	maintenance	Calpp	Maintenance	IND		CalppQueries	1	ADMIN	MANAGER		\N	\N	\N
18	ConductChitGroup	Commence and Conduct Chit Group	ChitFundsAct; TNChitFundsRules;	Chit-Groups	Commence and Conduct Chit Groups	IND		00Resolution	1	ADMIN	MANAGER	chits	function get_chit_figures($subscription, $subscribers, $foreman_com_rate, $max_bid_rate, $bid_amount){\r\n    // note: bid_amount = discount\r\n    $chit_amount = $subscribers * $subscription;\r\n    $foreman_com_amount = $chit_amount * ($foreman_com_rate / 100);\r\n    $min_bid_amount = $foreman_com_amount;\r\n    $max_bid_amount = $chit_amount * ($max_bid_rate / 100);\r\n    $prize_amount = $chit_amount - $bid_amount;\r\n    $dividend = ($bid_amount - $foreman_com_amount) / $subscribers;\r\n    $dividend_rate = ($dividend / $subscription) * 100;\r\n    $chit_dividend = $bid_amount - $foreman_com_amount;\r\n    $monthly_share_amount = $subscription - $dividend;\r\n    // budget expectations\r\n    $expected_foreman_commission = $subscribers * $foreman_com_amount;\r\n    $expected_group_turnover = $subscribers * $subscription * $subscribers;\r\n    // result array\r\n    // given\r\n    $result[subscription] = $subscription;\r\n    $result[subscribers] = $subscribers;\r\n    $result[foreman_com_rate] = $foreman_com_rate;\r\n    $result[max_bid_rate] = $max_bid_rate;\r\n    $result[bid_amount] = $bid_amount;\r\n    // calculated\r\n    $result[chit_amount]= $chit_amount;\r\n    $result[foreman_com_amount] = $foreman_com_amount;\r\n    $result[min_bid_amount] = $min_bid_amount;\r\n    $result[max_bid_amount] = $max_bid_amount;\r\n    $result[prize_amount] = $prize_amount;\r\n    $result[dividend] = $dividend;\r\n    $result[dividend_rate] = $dividend_rate;\r\n    $result[chit_dividend] = $chit_dividend;\r\n    $result[monthly_share_amount] = $monthly_share_amount;\r\n    $result[expected_foreman_commission] = $expected_foreman_commission;\r\n    $result[expected_group_turnover] = $expected_group_turnover;\r\n    return $result;   \r\n}\r\necho "<h1>proc_new: $proc_new</h1>";\r\nif ($proc_new=="true"){\r\n    // new procedure\r\n    $ding_code=$ChitGroup[Code];\r\n    $ding_name="Chit Group " . $ChitGroup[Code];\r\n    $sql = "insert into proceedings (procedure_code, proceeding_code, proceeding_name, last_completed_step_id) values ('$proc_code', '$ding_code', '$ding_name', $step_id)";\r\n    echo "<p>proceedings:$sql";\r\n    $last_ding_oid = Exec_Sql($sql);    \r\n    $sql = "select proceeding_id from proceedings where oid=$last_ding_oid";\r\n    $ding_id = Retn_Result($sql);       \r\n    //echo "<p>sql:$sql";\r\n    //  REGISTER PROCEEDING IN SUBSIDARY TABLES\r\n    $ac_name = $ding_code . " Group Account";\r\n    $chit_group_achead = 46;\r\n    $entity_id = $login_entity;\r\n    $sql = "insert into accounts(account_code, account_name, achead_id, entity_id) \r\n\t\t\t values ('$ding_id', '$ac_name', $chit_group_achead, $entity_id)";\r\n    $last_ac_oid = Exec_Sql($sql);\r\n    $sql = "select account_id from accounts \r\n\t     where oid=$last_ac_oid";\r\n    $account_id = Retn_Result($sql);  \r\n    $sql = "insert into chitgroups (chitgroup_code, chitgrouptype_id, proceeding_id, \r\n\t\t\t\t    account_id, foreman_contact_id) \r\n\t\t\t    values ('$ding_code', $ChitGroup[TypeID], $ding_id, $account_id, 1)";\r\n    $last_chit_regn_id = Exec_Sql($sql);\r\n\r\n    // REGISTER EVENT\r\n    $event_id = insert_event($ding_id, $step_id);\r\n\r\n    // REGISTER ASSERTIONS\r\n    reset($sql_assertion);\r\n    while (list($key, $value)=each($sql_assertion)){\r\n         $value=str_replace('^event_id^', $event_id, $value);\r\n         echo "<p>$value";\r\n\t $assertion_oid[]=Exec_Sql($value);\r\n    }\r\n    echo "<b>Proceedings completed.</b><br>";\r\n    echo "<b>Transaction event_id: $event_id</b>";\r\n    echo "<h2><a href=Proceedings.php>Back to Proceedings</a></h2>";\r\n    echo "<hr>";\r\n    exit;\r\n}\r\n$ding = get_record_info("proceeding_id", $ding_id);\r\n$cg = get_chit_group_info("$ding[proceeding_code]");\r\n$cgt = get_chit_type_info($cg[chitgrouptype_id]);\r\n$st= get_record_info("step_id", $step_id);\r\n$cg_dump = get_array($step);\r\n// echo "$cg_dump";\r\n$step=$st[step];\r\n$step_code=$st[step_code];\r\n/*******************************************************************************************/\r\n//         step_code         | step |                       step_name\r\n//---------------------------+------+--------------------------------------------------------\r\n// 00Resolution              |    1 | Resolution for commencing and conducting new chit  \r\n// code to be executed at each step is given a heading has above\r\n/*******************************************************************************************/     \r\n// 02ChitRegistration        |    2 | Endorsement of Registration\r\nif (($step_code=="02ChitRegistration") && ($step==2)){\r\n    // create tickets\r\n    $subscribers = $cgt[subscribers];\r\n    echo "<h1>Subscribers:$subscribers</h1>";\r\n    for ($i=1; $i<=$subscribers; $i++){\r\n         $chit_subscriber_code = $ding[proceeding_code] . "_" . $i;\r\n\t $sql = "insert into chit_subscribers (chit_subscriber_code, ticket_number, chitgroup_code)\r\n                                       values (\\'$chit_subscriber_code\\', $i, \\'$ding[proceeding_code]\\')";\r\n         $result = Exec_Sql($sql);\r\n    }\r\n}\r\n \r\n// 02ChitRegistration        |    5 | Enlisting of Subscribers\r\nif (($step_code=="02ChitRegistration") && ($step==5)){\r\n    // enlist given subscriber to the group\r\n    \r\n}\r\n\r\n// 03ChitAuction             |    1 | Notice of Auction to Subscribers\r\nif (($step_code=="03ChitRegistration") && ($step==1)){\r\n    // issue auction notice\r\n}\r\n\r\n// 03ChitAuction             |    2 | Chit Auction Meeting\r\nif (($step_code=="03ChitRegistration") && ($step==3)){\r\n    // conduct an auction\r\n\r\n}\r\n\r\n// 03ChitAuction             |    3 | Filing of Minutes of Auction\r\nif (($step_code=="03ChitRegistration") && ($step==3)){\r\n    // file minutes of auction\r\n\r\n}\r\n\r\n// 04ChitTermination         |    1 | Termination of Chit\r\nif (($step_code=="03ChitRegistration") && ($step==1)){\r\n    // terminate chit group\r\n\r\n}              \r\n	\N	\N
27	hello_world	Hello World!	programming_convention	computing	sample procedure	IND		HelloWorld	1	ADMIN	MANAGER		function register_proceeding(){\r\n}	\N	\N
28	test_procedure	Test Procedure	programming_convention	computing	sample procedure	IND		00Test	1	ADMIN	MANAGER		// php script for test procedure\r\nfunction make_proceeding_name(){\r\n   // generate unique name for proceeding\r\n   global $full_name;\r\n   $sql = "select nextval('proceedings_name_seq')";\r\n   $result = Retn_Result($sql);\r\n   $ding_name = "Test Proceeding by $full_name - Ref:$result";\r\n   return $ding_name;   \r\n}\r\n\r\nfunction register_proceeding(){\r\n    // register test proceeding\r\n    global $proc_code;\r\n    global $ding_code;\r\n    global $step_id;\r\n    $ding_name = make_proceeding_name();\r\n    $sql = "insert into proceedings (procedure_code, proceeding_code, proceeding_name, last_completed_step_id) values ('$proc_code', '$ding_code', '$ding_name', $step_id)";\r\n    //echo "<p>proceedings:$sql";\r\n    $last_ding_oid = Exec_Sql($sql);    \r\n    $sql = "select proceeding_id from proceedings where oid=$last_ding_oid";\r\n    $ding_id = Retn_Result($sql);\r\n    return $ding_id;\r\n}	\N	\N
\.


--
-- Data for TOC entry 117 (OID 38693)
-- Name: steps; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY steps (step_id, step_code, step_name, procedure_code, step, next_step_code, next_step, next_time_limit, next_time_limit_unit, time_bar_step_code, time_bar_step, default_step, action_by, step_source, is_multi_step, script, input_form) FROM stdin;
4	InsertContactRelationship	Insert a Relationship between two Contacts	InsertContactRelationship	1	END	0	0			0	0	ADMIN		f		contacts.php
5	DeleteContactRelationship	Delete Relationship made between Contacts	DeleteContactRelationship	1	END	0	0			0	0	ADMIN		f		contacts.php
6	ManageSystemLists\t	Manage System Lists	ManageSystemLists	1	END	0	0			0	0	ADMIN		f		ManageSystemLists.php
7	ManageAccountHeadingTypes	Manage Account Heading Types	ManageAccountHeadingTypes	1	END	0	0			0	0	ADMIN		f		ManageAccountHeadingTypes.php
8	ManageChitGroupTypes	Manage Chit Group Types	ManageChitGroupTypes	1	END	0	0			0	0	ADMIN		f		ManageChitGroupTypes
9	Payment	Payment out of Money	Payment	1	END	0	0			0	0	ADMIN		f		Transactions.php?action=payment
10	Receipt	Receipt of Money	Receipt	1	END	0	0			0	0	ADMIN		f		Transactions.php?action=receipt
11	Journal	Journal Entry	Journal	1	END	0	0			0	0	ADMIN		f		Transactions.php?action=journal
1	InsertContact	Insert New Contact	InsertContact	1	END	0	0			0	0	ADMIN		f		Contacts.php?action=add_new_contact
2	EditContact	Edit Contact Particulars	EditContact	1	END	0	0			0	0	ADMIN		f		Contacts.php
3	DeleteContact	Delete Contact Particulars	DeleteContact	1	END	0	0			0	0	ADMIN		t		Contacts.php
13	InsertAccount	Insert New Account	InsertAccount	1	END	0	0			0	0	ADMIN		f		Accounts.php?action=InsertAccount
14	EditAccount	Edit Account	EditAccount	1	END	0	0			0	0	ADMIN		f		Accounts.php?action=EditAccount
15	DeleteAccount	Delete Account	DeleteAccount	1	END	0	0			0	0	ADMIN		f		Accounts.php?action=DeleteAccount
58	05ReleaseOfSecurity	Rejection of Application for Releasing Security	ConductChitGroup	3	05ReleaseOfSecurity	4	0			0	0	ADMIN	R.24	f		
59	05ReleaseOfSecurity	Appeal u/s.74(1)(d) to Release Security	ConductChitGroup	4	05ReleaseOfSecurity	5	0			0	0	ADMIN	S.74(1)(d)	f		
65	ChitTransactions	New Group Collection	ChitTransactions	1	END	0	0			0	0			f		Transactions.php?action=Subscription
16	01PSO	Application furnishing security	ConductChitGroup	1	01PSO	2	0			0	0	ADMIN	S.20;R.18;Form X	\N		
17	01PSO	Acceptance of Security	ConductChitGroup	2	01PSO	5	0			0	0	ADMIN	S.20(1);R.18;Form XI	\N		
18	01PSO	Refusal of Security	ConductChitGroup	2	01PSO	3	0			0	0	ADMIN	S.20(1)	\N		
19	01PSO	Appeal u/s.74(1)(c)	ConductChitGroup	3	01PSO	4	0			0	0	ADMIN	S.74(1)(c)	\N		
20	01PSO	Hearing of Appeal u/s.74(1)(c)	ConductChitGroup	4	01PSO	4	0			0	0	ADMIN	S.74	\N		
21	01PSO	Appeal u/s.74(1)(c) allowed	ConductChitGroup	4	01PSO	5	0			0	0	ADMIN	S.74	\N		
22	01PSO	Appeal u/s.74(1)(c) dismissed	ConductChitGroup	4	END	0	0			0	0	ADMIN	S.74	\N		
23	01PSO	Application for PSO	ConductChitGroup	5	01PSO	6	0			0	0	ADMIN	S.4(2);R.3;Form.I	\N		
24	01PSO	Hearing of Application for PSO	ConductChitGroup	6	01PSO	6	0			0	0	ADMIN	S.4(3)	\N		
25	01PSO	PSO granted	ConductChitGroup	6	02ChitRegistration	1	0			0	0	ADMIN	S.4(4)	\N		
26	01PSO	PSO refused	ConductChitGroup	6	01PSO	7	0			0	0	ADMIN	S.4(4)	\N		
27	01PSO	Appeal u/s.4(5) against refusal of PSO	ConductChitGroup	7	01PSO	8	0			0	0	ADMIN	S.4(5)	\N		
28	01PSO	Hearing of Appeal u/s.4(5)	ConductChitGroup	8	01PSO	8	0			0	0	ADMIN	S.4(5)	\N		
29	01PSO	Appeal u/s.4(5) allowed granting PSO	ConductChitGroup	8	02ChitRegistration	1	0			0	0	ADMIN	S.4(5)	\N		
30	01PSO	Appeal u/s.4(5) dismissed refusing PSO	ConductChitGroup	8	END	0	0			0	0	ADMIN	S.4(5)	\N		
31	01PSO	Application u/s.4(1) to extend time for Regn.	ConductChitGroup	9	01PSO	10	0			0	0	ADMIN	S.4(1)	\N		
32	01PSO	Extension of time granted u/s.4(1)	ConductChitGroup	10	02ChitRegistration	1	0			0	0	ADMIN	S.4(1)	\N		
33	01PSO	Extension of time refused u/s.4(1)	ConductChitGroup	10	END	0	0			0	0	ADMIN	S.4(1)	\N		
34	02ChitRegistration	Application u/s.7 for Regn. of Chit Agreement	ConductChitGroup	1	02ChitRegistration	2	0			0	0	ADMIN	S.7;R.5;Form II;Form VIII;S.6	\N		
35	02ChitRegistration	Endorsement of Registration	ConductChitGroup	2	02ChitRegistration	5	0			0	0	ADMIN	S.7(2);R.6;Form III	\N		
36	02ChitRegistration	Refusal to Register the Chit Agreement	ConductChitGroup	2	02ChitRegistration	3	0			0	0	ADMIN	S.7(2)	\N		
37	02ChitRegistration	Appeal u/s.74(1)(a) against refusal to register	ConductChitGroup	3	02ChitRegistration	4	0			0	0	ADMIN	S.74(1)(a)	\N		
38	02ChitRegistration	Hearing of Appeal u/s.74(1)(a)	ConductChitGroup	4	02ChitRegistration	4	0			0	0	ADMIN	S.74	\N		
39	02ChitRegistration	Appeal u/s.74(1)(a) allowed	ConductChitGroup	4	02ChitRegistration	5	0			0	0	ADMIN	S.74	\N		
40	02ChitRegistration	Appeal u/s.74(1)(a) dismissed	ConductChitGroup	4	END	0	0			0	0	ADMIN	S.74	\N		
41	02ChitRegistration	Enlisting of Subscribers	ConductChitGroup	5	02ChitRegistration	6	0			0	0	ADMIN	S.9	\N		
42	02ChitRegistration	Declaration u/s.9 that tickets are fully subscribe	ConductChitGroup	6	02ChitRegistration	7	0			0	0	ADMIN	S.9(1);R.10;Form V	\N		
43	02ChitRegistration	Certificate of Commencement of Chit	ConductChitGroup	7	02ChitRegistration	10	0			0	0	ADMIN	S.9(2);R.11;Form VI	\N		
44	02ChitRegistration	Refusal of Certificate of Commencement	ConductChitGroup	7	02ChitRegistration	8	0			0	0	ADMIN	S.9(2)	\N		
67	ChitTransactions	Payment of Prize Money	ChitTransactions	1	END	0	0			0	0			\N		
45	02ChitRegistration	Appeal u/s.74(1)(b)	ConductChitGroup	8	02ChitRegistration	9	0			0	0	ADMIN	S.74(1)(b)	\N		
46	02ChitRegistration	Hearing of Appeal u/s.74(1)(b)	ConductChitGroup	9	02ChitRegistration	9	0			0	0	ADMIN	S.74	\N		
47	02ChitRegistration	Appeal u/s.74(1)(b) allowed	ConductChitGroup	9	02ChitRegistration	10	0			0	0	ADMIN	S.74	\N		
48	02ChitRegistration	Appeal u/s.74(1)(b) dismissed	ConductChitGroup	9	END	0	0			0	0	ADMIN	S.74	\N		
49	02ChitRegistration	Furnishing Copies of Chit Agreement to Subscribers	ConductChitGroup	10	03ChitAuction	1	0			0	0	ADMIN	S.10	\N		
50	03ChitAuction	Notice of Auction to Subscribers	ConductChitGroup	1	03ChitAuction	2	0			0	0	ADMIN	S.16;R.16;Form IX	\N		
51	03ChitAuction	Chit Auction Meeting	ConductChitGroup	2	03ChitAuction	3	0			0	0	ADMIN	S.16	\N		
52	03ChitAuction	Filing of Minutes of Auction	ConductChitGroup	3	SCRIPT	0	0			0	0	ADMIN	S.18	\N		
66	ChitTransactions	Receipt of Chit Subscription	ChitTransactions	1	END	0	0			0	0			\N		
53	04ChitTermination	Termination of Chit	ConductChitGroup	1	05ReleaseOfSecurity	1	0			0	0	ADMIN	S.40	\N		
54	05ReleaseOfSecurity	Application for Releasing Security	ConductChitGroup	1	05ReleaseOfSecurity	2	0			0	0	ADMIN	S.20(5);R.22	\N		
55	05ReleaseOfSecurity	Objections against Releasing Security	ConductChitGroup	2	05ReleaseOfSecurity	3	0			0	0	ADMIN	R.24(1)	\N		
56	05ReleaseOfSecurity	Hearing of Objections for Releasing Security	ConductChitGroup	3	05ReleaseOfSecurity	3	0			0	0	ADMIN	R.24(2)	\N		
57	05ReleaseOfSecurity	Release of Security Ordered	ConductChitGroup	3	06ChitClosing	1	0			0	0	ADMIN	R.24	\N		
60	05ReleaseOfSecurity	Hearing of Appeal u/s.74(1)(d)	ConductChitGroup	5	05ReleaseOfSecurity	5	0			0	0	ADMIN	S.74	\N		
61	05ReleaseOfSecurity	Appeal u/s.74(1)(d) allowed	ConductChitGroup	5	06ChitClosing	1	0			0	0	ADMIN	S.74	\N		
62	05ReleaseOfSecurity	Appeal u/s.74(1)(d) dismissed	ConductChitGroup	5	06ChitClosing	1	0			0	0	ADMIN	S.74	\N		
63	06ChitClosing	Report on the Chit Conducted	ConductChitGroup	1	06ChitClosing	2	0			0	0	ADMIN	self-imposed	\N		
64	06ChitClosing	Destruction of Chit Group Records	ConductChitGroup	2	END	0	0			0	0	ADMIN	S.45	\N		
68	ChitTransactions	Payment to Defaulting Subscriber	ChitTransactions	1	END	0	0			0	0			\N		
69	CalppHelp	Calpp: Computer Aided Legal Procedures and Proceedings	CalppMain	1	CalppHelp	2	0			0	0			f		
70	CalppHelp	Data Validation, Conversion and Manipulation	CalppMain	2	CalppHelp	3	0			0	0			\N	\N	\N
71	CalppHelp	Procedures	CalppMain	3	CalppHelp	4	0			0	0			\N	\N	\N
73	CalppHelp	Authentication and Rights	CalppMain	5	CalppHelp	6	0			0	0			\N	\N	\N
74	CalppHelp	Contacts	CalppMain	6	CalppHelp	7	0			0	0			\N	\N	\N
75	CalppHelp	Transactions	CalppMain	7	CalppHelp	1	0			0	0			\N	\N	\N
76	CalppQueries	Calpp Queries: General	CalppQueries	1	CalppQueries	1	0			0	0	Admin		f		
72	CalppHelp	Proceedings	CalppMain	4	CalppHelp	5	0			0	0			f		
12	00Resolution	Resolution for commencing and conducting new chit	ConductChitGroup	1	01PSO	1	15	d	01PSO	1	0	ADMIN		f	// testing resolution script	ChitGroups.php
78	HelloWorld	Hello World	hello_world	1	END	0	\N	\N	\N	\N	1	''	''	f	// hello world\r\necho "hello world";	''
82	00Test	First step in Test Procedure	test_procedure	1	00Test	2	0			0	0	''	programming_convention	f	\N	\N
83	00Test	Try a simple step again	test_procedure	2	00Test	2	0			0	0			\N	\N	\N
84	00Test	Try data validation in Calpp	test_procedure	2	00Test	3	0			0	0			\N	\N	\N
85	00Test	Conclusion	test_procedure	3	END	0	0			0	0			\N	\N	\N
\.


--
-- Data for TOC entry 118 (OID 38701)
-- Name: particulars; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY particulars (particular_id, step_id, heading, particular_code, particular_name, data_type, control, control_tags, rank, min_heading, max_heading, min_key, max_key, default_min_heading, default_min_key, stored_in_table, field_name, default_value, id_in_table, scope, data_nature, notes, script) FROM stdin;
25	70	Form	DataValidation	Data Validation, Conversion and Manipulation	htm	form		1	1	1	1	1	1	1	facts	fact			procedure	R		// testing data validation, conversion and manipulation\r\nwhile (list($key, $value)=each($hp[Contact])){\r\n   //     echo "<p>$value";\r\n}
26	70	Date	VisitValidation	Date of Visiting Data Validation	dte	text		1.1	1	1	1	1	1	1	facts	fact			procedure	R		\N
27	70	Notes	Notes	Notes on Validation	txt	textarea		1.2	1	1	1	1	1	1	facts	fact			procedure	R		\N
3	1	Aliases	Notes	Notes	txt	textarea		1.02	1	2	1	1	2	0	facts	fact			procedure	R		\N
4	1	ContactModes	Mode	Contact Mode	txt	select	size=1	1.03	1	2	1	1	2	0	facts	fact	Telephone;Mobile;Pager;Fax;e-mail;Telex;Telegram;Home;Office;Resort;		procedure	R		\N
6	1	Anniversaries	Anniversary	Occasion	txt	select	size=1	1.05	1	2	1	1	2	0	facts	fact	Wedding;Birthday;		procedure	R		\N
9	1	Miscellaneous	Notes	Notes	txt	textarea		1.09	1	5	1	1	3	0	facts	fact			procedure	R		\N
2	1	Aliases	Name	Alias Name	txt	text		1.01	1	2	1	1	2	0	facts	fact			procedure	R		\N
5	1	ContactModes	Number	Number/Detail	txt	text		1.04	1	2	1	1	2	0	facts	fact			procedure	R		\N
8	1	Anniversaries	Reminder	Remind	txt	text		1.07	1	2	1	1	2	0	facts	fact			procedure	R		\N
16	12	ChitGroup	Code	Chit Group Code	txt	text		1.05	1	1	1	1	1	0	chitgroups	chitgroup_code			procedure	R		\N
7	1	Anniversaries	Date	Date	dte	text		1.06	1	2	1	1	2	0	facts	fact			procedure	R		\N
10	1	Miscellaneous	Date	Date	dte	text		1.1	1	5	1	1	3	0	facts	fact			procedure	R		\N
1	1	ContactForm	ContactParticulars	Contact Particulars	frm	xml		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
40	71	Date	VisitingProcedures	Date of visiting procedures	dte	text		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
41	71	Notes	NotesOnProcedures	Notes on Procedures	txt	textarea	rows=10 cols=50	1	1	1	1	1	1	1	facts	fact			procedure	R		\N
44	73	Date	VisitingSecurity	Date of visiting security	dte	text		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
45	73	Notes	SecurityNotes	Notes on security	txt	textarea		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
46	74	Date	VisitingContacts	Date of visiting contacts	dte	text		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
47	74	Notes	ContactsNotes	Notes on Contacts	txt	textarea		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
48	75	Date	VisitingTransactions	Date of visiting transactions	dte	text		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
49	75	Date	VisitingTransactions	Date of visiting of transactions	dte	text		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
50	75	Notes	TransactionNotes	Notes on transactions	txt	textarea		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
68	76	Particulars	Particulars	Particulars	txt	text		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
43	72	Notes	ProceedingsNotes	Notes on Proceedings	txt	textarea		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
42	72	Date	VisitingProceedings	Date of  first visiting proceedings	dte	text		1	1	1	1	1	1	1	facts	fact			procedure	R	sample notes 5	\N
64	72	SampleControls	SelectSql	select control - sql based	txt	checkbox		1.001	1	1	1	1	1	1	facts	fact	sql:select contact_id, name from contacts order by name	contacts	procedure	R		\N
51	72	SampleControls	text	text control	txt	text		1.03	1	1	1	1	1	3	facts	fact	Sample Text		procedure	R	sample notes 4	\N
52	72	SampleControls	password	password control	txt	password		1.04	1	1	1	1	1	1	facts	fact	secret		procedure	R		\N
53	72	SampleControls	textarea	textarea control	txt	textarea		1.05	1	1	1	1	1	1	facts	fact			procedure	R		\N
54	72	SampleControls	radio_value_based	radio control - value based	txt	radio		1.06	1	1	1	1	1	1	facts	fact	male;female		procedure	R		\N
55	72	SampleControls	radio_index_based	radio control - index based	int	radio		1.07	1	1	1	1	1	1	facts	fact	0:short;1:average;2:tall		procedure	R		\N
56	72	SampleControls	checkbox_value_based	checkbox control - value based	txt	checkbox		1.08	1	1	1	1	1	1	facts	fact	cricket;football;tennis;hockey;		procedure	R		\N
57	72	SampleControls	checkbox_index_based	checkbox control - index based	txt	checkbox		1.09	1	1	1	1	1	1	facts	fact	0:India;1:Norway;2:United Kingdom;3:United States of America;4:Australia;5:Germany;6:France		procedure	R		\N
58	72	SampleControls	select_single_value_based	select control - single - value based	txt	select	size=1	1.091	1	1	1	1	1	1	facts	fact	illiterate;matriculate;diploma-holder;graduate;post-graduate;doctorate		procedure	R		\N
59	72	SampleControls	select_single_index_based	select control - single - index based	int	select	size=1	1.1	1	1	1	1	1	1	facts	fact	illiterate;matriculate;diploma-holder;graduate;post-graduate;doctorate		procedure	R		\N
61	72	SampleControls	select_multiple_index_based	select control - multiple - index based	int	select	size=5	1.12	1	1	1	1	1	1	facts	fact	0:black;1:violet;2:indigo;3:blue;4:green;5:yellow;6:orange;7:red;8:white		procedure	R		\N
62	72	SampleControls	file	file control	fle	file		1.13	1	1	1	1	1	1	facts	fact	/usr/local/httpd/htdocs/index.html		procedure	R		\N
63	72	SampleControls	ImageControl	image control	img	image	src=Calpp3cmX3cm.jpg	1.14	1	1	1	1	1	1	facts	fact			procedure	R		\N
66	72	SampleControls	script_php	php script include	scr	script	php	1.2	1	1	1	1	1	1	directory	./particulars	before_submit		procedure	R	sample notes 7	\N
67	72	SampleControls	php_script_form	php based form generator	scr	script	php	1.21	1	1	1	1	1	1	facts	fact	after_submit		procedure	R	sample notes 6	\N
69	72	TestHeading0	TestHeading0	Test Heading0	txt	text		1.3	0	0	0	0	0	0	facts	fact			procedure	R	sample notes 3	\N
70	72	TestHeading1	TestHeading1	TestHeading1	txt	text		1.4	1	1	1	1	1	1	facts	fact			procedure	R	sample notes 2	\N
72	72	TestHeading2	TestHeading2A	testing 2A	txt	text		1.5	2	2	1	1	2	1	facts	fact			procedure	R	Sample notes 1	\N
73	72	TestHeading2	TestHeading2B	testing 2B	txt	text		1.51	2	2	2	2	2	2	facts	fact			procedure	R	Test notes	\N
74	72	TestHeading2	TestHeading2C	testing 2C	txt	radio		1.52	1	1	1	1	1	1	facts	fact	0:male;1:female		procedure	R	Test notes	\N
60	72	SampleControls	select_multiple_value_based	select contol - multiple - value based	txt	select	size=5	1.11	1	1	1	1	1	1	facts	fact	black;violet;indigo;blue;green;yellow;orange;red;white		procedure	M		\N
65	72	SampleControls	SelectSqlBased	select - sql based	txt	select		1	1	1	1	1	1	1	facts	fact	sql:select contact_id, name from contacts order by name	contacts	procedure	R		\N
12	12	Resolution	Date	Date of Resolution	dte	text		1.01	1	1	1	1	1	0			get:current_date		procedure	R		\N
14	12	ChitGroup	TypeID	Chit Group Type	int	select		1.03	1	1	1	1	1	0	chitgroups	chitgrouptype_id	sql:select  chitgrouptype_id, chitgroup_prefix, ':', subscribers, ' x  Rs. ', to_char(subscription, '99G99G99G999'), ' = Rs. ', to_char(chit_amount, '99G99G99G999')   from chitgrouptypes	chitgrouptypes	procedure	R		\N
28	16	Form	FormX	Application furnishing security	url	xml		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
29	16	Date	DateOfFormX	Application date	dte	text		1.01	1	1	1	1	1	1	facts	fact	sql:select CURRENT_DATE		procedure	R		\N
30	16	Applicant	ApplicantName	Name of the Applicant	txt	text		1.02	1	1	1	1	1	1	facts	fact	FOREMAN_NAME		procedure	R		\N
31	16	Applicant	ApplicantAddress	Address of Applicant	txt	text		1.03	1	1	1	1	1	1	facts	fact	FOREMAN_ADDRESS		procedure	R		\N
32	16	Applicant	ApplicantAge	Age of Applicant	txt	text	 	1.04	1	1	1	1	1	1	facts	fact	FOREMAN_AGE		procedure	R		\N
33	16	Applicant	Occupation	Occupation	txt	text		1.05	1	1	1	1	1	1	facts	fact	FOREMAN_OCCUPATION		procedure	R		\N
34	16	Applicant	ContactId	Contact Id of Applicant	int	text		1.06	1	1	1	1	1	1	facts	fact			procedure	R		\N
35	16	MovableSecurity	FixedDRNo	Fixed Deposit Receipt No	txt	text		1.07	1	1	1	1	1	1	facts	fact			procedure	R		\N
36	16	MovableSecurity	DateOfDeposit	Date of Deposit	dte	text		1.08	1	1	1	1	1	1	facts	fact			procedure	R		\N
37	16	MovableSecurity	BankOfDeposit	Bank in which Deposited	txt	text		1.09	1	1	1	1	1	1	facts	fact			procedure	R		\N
38	16	MovableSecurity	DateOfMaturity	Date of Maturity of Deposit	txt	text		1.1	1	1	1	1	1	1	facts	fact			procedure	R		\N
39	16	MovableSecurity	SecurityAmount	Deposit Amount	pcr	text		1.11	1	1	1	1	1	1	facts	fact			procedure	R		\N
75	16	ImmovableSecurity	District	District	txt	text		1.12	1	10	1	1	2	1	facts	fact			procedure	O		\N
76	16	ImmovableSecurity	SubDistrict	Sub-District	txt	text		1.13	1	10	1	1	2	1	facts	fact			procedure	O		\N
77	16	ImmovableSecurity	Taluk	Taluk	txt	text		1.14	1	10	1	1	2	1	facts	fact			procedure	O		\N
78	16	ImmovableSecurity	Village	Village	txt	text		1.15	1	10	1	1	2	1	facts	fact			procedure	O		\N
79	16	ImmovableSecurity	SurveyNo	Survey Number	txt	text		1.16	1	10	1	1	2	1	facts	fact			procedure	O		\N
80	16	ImmovableSecurity	Area	Area	txt	text		1.17	1	10	1	1	2	1	facts	fact			procedure	O		\N
81	16	ImmovableSecurity	MarketValue	Market Value	txt	text		1.18	1	10	1	1	2	1	facts	fact			procedure	O		\N
82	16	ImmovableSecurity	Encumbrances	Encumbrances	txt	text		1.19	1	10	1	1	2	1	facts	fact			procedure	O		\N
83	16	ImmovableSecurity	RightsOfApplicant	Right of the Applicant	txt	text		1.2	1	10	1	1	2	1	facts	fact			procedure	O		\N
84	16	ImmovableSecurity	IsSoleProperty	Whether belongs to applicant absolutely	bln	radio		1.21	1	10	1	1	2	1	facts	fact			procedure	O		\N
85	16	ImmovableSecurity	CopyOfTitleDeed	Copy of Title Deed	lnk	file		1.22	1	10	1	1	2	1	facts	fact			procedure	O		\N
86	16	Debts	PriorDebts	Prior Debts	txt	text		1.23	1	1	1	1	1	1	facts	fact			procedure	O		\N
87	16	SubsistingLiability	SubsistingLiability	Subsisting Liability under prior Chits	txt	text		1.24	1	1	1	1	1	1	facts	fact			procedure	O		\N
88	16	TotalSecurityAmount	TotalSecurityAmount	Total Value of Security Furnished	cur	text		1.25	1	1	1	1	1	1	facts	fact			procedure	O		\N
89	17	Form	FormXI	Form XI	url	xml		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
90	17	Date	DateOfFormXI	Date of issue of Form XI	dte	text		1.1	1	1	1	1	1	1	facts	fact	sql:select current_date		procedure	R		\N
91	17	Place	Place	Place of issue	txt	text		1.2	1	1	1	1	1	1	facts	fact			procedure	R		\N
92	17	IssuingOffice	IssuingOffice	Issuing Office	txt	text		1.3	1	1	1	1	1	1	facts	fact			procedure	R		\N
13	12	Resolution	DirectorsPresent	Directors Present	txt	select	size=5 multiple	1.02	1	1	1	1	1	1			sql:select contact_id, initials, name from contacts	contacts	procedure	M		
93	18	Date	PSORefused	Date of Refusal of PSO	dte	text		1	1	1	1	1	1	1						R		\N
94	18	Date	PSORefusalNoticeReceived	Date of Receipt of Notice	dte	text		1.1	1	1	1	1	1	1						R		\N
95	18	Reasons	ReasonsForPSORefusal	Reasons for refusing PSO	txt	text		1.2	1	1	1	0	1	5						R		\N
96	18	IssuedBy	IssuedBy	PSO Order Issued by	txt	text		1.3	1	1	1	1	1	1						R		\N
11	12	ResolutionForm	ResolutionForm	Board Resolution to Commence and Conduct New Chit Groups	frm	form	php	1	1	1	1	1	0	0	facts	fact	after_submit		procedure	R		// tesing board resolution script
22	69	Form	CalppIntroduction	Calpp: Computer Aided Legal Procedures and Proceedings	htm	form		1	1	1	1	1	1	1	facts	fact			procedure	R		// calpp: computer aided legal procedures and proceedings
97	78	Greetings	Message	Message	txt	text		1	1	1	1	1	1	1	assertions	assertion	Hello World!		procedure	R		\N
23	69	Date	FirstVisitCalpp	First Visit to Calpp Help	dte	text		1	1	1	1	1	1	1	facts	fact	get:current_date		procedure	R		\N
24	69	Notes	CalppIntroduction	Notes on Calpp Introduction	txt	textarea		1	1	1	1	1	1	1	facts	fact			procedure	R		\N
110	78	Greetings	Form	Form	txt	form		1	1	1	1	1	1	1	assertions	assertion	Greetings Form		procedure	O		//  Greeting: Hello World!\r\n$message = $Greetings[Message];\r\n$form_content=$message;\r\n$blank_form="hello world!";
119	84	DataValidation	trial_date	Date	dte	text		1.1	1	1	3	3	1	3						R		\N
120	84	DataValidation	imaginary_money	Money	cur	text		21.2	1	1	1	1	1	1						R		\N
121	84	DataValidation	your_email	Email	eml	text		1.3	1	1	2	2	1	2						R		\N
123	85	Conclusion	Date	Date of Conclusion	dte	text		1.1	1	1	1	1	1	1			get:current_date			 		\N
124	85	Conclusion	Feedback	Feedback	txt	textarea	cols=40 rows=5	1.2	1	1	1	1	1	1						 		\N
113	83	Date	date	Date	dte	text		1.1	1	1	1	1	1	1	assertions	assertion	get:current_date			R		\N
114	83	Notes	notes	Notes	txt	textarea	rows=5 cols=40	1.2	1	1	1	1	1	1	assertions	assertion	space for your notes			O		\N
105	82	Contact	name	Name	txt	text		1.1	1	1	1	1	1	1	assertions	assertion			procedure	O		\N
106	82	Contact	alias_names	Alias Names	txt	text		1.2	1	1	1	100	1	5	assertions	assertion			procedure	O		\N
107	82	Contact	sex	Sex	int	radio	selected	1.3	1	1	1	1	1	1	assertions	assertion	male;female		procedure	R		\N
108	82	Contact	colors_preferred	Colors Preferred	int	checkbox		1.4	1	1	1	1	1	1	assertions	assertion	red;green;blue		procedure	O		\N
109	82	Contact	hobbies	Hobbies	txt	select	multiple rows=5	1.5	1	1	1	1	1	1	assertions	assertion	cricket;football;hockey;tennis;golf		procedure	M		\N
111	82	Contact	ContactForm	Contact Form	txt	form		1	1	1	1	1	1	1	assertions	assertion	Contact Form		procedure	O		// simple form\r\n\r\n$form_title = "Test by $full_name";\r\n$blank_form="\r\n<h3>Contact Particulars:</h3>\r\n<table border=1 style=\\"border-collapse:collapse\\" width=70%>\r\n<tr><th align=left width=30%>Name<td width=70%>$Contact[name]\r\n<tr><th align=left>Alias Name(s)<td>";\r\n$i=1;\r\nif (is_array($Contact[1][alias_names])){\r\n    while (list($key, $value)=each($Contact[1][alias_names])){\r\n        $v = trim($value);\r\n        if ($v != ''){\r\n            $frm_tmp .= "<br>$i)  " . $value;\r\n            $i++;\r\n        }\r\n    }\r\n}\r\n$blank_form .= "$frm_tmp\r\n<tr><th align=left>Sex<td>$Contact[sex]\r\n<tr><th align=left>Colors Preferred<td>$Contact[colors_preferred]\r\n<tr><th align=left>Hobbies<td>$Contact[hobbies]\r\n</table>";\r\n\r\n$form_content=$blank_form;\r\n\r\n 
115	83	Form	notes_form	Form	txt	form		1	1	1	1	1	1	1	assertions	assertion	Notes Form			O		$blank_form = "Date:$Date[date]<br><b>Notes:</b><br><i>{$Notes[notes]}</i>";\r\n$form_title = "Notes made on $Date[date]";\r\n$form_content= $blank_form;\r\n
122	85	Conclusion	Form	Summary Report	txt	form		1	1	1	1	1	1	1			Summary Report			 		$blank_form="Date: $Conclusion[Date]<br>Feedback: $Conclusion[Feedback]";\r\n$form_title="Summary";\r\n$form_content=$blank_form;\r\n
\.


--
-- Data for TOC entry 119 (OID 38728)
-- Name: proceedings; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY proceedings (proceeding_id, procedure_code, proceeding_code, proceeding_name, last_completed_step_id, next_step_due_date, next_step_reminder_date, branch_contact_id, custom_cat1, custom_cat2, entity_id, start_timestamp, close_timestamp, status) FROM stdin;
309	test_procedure		Test Proceeding by Mr  Calpp Hacker - Ref:53	85	\N	\N	\N	\N	\N	\N	2003-08-15 20:54:17.035285	\N	closed
\.


--
-- Data for TOC entry 120 (OID 38738)
-- Name: events; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY events (event_id, proceeding_id, step_id, step_count, entry_contact_id, verification_contact_id, audit_contact_id, entry_timestamp, verification_timestamp, audit_timestamp) FROM stdin;
377	309	82	1	4	\N	\N	2003-08-15 20:54:17.063518	\N	\N
378	309	83	1	4	\N	\N	2003-08-15 20:54:25.398156	\N	\N
379	309	84	1	4	\N	\N	2003-08-15 20:54:54.402447	\N	\N
380	309	85	1	4	\N	\N	2003-08-15 20:55:30.936777	\N	\N
\.


--
-- Data for TOC entry 121 (OID 38744)
-- Name: assertions; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY assertions (assertion_id, event_id, particular_id, heading_count, key_count, "assertion") FROM stdin;
722	377	105	1	1	K. Ramanraj
723	377	106	1	1	raman
724	377	106	1	2	ramana
725	377	106	1	3	ram
726	377	106	1	4	raj
727	377	106	1	5	raja
728	377	107	1	1	0
729	377	108	1	1	1;2
730	377	109	1	1	0;3
731	377	111	1	1	77
732	378	113	1	1	15-08-2003
733	378	114	1	1	space for your notes
734	378	115	1	1	78
735	379	119	1	1	1-1-2003
736	379	119	1	2	1-1-2003
737	379	119	1	3	1-1-2003
738	379	121	1	1	ramanraj@vsnl.com
739	379	121	1	2	ramanraj@vsnl.com
740	379	120	1	1	3234
741	380	123	1	1	15-08-2003
742	380	124	1	1	Needs perfection.
743	380	122	1	1	79
\.


--
-- Data for TOC entry 122 (OID 38755)
-- Name: facts; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY facts (fact_id, event_id, particular_id, heading_count, key_count, fact) FROM stdin;
\.


--
-- Data for TOC entry 123 (OID 38765)
-- Name: acheads; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY acheads (achead_id, achead_name, nature, achead_type, custom_cat1, custom_cat2, is_affecting_profit, is_post_auto_only, is_owned_fund, is_cash_equivalent) FROM stdin;
3	Bank Accounts	Asset	Bank	Liquid Funds		f	f	f	\N
2	Cash Account	Asset	Cash	Liquid Funds		f	f	f	\N
1	Capital	Liability	Capital			f	f	t	\N
4	Reserve Funds	Liability	Others			f	f	t	\N
6	Borrowings	Liability	Others			f	f	f	\N
5	Deposits	Liability	Others			f	f	f	\N
8	Prize Amount Payable	Liability	Others			f	f	f	\N
7	Foremans Liability in Prized Tickets	Liability	Others			f	f	f	\N
9	Defaulted Subscribers Amount Payable	Liability	Others			f	f	f	\N
10	Advance Subscription Received	Liability	Others			f	f	f	\N
11	Liability to Non-Prized Subscribers	Liability				f	f	f	\N
12	Amount Payable in Terminated Chits	Liability	Others			f	f	f	\N
14	Investments	Asset	Others			f	f	f	\N
15	Share Amount Due from Prized Subscribers	Asset				f	f	f	\N
18	Loans and Advances to Subscribers	Asset				f	f	f	\N
19	Immovable Properties	Asset				f	f	f	\N
20	Furniture and Fixtures	Asset				f	f	f	\N
21	Stamps in Stock	Asset				f	f	f	\N
16	Arrears Due from Prized Subscribers	Asset	Others			f	f	f	\N
17	Amounts Due in Terminated Chits	Asset	Others			f	f	f	\N
22	Other Assets	Asset	Others			f	f	f	\N
23	Other Liabilities	Liability	Others			f	f	f	\N
24	Interest Paid on Deposits	Expenditure	Others			t	f	f	\N
25	Interest Paid on Borrowings	Expenditure	Others			t	f	f	\N
26	Salaries and Allowances	Expenditure	Office Maintenance	Staff Welfare		t	f	f	\N
27	Bonus to Employees	Expenditure	Office Maintenance	Staff Welfare		t	f	f	\N
30	Rental Charges	Expenditure	Office Maintenance	Rents		t	f	f	\N
28	Provident Fund	Expenditure	Office Maintenance	Staff Welfare		t	f	f	\N
29	Directors Sitting Fees	Expenditure	Office Maintenance	Directors Welfare		t	f	f	\N
31	Taxes	Expenditure	Government Maintenance			t	f	f	\N
32	Insurance Charges	Expenditure	Insurance	De-risking		t	f	f	\N
33	Electricity Charges	Expenditure	Office Maintenace	Electricity		t	f	f	\N
34	Legal Charges	Expenditure	Business Maintenance	Legal Expenses		t	f	f	\N
35	Postage and Telegraph	Expenditure	Business Maintenance	Notices		t	f	f	\N
36	Auditors Fees	Expenditure	Business Maintenance	Audit Fees		t	f	f	\N
37	ROC Filing Fees	Expenditure	Business Maintenance	ROC Expenses		t	f	f	\N
38	Depreciation	Expenditure	Office Maintenance	Depreciation		t	f	f	\N
39	Repairs	Expenditure	Office Maintenance	Repairs		t	f	f	\N
40	Other Expenditure	Expenditure	Business Maintenance	Others		t	f	f	\N
41	Foremans Commission	Income	Profit	Foremans Commission		t	f	f	\N
42	Penal Interest	Income	Profits	Interest		t	f	f	\N
43	Rents Collected	Income	Profit	Rental Income		t	f	f	\N
44	Net Profit on Sale of Investments	Income	Profit	Investment Income		t	f	f	\N
45	Other Income	Income	Profits	Other Income		t	f	f	\N
46	Chit Group	Liability	Group	Chit Group		f	f	f	\N
13	Auction Profits Payable to Subscribers	Liability	Others			f	f	f	\N
47	Test Group	Asset	Cash	Cat 1	Cat 2	f	f	f	f
48	Testing New Account Group	Asset	Cash			f	f	f	f
\.


--
-- Data for TOC entry 124 (OID 38780)
-- Name: accounts; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY accounts (account_id, account_code, account_name, achead_id, opening_balance, achead_sub_name, entity_id) FROM stdin;
1	CashAc	Cash On Hand Account	2	0.00		1
2	MoneyBankAC	Money Bank Account	3	0.00	Current Account	1
4	CalppHackerCapitalAc	Calpp Hacker Capital Account	1	0.00	Paid Up	1
3	OCCAc	Overdraft CC Account	6	0.00	OD Account	1
5	AdvanceAC	Advance Account	18	0.00	New Group Collections	1
\.


--
-- Data for TOC entry 125 (OID 38790)
-- Name: bills; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY bills (bill_id, bill_number, bill_date, cash_mode, recpay, subgen, chitgroup_code, ticket_number, payee_id, entity_id) FROM stdin;
\.


--
-- Data for TOC entry 126 (OID 38803)
-- Name: bill_items; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY bill_items (bill_item_id, bill_id, rank, bill_ac_id, particular_id, part_payment, narration, debit, credit) FROM stdin;
\.


--
-- Data for TOC entry 127 (OID 38816)
-- Name: ledgers; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY ledgers (ledger_id, bill_item_id, ledger_ac_id, ledger_detail_ac_id, ledger_debit, ledger_credit) FROM stdin;
\.


--
-- Data for TOC entry 128 (OID 38822)
-- Name: cheques; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY cheques (cheque_id, bill_id, cheque_number, cheque_date, drawee_bank, drawee_branch, presented_date, collected_date) FROM stdin;
\.


--
-- Data for TOC entry 129 (OID 38830)
-- Name: chitgrouptypes; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY chitgrouptypes (chitgrouptype_id, subscribers, subscription, chit_substance, chit_amount, instalments, chitgroup_prefix, draw_interval, default_foreman_contact_id, default_foreman_commission, default_foreman_instalment, default_si_prized, default_si_non_prized, default_penalty_prized, default_penalty_non_prized) FROM stdin;
1	3	1000.00	money	3000.00	3	LW	monthly	1	5	1	12	10	10.00	20.00
2	5	2000.00	money	10000.00	5	LT	monthly	1	5	1	0	0	0.00	0.00
3	20	1000.00	money	20000.00	20	LA	monthly	1	5	1	0	0	0.00	0.00
4	20	1250.00	money	25000.00	20	LN	monthly	1	5	1	12	12	0.00	0.00
\.


--
-- Data for TOC entry 130 (OID 38846)
-- Name: chitgroups; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY chitgroups (chitgroup_id, chitgroup_code, chitgrouptype_id, proceeding_id, foreman_commission, foreman_instalment, si_prized, si_non_prized, penalty_prized, penalty_non_prized, commencement_date, termination_date, last_draw_date, next_draw_date, account_id, foreman_contact_id, all_auctions_over_date, prize_paid_to_all_date, all_arrears_collected_date, account_closed_date, current_instalment, interest_mode) FROM stdin;
2	LW05	1	31	5	1	0	0	0.00	0.00	\N	\N	\N	\N	15	1	\N	\N	\N	\N	\N	cip
3	LW06	1	32	5	1	0	0	0.00	0.00	\N	\N	\N	\N	16	1	\N	\N	\N	\N	\N	cip
4	LW10	1	36	5	1	0	0	0.00	0.00	\N	\N	\N	\N	17	1	\N	\N	\N	\N	\N	cip
5	LW11	1	37	5	1	0	0	0.00	0.00	\N	\N	\N	\N	18	1	\N	\N	\N	\N	\N	cip
6	LW14	1	38	5	1	0	0	0.00	0.00	\N	\N	\N	\N	19	1	\N	\N	\N	\N	\N	cip
7	LW124	1	39	5	1	0	0	0.00	0.00	\N	\N	\N	\N	20	1	\N	\N	\N	\N	\N	cip
8	LW002	1	217	5	1	0	0	0.00	0.00	\N	\N	\N	\N	21	1	\N	\N	\N	\N	\N	cip
9	lw2003	1	218	5	1	0	0	0.00	0.00	\N	\N	\N	\N	22	1	\N	\N	\N	\N	\N	cip
10	LW-Test1	1	219	5	1	0	0	0.00	0.00	\N	\N	\N	\N	23	1	\N	\N	\N	\N	\N	cip
11	LW-Test2	1	220	5	1	0	0	0.00	0.00	\N	\N	\N	\N	24	1	\N	\N	\N	\N	\N	cip
12	LW-Test3	1	260	5	1	0	0	0.00	0.00	\N	\N	\N	\N	64	1	\N	\N	\N	\N	\N	cip
13	LW-Test3	1	262	5	1	0	0	0.00	0.00	\N	\N	\N	\N	65	1	\N	\N	\N	\N	\N	cip
14	LW-Test4	1	263	5	1	0	0	0.00	0.00	\N	\N	\N	\N	66	1	\N	\N	\N	\N	\N	cip
15	LW-TestRef	1	264	5	1	0	0	0.00	0.00	\N	\N	\N	\N	67	1	\N	\N	\N	\N	\N	cip
16	LW_Beta_Test	1	267	5	1	0	0	0.00	0.00	\N	\N	\N	\N	69	1	\N	\N	\N	\N	\N	cip
\.


--
-- Data for TOC entry 131 (OID 38861)
-- Name: chit_subscribers; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY chit_subscribers (chit_subscriber_id, chit_subscriber_code, ticket_number, chitgroup_code, contact_id, joint_holder_contact_id, nominee_contact_id, agent_contact_id, mode_of_service, rank_sign, agreement_signed_date, fraction, prized_date, last_instalment_fully_paid, is_defaulter) FROM stdin;
\.


--
-- Data for TOC entry 132 (OID 38872)
-- Name: chit_transfers; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY chit_transfers (chit_transfer_id, chit_subscriber_code, removed_contact_id, added_contact_id, asnsub, removal_date, substitution_date, is_cancelled, old_chit_subscriber_id, new_chit_subscriber_id) FROM stdin;
\.


--
-- Data for TOC entry 133 (OID 38878)
-- Name: auctions; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY auctions (auction_id, auction_date, chitgroup_code, prized_contact_id, bid_amount, fmc_amount, dividend_amount, share_amount, prize_amount, security_amount, instalment, prize_paid_date, auction_mode, is_cancelled, chit_subscriber_id) FROM stdin;
\.


--
-- Data for TOC entry 134 (OID 38886)
-- Name: cheque_returns; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY cheque_returns (cheque_return_id, cheque_id, return_date, return_reason, action_taken_date, action_taken) FROM stdin;
\.


--
-- Data for TOC entry 135 (OID 38894)
-- Name: lists; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY lists (list_id, list_name, list_code, list_value, description) FROM stdin;
12	list_title_juristic	2	Messrs	Title prefix for a firm.
11	list_title_juristic	1	M/s	Abbreviated title prefix for a firm.
1	list_title_natural	1	Mr	Title prefixed to a man's name, or to designation of office. eg. Mr. Ramasamy, Mr. Secretary.
2	list_title_natural	2	Ms	 Title for a woman who does not wish to be called either Miss or Mrs.
3	list_title_natural	3	Mrs	Title prefixed to name of married woman.
4	list_title_natural	4	Dr	Title prefix of a medical doctor, or holder of highest university degree in any faculty.
5	list_title_natural	5	Dr (Ms)	Title prefix of a female medical doctor, or holder of highest university degree in any faculty.
6	list_title_natural	6	Dr (Mrs)	Title prefix of a married female medical doctor, or holder of highest university degree in any faculty.
7	list_title_natural	7	Thiru	Tamil equivalent of Mr.
8	list_title_natural	8	Thirumathi	Tamil equivalent of Mrs.
9	list_title_natural	9	Hon'ble Mr Justice	Title prefixed to name of a male judge of a High Court or Supreme Court.
52	list_title_natural	11	Minor	Title prefixed to a minor boy or girl not yet attained majority.
53	list_title_natural	12	Selvi	Tamil title prefixed to unmarried female.
10	list_title_natural	10	Hon'ble Ms Justice	Title prefixed to female judge of a High Court or Supreme Court
\.


--
-- Data for TOC entry 136 (OID 38902)
-- Name: list_sql; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY list_sql (list_sql_id, sql_name, sql_string, description) FROM stdin;
1	select	SELECT [ ALL | DISTINCT [ ON ( expression [, ...] ) ] ]\r\n    expression [ AS name ] [, ...]\r\n    [ INTO [ TEMPORARY | TEMP ] [ TABLE ] new_table ]\r\n    [ FROM table [ alias ] [, ...] ]\r\n    [ WHERE condition ]\r\n    [ GROUP BY column [, ...] ]\r\n    [ HAVING condition [, ...] ]\r\n    [ { UNION [ ALL ] | INTERSECT | EXCEPT } select ]\r\n    [ ORDER BY column [ ASC | DESC | USING operator ] [, ...] ]\r\n    [ FOR UPDATE [ OF class_name [, ...] ] ]\r\n    LIMIT { count | ALL } [ { OFFSET | , } start ]\r\n  	Retrieve rows from a table or view. 
2	update	UPDATE table SET col = expression [, ...]\r\n    [ FROM fromlist ]\r\n    [ WHERE condition ]	Replaces values of columns in a table 
3	insert	INSERT INTO table [ ( column [, ...] ) ]\r\n    { VALUES ( expression [, ...] ) | SELECT query }	Inserts new rows into a table.
4	delete	DELETE FROM table [ WHERE condition ]	Removes rows from a table 
5	copy	COPY [ BINARY ] table [ WITH OIDS ]\r\n    FROM { 'filename' | stdin }\r\n    [ [USING] DELIMITERS 'delimiter' ]\r\n    [ WITH NULL AS 'null string' ]\r\nCOPY [ BINARY ] table [ WITH OIDS ]\r\n    TO { 'filename' | stdout }\r\n    [ [USING] DELIMITERS 'delimiter' ]\r\n    [ WITH NULL AS 'null string' ]\r\n  	Copies data between files and tables 
6	select_distinct_on	 SELECT DISTINCT ON (location) location, time, report\r\n        FROM weatherReports\r\n        ORDER BY location, time DESC;\r\n   	DISTINCT ON eliminates rows that match on all the specified expressions, keeping only the first row of each set of duplicates.
7	select_order_by	SELECT title, date_prod + 1 AS newlen FROM films ORDER BY newlen;\r\n    	Optionally one may add the keyword DESC (descending) or ASC (ascending) after each column name in the ORDER BY clause. If not\r\nspecified, ASC is assumed by default.
8	select_join	SELECT f.title, f.did, d.name, f.date_prod, f.kind\r\n    FROM distributors d, films f\r\n    WHERE f.did = d.did	To join the table films with the table distributors:.
9	select_aggregate	SELECT kind, SUM(len) AS total\r\n    FROM films\r\n    GROUP BY kind\r\n    HAVING SUM(len) < INTERVAL '5 hour';\r\n\r\n	To sum the column len of all films, group the results by kind and show those group totals that are less than 5 hours.
10	select_like_union	SELECT distributors.name\r\n    FROM   distributors\r\n    WHERE  distributors.name LIKE 'W%'\r\nUNION\r\nSELECT actors.name\r\n    FROM   actors\r\n    WHERE  actors.name LIKE 'W%'\r\n\r\n	This example shows how to obtain the union of the tables distributors and actors, restricting the results to those that begin with\r\nletter W in each table. Only distinct rows are wanted, so the ALL keyword is omitted.
11	select_href	select count(list_id) , \r\n'<a href=http://localhost/calpptechno/\r\nchits_settings.php?action=append_items&list_name=' \r\n|| list_name || '>' || list_name || '</a>', 'view', 'append', 'delete'\r\nfrom lists group by list_name order by list_name	select list names, count, and links.
\.


--
-- Data for TOC entry 137 (OID 38910)
-- Name: tests; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY tests (test_id, test_name, test_date, test_time, test_timestamp, test_bool, test_int2, test_int4, test_float, test_numeric) FROM stdin;
1	cmm level 1 reached	2001-10-28	10:20:24	2001-10-28 10:20:24	f	0	0	0	0.00
2	cmm 2 reached	2001-10-28	10:42:16	2001-10-28 10:42:16	f	0	0	0	0.00
3	cmm 3 reached	2001-10-09	10:43:17	2001-10-28 10:42:16	f	0	0	0	0.00
4	cmm 4 reached	2001-11-03	06:06:06	2001-10-28 10:42:16	f	0	0	0	0.00
5	cmm 5	2001-11-03	06:20:20	2001-10-28 10:42:16	f	0	0	0	0.00
6	This works. All Bugs Fixed. 	2001-11-03	06:25:25	2001-10-28 10:42:16	f	0	0	0	0.00
7	Bhuvana	2001-11-03	06:25:25	2001-10-28 10:42:16	t	0	0	0	0.00
\.


--
-- Data for TOC entry 138 (OID 38927)
-- Name: dtps; Type: TABLE DATA; Schema: public; Owner: calpp
--

COPY dtps (dtp_id, description, maximum_value, minimum_value, examples) FROM stdin;
\.


\connect - ramanraj

SET search_path = public, pg_catalog;

--
-- Data for TOC entry 139 (OID 39467)
-- Name: tokens; Type: TABLE DATA; Schema: public; Owner: ramanraj
--

COPY tokens (token_id, contact_id) FROM stdin;
395--2c4649ca5c613c0605e5b8a58800146f591971392-1060908172	1
396--5b918a686e83c96c262289df20aa8994893714846-1060908205	1
432--ee3ea718b903a924f8e16080d905d08b-6a5f5a408f828a01259d18671be95af6880386012-1060961437	4
433--d8cc6595d88ec1f66c1a5ac4df3290d9624317922-1060962175	4
\.


--
-- Data for TOC entry 140 (OID 56601)
-- Name: words; Type: TABLE DATA; Schema: public; Owner: ramanraj
--

COPY words (word_id, word, word_meaning, word_notes) FROM stdin;
1	entity	A thing's existence, as opposed to its qualities or relations; thing that has real existence. 	\N
3	organization	Organized body or system or society. 	\N
4	organize	Furnish with organs, make organic, make into living being or tissue; form into an organic whole (with constituents or resulting whole as object); give orderly structure to, frame and put into working order, make arrangements for or get up (undertaking involving co-operation)	\N
5	organon, organum	Instrument of thought, system of or treatise on logic.	\N
2	organism	Organized body with connected interdependent parts sharing common life, (material structure of) individual animal or plant; whole with interdependent parts compared to living being.	
6	project	Something that is contemplated, devised, or planned; plan; scheme; a large or major undertaking, especially one involving considerable money, personnel, and equipment.	\N
8	procedure	Act or manner of proceeding in any action or process; conduct; A particular coursr or mode of action; Mode of conducting legal, parliamentary or other business especially judicial proceedings and litigation; synonymous with management; operation; maneuver; transaction; process	\N
9	proceeding	A particular action or course of action; action, course of action or conduct; Act of one who or that which proceedins; Records of the doing of a fraternal, academic, etc.; Law: The instituting or carrying of an action at law; a legal step or measure; to institute proceedings against a person	\N
10	process	A systematic series of actions directed to some end; A continuous action, process, or series of changes taking place in a definite manner; Law: summons, mandate or write by which a defendant or thing is brought before court for litigation; the whole course of the proceedings in an action at law.	\N
11	step	A move, act or proceeding as towards some end or in the general course of some action; stage, measure or period; Step by Step: From one stage to the next in sequence; gradually and steadily; To take steps: to set about putting something into operation.	\N
12	aided	To provide support for or relief to; to help; to promote the progress or accomplishment of; facilitate; to give help or assistance; One who or that which aids or furnishes assistance	\N
13	computer	one who or that which computes; an electronic device that can receive, process, store and retrieve data; can carry out mathematical and logical calculations or operations at high speed and display the results and can be programmed	\N
14	computerize	to automate by a computer	\N
15	computer language	an artificially devised system of symbols, words etc used for programming a computer.	\N
16	legal	permitted by law; lawful; of or pertaining to the law; connected with the law or the administration; appointed or authorised by law	\N
17	philosophy	love of wisdom or knowledge; especially that which deals with ultimate reality or with the most general causes and principles of things; study of principles of human action and conduct.	\N
\.


--
-- Data for TOC entry 141 (OID 65219)
-- Name: details; Type: TABLE DATA; Schema: public; Owner: ramanraj
--

COPY details (detail_id, event_id, particular_id, heading_count, key_count, detail) FROM stdin;
\.


--
-- Data for TOC entry 142 (OID 65237)
-- Name: index_sqls; Type: TABLE DATA; Schema: public; Owner: ramanraj
--

COPY index_sqls (index_sql_id, index_name, start_table, end_sql) FROM stdin;
8	Procedures and Steps	v_procedures_steps	select * from v_procedures_steps
9	Procedures, Steps and Particulars	v_procedures_steps_particulars	select * from v_procedures_steps_particulars
14	_Edit Procedure Script	procedures	select '<a href=Procedures.php?action=EditScript&script_table=procedures&row_id=' || procedure_id || '>' || procedure_name || '</a>' as select_script_of_procedure from procedures
10	Proceedings	v_pp	select * from v_pp
15	_Edit Step Script	steps	select '<a href=Procedures.php?action=EditScript&script_table=steps&row_id=' || step_id || '>' || step_name || '</a>' as edit_script_of_step from steps
11	Proceedings and Events	v_proceedings_events	select * from v_proceedings_events
12	Proceedings, Events and Assertions	v_proceedings_events_assertions	select * from v_proceedings_events_assertions
16	_Edit Particulars	particulars	select '<a href=Procedures.php?action=EditScript&script_table=particulars&row_id=' || particular_id || '>' || heading || '-' || particular_name || '</a>' as edit_script_of_particulars from particulars
17	Documents	v_calpp_documents	select '<a href=Proceedings.php?action=ShowDocument&document_id=' || document_id || '>' || document_title || '</a>' from v_calpp_documents
6	Procedures	procedures	select  '<br><a href=Procedures.php?action=edit_pro&item_id=' || procedure_id || '>' || procedure_name as name_of_procedure from procedures\r\n\t\t    
7	Transactions	bills	select * from bills
13	Details of Proceedings	v_calpp	select particular_name, assertion from v_calpp 
5	Contacts	contacts	select  '<br><a href=Contacts.php?action=EditContact&contact_id=' || contact_id || '>' || title || ' ' || initials ||  ' '  || name || ', ' || qualification || '</a><br> ' || door_no || ' ' ||  street || ',<br> ' ||  village || ', ' || ' ' ||  district || ', ' ||  pincode as particulars, \r\n\t\t\t    '<br>(home)  ' || phone_home || '<br>(office)  '|| phone_office || '<br>(mobile)  '|| phone_mobile || '<br>(email)  ' ||  '<a href=mailto:' || email || '>' || email || '</a>' as tele \r\n\t\t    from contacts 
1	Data Entry	v_calpp_entries	select * from v_calpp_entries
\.


--
-- Data for TOC entry 143 (OID 65251)
-- Name: index_headings; Type: TABLE DATA; Schema: public; Owner: ramanraj
--

COPY index_headings (index_heading_id, index_sql_id, heading_name, index_path) FROM stdin;
9	4	Account Heads	achead_name>account_name
1	4	Nature of Accounts	nature>account_name
2	4	Custom Classification	custom_cat1>custom_cat2>account_name
3	4	a1	4
4	4	a2	5
5	4	a3	6
6	4	a4	7
7	4	a5	8
8	4	a6	9
10	4	a7	10
11	4	a8	latest 11
26	8	Procedures and Steps	country_code>main_head>procedure_name>step_name
27	9	Particulars	country_code>main_head>procedure_name>step_name>heading>particular_name
28	9	Particulars grouped by form controls used	procedure_name>control>particular_name
29	9	Particulars indexed by steps	procedure_name>step_code>step_name>heading>particular_name
30	9	Particulars indexed by default values	procedure_name>control>default_value
31	10	Proceedings	country_code>main_head>procedure_name>proceeding_name
32	11	Proceedings	proceeding_name>start_timestamp>entry_timestamp
33	12	Assertions	proceeding_name>assertion
22	6	Subject Index	main_head>sub_head>procedure_name
23	6	Procedure Name Index	procedure_name
24	6	Country Index	country_code>main_head>procedure_name
25	7	Date Index	bill_date>bill_number
34	13	Subject, proceeding, step wise	main_head>proceeding_name>step_name
35	13	Step wise	proceeding_name>step_name
36	13	Country wise	country_code>main_head>proceeding_name>step_name>heading>heading_count
37	13	Heading wise	main_head>proceeding_name>heading
38	1	Contacts	name>entry_timestamp>proceeding_name>heading>assertion
40	14	Procedures grouped by country, subject	country_code>main_head
41	14	Country	country_code
42	14	Source	source
43	14	Procedures by subject	main_head
44	15	Steps	procedure_code
47	9	Headings and Keys	procedure_name>step_code>step_name>heading>particular_code
45	16	Particulars grouped by control	control
46	16	Particulars grouped by heading	heading
49	16	Scripts grouped by control, ID	control>particular_id
12	5	Address Index	country>state>district>village>street
13	5	Name Index	name
14	5	Occupation Index	main_occupation>name
15	5	Occupation Indexed by Address	main_occupation>district>village>name
16	5	Calling Index	calling>calling_at
17	5	Occupation Indexed by Specialisation	main_occupation>specialisation
18	5	Religion, Caste Indexed by Occupation	religion>caste>main_occupation>name
19	5	Group Index	group_name>name
20	5	Contacts with e-mail	email>name
21	5	Contacts with web address	web_address>name
39	5	pincode	pincode>state
50	5	Title	title
48	17	List of Documents	proceeding_name>particular_name
51	17	Grouped by Country, Subject	country_code>main_head>proceeding_name>particular_name
\.


--
-- Data for TOC entry 144 (OID 65573)
-- Name: documents; Type: TABLE DATA; Schema: public; Owner: ramanraj
--

COPY documents (document_id, document_title, document) FROM stdin;
77	Test by Mr  Calpp Hacker	\r\n<h3>Contact Particulars:</h3>\r\n<table border=1 style="border-collapse:collapse" width=70%>\r\n<tr><th align=left width=30%>Name<td width=70%>K. Ramanraj\r\n<tr><th align=left>Alias Name(s)<td><br>1)  raman<br>2)  ramana<br>3)  ram<br>4)  raj<br>5)  raja\r\n<tr><th align=left>Sex<td>0\r\n<tr><th align=left>Colors Preferred<td>1;2\r\n<tr><th align=left>Hobbies<td>0;3\r\n</table>
78	Notes made on 15-08-2003	Date:15-08-2003<br><b>Notes:</b><br><i>space for your notes</i>
79	Summary	Date: 15-08-2003<br>Feedback: Needs perfection.
\.


--
-- TOC entry 109 (OID 56609)
-- Name: word_words_ukey; Type: INDEX; Schema: public; Owner: ramanraj
--

CREATE UNIQUE INDEX word_words_ukey ON words USING btree (word);


\connect - calpp

SET search_path = public, pg_catalog;

--
-- TOC entry 83 (OID 65211)
-- Name: procedure_code_steps_key; Type: INDEX; Schema: public; Owner: calpp
--

CREATE INDEX procedure_code_steps_key ON steps USING btree (procedure_code);


--
-- TOC entry 86 (OID 65212)
-- Name: step_id_particulars_key; Type: INDEX; Schema: public; Owner: calpp
--

CREATE INDEX step_id_particulars_key ON particulars USING btree (step_id);


--
-- TOC entry 89 (OID 65213)
-- Name: proceeding_id_events_key; Type: INDEX; Schema: public; Owner: calpp
--

CREATE INDEX proceeding_id_events_key ON events USING btree (proceeding_id);


--
-- TOC entry 91 (OID 65214)
-- Name: event_id_assertions_key; Type: INDEX; Schema: public; Owner: calpp
--

CREATE INDEX event_id_assertions_key ON assertions USING btree (event_id);


\connect - ramanraj

SET search_path = public, pg_catalog;

--
-- TOC entry 110 (OID 65226)
-- Name: event_id_details_key; Type: INDEX; Schema: public; Owner: ramanraj
--

CREATE INDEX event_id_details_key ON details USING btree (event_id);


--
-- TOC entry 111 (OID 65227)
-- Name: particular_id_details_key; Type: INDEX; Schema: public; Owner: ramanraj
--

CREATE INDEX particular_id_details_key ON details USING btree (particular_id);


\connect - calpp

SET search_path = public, pg_catalog;

--
-- TOC entry 80 (OID 39367)
-- Name: contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY contacts
    ADD CONSTRAINT contacts_pkey PRIMARY KEY (contact_id);


--
-- TOC entry 81 (OID 39369)
-- Name: procedures_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY procedures
    ADD CONSTRAINT procedures_pkey PRIMARY KEY (procedure_id);


--
-- TOC entry 82 (OID 39371)
-- Name: procedures_procedure_code_key; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY procedures
    ADD CONSTRAINT procedures_procedure_code_key UNIQUE (procedure_code);


--
-- TOC entry 84 (OID 39373)
-- Name: steps_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY steps
    ADD CONSTRAINT steps_pkey PRIMARY KEY (step_id);


--
-- TOC entry 145 (OID 39375)
-- Name: $1; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY steps
    ADD CONSTRAINT "$1" FOREIGN KEY (procedure_code) REFERENCES procedures(procedure_code) ON UPDATE NO ACTION ON DELETE CASCADE;


--
-- TOC entry 85 (OID 39379)
-- Name: particulars_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY particulars
    ADD CONSTRAINT particulars_pkey PRIMARY KEY (particular_id);


--
-- TOC entry 146 (OID 39381)
-- Name: $1; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY particulars
    ADD CONSTRAINT "$1" FOREIGN KEY (step_id) REFERENCES steps(step_id) ON UPDATE NO ACTION ON DELETE CASCADE;


--
-- TOC entry 93 (OID 39385)
-- Name: acheads_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY acheads
    ADD CONSTRAINT acheads_pkey PRIMARY KEY (achead_id);


--
-- TOC entry 94 (OID 39387)
-- Name: accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY accounts
    ADD CONSTRAINT accounts_pkey PRIMARY KEY (account_id);


--
-- TOC entry 147 (OID 39389)
-- Name: $1; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY accounts
    ADD CONSTRAINT "$1" FOREIGN KEY (achead_id) REFERENCES acheads(achead_id) ON UPDATE NO ACTION ON DELETE RESTRICT;


--
-- TOC entry 148 (OID 39393)
-- Name: $2; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY accounts
    ADD CONSTRAINT "$2" FOREIGN KEY (entity_id) REFERENCES contacts(contact_id) ON UPDATE NO ACTION ON DELETE RESTRICT;


--
-- TOC entry 95 (OID 39397)
-- Name: bills_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY bills
    ADD CONSTRAINT bills_pkey PRIMARY KEY (bill_id);


--
-- TOC entry 149 (OID 39399)
-- Name: $1; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY bills
    ADD CONSTRAINT "$1" FOREIGN KEY (payee_id) REFERENCES contacts(contact_id) ON UPDATE NO ACTION ON DELETE RESTRICT;


--
-- TOC entry 150 (OID 39403)
-- Name: $2; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY bills
    ADD CONSTRAINT "$2" FOREIGN KEY (entity_id) REFERENCES contacts(contact_id) ON UPDATE NO ACTION ON DELETE RESTRICT;


--
-- TOC entry 96 (OID 39407)
-- Name: bill_items_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY bill_items
    ADD CONSTRAINT bill_items_pkey PRIMARY KEY (bill_item_id);


--
-- TOC entry 151 (OID 39409)
-- Name: $2; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY bill_items
    ADD CONSTRAINT "$2" FOREIGN KEY (bill_id) REFERENCES bills(bill_id) ON UPDATE NO ACTION ON DELETE CASCADE;


--
-- TOC entry 152 (OID 39413)
-- Name: $3; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY bill_items
    ADD CONSTRAINT "$3" FOREIGN KEY (bill_ac_id) REFERENCES accounts(account_id) ON UPDATE NO ACTION ON DELETE NO ACTION;


--
-- TOC entry 97 (OID 39417)
-- Name: ledgers_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY ledgers
    ADD CONSTRAINT ledgers_pkey PRIMARY KEY (ledger_id);


--
-- TOC entry 153 (OID 39419)
-- Name: $2; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY ledgers
    ADD CONSTRAINT "$2" FOREIGN KEY (bill_item_id) REFERENCES bill_items(bill_item_id) ON UPDATE NO ACTION ON DELETE CASCADE;


--
-- TOC entry 154 (OID 39423)
-- Name: $3; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY ledgers
    ADD CONSTRAINT "$3" FOREIGN KEY (ledger_ac_id) REFERENCES accounts(account_id) ON UPDATE NO ACTION ON DELETE NO ACTION;


--
-- TOC entry 155 (OID 39427)
-- Name: $4; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY ledgers
    ADD CONSTRAINT "$4" FOREIGN KEY (ledger_detail_ac_id) REFERENCES accounts(account_id) ON UPDATE NO ACTION ON DELETE NO ACTION;


--
-- TOC entry 98 (OID 39431)
-- Name: cheques_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY cheques
    ADD CONSTRAINT cheques_pkey PRIMARY KEY (cheque_id);


--
-- TOC entry 156 (OID 39433)
-- Name: $1; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY cheques
    ADD CONSTRAINT "$1" FOREIGN KEY (bill_id) REFERENCES bills(bill_id) ON UPDATE NO ACTION ON DELETE CASCADE;


--
-- TOC entry 99 (OID 39437)
-- Name: chitgrouptypes_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY chitgrouptypes
    ADD CONSTRAINT chitgrouptypes_pkey PRIMARY KEY (chitgrouptype_id);


--
-- TOC entry 100 (OID 39439)
-- Name: chitgroups_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY chitgroups
    ADD CONSTRAINT chitgroups_pkey PRIMARY KEY (chitgroup_id);


--
-- TOC entry 101 (OID 39441)
-- Name: chit_subscribers_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY chit_subscribers
    ADD CONSTRAINT chit_subscribers_pkey PRIMARY KEY (chit_subscriber_id);


--
-- TOC entry 102 (OID 39443)
-- Name: chit_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY chit_transfers
    ADD CONSTRAINT chit_transfers_pkey PRIMARY KEY (chit_transfer_id);


--
-- TOC entry 103 (OID 39445)
-- Name: auctions_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY auctions
    ADD CONSTRAINT auctions_pkey PRIMARY KEY (auction_id);


--
-- TOC entry 104 (OID 39447)
-- Name: cheque_returns_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY cheque_returns
    ADD CONSTRAINT cheque_returns_pkey PRIMARY KEY (cheque_return_id);


--
-- TOC entry 105 (OID 39449)
-- Name: lists_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY lists
    ADD CONSTRAINT lists_pkey PRIMARY KEY (list_id);


--
-- TOC entry 106 (OID 39451)
-- Name: list_sql_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY list_sql
    ADD CONSTRAINT list_sql_pkey PRIMARY KEY (list_sql_id);


--
-- TOC entry 92 (OID 39453)
-- Name: facts_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY facts
    ADD CONSTRAINT facts_pkey PRIMARY KEY (fact_id);


--
-- TOC entry 107 (OID 39455)
-- Name: tests_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY tests
    ADD CONSTRAINT tests_pkey PRIMARY KEY (test_id);


--
-- TOC entry 108 (OID 39457)
-- Name: dtps_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY dtps
    ADD CONSTRAINT dtps_pkey PRIMARY KEY (dtp_id);


--
-- TOC entry 88 (OID 39459)
-- Name: events_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY events
    ADD CONSTRAINT events_pkey PRIMARY KEY (event_id);


--
-- TOC entry 87 (OID 39461)
-- Name: proceedings_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY proceedings
    ADD CONSTRAINT proceedings_pkey PRIMARY KEY (proceeding_id);


--
-- TOC entry 90 (OID 39463)
-- Name: assertions_pkey; Type: CONSTRAINT; Schema: public; Owner: calpp
--

ALTER TABLE ONLY assertions
    ADD CONSTRAINT assertions_pkey PRIMARY KEY (assertion_id);


\connect - ramanraj

SET search_path = public, pg_catalog;

--
-- TOC entry 113 (OID 65245)
-- Name: index_sqls_pkey; Type: CONSTRAINT; Schema: public; Owner: ramanraj
--

ALTER TABLE ONLY index_sqls
    ADD CONSTRAINT index_sqls_pkey PRIMARY KEY (index_sql_id);


--
-- TOC entry 112 (OID 65247)
-- Name: index_sqls_index_name_key; Type: CONSTRAINT; Schema: public; Owner: ramanraj
--

ALTER TABLE ONLY index_sqls
    ADD CONSTRAINT index_sqls_index_name_key UNIQUE (index_name);


--
-- TOC entry 114 (OID 65259)
-- Name: index_headings_pkey; Type: CONSTRAINT; Schema: public; Owner: ramanraj
--

ALTER TABLE ONLY index_headings
    ADD CONSTRAINT index_headings_pkey PRIMARY KEY (index_heading_id);


\connect - calpp

SET search_path = public, pg_catalog;

--
-- TOC entry 51 (OID 38662)
-- Name: contacts_contact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('contacts_contact_id_seq', 216, true);


--
-- TOC entry 52 (OID 38680)
-- Name: procedures_procedure_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('procedures_procedure_id_seq', 28, true);


--
-- TOC entry 53 (OID 38691)
-- Name: steps_step_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('steps_step_id_seq', 85, true);


--
-- TOC entry 54 (OID 38699)
-- Name: particulars_particular_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('particulars_particular_id_seq', 124, true);


--
-- TOC entry 55 (OID 38726)
-- Name: proceedings_proceeding_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('proceedings_proceeding_id_seq', 309, true);


--
-- TOC entry 56 (OID 38736)
-- Name: events_event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('events_event_id_seq', 380, true);


--
-- TOC entry 57 (OID 38742)
-- Name: assertions_assertion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('assertions_assertion_id_seq', 743, true);


--
-- TOC entry 58 (OID 38753)
-- Name: facts_fact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('facts_fact_id_seq', 1, false);


--
-- TOC entry 59 (OID 38763)
-- Name: acheads_achead_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('acheads_achead_id_seq', 48, true);


--
-- TOC entry 60 (OID 38778)
-- Name: accounts_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('accounts_account_id_seq', 69, true);


--
-- TOC entry 61 (OID 38788)
-- Name: bills_bill_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('bills_bill_id_seq', 6, true);


--
-- TOC entry 62 (OID 38801)
-- Name: bill_items_bill_item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('bill_items_bill_item_id_seq', 6, true);


--
-- TOC entry 63 (OID 38814)
-- Name: ledgers_ledger_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('ledgers_ledger_id_seq', 6, true);


--
-- TOC entry 64 (OID 38820)
-- Name: cheques_cheque_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('cheques_cheque_id_seq', 1, false);


--
-- TOC entry 65 (OID 38828)
-- Name: chitgrouptypes_chitgrouptype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('chitgrouptypes_chitgrouptype_id_seq', 4, true);


--
-- TOC entry 66 (OID 38844)
-- Name: chitgroups_chitgroup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('chitgroups_chitgroup_id_seq', 16, true);


--
-- TOC entry 67 (OID 38859)
-- Name: chit_subscribers_chit_subscriber_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('chit_subscribers_chit_subscriber_id_seq', 1, false);


--
-- TOC entry 68 (OID 38870)
-- Name: chit_transfers_chit_transfer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('chit_transfers_chit_transfer_id_seq', 1, false);


--
-- TOC entry 69 (OID 38876)
-- Name: auctions_auction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('auctions_auction_id_seq', 1, false);


--
-- TOC entry 70 (OID 38884)
-- Name: cheque_returns_cheque_return_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('cheque_returns_cheque_return_id_seq', 1, false);


--
-- TOC entry 71 (OID 38892)
-- Name: lists_list_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('lists_list_id_seq', 54, false);


--
-- TOC entry 72 (OID 38900)
-- Name: list_sql_list_sql_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('list_sql_list_sql_id_seq', 12, false);


--
-- TOC entry 73 (OID 38908)
-- Name: tests_test_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('tests_test_id_seq', 8, false);


--
-- TOC entry 74 (OID 38925)
-- Name: dtps_dtp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('dtps_dtp_id_seq', 1, false);


--
-- TOC entry 3 (OID 39465)
-- Name: tokens_seq; Type: SEQUENCE SET; Schema: public; Owner: calpp
--

SELECT pg_catalog.setval ('tokens_seq', 433, true);


\connect - ramanraj

SET search_path = public, pg_catalog;

--
-- TOC entry 75 (OID 56599)
-- Name: words_word_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ramanraj
--

SELECT pg_catalog.setval ('words_word_id_seq', 17, true);


--
-- TOC entry 76 (OID 65217)
-- Name: details_detail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ramanraj
--

SELECT pg_catalog.setval ('details_detail_id_seq', 1, false);


--
-- TOC entry 77 (OID 65235)
-- Name: index_sqls_index_sql_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ramanraj
--

SELECT pg_catalog.setval ('index_sqls_index_sql_id_seq', 17, true);


--
-- TOC entry 78 (OID 65249)
-- Name: index_headings_index_heading_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ramanraj
--

SELECT pg_catalog.setval ('index_headings_index_heading_id_seq', 51, true);


--
-- TOC entry 5 (OID 65483)
-- Name: proceedings_name_seq; Type: SEQUENCE SET; Schema: public; Owner: ramanraj
--

SELECT pg_catalog.setval ('proceedings_name_seq', 53, true);


--
-- TOC entry 79 (OID 65571)
-- Name: documents_document_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ramanraj
--

SELECT pg_catalog.setval ('documents_document_id_seq', 79, true);


